[
  {
    "path": ".babelrc",
    "content": "{\n  \"presets\": [\"env\"],\n  \"plugins\": [\n    [\"transform-runtime\", {\n      \"polyfill\": false,\n      \"regenerator\": true\n    }]\n  ]\n}\n"
  },
  {
    "path": ".editorconfig",
    "content": "# editorconfig.org\n\nroot = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\nindent_size = 2\nindent_style = space\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE.md",
    "content": "<!-- Love SweetAlert? Please consider supporting our collective:\n👉  https://opencollective.com/SweetAlert/donate -->"
  },
  {
    "path": ".gitignore",
    "content": "*.codekit\n*.sass-cache\n*.DS_STORE\nnode_modules\nnpm-debug.log\ntypes\n\ndist\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: node_js\nnode_js:\n  - \"6.9.1\"\nscript: npm run buildtest\n"
  },
  {
    "path": "LICENSE.md",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2014-present Tristan Edwards\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n"
  },
  {
    "path": "README.md",
    "content": "<p align=\"center\">\n  <a href=\"http://sweetalert.js.org\">\n    <img alt=\"SweetAlert\" src=\"https://raw.githubusercontent.com/t4t5/sweetalert/e3c2085473a0eb5a6b022e43eb22e746380bb955/assets/logotype.png\" width=\"300\">\n  </a>\n</p>\n\n<p align=\"center\">\n  A beautiful replacement for JavaScript's \"alert\"\n</p>\n\n<p align=\"center\">\n  <a href=\"https://badge.fury.io/js/sweetalert\"><img src=\"https://badge.fury.io/js/sweetalert.svg\" alt=\"npm version\" height=\"18\"></a>\n  <a href=\"https://travis-ci.org/t4t5/sweetalert\"><img src=\"https://travis-ci.org/t4t5/sweetalert.svg\" alt=\"Build status\" /></a>\n  <a href=\"https://www.npmjs.com/package/sweetalert\">\n    <img src=\"https://img.shields.io/npm/dm/sweetalert.svg\" />\n  </a>\n  <a href=\"https://github.com/t4t5/sweetalert/blob/master/LICENSE\">\n    <img src=\"https://img.shields.io/github/license/t4t5/sweetalert.svg\" />\n  </a> \n  <a href=\"#backers\" alt=\"sponsors on Open Collective\"><img src=\"https://opencollective.com/SweetAlert/backers/badge.svg\" /></a> <a href=\"#sponsors\" alt=\"Sponsors on Open Collective\"><img src=\"https://opencollective.com/SweetAlert/sponsors/badge.svg\" /></a>\n</p>\n\n<p align=\"center\">\n  <img alt=\"A success modal\" src=\"https://raw.githubusercontent.com/t4t5/sweetalert/e3c2085473a0eb5a6b022e43eb22e746380bb955/assets/swal.gif\">\n</p>\n\n\n## Installation\n\n```bash\n$ npm install --save sweetalert\n```\n\n## Usage\n\n```javascript\nimport swal from 'sweetalert';\n\nswal(\"Hello world!\");\n```\n\n## Upgrading from 1.X\n\nMany improvements and breaking changes have been introduced in the 2.0 release. Make sure you read the [upgrade guide](https://sweetalert.js.org/guides/#upgrading-from-1x) to avoid nasty surprises!\n\n## Guides\n\n- [Installation](https://sweetalert.js.org/guides/#installation)\n- [Getting started](https://sweetalert.js.org/guides/#getting-started)\n- [Advanced examples](https://sweetalert.js.org/guides/#advanced-examples)\n- [Using with libraries](https://sweetalert.js.org/guides/#using-with-libraries)\n- [Upgrading from 1.X](https://sweetalert.js.org/guides/#upgrading-from-1x)\n\n## Documentation\n\n- [Configuration](https://sweetalert.js.org/docs/#configuration)\n- [Methods](https://sweetalert.js.org/docs/#methods)\n- [Theming](https://sweetalert.js.org/docs/#theming)\n\n## Examples\n\n### An error message:\n```javascript\nswal(\"Oops!\", \"Something went wrong!\", \"error\");\n```\n\n### A warning message, with a function attached to the confirm message:\n  - Using promises:\n  ```javascript\n  swal({\n    title: \"Are you sure?\",\n    text: \"Are you sure that you want to leave this page?\",\n    icon: \"warning\",\n    dangerMode: true,\n  })\n  .then(willDelete => {\n    if (willDelete) {\n      swal(\"Deleted!\", \"Your imaginary file has been deleted!\", \"success\");\n    }\n  });\n  ```\n  - Using async/await:\n  ```javascript\n  const willDelete = await swal({\n    title: \"Are you sure?\",\n    text: \"Are you sure that you want to delete this file?\",\n    icon: \"warning\",\n    dangerMode: true,\n  });\n\n  if (willDelete) {\n    swal(\"Deleted!\", \"Your imaginary file has been deleted!\", \"success\");\n  }\n  ```\n  \n### A prompt modal, where the user's input is logged:\n  - Using promises:\n  ```javascript\n  swal(\"Type something:\", {\n    content: \"input\",\n  })\n  .then((value) => {\n    swal(`You typed: ${value}`);\n  });\n  ```\n  - Using async/await:\n  ```javascript\n  const value = await swal(\"Type something:\", {\n    content: \"input\",\n  });\n\n  swal(`You typed: ${value}`);\n  ```\n\n### In combination with Fetch:\n  - Using promises:\n  ```javascript\n  swal({\n    text: \"Wanna log some information about Bulbasaur?\",\n    button: {\n      text: \"Search!\",\n      closeModal: false,\n    },\n  })\n  .then(willSearch => {\n    if (willSearch) {\n      return fetch(\"http://pokeapi.co/api/v2/pokemon/1\");\n    }\n  })\n  .then(result => result.json())\n  .then(json => console.log(json))\n  .catch(err => {\n    swal(\"Oops!\", \"Seems like we couldn't fetch the info\", \"error\");\n  });\n  ```\n  - Using async/await:\n  ```javascript\n  const willSearch = await swal({\n    text: \"Wanna log some information about Bulbasaur?\",\n    button: {\n      text: \"Search!\",\n      closeModal: false,\n    },\n  });\n  \n  if (willSearch) {\n    try {\n      const result = await fetch(\"http://pokeapi.co/api/v2/pokemon/1\");\n      const json = await result.json();\n      console.log(json);\n    } catch (err) {\n      swal(\"Oops!\", \"Seems like we couldn't fetch the info\", \"error\");\n    }\n  }\n  ```\n\n## Using with React\n\nSweetAlert has tools for [integrating with your favourite rendering library.](https://sweetalert.js.org/guides/#using-with-libraries).\n\nIf you're using React, you can install [SweetAlert with React](https://www.npmjs.com/package/@sweetalert/with-react) in addition to the main library, and easily add React components to your alerts like this:\n\n```javascript\nimport React from 'react'\nimport swal from '@sweetalert/with-react'\n\nswal(\n  <div>\n    <h1>Hello world!</h1>\n    <p>\n      This is now rendered with JSX!\n    </p>\n  </div>\n)\n```\n\n[Read more about integrating with React](https://sweetalert.js.org/guides/#using-react)\n\n## Contributing\n\n### If you're changing the core library:\n1. Make changes in the `src` folder.\n2. Preview changes by running `npm run docs`\n3. Submit pull request\n\n### If you're changing the documentation:\n1. Make changes in the `docs-src` folder.\n2. Preview changes by running `npm run docs`\n3. Run `npm run builddocs` to compile the changes to the `docs` folder\n4. Submit pull request\n\n## Contributors\n\nThis project exists thanks to all the people who contribute. [[Contribute](https://github.com/t4t5/sweetalert#contributing)].\n<a href=\"https://github.com/t4t5/sweetalert/graphs/contributors\"><img src=\"https://opencollective.com/SweetAlert/contributors.svg?width=890&button=false\" /></a>\n\n\n## Backers\n\nThank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/SweetAlert#backer)]\n\n<a href=\"https://opencollective.com/SweetAlert#backers\" target=\"_blank\"><img src=\"https://opencollective.com/SweetAlert/backers.svg?width=890\"></a>\n\n\n## Sponsors\n\nSupport this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/SweetAlert#sponsor)]\n\n<a href=\"https://opencollective.com/SweetAlert/sponsor/0/website\" target=\"_blank\"><img src=\"https://opencollective.com/SweetAlert/sponsor/0/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SweetAlert/sponsor/1/website\" target=\"_blank\"><img src=\"https://opencollective.com/SweetAlert/sponsor/1/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SweetAlert/sponsor/2/website\" target=\"_blank\"><img src=\"https://opencollective.com/SweetAlert/sponsor/2/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SweetAlert/sponsor/3/website\" target=\"_blank\"><img src=\"https://opencollective.com/SweetAlert/sponsor/3/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SweetAlert/sponsor/4/website\" target=\"_blank\"><img src=\"https://opencollective.com/SweetAlert/sponsor/4/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SweetAlert/sponsor/5/website\" target=\"_blank\"><img src=\"https://opencollective.com/SweetAlert/sponsor/5/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SweetAlert/sponsor/6/website\" target=\"_blank\"><img src=\"https://opencollective.com/SweetAlert/sponsor/6/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SweetAlert/sponsor/7/website\" target=\"_blank\"><img src=\"https://opencollective.com/SweetAlert/sponsor/7/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SweetAlert/sponsor/8/website\" target=\"_blank\"><img src=\"https://opencollective.com/SweetAlert/sponsor/8/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SweetAlert/sponsor/9/website\" target=\"_blank\"><img src=\"https://opencollective.com/SweetAlert/sponsor/9/avatar.svg\"></a>\n\n\n"
  },
  {
    "path": "docs/CNAME",
    "content": "sweetalert.js.org\n"
  },
  {
    "path": "docs/assets/css/app.css",
    "content": "body {\n  margin: 0;\n  padding: 0;\n}\na {\n  text-decoration: none;\n  color: #f27474;\n}\np a:hover {\n  text-decoration: underline;\n}\nbutton {\n  cursor: pointer;\n}\nbutton:focus {\n  outline: none;\n}\nul {\n  list-style-type: none;\n  margin: 0;\n}\n.global-header {\n  background-color: #fff;\n  box-shadow: 0 1px 15px 0 rgba(192,72,25,0.32);\n  height: 80px;\n  position: fixed;\n  top: 0;\n  left: 0;\n  right: 0;\n  z-index: 100;\n}\n.global-header .logo {\n  width: 162px;\n  height: 36px;\n  background-image: url(\"/assets/images/logo.svg\");\n  background-size: contain;\n  background-repeat: no-repeat;\n  background-position: center center;\n  float: left;\n  margin-top: 22px;\n  margin-left: 15px;\n}\n@media all and (max-width: 600px) {\n  .global-header .logo {\n    float: none;\n    height: 29px;\n    display: block;\n    margin: 0 auto;\n    margin-top: 10px;\n  }\n}\n.global-header nav {\n  font-size: 17px;\n  color: #f27474;\n  float: right;\n  margin-top: 29px;\n}\n@media all and (max-width: 600px) {\n  .global-header nav {\n    float: none;\n    text-align: center;\n    font-size: 16px;\n    margin-top: 10px;\n  }\n}\n.global-header nav a {\n  position: relative;\n  cursor: pointer;\n}\n.global-header nav a::before {\n  content: \"\";\n  background-color: #f27474;\n  height: 3px;\n  border-radius: 2px;\n  position: absolute;\n  left: 0;\n  right: 0;\n  bottom: -5px;\n  display: none;\n}\n.global-header nav a:hover::before {\n  display: block;\n}\n.global-header nav .github-icon {\n  width: 26px;\n  height: 25px;\n  background-image: url(\"/assets/images/github.svg\");\n  display: inline-block;\n  vertical-align: middle;\n  position: relative;\n  top: -3px;\n}\n.global-header ul {\n  white-space: nowrap;\n  padding: 0;\n}\n.global-header ul li {\n  display: inline-block;\n  margin: 0 15px;\n}\n.highlight {\n  background-color: #f8f8f8;\n  padding: 10px 23px;\n  font-size: 14px;\n  line-height: normal;\n  color: rgba(0,0,0,0.62);\n  overflow-x: auto;\n}\n.highlight .editor {\n  font-family: 'Inconsolata', monospace;\n}\n.highlight .line {\n  margin: 6px 0;\n}\n.highlight.bash .line::before {\n  content: \"$ \";\n  opacity: 0.5;\n}\n.highlight .string {\n  color: #8858d2;\n}\n.highlight .html.name.tag {\n  color: #4ac14a;\n}\n.highlight .html.attribute-name {\n  color: #b646c1;\n}\n.highlight .js.name.function {\n  color: #f27474;\n}\n.highlight .js.boolean,\n.highlight .js.numeric {\n  color: #4ac14a;\n}\n.highlight .js.control,\n.highlight .js.assignment {\n  color: #b646c1;\n}\n.highlight .js.storage,\n.highlight .js.variable {\n  color: #00a9ff;\n}\n.highlight .js.comment {\n  color: rgba(0,0,0,0.3);\n}\n.highlight .js.function {\n  color: inherit;\n}\n.highlight .js.variable.other,\n.highlight .js.variable.parameter {\n  color: inherit;\n}\n.highlight .js.storage.class,\n.highlight .js.class + * + .storage.modifier {\n  color: #b646c1;\n}\n.highlight .css.selector {\n  color: #4ac14a;\n}\n.highlight .css.property-name {\n  color: #00a9ff;\n}\n.highlight .css.property-value {\n  color: #8858d2;\n}\n.highlight .css.separator,\n.highlight .css.terminator {\n  color: rgba(0,0,0,0.62);\n}\n.landing-top {\n  height: 370px;\n  position: relative;\n  padding-top: 80px;\n}\n@media all and (max-width: 1000px) {\n  .landing-top {\n    height: 600px;\n  }\n}\n.landing-top .bg {\n  background-image: linear-gradient(-132deg, #ff7d79 0%, #f28b74 92%);\n  position: absolute;\n  left: 0;\n  right: 0;\n  top: 0;\n  bottom: 0;\n  -webkit-clip-path: url(\"#top-transition-clip-shape\");\n  clip-path: url(\"#top-transition-clip-shape\");\n  will-change: transform; /* For Safari */\n/*\n     * For some reason, clip path makes the whole page\n     * flicker in Mobile Safari. \n     * So we disable it for mobile.\n     */\n}\n@media all and (max-width: 600px) {\n  .landing-top .bg {\n    -webkit-clip-path: none;\n    clip-path: none;\n  }\n}\n.landing-top .swal-modal-example {\n  transform: none;\n  opacity: 1;\n  height: 292px;\n  width: 409px;\n  margin: 20px;\n  background-color: #fff;\n  box-shadow: 0 5px 22px 0 rgba(0,0,0,0.2);\n  border-radius: 8px;\n  margin-top: 59px;\n  text-align: center;\n  display: inline-block;\n  vertical-align: middle;\n  overflow: hidden;\n  transition: height 0.3s;\n  position: absolute;\n  z-index: 10;\n  top: 0;\n  left: 0;\n}\n@media all and (max-width: 1000px) {\n  .landing-top .swal-modal-example {\n    position: relative;\n    display: block;\n    margin: 20px auto;\n  }\n}\n@media all and (max-width: 450px) {\n  .landing-top .swal-modal-example {\n    width: 100%;\n  }\n}\n.landing-top .swal-modal-example[data-type=\"success\"] {\n  height: 292px;\n}\n.landing-top .swal-modal-example[data-type=\"warning\"] {\n  height: 325px;\n}\n.landing-top .swal-modal-example .swal-title {\n  padding-top: 10px;\n}\n.landing-top .swal-modal-example .swal-text {\n  color: rgba(0,0,0,0.48);\n  margin-top: 6px;\n}\n.landing-top .modal-content-overlay {\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  background-color: #fff;\n  z-index: 2;\n  pointer-events: none;\n  opacity: 0;\n  transition: opacity 0.2s;\n}\n.landing-top .modal-content-overlay.show {\n  opacity: 1;\n}\n.landing-top .example-content {\n  display: none;\n}\n.landing-top .example-content.show {\n  display: block;\n}\n.landing-top .desc {\n  display: inline-block;\n  position: relative;\n  color: #fff;\n  margin-left: 50px;\n  max-width: calc(100% - 409px - 112px);\n  vertical-align: middle;\n  margin-top: 61px;\n  padding-left: 473px;\n}\n@media all and (max-width: 1000px) {\n  .landing-top .desc {\n    display: block;\n    max-width: none;\n    padding-left: 0;\n    margin-left: 0;\n    text-align: center;\n  }\n}\n.landing-top h2 {\n  font-size: 30px;\n  line-height: 51px;\n  font-weight: 300;\n}\n@media all and (max-width: 380px) {\n  .landing-top h2 {\n    font-size: 25px;\n    margin-top: -20px;\n  }\n}\n.landing-top .text-rotater {\n  display: block;\n  height: 57px;\n  overflow: hidden;\n}\n.landing-top .text-rotater span {\n  display: block;\n  transition: transform 0.4s;\n}\n.landing-top .text-rotater.slide-up span {\n  transform: translateY(-51px);\n}\n.landing-top .install {\n  background: rgba(120,40,40,0.32);\n  border-radius: 7px;\n  max-width: 357px;\n  padding: 12px;\n}\n@media all and (max-width: 1000px) {\n  .landing-top .install {\n    margin: 0 auto;\n    text-align: left;\n  }\n}\n.landing-top .install .button {\n  background: rgba(255,255,255,0.39);\n  width: 12px;\n  height: 12px;\n  border-radius: 50%;\n  display: inline-block;\n}\n.landing-top .install .command {\n  font-family: 'Inconsolata', monospace;\n  padding: 12px;\n  padding-left: 30px;\n}\n.landing-top .install .command::before {\n  content: \"$\";\n  opacity: 0.5;\n  transform: rotate(8deg);\n  font-size: 20px;\n  position: absolute;\n  margin-left: -27px;\n  margin-top: -2px;\n}\n.comparison-container {\n  padding-bottom: 70px;\n  text-align: center;\n}\n.comparison-container h3 {\n  font-size: 22px;\n  color: #b49993;\n  font-weight: 400;\n  display: block;\n  text-align: center;\n  margin-top: 93px;\n  margin-bottom: 80px;\n}\n.comparison-container .code-container {\n  text-align: center;\n  width: calc(50% - 60px);\n  display: inline-block;\n  vertical-align: middle;\n}\n@media all and (max-width: 600px) {\n  .comparison-container .code-container {\n    width: 100%;\n  }\n}\n.comparison-container .versus {\n  width: 35px;\n  height: 33px;\n  background-image: url(\"/assets/images/vs.svg\");\n  display: inline-block;\n  vertical-align: middle;\n  margin: 0 30px;\n}\n@media all and (max-width: 600px) {\n  .comparison-container .versus {\n    margin: 30px;\n    margin-bottom: -10px;\n  }\n}\n.comparison-container h5 {\n  font-size: 13px;\n  color: rgba(0,0,0,0.21);\n  text-transform: uppercase;\n  text-align: left;\n  margin-bottom: 15px;\n}\n.comparison-container h5.swal-logo {\n  text-indent: -9999999px;\n  margin-top: 2px;\n}\n.comparison-container h5.swal-logo::after {\n  content: \"\";\n  background-image: url(\"/assets/images/logo-small.svg\");\n  width: 91px;\n  height: 20px;\n  display: block;\n}\n.comparison-container .highlight {\n  text-align: left;\n  padding: 16px 23px;\n}\n.comparison-container .highlight span {\n  margin: 0 -4px;\n}\n.comparison-container .remark {\n  font-size: 20px;\n  color: #f27474;\n  margin-top: 80px;\n}\n.comparison-container .get-started-button {\n  background-color: #f27474;\n  color: #fff;\n  border-radius: 8px;\n  font-size: 22px;\n  padding: 14px 55px;\n  margin: 20px 0;\n  display: inline-block;\n}\n.customize-container {\n  background-color: #999eaf;\n  text-align: center;\n  color: #fff;\n  text-align: center;\n  background-image: url(\"/assets/images/pattern.png\");\n  background-image: -webkit-image-set(url(\"/assets/images/pattern.png\") 1x, url(\"/assets/images/pattern@2x.png\") 2x);\n  padding: 40px 0;\n  -webkit-clip-path: url(\"#customization-transition-clip-shape\");\n  clip-path: url(\"#customization-transition-clip-shape\");\n  will-change: transform; /* For Safari */\n}\n@media all and (max-width: 600px) {\n  .customize-container {\n    -webkit-clip-path: none;\n    clip-path: none;\n  }\n}\n.customize-container h3 {\n  font-weight: 400;\n  font-size: 20px;\n  padding: 50px 0;\n}\n.customize-container .example-modals {\n  background-image: url(\"/assets/images/modal-examples.png\");\n  background-image: -webkit-image-set(url(\"/assets/images/modal-examples.png\") 1x, url(\"/assets/images/modal-examples@2x.png\") 2x);\n  height: 284px;\n  background-size: auto 100%;\n  background-position: 0 0;\n  animation: scrollExamples 80s infinite linear;\n}\n.customize-container .view-api-button {\n  border: 3px solid #fff;\n  border-radius: 6px;\n  color: #fff;\n  padding: 12px 52px;\n  font-size: 18px;\n  margin-top: 60px;\n  display: inline-block;\n}\n@-moz-keyframes scrollExamples {\n  0% {\n    background-position: 0 0;\n  }\n  100% {\n    background-position: -2146px 0;\n  }\n}\n@-webkit-keyframes scrollExamples {\n  0% {\n    background-position: 0 0;\n  }\n  100% {\n    background-position: -2146px 0;\n  }\n}\n@-o-keyframes scrollExamples {\n  0% {\n    background-position: 0 0;\n  }\n  100% {\n    background-position: -2146px 0;\n  }\n}\n@keyframes scrollExamples {\n  0% {\n    background-position: 0 0;\n  }\n  100% {\n    background-position: -2146px 0;\n  }\n}\n.page-content {\n  $mobile-breakpoint: 880px;\n}\n.page-content table {\n  border-collapse: collapse;\n  border: none;\n  width: 100%;\n}\n.page-content th {\n  font-size: 17px;\n  color: rgba(0,0,0,0.34);\n  padding: 20px 15px;\n  text-transform: capitalize;\n  font-weight: 400;\n}\n.page-content thead > tr {\n  border-bottom: 2px solid rgba(0,0,0,0.1);\n}\n.page-content tr {\n  text-align: left;\n  box-shadow: 0px -1px 0px rgba(0,0,0,0.15);\n}\n.page-content tr:first-child {\n  box-shadow: none;\n}\n.page-content td {\n  padding: 17px;\n}\n.page-content td:first-child > code {\n  color: #2e9fef;\n  background: none;\n  border: none;\n  font-size: 16px;\n  padding: 0;\n}\n@media all and (min-width: mobile-breakpoint) {\n  .page-content tbody tr:nth-child(1) {\n    box-shadow: none;\n  }\n}\n@media all and (max-width: mobile-breakpoint) {\n  .page-content table,\n  .page-content thead,\n  .page-content tbody,\n  .page-content th,\n  .page-content td,\n  .page-content tr {\n    display: block;\n  }\n  .page-content thead tr {\n    position: absolute;\n    top: -9999px;\n    left: -9999px;\n  }\n  .page-content tr {\n    margin-top: -1px;\n    box-shadow: 0px -1px 0px 0px rgba(0,0,0,0.27);\n  }\n  .page-content td {\n/* Behave  like a \"row\" */\n    border: none;\n    border-bottom: 1px solid #eee;\n    position: relative;\n    padding-left: mobile-padding;\n    min-height: 20px;\n  }\n  .page-content td::before {\n/* Now like a table header */\n    position: absolute;\n/* Top/left values mimic padding */\n    top: 15px;\n    left: 15px;\n    width: mobile-padding;\n    width: calc((mobile-padding - 35px));\n    overflow: hidden;\n    text-overflow: ellipsis;\n    padding-right: 10px;\n    white-space: nowrap;\n    color: rgba(0,0,0,0.54);\n    font-family: page-font;\n    font-size: 16px;\n    text-transform: capitalize;\n    content: attr(data-name);\n  }\n}\n.doc-container {\n  overflow: hidden;\n}\n.side-menu {\n  width: 225px;\n  float: left;\n  padding-left: 20px;\n  position: fixed;\n  top: 88px;\n}\n@media all and (max-width: 600px) {\n  .side-menu {\n    float: none;\n    position: static;\n    margin-top: 120px;\n    text-align: center;\n    width: 100%;\n    margin-bottom: -60px;\n    padding-left: 0;\n  }\n}\n.side-menu .title {\n  font-size: 20px;\n  color: rgba(0,0,0,0.63);\n  font-weight: 600;\n  margin-top: 50px;\n  margin-bottom: 36px;\n}\n.side-menu a {\n  font-size: 17px;\n  color: rgba(0,0,0,0.42);\n  display: block;\n  margin: 18px 0;\n}\n.side-menu a:hover {\n  color: rgba(0,0,0,0.6);\n}\n.page-content {\n  float: left;\n  width: calc(100% - 225px - 20px);\n  margin-left: 225px;\n  min-height: 220px;\n  margin-top: 16px;\n  font-size: 16px;\n  color: rgba(0,0,0,0.59);\n  line-height: 29px;\n}\n@media all and (max-width: 600px) {\n  .page-content {\n    float: none;\n    margin-left: 0;\n    width: 100%;\n  }\n}\n.page-content h1 {\n  padding-top: 90px;\n  border-bottom: 1px solid rgba(0,0,0,0.15);\n  padding-bottom: 20px;\n  margin-bottom: 0;\n}\n.page-content h1::before {\n  content: \"#\";\n  position: absolute;\n  margin-left: -23px;\n  font-size: 24px;\n  margin-top: 3px;\n  color: #f38270;\n  font-weight: 500;\n}\n.page-content h1 a {\n  font-size: 30px;\n  color: rgba(0,0,0,0.85);\n  font-weight: 600;\n}\n.page-content h2,\n.page-content h3 {\n  font-size: 20px;\n  margin-top: -70px;\n  padding-top: 100px;\n}\n.page-content h2 a,\n.page-content h3 a {\n  color: rgba(0,0,0,0.7);\n}\n.page-content ul {\n  list-style-type: disc;\n  margin-bottom: 20px;\n}\n.page-content ul li {\n  margin: 5px 0;\n}\n.page-content img {\n  max-width: 100%;\n}\n.page-content.api > ul {\n  list-style-type: none;\n  padding-left: 30px;\n}\n.page-content.api > ul > li h3::before {\n  content: \"\";\n  width: 8px;\n  height: 8px;\n  position: absolute;\n  border-radius: 50%;\n  background-color: #f27474;\n  margin-left: -27px;\n  margin-top: 12px;\n}\n.page-content code {\n  font-family: 'Inconsolata', monospace;\n  padding: 3px 6px;\n  border-radius: 2px;\n  border: 1px solid rgba(0,0,0,0.12);\n  background: #f8f8f8;\n  font-size: 14px;\n  color: #f27474;\n}\n.page-content kbd {\n  display: inline-block;\n  padding: 3px 5px;\n  font-size: 11px;\n  line-height: 10px;\n  color: #444d56;\n  vertical-align: middle;\n  background-color: #fafbfc;\n  border: solid 1px #c6cbd1;\n  border-bottom-color: #959da5;\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 #959da5;\n  font-family: sans-serif;\n}\n.page-content preview-button {\n/* Matches the \"real\" button's height: */\n  display: block;\n  height: 44px;\n}\n.page-content button.preview {\n  margin: 20px auto;\n  width: 110px;\n  display: block;\n  position: relative;\n  z-index: 2;\n}\n.page-content figcaption {\n  font-style: italic;\n}\n.swal-modal.red-bg {\n  background-color: rgba(255,0,0,0.28);\n}\n.mood-btn {\n  background: none;\n  border: none;\n  width: 28px;\n  height: 28px;\n  background-image: url(\"/assets/images/mood-sad.png\");\n  background-size: 28px 28px;\n  padding: 4px;\n  background-position: center center;\n  box-sizing: content-box;\n  background-repeat: no-repeat;\n  margin: 0 7px;\n  position: relative;\n  overflow: hidden;\n  border-radius: 3px;\n}\n.mood-btn:hover::after {\n  content: \"\";\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background-color: rgba(0,0,0,0.03);\n}\n.mood-btn[data-rating=\"2\"] {\n  background-image: url(\"/assets/images/mood-neutral.png\");\n}\n.mood-btn[data-rating=\"3\"] {\n  background-image: url(\"/assets/images/mood-happy.png\");\n}\nbody {\n  font-family: 'Lato', 'Helvetica Neue', Helvetica, sans-serif;\n}\nsvg.hidden {\n  display: block;\n}\n.page-container {\n  max-width: 1000px;\n  margin: 0 auto;\n  padding: 0 10px;\n  position: relative;\n}\n.preview {\n  background-color: #a3dd82;\n  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);\n  border-radius: 4px;\n  border: none;\n  color: #fff;\n  font-size: 15px;\n  color: #fff;\n  padding: 9px 18px;\n  margin-top: 20px;\n}\n.preview::before {\n  content: \"\";\n  width: 0;\n  height: 0;\n  border-top: 6px solid transparent;\n  border-bottom: 6px solid transparent;\n  border-left: 10px solid #fff;\n  display: inline-block;\n  margin-right: 5px;\n}\n.preview:hover {\n  background-color: #98d973;\n}\nfooter {\n  padding: 40px 20px;\n  text-align: center;\n  color: #728194;\n}\nfooter .love-icon {\n  background-image: url(\"/assets/images/heart-icon.svg\");\n  width: 22px;\n  height: 20px;\n  display: inline-block;\n  vertical-align: middle;\n  margin: 0 5px;\n  position: relative;\n  top: -2px;\n}\n"
  },
  {
    "path": "docs/assets/css/guide.css",
    "content": ".page-content {\n  $mobile-breakpoint: 880px;\n}\n.page-content table {\n  border-collapse: collapse;\n  border: none;\n  width: 100%;\n}\n.page-content th {\n  font-size: 17px;\n  color: rgba(0,0,0,0.34);\n  padding: 20px 15px;\n  text-transform: capitalize;\n  font-weight: 400;\n}\n.page-content thead > tr {\n  border-bottom: 2px solid rgba(0,0,0,0.1);\n}\n.page-content tr {\n  text-align: left;\n  box-shadow: 0px -1px 0px rgba(0,0,0,0.15);\n}\n.page-content tr:first-child {\n  box-shadow: none;\n}\n.page-content td {\n  padding: 17px;\n}\n.page-content td:first-child > code {\n  color: #2e9fef;\n  background: none;\n  border: none;\n  font-size: 16px;\n  padding: 0;\n}\n@media all and (min-width: mobile-breakpoint) {\n  .page-content tbody tr:nth-child(1) {\n    box-shadow: none;\n  }\n}\n@media all and (max-width: mobile-breakpoint) {\n  .page-content table,\n  .page-content thead,\n  .page-content tbody,\n  .page-content th,\n  .page-content td,\n  .page-content tr {\n    display: block;\n  }\n  .page-content thead tr {\n    position: absolute;\n    top: -9999px;\n    left: -9999px;\n  }\n  .page-content tr {\n    margin-top: -1px;\n    box-shadow: 0px -1px 0px 0px rgba(0,0,0,0.27);\n  }\n  .page-content td {\n/* Behave  like a \"row\" */\n    border: none;\n    border-bottom: 1px solid #eee;\n    position: relative;\n    padding-left: mobile-padding;\n    min-height: 20px;\n  }\n  .page-content td::before {\n/* Now like a table header */\n    position: absolute;\n/* Top/left values mimic padding */\n    top: 15px;\n    left: 15px;\n    width: mobile-padding;\n    width: calc((mobile-padding - 35px));\n    overflow: hidden;\n    text-overflow: ellipsis;\n    padding-right: 10px;\n    white-space: nowrap;\n    color: rgba(0,0,0,0.54);\n    font-family: page-font;\n    font-size: 16px;\n    text-transform: capitalize;\n    content: attr(data-name);\n  }\n}\n.doc-container {\n  overflow: hidden;\n}\n.side-menu {\n  width: 225px;\n  float: left;\n  padding-left: 20px;\n  position: fixed;\n  top: 88px;\n}\n@media all and (max-width: $phablet-width) {\n  .side-menu {\n    float: none;\n    position: static;\n    margin-top: 120px;\n    text-align: center;\n    width: 100%;\n    margin-bottom: -60px;\n    padding-left: 0;\n  }\n}\n.side-menu .title {\n  font-size: 20px;\n  color: rgba(0,0,0,0.63);\n  font-weight: 600;\n  margin-top: 50px;\n  margin-bottom: 36px;\n}\n.side-menu a {\n  font-size: 17px;\n  color: rgba(0,0,0,0.42);\n  display: block;\n  margin: 18px 0;\n}\n.side-menu a:hover {\n  color: rgba(0,0,0,0.6);\n}\n.page-content {\n  float: left;\n  width: calc(100% - 225px - 20px);\n  margin-left: 225px;\n  min-height: 220px;\n  margin-top: 16px;\n  font-size: 16px;\n  color: rgba(0,0,0,0.59);\n  line-height: 29px;\n}\n@media all and (max-width: $phablet-width) {\n  .page-content {\n    float: none;\n    margin-left: 0;\n    width: 100%;\n  }\n}\n.page-content h1 {\n  padding-top: 90px;\n  border-bottom: 1px solid rgba(0,0,0,0.15);\n  padding-bottom: 20px;\n  margin-bottom: 0;\n}\n.page-content h1::before {\n  content: \"#\";\n  position: absolute;\n  margin-left: -23px;\n  font-size: 24px;\n  margin-top: 3px;\n  color: #f38270;\n  font-weight: 500;\n}\n.page-content h1 a {\n  font-size: 30px;\n  color: rgba(0,0,0,0.85);\n  font-weight: 600;\n}\n.page-content h2,\n.page-content h3 {\n  font-size: 20px;\n  margin-top: -70px;\n  padding-top: 100px;\n}\n.page-content h2 a,\n.page-content h3 a {\n  color: rgba(0,0,0,0.7);\n}\n.page-content ul {\n  list-style-type: disc;\n  margin-bottom: 20px;\n}\n.page-content ul li {\n  margin: 5px 0;\n}\n.page-content img {\n  max-width: 100%;\n}\n.page-content.api > ul {\n  list-style-type: none;\n  padding-left: 30px;\n}\n.page-content.api > ul > li h3::before {\n  content: \"\";\n  width: 8px;\n  height: 8px;\n  position: absolute;\n  border-radius: 50%;\n  background-color: $main-color;\n  margin-left: -27px;\n  margin-top: 12px;\n}\n.page-content code {\n  font-family: $code-font;\n  padding: 3px 6px;\n  border-radius: 2px;\n  border: 1px solid rgba(0,0,0,0.12);\n  background: #f8f8f8;\n  font-size: 14px;\n  color: $main-color;\n}\n.page-content kbd {\n  display: inline-block;\n  padding: 3px 5px;\n  font-size: 11px;\n  line-height: 10px;\n  color: #444d56;\n  vertical-align: middle;\n  background-color: #fafbfc;\n  border: solid 1px #c6cbd1;\n  border-bottom-color: #959da5;\n  border-radius: 3px;\n  box-shadow: inset 0 -1px 0 #959da5;\n  font-family: sans-serif;\n}\n.page-content preview-button {\n/* Matches the \"real\" button's height: */\n  display: block;\n  height: 44px;\n}\n.page-content button.preview {\n  margin: 20px auto;\n  width: 110px;\n  display: block;\n  position: relative;\n  z-index: 2;\n}\n.page-content figcaption {\n  font-style: italic;\n}\n.swal-modal.red-bg {\n  background-color: rgba(255,0,0,0.28);\n}\n.mood-btn {\n  background: none;\n  border: none;\n  width: 28px;\n  height: 28px;\n  background-image: url(\"/assets/images/mood-sad.png\");\n  background-size: 28px 28px;\n  padding: 4px;\n  background-position: center center;\n  box-sizing: content-box;\n  background-repeat: no-repeat;\n  margin: 0 7px;\n  position: relative;\n  overflow: hidden;\n  border-radius: 3px;\n}\n.mood-btn:hover::after {\n  content: \"\";\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background-color: rgba(0,0,0,0.03);\n}\n.mood-btn[data-rating=\"2\"] {\n  background-image: url(\"/assets/images/mood-neutral.png\");\n}\n.mood-btn[data-rating=\"3\"] {\n  background-image: url(\"/assets/images/mood-happy.png\");\n}\n"
  },
  {
    "path": "docs/assets/css/header.css",
    "content": ".global-header {\n  background-color: #fff;\n  box-shadow: 0 1px 15px 0 rgba(192,72,25,0.32);\n  height: $header-height;\n  position: fixed;\n  top: 0;\n  left: 0;\n  right: 0;\n  z-index: 100;\n}\n.global-header .logo {\n  width: 162px;\n  height: 36px;\n  background-image: url(\"/assets/images/logo.svg\");\n  background-size: contain;\n  background-repeat: no-repeat;\n  background-position: center center;\n  float: left;\n  margin-top: 22px;\n  margin-left: 15px;\n}\n@media all and (max-width: $phablet-width) {\n  .global-header .logo {\n    float: none;\n    height: 29px;\n    display: block;\n    margin: 0 auto;\n    margin-top: 10px;\n  }\n}\n.global-header nav {\n  font-size: 17px;\n  color: $main-color;\n  float: right;\n  margin-top: 29px;\n}\n@media all and (max-width: $phablet-width) {\n  .global-header nav {\n    float: none;\n    text-align: center;\n    font-size: 16px;\n    margin-top: 10px;\n  }\n}\n.global-header nav a {\n  position: relative;\n  cursor: pointer;\n}\n.global-header nav a::before {\n  content: \"\";\n  background-color: $main-color;\n  height: 3px;\n  border-radius: 2px;\n  position: absolute;\n  left: 0;\n  right: 0;\n  bottom: -5px;\n  display: none;\n}\n.global-header nav a:hover::before {\n  display: block;\n}\n.global-header nav .github-icon {\n  width: 26px;\n  height: 25px;\n  background-image: url(\"/assets/images/github.svg\");\n  display: inline-block;\n  vertical-align: middle;\n  position: relative;\n  top: -3px;\n}\n.global-header ul {\n  white-space: nowrap;\n  padding: 0;\n}\n.global-header ul li {\n  display: inline-block;\n  margin: 0 15px;\n}\n"
  },
  {
    "path": "docs/assets/css/highlight.css",
    "content": ".highlight {\n  background-color: #f8f8f8;\n  padding: 10px 23px;\n  font-size: 14px;\n  line-height: normal;\n  color: rgba(0,0,0,0.62);\n  overflow-x: auto;\n}\n.highlight .editor {\n  font-family: $code-font;\n}\n.highlight .line {\n  margin: 6px 0;\n}\n.highlight.bash .line::before {\n  content: \"$ \";\n  opacity: 0.5;\n}\n.highlight .string {\n  color: #8858d2;\n}\n.highlight .html.name.tag {\n  color: #4ac14a;\n}\n.highlight .html.attribute-name {\n  color: #b646c1;\n}\n.highlight .js.name.function {\n  color: $main-color;\n}\n.highlight .js.boolean,\n.highlight .js.numeric {\n  color: #4ac14a;\n}\n.highlight .js.control,\n.highlight .js.assignment {\n  color: #b646c1;\n}\n.highlight .js.storage,\n.highlight .js.variable {\n  color: #00a9ff;\n}\n.highlight .js.comment {\n  color: rgba(0,0,0,0.3);\n}\n.highlight .js.function {\n  color: inherit;\n}\n.highlight .js.variable.other,\n.highlight .js.variable.parameter {\n  color: inherit;\n}\n.highlight .js.storage.class,\n.highlight .js.class + * + .storage.modifier {\n  color: #b646c1;\n}\n.highlight .css.selector {\n  color: #4ac14a;\n}\n.highlight .css.property-name {\n  color: #00a9ff;\n}\n.highlight .css.property-value {\n  color: #8858d2;\n}\n.highlight .css.separator,\n.highlight .css.terminator {\n  color: rgba(0,0,0,0.62);\n}\n"
  },
  {
    "path": "docs/assets/css/index.css",
    "content": ".landing-top {\n  height: 370px;\n  position: relative;\n  padding-top: $header-height;\n}\n@media all and (max-width: $tablet-width) {\n  .landing-top {\n    height: 600px;\n  }\n}\n.landing-top .bg {\n  background-image: linear-gradient(-132deg, #ff7d79 0%, #f28b74 92%);\n  position: absolute;\n  left: 0;\n  right: 0;\n  top: 0;\n  bottom: 0;\n  -webkit-clip-path: url(\"#top-transition-clip-shape\");\n  clip-path: url(\"#top-transition-clip-shape\");\n  will-change: transform; /* For Safari */\n/*\n     * For some reason, clip path makes the whole page\n     * flicker in Mobile Safari. \n     * So we disable it for mobile.\n     */\n}\n@media all and (max-width: $phablet-width) {\n  .landing-top .bg {\n    -webkit-clip-path: none;\n    clip-path: none;\n  }\n}\n.landing-top .swal-modal-example {\n  transform: none;\n  opacity: 1;\n  height: 292px;\n  width: 409px;\n  margin: 20px;\n  background-color: #fff;\n  box-shadow: 0 5px 22px 0 rgba(0,0,0,0.2);\n  border-radius: 8px;\n  margin-top: 59px;\n  text-align: center;\n  display: inline-block;\n  vertical-align: middle;\n  overflow: hidden;\n  transition: height 0.3s;\n  position: absolute;\n  z-index: 10;\n  top: 0;\n  left: 0;\n}\n@media all and (max-width: $tablet-width) {\n  .landing-top .swal-modal-example {\n    position: relative;\n    display: block;\n    margin: 20px auto;\n  }\n}\n@media all and (max-width: $mobile-width) {\n  .landing-top .swal-modal-example {\n    width: 100%;\n  }\n}\n.landing-top .swal-modal-example[data-type=\"success\"] {\n  height: 292px;\n}\n.landing-top .swal-modal-example[data-type=\"warning\"] {\n  height: 325px;\n}\n.landing-top .swal-modal-example .swal-title {\n  padding-top: 10px;\n}\n.landing-top .swal-modal-example .swal-text {\n  color: rgba(0,0,0,0.48);\n  margin-top: 6px;\n}\n.landing-top .modal-content-overlay {\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  background-color: #fff;\n  z-index: 2;\n  pointer-events: none;\n  opacity: 0;\n  transition: opacity 0.2s;\n}\n.landing-top .modal-content-overlay.show {\n  opacity: 1;\n}\n.landing-top .example-content {\n  display: none;\n}\n.landing-top .example-content.show {\n  display: block;\n}\n.landing-top .desc {\n  display: inline-block;\n  position: relative;\n  color: #fff;\n  margin-left: 50px;\n  max-width: calc(100% - 409px - 112px);\n  vertical-align: middle;\n  margin-top: 61px;\n  padding-left: 473px;\n}\n@media all and (max-width: $tablet-width) {\n  .landing-top .desc {\n    display: block;\n    max-width: none;\n    padding-left: 0;\n    margin-left: 0;\n    text-align: center;\n  }\n}\n.landing-top h2 {\n  font-size: 30px;\n  line-height: 51px;\n  font-weight: 300;\n}\n@media all and (max-width: $small-width) {\n  .landing-top h2 {\n    font-size: 25px;\n    margin-top: -20px;\n  }\n}\n.landing-top .text-rotater {\n  display: block;\n  height: 57px;\n  overflow: hidden;\n}\n.landing-top .text-rotater span {\n  display: block;\n  transition: transform 0.4s;\n}\n.landing-top .text-rotater.slide-up span {\n  transform: translateY(-51px);\n}\n.landing-top .install {\n  background: rgba(120,40,40,0.32);\n  border-radius: 7px;\n  max-width: 357px;\n  padding: 12px;\n}\n@media all and (max-width: $tablet-width) {\n  .landing-top .install {\n    margin: 0 auto;\n    text-align: left;\n  }\n}\n.landing-top .install .button {\n  background: rgba(255,255,255,0.39);\n  width: 12px;\n  height: 12px;\n  border-radius: 50%;\n  display: inline-block;\n}\n.landing-top .install .command {\n  font-family: $code-font;\n  padding: 12px;\n  padding-left: 30px;\n}\n.landing-top .install .command::before {\n  content: \"$\";\n  opacity: 0.5;\n  transform: rotate(8deg);\n  font-size: 20px;\n  position: absolute;\n  margin-left: -27px;\n  margin-top: -2px;\n}\n.comparison-container {\n  padding-bottom: 70px;\n  text-align: center;\n}\n.comparison-container h3 {\n  font-size: 22px;\n  color: #b49993;\n  font-weight: 400;\n  display: block;\n  text-align: center;\n  margin-top: 93px;\n  margin-bottom: 80px;\n}\n.comparison-container .code-container {\n  text-align: center;\n  width: calc(50% - 60px);\n  display: inline-block;\n  vertical-align: middle;\n}\n@media all and (max-width: $phablet-width) {\n  .comparison-container .code-container {\n    width: 100%;\n  }\n}\n.comparison-container .versus {\n  width: 35px;\n  height: 33px;\n  background-image: url(\"/assets/images/vs.svg\");\n  display: inline-block;\n  vertical-align: middle;\n  margin: 0 30px;\n}\n@media all and (max-width: $phablet-width) {\n  .comparison-container .versus {\n    margin: 30px;\n    margin-bottom: -10px;\n  }\n}\n.comparison-container h5 {\n  font-size: 13px;\n  color: rgba(0,0,0,0.21);\n  text-transform: uppercase;\n  text-align: left;\n  margin-bottom: 15px;\n}\n.comparison-container h5.swal-logo {\n  text-indent: -9999999px;\n  margin-top: 2px;\n}\n.comparison-container h5.swal-logo::after {\n  content: \"\";\n  background-image: url(\"/assets/images/logo-small.svg\");\n  width: 91px;\n  height: 20px;\n  display: block;\n}\n.comparison-container .highlight {\n  text-align: left;\n  padding: 16px 23px;\n}\n.comparison-container .highlight span {\n  margin: 0 -4px;\n}\n.comparison-container .remark {\n  font-size: 20px;\n  color: $main-color;\n  margin-top: 80px;\n}\n.comparison-container .get-started-button {\n  background-color: $main-color;\n  color: #fff;\n  border-radius: 8px;\n  font-size: 22px;\n  padding: 14px 55px;\n  margin: 20px 0;\n  display: inline-block;\n}\n.customize-container {\n  background-color: #999eaf;\n  text-align: center;\n  color: #fff;\n  text-align: center;\n  background-image: url(\"/assets/images/pattern.png\");\n  background-image: -webkit-image-set(url(\"/assets/images/pattern.png\") 1x, url(\"/assets/images/pattern@2x.png\") 2x);\n  padding: 40px 0;\n  -webkit-clip-path: url(\"#customization-transition-clip-shape\");\n  clip-path: url(\"#customization-transition-clip-shape\");\n  will-change: transform; /* For Safari */\n}\n@media all and (max-width: $phablet-width) {\n  .customize-container {\n    -webkit-clip-path: none;\n    clip-path: none;\n  }\n}\n.customize-container h3 {\n  font-weight: 400;\n  font-size: 20px;\n  padding: 50px 0;\n}\n.customize-container .example-modals {\n  background-image: url(\"/assets/images/modal-examples.png\");\n  background-image: -webkit-image-set(url(\"/assets/images/modal-examples.png\") 1x, url(\"/assets/images/modal-examples@2x.png\") 2x);\n  height: 284px;\n  background-size: auto 100%;\n  background-position: 0 0;\n  animation: scrollExamples 80s infinite linear;\n}\n.customize-container .view-api-button {\n  border: 3px solid #fff;\n  border-radius: 6px;\n  color: #fff;\n  padding: 12px 52px;\n  font-size: 18px;\n  margin-top: 60px;\n  display: inline-block;\n}\n@-moz-keyframes scrollExamples {\n  0% {\n    background-position: 0 0;\n  }\n  100% {\n    background-position: -2146px 0;\n  }\n}\n@-webkit-keyframes scrollExamples {\n  0% {\n    background-position: 0 0;\n  }\n  100% {\n    background-position: -2146px 0;\n  }\n}\n@-o-keyframes scrollExamples {\n  0% {\n    background-position: 0 0;\n  }\n  100% {\n    background-position: -2146px 0;\n  }\n}\n@keyframes scrollExamples {\n  0% {\n    background-position: 0 0;\n  }\n  100% {\n    background-position: -2146px 0;\n  }\n}\n"
  },
  {
    "path": "docs/assets/css/normalize.css",
    "content": "body {\n  margin: 0;\n  padding: 0;\n}\na {\n  text-decoration: none;\n  color: $main-color;\n}\np a:hover {\n  text-decoration: underline;\n}\nbutton {\n  cursor: pointer;\n}\nbutton:focus {\n  outline: none;\n}\nul {\n  list-style-type: none;\n  margin: 0;\n}\n"
  },
  {
    "path": "docs/assets/css/table.css",
    "content": ".page-content {\n  $mobile-breakpoint: 880px;\n}\n.page-content table {\n  border-collapse: collapse;\n  border: none;\n  width: 100%;\n}\n.page-content th {\n  font-size: 17px;\n  color: rgba(0,0,0,0.34);\n  padding: 20px 15px;\n  text-transform: capitalize;\n  font-weight: 400;\n}\n.page-content thead > tr {\n  border-bottom: 2px solid rgba(0,0,0,0.1);\n}\n.page-content tr {\n  text-align: left;\n  box-shadow: 0px -1px 0px rgba(0,0,0,0.15);\n}\n.page-content tr:first-child {\n  box-shadow: none;\n}\n.page-content td {\n  padding: 17px;\n}\n.page-content td:first-child > code {\n  color: #2e9fef;\n  background: none;\n  border: none;\n  font-size: 16px;\n  padding: 0;\n}\n@media all and (min-width: mobile-breakpoint) {\n  .page-content tbody tr:nth-child(1) {\n    box-shadow: none;\n  }\n}\n@media all and (max-width: mobile-breakpoint) {\n  .page-content table,\n  .page-content thead,\n  .page-content tbody,\n  .page-content th,\n  .page-content td,\n  .page-content tr {\n    display: block;\n  }\n  .page-content thead tr {\n    position: absolute;\n    top: -9999px;\n    left: -9999px;\n  }\n  .page-content tr {\n    margin-top: -1px;\n    box-shadow: 0px -1px 0px 0px rgba(0,0,0,0.27);\n  }\n  .page-content td {\n/* Behave  like a \"row\" */\n    border: none;\n    border-bottom: 1px solid #eee;\n    position: relative;\n    padding-left: mobile-padding;\n    min-height: 20px;\n  }\n  .page-content td::before {\n/* Now like a table header */\n    position: absolute;\n/* Top/left values mimic padding */\n    top: 15px;\n    left: 15px;\n    width: mobile-padding;\n    width: calc((mobile-padding - 35px));\n    overflow: hidden;\n    text-overflow: ellipsis;\n    padding-right: 10px;\n    white-space: nowrap;\n    color: rgba(0,0,0,0.54);\n    font-family: page-font;\n    font-size: 16px;\n    text-transform: capitalize;\n    content: attr(data-name);\n  }\n}\n"
  },
  {
    "path": "docs/assets/css/variables.css",
    "content": ""
  },
  {
    "path": "docs/assets/js/add-preview-buttons.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n'use strict';\n\nvar Babel = require('babel-standalone');\n\n/*\n * In our Markdown files, we have some <preview-button /> tags.\n * We want to transform these into button.preview,\n * which onclick will run the JS code right above them!\n */\n\nvar previewPlaceholders = document.querySelectorAll('preview-button');\n\nvar createButton = function createButton(placeholder) {\n  var button = document.createElement('button');\n  button.className = \"preview\";\n  button.innerText = \"Preview\";\n\n  // Add button right above placeholder\n  placeholder.parentNode.insertBefore(button, placeholder);\n\n  return button;\n};\n\nvar getCodeEl = function getCodeEl(placeholder) {\n  return placeholder.parentNode.previousSibling.previousSibling;\n};\n\nvar getCode = function getCode(highlightEl) {\n  return highlightEl.innerText.trim();\n};\n\nvar resetStyles = function resetStyles() {\n  var swalOverlay = document.querySelector('.swal-overlay');\n  var allSwalEls = swalOverlay.querySelectorAll('*');\n\n  swalOverlay.removeAttribute('style');\n\n  allSwalEls.forEach(function (el) {\n    el.removeAttribute('style');\n  });\n};\n\nvar setStyles = function setStyles(code) {\n  var array = code.split(/[{}]/g);\n  var selector = array[0].trim();\n\n  var el = document.querySelector(selector);\n\n  var css = array[1].trim();\n  css = css.replace(/\\s+/g, ' ');\n  css = css.replace(/;\\s?/g, '; ');\n  css = css.replace(/:\\s?/g, ': ');\n\n  el.style.cssText = css;\n};\n\npreviewPlaceholders.forEach(function (placeholder) {\n  var highlightEl = getCodeEl(placeholder);\n  var code = getCode(highlightEl);\n\n  var button = createButton(placeholder);\n  var givenFunction = placeholder.dataset.function;\n\n  var lang = highlightEl.classList[1];\n\n  /*\n   * If there's a specified data-function on <preview-button>, call that.\n   * Othwerwise, just use the code from the highlightjs above it:\n   */\n  button.addEventListener('click', function () {\n    if (givenFunction) {\n      window[givenFunction]();\n    } else if (lang === \"css\") {\n      swal(\"Sweet!\", \"I like customizing!\");\n      resetStyles();\n      setStyles(code);\n    } else {\n      var transpiledCode = Babel.transform(code, { presets: ['es2015'] }).code;\n      eval(transpiledCode);\n    }\n  });\n\n  placeholder.remove();\n});\n\n},{\"babel-standalone\":2}],2:[function(require,module,exports){\n(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"Babel\"] = factory();\n\telse\n\t\troot[\"Babel\"] = factory();\n})(this, function() {\nreturn /******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(installedModules[moduleId])\n/******/ \t\t\treturn installedModules[moduleId].exports;\n\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\texports: {},\n/******/ \t\t\tid: moduleId,\n/******/ \t\t\tloaded: false\n/******/ \t\t};\n\n/******/ \t\t// Execute the module function\n/******/ \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n/******/ \t\t// Flag the module as loaded\n/******/ \t\tmodule.loaded = true;\n\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n\n\n/******/ \t// expose the modules object (__webpack_modules__)\n/******/ \t__webpack_require__.m = modules;\n\n/******/ \t// expose the module cache\n/******/ \t__webpack_require__.c = installedModules;\n\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"\";\n\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(0);\n/******/ })\n/************************************************************************/\n/******/ ((function(modules) {\n\t// Check all modules for deduplicated modules\n\tfor(var i in modules) {\n\t\tif(Object.prototype.hasOwnProperty.call(modules, i)) {\n\t\t\tswitch(typeof modules[i]) {\n\t\t\tcase \"function\": break;\n\t\t\tcase \"object\":\n\t\t\t\t// Module can be created from a template\n\t\t\t\tmodules[i] = (function(_m) {\n\t\t\t\t\tvar args = _m.slice(1), fn = modules[_m[0]];\n\t\t\t\t\treturn function (a,b,c) {\n\t\t\t\t\t\tfn.apply(this, [a,b,c].concat(args));\n\t\t\t\t\t};\n\t\t\t\t}(modules[i]));\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t// Module is a copy of another module\n\t\t\t\tmodules[i] = modules[modules[i]];\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\treturn modules;\n}([\n/* 0 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.version = exports.buildExternalHelpers = exports.availablePresets = exports.availablePlugins = undefined;\n\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\texports.transform = transform;\n\texports.transformFromAst = transformFromAst;\n\texports.registerPlugin = registerPlugin;\n\texports.registerPlugins = registerPlugins;\n\texports.registerPreset = registerPreset;\n\texports.registerPresets = registerPresets;\n\texports.transformScriptTags = transformScriptTags;\n\texports.disableScriptTags = disableScriptTags;\n\n\tvar _babelCore = __webpack_require__(290);\n\n\tvar Babel = _interopRequireWildcard(_babelCore);\n\n\tvar _transformScriptTags = __webpack_require__(629);\n\n\tfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\n\tvar isArray = Array.isArray || function (arg) {\n\t  return Object.prototype.toString.call(arg) === '[object Array]';\n\t};\n\n\t/**\r\n\t * Loads the given name (or [name, options] pair) from the given table object\r\n\t * holding the available presets or plugins.\r\n\t *\r\n\t * Returns undefined if the preset or plugin is not available; passes through\r\n\t * name unmodified if it (or the first element of the pair) is not a string.\r\n\t */\n\tfunction loadBuiltin(builtinTable, name) {\n\t  if (isArray(name) && typeof name[0] === 'string') {\n\t    if (builtinTable.hasOwnProperty(name[0])) {\n\t      return [builtinTable[name[0]]].concat(name.slice(1));\n\t    }\n\t    return;\n\t  } else if (typeof name === 'string') {\n\t    return builtinTable[name];\n\t  }\n\t  // Could be an actual preset/plugin module\n\t  return name;\n\t}\n\n\t/**\r\n\t * Parses plugin names and presets from the specified options.\r\n\t */\n\tfunction processOptions(options) {\n\t  // Parse preset names\n\t  var presets = (options.presets || []).map(function (presetName) {\n\t    var preset = loadBuiltin(availablePresets, presetName);\n\n\t    if (preset) {\n\t      // workaround for babel issue\n\t      // at some point, babel copies the preset, losing the non-enumerable\n\t      // buildPreset key; convert it into an enumerable key.\n\t      if (isArray(preset) && _typeof(preset[0]) === 'object' && preset[0].hasOwnProperty('buildPreset')) {\n\t        preset[0] = _extends({}, preset[0], { buildPreset: preset[0].buildPreset });\n\t      }\n\t    } else {\n\t      throw new Error('Invalid preset specified in Babel options: \"' + presetName + '\"');\n\t    }\n\t    return preset;\n\t  });\n\n\t  // Parse plugin names\n\t  var plugins = (options.plugins || []).map(function (pluginName) {\n\t    var plugin = loadBuiltin(availablePlugins, pluginName);\n\n\t    if (!plugin) {\n\t      throw new Error('Invalid plugin specified in Babel options: \"' + pluginName + '\"');\n\t    }\n\t    return plugin;\n\t  });\n\n\t  return _extends({\n\t    babelrc: false\n\t  }, options, {\n\t    presets: presets,\n\t    plugins: plugins\n\t  });\n\t}\n\n\tfunction transform(code, options) {\n\t  return Babel.transform(code, processOptions(options));\n\t}\n\n\tfunction transformFromAst(ast, code, options) {\n\t  return Babel.transformFromAst(ast, code, processOptions(options));\n\t}\n\tvar availablePlugins = exports.availablePlugins = {};\n\tvar availablePresets = exports.availablePresets = {};\n\tvar buildExternalHelpers = exports.buildExternalHelpers = Babel.buildExternalHelpers;\n\t/**\r\n\t * Registers a named plugin for use with Babel.\r\n\t */\n\tfunction registerPlugin(name, plugin) {\n\t  if (availablePlugins.hasOwnProperty(name)) {\n\t    console.warn('A plugin named \"' + name + '\" is already registered, it will be overridden');\n\t  }\n\t  availablePlugins[name] = plugin;\n\t}\n\t/**\r\n\t * Registers multiple plugins for use with Babel. `newPlugins` should be an object where the key\r\n\t * is the name of the plugin, and the value is the plugin itself.\r\n\t */\n\tfunction registerPlugins(newPlugins) {\n\t  Object.keys(newPlugins).forEach(function (name) {\n\t    return registerPlugin(name, newPlugins[name]);\n\t  });\n\t}\n\n\t/**\r\n\t * Registers a named preset for use with Babel.\r\n\t */\n\tfunction registerPreset(name, preset) {\n\t  if (availablePresets.hasOwnProperty(name)) {\n\t    console.warn('A preset named \"' + name + '\" is already registered, it will be overridden');\n\t  }\n\t  availablePresets[name] = preset;\n\t}\n\t/**\r\n\t * Registers multiple presets for use with Babel. `newPresets` should be an object where the key\r\n\t * is the name of the preset, and the value is the preset itself.\r\n\t */\n\tfunction registerPresets(newPresets) {\n\t  Object.keys(newPresets).forEach(function (name) {\n\t    return registerPreset(name, newPresets[name]);\n\t  });\n\t}\n\n\t// All the plugins we should bundle\n\tregisterPlugins({\n\t  'check-es2015-constants': __webpack_require__(66),\n\t  'external-helpers': __webpack_require__(322),\n\t  'inline-replace-variables': __webpack_require__(323),\n\t  'syntax-async-functions': __webpack_require__(67),\n\t  'syntax-async-generators': __webpack_require__(195),\n\t  'syntax-class-constructor-call': __webpack_require__(196),\n\t  'syntax-class-properties': __webpack_require__(197),\n\t  'syntax-decorators': __webpack_require__(125),\n\t  'syntax-do-expressions': __webpack_require__(198),\n\t  'syntax-exponentiation-operator': __webpack_require__(199),\n\t  'syntax-export-extensions': __webpack_require__(200),\n\t  'syntax-flow': __webpack_require__(126),\n\t  'syntax-function-bind': __webpack_require__(201),\n\t  'syntax-function-sent': __webpack_require__(325),\n\t  'syntax-jsx': __webpack_require__(127),\n\t  'syntax-object-rest-spread': __webpack_require__(202),\n\t  'syntax-trailing-function-commas': __webpack_require__(128),\n\t  'transform-async-functions': __webpack_require__(326),\n\t  'transform-async-to-generator': __webpack_require__(129),\n\t  'transform-async-to-module-method': __webpack_require__(328),\n\t  'transform-class-constructor-call': __webpack_require__(203),\n\t  'transform-class-properties': __webpack_require__(204),\n\t  'transform-decorators': __webpack_require__(205),\n\t  'transform-decorators-legacy': __webpack_require__(329).default, // <- No clue. Nope.\n\t  'transform-do-expressions': __webpack_require__(206),\n\t  'transform-es2015-arrow-functions': __webpack_require__(68),\n\t  'transform-es2015-block-scoped-functions': __webpack_require__(69),\n\t  'transform-es2015-block-scoping': __webpack_require__(70),\n\t  'transform-es2015-classes': __webpack_require__(71),\n\t  'transform-es2015-computed-properties': __webpack_require__(72),\n\t  'transform-es2015-destructuring': __webpack_require__(73),\n\t  'transform-es2015-duplicate-keys': __webpack_require__(130),\n\t  'transform-es2015-for-of': __webpack_require__(74),\n\t  'transform-es2015-function-name': __webpack_require__(75),\n\t  'transform-es2015-instanceof': __webpack_require__(332),\n\t  'transform-es2015-literals': __webpack_require__(76),\n\t  'transform-es2015-modules-amd': __webpack_require__(131),\n\t  'transform-es2015-modules-commonjs': __webpack_require__(77),\n\t  'transform-es2015-modules-systemjs': __webpack_require__(208),\n\t  'transform-es2015-modules-umd': __webpack_require__(209),\n\t  'transform-es2015-object-super': __webpack_require__(78),\n\t  'transform-es2015-parameters': __webpack_require__(79),\n\t  'transform-es2015-shorthand-properties': __webpack_require__(80),\n\t  'transform-es2015-spread': __webpack_require__(81),\n\t  'transform-es2015-sticky-regex': __webpack_require__(82),\n\t  'transform-es2015-template-literals': __webpack_require__(83),\n\t  'transform-es2015-typeof-symbol': __webpack_require__(84),\n\t  'transform-es2015-unicode-regex': __webpack_require__(85),\n\t  'transform-es3-member-expression-literals': __webpack_require__(336),\n\t  'transform-es3-property-literals': __webpack_require__(337),\n\t  'transform-es5-property-mutators': __webpack_require__(338),\n\t  'transform-eval': __webpack_require__(339),\n\t  'transform-exponentiation-operator': __webpack_require__(132),\n\t  'transform-export-extensions': __webpack_require__(210),\n\t  'transform-flow-comments': __webpack_require__(340),\n\t  'transform-flow-strip-types': __webpack_require__(211),\n\t  'transform-function-bind': __webpack_require__(212),\n\t  'transform-jscript': __webpack_require__(341),\n\t  'transform-object-assign': __webpack_require__(342),\n\t  'transform-object-rest-spread': __webpack_require__(213),\n\t  'transform-object-set-prototype-of-to-assign': __webpack_require__(343),\n\t  'transform-proto-to-assign': __webpack_require__(344),\n\t  'transform-react-constant-elements': __webpack_require__(345),\n\t  'transform-react-display-name': __webpack_require__(214),\n\t  'transform-react-inline-elements': __webpack_require__(346),\n\t  'transform-react-jsx': __webpack_require__(215),\n\t  'transform-react-jsx-compat': __webpack_require__(347),\n\t  'transform-react-jsx-self': __webpack_require__(349),\n\t  'transform-react-jsx-source': __webpack_require__(350),\n\t  'transform-regenerator': __webpack_require__(86),\n\t  'transform-runtime': __webpack_require__(353),\n\t  'transform-strict-mode': __webpack_require__(216),\n\t  'undeclared-variables-check': __webpack_require__(354)\n\t});\n\n\t// All the presets we should bundle\n\tregisterPresets({\n\t  es2015: __webpack_require__(217),\n\t  es2016: __webpack_require__(218),\n\t  es2017: __webpack_require__(219),\n\t  latest: __webpack_require__(356),\n\t  react: __webpack_require__(357),\n\t  'stage-0': __webpack_require__(358),\n\t  'stage-1': __webpack_require__(220),\n\t  'stage-2': __webpack_require__(221),\n\t  'stage-3': __webpack_require__(222),\n\n\t  // ES2015 preset with es2015-modules-commonjs removed\n\t  // Plugin list copied from babel-preset-es2015/index.js\n\t  'es2015-no-commonjs': {\n\t    plugins: [__webpack_require__(83), __webpack_require__(76), __webpack_require__(75), __webpack_require__(68), __webpack_require__(69), __webpack_require__(71), __webpack_require__(78), __webpack_require__(80), __webpack_require__(72), __webpack_require__(74), __webpack_require__(82), __webpack_require__(85), __webpack_require__(66), __webpack_require__(81), __webpack_require__(79), __webpack_require__(73), __webpack_require__(70), __webpack_require__(84), [__webpack_require__(86), { async: false, asyncGenerators: false }]]\n\t  },\n\n\t  // ES2015 preset with plugins set to loose mode.\n\t  // Based off https://github.com/bkonkle/babel-preset-es2015-loose/blob/master/index.js\n\t  'es2015-loose': {\n\t    plugins: [[__webpack_require__(83), { loose: true }], __webpack_require__(76), __webpack_require__(75), __webpack_require__(68), __webpack_require__(69), [__webpack_require__(71), { loose: true }], __webpack_require__(78), __webpack_require__(80), __webpack_require__(130), [__webpack_require__(72), { loose: true }], [__webpack_require__(74), { loose: true }], __webpack_require__(82), __webpack_require__(85), __webpack_require__(66), [__webpack_require__(81), { loose: true }], __webpack_require__(79), [__webpack_require__(73), { loose: true }], __webpack_require__(70), __webpack_require__(84), [__webpack_require__(77), { loose: true }], [__webpack_require__(86), { async: false, asyncGenerators: false }]]\n\t  }\n\t});\n\n\tvar version = exports.version = (\"6.26.0\");\n\n\t// Listen for load event if we're in a browser and then kick off finding and\n\t// running of scripts with \"text/babel\" type.\n\tif (typeof window !== 'undefined' && window && window.addEventListener) {\n\t  window.addEventListener('DOMContentLoaded', function () {\n\t    return transformScriptTags();\n\t  }, false);\n\t}\n\n\t/**\r\n\t * Transform <script> tags with \"text/babel\" type.\r\n\t * @param {Array} scriptTags specify script tags to transform, transform all in the <head> if not given\r\n\t */\n\tfunction transformScriptTags(scriptTags) {\n\t  (0, _transformScriptTags.runScripts)(transform, scriptTags);\n\t}\n\n\t/**\r\n\t * Disables automatic transformation of <script> tags with \"text/babel\" type.\r\n\t */\n\tfunction disableScriptTags() {\n\t  window.removeEventListener('DOMContentLoaded', transformScriptTags);\n\t}\n\n/***/ }),\n/* 1 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.createTypeAnnotationBasedOnTypeof = exports.removeTypeDuplicates = exports.createUnionTypeAnnotation = exports.valueToNode = exports.toBlock = exports.toExpression = exports.toStatement = exports.toBindingIdentifierName = exports.toIdentifier = exports.toKeyAlias = exports.toSequenceExpression = exports.toComputedKey = exports.isNodesEquivalent = exports.isImmutable = exports.isScope = exports.isSpecifierDefault = exports.isVar = exports.isBlockScoped = exports.isLet = exports.isValidIdentifier = exports.isReferenced = exports.isBinding = exports.getOuterBindingIdentifiers = exports.getBindingIdentifiers = exports.TYPES = exports.react = exports.DEPRECATED_KEYS = exports.BUILDER_KEYS = exports.NODE_FIELDS = exports.ALIAS_KEYS = exports.VISITOR_KEYS = exports.NOT_LOCAL_BINDING = exports.BLOCK_SCOPED_SYMBOL = exports.INHERIT_KEYS = exports.UNARY_OPERATORS = exports.STRING_UNARY_OPERATORS = exports.NUMBER_UNARY_OPERATORS = exports.BOOLEAN_UNARY_OPERATORS = exports.BINARY_OPERATORS = exports.NUMBER_BINARY_OPERATORS = exports.BOOLEAN_BINARY_OPERATORS = exports.COMPARISON_BINARY_OPERATORS = exports.EQUALITY_BINARY_OPERATORS = exports.BOOLEAN_NUMBER_BINARY_OPERATORS = exports.UPDATE_OPERATORS = exports.LOGICAL_OPERATORS = exports.COMMENT_KEYS = exports.FOR_INIT_KEYS = exports.FLATTENABLE_KEYS = exports.STATEMENT_OR_BLOCK_KEYS = undefined;\n\n\tvar _getOwnPropertySymbols = __webpack_require__(360);\n\n\tvar _getOwnPropertySymbols2 = _interopRequireDefault(_getOwnPropertySymbols);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\tvar _constants = __webpack_require__(135);\n\n\tObject.defineProperty(exports, \"STATEMENT_OR_BLOCK_KEYS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.STATEMENT_OR_BLOCK_KEYS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"FLATTENABLE_KEYS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.FLATTENABLE_KEYS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"FOR_INIT_KEYS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.FOR_INIT_KEYS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"COMMENT_KEYS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.COMMENT_KEYS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"LOGICAL_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.LOGICAL_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"UPDATE_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.UPDATE_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"BOOLEAN_NUMBER_BINARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.BOOLEAN_NUMBER_BINARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"EQUALITY_BINARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.EQUALITY_BINARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"COMPARISON_BINARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.COMPARISON_BINARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"BOOLEAN_BINARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.BOOLEAN_BINARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"NUMBER_BINARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.NUMBER_BINARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"BINARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.BINARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"BOOLEAN_UNARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.BOOLEAN_UNARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"NUMBER_UNARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.NUMBER_UNARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"STRING_UNARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.STRING_UNARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"UNARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.UNARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"INHERIT_KEYS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.INHERIT_KEYS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"BLOCK_SCOPED_SYMBOL\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.BLOCK_SCOPED_SYMBOL;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"NOT_LOCAL_BINDING\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.NOT_LOCAL_BINDING;\n\t  }\n\t});\n\texports.is = is;\n\texports.isType = isType;\n\texports.validate = validate;\n\texports.shallowEqual = shallowEqual;\n\texports.appendToMemberExpression = appendToMemberExpression;\n\texports.prependToMemberExpression = prependToMemberExpression;\n\texports.ensureBlock = ensureBlock;\n\texports.clone = clone;\n\texports.cloneWithoutLoc = cloneWithoutLoc;\n\texports.cloneDeep = cloneDeep;\n\texports.buildMatchMemberExpression = buildMatchMemberExpression;\n\texports.removeComments = removeComments;\n\texports.inheritsComments = inheritsComments;\n\texports.inheritTrailingComments = inheritTrailingComments;\n\texports.inheritLeadingComments = inheritLeadingComments;\n\texports.inheritInnerComments = inheritInnerComments;\n\texports.inherits = inherits;\n\texports.assertNode = assertNode;\n\texports.isNode = isNode;\n\texports.traverseFast = traverseFast;\n\texports.removeProperties = removeProperties;\n\texports.removePropertiesDeep = removePropertiesDeep;\n\n\tvar _retrievers = __webpack_require__(226);\n\n\tObject.defineProperty(exports, \"getBindingIdentifiers\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _retrievers.getBindingIdentifiers;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"getOuterBindingIdentifiers\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _retrievers.getOuterBindingIdentifiers;\n\t  }\n\t});\n\n\tvar _validators = __webpack_require__(395);\n\n\tObject.defineProperty(exports, \"isBinding\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isBinding;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isReferenced\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isReferenced;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isValidIdentifier\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isValidIdentifier;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isLet\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isLet;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isBlockScoped\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isBlockScoped;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isVar\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isVar;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isSpecifierDefault\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isSpecifierDefault;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isScope\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isScope;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isImmutable\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isImmutable;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isNodesEquivalent\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isNodesEquivalent;\n\t  }\n\t});\n\n\tvar _converters = __webpack_require__(385);\n\n\tObject.defineProperty(exports, \"toComputedKey\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toComputedKey;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toSequenceExpression\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toSequenceExpression;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toKeyAlias\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toKeyAlias;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toIdentifier\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toIdentifier;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toBindingIdentifierName\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toBindingIdentifierName;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toStatement\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toStatement;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toExpression\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toExpression;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toBlock\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toBlock;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"valueToNode\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.valueToNode;\n\t  }\n\t});\n\n\tvar _flow = __webpack_require__(393);\n\n\tObject.defineProperty(exports, \"createUnionTypeAnnotation\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _flow.createUnionTypeAnnotation;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"removeTypeDuplicates\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _flow.removeTypeDuplicates;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"createTypeAnnotationBasedOnTypeof\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _flow.createTypeAnnotationBasedOnTypeof;\n\t  }\n\t});\n\n\tvar _toFastProperties = __webpack_require__(624);\n\n\tvar _toFastProperties2 = _interopRequireDefault(_toFastProperties);\n\n\tvar _clone = __webpack_require__(109);\n\n\tvar _clone2 = _interopRequireDefault(_clone);\n\n\tvar _uniq = __webpack_require__(600);\n\n\tvar _uniq2 = _interopRequireDefault(_uniq);\n\n\t__webpack_require__(390);\n\n\tvar _definitions = __webpack_require__(26);\n\n\tvar _react2 = __webpack_require__(394);\n\n\tvar _react = _interopRequireWildcard(_react2);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar t = exports;\n\n\tfunction registerType(type) {\n\t  var is = t[\"is\" + type];\n\t  if (!is) {\n\t    is = t[\"is\" + type] = function (node, opts) {\n\t      return t.is(type, node, opts);\n\t    };\n\t  }\n\n\t  t[\"assert\" + type] = function (node, opts) {\n\t    opts = opts || {};\n\t    if (!is(node, opts)) {\n\t      throw new Error(\"Expected type \" + (0, _stringify2.default)(type) + \" with option \" + (0, _stringify2.default)(opts));\n\t    }\n\t  };\n\t}\n\n\texports.VISITOR_KEYS = _definitions.VISITOR_KEYS;\n\texports.ALIAS_KEYS = _definitions.ALIAS_KEYS;\n\texports.NODE_FIELDS = _definitions.NODE_FIELDS;\n\texports.BUILDER_KEYS = _definitions.BUILDER_KEYS;\n\texports.DEPRECATED_KEYS = _definitions.DEPRECATED_KEYS;\n\texports.react = _react;\n\n\tfor (var type in t.VISITOR_KEYS) {\n\t  registerType(type);\n\t}\n\n\tt.FLIPPED_ALIAS_KEYS = {};\n\n\t(0, _keys2.default)(t.ALIAS_KEYS).forEach(function (type) {\n\t  t.ALIAS_KEYS[type].forEach(function (alias) {\n\t    var types = t.FLIPPED_ALIAS_KEYS[alias] = t.FLIPPED_ALIAS_KEYS[alias] || [];\n\t    types.push(type);\n\t  });\n\t});\n\n\t(0, _keys2.default)(t.FLIPPED_ALIAS_KEYS).forEach(function (type) {\n\t  t[type.toUpperCase() + \"_TYPES\"] = t.FLIPPED_ALIAS_KEYS[type];\n\t  registerType(type);\n\t});\n\n\tvar TYPES = exports.TYPES = (0, _keys2.default)(t.VISITOR_KEYS).concat((0, _keys2.default)(t.FLIPPED_ALIAS_KEYS)).concat((0, _keys2.default)(t.DEPRECATED_KEYS));\n\n\tfunction is(type, node, opts) {\n\t  if (!node) return false;\n\n\t  var matches = isType(node.type, type);\n\t  if (!matches) return false;\n\n\t  if (typeof opts === \"undefined\") {\n\t    return true;\n\t  } else {\n\t    return t.shallowEqual(node, opts);\n\t  }\n\t}\n\n\tfunction isType(nodeType, targetType) {\n\t  if (nodeType === targetType) return true;\n\n\t  if (t.ALIAS_KEYS[targetType]) return false;\n\n\t  var aliases = t.FLIPPED_ALIAS_KEYS[targetType];\n\t  if (aliases) {\n\t    if (aliases[0] === nodeType) return true;\n\n\t    for (var _iterator = aliases, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var alias = _ref;\n\n\t      if (nodeType === alias) return true;\n\t    }\n\t  }\n\n\t  return false;\n\t}\n\n\t(0, _keys2.default)(t.BUILDER_KEYS).forEach(function (type) {\n\t  var keys = t.BUILDER_KEYS[type];\n\n\t  function builder() {\n\t    if (arguments.length > keys.length) {\n\t      throw new Error(\"t.\" + type + \": Too many arguments passed. Received \" + arguments.length + \" but can receive \" + (\"no more than \" + keys.length));\n\t    }\n\n\t    var node = {};\n\t    node.type = type;\n\n\t    var i = 0;\n\n\t    for (var _iterator2 = keys, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var _key = _ref2;\n\n\t      var field = t.NODE_FIELDS[type][_key];\n\n\t      var arg = arguments[i++];\n\t      if (arg === undefined) arg = (0, _clone2.default)(field.default);\n\n\t      node[_key] = arg;\n\t    }\n\n\t    for (var key in node) {\n\t      validate(node, key, node[key]);\n\t    }\n\n\t    return node;\n\t  }\n\n\t  t[type] = builder;\n\t  t[type[0].toLowerCase() + type.slice(1)] = builder;\n\t});\n\n\tvar _loop = function _loop(_type) {\n\t  var newType = t.DEPRECATED_KEYS[_type];\n\n\t  function proxy(fn) {\n\t    return function () {\n\t      console.trace(\"The node type \" + _type + \" has been renamed to \" + newType);\n\t      return fn.apply(this, arguments);\n\t    };\n\t  }\n\n\t  t[_type] = t[_type[0].toLowerCase() + _type.slice(1)] = proxy(t[newType]);\n\t  t[\"is\" + _type] = proxy(t[\"is\" + newType]);\n\t  t[\"assert\" + _type] = proxy(t[\"assert\" + newType]);\n\t};\n\n\tfor (var _type in t.DEPRECATED_KEYS) {\n\t  _loop(_type);\n\t}\n\n\tfunction validate(node, key, val) {\n\t  if (!node) return;\n\n\t  var fields = t.NODE_FIELDS[node.type];\n\t  if (!fields) return;\n\n\t  var field = fields[key];\n\t  if (!field || !field.validate) return;\n\t  if (field.optional && val == null) return;\n\n\t  field.validate(node, key, val);\n\t}\n\n\tfunction shallowEqual(actual, expected) {\n\t  var keys = (0, _keys2.default)(expected);\n\n\t  for (var _iterator3 = keys, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t    var _ref3;\n\n\t    if (_isArray3) {\n\t      if (_i3 >= _iterator3.length) break;\n\t      _ref3 = _iterator3[_i3++];\n\t    } else {\n\t      _i3 = _iterator3.next();\n\t      if (_i3.done) break;\n\t      _ref3 = _i3.value;\n\t    }\n\n\t    var key = _ref3;\n\n\t    if (actual[key] !== expected[key]) {\n\t      return false;\n\t    }\n\t  }\n\n\t  return true;\n\t}\n\n\tfunction appendToMemberExpression(member, append, computed) {\n\t  member.object = t.memberExpression(member.object, member.property, member.computed);\n\t  member.property = append;\n\t  member.computed = !!computed;\n\t  return member;\n\t}\n\n\tfunction prependToMemberExpression(member, prepend) {\n\t  member.object = t.memberExpression(prepend, member.object);\n\t  return member;\n\t}\n\n\tfunction ensureBlock(node) {\n\t  var key = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : \"body\";\n\n\t  return node[key] = t.toBlock(node[key], node);\n\t}\n\n\tfunction clone(node) {\n\t  if (!node) return node;\n\t  var newNode = {};\n\t  for (var key in node) {\n\t    if (key[0] === \"_\") continue;\n\t    newNode[key] = node[key];\n\t  }\n\t  return newNode;\n\t}\n\n\tfunction cloneWithoutLoc(node) {\n\t  var newNode = clone(node);\n\t  delete newNode.loc;\n\t  return newNode;\n\t}\n\n\tfunction cloneDeep(node) {\n\t  if (!node) return node;\n\t  var newNode = {};\n\n\t  for (var key in node) {\n\t    if (key[0] === \"_\") continue;\n\n\t    var val = node[key];\n\n\t    if (val) {\n\t      if (val.type) {\n\t        val = t.cloneDeep(val);\n\t      } else if (Array.isArray(val)) {\n\t        val = val.map(t.cloneDeep);\n\t      }\n\t    }\n\n\t    newNode[key] = val;\n\t  }\n\n\t  return newNode;\n\t}\n\n\tfunction buildMatchMemberExpression(match, allowPartial) {\n\t  var parts = match.split(\".\");\n\n\t  return function (member) {\n\t    if (!t.isMemberExpression(member)) return false;\n\n\t    var search = [member];\n\t    var i = 0;\n\n\t    while (search.length) {\n\t      var node = search.shift();\n\n\t      if (allowPartial && i === parts.length) {\n\t        return true;\n\t      }\n\n\t      if (t.isIdentifier(node)) {\n\t        if (parts[i] !== node.name) return false;\n\t      } else if (t.isStringLiteral(node)) {\n\t        if (parts[i] !== node.value) return false;\n\t      } else if (t.isMemberExpression(node)) {\n\t        if (node.computed && !t.isStringLiteral(node.property)) {\n\t          return false;\n\t        } else {\n\t          search.push(node.object);\n\t          search.push(node.property);\n\t          continue;\n\t        }\n\t      } else {\n\t        return false;\n\t      }\n\n\t      if (++i > parts.length) {\n\t        return false;\n\t      }\n\t    }\n\n\t    return true;\n\t  };\n\t}\n\n\tfunction removeComments(node) {\n\t  for (var _iterator4 = t.COMMENT_KEYS, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t    var _ref4;\n\n\t    if (_isArray4) {\n\t      if (_i4 >= _iterator4.length) break;\n\t      _ref4 = _iterator4[_i4++];\n\t    } else {\n\t      _i4 = _iterator4.next();\n\t      if (_i4.done) break;\n\t      _ref4 = _i4.value;\n\t    }\n\n\t    var key = _ref4;\n\n\t    delete node[key];\n\t  }\n\t  return node;\n\t}\n\n\tfunction inheritsComments(child, parent) {\n\t  inheritTrailingComments(child, parent);\n\t  inheritLeadingComments(child, parent);\n\t  inheritInnerComments(child, parent);\n\t  return child;\n\t}\n\n\tfunction inheritTrailingComments(child, parent) {\n\t  _inheritComments(\"trailingComments\", child, parent);\n\t}\n\n\tfunction inheritLeadingComments(child, parent) {\n\t  _inheritComments(\"leadingComments\", child, parent);\n\t}\n\n\tfunction inheritInnerComments(child, parent) {\n\t  _inheritComments(\"innerComments\", child, parent);\n\t}\n\n\tfunction _inheritComments(key, child, parent) {\n\t  if (child && parent) {\n\t    child[key] = (0, _uniq2.default)([].concat(child[key], parent[key]).filter(Boolean));\n\t  }\n\t}\n\n\tfunction inherits(child, parent) {\n\t  if (!child || !parent) return child;\n\n\t  for (var _iterator5 = t.INHERIT_KEYS.optional, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t    var _ref5;\n\n\t    if (_isArray5) {\n\t      if (_i5 >= _iterator5.length) break;\n\t      _ref5 = _iterator5[_i5++];\n\t    } else {\n\t      _i5 = _iterator5.next();\n\t      if (_i5.done) break;\n\t      _ref5 = _i5.value;\n\t    }\n\n\t    var _key2 = _ref5;\n\n\t    if (child[_key2] == null) {\n\t      child[_key2] = parent[_key2];\n\t    }\n\t  }\n\n\t  for (var key in parent) {\n\t    if (key[0] === \"_\") child[key] = parent[key];\n\t  }\n\n\t  for (var _iterator6 = t.INHERIT_KEYS.force, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : (0, _getIterator3.default)(_iterator6);;) {\n\t    var _ref6;\n\n\t    if (_isArray6) {\n\t      if (_i6 >= _iterator6.length) break;\n\t      _ref6 = _iterator6[_i6++];\n\t    } else {\n\t      _i6 = _iterator6.next();\n\t      if (_i6.done) break;\n\t      _ref6 = _i6.value;\n\t    }\n\n\t    var _key3 = _ref6;\n\n\t    child[_key3] = parent[_key3];\n\t  }\n\n\t  t.inheritsComments(child, parent);\n\n\t  return child;\n\t}\n\n\tfunction assertNode(node) {\n\t  if (!isNode(node)) {\n\t    throw new TypeError(\"Not a valid node \" + (node && node.type));\n\t  }\n\t}\n\n\tfunction isNode(node) {\n\t  return !!(node && _definitions.VISITOR_KEYS[node.type]);\n\t}\n\n\t(0, _toFastProperties2.default)(t);\n\t(0, _toFastProperties2.default)(t.VISITOR_KEYS);\n\n\tfunction traverseFast(node, enter, opts) {\n\t  if (!node) return;\n\n\t  var keys = t.VISITOR_KEYS[node.type];\n\t  if (!keys) return;\n\n\t  opts = opts || {};\n\t  enter(node, opts);\n\n\t  for (var _iterator7 = keys, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : (0, _getIterator3.default)(_iterator7);;) {\n\t    var _ref7;\n\n\t    if (_isArray7) {\n\t      if (_i7 >= _iterator7.length) break;\n\t      _ref7 = _iterator7[_i7++];\n\t    } else {\n\t      _i7 = _iterator7.next();\n\t      if (_i7.done) break;\n\t      _ref7 = _i7.value;\n\t    }\n\n\t    var key = _ref7;\n\n\t    var subNode = node[key];\n\n\t    if (Array.isArray(subNode)) {\n\t      for (var _iterator8 = subNode, _isArray8 = Array.isArray(_iterator8), _i8 = 0, _iterator8 = _isArray8 ? _iterator8 : (0, _getIterator3.default)(_iterator8);;) {\n\t        var _ref8;\n\n\t        if (_isArray8) {\n\t          if (_i8 >= _iterator8.length) break;\n\t          _ref8 = _iterator8[_i8++];\n\t        } else {\n\t          _i8 = _iterator8.next();\n\t          if (_i8.done) break;\n\t          _ref8 = _i8.value;\n\t        }\n\n\t        var _node = _ref8;\n\n\t        traverseFast(_node, enter, opts);\n\t      }\n\t    } else {\n\t      traverseFast(subNode, enter, opts);\n\t    }\n\t  }\n\t}\n\n\tvar CLEAR_KEYS = [\"tokens\", \"start\", \"end\", \"loc\", \"raw\", \"rawValue\"];\n\n\tvar CLEAR_KEYS_PLUS_COMMENTS = t.COMMENT_KEYS.concat([\"comments\"]).concat(CLEAR_KEYS);\n\n\tfunction removeProperties(node, opts) {\n\t  opts = opts || {};\n\t  var map = opts.preserveComments ? CLEAR_KEYS : CLEAR_KEYS_PLUS_COMMENTS;\n\t  for (var _iterator9 = map, _isArray9 = Array.isArray(_iterator9), _i9 = 0, _iterator9 = _isArray9 ? _iterator9 : (0, _getIterator3.default)(_iterator9);;) {\n\t    var _ref9;\n\n\t    if (_isArray9) {\n\t      if (_i9 >= _iterator9.length) break;\n\t      _ref9 = _iterator9[_i9++];\n\t    } else {\n\t      _i9 = _iterator9.next();\n\t      if (_i9.done) break;\n\t      _ref9 = _i9.value;\n\t    }\n\n\t    var _key4 = _ref9;\n\n\t    if (node[_key4] != null) node[_key4] = undefined;\n\t  }\n\n\t  for (var key in node) {\n\t    if (key[0] === \"_\" && node[key] != null) node[key] = undefined;\n\t  }\n\n\t  var syms = (0, _getOwnPropertySymbols2.default)(node);\n\t  for (var _iterator10 = syms, _isArray10 = Array.isArray(_iterator10), _i10 = 0, _iterator10 = _isArray10 ? _iterator10 : (0, _getIterator3.default)(_iterator10);;) {\n\t    var _ref10;\n\n\t    if (_isArray10) {\n\t      if (_i10 >= _iterator10.length) break;\n\t      _ref10 = _iterator10[_i10++];\n\t    } else {\n\t      _i10 = _iterator10.next();\n\t      if (_i10.done) break;\n\t      _ref10 = _i10.value;\n\t    }\n\n\t    var sym = _ref10;\n\n\t    node[sym] = null;\n\t  }\n\t}\n\n\tfunction removePropertiesDeep(tree, opts) {\n\t  traverseFast(tree, removeProperties, opts);\n\t  return tree;\n\t}\n\n/***/ }),\n/* 2 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(404), __esModule: true };\n\n/***/ }),\n/* 3 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (instance, Constructor) {\n\t  if (!(instance instanceof Constructor)) {\n\t    throw new TypeError(\"Cannot call a class as a function\");\n\t  }\n\t};\n\n/***/ }),\n/* 4 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function (code, opts) {\n\t  var stack = void 0;\n\t  try {\n\t    throw new Error();\n\t  } catch (error) {\n\t    if (error.stack) {\n\t      stack = error.stack.split(\"\\n\").slice(1).join(\"\\n\");\n\t    }\n\t  }\n\n\t  opts = (0, _assign2.default)({\n\t    allowReturnOutsideFunction: true,\n\t    allowSuperOutsideMethod: true,\n\t    preserveComments: false\n\t  }, opts);\n\n\t  var _getAst = function getAst() {\n\t    var ast = void 0;\n\n\t    try {\n\t      ast = babylon.parse(code, opts);\n\n\t      ast = _babelTraverse2.default.removeProperties(ast, { preserveComments: opts.preserveComments });\n\n\t      _babelTraverse2.default.cheap(ast, function (node) {\n\t        node[FROM_TEMPLATE] = true;\n\t      });\n\t    } catch (err) {\n\t      err.stack = err.stack + \"from\\n\" + stack;\n\t      throw err;\n\t    }\n\n\t    _getAst = function getAst() {\n\t      return ast;\n\t    };\n\n\t    return ast;\n\t  };\n\n\t  return function () {\n\t    for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t      args[_key] = arguments[_key];\n\t    }\n\n\t    return useTemplate(_getAst(), args);\n\t  };\n\t};\n\n\tvar _cloneDeep = __webpack_require__(574);\n\n\tvar _cloneDeep2 = _interopRequireDefault(_cloneDeep);\n\n\tvar _assign = __webpack_require__(174);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _has = __webpack_require__(274);\n\n\tvar _has2 = _interopRequireDefault(_has);\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelTraverse2 = _interopRequireDefault(_babelTraverse);\n\n\tvar _babylon = __webpack_require__(89);\n\n\tvar babylon = _interopRequireWildcard(_babylon);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar FROM_TEMPLATE = \"_fromTemplate\";\n\tvar TEMPLATE_SKIP = (0, _symbol2.default)();\n\n\tfunction useTemplate(ast, nodes) {\n\t  ast = (0, _cloneDeep2.default)(ast);\n\t  var _ast = ast,\n\t      program = _ast.program;\n\n\t  if (nodes.length) {\n\t    (0, _babelTraverse2.default)(ast, templateVisitor, null, nodes);\n\t  }\n\n\t  if (program.body.length > 1) {\n\t    return program.body;\n\t  } else {\n\t    return program.body[0];\n\t  }\n\t}\n\n\tvar templateVisitor = {\n\t  noScope: true,\n\n\t  enter: function enter(path, args) {\n\t    var node = path.node;\n\n\t    if (node[TEMPLATE_SKIP]) return path.skip();\n\n\t    if (t.isExpressionStatement(node)) {\n\t      node = node.expression;\n\t    }\n\n\t    var replacement = void 0;\n\n\t    if (t.isIdentifier(node) && node[FROM_TEMPLATE]) {\n\t      if ((0, _has2.default)(args[0], node.name)) {\n\t        replacement = args[0][node.name];\n\t      } else if (node.name[0] === \"$\") {\n\t        var i = +node.name.slice(1);\n\t        if (args[i]) replacement = args[i];\n\t      }\n\t    }\n\n\t    if (replacement === null) {\n\t      path.remove();\n\t    }\n\n\t    if (replacement) {\n\t      replacement[TEMPLATE_SKIP] = true;\n\t      path.replaceInline(replacement);\n\t    }\n\t  },\n\t  exit: function exit(_ref) {\n\t    var node = _ref.node;\n\n\t    if (!node.loc) _babelTraverse2.default.clearNode(node);\n\t  }\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 5 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar core = module.exports = { version: '2.5.0' };\n\tif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n\n/***/ }),\n/* 6 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Checks if `value` is classified as an `Array` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an array, else `false`.\n\t * @example\n\t *\n\t * _.isArray([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isArray(document.body.children);\n\t * // => false\n\t *\n\t * _.isArray('abc');\n\t * // => false\n\t *\n\t * _.isArray(_.noop);\n\t * // => false\n\t */\n\tvar isArray = Array.isArray;\n\n\tmodule.exports = isArray;\n\n/***/ }),\n/* 7 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.visitors = exports.Hub = exports.Scope = exports.NodePath = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _path = __webpack_require__(36);\n\n\tObject.defineProperty(exports, \"NodePath\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_path).default;\n\t  }\n\t});\n\n\tvar _scope = __webpack_require__(134);\n\n\tObject.defineProperty(exports, \"Scope\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_scope).default;\n\t  }\n\t});\n\n\tvar _hub = __webpack_require__(223);\n\n\tObject.defineProperty(exports, \"Hub\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_hub).default;\n\t  }\n\t});\n\texports.default = traverse;\n\n\tvar _context = __webpack_require__(367);\n\n\tvar _context2 = _interopRequireDefault(_context);\n\n\tvar _visitors = __webpack_require__(384);\n\n\tvar visitors = _interopRequireWildcard(_visitors);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _includes = __webpack_require__(111);\n\n\tvar _includes2 = _interopRequireDefault(_includes);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _cache = __webpack_require__(88);\n\n\tvar cache = _interopRequireWildcard(_cache);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.visitors = visitors;\n\tfunction traverse(parent, opts, scope, state, parentPath) {\n\t  if (!parent) return;\n\t  if (!opts) opts = {};\n\n\t  if (!opts.noScope && !scope) {\n\t    if (parent.type !== \"Program\" && parent.type !== \"File\") {\n\t      throw new Error(messages.get(\"traverseNeedsParent\", parent.type));\n\t    }\n\t  }\n\n\t  visitors.explode(opts);\n\n\t  traverse.node(parent, opts, scope, state, parentPath);\n\t}\n\n\ttraverse.visitors = visitors;\n\ttraverse.verify = visitors.verify;\n\ttraverse.explode = visitors.explode;\n\n\ttraverse.NodePath = __webpack_require__(36);\n\ttraverse.Scope = __webpack_require__(134);\n\ttraverse.Hub = __webpack_require__(223);\n\n\ttraverse.cheap = function (node, enter) {\n\t  return t.traverseFast(node, enter);\n\t};\n\n\ttraverse.node = function (node, opts, scope, state, parentPath, skipKeys) {\n\t  var keys = t.VISITOR_KEYS[node.type];\n\t  if (!keys) return;\n\n\t  var context = new _context2.default(scope, opts, state, parentPath);\n\t  for (var _iterator = keys, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var key = _ref;\n\n\t    if (skipKeys && skipKeys[key]) continue;\n\t    if (context.visit(node, key)) return;\n\t  }\n\t};\n\n\ttraverse.clearNode = function (node, opts) {\n\t  t.removeProperties(node, opts);\n\n\t  cache.path.delete(node);\n\t};\n\n\ttraverse.removeProperties = function (tree, opts) {\n\t  t.traverseFast(tree, traverse.clearNode, opts);\n\t  return tree;\n\t};\n\n\tfunction hasBlacklistedType(path, state) {\n\t  if (path.node.type === state.type) {\n\t    state.has = true;\n\t    path.stop();\n\t  }\n\t}\n\n\ttraverse.hasType = function (tree, scope, type, blacklistTypes) {\n\t  if ((0, _includes2.default)(blacklistTypes, tree.type)) return false;\n\n\t  if (tree.type === type) return true;\n\n\t  var state = {\n\t    has: false,\n\t    type: type\n\t  };\n\n\t  traverse(tree, {\n\t    blacklist: blacklistTypes,\n\t    enter: hasBlacklistedType\n\t  }, scope, state);\n\n\t  return state.has;\n\t};\n\n\ttraverse.clearCache = function () {\n\t  cache.clear();\n\t};\n\n\ttraverse.clearCache.clearPath = cache.clearPath;\n\ttraverse.clearCache.clearScope = cache.clearScope;\n\n\ttraverse.copyCache = function (source, destination) {\n\t  if (cache.path.has(source)) {\n\t    cache.path.set(destination, cache.path.get(source));\n\t  }\n\t};\n\n/***/ }),\n/* 8 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t// shim for using process in browser\n\tvar process = module.exports = {};\n\n\t// cached from whatever global is present so that test runners that stub it\n\t// don't break things.  But we need to wrap it in a try catch in case it is\n\t// wrapped in strict mode code which doesn't define any globals.  It's inside a\n\t// function because try/catches deoptimize in certain engines.\n\n\tvar cachedSetTimeout;\n\tvar cachedClearTimeout;\n\n\tfunction defaultSetTimout() {\n\t    throw new Error('setTimeout has not been defined');\n\t}\n\tfunction defaultClearTimeout() {\n\t    throw new Error('clearTimeout has not been defined');\n\t}\n\t(function () {\n\t    try {\n\t        if (typeof setTimeout === 'function') {\n\t            cachedSetTimeout = setTimeout;\n\t        } else {\n\t            cachedSetTimeout = defaultSetTimout;\n\t        }\n\t    } catch (e) {\n\t        cachedSetTimeout = defaultSetTimout;\n\t    }\n\t    try {\n\t        if (typeof clearTimeout === 'function') {\n\t            cachedClearTimeout = clearTimeout;\n\t        } else {\n\t            cachedClearTimeout = defaultClearTimeout;\n\t        }\n\t    } catch (e) {\n\t        cachedClearTimeout = defaultClearTimeout;\n\t    }\n\t})();\n\tfunction runTimeout(fun) {\n\t    if (cachedSetTimeout === setTimeout) {\n\t        //normal enviroments in sane situations\n\t        return setTimeout(fun, 0);\n\t    }\n\t    // if setTimeout wasn't available but was latter defined\n\t    if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n\t        cachedSetTimeout = setTimeout;\n\t        return setTimeout(fun, 0);\n\t    }\n\t    try {\n\t        // when when somebody has screwed with setTimeout but no I.E. maddness\n\t        return cachedSetTimeout(fun, 0);\n\t    } catch (e) {\n\t        try {\n\t            // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n\t            return cachedSetTimeout.call(null, fun, 0);\n\t        } catch (e) {\n\t            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n\t            return cachedSetTimeout.call(this, fun, 0);\n\t        }\n\t    }\n\t}\n\tfunction runClearTimeout(marker) {\n\t    if (cachedClearTimeout === clearTimeout) {\n\t        //normal enviroments in sane situations\n\t        return clearTimeout(marker);\n\t    }\n\t    // if clearTimeout wasn't available but was latter defined\n\t    if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n\t        cachedClearTimeout = clearTimeout;\n\t        return clearTimeout(marker);\n\t    }\n\t    try {\n\t        // when when somebody has screwed with setTimeout but no I.E. maddness\n\t        return cachedClearTimeout(marker);\n\t    } catch (e) {\n\t        try {\n\t            // When we are in I.E. but the script has been evaled so I.E. doesn't  trust the global object when called normally\n\t            return cachedClearTimeout.call(null, marker);\n\t        } catch (e) {\n\t            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n\t            // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n\t            return cachedClearTimeout.call(this, marker);\n\t        }\n\t    }\n\t}\n\tvar queue = [];\n\tvar draining = false;\n\tvar currentQueue;\n\tvar queueIndex = -1;\n\n\tfunction cleanUpNextTick() {\n\t    if (!draining || !currentQueue) {\n\t        return;\n\t    }\n\t    draining = false;\n\t    if (currentQueue.length) {\n\t        queue = currentQueue.concat(queue);\n\t    } else {\n\t        queueIndex = -1;\n\t    }\n\t    if (queue.length) {\n\t        drainQueue();\n\t    }\n\t}\n\n\tfunction drainQueue() {\n\t    if (draining) {\n\t        return;\n\t    }\n\t    var timeout = runTimeout(cleanUpNextTick);\n\t    draining = true;\n\n\t    var len = queue.length;\n\t    while (len) {\n\t        currentQueue = queue;\n\t        queue = [];\n\t        while (++queueIndex < len) {\n\t            if (currentQueue) {\n\t                currentQueue[queueIndex].run();\n\t            }\n\t        }\n\t        queueIndex = -1;\n\t        len = queue.length;\n\t    }\n\t    currentQueue = null;\n\t    draining = false;\n\t    runClearTimeout(timeout);\n\t}\n\n\tprocess.nextTick = function (fun) {\n\t    var args = new Array(arguments.length - 1);\n\t    if (arguments.length > 1) {\n\t        for (var i = 1; i < arguments.length; i++) {\n\t            args[i - 1] = arguments[i];\n\t        }\n\t    }\n\t    queue.push(new Item(fun, args));\n\t    if (queue.length === 1 && !draining) {\n\t        runTimeout(drainQueue);\n\t    }\n\t};\n\n\t// v8 likes predictible objects\n\tfunction Item(fun, array) {\n\t    this.fun = fun;\n\t    this.array = array;\n\t}\n\tItem.prototype.run = function () {\n\t    this.fun.apply(null, this.array);\n\t};\n\tprocess.title = 'browser';\n\tprocess.browser = true;\n\tprocess.env = {};\n\tprocess.argv = [];\n\tprocess.version = ''; // empty string to avoid regexp issues\n\tprocess.versions = {};\n\n\tfunction noop() {}\n\n\tprocess.on = noop;\n\tprocess.addListener = noop;\n\tprocess.once = noop;\n\tprocess.off = noop;\n\tprocess.removeListener = noop;\n\tprocess.removeAllListeners = noop;\n\tprocess.emit = noop;\n\tprocess.prependListener = noop;\n\tprocess.prependOnceListener = noop;\n\n\tprocess.listeners = function (name) {\n\t    return [];\n\t};\n\n\tprocess.binding = function (name) {\n\t    throw new Error('process.binding is not supported');\n\t};\n\n\tprocess.cwd = function () {\n\t    return '/';\n\t};\n\tprocess.chdir = function (dir) {\n\t    throw new Error('process.chdir is not supported');\n\t};\n\tprocess.umask = function () {\n\t    return 0;\n\t};\n\n/***/ }),\n/* 9 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(409), __esModule: true };\n\n/***/ }),\n/* 10 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(414), __esModule: true };\n\n/***/ }),\n/* 11 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _typeof2 = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\texports.__esModule = true;\n\n\tvar _iterator = __webpack_require__(363);\n\n\tvar _iterator2 = _interopRequireDefault(_iterator);\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\tvar _typeof = typeof _symbol2.default === \"function\" && _typeof2(_iterator2.default) === \"symbol\" ? function (obj) {\n\t  return typeof obj === \"undefined\" ? \"undefined\" : _typeof2(obj);\n\t} : function (obj) {\n\t  return obj && typeof _symbol2.default === \"function\" && obj.constructor === _symbol2.default && obj !== _symbol2.default.prototype ? \"symbol\" : typeof obj === \"undefined\" ? \"undefined\" : _typeof2(obj);\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = typeof _symbol2.default === \"function\" && _typeof(_iterator2.default) === \"symbol\" ? function (obj) {\n\t  return typeof obj === \"undefined\" ? \"undefined\" : _typeof(obj);\n\t} : function (obj) {\n\t  return obj && typeof _symbol2.default === \"function\" && obj.constructor === _symbol2.default && obj !== _symbol2.default.prototype ? \"symbol\" : typeof obj === \"undefined\" ? \"undefined\" : _typeof(obj);\n\t};\n\n/***/ }),\n/* 12 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar global = __webpack_require__(15);\n\tvar core = __webpack_require__(5);\n\tvar ctx = __webpack_require__(43);\n\tvar hide = __webpack_require__(29);\n\tvar PROTOTYPE = 'prototype';\n\n\tvar $export = function $export(type, name, source) {\n\t  var IS_FORCED = type & $export.F;\n\t  var IS_GLOBAL = type & $export.G;\n\t  var IS_STATIC = type & $export.S;\n\t  var IS_PROTO = type & $export.P;\n\t  var IS_BIND = type & $export.B;\n\t  var IS_WRAP = type & $export.W;\n\t  var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n\t  var expProto = exports[PROTOTYPE];\n\t  var target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE];\n\t  var key, own, out;\n\t  if (IS_GLOBAL) source = name;\n\t  for (key in source) {\n\t    // contains in native\n\t    own = !IS_FORCED && target && target[key] !== undefined;\n\t    if (own && key in exports) continue;\n\t    // export native or passed\n\t    out = own ? target[key] : source[key];\n\t    // prevent global pollution for namespaces\n\t    exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key]\n\t    // bind timers to global for call from export context\n\t    : IS_BIND && own ? ctx(out, global)\n\t    // wrap global constructors for prevent change them in library\n\t    : IS_WRAP && target[key] == out ? function (C) {\n\t      var F = function F(a, b, c) {\n\t        if (this instanceof C) {\n\t          switch (arguments.length) {\n\t            case 0:\n\t              return new C();\n\t            case 1:\n\t              return new C(a);\n\t            case 2:\n\t              return new C(a, b);\n\t          }return new C(a, b, c);\n\t        }return C.apply(this, arguments);\n\t      };\n\t      F[PROTOTYPE] = C[PROTOTYPE];\n\t      return F;\n\t      // make static versions for prototype methods\n\t    }(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n\t    // export proto methods to core.%CONSTRUCTOR%.methods.%NAME%\n\t    if (IS_PROTO) {\n\t      (exports.virtual || (exports.virtual = {}))[key] = out;\n\t      // export proto methods to core.%CONSTRUCTOR%.prototype.%NAME%\n\t      if (type & $export.R && expProto && !expProto[key]) hide(expProto, key, out);\n\t    }\n\t  }\n\t};\n\t// type bitmap\n\t$export.F = 1; // forced\n\t$export.G = 2; // global\n\t$export.S = 4; // static\n\t$export.P = 8; // proto\n\t$export.B = 16; // bind\n\t$export.W = 32; // wrap\n\t$export.U = 64; // safe\n\t$export.R = 128; // real proto method for `library`\n\tmodule.exports = $export;\n\n/***/ }),\n/* 13 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar store = __webpack_require__(151)('wks');\n\tvar uid = __webpack_require__(95);\n\tvar _Symbol = __webpack_require__(15).Symbol;\n\tvar USE_SYMBOL = typeof _Symbol == 'function';\n\n\tvar $exports = module.exports = function (name) {\n\t  return store[name] || (store[name] = USE_SYMBOL && _Symbol[name] || (USE_SYMBOL ? _Symbol : uid)('Symbol.' + name));\n\t};\n\n\t$exports.store = store;\n\n/***/ }),\n/* 14 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(411), __esModule: true };\n\n/***/ }),\n/* 15 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\n\tvar global = module.exports = typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self\n\t// eslint-disable-next-line no-new-func\n\t: Function('return this')();\n\tif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n\n/***/ }),\n/* 16 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tmodule.exports = function (it) {\n\t  return (typeof it === 'undefined' ? 'undefined' : _typeof(it)) === 'object' ? it !== null : typeof it === 'function';\n\t};\n\n/***/ }),\n/* 17 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar freeGlobal = __webpack_require__(261);\n\n\t/** Detect free variable `self`. */\n\tvar freeSelf = (typeof self === 'undefined' ? 'undefined' : _typeof(self)) == 'object' && self && self.Object === Object && self;\n\n\t/** Used as a reference to the global object. */\n\tvar root = freeGlobal || freeSelf || Function('return this')();\n\n\tmodule.exports = root;\n\n/***/ }),\n/* 18 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/**\n\t * Checks if `value` is the\n\t * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n\t * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n\t * @example\n\t *\n\t * _.isObject({});\n\t * // => true\n\t *\n\t * _.isObject([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isObject(_.noop);\n\t * // => true\n\t *\n\t * _.isObject(null);\n\t * // => false\n\t */\n\tfunction isObject(value) {\n\t  var type = typeof value === 'undefined' ? 'undefined' : _typeof(value);\n\t  return value != null && (type == 'object' || type == 'function');\n\t}\n\n\tmodule.exports = isObject;\n\n/***/ }),\n/* 19 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {'use strict';\n\n\t// Copyright Joyent, Inc. and other Node contributors.\n\t//\n\t// Permission is hereby granted, free of charge, to any person obtaining a\n\t// copy of this software and associated documentation files (the\n\t// \"Software\"), to deal in the Software without restriction, including\n\t// without limitation the rights to use, copy, modify, merge, publish,\n\t// distribute, sublicense, and/or sell copies of the Software, and to permit\n\t// persons to whom the Software is furnished to do so, subject to the\n\t// following conditions:\n\t//\n\t// The above copyright notice and this permission notice shall be included\n\t// in all copies or substantial portions of the Software.\n\t//\n\t// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n\t// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n\t// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n\t// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n\t// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n\t// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n\t// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\t// resolves . and .. elements in a path array with directory names there\n\t// must be no slashes, empty elements, or device names (c:\\) in the array\n\t// (so also no leading and trailing slashes - it does not distinguish\n\t// relative and absolute paths)\n\tfunction normalizeArray(parts, allowAboveRoot) {\n\t  // if the path tries to go above the root, `up` ends up > 0\n\t  var up = 0;\n\t  for (var i = parts.length - 1; i >= 0; i--) {\n\t    var last = parts[i];\n\t    if (last === '.') {\n\t      parts.splice(i, 1);\n\t    } else if (last === '..') {\n\t      parts.splice(i, 1);\n\t      up++;\n\t    } else if (up) {\n\t      parts.splice(i, 1);\n\t      up--;\n\t    }\n\t  }\n\n\t  // if the path is allowed to go above the root, restore leading ..s\n\t  if (allowAboveRoot) {\n\t    for (; up--; up) {\n\t      parts.unshift('..');\n\t    }\n\t  }\n\n\t  return parts;\n\t}\n\n\t// Split a filename into [root, dir, basename, ext], unix version\n\t// 'root' is just a slash, or nothing.\n\tvar splitPathRe = /^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;\n\tvar splitPath = function splitPath(filename) {\n\t  return splitPathRe.exec(filename).slice(1);\n\t};\n\n\t// path.resolve([from ...], to)\n\t// posix version\n\texports.resolve = function () {\n\t  var resolvedPath = '',\n\t      resolvedAbsolute = false;\n\n\t  for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {\n\t    var path = i >= 0 ? arguments[i] : process.cwd();\n\n\t    // Skip empty and invalid entries\n\t    if (typeof path !== 'string') {\n\t      throw new TypeError('Arguments to path.resolve must be strings');\n\t    } else if (!path) {\n\t      continue;\n\t    }\n\n\t    resolvedPath = path + '/' + resolvedPath;\n\t    resolvedAbsolute = path.charAt(0) === '/';\n\t  }\n\n\t  // At this point the path should be resolved to a full absolute path, but\n\t  // handle relative paths to be safe (might happen when process.cwd() fails)\n\n\t  // Normalize the path\n\t  resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function (p) {\n\t    return !!p;\n\t  }), !resolvedAbsolute).join('/');\n\n\t  return (resolvedAbsolute ? '/' : '') + resolvedPath || '.';\n\t};\n\n\t// path.normalize(path)\n\t// posix version\n\texports.normalize = function (path) {\n\t  var isAbsolute = exports.isAbsolute(path),\n\t      trailingSlash = substr(path, -1) === '/';\n\n\t  // Normalize the path\n\t  path = normalizeArray(filter(path.split('/'), function (p) {\n\t    return !!p;\n\t  }), !isAbsolute).join('/');\n\n\t  if (!path && !isAbsolute) {\n\t    path = '.';\n\t  }\n\t  if (path && trailingSlash) {\n\t    path += '/';\n\t  }\n\n\t  return (isAbsolute ? '/' : '') + path;\n\t};\n\n\t// posix version\n\texports.isAbsolute = function (path) {\n\t  return path.charAt(0) === '/';\n\t};\n\n\t// posix version\n\texports.join = function () {\n\t  var paths = Array.prototype.slice.call(arguments, 0);\n\t  return exports.normalize(filter(paths, function (p, index) {\n\t    if (typeof p !== 'string') {\n\t      throw new TypeError('Arguments to path.join must be strings');\n\t    }\n\t    return p;\n\t  }).join('/'));\n\t};\n\n\t// path.relative(from, to)\n\t// posix version\n\texports.relative = function (from, to) {\n\t  from = exports.resolve(from).substr(1);\n\t  to = exports.resolve(to).substr(1);\n\n\t  function trim(arr) {\n\t    var start = 0;\n\t    for (; start < arr.length; start++) {\n\t      if (arr[start] !== '') break;\n\t    }\n\n\t    var end = arr.length - 1;\n\t    for (; end >= 0; end--) {\n\t      if (arr[end] !== '') break;\n\t    }\n\n\t    if (start > end) return [];\n\t    return arr.slice(start, end - start + 1);\n\t  }\n\n\t  var fromParts = trim(from.split('/'));\n\t  var toParts = trim(to.split('/'));\n\n\t  var length = Math.min(fromParts.length, toParts.length);\n\t  var samePartsLength = length;\n\t  for (var i = 0; i < length; i++) {\n\t    if (fromParts[i] !== toParts[i]) {\n\t      samePartsLength = i;\n\t      break;\n\t    }\n\t  }\n\n\t  var outputParts = [];\n\t  for (var i = samePartsLength; i < fromParts.length; i++) {\n\t    outputParts.push('..');\n\t  }\n\n\t  outputParts = outputParts.concat(toParts.slice(samePartsLength));\n\n\t  return outputParts.join('/');\n\t};\n\n\texports.sep = '/';\n\texports.delimiter = ':';\n\n\texports.dirname = function (path) {\n\t  var result = splitPath(path),\n\t      root = result[0],\n\t      dir = result[1];\n\n\t  if (!root && !dir) {\n\t    // No dirname whatsoever\n\t    return '.';\n\t  }\n\n\t  if (dir) {\n\t    // It has a dirname, strip trailing slash\n\t    dir = dir.substr(0, dir.length - 1);\n\t  }\n\n\t  return root + dir;\n\t};\n\n\texports.basename = function (path, ext) {\n\t  var f = splitPath(path)[2];\n\t  // TODO: make this comparison case-insensitive on windows?\n\t  if (ext && f.substr(-1 * ext.length) === ext) {\n\t    f = f.substr(0, f.length - ext.length);\n\t  }\n\t  return f;\n\t};\n\n\texports.extname = function (path) {\n\t  return splitPath(path)[3];\n\t};\n\n\tfunction filter(xs, f) {\n\t  if (xs.filter) return xs.filter(f);\n\t  var res = [];\n\t  for (var i = 0; i < xs.length; i++) {\n\t    if (f(xs[i], i, xs)) res.push(xs[i]);\n\t  }\n\t  return res;\n\t}\n\n\t// String.prototype.substr - negative index don't work in IE8\n\tvar substr = 'ab'.substr(-1) === 'b' ? function (str, start, len) {\n\t  return str.substr(start, len);\n\t} : function (str, start, len) {\n\t  if (start < 0) start = str.length + start;\n\t  return str.substr(start, len);\n\t};\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 20 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.MESSAGES = undefined;\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\texports.get = get;\n\texports.parseArgs = parseArgs;\n\n\tvar _util = __webpack_require__(117);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar MESSAGES = exports.MESSAGES = {\n\t  tailCallReassignmentDeopt: \"Function reference has been reassigned, so it will probably be dereferenced, therefore we can't optimise this with confidence\",\n\t  classesIllegalBareSuper: \"Illegal use of bare super\",\n\t  classesIllegalSuperCall: \"Direct super call is illegal in non-constructor, use super.$1() instead\",\n\t  scopeDuplicateDeclaration: \"Duplicate declaration $1\",\n\t  settersNoRest: \"Setters aren't allowed to have a rest\",\n\t  noAssignmentsInForHead: \"No assignments allowed in for-in/of head\",\n\t  expectedMemberExpressionOrIdentifier: \"Expected type MemberExpression or Identifier\",\n\t  invalidParentForThisNode: \"We don't know how to handle this node within the current parent - please open an issue\",\n\t  readOnly: \"$1 is read-only\",\n\t  unknownForHead: \"Unknown node type $1 in ForStatement\",\n\t  didYouMean: \"Did you mean $1?\",\n\t  codeGeneratorDeopt: \"Note: The code generator has deoptimised the styling of $1 as it exceeds the max of $2.\",\n\t  missingTemplatesDirectory: \"no templates directory - this is most likely the result of a broken `npm publish`. Please report to https://github.com/babel/babel/issues\",\n\t  unsupportedOutputType: \"Unsupported output type $1\",\n\t  illegalMethodName: \"Illegal method name $1\",\n\t  lostTrackNodePath: \"We lost track of this node's position, likely because the AST was directly manipulated\",\n\n\t  modulesIllegalExportName: \"Illegal export $1\",\n\t  modulesDuplicateDeclarations: \"Duplicate module declarations with the same source but in different scopes\",\n\n\t  undeclaredVariable: \"Reference to undeclared variable $1\",\n\t  undeclaredVariableType: \"Referencing a type alias outside of a type annotation\",\n\t  undeclaredVariableSuggestion: \"Reference to undeclared variable $1 - did you mean $2?\",\n\n\t  traverseNeedsParent: \"You must pass a scope and parentPath unless traversing a Program/File. Instead of that you tried to traverse a $1 node without passing scope and parentPath.\",\n\t  traverseVerifyRootFunction: \"You passed `traverse()` a function when it expected a visitor object, are you sure you didn't mean `{ enter: Function }`?\",\n\t  traverseVerifyVisitorProperty: \"You passed `traverse()` a visitor object with the property $1 that has the invalid property $2\",\n\t  traverseVerifyNodeType: \"You gave us a visitor for the node type $1 but it's not a valid type\",\n\n\t  pluginNotObject: \"Plugin $2 specified in $1 was expected to return an object when invoked but returned $3\",\n\t  pluginNotFunction: \"Plugin $2 specified in $1 was expected to return a function but returned $3\",\n\t  pluginUnknown: \"Unknown plugin $1 specified in $2 at $3, attempted to resolve relative to $4\",\n\t  pluginInvalidProperty: \"Plugin $2 specified in $1 provided an invalid property of $3\"\n\t};\n\n\tfunction get(key) {\n\t  for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n\t    args[_key - 1] = arguments[_key];\n\t  }\n\n\t  var msg = MESSAGES[key];\n\t  if (!msg) throw new ReferenceError(\"Unknown message \" + (0, _stringify2.default)(key));\n\n\t  args = parseArgs(args);\n\n\t  return msg.replace(/\\$(\\d+)/g, function (str, i) {\n\t    return args[i - 1];\n\t  });\n\t}\n\n\tfunction parseArgs(args) {\n\t  return args.map(function (val) {\n\t    if (val != null && val.inspect) {\n\t      return val.inspect();\n\t    } else {\n\t      try {\n\t        return (0, _stringify2.default)(val) || val + \"\";\n\t      } catch (e) {\n\t        return util.inspect(val);\n\t      }\n\t    }\n\t  });\n\t}\n\n/***/ }),\n/* 21 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(16);\n\tmodule.exports = function (it) {\n\t  if (!isObject(it)) throw TypeError(it + ' is not an object!');\n\t  return it;\n\t};\n\n/***/ }),\n/* 22 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// Thank's IE8 for his funny defineProperty\n\tmodule.exports = !__webpack_require__(27)(function () {\n\t  return Object.defineProperty({}, 'a', { get: function get() {\n\t      return 7;\n\t    } }).a != 7;\n\t});\n\n/***/ }),\n/* 23 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar anObject = __webpack_require__(21);\n\tvar IE8_DOM_DEFINE = __webpack_require__(231);\n\tvar toPrimitive = __webpack_require__(154);\n\tvar dP = Object.defineProperty;\n\n\texports.f = __webpack_require__(22) ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n\t  anObject(O);\n\t  P = toPrimitive(P, true);\n\t  anObject(Attributes);\n\t  if (IE8_DOM_DEFINE) try {\n\t    return dP(O, P, Attributes);\n\t  } catch (e) {/* empty */}\n\t  if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n\t  if ('value' in Attributes) O[P] = Attributes.value;\n\t  return O;\n\t};\n\n/***/ }),\n/* 24 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isFunction = __webpack_require__(175),\n\t    isLength = __webpack_require__(176);\n\n\t/**\n\t * Checks if `value` is array-like. A value is considered array-like if it's\n\t * not a function and has a `value.length` that's an integer greater than or\n\t * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\n\t * @example\n\t *\n\t * _.isArrayLike([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isArrayLike(document.body.children);\n\t * // => true\n\t *\n\t * _.isArrayLike('abc');\n\t * // => true\n\t *\n\t * _.isArrayLike(_.noop);\n\t * // => false\n\t */\n\tfunction isArrayLike(value) {\n\t  return value != null && isLength(value.length) && !isFunction(value);\n\t}\n\n\tmodule.exports = isArrayLike;\n\n/***/ }),\n/* 25 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/**\n\t * Checks if `value` is object-like. A value is object-like if it's not `null`\n\t * and has a `typeof` result of \"object\".\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n\t * @example\n\t *\n\t * _.isObjectLike({});\n\t * // => true\n\t *\n\t * _.isObjectLike([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isObjectLike(_.noop);\n\t * // => false\n\t *\n\t * _.isObjectLike(null);\n\t * // => false\n\t */\n\tfunction isObjectLike(value) {\n\t  return value != null && (typeof value === 'undefined' ? 'undefined' : _typeof(value)) == 'object';\n\t}\n\n\tmodule.exports = isObjectLike;\n\n/***/ }),\n/* 26 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.DEPRECATED_KEYS = exports.BUILDER_KEYS = exports.NODE_FIELDS = exports.ALIAS_KEYS = exports.VISITOR_KEYS = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\texports.assertEach = assertEach;\n\texports.assertOneOf = assertOneOf;\n\texports.assertNodeType = assertNodeType;\n\texports.assertNodeOrValueType = assertNodeOrValueType;\n\texports.assertValueType = assertValueType;\n\texports.chain = chain;\n\texports.default = defineType;\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar VISITOR_KEYS = exports.VISITOR_KEYS = {};\n\tvar ALIAS_KEYS = exports.ALIAS_KEYS = {};\n\tvar NODE_FIELDS = exports.NODE_FIELDS = {};\n\tvar BUILDER_KEYS = exports.BUILDER_KEYS = {};\n\tvar DEPRECATED_KEYS = exports.DEPRECATED_KEYS = {};\n\n\tfunction getType(val) {\n\t  if (Array.isArray(val)) {\n\t    return \"array\";\n\t  } else if (val === null) {\n\t    return \"null\";\n\t  } else if (val === undefined) {\n\t    return \"undefined\";\n\t  } else {\n\t    return typeof val === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(val);\n\t  }\n\t}\n\n\tfunction assertEach(callback) {\n\t  function validator(node, key, val) {\n\t    if (!Array.isArray(val)) return;\n\n\t    for (var i = 0; i < val.length; i++) {\n\t      callback(node, key + \"[\" + i + \"]\", val[i]);\n\t    }\n\t  }\n\t  validator.each = callback;\n\t  return validator;\n\t}\n\n\tfunction assertOneOf() {\n\t  for (var _len = arguments.length, vals = Array(_len), _key = 0; _key < _len; _key++) {\n\t    vals[_key] = arguments[_key];\n\t  }\n\n\t  function validate(node, key, val) {\n\t    if (vals.indexOf(val) < 0) {\n\t      throw new TypeError(\"Property \" + key + \" expected value to be one of \" + (0, _stringify2.default)(vals) + \" but got \" + (0, _stringify2.default)(val));\n\t    }\n\t  }\n\n\t  validate.oneOf = vals;\n\n\t  return validate;\n\t}\n\n\tfunction assertNodeType() {\n\t  for (var _len2 = arguments.length, types = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n\t    types[_key2] = arguments[_key2];\n\t  }\n\n\t  function validate(node, key, val) {\n\t    var valid = false;\n\n\t    for (var _iterator = types, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var type = _ref;\n\n\t      if (t.is(type, val)) {\n\t        valid = true;\n\t        break;\n\t      }\n\t    }\n\n\t    if (!valid) {\n\t      throw new TypeError(\"Property \" + key + \" of \" + node.type + \" expected node to be of a type \" + (0, _stringify2.default)(types) + \" \" + (\"but instead got \" + (0, _stringify2.default)(val && val.type)));\n\t    }\n\t  }\n\n\t  validate.oneOfNodeTypes = types;\n\n\t  return validate;\n\t}\n\n\tfunction assertNodeOrValueType() {\n\t  for (var _len3 = arguments.length, types = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {\n\t    types[_key3] = arguments[_key3];\n\t  }\n\n\t  function validate(node, key, val) {\n\t    var valid = false;\n\n\t    for (var _iterator2 = types, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var type = _ref2;\n\n\t      if (getType(val) === type || t.is(type, val)) {\n\t        valid = true;\n\t        break;\n\t      }\n\t    }\n\n\t    if (!valid) {\n\t      throw new TypeError(\"Property \" + key + \" of \" + node.type + \" expected node to be of a type \" + (0, _stringify2.default)(types) + \" \" + (\"but instead got \" + (0, _stringify2.default)(val && val.type)));\n\t    }\n\t  }\n\n\t  validate.oneOfNodeOrValueTypes = types;\n\n\t  return validate;\n\t}\n\n\tfunction assertValueType(type) {\n\t  function validate(node, key, val) {\n\t    var valid = getType(val) === type;\n\n\t    if (!valid) {\n\t      throw new TypeError(\"Property \" + key + \" expected type of \" + type + \" but got \" + getType(val));\n\t    }\n\t  }\n\n\t  validate.type = type;\n\n\t  return validate;\n\t}\n\n\tfunction chain() {\n\t  for (var _len4 = arguments.length, fns = Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {\n\t    fns[_key4] = arguments[_key4];\n\t  }\n\n\t  function validate() {\n\t    for (var _iterator3 = fns, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var fn = _ref3;\n\n\t      fn.apply(undefined, arguments);\n\t    }\n\t  }\n\t  validate.chainOf = fns;\n\t  return validate;\n\t}\n\n\tfunction defineType(type) {\n\t  var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t  var inherits = opts.inherits && store[opts.inherits] || {};\n\n\t  opts.fields = opts.fields || inherits.fields || {};\n\t  opts.visitor = opts.visitor || inherits.visitor || [];\n\t  opts.aliases = opts.aliases || inherits.aliases || [];\n\t  opts.builder = opts.builder || inherits.builder || opts.visitor || [];\n\n\t  if (opts.deprecatedAlias) {\n\t    DEPRECATED_KEYS[opts.deprecatedAlias] = type;\n\t  }\n\n\t  for (var _iterator4 = opts.visitor.concat(opts.builder), _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t    var _ref4;\n\n\t    if (_isArray4) {\n\t      if (_i4 >= _iterator4.length) break;\n\t      _ref4 = _iterator4[_i4++];\n\t    } else {\n\t      _i4 = _iterator4.next();\n\t      if (_i4.done) break;\n\t      _ref4 = _i4.value;\n\t    }\n\n\t    var _key5 = _ref4;\n\n\t    opts.fields[_key5] = opts.fields[_key5] || {};\n\t  }\n\n\t  for (var key in opts.fields) {\n\t    var field = opts.fields[key];\n\n\t    if (opts.builder.indexOf(key) === -1) {\n\t      field.optional = true;\n\t    }\n\t    if (field.default === undefined) {\n\t      field.default = null;\n\t    } else if (!field.validate) {\n\t      field.validate = assertValueType(getType(field.default));\n\t    }\n\t  }\n\n\t  VISITOR_KEYS[type] = opts.visitor;\n\t  BUILDER_KEYS[type] = opts.builder;\n\t  NODE_FIELDS[type] = opts.fields;\n\t  ALIAS_KEYS[type] = opts.aliases;\n\n\t  store[type] = opts;\n\t}\n\n\tvar store = {};\n\n/***/ }),\n/* 27 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = function (exec) {\n\t  try {\n\t    return !!exec();\n\t  } catch (e) {\n\t    return true;\n\t  }\n\t};\n\n/***/ }),\n/* 28 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tvar hasOwnProperty = {}.hasOwnProperty;\n\tmodule.exports = function (it, key) {\n\t  return hasOwnProperty.call(it, key);\n\t};\n\n/***/ }),\n/* 29 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar dP = __webpack_require__(23);\n\tvar createDesc = __webpack_require__(92);\n\tmodule.exports = __webpack_require__(22) ? function (object, key, value) {\n\t  return dP.f(object, key, createDesc(1, value));\n\t} : function (object, key, value) {\n\t  object[key] = value;\n\t  return object;\n\t};\n\n/***/ }),\n/* 30 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _Symbol = __webpack_require__(45),\n\t    getRawTag = __webpack_require__(534),\n\t    objectToString = __webpack_require__(559);\n\n\t/** `Object#toString` result references. */\n\tvar nullTag = '[object Null]',\n\t    undefinedTag = '[object Undefined]';\n\n\t/** Built-in value references. */\n\tvar symToStringTag = _Symbol ? _Symbol.toStringTag : undefined;\n\n\t/**\n\t * The base implementation of `getTag` without fallbacks for buggy environments.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @returns {string} Returns the `toStringTag`.\n\t */\n\tfunction baseGetTag(value) {\n\t    if (value == null) {\n\t        return value === undefined ? undefinedTag : nullTag;\n\t    }\n\t    return symToStringTag && symToStringTag in Object(value) ? getRawTag(value) : objectToString(value);\n\t}\n\n\tmodule.exports = baseGetTag;\n\n/***/ }),\n/* 31 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assignValue = __webpack_require__(162),\n\t    baseAssignValue = __webpack_require__(163);\n\n\t/**\n\t * Copies properties of `source` to `object`.\n\t *\n\t * @private\n\t * @param {Object} source The object to copy properties from.\n\t * @param {Array} props The property identifiers to copy.\n\t * @param {Object} [object={}] The object to copy properties to.\n\t * @param {Function} [customizer] The function to customize copied values.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction copyObject(source, props, object, customizer) {\n\t  var isNew = !object;\n\t  object || (object = {});\n\n\t  var index = -1,\n\t      length = props.length;\n\n\t  while (++index < length) {\n\t    var key = props[index];\n\n\t    var newValue = customizer ? customizer(object[key], source[key], key, object, source) : undefined;\n\n\t    if (newValue === undefined) {\n\t      newValue = source[key];\n\t    }\n\t    if (isNew) {\n\t      baseAssignValue(object, key, newValue);\n\t    } else {\n\t      assignValue(object, key, newValue);\n\t    }\n\t  }\n\t  return object;\n\t}\n\n\tmodule.exports = copyObject;\n\n/***/ }),\n/* 32 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayLikeKeys = __webpack_require__(245),\n\t    baseKeys = __webpack_require__(500),\n\t    isArrayLike = __webpack_require__(24);\n\n\t/**\n\t * Creates an array of the own enumerable property names of `object`.\n\t *\n\t * **Note:** Non-object values are coerced to objects. See the\n\t * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n\t * for more details.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t *   this.b = 2;\n\t * }\n\t *\n\t * Foo.prototype.c = 3;\n\t *\n\t * _.keys(new Foo);\n\t * // => ['a', 'b'] (iteration order is not guaranteed)\n\t *\n\t * _.keys('hi');\n\t * // => ['0', '1']\n\t */\n\tfunction keys(object) {\n\t  return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);\n\t}\n\n\tmodule.exports = keys;\n\n/***/ }),\n/* 33 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = {\n\t  filename: {\n\t    type: \"filename\",\n\t    description: \"filename to use when reading from stdin - this will be used in source-maps, errors etc\",\n\t    default: \"unknown\",\n\t    shorthand: \"f\"\n\t  },\n\n\t  filenameRelative: {\n\t    hidden: true,\n\t    type: \"string\"\n\t  },\n\n\t  inputSourceMap: {\n\t    hidden: true\n\t  },\n\n\t  env: {\n\t    hidden: true,\n\t    default: {}\n\t  },\n\n\t  mode: {\n\t    description: \"\",\n\t    hidden: true\n\t  },\n\n\t  retainLines: {\n\t    type: \"boolean\",\n\t    default: false,\n\t    description: \"retain line numbers - will result in really ugly code\"\n\t  },\n\n\t  highlightCode: {\n\t    description: \"enable/disable ANSI syntax highlighting of code frames (on by default)\",\n\t    type: \"boolean\",\n\t    default: true\n\t  },\n\n\t  suppressDeprecationMessages: {\n\t    type: \"boolean\",\n\t    default: false,\n\t    hidden: true\n\t  },\n\n\t  presets: {\n\t    type: \"list\",\n\t    description: \"\",\n\t    default: []\n\t  },\n\n\t  plugins: {\n\t    type: \"list\",\n\t    default: [],\n\t    description: \"\"\n\t  },\n\n\t  ignore: {\n\t    type: \"list\",\n\t    description: \"list of glob paths to **not** compile\",\n\t    default: []\n\t  },\n\n\t  only: {\n\t    type: \"list\",\n\t    description: \"list of glob paths to **only** compile\"\n\t  },\n\n\t  code: {\n\t    hidden: true,\n\t    default: true,\n\t    type: \"boolean\"\n\t  },\n\n\t  metadata: {\n\t    hidden: true,\n\t    default: true,\n\t    type: \"boolean\"\n\t  },\n\n\t  ast: {\n\t    hidden: true,\n\t    default: true,\n\t    type: \"boolean\"\n\t  },\n\n\t  extends: {\n\t    type: \"string\",\n\t    hidden: true\n\t  },\n\n\t  comments: {\n\t    type: \"boolean\",\n\t    default: true,\n\t    description: \"write comments to generated output (true by default)\"\n\t  },\n\n\t  shouldPrintComment: {\n\t    hidden: true,\n\t    description: \"optional callback to control whether a comment should be inserted, when this is used the comments option is ignored\"\n\t  },\n\n\t  wrapPluginVisitorMethod: {\n\t    hidden: true,\n\t    description: \"optional callback to wrap all visitor methods\"\n\t  },\n\n\t  compact: {\n\t    type: \"booleanString\",\n\t    default: \"auto\",\n\t    description: \"do not include superfluous whitespace characters and line terminators [true|false|auto]\"\n\t  },\n\n\t  minified: {\n\t    type: \"boolean\",\n\t    default: false,\n\t    description: \"save as much bytes when printing [true|false]\"\n\t  },\n\n\t  sourceMap: {\n\t    alias: \"sourceMaps\",\n\t    hidden: true\n\t  },\n\n\t  sourceMaps: {\n\t    type: \"booleanString\",\n\t    description: \"[true|false|inline]\",\n\t    default: false,\n\t    shorthand: \"s\"\n\t  },\n\n\t  sourceMapTarget: {\n\t    type: \"string\",\n\t    description: \"set `file` on returned source map\"\n\t  },\n\n\t  sourceFileName: {\n\t    type: \"string\",\n\t    description: \"set `sources[0]` on returned source map\"\n\t  },\n\n\t  sourceRoot: {\n\t    type: \"filename\",\n\t    description: \"the root from which all sources are relative\"\n\t  },\n\n\t  babelrc: {\n\t    description: \"Whether or not to look up .babelrc and .babelignore files\",\n\t    type: \"boolean\",\n\t    default: true\n\t  },\n\n\t  sourceType: {\n\t    description: \"\",\n\t    default: \"module\"\n\t  },\n\n\t  auxiliaryCommentBefore: {\n\t    type: \"string\",\n\t    description: \"print a comment before any injected non-user code\"\n\t  },\n\n\t  auxiliaryCommentAfter: {\n\t    type: \"string\",\n\t    description: \"print a comment after any injected non-user code\"\n\t  },\n\n\t  resolveModuleSource: {\n\t    hidden: true\n\t  },\n\n\t  getModuleId: {\n\t    hidden: true\n\t  },\n\n\t  moduleRoot: {\n\t    type: \"filename\",\n\t    description: \"optional prefix for the AMD module formatter that will be prepend to the filename on module definitions\"\n\t  },\n\n\t  moduleIds: {\n\t    type: \"boolean\",\n\t    default: false,\n\t    shorthand: \"M\",\n\t    description: \"insert an explicit id for modules\"\n\t  },\n\n\t  moduleId: {\n\t    description: \"specify a custom name for module ids\",\n\t    type: \"string\"\n\t  },\n\n\t  passPerPreset: {\n\t    description: \"Whether to spawn a traversal pass per a preset. By default all presets are merged.\",\n\t    type: \"boolean\",\n\t    default: false,\n\t    hidden: true\n\t  },\n\n\t  parserOpts: {\n\t    description: \"Options to pass into the parser, or to change parsers (parserOpts.parser)\",\n\t    default: false\n\t  },\n\n\t  generatorOpts: {\n\t    description: \"Options to pass into the generator, or to change generators (generatorOpts.generator)\",\n\t    default: false\n\t  }\n\t};\n\n/***/ }),\n/* 34 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _objectWithoutProperties2 = __webpack_require__(366);\n\n\tvar _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2);\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\tvar _assign = __webpack_require__(87);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _node = __webpack_require__(182);\n\n\tvar context = _interopRequireWildcard(_node);\n\n\tvar _plugin2 = __webpack_require__(65);\n\n\tvar _plugin3 = _interopRequireDefault(_plugin2);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _index = __webpack_require__(52);\n\n\tvar _resolvePlugin = __webpack_require__(184);\n\n\tvar _resolvePlugin2 = _interopRequireDefault(_resolvePlugin);\n\n\tvar _resolvePreset = __webpack_require__(185);\n\n\tvar _resolvePreset2 = _interopRequireDefault(_resolvePreset);\n\n\tvar _cloneDeepWith = __webpack_require__(575);\n\n\tvar _cloneDeepWith2 = _interopRequireDefault(_cloneDeepWith);\n\n\tvar _clone = __webpack_require__(109);\n\n\tvar _clone2 = _interopRequireDefault(_clone);\n\n\tvar _merge = __webpack_require__(293);\n\n\tvar _merge2 = _interopRequireDefault(_merge);\n\n\tvar _config2 = __webpack_require__(33);\n\n\tvar _config3 = _interopRequireDefault(_config2);\n\n\tvar _removed = __webpack_require__(54);\n\n\tvar _removed2 = _interopRequireDefault(_removed);\n\n\tvar _buildConfigChain = __webpack_require__(51);\n\n\tvar _buildConfigChain2 = _interopRequireDefault(_buildConfigChain);\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _path2 = _interopRequireDefault(_path);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar OptionManager = function () {\n\t  function OptionManager(log) {\n\t    (0, _classCallCheck3.default)(this, OptionManager);\n\n\t    this.resolvedConfigs = [];\n\t    this.options = OptionManager.createBareOptions();\n\t    this.log = log;\n\t  }\n\n\t  OptionManager.memoisePluginContainer = function memoisePluginContainer(fn, loc, i, alias) {\n\t    for (var _iterator = OptionManager.memoisedPlugins, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var cache = _ref;\n\n\t      if (cache.container === fn) return cache.plugin;\n\t    }\n\n\t    var obj = void 0;\n\n\t    if (typeof fn === \"function\") {\n\t      obj = fn(context);\n\t    } else {\n\t      obj = fn;\n\t    }\n\n\t    if ((typeof obj === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(obj)) === \"object\") {\n\t      var _plugin = new _plugin3.default(obj, alias);\n\t      OptionManager.memoisedPlugins.push({\n\t        container: fn,\n\t        plugin: _plugin\n\t      });\n\t      return _plugin;\n\t    } else {\n\t      throw new TypeError(messages.get(\"pluginNotObject\", loc, i, typeof obj === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(obj)) + loc + i);\n\t    }\n\t  };\n\n\t  OptionManager.createBareOptions = function createBareOptions() {\n\t    var opts = {};\n\n\t    for (var _key in _config3.default) {\n\t      var opt = _config3.default[_key];\n\t      opts[_key] = (0, _clone2.default)(opt.default);\n\t    }\n\n\t    return opts;\n\t  };\n\n\t  OptionManager.normalisePlugin = function normalisePlugin(plugin, loc, i, alias) {\n\t    plugin = plugin.__esModule ? plugin.default : plugin;\n\n\t    if (!(plugin instanceof _plugin3.default)) {\n\t      if (typeof plugin === \"function\" || (typeof plugin === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(plugin)) === \"object\") {\n\t        plugin = OptionManager.memoisePluginContainer(plugin, loc, i, alias);\n\t      } else {\n\t        throw new TypeError(messages.get(\"pluginNotFunction\", loc, i, typeof plugin === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(plugin)));\n\t      }\n\t    }\n\n\t    plugin.init(loc, i);\n\n\t    return plugin;\n\t  };\n\n\t  OptionManager.normalisePlugins = function normalisePlugins(loc, dirname, plugins) {\n\t    return plugins.map(function (val, i) {\n\t      var plugin = void 0,\n\t          options = void 0;\n\n\t      if (!val) {\n\t        throw new TypeError(\"Falsy value found in plugins\");\n\t      }\n\n\t      if (Array.isArray(val)) {\n\t        plugin = val[0];\n\t        options = val[1];\n\t      } else {\n\t        plugin = val;\n\t      }\n\n\t      var alias = typeof plugin === \"string\" ? plugin : loc + \"$\" + i;\n\n\t      if (typeof plugin === \"string\") {\n\t        var pluginLoc = (0, _resolvePlugin2.default)(plugin, dirname);\n\t        if (pluginLoc) {\n\t          plugin = __webpack_require__(179)(pluginLoc);\n\t        } else {\n\t          throw new ReferenceError(messages.get(\"pluginUnknown\", plugin, loc, i, dirname));\n\t        }\n\t      }\n\n\t      plugin = OptionManager.normalisePlugin(plugin, loc, i, alias);\n\n\t      return [plugin, options];\n\t    });\n\t  };\n\n\t  OptionManager.prototype.mergeOptions = function mergeOptions(_ref2) {\n\t    var _this = this;\n\n\t    var rawOpts = _ref2.options,\n\t        extendingOpts = _ref2.extending,\n\t        alias = _ref2.alias,\n\t        loc = _ref2.loc,\n\t        dirname = _ref2.dirname;\n\n\t    alias = alias || \"foreign\";\n\t    if (!rawOpts) return;\n\n\t    if ((typeof rawOpts === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(rawOpts)) !== \"object\" || Array.isArray(rawOpts)) {\n\t      this.log.error(\"Invalid options type for \" + alias, TypeError);\n\t    }\n\n\t    var opts = (0, _cloneDeepWith2.default)(rawOpts, function (val) {\n\t      if (val instanceof _plugin3.default) {\n\t        return val;\n\t      }\n\t    });\n\n\t    dirname = dirname || process.cwd();\n\t    loc = loc || alias;\n\n\t    for (var _key2 in opts) {\n\t      var option = _config3.default[_key2];\n\n\t      if (!option && this.log) {\n\t        if (_removed2.default[_key2]) {\n\t          this.log.error(\"Using removed Babel 5 option: \" + alias + \".\" + _key2 + \" - \" + _removed2.default[_key2].message, ReferenceError);\n\t        } else {\n\t          var unknownOptErr = \"Unknown option: \" + alias + \".\" + _key2 + \". Check out http://babeljs.io/docs/usage/options/ for more information about options.\";\n\t          var presetConfigErr = \"A common cause of this error is the presence of a configuration options object without the corresponding preset name. Example:\\n\\nInvalid:\\n  `{ presets: [{option: value}] }`\\nValid:\\n  `{ presets: [['presetName', {option: value}]] }`\\n\\nFor more detailed information on preset configuration, please see http://babeljs.io/docs/plugins/#pluginpresets-options.\";\n\n\t          this.log.error(unknownOptErr + \"\\n\\n\" + presetConfigErr, ReferenceError);\n\t        }\n\t      }\n\t    }\n\n\t    (0, _index.normaliseOptions)(opts);\n\n\t    if (opts.plugins) {\n\t      opts.plugins = OptionManager.normalisePlugins(loc, dirname, opts.plugins);\n\t    }\n\n\t    if (opts.presets) {\n\t      if (opts.passPerPreset) {\n\t        opts.presets = this.resolvePresets(opts.presets, dirname, function (preset, presetLoc) {\n\t          _this.mergeOptions({\n\t            options: preset,\n\t            extending: preset,\n\t            alias: presetLoc,\n\t            loc: presetLoc,\n\t            dirname: dirname\n\t          });\n\t        });\n\t      } else {\n\t        this.mergePresets(opts.presets, dirname);\n\t        delete opts.presets;\n\t      }\n\t    }\n\n\t    if (rawOpts === extendingOpts) {\n\t      (0, _assign2.default)(extendingOpts, opts);\n\t    } else {\n\t      (0, _merge2.default)(extendingOpts || this.options, opts);\n\t    }\n\t  };\n\n\t  OptionManager.prototype.mergePresets = function mergePresets(presets, dirname) {\n\t    var _this2 = this;\n\n\t    this.resolvePresets(presets, dirname, function (presetOpts, presetLoc) {\n\t      _this2.mergeOptions({\n\t        options: presetOpts,\n\t        alias: presetLoc,\n\t        loc: presetLoc,\n\t        dirname: _path2.default.dirname(presetLoc || \"\")\n\t      });\n\t    });\n\t  };\n\n\t  OptionManager.prototype.resolvePresets = function resolvePresets(presets, dirname, onResolve) {\n\t    return presets.map(function (val) {\n\t      var options = void 0;\n\t      if (Array.isArray(val)) {\n\t        if (val.length > 2) {\n\t          throw new Error(\"Unexpected extra options \" + (0, _stringify2.default)(val.slice(2)) + \" passed to preset.\");\n\t        }\n\n\t        var _val = val;\n\t        val = _val[0];\n\t        options = _val[1];\n\t      }\n\n\t      var presetLoc = void 0;\n\t      try {\n\t        if (typeof val === \"string\") {\n\t          presetLoc = (0, _resolvePreset2.default)(val, dirname);\n\n\t          if (!presetLoc) {\n\t            throw new Error(\"Couldn't find preset \" + (0, _stringify2.default)(val) + \" relative to directory \" + (0, _stringify2.default)(dirname));\n\t          }\n\n\t          val = __webpack_require__(179)(presetLoc);\n\t        }\n\n\t        if ((typeof val === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(val)) === \"object\" && val.__esModule) {\n\t          if (val.default) {\n\t            val = val.default;\n\t          } else {\n\t            var _val2 = val,\n\t                __esModule = _val2.__esModule,\n\t                rest = (0, _objectWithoutProperties3.default)(_val2, [\"__esModule\"]);\n\n\t            val = rest;\n\t          }\n\t        }\n\n\t        if ((typeof val === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(val)) === \"object\" && val.buildPreset) val = val.buildPreset;\n\n\t        if (typeof val !== \"function\" && options !== undefined) {\n\t          throw new Error(\"Options \" + (0, _stringify2.default)(options) + \" passed to \" + (presetLoc || \"a preset\") + \" which does not accept options.\");\n\t        }\n\n\t        if (typeof val === \"function\") val = val(context, options, { dirname: dirname });\n\n\t        if ((typeof val === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(val)) !== \"object\") {\n\t          throw new Error(\"Unsupported preset format: \" + val + \".\");\n\t        }\n\n\t        onResolve && onResolve(val, presetLoc);\n\t      } catch (e) {\n\t        if (presetLoc) {\n\t          e.message += \" (While processing preset: \" + (0, _stringify2.default)(presetLoc) + \")\";\n\t        }\n\t        throw e;\n\t      }\n\t      return val;\n\t    });\n\t  };\n\n\t  OptionManager.prototype.normaliseOptions = function normaliseOptions() {\n\t    var opts = this.options;\n\n\t    for (var _key3 in _config3.default) {\n\t      var option = _config3.default[_key3];\n\t      var val = opts[_key3];\n\n\t      if (!val && option.optional) continue;\n\n\t      if (option.alias) {\n\t        opts[option.alias] = opts[option.alias] || val;\n\t      } else {\n\t        opts[_key3] = val;\n\t      }\n\t    }\n\t  };\n\n\t  OptionManager.prototype.init = function init() {\n\t    var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n\t    for (var _iterator2 = (0, _buildConfigChain2.default)(opts, this.log), _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref3;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref3 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref3 = _i2.value;\n\t      }\n\n\t      var _config = _ref3;\n\n\t      this.mergeOptions(_config);\n\t    }\n\n\t    this.normaliseOptions(opts);\n\n\t    return this.options;\n\t  };\n\n\t  return OptionManager;\n\t}();\n\n\texports.default = OptionManager;\n\n\tOptionManager.memoisedPlugins = [];\n\tmodule.exports = exports[\"default\"];\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 35 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(405), __esModule: true };\n\n/***/ }),\n/* 36 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _virtualTypes = __webpack_require__(224);\n\n\tvar virtualTypes = _interopRequireWildcard(_virtualTypes);\n\n\tvar _debug2 = __webpack_require__(239);\n\n\tvar _debug3 = _interopRequireDefault(_debug2);\n\n\tvar _invariant = __webpack_require__(466);\n\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\n\tvar _index = __webpack_require__(7);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tvar _assign = __webpack_require__(174);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _scope = __webpack_require__(134);\n\n\tvar _scope2 = _interopRequireDefault(_scope);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _cache = __webpack_require__(88);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar _debug = (0, _debug3.default)(\"babel\");\n\n\tvar NodePath = function () {\n\t  function NodePath(hub, parent) {\n\t    (0, _classCallCheck3.default)(this, NodePath);\n\n\t    this.parent = parent;\n\t    this.hub = hub;\n\t    this.contexts = [];\n\t    this.data = {};\n\t    this.shouldSkip = false;\n\t    this.shouldStop = false;\n\t    this.removed = false;\n\t    this.state = null;\n\t    this.opts = null;\n\t    this.skipKeys = null;\n\t    this.parentPath = null;\n\t    this.context = null;\n\t    this.container = null;\n\t    this.listKey = null;\n\t    this.inList = false;\n\t    this.parentKey = null;\n\t    this.key = null;\n\t    this.node = null;\n\t    this.scope = null;\n\t    this.type = null;\n\t    this.typeAnnotation = null;\n\t  }\n\n\t  NodePath.get = function get(_ref) {\n\t    var hub = _ref.hub,\n\t        parentPath = _ref.parentPath,\n\t        parent = _ref.parent,\n\t        container = _ref.container,\n\t        listKey = _ref.listKey,\n\t        key = _ref.key;\n\n\t    if (!hub && parentPath) {\n\t      hub = parentPath.hub;\n\t    }\n\n\t    (0, _invariant2.default)(parent, \"To get a node path the parent needs to exist\");\n\n\t    var targetNode = container[key];\n\n\t    var paths = _cache.path.get(parent) || [];\n\t    if (!_cache.path.has(parent)) {\n\t      _cache.path.set(parent, paths);\n\t    }\n\n\t    var path = void 0;\n\n\t    for (var i = 0; i < paths.length; i++) {\n\t      var pathCheck = paths[i];\n\t      if (pathCheck.node === targetNode) {\n\t        path = pathCheck;\n\t        break;\n\t      }\n\t    }\n\n\t    if (!path) {\n\t      path = new NodePath(hub, parent);\n\t      paths.push(path);\n\t    }\n\n\t    path.setup(parentPath, container, listKey, key);\n\n\t    return path;\n\t  };\n\n\t  NodePath.prototype.getScope = function getScope(scope) {\n\t    var ourScope = scope;\n\n\t    if (this.isScope()) {\n\t      ourScope = new _scope2.default(this, scope);\n\t    }\n\n\t    return ourScope;\n\t  };\n\n\t  NodePath.prototype.setData = function setData(key, val) {\n\t    return this.data[key] = val;\n\t  };\n\n\t  NodePath.prototype.getData = function getData(key, def) {\n\t    var val = this.data[key];\n\t    if (!val && def) val = this.data[key] = def;\n\t    return val;\n\t  };\n\n\t  NodePath.prototype.buildCodeFrameError = function buildCodeFrameError(msg) {\n\t    var Error = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : SyntaxError;\n\n\t    return this.hub.file.buildCodeFrameError(this.node, msg, Error);\n\t  };\n\n\t  NodePath.prototype.traverse = function traverse(visitor, state) {\n\t    (0, _index2.default)(this.node, visitor, this.scope, state, this);\n\t  };\n\n\t  NodePath.prototype.mark = function mark(type, message) {\n\t    this.hub.file.metadata.marked.push({\n\t      type: type,\n\t      message: message,\n\t      loc: this.node.loc\n\t    });\n\t  };\n\n\t  NodePath.prototype.set = function set(key, node) {\n\t    t.validate(this.node, key, node);\n\t    this.node[key] = node;\n\t  };\n\n\t  NodePath.prototype.getPathLocation = function getPathLocation() {\n\t    var parts = [];\n\t    var path = this;\n\t    do {\n\t      var key = path.key;\n\t      if (path.inList) key = path.listKey + \"[\" + key + \"]\";\n\t      parts.unshift(key);\n\t    } while (path = path.parentPath);\n\t    return parts.join(\".\");\n\t  };\n\n\t  NodePath.prototype.debug = function debug(buildMessage) {\n\t    if (!_debug.enabled) return;\n\t    _debug(this.getPathLocation() + \" \" + this.type + \": \" + buildMessage());\n\t  };\n\n\t  return NodePath;\n\t}();\n\n\texports.default = NodePath;\n\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(368));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(374));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(382));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(372));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(371));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(377));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(370));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(381));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(380));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(373));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(369));\n\n\tvar _loop2 = function _loop2() {\n\t  if (_isArray) {\n\t    if (_i >= _iterator.length) return \"break\";\n\t    _ref2 = _iterator[_i++];\n\t  } else {\n\t    _i = _iterator.next();\n\t    if (_i.done) return \"break\";\n\t    _ref2 = _i.value;\n\t  }\n\n\t  var type = _ref2;\n\n\t  var typeKey = \"is\" + type;\n\t  NodePath.prototype[typeKey] = function (opts) {\n\t    return t[typeKey](this.node, opts);\n\t  };\n\n\t  NodePath.prototype[\"assert\" + type] = function (opts) {\n\t    if (!this[typeKey](opts)) {\n\t      throw new TypeError(\"Expected node path of type \" + type);\n\t    }\n\t  };\n\t};\n\n\tfor (var _iterator = t.TYPES, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t  var _ref2;\n\n\t  var _ret2 = _loop2();\n\n\t  if (_ret2 === \"break\") break;\n\t}\n\n\tvar _loop = function _loop(type) {\n\t  if (type[0] === \"_\") return \"continue\";\n\t  if (t.TYPES.indexOf(type) < 0) t.TYPES.push(type);\n\n\t  var virtualType = virtualTypes[type];\n\n\t  NodePath.prototype[\"is\" + type] = function (opts) {\n\t    return virtualType.checkPath(this, opts);\n\t  };\n\t};\n\n\tfor (var type in virtualTypes) {\n\t  var _ret = _loop(type);\n\n\t  if (_ret === \"continue\") continue;\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 37 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// to indexed object, toObject with fallback for non-array-like ES3 strings\n\tvar IObject = __webpack_require__(142);\n\tvar defined = __webpack_require__(140);\n\tmodule.exports = function (it) {\n\t  return IObject(defined(it));\n\t};\n\n/***/ }),\n/* 38 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsNative = __webpack_require__(497),\n\t    getValue = __webpack_require__(535);\n\n\t/**\n\t * Gets the native function at `key` of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {string} key The key of the method to get.\n\t * @returns {*} Returns the function if it's native, else `undefined`.\n\t */\n\tfunction getNative(object, key) {\n\t  var value = getValue(object, key);\n\t  return baseIsNative(value) ? value : undefined;\n\t}\n\n\tmodule.exports = getNative;\n\n/***/ }),\n/* 39 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = function (module) {\n\t\tif (!module.webpackPolyfill) {\n\t\t\tmodule.deprecate = function () {};\n\t\t\tmodule.paths = [];\n\t\t\t// module.parent = undefined by default\n\t\t\tmodule.children = [];\n\t\t\tmodule.webpackPolyfill = 1;\n\t\t}\n\t\treturn module;\n\t};\n\n/***/ }),\n/* 40 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var node = _ref.node,\n\t      parent = _ref.parent,\n\t      scope = _ref.scope,\n\t      id = _ref.id;\n\n\t  if (node.id) return;\n\n\t  if ((t.isObjectProperty(parent) || t.isObjectMethod(parent, { kind: \"method\" })) && (!parent.computed || t.isLiteral(parent.key))) {\n\t    id = parent.key;\n\t  } else if (t.isVariableDeclarator(parent)) {\n\t    id = parent.id;\n\n\t    if (t.isIdentifier(id)) {\n\t      var binding = scope.parent.getBinding(id.name);\n\t      if (binding && binding.constant && scope.getBinding(id.name) === binding) {\n\t        node.id = id;\n\t        node.id[t.NOT_LOCAL_BINDING] = true;\n\t        return;\n\t      }\n\t    }\n\t  } else if (t.isAssignmentExpression(parent)) {\n\t    id = parent.left;\n\t  } else if (!id) {\n\t    return;\n\t  }\n\n\t  var name = void 0;\n\t  if (id && t.isLiteral(id)) {\n\t    name = id.value;\n\t  } else if (id && t.isIdentifier(id)) {\n\t    name = id.name;\n\t  } else {\n\t    return;\n\t  }\n\n\t  name = t.toBindingIdentifierName(name);\n\t  id = t.identifier(name);\n\n\t  id[t.NOT_LOCAL_BINDING] = true;\n\n\t  var state = visit(node, name, scope);\n\t  return wrap(state, node, id, scope) || node;\n\t};\n\n\tvar _babelHelperGetFunctionArity = __webpack_require__(189);\n\n\tvar _babelHelperGetFunctionArity2 = _interopRequireDefault(_babelHelperGetFunctionArity);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildPropertyMethodAssignmentWrapper = (0, _babelTemplate2.default)(\"\\n  (function (FUNCTION_KEY) {\\n    function FUNCTION_ID() {\\n      return FUNCTION_KEY.apply(this, arguments);\\n    }\\n\\n    FUNCTION_ID.toString = function () {\\n      return FUNCTION_KEY.toString();\\n    }\\n\\n    return FUNCTION_ID;\\n  })(FUNCTION)\\n\");\n\n\tvar buildGeneratorPropertyMethodAssignmentWrapper = (0, _babelTemplate2.default)(\"\\n  (function (FUNCTION_KEY) {\\n    function* FUNCTION_ID() {\\n      return yield* FUNCTION_KEY.apply(this, arguments);\\n    }\\n\\n    FUNCTION_ID.toString = function () {\\n      return FUNCTION_KEY.toString();\\n    };\\n\\n    return FUNCTION_ID;\\n  })(FUNCTION)\\n\");\n\n\tvar visitor = {\n\t  \"ReferencedIdentifier|BindingIdentifier\": function ReferencedIdentifierBindingIdentifier(path, state) {\n\t    if (path.node.name !== state.name) return;\n\n\t    var localDeclar = path.scope.getBindingIdentifier(state.name);\n\t    if (localDeclar !== state.outerDeclar) return;\n\n\t    state.selfReference = true;\n\t    path.stop();\n\t  }\n\t};\n\n\tfunction wrap(state, method, id, scope) {\n\t  if (state.selfReference) {\n\t    if (scope.hasBinding(id.name) && !scope.hasGlobal(id.name)) {\n\t      scope.rename(id.name);\n\t    } else {\n\t      if (!t.isFunction(method)) return;\n\n\t      var build = buildPropertyMethodAssignmentWrapper;\n\t      if (method.generator) build = buildGeneratorPropertyMethodAssignmentWrapper;\n\t      var _template = build({\n\t        FUNCTION: method,\n\t        FUNCTION_ID: id,\n\t        FUNCTION_KEY: scope.generateUidIdentifier(id.name)\n\t      }).expression;\n\t      _template.callee._skipModulesRemap = true;\n\n\t      var params = _template.callee.body.body[0].params;\n\t      for (var i = 0, len = (0, _babelHelperGetFunctionArity2.default)(method); i < len; i++) {\n\t        params.push(scope.generateUidIdentifier(\"x\"));\n\t      }\n\n\t      return _template;\n\t    }\n\t  }\n\n\t  method.id = id;\n\t  scope.getProgramParent().references[id.name] = true;\n\t}\n\n\tfunction visit(node, name, scope) {\n\t  var state = {\n\t    selfAssignment: false,\n\t    selfReference: false,\n\t    outerDeclar: scope.getBindingIdentifier(name),\n\t    references: [],\n\t    name: name\n\t  };\n\n\t  var binding = scope.getOwnBinding(name);\n\n\t  if (binding) {\n\t    if (binding.kind === \"param\") {\n\t      state.selfReference = true;\n\t    } else {}\n\t  } else if (state.outerDeclar || scope.hasGlobal(name)) {\n\t    scope.traverse(node, visitor, state);\n\t  }\n\n\t  return state;\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 41 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _setPrototypeOf = __webpack_require__(361);\n\n\tvar _setPrototypeOf2 = _interopRequireDefault(_setPrototypeOf);\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = function (subClass, superClass) {\n\t  if (typeof superClass !== \"function\" && superClass !== null) {\n\t    throw new TypeError(\"Super expression must either be null or a function, not \" + (typeof superClass === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(superClass)));\n\t  }\n\n\t  subClass.prototype = (0, _create2.default)(superClass && superClass.prototype, {\n\t    constructor: {\n\t      value: subClass,\n\t      enumerable: false,\n\t      writable: true,\n\t      configurable: true\n\t    }\n\t  });\n\t  if (superClass) _setPrototypeOf2.default ? (0, _setPrototypeOf2.default)(subClass, superClass) : subClass.__proto__ = superClass;\n\t};\n\n/***/ }),\n/* 42 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = function (self, call) {\n\t  if (!self) {\n\t    throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n\t  }\n\n\t  return call && ((typeof call === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(call)) === \"object\" || typeof call === \"function\") ? call : self;\n\t};\n\n/***/ }),\n/* 43 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// optional / simple context binding\n\tvar aFunction = __webpack_require__(227);\n\tmodule.exports = function (fn, that, length) {\n\t  aFunction(fn);\n\t  if (that === undefined) return fn;\n\t  switch (length) {\n\t    case 1:\n\t      return function (a) {\n\t        return fn.call(that, a);\n\t      };\n\t    case 2:\n\t      return function (a, b) {\n\t        return fn.call(that, a, b);\n\t      };\n\t    case 3:\n\t      return function (a, b, c) {\n\t        return fn.call(that, a, b, c);\n\t      };\n\t  }\n\t  return function () /* ...args */{\n\t    return fn.apply(that, arguments);\n\t  };\n\t};\n\n/***/ }),\n/* 44 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.2.14 / 15.2.3.14 Object.keys(O)\n\tvar $keys = __webpack_require__(237);\n\tvar enumBugKeys = __webpack_require__(141);\n\n\tmodule.exports = Object.keys || function keys(O) {\n\t  return $keys(O, enumBugKeys);\n\t};\n\n/***/ }),\n/* 45 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar root = __webpack_require__(17);\n\n\t/** Built-in value references. */\n\tvar _Symbol = root.Symbol;\n\n\tmodule.exports = _Symbol;\n\n/***/ }),\n/* 46 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Performs a\n\t * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * comparison between two values to determine if they are equivalent.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to compare.\n\t * @param {*} other The other value to compare.\n\t * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n\t * @example\n\t *\n\t * var object = { 'a': 1 };\n\t * var other = { 'a': 1 };\n\t *\n\t * _.eq(object, object);\n\t * // => true\n\t *\n\t * _.eq(object, other);\n\t * // => false\n\t *\n\t * _.eq('a', 'a');\n\t * // => true\n\t *\n\t * _.eq('a', Object('a'));\n\t * // => false\n\t *\n\t * _.eq(NaN, NaN);\n\t * // => true\n\t */\n\tfunction eq(value, other) {\n\t  return value === other || value !== value && other !== other;\n\t}\n\n\tmodule.exports = eq;\n\n/***/ }),\n/* 47 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayLikeKeys = __webpack_require__(245),\n\t    baseKeysIn = __webpack_require__(501),\n\t    isArrayLike = __webpack_require__(24);\n\n\t/**\n\t * Creates an array of the own and inherited enumerable property names of `object`.\n\t *\n\t * **Note:** Non-object values are coerced to objects.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t *   this.b = 2;\n\t * }\n\t *\n\t * Foo.prototype.c = 3;\n\t *\n\t * _.keysIn(new Foo);\n\t * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\n\t */\n\tfunction keysIn(object) {\n\t  return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);\n\t}\n\n\tmodule.exports = keysIn;\n\n/***/ }),\n/* 48 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar toFinite = __webpack_require__(597);\n\n\t/**\n\t * Converts `value` to an integer.\n\t *\n\t * **Note:** This method is loosely based on\n\t * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to convert.\n\t * @returns {number} Returns the converted integer.\n\t * @example\n\t *\n\t * _.toInteger(3.2);\n\t * // => 3\n\t *\n\t * _.toInteger(Number.MIN_VALUE);\n\t * // => 0\n\t *\n\t * _.toInteger(Infinity);\n\t * // => 1.7976931348623157e+308\n\t *\n\t * _.toInteger('3.2');\n\t * // => 3\n\t */\n\tfunction toInteger(value) {\n\t  var result = toFinite(value),\n\t      remainder = result % 1;\n\n\t  return result === result ? remainder ? result - remainder : result : 0;\n\t}\n\n\tmodule.exports = toInteger;\n\n/***/ }),\n/* 49 */\n/***/ (function(module, exports) {\n\n\t/* WEBPACK VAR INJECTION */(function(__webpack_amd_options__) {module.exports = __webpack_amd_options__;\r\n\n\t/* WEBPACK VAR INJECTION */}.call(exports, {}))\n\n/***/ }),\n/* 50 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {\"use strict\";\n\n\texports.__esModule = true;\n\texports.File = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _assign = __webpack_require__(87);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _possibleConstructorReturn2 = __webpack_require__(42);\n\n\tvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\n\tvar _inherits2 = __webpack_require__(41);\n\n\tvar _inherits3 = _interopRequireDefault(_inherits2);\n\n\tvar _babelHelpers = __webpack_require__(194);\n\n\tvar _babelHelpers2 = _interopRequireDefault(_babelHelpers);\n\n\tvar _metadata = __webpack_require__(121);\n\n\tvar metadataVisitor = _interopRequireWildcard(_metadata);\n\n\tvar _convertSourceMap = __webpack_require__(403);\n\n\tvar _convertSourceMap2 = _interopRequireDefault(_convertSourceMap);\n\n\tvar _optionManager = __webpack_require__(34);\n\n\tvar _optionManager2 = _interopRequireDefault(_optionManager);\n\n\tvar _pluginPass = __webpack_require__(299);\n\n\tvar _pluginPass2 = _interopRequireDefault(_pluginPass);\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelTraverse2 = _interopRequireDefault(_babelTraverse);\n\n\tvar _sourceMap = __webpack_require__(288);\n\n\tvar _sourceMap2 = _interopRequireDefault(_sourceMap);\n\n\tvar _babelGenerator = __webpack_require__(186);\n\n\tvar _babelGenerator2 = _interopRequireDefault(_babelGenerator);\n\n\tvar _babelCodeFrame = __webpack_require__(181);\n\n\tvar _babelCodeFrame2 = _interopRequireDefault(_babelCodeFrame);\n\n\tvar _defaults = __webpack_require__(273);\n\n\tvar _defaults2 = _interopRequireDefault(_defaults);\n\n\tvar _logger = __webpack_require__(120);\n\n\tvar _logger2 = _interopRequireDefault(_logger);\n\n\tvar _store = __webpack_require__(119);\n\n\tvar _store2 = _interopRequireDefault(_store);\n\n\tvar _babylon = __webpack_require__(89);\n\n\tvar _util = __webpack_require__(122);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _path2 = _interopRequireDefault(_path);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _resolve = __webpack_require__(118);\n\n\tvar _resolve2 = _interopRequireDefault(_resolve);\n\n\tvar _blockHoist = __webpack_require__(296);\n\n\tvar _blockHoist2 = _interopRequireDefault(_blockHoist);\n\n\tvar _shadowFunctions = __webpack_require__(297);\n\n\tvar _shadowFunctions2 = _interopRequireDefault(_shadowFunctions);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar shebangRegex = /^#!.*/;\n\n\tvar INTERNAL_PLUGINS = [[_blockHoist2.default], [_shadowFunctions2.default]];\n\n\tvar errorVisitor = {\n\t  enter: function enter(path, state) {\n\t    var loc = path.node.loc;\n\t    if (loc) {\n\t      state.loc = loc;\n\t      path.stop();\n\t    }\n\t  }\n\t};\n\n\tvar File = function (_Store) {\n\t  (0, _inherits3.default)(File, _Store);\n\n\t  function File() {\n\t    var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\t    var pipeline = arguments[1];\n\t    (0, _classCallCheck3.default)(this, File);\n\n\t    var _this = (0, _possibleConstructorReturn3.default)(this, _Store.call(this));\n\n\t    _this.pipeline = pipeline;\n\n\t    _this.log = new _logger2.default(_this, opts.filename || \"unknown\");\n\t    _this.opts = _this.initOptions(opts);\n\n\t    _this.parserOpts = {\n\t      sourceType: _this.opts.sourceType,\n\t      sourceFileName: _this.opts.filename,\n\t      plugins: []\n\t    };\n\n\t    _this.pluginVisitors = [];\n\t    _this.pluginPasses = [];\n\n\t    _this.buildPluginsForOptions(_this.opts);\n\n\t    if (_this.opts.passPerPreset) {\n\t      _this.perPresetOpts = [];\n\t      _this.opts.presets.forEach(function (presetOpts) {\n\t        var perPresetOpts = (0, _assign2.default)((0, _create2.default)(_this.opts), presetOpts);\n\t        _this.perPresetOpts.push(perPresetOpts);\n\t        _this.buildPluginsForOptions(perPresetOpts);\n\t      });\n\t    }\n\n\t    _this.metadata = {\n\t      usedHelpers: [],\n\t      marked: [],\n\t      modules: {\n\t        imports: [],\n\t        exports: {\n\t          exported: [],\n\t          specifiers: []\n\t        }\n\t      }\n\t    };\n\n\t    _this.dynamicImportTypes = {};\n\t    _this.dynamicImportIds = {};\n\t    _this.dynamicImports = [];\n\t    _this.declarations = {};\n\t    _this.usedHelpers = {};\n\n\t    _this.path = null;\n\t    _this.ast = {};\n\n\t    _this.code = \"\";\n\t    _this.shebang = \"\";\n\n\t    _this.hub = new _babelTraverse.Hub(_this);\n\t    return _this;\n\t  }\n\n\t  File.prototype.getMetadata = function getMetadata() {\n\t    var has = false;\n\t    for (var _iterator = this.ast.program.body, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var node = _ref;\n\n\t      if (t.isModuleDeclaration(node)) {\n\t        has = true;\n\t        break;\n\t      }\n\t    }\n\t    if (has) {\n\t      this.path.traverse(metadataVisitor, this);\n\t    }\n\t  };\n\n\t  File.prototype.initOptions = function initOptions(opts) {\n\t    opts = new _optionManager2.default(this.log, this.pipeline).init(opts);\n\n\t    if (opts.inputSourceMap) {\n\t      opts.sourceMaps = true;\n\t    }\n\n\t    if (opts.moduleId) {\n\t      opts.moduleIds = true;\n\t    }\n\n\t    opts.basename = _path2.default.basename(opts.filename, _path2.default.extname(opts.filename));\n\n\t    opts.ignore = util.arrayify(opts.ignore, util.regexify);\n\n\t    if (opts.only) opts.only = util.arrayify(opts.only, util.regexify);\n\n\t    (0, _defaults2.default)(opts, {\n\t      moduleRoot: opts.sourceRoot\n\t    });\n\n\t    (0, _defaults2.default)(opts, {\n\t      sourceRoot: opts.moduleRoot\n\t    });\n\n\t    (0, _defaults2.default)(opts, {\n\t      filenameRelative: opts.filename\n\t    });\n\n\t    var basenameRelative = _path2.default.basename(opts.filenameRelative);\n\n\t    (0, _defaults2.default)(opts, {\n\t      sourceFileName: basenameRelative,\n\t      sourceMapTarget: basenameRelative\n\t    });\n\n\t    return opts;\n\t  };\n\n\t  File.prototype.buildPluginsForOptions = function buildPluginsForOptions(opts) {\n\t    if (!Array.isArray(opts.plugins)) {\n\t      return;\n\t    }\n\n\t    var plugins = opts.plugins.concat(INTERNAL_PLUGINS);\n\t    var currentPluginVisitors = [];\n\t    var currentPluginPasses = [];\n\n\t    for (var _iterator2 = plugins, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var ref = _ref2;\n\t      var plugin = ref[0],\n\t          pluginOpts = ref[1];\n\n\t      currentPluginVisitors.push(plugin.visitor);\n\t      currentPluginPasses.push(new _pluginPass2.default(this, plugin, pluginOpts));\n\n\t      if (plugin.manipulateOptions) {\n\t        plugin.manipulateOptions(opts, this.parserOpts, this);\n\t      }\n\t    }\n\n\t    this.pluginVisitors.push(currentPluginVisitors);\n\t    this.pluginPasses.push(currentPluginPasses);\n\t  };\n\n\t  File.prototype.getModuleName = function getModuleName() {\n\t    var opts = this.opts;\n\t    if (!opts.moduleIds) {\n\t      return null;\n\t    }\n\n\t    if (opts.moduleId != null && !opts.getModuleId) {\n\t      return opts.moduleId;\n\t    }\n\n\t    var filenameRelative = opts.filenameRelative;\n\t    var moduleName = \"\";\n\n\t    if (opts.moduleRoot != null) {\n\t      moduleName = opts.moduleRoot + \"/\";\n\t    }\n\n\t    if (!opts.filenameRelative) {\n\t      return moduleName + opts.filename.replace(/^\\//, \"\");\n\t    }\n\n\t    if (opts.sourceRoot != null) {\n\t      var sourceRootRegEx = new RegExp(\"^\" + opts.sourceRoot + \"\\/?\");\n\t      filenameRelative = filenameRelative.replace(sourceRootRegEx, \"\");\n\t    }\n\n\t    filenameRelative = filenameRelative.replace(/\\.(\\w*?)$/, \"\");\n\n\t    moduleName += filenameRelative;\n\n\t    moduleName = moduleName.replace(/\\\\/g, \"/\");\n\n\t    if (opts.getModuleId) {\n\t      return opts.getModuleId(moduleName) || moduleName;\n\t    } else {\n\t      return moduleName;\n\t    }\n\t  };\n\n\t  File.prototype.resolveModuleSource = function resolveModuleSource(source) {\n\t    var resolveModuleSource = this.opts.resolveModuleSource;\n\t    if (resolveModuleSource) source = resolveModuleSource(source, this.opts.filename);\n\t    return source;\n\t  };\n\n\t  File.prototype.addImport = function addImport(source, imported) {\n\t    var name = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : imported;\n\n\t    var alias = source + \":\" + imported;\n\t    var id = this.dynamicImportIds[alias];\n\n\t    if (!id) {\n\t      source = this.resolveModuleSource(source);\n\t      id = this.dynamicImportIds[alias] = this.scope.generateUidIdentifier(name);\n\n\t      var specifiers = [];\n\n\t      if (imported === \"*\") {\n\t        specifiers.push(t.importNamespaceSpecifier(id));\n\t      } else if (imported === \"default\") {\n\t        specifiers.push(t.importDefaultSpecifier(id));\n\t      } else {\n\t        specifiers.push(t.importSpecifier(id, t.identifier(imported)));\n\t      }\n\n\t      var declar = t.importDeclaration(specifiers, t.stringLiteral(source));\n\t      declar._blockHoist = 3;\n\n\t      this.path.unshiftContainer(\"body\", declar);\n\t    }\n\n\t    return id;\n\t  };\n\n\t  File.prototype.addHelper = function addHelper(name) {\n\t    var declar = this.declarations[name];\n\t    if (declar) return declar;\n\n\t    if (!this.usedHelpers[name]) {\n\t      this.metadata.usedHelpers.push(name);\n\t      this.usedHelpers[name] = true;\n\t    }\n\n\t    var generator = this.get(\"helperGenerator\");\n\t    var runtime = this.get(\"helpersNamespace\");\n\t    if (generator) {\n\t      var res = generator(name);\n\t      if (res) return res;\n\t    } else if (runtime) {\n\t      return t.memberExpression(runtime, t.identifier(name));\n\t    }\n\n\t    var ref = (0, _babelHelpers2.default)(name);\n\t    var uid = this.declarations[name] = this.scope.generateUidIdentifier(name);\n\n\t    if (t.isFunctionExpression(ref) && !ref.id) {\n\t      ref.body._compact = true;\n\t      ref._generated = true;\n\t      ref.id = uid;\n\t      ref.type = \"FunctionDeclaration\";\n\t      this.path.unshiftContainer(\"body\", ref);\n\t    } else {\n\t      ref._compact = true;\n\t      this.scope.push({\n\t        id: uid,\n\t        init: ref,\n\t        unique: true\n\t      });\n\t    }\n\n\t    return uid;\n\t  };\n\n\t  File.prototype.addTemplateObject = function addTemplateObject(helperName, strings, raw) {\n\t    var stringIds = raw.elements.map(function (string) {\n\t      return string.value;\n\t    });\n\t    var name = helperName + \"_\" + raw.elements.length + \"_\" + stringIds.join(\",\");\n\n\t    var declar = this.declarations[name];\n\t    if (declar) return declar;\n\n\t    var uid = this.declarations[name] = this.scope.generateUidIdentifier(\"templateObject\");\n\n\t    var helperId = this.addHelper(helperName);\n\t    var init = t.callExpression(helperId, [strings, raw]);\n\t    init._compact = true;\n\t    this.scope.push({\n\t      id: uid,\n\t      init: init,\n\t      _blockHoist: 1.9 });\n\t    return uid;\n\t  };\n\n\t  File.prototype.buildCodeFrameError = function buildCodeFrameError(node, msg) {\n\t    var Error = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : SyntaxError;\n\n\t    var loc = node && (node.loc || node._loc);\n\n\t    var err = new Error(msg);\n\n\t    if (loc) {\n\t      err.loc = loc.start;\n\t    } else {\n\t      (0, _babelTraverse2.default)(node, errorVisitor, this.scope, err);\n\n\t      err.message += \" (This is an error on an internal node. Probably an internal error\";\n\n\t      if (err.loc) {\n\t        err.message += \". Location has been estimated.\";\n\t      }\n\n\t      err.message += \")\";\n\t    }\n\n\t    return err;\n\t  };\n\n\t  File.prototype.mergeSourceMap = function mergeSourceMap(map) {\n\t    var inputMap = this.opts.inputSourceMap;\n\n\t    if (inputMap) {\n\t      var inputMapConsumer = new _sourceMap2.default.SourceMapConsumer(inputMap);\n\t      var outputMapConsumer = new _sourceMap2.default.SourceMapConsumer(map);\n\n\t      var mergedGenerator = new _sourceMap2.default.SourceMapGenerator({\n\t        file: inputMapConsumer.file,\n\t        sourceRoot: inputMapConsumer.sourceRoot\n\t      });\n\n\t      var source = outputMapConsumer.sources[0];\n\n\t      inputMapConsumer.eachMapping(function (mapping) {\n\t        var generatedPosition = outputMapConsumer.generatedPositionFor({\n\t          line: mapping.generatedLine,\n\t          column: mapping.generatedColumn,\n\t          source: source\n\t        });\n\t        if (generatedPosition.column != null) {\n\t          mergedGenerator.addMapping({\n\t            source: mapping.source,\n\n\t            original: mapping.source == null ? null : {\n\t              line: mapping.originalLine,\n\t              column: mapping.originalColumn\n\t            },\n\n\t            generated: generatedPosition\n\t          });\n\t        }\n\t      });\n\n\t      var mergedMap = mergedGenerator.toJSON();\n\t      inputMap.mappings = mergedMap.mappings;\n\t      return inputMap;\n\t    } else {\n\t      return map;\n\t    }\n\t  };\n\n\t  File.prototype.parse = function parse(code) {\n\t    var parseCode = _babylon.parse;\n\t    var parserOpts = this.opts.parserOpts;\n\n\t    if (parserOpts) {\n\t      parserOpts = (0, _assign2.default)({}, this.parserOpts, parserOpts);\n\n\t      if (parserOpts.parser) {\n\t        if (typeof parserOpts.parser === \"string\") {\n\t          var dirname = _path2.default.dirname(this.opts.filename) || process.cwd();\n\t          var parser = (0, _resolve2.default)(parserOpts.parser, dirname);\n\t          if (parser) {\n\t            parseCode = __webpack_require__(178)(parser).parse;\n\t          } else {\n\t            throw new Error(\"Couldn't find parser \" + parserOpts.parser + \" with \\\"parse\\\" method \" + (\"relative to directory \" + dirname));\n\t          }\n\t        } else {\n\t          parseCode = parserOpts.parser;\n\t        }\n\n\t        parserOpts.parser = {\n\t          parse: function parse(source) {\n\t            return (0, _babylon.parse)(source, parserOpts);\n\t          }\n\t        };\n\t      }\n\t    }\n\n\t    this.log.debug(\"Parse start\");\n\t    var ast = parseCode(code, parserOpts || this.parserOpts);\n\t    this.log.debug(\"Parse stop\");\n\t    return ast;\n\t  };\n\n\t  File.prototype._addAst = function _addAst(ast) {\n\t    this.path = _babelTraverse.NodePath.get({\n\t      hub: this.hub,\n\t      parentPath: null,\n\t      parent: ast,\n\t      container: ast,\n\t      key: \"program\"\n\t    }).setContext();\n\t    this.scope = this.path.scope;\n\t    this.ast = ast;\n\t    this.getMetadata();\n\t  };\n\n\t  File.prototype.addAst = function addAst(ast) {\n\t    this.log.debug(\"Start set AST\");\n\t    this._addAst(ast);\n\t    this.log.debug(\"End set AST\");\n\t  };\n\n\t  File.prototype.transform = function transform() {\n\t    for (var i = 0; i < this.pluginPasses.length; i++) {\n\t      var pluginPasses = this.pluginPasses[i];\n\t      this.call(\"pre\", pluginPasses);\n\t      this.log.debug(\"Start transform traverse\");\n\n\t      var visitor = _babelTraverse2.default.visitors.merge(this.pluginVisitors[i], pluginPasses, this.opts.wrapPluginVisitorMethod);\n\t      (0, _babelTraverse2.default)(this.ast, visitor, this.scope);\n\n\t      this.log.debug(\"End transform traverse\");\n\t      this.call(\"post\", pluginPasses);\n\t    }\n\n\t    return this.generate();\n\t  };\n\n\t  File.prototype.wrap = function wrap(code, callback) {\n\t    code = code + \"\";\n\n\t    try {\n\t      if (this.shouldIgnore()) {\n\t        return this.makeResult({ code: code, ignored: true });\n\t      } else {\n\t        return callback();\n\t      }\n\t    } catch (err) {\n\t      if (err._babel) {\n\t        throw err;\n\t      } else {\n\t        err._babel = true;\n\t      }\n\n\t      var message = err.message = this.opts.filename + \": \" + err.message;\n\n\t      var loc = err.loc;\n\t      if (loc) {\n\t        err.codeFrame = (0, _babelCodeFrame2.default)(code, loc.line, loc.column + 1, this.opts);\n\t        message += \"\\n\" + err.codeFrame;\n\t      }\n\n\t      if (process.browser) {\n\t        err.message = message;\n\t      }\n\n\t      if (err.stack) {\n\t        var newStack = err.stack.replace(err.message, message);\n\t        err.stack = newStack;\n\t      }\n\n\t      throw err;\n\t    }\n\t  };\n\n\t  File.prototype.addCode = function addCode(code) {\n\t    code = (code || \"\") + \"\";\n\t    code = this.parseInputSourceMap(code);\n\t    this.code = code;\n\t  };\n\n\t  File.prototype.parseCode = function parseCode() {\n\t    this.parseShebang();\n\t    var ast = this.parse(this.code);\n\t    this.addAst(ast);\n\t  };\n\n\t  File.prototype.shouldIgnore = function shouldIgnore() {\n\t    var opts = this.opts;\n\t    return util.shouldIgnore(opts.filename, opts.ignore, opts.only);\n\t  };\n\n\t  File.prototype.call = function call(key, pluginPasses) {\n\t    for (var _iterator3 = pluginPasses, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var pass = _ref3;\n\n\t      var plugin = pass.plugin;\n\t      var fn = plugin[key];\n\t      if (fn) fn.call(pass, this);\n\t    }\n\t  };\n\n\t  File.prototype.parseInputSourceMap = function parseInputSourceMap(code) {\n\t    var opts = this.opts;\n\n\t    if (opts.inputSourceMap !== false) {\n\t      var inputMap = _convertSourceMap2.default.fromSource(code);\n\t      if (inputMap) {\n\t        opts.inputSourceMap = inputMap.toObject();\n\t        code = _convertSourceMap2.default.removeComments(code);\n\t      }\n\t    }\n\n\t    return code;\n\t  };\n\n\t  File.prototype.parseShebang = function parseShebang() {\n\t    var shebangMatch = shebangRegex.exec(this.code);\n\t    if (shebangMatch) {\n\t      this.shebang = shebangMatch[0];\n\t      this.code = this.code.replace(shebangRegex, \"\");\n\t    }\n\t  };\n\n\t  File.prototype.makeResult = function makeResult(_ref4) {\n\t    var code = _ref4.code,\n\t        map = _ref4.map,\n\t        ast = _ref4.ast,\n\t        ignored = _ref4.ignored;\n\n\t    var result = {\n\t      metadata: null,\n\t      options: this.opts,\n\t      ignored: !!ignored,\n\t      code: null,\n\t      ast: null,\n\t      map: map || null\n\t    };\n\n\t    if (this.opts.code) {\n\t      result.code = code;\n\t    }\n\n\t    if (this.opts.ast) {\n\t      result.ast = ast;\n\t    }\n\n\t    if (this.opts.metadata) {\n\t      result.metadata = this.metadata;\n\t    }\n\n\t    return result;\n\t  };\n\n\t  File.prototype.generate = function generate() {\n\t    var opts = this.opts;\n\t    var ast = this.ast;\n\n\t    var result = { ast: ast };\n\t    if (!opts.code) return this.makeResult(result);\n\n\t    var gen = _babelGenerator2.default;\n\t    if (opts.generatorOpts.generator) {\n\t      gen = opts.generatorOpts.generator;\n\n\t      if (typeof gen === \"string\") {\n\t        var dirname = _path2.default.dirname(this.opts.filename) || process.cwd();\n\t        var generator = (0, _resolve2.default)(gen, dirname);\n\t        if (generator) {\n\t          gen = __webpack_require__(178)(generator).print;\n\t        } else {\n\t          throw new Error(\"Couldn't find generator \" + gen + \" with \\\"print\\\" method relative \" + (\"to directory \" + dirname));\n\t        }\n\t      }\n\t    }\n\n\t    this.log.debug(\"Generation start\");\n\n\t    var _result = gen(ast, opts.generatorOpts ? (0, _assign2.default)(opts, opts.generatorOpts) : opts, this.code);\n\t    result.code = _result.code;\n\t    result.map = _result.map;\n\n\t    this.log.debug(\"Generation end\");\n\n\t    if (this.shebang) {\n\t      result.code = this.shebang + \"\\n\" + result.code;\n\t    }\n\n\t    if (result.map) {\n\t      result.map = this.mergeSourceMap(result.map);\n\t    }\n\n\t    if (opts.sourceMaps === \"inline\" || opts.sourceMaps === \"both\") {\n\t      result.code += \"\\n\" + _convertSourceMap2.default.fromObject(result.map).toComment();\n\t    }\n\n\t    if (opts.sourceMaps === \"inline\") {\n\t      result.map = null;\n\t    }\n\n\t    return this.makeResult(result);\n\t  };\n\n\t  return File;\n\t}(_store2.default);\n\n\texports.default = File;\n\texports.File = File;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 51 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _assign = __webpack_require__(87);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\texports.default = buildConfigChain;\n\n\tvar _resolve = __webpack_require__(118);\n\n\tvar _resolve2 = _interopRequireDefault(_resolve);\n\n\tvar _json = __webpack_require__(470);\n\n\tvar _json2 = _interopRequireDefault(_json);\n\n\tvar _pathIsAbsolute = __webpack_require__(604);\n\n\tvar _pathIsAbsolute2 = _interopRequireDefault(_pathIsAbsolute);\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _path2 = _interopRequireDefault(_path);\n\n\tvar _fs = __webpack_require__(115);\n\n\tvar _fs2 = _interopRequireDefault(_fs);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar existsCache = {};\n\tvar jsonCache = {};\n\n\tvar BABELIGNORE_FILENAME = \".babelignore\";\n\tvar BABELRC_FILENAME = \".babelrc\";\n\tvar PACKAGE_FILENAME = \"package.json\";\n\n\tfunction exists(filename) {\n\t  var cached = existsCache[filename];\n\t  if (cached == null) {\n\t    return existsCache[filename] = _fs2.default.existsSync(filename);\n\t  } else {\n\t    return cached;\n\t  }\n\t}\n\n\tfunction buildConfigChain() {\n\t  var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\t  var log = arguments[1];\n\n\t  var filename = opts.filename;\n\t  var builder = new ConfigChainBuilder(log);\n\n\t  if (opts.babelrc !== false) {\n\t    builder.findConfigs(filename);\n\t  }\n\n\t  builder.mergeConfig({\n\t    options: opts,\n\t    alias: \"base\",\n\t    dirname: filename && _path2.default.dirname(filename)\n\t  });\n\n\t  return builder.configs;\n\t}\n\n\tvar ConfigChainBuilder = function () {\n\t  function ConfigChainBuilder(log) {\n\t    (0, _classCallCheck3.default)(this, ConfigChainBuilder);\n\n\t    this.resolvedConfigs = [];\n\t    this.configs = [];\n\t    this.log = log;\n\t  }\n\n\t  ConfigChainBuilder.prototype.findConfigs = function findConfigs(loc) {\n\t    if (!loc) return;\n\n\t    if (!(0, _pathIsAbsolute2.default)(loc)) {\n\t      loc = _path2.default.join(process.cwd(), loc);\n\t    }\n\n\t    var foundConfig = false;\n\t    var foundIgnore = false;\n\n\t    while (loc !== (loc = _path2.default.dirname(loc))) {\n\t      if (!foundConfig) {\n\t        var configLoc = _path2.default.join(loc, BABELRC_FILENAME);\n\t        if (exists(configLoc)) {\n\t          this.addConfig(configLoc);\n\t          foundConfig = true;\n\t        }\n\n\t        var pkgLoc = _path2.default.join(loc, PACKAGE_FILENAME);\n\t        if (!foundConfig && exists(pkgLoc)) {\n\t          foundConfig = this.addConfig(pkgLoc, \"babel\", JSON);\n\t        }\n\t      }\n\n\t      if (!foundIgnore) {\n\t        var ignoreLoc = _path2.default.join(loc, BABELIGNORE_FILENAME);\n\t        if (exists(ignoreLoc)) {\n\t          this.addIgnoreConfig(ignoreLoc);\n\t          foundIgnore = true;\n\t        }\n\t      }\n\n\t      if (foundIgnore && foundConfig) return;\n\t    }\n\t  };\n\n\t  ConfigChainBuilder.prototype.addIgnoreConfig = function addIgnoreConfig(loc) {\n\t    var file = _fs2.default.readFileSync(loc, \"utf8\");\n\t    var lines = file.split(\"\\n\");\n\n\t    lines = lines.map(function (line) {\n\t      return line.replace(/#(.*?)$/, \"\").trim();\n\t    }).filter(function (line) {\n\t      return !!line;\n\t    });\n\n\t    if (lines.length) {\n\t      this.mergeConfig({\n\t        options: { ignore: lines },\n\t        alias: loc,\n\t        dirname: _path2.default.dirname(loc)\n\t      });\n\t    }\n\t  };\n\n\t  ConfigChainBuilder.prototype.addConfig = function addConfig(loc, key) {\n\t    var json = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : _json2.default;\n\n\t    if (this.resolvedConfigs.indexOf(loc) >= 0) {\n\t      return false;\n\t    }\n\n\t    this.resolvedConfigs.push(loc);\n\n\t    var content = _fs2.default.readFileSync(loc, \"utf8\");\n\t    var options = void 0;\n\n\t    try {\n\t      options = jsonCache[content] = jsonCache[content] || json.parse(content);\n\t      if (key) options = options[key];\n\t    } catch (err) {\n\t      err.message = loc + \": Error while parsing JSON - \" + err.message;\n\t      throw err;\n\t    }\n\n\t    this.mergeConfig({\n\t      options: options,\n\t      alias: loc,\n\t      dirname: _path2.default.dirname(loc)\n\t    });\n\n\t    return !!options;\n\t  };\n\n\t  ConfigChainBuilder.prototype.mergeConfig = function mergeConfig(_ref) {\n\t    var options = _ref.options,\n\t        alias = _ref.alias,\n\t        loc = _ref.loc,\n\t        dirname = _ref.dirname;\n\n\t    if (!options) {\n\t      return false;\n\t    }\n\n\t    options = (0, _assign2.default)({}, options);\n\n\t    dirname = dirname || process.cwd();\n\t    loc = loc || alias;\n\n\t    if (options.extends) {\n\t      var extendsLoc = (0, _resolve2.default)(options.extends, dirname);\n\t      if (extendsLoc) {\n\t        this.addConfig(extendsLoc);\n\t      } else {\n\t        if (this.log) this.log.error(\"Couldn't resolve extends clause of \" + options.extends + \" in \" + alias);\n\t      }\n\t      delete options.extends;\n\t    }\n\n\t    this.configs.push({\n\t      options: options,\n\t      alias: alias,\n\t      loc: loc,\n\t      dirname: dirname\n\t    });\n\n\t    var envOpts = void 0;\n\t    var envKey = process.env.BABEL_ENV || (\"production\") || \"development\";\n\t    if (options.env) {\n\t      envOpts = options.env[envKey];\n\t      delete options.env;\n\t    }\n\n\t    this.mergeConfig({\n\t      options: envOpts,\n\t      alias: alias + \".env.\" + envKey,\n\t      dirname: dirname\n\t    });\n\t  };\n\n\t  return ConfigChainBuilder;\n\t}();\n\n\tmodule.exports = exports[\"default\"];\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 52 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.config = undefined;\n\texports.normaliseOptions = normaliseOptions;\n\n\tvar _parsers = __webpack_require__(53);\n\n\tvar parsers = _interopRequireWildcard(_parsers);\n\n\tvar _config = __webpack_require__(33);\n\n\tvar _config2 = _interopRequireDefault(_config);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\texports.config = _config2.default;\n\tfunction normaliseOptions() {\n\t  var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n\t  for (var key in options) {\n\t    var val = options[key];\n\t    if (val == null) continue;\n\n\t    var opt = _config2.default[key];\n\t    if (opt && opt.alias) opt = _config2.default[opt.alias];\n\t    if (!opt) continue;\n\n\t    var parser = parsers[opt.type];\n\t    if (parser) val = parser(val);\n\n\t    options[key] = val;\n\t  }\n\n\t  return options;\n\t}\n\n/***/ }),\n/* 53 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.filename = undefined;\n\texports.boolean = boolean;\n\texports.booleanString = booleanString;\n\texports.list = list;\n\n\tvar _slash = __webpack_require__(284);\n\n\tvar _slash2 = _interopRequireDefault(_slash);\n\n\tvar _util = __webpack_require__(122);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar filename = exports.filename = _slash2.default;\n\n\tfunction boolean(val) {\n\t  return !!val;\n\t}\n\n\tfunction booleanString(val) {\n\t  return util.booleanify(val);\n\t}\n\n\tfunction list(val) {\n\t  return util.list(val);\n\t}\n\n/***/ }),\n/* 54 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = {\n\t  \"auxiliaryComment\": {\n\t    \"message\": \"Use `auxiliaryCommentBefore` or `auxiliaryCommentAfter`\"\n\t  },\n\t  \"blacklist\": {\n\t    \"message\": \"Put the specific transforms you want in the `plugins` option\"\n\t  },\n\t  \"breakConfig\": {\n\t    \"message\": \"This is not a necessary option in Babel 6\"\n\t  },\n\t  \"experimental\": {\n\t    \"message\": \"Put the specific transforms you want in the `plugins` option\"\n\t  },\n\t  \"externalHelpers\": {\n\t    \"message\": \"Use the `external-helpers` plugin instead. Check out http://babeljs.io/docs/plugins/external-helpers/\"\n\t  },\n\t  \"extra\": {\n\t    \"message\": \"\"\n\t  },\n\t  \"jsxPragma\": {\n\t    \"message\": \"use the `pragma` option in the `react-jsx` plugin . Check out http://babeljs.io/docs/plugins/transform-react-jsx/\"\n\t  },\n\n\t  \"loose\": {\n\t    \"message\": \"Specify the `loose` option for the relevant plugin you are using or use a preset that sets the option.\"\n\t  },\n\t  \"metadataUsedHelpers\": {\n\t    \"message\": \"Not required anymore as this is enabled by default\"\n\t  },\n\t  \"modules\": {\n\t    \"message\": \"Use the corresponding module transform plugin in the `plugins` option. Check out http://babeljs.io/docs/plugins/#modules\"\n\t  },\n\t  \"nonStandard\": {\n\t    \"message\": \"Use the `react-jsx` and `flow-strip-types` plugins to support JSX and Flow. Also check out the react preset http://babeljs.io/docs/plugins/preset-react/\"\n\t  },\n\t  \"optional\": {\n\t    \"message\": \"Put the specific transforms you want in the `plugins` option\"\n\t  },\n\t  \"sourceMapName\": {\n\t    \"message\": \"Use the `sourceMapTarget` option\"\n\t  },\n\t  \"stage\": {\n\t    \"message\": \"Check out the corresponding stage-x presets http://babeljs.io/docs/plugins/#presets\"\n\t  },\n\t  \"whitelist\": {\n\t    \"message\": \"Put the specific transforms you want in the `plugins` option\"\n\t  }\n\t};\n\n/***/ }),\n/* 55 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar ctx = __webpack_require__(43);\n\tvar call = __webpack_require__(428);\n\tvar isArrayIter = __webpack_require__(427);\n\tvar anObject = __webpack_require__(21);\n\tvar toLength = __webpack_require__(153);\n\tvar getIterFn = __webpack_require__(238);\n\tvar BREAK = {};\n\tvar RETURN = {};\n\tvar _exports = module.exports = function (iterable, entries, fn, that, ITERATOR) {\n\t  var iterFn = ITERATOR ? function () {\n\t    return iterable;\n\t  } : getIterFn(iterable);\n\t  var f = ctx(fn, that, entries ? 2 : 1);\n\t  var index = 0;\n\t  var length, step, iterator, result;\n\t  if (typeof iterFn != 'function') throw TypeError(iterable + ' is not iterable!');\n\t  // fast case for arrays with default iterator\n\t  if (isArrayIter(iterFn)) for (length = toLength(iterable.length); length > index; index++) {\n\t    result = entries ? f(anObject(step = iterable[index])[0], step[1]) : f(iterable[index]);\n\t    if (result === BREAK || result === RETURN) return result;\n\t  } else for (iterator = iterFn.call(iterable); !(step = iterator.next()).done;) {\n\t    result = call(iterator, f, step.value, entries);\n\t    if (result === BREAK || result === RETURN) return result;\n\t  }\n\t};\n\t_exports.BREAK = BREAK;\n\t_exports.RETURN = RETURN;\n\n/***/ }),\n/* 56 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = {};\n\n/***/ }),\n/* 57 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar META = __webpack_require__(95)('meta');\n\tvar isObject = __webpack_require__(16);\n\tvar has = __webpack_require__(28);\n\tvar setDesc = __webpack_require__(23).f;\n\tvar id = 0;\n\tvar isExtensible = Object.isExtensible || function () {\n\t  return true;\n\t};\n\tvar FREEZE = !__webpack_require__(27)(function () {\n\t  return isExtensible(Object.preventExtensions({}));\n\t});\n\tvar setMeta = function setMeta(it) {\n\t  setDesc(it, META, { value: {\n\t      i: 'O' + ++id, // object ID\n\t      w: {} // weak collections IDs\n\t    } });\n\t};\n\tvar fastKey = function fastKey(it, create) {\n\t  // return primitive with prefix\n\t  if (!isObject(it)) return (typeof it === 'undefined' ? 'undefined' : _typeof(it)) == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n\t  if (!has(it, META)) {\n\t    // can't set metadata to uncaught frozen object\n\t    if (!isExtensible(it)) return 'F';\n\t    // not necessary to add metadata\n\t    if (!create) return 'E';\n\t    // add missing metadata\n\t    setMeta(it);\n\t    // return object ID\n\t  }return it[META].i;\n\t};\n\tvar getWeak = function getWeak(it, create) {\n\t  if (!has(it, META)) {\n\t    // can't set metadata to uncaught frozen object\n\t    if (!isExtensible(it)) return true;\n\t    // not necessary to add metadata\n\t    if (!create) return false;\n\t    // add missing metadata\n\t    setMeta(it);\n\t    // return hash weak collections IDs\n\t  }return it[META].w;\n\t};\n\t// add metadata on freeze-family methods calling\n\tvar onFreeze = function onFreeze(it) {\n\t  if (FREEZE && meta.NEED && isExtensible(it) && !has(it, META)) setMeta(it);\n\t  return it;\n\t};\n\tvar meta = module.exports = {\n\t  KEY: META,\n\t  NEED: false,\n\t  fastKey: fastKey,\n\t  getWeak: getWeak,\n\t  onFreeze: onFreeze\n\t};\n\n/***/ }),\n/* 58 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(16);\n\tmodule.exports = function (it, TYPE) {\n\t  if (!isObject(it) || it._t !== TYPE) throw TypeError('Incompatible receiver, ' + TYPE + ' required!');\n\t  return it;\n\t};\n\n/***/ }),\n/* 59 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(440);\n\tvar global = __webpack_require__(15);\n\tvar hide = __webpack_require__(29);\n\tvar Iterators = __webpack_require__(56);\n\tvar TO_STRING_TAG = __webpack_require__(13)('toStringTag');\n\n\tvar DOMIterables = ('CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,' + 'DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,' + 'MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,' + 'SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,' + 'TextTrackList,TouchList').split(',');\n\n\tfor (var i = 0; i < DOMIterables.length; i++) {\n\t  var NAME = DOMIterables[i];\n\t  var Collection = global[NAME];\n\t  var proto = Collection && Collection.prototype;\n\t  if (proto && !proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);\n\t  Iterators[NAME] = Iterators.Array;\n\t}\n\n/***/ }),\n/* 60 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `_.map` for arrays without support for iteratee\n\t * shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array} Returns the new mapped array.\n\t */\n\tfunction arrayMap(array, iteratee) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length,\n\t      result = Array(length);\n\n\t  while (++index < length) {\n\t    result[index] = iteratee(array[index], index, array);\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = arrayMap;\n\n/***/ }),\n/* 61 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar baseMatches = __webpack_require__(502),\n\t    baseMatchesProperty = __webpack_require__(503),\n\t    identity = __webpack_require__(110),\n\t    isArray = __webpack_require__(6),\n\t    property = __webpack_require__(592);\n\n\t/**\n\t * The base implementation of `_.iteratee`.\n\t *\n\t * @private\n\t * @param {*} [value=_.identity] The value to convert to an iteratee.\n\t * @returns {Function} Returns the iteratee.\n\t */\n\tfunction baseIteratee(value) {\n\t  // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9.\n\t  // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details.\n\t  if (typeof value == 'function') {\n\t    return value;\n\t  }\n\t  if (value == null) {\n\t    return identity;\n\t  }\n\t  if ((typeof value === 'undefined' ? 'undefined' : _typeof(value)) == 'object') {\n\t    return isArray(value) ? baseMatchesProperty(value[0], value[1]) : baseMatches(value);\n\t  }\n\t  return property(value);\n\t}\n\n\tmodule.exports = baseIteratee;\n\n/***/ }),\n/* 62 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** `Object#toString` result references. */\n\tvar symbolTag = '[object Symbol]';\n\n\t/**\n\t * Checks if `value` is classified as a `Symbol` primitive or object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\n\t * @example\n\t *\n\t * _.isSymbol(Symbol.iterator);\n\t * // => true\n\t *\n\t * _.isSymbol('abc');\n\t * // => false\n\t */\n\tfunction isSymbol(value) {\n\t    return (typeof value === 'undefined' ? 'undefined' : _typeof(value)) == 'symbol' || isObjectLike(value) && baseGetTag(value) == symbolTag;\n\t}\n\n\tmodule.exports = isSymbol;\n\n/***/ }),\n/* 63 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\t/**\n\t * This is a helper function for getting values from parameter/options\n\t * objects.\n\t *\n\t * @param args The object we are extracting values from\n\t * @param name The name of the property we are getting.\n\t * @param defaultValue An optional value to return if the property is missing\n\t * from the object. If this is not specified and the property is missing, an\n\t * error will be thrown.\n\t */\n\tfunction getArg(aArgs, aName, aDefaultValue) {\n\t  if (aName in aArgs) {\n\t    return aArgs[aName];\n\t  } else if (arguments.length === 3) {\n\t    return aDefaultValue;\n\t  } else {\n\t    throw new Error('\"' + aName + '\" is a required argument.');\n\t  }\n\t}\n\texports.getArg = getArg;\n\n\tvar urlRegexp = /^(?:([\\w+\\-.]+):)?\\/\\/(?:(\\w+:\\w+)@)?([\\w.]*)(?::(\\d+))?(\\S*)$/;\n\tvar dataUrlRegexp = /^data:.+\\,.+$/;\n\n\tfunction urlParse(aUrl) {\n\t  var match = aUrl.match(urlRegexp);\n\t  if (!match) {\n\t    return null;\n\t  }\n\t  return {\n\t    scheme: match[1],\n\t    auth: match[2],\n\t    host: match[3],\n\t    port: match[4],\n\t    path: match[5]\n\t  };\n\t}\n\texports.urlParse = urlParse;\n\n\tfunction urlGenerate(aParsedUrl) {\n\t  var url = '';\n\t  if (aParsedUrl.scheme) {\n\t    url += aParsedUrl.scheme + ':';\n\t  }\n\t  url += '//';\n\t  if (aParsedUrl.auth) {\n\t    url += aParsedUrl.auth + '@';\n\t  }\n\t  if (aParsedUrl.host) {\n\t    url += aParsedUrl.host;\n\t  }\n\t  if (aParsedUrl.port) {\n\t    url += \":\" + aParsedUrl.port;\n\t  }\n\t  if (aParsedUrl.path) {\n\t    url += aParsedUrl.path;\n\t  }\n\t  return url;\n\t}\n\texports.urlGenerate = urlGenerate;\n\n\t/**\n\t * Normalizes a path, or the path portion of a URL:\n\t *\n\t * - Replaces consecutive slashes with one slash.\n\t * - Removes unnecessary '.' parts.\n\t * - Removes unnecessary '<dir>/..' parts.\n\t *\n\t * Based on code in the Node.js 'path' core module.\n\t *\n\t * @param aPath The path or url to normalize.\n\t */\n\tfunction normalize(aPath) {\n\t  var path = aPath;\n\t  var url = urlParse(aPath);\n\t  if (url) {\n\t    if (!url.path) {\n\t      return aPath;\n\t    }\n\t    path = url.path;\n\t  }\n\t  var isAbsolute = exports.isAbsolute(path);\n\n\t  var parts = path.split(/\\/+/);\n\t  for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {\n\t    part = parts[i];\n\t    if (part === '.') {\n\t      parts.splice(i, 1);\n\t    } else if (part === '..') {\n\t      up++;\n\t    } else if (up > 0) {\n\t      if (part === '') {\n\t        // The first part is blank if the path is absolute. Trying to go\n\t        // above the root is a no-op. Therefore we can remove all '..' parts\n\t        // directly after the root.\n\t        parts.splice(i + 1, up);\n\t        up = 0;\n\t      } else {\n\t        parts.splice(i, 2);\n\t        up--;\n\t      }\n\t    }\n\t  }\n\t  path = parts.join('/');\n\n\t  if (path === '') {\n\t    path = isAbsolute ? '/' : '.';\n\t  }\n\n\t  if (url) {\n\t    url.path = path;\n\t    return urlGenerate(url);\n\t  }\n\t  return path;\n\t}\n\texports.normalize = normalize;\n\n\t/**\n\t * Joins two paths/URLs.\n\t *\n\t * @param aRoot The root path or URL.\n\t * @param aPath The path or URL to be joined with the root.\n\t *\n\t * - If aPath is a URL or a data URI, aPath is returned, unless aPath is a\n\t *   scheme-relative URL: Then the scheme of aRoot, if any, is prepended\n\t *   first.\n\t * - Otherwise aPath is a path. If aRoot is a URL, then its path portion\n\t *   is updated with the result and aRoot is returned. Otherwise the result\n\t *   is returned.\n\t *   - If aPath is absolute, the result is aPath.\n\t *   - Otherwise the two paths are joined with a slash.\n\t * - Joining for example 'http://' and 'www.example.com' is also supported.\n\t */\n\tfunction join(aRoot, aPath) {\n\t  if (aRoot === \"\") {\n\t    aRoot = \".\";\n\t  }\n\t  if (aPath === \"\") {\n\t    aPath = \".\";\n\t  }\n\t  var aPathUrl = urlParse(aPath);\n\t  var aRootUrl = urlParse(aRoot);\n\t  if (aRootUrl) {\n\t    aRoot = aRootUrl.path || '/';\n\t  }\n\n\t  // `join(foo, '//www.example.org')`\n\t  if (aPathUrl && !aPathUrl.scheme) {\n\t    if (aRootUrl) {\n\t      aPathUrl.scheme = aRootUrl.scheme;\n\t    }\n\t    return urlGenerate(aPathUrl);\n\t  }\n\n\t  if (aPathUrl || aPath.match(dataUrlRegexp)) {\n\t    return aPath;\n\t  }\n\n\t  // `join('http://', 'www.example.com')`\n\t  if (aRootUrl && !aRootUrl.host && !aRootUrl.path) {\n\t    aRootUrl.host = aPath;\n\t    return urlGenerate(aRootUrl);\n\t  }\n\n\t  var joined = aPath.charAt(0) === '/' ? aPath : normalize(aRoot.replace(/\\/+$/, '') + '/' + aPath);\n\n\t  if (aRootUrl) {\n\t    aRootUrl.path = joined;\n\t    return urlGenerate(aRootUrl);\n\t  }\n\t  return joined;\n\t}\n\texports.join = join;\n\n\texports.isAbsolute = function (aPath) {\n\t  return aPath.charAt(0) === '/' || !!aPath.match(urlRegexp);\n\t};\n\n\t/**\n\t * Make a path relative to a URL or another path.\n\t *\n\t * @param aRoot The root path or URL.\n\t * @param aPath The path or URL to be made relative to aRoot.\n\t */\n\tfunction relative(aRoot, aPath) {\n\t  if (aRoot === \"\") {\n\t    aRoot = \".\";\n\t  }\n\n\t  aRoot = aRoot.replace(/\\/$/, '');\n\n\t  // It is possible for the path to be above the root. In this case, simply\n\t  // checking whether the root is a prefix of the path won't work. Instead, we\n\t  // need to remove components from the root one by one, until either we find\n\t  // a prefix that fits, or we run out of components to remove.\n\t  var level = 0;\n\t  while (aPath.indexOf(aRoot + '/') !== 0) {\n\t    var index = aRoot.lastIndexOf(\"/\");\n\t    if (index < 0) {\n\t      return aPath;\n\t    }\n\n\t    // If the only part of the root that is left is the scheme (i.e. http://,\n\t    // file:///, etc.), one or more slashes (/), or simply nothing at all, we\n\t    // have exhausted all components, so the path is not relative to the root.\n\t    aRoot = aRoot.slice(0, index);\n\t    if (aRoot.match(/^([^\\/]+:\\/)?\\/*$/)) {\n\t      return aPath;\n\t    }\n\n\t    ++level;\n\t  }\n\n\t  // Make sure we add a \"../\" for each component we removed from the root.\n\t  return Array(level + 1).join(\"../\") + aPath.substr(aRoot.length + 1);\n\t}\n\texports.relative = relative;\n\n\tvar supportsNullProto = function () {\n\t  var obj = Object.create(null);\n\t  return !('__proto__' in obj);\n\t}();\n\n\tfunction identity(s) {\n\t  return s;\n\t}\n\n\t/**\n\t * Because behavior goes wacky when you set `__proto__` on objects, we\n\t * have to prefix all the strings in our set with an arbitrary character.\n\t *\n\t * See https://github.com/mozilla/source-map/pull/31 and\n\t * https://github.com/mozilla/source-map/issues/30\n\t *\n\t * @param String aStr\n\t */\n\tfunction toSetString(aStr) {\n\t  if (isProtoString(aStr)) {\n\t    return '$' + aStr;\n\t  }\n\n\t  return aStr;\n\t}\n\texports.toSetString = supportsNullProto ? identity : toSetString;\n\n\tfunction fromSetString(aStr) {\n\t  if (isProtoString(aStr)) {\n\t    return aStr.slice(1);\n\t  }\n\n\t  return aStr;\n\t}\n\texports.fromSetString = supportsNullProto ? identity : fromSetString;\n\n\tfunction isProtoString(s) {\n\t  if (!s) {\n\t    return false;\n\t  }\n\n\t  var length = s.length;\n\n\t  if (length < 9 /* \"__proto__\".length */) {\n\t      return false;\n\t    }\n\n\t  if (s.charCodeAt(length - 1) !== 95 /* '_' */ || s.charCodeAt(length - 2) !== 95 /* '_' */ || s.charCodeAt(length - 3) !== 111 /* 'o' */ || s.charCodeAt(length - 4) !== 116 /* 't' */ || s.charCodeAt(length - 5) !== 111 /* 'o' */ || s.charCodeAt(length - 6) !== 114 /* 'r' */ || s.charCodeAt(length - 7) !== 112 /* 'p' */ || s.charCodeAt(length - 8) !== 95 /* '_' */ || s.charCodeAt(length - 9) !== 95 /* '_' */) {\n\t      return false;\n\t    }\n\n\t  for (var i = length - 10; i >= 0; i--) {\n\t    if (s.charCodeAt(i) !== 36 /* '$' */) {\n\t        return false;\n\t      }\n\t  }\n\n\t  return true;\n\t}\n\n\t/**\n\t * Comparator between two mappings where the original positions are compared.\n\t *\n\t * Optionally pass in `true` as `onlyCompareGenerated` to consider two\n\t * mappings with the same original source/line/column, but different generated\n\t * line and column the same. Useful when searching for a mapping with a\n\t * stubbed out mapping.\n\t */\n\tfunction compareByOriginalPositions(mappingA, mappingB, onlyCompareOriginal) {\n\t  var cmp = mappingA.source - mappingB.source;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.originalLine - mappingB.originalLine;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.originalColumn - mappingB.originalColumn;\n\t  if (cmp !== 0 || onlyCompareOriginal) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.generatedColumn - mappingB.generatedColumn;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.generatedLine - mappingB.generatedLine;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  return mappingA.name - mappingB.name;\n\t}\n\texports.compareByOriginalPositions = compareByOriginalPositions;\n\n\t/**\n\t * Comparator between two mappings with deflated source and name indices where\n\t * the generated positions are compared.\n\t *\n\t * Optionally pass in `true` as `onlyCompareGenerated` to consider two\n\t * mappings with the same generated line and column, but different\n\t * source/name/original line and column the same. Useful when searching for a\n\t * mapping with a stubbed out mapping.\n\t */\n\tfunction compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCompareGenerated) {\n\t  var cmp = mappingA.generatedLine - mappingB.generatedLine;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.generatedColumn - mappingB.generatedColumn;\n\t  if (cmp !== 0 || onlyCompareGenerated) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.source - mappingB.source;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.originalLine - mappingB.originalLine;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.originalColumn - mappingB.originalColumn;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  return mappingA.name - mappingB.name;\n\t}\n\texports.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;\n\n\tfunction strcmp(aStr1, aStr2) {\n\t  if (aStr1 === aStr2) {\n\t    return 0;\n\t  }\n\n\t  if (aStr1 > aStr2) {\n\t    return 1;\n\t  }\n\n\t  return -1;\n\t}\n\n\t/**\n\t * Comparator between two mappings with inflated source and name strings where\n\t * the generated positions are compared.\n\t */\n\tfunction compareByGeneratedPositionsInflated(mappingA, mappingB) {\n\t  var cmp = mappingA.generatedLine - mappingB.generatedLine;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.generatedColumn - mappingB.generatedColumn;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = strcmp(mappingA.source, mappingB.source);\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.originalLine - mappingB.originalLine;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.originalColumn - mappingB.originalColumn;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  return strcmp(mappingA.name, mappingB.name);\n\t}\n\texports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;\n\n/***/ }),\n/* 64 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(global) {'use strict';\n\n\t// compare and isBuffer taken from https://github.com/feross/buffer/blob/680e9e5e488f22aac27599a57dc844a6315928dd/index.js\n\t// original notice:\n\n\t/*!\n\t * The buffer module from node.js, for the browser.\n\t *\n\t * @author   Feross Aboukhadijeh <feross@feross.org> <http://feross.org>\n\t * @license  MIT\n\t */\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tfunction compare(a, b) {\n\t  if (a === b) {\n\t    return 0;\n\t  }\n\n\t  var x = a.length;\n\t  var y = b.length;\n\n\t  for (var i = 0, len = Math.min(x, y); i < len; ++i) {\n\t    if (a[i] !== b[i]) {\n\t      x = a[i];\n\t      y = b[i];\n\t      break;\n\t    }\n\t  }\n\n\t  if (x < y) {\n\t    return -1;\n\t  }\n\t  if (y < x) {\n\t    return 1;\n\t  }\n\t  return 0;\n\t}\n\tfunction isBuffer(b) {\n\t  if (global.Buffer && typeof global.Buffer.isBuffer === 'function') {\n\t    return global.Buffer.isBuffer(b);\n\t  }\n\t  return !!(b != null && b._isBuffer);\n\t}\n\n\t// based on node assert, original notice:\n\n\t// http://wiki.commonjs.org/wiki/Unit_Testing/1.0\n\t//\n\t// THIS IS NOT TESTED NOR LIKELY TO WORK OUTSIDE V8!\n\t//\n\t// Originally from narwhal.js (http://narwhaljs.org)\n\t// Copyright (c) 2009 Thomas Robinson <280north.com>\n\t//\n\t// Permission is hereby granted, free of charge, to any person obtaining a copy\n\t// of this software and associated documentation files (the 'Software'), to\n\t// deal in the Software without restriction, including without limitation the\n\t// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n\t// sell copies of the Software, and to permit persons to whom the Software is\n\t// furnished to do so, subject to the following conditions:\n\t//\n\t// The above copyright notice and this permission notice shall be included in\n\t// all copies or substantial portions of the Software.\n\t//\n\t// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n\t// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n\t// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n\t// AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n\t// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n\t// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\tvar util = __webpack_require__(117);\n\tvar hasOwn = Object.prototype.hasOwnProperty;\n\tvar pSlice = Array.prototype.slice;\n\tvar functionsHaveNames = function () {\n\t  return function foo() {}.name === 'foo';\n\t}();\n\tfunction pToString(obj) {\n\t  return Object.prototype.toString.call(obj);\n\t}\n\tfunction isView(arrbuf) {\n\t  if (isBuffer(arrbuf)) {\n\t    return false;\n\t  }\n\t  if (typeof global.ArrayBuffer !== 'function') {\n\t    return false;\n\t  }\n\t  if (typeof ArrayBuffer.isView === 'function') {\n\t    return ArrayBuffer.isView(arrbuf);\n\t  }\n\t  if (!arrbuf) {\n\t    return false;\n\t  }\n\t  if (arrbuf instanceof DataView) {\n\t    return true;\n\t  }\n\t  if (arrbuf.buffer && arrbuf.buffer instanceof ArrayBuffer) {\n\t    return true;\n\t  }\n\t  return false;\n\t}\n\t// 1. The assert module provides functions that throw\n\t// AssertionError's when particular conditions are not met. The\n\t// assert module must conform to the following interface.\n\n\tvar assert = module.exports = ok;\n\n\t// 2. The AssertionError is defined in assert.\n\t// new assert.AssertionError({ message: message,\n\t//                             actual: actual,\n\t//                             expected: expected })\n\n\tvar regex = /\\s*function\\s+([^\\(\\s]*)\\s*/;\n\t// based on https://github.com/ljharb/function.prototype.name/blob/adeeeec8bfcc6068b187d7d9fb3d5bb1d3a30899/implementation.js\n\tfunction getName(func) {\n\t  if (!util.isFunction(func)) {\n\t    return;\n\t  }\n\t  if (functionsHaveNames) {\n\t    return func.name;\n\t  }\n\t  var str = func.toString();\n\t  var match = str.match(regex);\n\t  return match && match[1];\n\t}\n\tassert.AssertionError = function AssertionError(options) {\n\t  this.name = 'AssertionError';\n\t  this.actual = options.actual;\n\t  this.expected = options.expected;\n\t  this.operator = options.operator;\n\t  if (options.message) {\n\t    this.message = options.message;\n\t    this.generatedMessage = false;\n\t  } else {\n\t    this.message = getMessage(this);\n\t    this.generatedMessage = true;\n\t  }\n\t  var stackStartFunction = options.stackStartFunction || fail;\n\t  if (Error.captureStackTrace) {\n\t    Error.captureStackTrace(this, stackStartFunction);\n\t  } else {\n\t    // non v8 browsers so we can have a stacktrace\n\t    var err = new Error();\n\t    if (err.stack) {\n\t      var out = err.stack;\n\n\t      // try to strip useless frames\n\t      var fn_name = getName(stackStartFunction);\n\t      var idx = out.indexOf('\\n' + fn_name);\n\t      if (idx >= 0) {\n\t        // once we have located the function frame\n\t        // we need to strip out everything before it (and its line)\n\t        var next_line = out.indexOf('\\n', idx + 1);\n\t        out = out.substring(next_line + 1);\n\t      }\n\n\t      this.stack = out;\n\t    }\n\t  }\n\t};\n\n\t// assert.AssertionError instanceof Error\n\tutil.inherits(assert.AssertionError, Error);\n\n\tfunction truncate(s, n) {\n\t  if (typeof s === 'string') {\n\t    return s.length < n ? s : s.slice(0, n);\n\t  } else {\n\t    return s;\n\t  }\n\t}\n\tfunction inspect(something) {\n\t  if (functionsHaveNames || !util.isFunction(something)) {\n\t    return util.inspect(something);\n\t  }\n\t  var rawname = getName(something);\n\t  var name = rawname ? ': ' + rawname : '';\n\t  return '[Function' + name + ']';\n\t}\n\tfunction getMessage(self) {\n\t  return truncate(inspect(self.actual), 128) + ' ' + self.operator + ' ' + truncate(inspect(self.expected), 128);\n\t}\n\n\t// At present only the three keys mentioned above are used and\n\t// understood by the spec. Implementations or sub modules can pass\n\t// other keys to the AssertionError's constructor - they will be\n\t// ignored.\n\n\t// 3. All of the following functions must throw an AssertionError\n\t// when a corresponding condition is not met, with a message that\n\t// may be undefined if not provided.  All assertion methods provide\n\t// both the actual and expected values to the assertion error for\n\t// display purposes.\n\n\tfunction fail(actual, expected, message, operator, stackStartFunction) {\n\t  throw new assert.AssertionError({\n\t    message: message,\n\t    actual: actual,\n\t    expected: expected,\n\t    operator: operator,\n\t    stackStartFunction: stackStartFunction\n\t  });\n\t}\n\n\t// EXTENSION! allows for well behaved errors defined elsewhere.\n\tassert.fail = fail;\n\n\t// 4. Pure assertion tests whether a value is truthy, as determined\n\t// by !!guard.\n\t// assert.ok(guard, message_opt);\n\t// This statement is equivalent to assert.equal(true, !!guard,\n\t// message_opt);. To test strictly for the value true, use\n\t// assert.strictEqual(true, guard, message_opt);.\n\n\tfunction ok(value, message) {\n\t  if (!value) fail(value, true, message, '==', assert.ok);\n\t}\n\tassert.ok = ok;\n\n\t// 5. The equality assertion tests shallow, coercive equality with\n\t// ==.\n\t// assert.equal(actual, expected, message_opt);\n\n\tassert.equal = function equal(actual, expected, message) {\n\t  if (actual != expected) fail(actual, expected, message, '==', assert.equal);\n\t};\n\n\t// 6. The non-equality assertion tests for whether two objects are not equal\n\t// with != assert.notEqual(actual, expected, message_opt);\n\n\tassert.notEqual = function notEqual(actual, expected, message) {\n\t  if (actual == expected) {\n\t    fail(actual, expected, message, '!=', assert.notEqual);\n\t  }\n\t};\n\n\t// 7. The equivalence assertion tests a deep equality relation.\n\t// assert.deepEqual(actual, expected, message_opt);\n\n\tassert.deepEqual = function deepEqual(actual, expected, message) {\n\t  if (!_deepEqual(actual, expected, false)) {\n\t    fail(actual, expected, message, 'deepEqual', assert.deepEqual);\n\t  }\n\t};\n\n\tassert.deepStrictEqual = function deepStrictEqual(actual, expected, message) {\n\t  if (!_deepEqual(actual, expected, true)) {\n\t    fail(actual, expected, message, 'deepStrictEqual', assert.deepStrictEqual);\n\t  }\n\t};\n\n\tfunction _deepEqual(actual, expected, strict, memos) {\n\t  // 7.1. All identical values are equivalent, as determined by ===.\n\t  if (actual === expected) {\n\t    return true;\n\t  } else if (isBuffer(actual) && isBuffer(expected)) {\n\t    return compare(actual, expected) === 0;\n\n\t    // 7.2. If the expected value is a Date object, the actual value is\n\t    // equivalent if it is also a Date object that refers to the same time.\n\t  } else if (util.isDate(actual) && util.isDate(expected)) {\n\t    return actual.getTime() === expected.getTime();\n\n\t    // 7.3 If the expected value is a RegExp object, the actual value is\n\t    // equivalent if it is also a RegExp object with the same source and\n\t    // properties (`global`, `multiline`, `lastIndex`, `ignoreCase`).\n\t  } else if (util.isRegExp(actual) && util.isRegExp(expected)) {\n\t    return actual.source === expected.source && actual.global === expected.global && actual.multiline === expected.multiline && actual.lastIndex === expected.lastIndex && actual.ignoreCase === expected.ignoreCase;\n\n\t    // 7.4. Other pairs that do not both pass typeof value == 'object',\n\t    // equivalence is determined by ==.\n\t  } else if ((actual === null || (typeof actual === 'undefined' ? 'undefined' : _typeof(actual)) !== 'object') && (expected === null || (typeof expected === 'undefined' ? 'undefined' : _typeof(expected)) !== 'object')) {\n\t    return strict ? actual === expected : actual == expected;\n\n\t    // If both values are instances of typed arrays, wrap their underlying\n\t    // ArrayBuffers in a Buffer each to increase performance\n\t    // This optimization requires the arrays to have the same type as checked by\n\t    // Object.prototype.toString (aka pToString). Never perform binary\n\t    // comparisons for Float*Arrays, though, since e.g. +0 === -0 but their\n\t    // bit patterns are not identical.\n\t  } else if (isView(actual) && isView(expected) && pToString(actual) === pToString(expected) && !(actual instanceof Float32Array || actual instanceof Float64Array)) {\n\t    return compare(new Uint8Array(actual.buffer), new Uint8Array(expected.buffer)) === 0;\n\n\t    // 7.5 For all other Object pairs, including Array objects, equivalence is\n\t    // determined by having the same number of owned properties (as verified\n\t    // with Object.prototype.hasOwnProperty.call), the same set of keys\n\t    // (although not necessarily the same order), equivalent values for every\n\t    // corresponding key, and an identical 'prototype' property. Note: this\n\t    // accounts for both named and indexed properties on Arrays.\n\t  } else if (isBuffer(actual) !== isBuffer(expected)) {\n\t    return false;\n\t  } else {\n\t    memos = memos || { actual: [], expected: [] };\n\n\t    var actualIndex = memos.actual.indexOf(actual);\n\t    if (actualIndex !== -1) {\n\t      if (actualIndex === memos.expected.indexOf(expected)) {\n\t        return true;\n\t      }\n\t    }\n\n\t    memos.actual.push(actual);\n\t    memos.expected.push(expected);\n\n\t    return objEquiv(actual, expected, strict, memos);\n\t  }\n\t}\n\n\tfunction isArguments(object) {\n\t  return Object.prototype.toString.call(object) == '[object Arguments]';\n\t}\n\n\tfunction objEquiv(a, b, strict, actualVisitedObjects) {\n\t  if (a === null || a === undefined || b === null || b === undefined) return false;\n\t  // if one is a primitive, the other must be same\n\t  if (util.isPrimitive(a) || util.isPrimitive(b)) return a === b;\n\t  if (strict && Object.getPrototypeOf(a) !== Object.getPrototypeOf(b)) return false;\n\t  var aIsArgs = isArguments(a);\n\t  var bIsArgs = isArguments(b);\n\t  if (aIsArgs && !bIsArgs || !aIsArgs && bIsArgs) return false;\n\t  if (aIsArgs) {\n\t    a = pSlice.call(a);\n\t    b = pSlice.call(b);\n\t    return _deepEqual(a, b, strict);\n\t  }\n\t  var ka = objectKeys(a);\n\t  var kb = objectKeys(b);\n\t  var key, i;\n\t  // having the same number of owned properties (keys incorporates\n\t  // hasOwnProperty)\n\t  if (ka.length !== kb.length) return false;\n\t  //the same set of keys (although not necessarily the same order),\n\t  ka.sort();\n\t  kb.sort();\n\t  //~~~cheap key test\n\t  for (i = ka.length - 1; i >= 0; i--) {\n\t    if (ka[i] !== kb[i]) return false;\n\t  }\n\t  //equivalent values for every corresponding key, and\n\t  //~~~possibly expensive deep test\n\t  for (i = ka.length - 1; i >= 0; i--) {\n\t    key = ka[i];\n\t    if (!_deepEqual(a[key], b[key], strict, actualVisitedObjects)) return false;\n\t  }\n\t  return true;\n\t}\n\n\t// 8. The non-equivalence assertion tests for any deep inequality.\n\t// assert.notDeepEqual(actual, expected, message_opt);\n\n\tassert.notDeepEqual = function notDeepEqual(actual, expected, message) {\n\t  if (_deepEqual(actual, expected, false)) {\n\t    fail(actual, expected, message, 'notDeepEqual', assert.notDeepEqual);\n\t  }\n\t};\n\n\tassert.notDeepStrictEqual = notDeepStrictEqual;\n\tfunction notDeepStrictEqual(actual, expected, message) {\n\t  if (_deepEqual(actual, expected, true)) {\n\t    fail(actual, expected, message, 'notDeepStrictEqual', notDeepStrictEqual);\n\t  }\n\t}\n\n\t// 9. The strict equality assertion tests strict equality, as determined by ===.\n\t// assert.strictEqual(actual, expected, message_opt);\n\n\tassert.strictEqual = function strictEqual(actual, expected, message) {\n\t  if (actual !== expected) {\n\t    fail(actual, expected, message, '===', assert.strictEqual);\n\t  }\n\t};\n\n\t// 10. The strict non-equality assertion tests for strict inequality, as\n\t// determined by !==.  assert.notStrictEqual(actual, expected, message_opt);\n\n\tassert.notStrictEqual = function notStrictEqual(actual, expected, message) {\n\t  if (actual === expected) {\n\t    fail(actual, expected, message, '!==', assert.notStrictEqual);\n\t  }\n\t};\n\n\tfunction expectedException(actual, expected) {\n\t  if (!actual || !expected) {\n\t    return false;\n\t  }\n\n\t  if (Object.prototype.toString.call(expected) == '[object RegExp]') {\n\t    return expected.test(actual);\n\t  }\n\n\t  try {\n\t    if (actual instanceof expected) {\n\t      return true;\n\t    }\n\t  } catch (e) {\n\t    // Ignore.  The instanceof check doesn't work for arrow functions.\n\t  }\n\n\t  if (Error.isPrototypeOf(expected)) {\n\t    return false;\n\t  }\n\n\t  return expected.call({}, actual) === true;\n\t}\n\n\tfunction _tryBlock(block) {\n\t  var error;\n\t  try {\n\t    block();\n\t  } catch (e) {\n\t    error = e;\n\t  }\n\t  return error;\n\t}\n\n\tfunction _throws(shouldThrow, block, expected, message) {\n\t  var actual;\n\n\t  if (typeof block !== 'function') {\n\t    throw new TypeError('\"block\" argument must be a function');\n\t  }\n\n\t  if (typeof expected === 'string') {\n\t    message = expected;\n\t    expected = null;\n\t  }\n\n\t  actual = _tryBlock(block);\n\n\t  message = (expected && expected.name ? ' (' + expected.name + ').' : '.') + (message ? ' ' + message : '.');\n\n\t  if (shouldThrow && !actual) {\n\t    fail(actual, expected, 'Missing expected exception' + message);\n\t  }\n\n\t  var userProvidedMessage = typeof message === 'string';\n\t  var isUnwantedException = !shouldThrow && util.isError(actual);\n\t  var isUnexpectedException = !shouldThrow && actual && !expected;\n\n\t  if (isUnwantedException && userProvidedMessage && expectedException(actual, expected) || isUnexpectedException) {\n\t    fail(actual, expected, 'Got unwanted exception' + message);\n\t  }\n\n\t  if (shouldThrow && actual && expected && !expectedException(actual, expected) || !shouldThrow && actual) {\n\t    throw actual;\n\t  }\n\t}\n\n\t// 11. Expected to throw an error:\n\t// assert.throws(block, Error_opt, message_opt);\n\n\tassert.throws = function (block, /*optional*/error, /*optional*/message) {\n\t  _throws(true, block, error, message);\n\t};\n\n\t// EXTENSION! This is annoying to write outside this module.\n\tassert.doesNotThrow = function (block, /*optional*/error, /*optional*/message) {\n\t  _throws(false, block, error, message);\n\t};\n\n\tassert.ifError = function (err) {\n\t  if (err) throw err;\n\t};\n\n\tvar objectKeys = Object.keys || function (obj) {\n\t  var keys = [];\n\t  for (var key in obj) {\n\t    if (hasOwn.call(obj, key)) keys.push(key);\n\t  }\n\t  return keys;\n\t};\n\t/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))\n\n/***/ }),\n/* 65 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _possibleConstructorReturn2 = __webpack_require__(42);\n\n\tvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\n\tvar _inherits2 = __webpack_require__(41);\n\n\tvar _inherits3 = _interopRequireDefault(_inherits2);\n\n\tvar _optionManager = __webpack_require__(34);\n\n\tvar _optionManager2 = _interopRequireDefault(_optionManager);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _store = __webpack_require__(119);\n\n\tvar _store2 = _interopRequireDefault(_store);\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelTraverse2 = _interopRequireDefault(_babelTraverse);\n\n\tvar _assign = __webpack_require__(174);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _clone = __webpack_require__(109);\n\n\tvar _clone2 = _interopRequireDefault(_clone);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar GLOBAL_VISITOR_PROPS = [\"enter\", \"exit\"];\n\n\tvar Plugin = function (_Store) {\n\t  (0, _inherits3.default)(Plugin, _Store);\n\n\t  function Plugin(plugin, key) {\n\t    (0, _classCallCheck3.default)(this, Plugin);\n\n\t    var _this = (0, _possibleConstructorReturn3.default)(this, _Store.call(this));\n\n\t    _this.initialized = false;\n\t    _this.raw = (0, _assign2.default)({}, plugin);\n\t    _this.key = _this.take(\"name\") || key;\n\n\t    _this.manipulateOptions = _this.take(\"manipulateOptions\");\n\t    _this.post = _this.take(\"post\");\n\t    _this.pre = _this.take(\"pre\");\n\t    _this.visitor = _this.normaliseVisitor((0, _clone2.default)(_this.take(\"visitor\")) || {});\n\t    return _this;\n\t  }\n\n\t  Plugin.prototype.take = function take(key) {\n\t    var val = this.raw[key];\n\t    delete this.raw[key];\n\t    return val;\n\t  };\n\n\t  Plugin.prototype.chain = function chain(target, key) {\n\t    if (!target[key]) return this[key];\n\t    if (!this[key]) return target[key];\n\n\t    var fns = [target[key], this[key]];\n\n\t    return function () {\n\t      var val = void 0;\n\n\t      for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t        args[_key] = arguments[_key];\n\t      }\n\n\t      for (var _iterator = fns, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref = _i.value;\n\t        }\n\n\t        var fn = _ref;\n\n\t        if (fn) {\n\t          var ret = fn.apply(this, args);\n\t          if (ret != null) val = ret;\n\t        }\n\t      }\n\t      return val;\n\t    };\n\t  };\n\n\t  Plugin.prototype.maybeInherit = function maybeInherit(loc) {\n\t    var inherits = this.take(\"inherits\");\n\t    if (!inherits) return;\n\n\t    inherits = _optionManager2.default.normalisePlugin(inherits, loc, \"inherits\");\n\n\t    this.manipulateOptions = this.chain(inherits, \"manipulateOptions\");\n\t    this.post = this.chain(inherits, \"post\");\n\t    this.pre = this.chain(inherits, \"pre\");\n\t    this.visitor = _babelTraverse2.default.visitors.merge([inherits.visitor, this.visitor]);\n\t  };\n\n\t  Plugin.prototype.init = function init(loc, i) {\n\t    if (this.initialized) return;\n\t    this.initialized = true;\n\n\t    this.maybeInherit(loc);\n\n\t    for (var key in this.raw) {\n\t      throw new Error(messages.get(\"pluginInvalidProperty\", loc, i, key));\n\t    }\n\t  };\n\n\t  Plugin.prototype.normaliseVisitor = function normaliseVisitor(visitor) {\n\t    for (var _iterator2 = GLOBAL_VISITOR_PROPS, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var key = _ref2;\n\n\t      if (visitor[key]) {\n\t        throw new Error(\"Plugins aren't allowed to specify catch-all enter/exit handlers. \" + \"Please target individual nodes.\");\n\t      }\n\t    }\n\n\t    _babelTraverse2.default.explode(visitor);\n\t    return visitor;\n\t  };\n\n\t  return Plugin;\n\t}(_store2.default);\n\n\texports.default = Plugin;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 66 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var messages = _ref.messages;\n\n\t  return {\n\t    visitor: {\n\t      Scope: function Scope(_ref2) {\n\t        var scope = _ref2.scope;\n\n\t        for (var name in scope.bindings) {\n\t          var binding = scope.bindings[name];\n\t          if (binding.kind !== \"const\" && binding.kind !== \"module\") continue;\n\n\t          for (var _iterator = binding.constantViolations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t            var _ref3;\n\n\t            if (_isArray) {\n\t              if (_i >= _iterator.length) break;\n\t              _ref3 = _iterator[_i++];\n\t            } else {\n\t              _i = _iterator.next();\n\t              if (_i.done) break;\n\t              _ref3 = _i.value;\n\t            }\n\n\t            var violation = _ref3;\n\n\t            throw violation.buildCodeFrameError(messages.get(\"readOnly\", name));\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 67 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"asyncFunctions\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 68 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    visitor: {\n\t      ArrowFunctionExpression: function ArrowFunctionExpression(path, state) {\n\t        if (state.opts.spec) {\n\t          var node = path.node;\n\n\t          if (node.shadow) return;\n\n\t          node.shadow = { this: false };\n\t          node.type = \"FunctionExpression\";\n\n\t          var boundThis = t.thisExpression();\n\t          boundThis._forceShadow = path;\n\n\t          path.ensureBlock();\n\t          path.get(\"body\").unshiftContainer(\"body\", t.expressionStatement(t.callExpression(state.addHelper(\"newArrowCheck\"), [t.thisExpression(), boundThis])));\n\n\t          path.replaceWith(t.callExpression(t.memberExpression(node, t.identifier(\"bind\")), [t.thisExpression()]));\n\t        } else {\n\t          path.arrowFunctionToShadowed();\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 69 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function statementList(key, path) {\n\t    var paths = path.get(key);\n\n\t    for (var _iterator = paths, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref2;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref2 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref2 = _i.value;\n\t      }\n\n\t      var _path = _ref2;\n\n\t      var func = _path.node;\n\t      if (!_path.isFunctionDeclaration()) continue;\n\n\t      var declar = t.variableDeclaration(\"let\", [t.variableDeclarator(func.id, t.toExpression(func))]);\n\n\t      declar._blockHoist = 2;\n\n\t      func.id = null;\n\n\t      _path.replaceWith(declar);\n\t    }\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      BlockStatement: function BlockStatement(path) {\n\t        var node = path.node,\n\t            parent = path.parent;\n\n\t        if (t.isFunction(parent, { body: node }) || t.isExportDeclaration(parent)) {\n\t          return;\n\t        }\n\n\t        statementList(\"body\", path);\n\t      },\n\t      SwitchCase: function SwitchCase(path) {\n\t        statementList(\"consequent\", path);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 70 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      VariableDeclaration: function VariableDeclaration(path, file) {\n\t        var node = path.node,\n\t            parent = path.parent,\n\t            scope = path.scope;\n\n\t        if (!isBlockScoped(node)) return;\n\t        convertBlockScopedToVar(path, null, parent, scope, true);\n\n\t        if (node._tdzThis) {\n\t          var nodes = [node];\n\n\t          for (var i = 0; i < node.declarations.length; i++) {\n\t            var decl = node.declarations[i];\n\t            if (decl.init) {\n\t              var assign = t.assignmentExpression(\"=\", decl.id, decl.init);\n\t              assign._ignoreBlockScopingTDZ = true;\n\t              nodes.push(t.expressionStatement(assign));\n\t            }\n\t            decl.init = file.addHelper(\"temporalUndefined\");\n\t          }\n\n\t          node._blockHoist = 2;\n\n\t          if (path.isCompletionRecord()) {\n\t            nodes.push(t.expressionStatement(scope.buildUndefinedNode()));\n\t          }\n\n\t          path.replaceWithMultiple(nodes);\n\t        }\n\t      },\n\t      Loop: function Loop(path, file) {\n\t        var node = path.node,\n\t            parent = path.parent,\n\t            scope = path.scope;\n\n\t        t.ensureBlock(node);\n\t        var blockScoping = new BlockScoping(path, path.get(\"body\"), parent, scope, file);\n\t        var replace = blockScoping.run();\n\t        if (replace) path.replaceWith(replace);\n\t      },\n\t      CatchClause: function CatchClause(path, file) {\n\t        var parent = path.parent,\n\t            scope = path.scope;\n\n\t        var blockScoping = new BlockScoping(null, path.get(\"body\"), parent, scope, file);\n\t        blockScoping.run();\n\t      },\n\t      \"BlockStatement|SwitchStatement|Program\": function BlockStatementSwitchStatementProgram(path, file) {\n\t        if (!ignoreBlock(path)) {\n\t          var blockScoping = new BlockScoping(null, path, path.parent, path.scope, file);\n\t          blockScoping.run();\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelTraverse2 = _interopRequireDefault(_babelTraverse);\n\n\tvar _tdz = __webpack_require__(330);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _values = __webpack_require__(280);\n\n\tvar _values2 = _interopRequireDefault(_values);\n\n\tvar _extend = __webpack_require__(578);\n\n\tvar _extend2 = _interopRequireDefault(_extend);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction ignoreBlock(path) {\n\t  return t.isLoop(path.parent) || t.isCatchClause(path.parent);\n\t}\n\n\tvar buildRetCheck = (0, _babelTemplate2.default)(\"\\n  if (typeof RETURN === \\\"object\\\") return RETURN.v;\\n\");\n\n\tfunction isBlockScoped(node) {\n\t  if (!t.isVariableDeclaration(node)) return false;\n\t  if (node[t.BLOCK_SCOPED_SYMBOL]) return true;\n\t  if (node.kind !== \"let\" && node.kind !== \"const\") return false;\n\t  return true;\n\t}\n\n\tfunction convertBlockScopedToVar(path, node, parent, scope) {\n\t  var moveBindingsToParent = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;\n\n\t  if (!node) {\n\t    node = path.node;\n\t  }\n\n\t  if (!t.isFor(parent)) {\n\t    for (var i = 0; i < node.declarations.length; i++) {\n\t      var declar = node.declarations[i];\n\t      declar.init = declar.init || scope.buildUndefinedNode();\n\t    }\n\t  }\n\n\t  node[t.BLOCK_SCOPED_SYMBOL] = true;\n\t  node.kind = \"var\";\n\n\t  if (moveBindingsToParent) {\n\t    var parentScope = scope.getFunctionParent();\n\t    var ids = path.getBindingIdentifiers();\n\t    for (var name in ids) {\n\t      var binding = scope.getOwnBinding(name);\n\t      if (binding) binding.kind = \"var\";\n\t      scope.moveBindingTo(name, parentScope);\n\t    }\n\t  }\n\t}\n\n\tfunction isVar(node) {\n\t  return t.isVariableDeclaration(node, { kind: \"var\" }) && !isBlockScoped(node);\n\t}\n\n\tvar letReferenceBlockVisitor = _babelTraverse2.default.visitors.merge([{\n\t  Loop: {\n\t    enter: function enter(path, state) {\n\t      state.loopDepth++;\n\t    },\n\t    exit: function exit(path, state) {\n\t      state.loopDepth--;\n\t    }\n\t  },\n\t  Function: function Function(path, state) {\n\t    if (state.loopDepth > 0) {\n\t      path.traverse(letReferenceFunctionVisitor, state);\n\t    }\n\t    return path.skip();\n\t  }\n\t}, _tdz.visitor]);\n\n\tvar letReferenceFunctionVisitor = _babelTraverse2.default.visitors.merge([{\n\t  ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t    var ref = state.letReferences[path.node.name];\n\n\t    if (!ref) return;\n\n\t    var localBinding = path.scope.getBindingIdentifier(path.node.name);\n\t    if (localBinding && localBinding !== ref) return;\n\n\t    state.closurify = true;\n\t  }\n\t}, _tdz.visitor]);\n\n\tvar hoistVarDeclarationsVisitor = {\n\t  enter: function enter(path, self) {\n\t    var node = path.node,\n\t        parent = path.parent;\n\n\t    if (path.isForStatement()) {\n\t      if (isVar(node.init, node)) {\n\t        var nodes = self.pushDeclar(node.init);\n\t        if (nodes.length === 1) {\n\t          node.init = nodes[0];\n\t        } else {\n\t          node.init = t.sequenceExpression(nodes);\n\t        }\n\t      }\n\t    } else if (path.isFor()) {\n\t      if (isVar(node.left, node)) {\n\t        self.pushDeclar(node.left);\n\t        node.left = node.left.declarations[0].id;\n\t      }\n\t    } else if (isVar(node, parent)) {\n\t      path.replaceWithMultiple(self.pushDeclar(node).map(function (expr) {\n\t        return t.expressionStatement(expr);\n\t      }));\n\t    } else if (path.isFunction()) {\n\t      return path.skip();\n\t    }\n\t  }\n\t};\n\n\tvar loopLabelVisitor = {\n\t  LabeledStatement: function LabeledStatement(_ref, state) {\n\t    var node = _ref.node;\n\n\t    state.innerLabels.push(node.label.name);\n\t  }\n\t};\n\n\tvar continuationVisitor = {\n\t  enter: function enter(path, state) {\n\t    if (path.isAssignmentExpression() || path.isUpdateExpression()) {\n\t      var bindings = path.getBindingIdentifiers();\n\t      for (var name in bindings) {\n\t        if (state.outsideReferences[name] !== path.scope.getBindingIdentifier(name)) continue;\n\t        state.reassignments[name] = true;\n\t      }\n\t    }\n\t  }\n\t};\n\n\tfunction loopNodeTo(node) {\n\t  if (t.isBreakStatement(node)) {\n\t    return \"break\";\n\t  } else if (t.isContinueStatement(node)) {\n\t    return \"continue\";\n\t  }\n\t}\n\n\tvar loopVisitor = {\n\t  Loop: function Loop(path, state) {\n\t    var oldIgnoreLabeless = state.ignoreLabeless;\n\t    state.ignoreLabeless = true;\n\t    path.traverse(loopVisitor, state);\n\t    state.ignoreLabeless = oldIgnoreLabeless;\n\t    path.skip();\n\t  },\n\t  Function: function Function(path) {\n\t    path.skip();\n\t  },\n\t  SwitchCase: function SwitchCase(path, state) {\n\t    var oldInSwitchCase = state.inSwitchCase;\n\t    state.inSwitchCase = true;\n\t    path.traverse(loopVisitor, state);\n\t    state.inSwitchCase = oldInSwitchCase;\n\t    path.skip();\n\t  },\n\t  \"BreakStatement|ContinueStatement|ReturnStatement\": function BreakStatementContinueStatementReturnStatement(path, state) {\n\t    var node = path.node,\n\t        parent = path.parent,\n\t        scope = path.scope;\n\n\t    if (node[this.LOOP_IGNORE]) return;\n\n\t    var replace = void 0;\n\t    var loopText = loopNodeTo(node);\n\n\t    if (loopText) {\n\t      if (node.label) {\n\t        if (state.innerLabels.indexOf(node.label.name) >= 0) {\n\t          return;\n\t        }\n\n\t        loopText = loopText + \"|\" + node.label.name;\n\t      } else {\n\t        if (state.ignoreLabeless) return;\n\n\t        if (state.inSwitchCase) return;\n\n\t        if (t.isBreakStatement(node) && t.isSwitchCase(parent)) return;\n\t      }\n\n\t      state.hasBreakContinue = true;\n\t      state.map[loopText] = node;\n\t      replace = t.stringLiteral(loopText);\n\t    }\n\n\t    if (path.isReturnStatement()) {\n\t      state.hasReturn = true;\n\t      replace = t.objectExpression([t.objectProperty(t.identifier(\"v\"), node.argument || scope.buildUndefinedNode())]);\n\t    }\n\n\t    if (replace) {\n\t      replace = t.returnStatement(replace);\n\t      replace[this.LOOP_IGNORE] = true;\n\t      path.skip();\n\t      path.replaceWith(t.inherits(replace, node));\n\t    }\n\t  }\n\t};\n\n\tvar BlockScoping = function () {\n\t  function BlockScoping(loopPath, blockPath, parent, scope, file) {\n\t    (0, _classCallCheck3.default)(this, BlockScoping);\n\n\t    this.parent = parent;\n\t    this.scope = scope;\n\t    this.file = file;\n\n\t    this.blockPath = blockPath;\n\t    this.block = blockPath.node;\n\n\t    this.outsideLetReferences = (0, _create2.default)(null);\n\t    this.hasLetReferences = false;\n\t    this.letReferences = (0, _create2.default)(null);\n\t    this.body = [];\n\n\t    if (loopPath) {\n\t      this.loopParent = loopPath.parent;\n\t      this.loopLabel = t.isLabeledStatement(this.loopParent) && this.loopParent.label;\n\t      this.loopPath = loopPath;\n\t      this.loop = loopPath.node;\n\t    }\n\t  }\n\n\t  BlockScoping.prototype.run = function run() {\n\t    var block = this.block;\n\t    if (block._letDone) return;\n\t    block._letDone = true;\n\n\t    var needsClosure = this.getLetReferences();\n\n\t    if (t.isFunction(this.parent) || t.isProgram(this.block)) {\n\t      this.updateScopeInfo();\n\t      return;\n\t    }\n\n\t    if (!this.hasLetReferences) return;\n\n\t    if (needsClosure) {\n\t      this.wrapClosure();\n\t    } else {\n\t      this.remap();\n\t    }\n\n\t    this.updateScopeInfo(needsClosure);\n\n\t    if (this.loopLabel && !t.isLabeledStatement(this.loopParent)) {\n\t      return t.labeledStatement(this.loopLabel, this.loop);\n\t    }\n\t  };\n\n\t  BlockScoping.prototype.updateScopeInfo = function updateScopeInfo(wrappedInClosure) {\n\t    var scope = this.scope;\n\t    var parentScope = scope.getFunctionParent();\n\t    var letRefs = this.letReferences;\n\n\t    for (var key in letRefs) {\n\t      var ref = letRefs[key];\n\t      var binding = scope.getBinding(ref.name);\n\t      if (!binding) continue;\n\t      if (binding.kind === \"let\" || binding.kind === \"const\") {\n\t        binding.kind = \"var\";\n\n\t        if (wrappedInClosure) {\n\t          scope.removeBinding(ref.name);\n\t        } else {\n\t          scope.moveBindingTo(ref.name, parentScope);\n\t        }\n\t      }\n\t    }\n\t  };\n\n\t  BlockScoping.prototype.remap = function remap() {\n\t    var letRefs = this.letReferences;\n\t    var scope = this.scope;\n\n\t    for (var key in letRefs) {\n\t      var ref = letRefs[key];\n\n\t      if (scope.parentHasBinding(key) || scope.hasGlobal(key)) {\n\t        if (scope.hasOwnBinding(key)) scope.rename(ref.name);\n\n\t        if (this.blockPath.scope.hasOwnBinding(key)) this.blockPath.scope.rename(ref.name);\n\t      }\n\t    }\n\t  };\n\n\t  BlockScoping.prototype.wrapClosure = function wrapClosure() {\n\t    if (this.file.opts.throwIfClosureRequired) {\n\t      throw this.blockPath.buildCodeFrameError(\"Compiling let/const in this block would add a closure \" + \"(throwIfClosureRequired).\");\n\t    }\n\t    var block = this.block;\n\n\t    var outsideRefs = this.outsideLetReferences;\n\n\t    if (this.loop) {\n\t      for (var name in outsideRefs) {\n\t        var id = outsideRefs[name];\n\n\t        if (this.scope.hasGlobal(id.name) || this.scope.parentHasBinding(id.name)) {\n\t          delete outsideRefs[id.name];\n\t          delete this.letReferences[id.name];\n\n\t          this.scope.rename(id.name);\n\n\t          this.letReferences[id.name] = id;\n\t          outsideRefs[id.name] = id;\n\t        }\n\t      }\n\t    }\n\n\t    this.has = this.checkLoop();\n\n\t    this.hoistVarDeclarations();\n\n\t    var params = (0, _values2.default)(outsideRefs);\n\t    var args = (0, _values2.default)(outsideRefs);\n\n\t    var isSwitch = this.blockPath.isSwitchStatement();\n\n\t    var fn = t.functionExpression(null, params, t.blockStatement(isSwitch ? [block] : block.body));\n\t    fn.shadow = true;\n\n\t    this.addContinuations(fn);\n\n\t    var ref = fn;\n\n\t    if (this.loop) {\n\t      ref = this.scope.generateUidIdentifier(\"loop\");\n\t      this.loopPath.insertBefore(t.variableDeclaration(\"var\", [t.variableDeclarator(ref, fn)]));\n\t    }\n\n\t    var call = t.callExpression(ref, args);\n\t    var ret = this.scope.generateUidIdentifier(\"ret\");\n\n\t    var hasYield = _babelTraverse2.default.hasType(fn.body, this.scope, \"YieldExpression\", t.FUNCTION_TYPES);\n\t    if (hasYield) {\n\t      fn.generator = true;\n\t      call = t.yieldExpression(call, true);\n\t    }\n\n\t    var hasAsync = _babelTraverse2.default.hasType(fn.body, this.scope, \"AwaitExpression\", t.FUNCTION_TYPES);\n\t    if (hasAsync) {\n\t      fn.async = true;\n\t      call = t.awaitExpression(call);\n\t    }\n\n\t    this.buildClosure(ret, call);\n\n\t    if (isSwitch) this.blockPath.replaceWithMultiple(this.body);else block.body = this.body;\n\t  };\n\n\t  BlockScoping.prototype.buildClosure = function buildClosure(ret, call) {\n\t    var has = this.has;\n\t    if (has.hasReturn || has.hasBreakContinue) {\n\t      this.buildHas(ret, call);\n\t    } else {\n\t      this.body.push(t.expressionStatement(call));\n\t    }\n\t  };\n\n\t  BlockScoping.prototype.addContinuations = function addContinuations(fn) {\n\t    var state = {\n\t      reassignments: {},\n\t      outsideReferences: this.outsideLetReferences\n\t    };\n\n\t    this.scope.traverse(fn, continuationVisitor, state);\n\n\t    for (var i = 0; i < fn.params.length; i++) {\n\t      var param = fn.params[i];\n\t      if (!state.reassignments[param.name]) continue;\n\n\t      var newParam = this.scope.generateUidIdentifier(param.name);\n\t      fn.params[i] = newParam;\n\n\t      this.scope.rename(param.name, newParam.name, fn);\n\n\t      fn.body.body.push(t.expressionStatement(t.assignmentExpression(\"=\", param, newParam)));\n\t    }\n\t  };\n\n\t  BlockScoping.prototype.getLetReferences = function getLetReferences() {\n\t    var _this = this;\n\n\t    var block = this.block;\n\n\t    var declarators = [];\n\n\t    if (this.loop) {\n\t      var init = this.loop.left || this.loop.init;\n\t      if (isBlockScoped(init)) {\n\t        declarators.push(init);\n\t        (0, _extend2.default)(this.outsideLetReferences, t.getBindingIdentifiers(init));\n\t      }\n\t    }\n\n\t    var addDeclarationsFromChild = function addDeclarationsFromChild(path, node) {\n\t      node = node || path.node;\n\t      if (t.isClassDeclaration(node) || t.isFunctionDeclaration(node) || isBlockScoped(node)) {\n\t        if (isBlockScoped(node)) {\n\t          convertBlockScopedToVar(path, node, block, _this.scope);\n\t        }\n\t        declarators = declarators.concat(node.declarations || node);\n\t      }\n\t      if (t.isLabeledStatement(node)) {\n\t        addDeclarationsFromChild(path.get(\"body\"), node.body);\n\t      }\n\t    };\n\n\t    if (block.body) {\n\t      for (var i = 0; i < block.body.length; i++) {\n\t        var declarPath = this.blockPath.get(\"body\")[i];\n\t        addDeclarationsFromChild(declarPath);\n\t      }\n\t    }\n\n\t    if (block.cases) {\n\t      for (var _i = 0; _i < block.cases.length; _i++) {\n\t        var consequents = block.cases[_i].consequent;\n\n\t        for (var j = 0; j < consequents.length; j++) {\n\t          var _declarPath = this.blockPath.get(\"cases\")[_i];\n\t          var declar = consequents[j];\n\t          addDeclarationsFromChild(_declarPath, declar);\n\t        }\n\t      }\n\t    }\n\n\t    for (var _i2 = 0; _i2 < declarators.length; _i2++) {\n\t      var _declar = declarators[_i2];\n\n\t      var keys = t.getBindingIdentifiers(_declar, false, true);\n\t      (0, _extend2.default)(this.letReferences, keys);\n\t      this.hasLetReferences = true;\n\t    }\n\n\t    if (!this.hasLetReferences) return;\n\n\t    var state = {\n\t      letReferences: this.letReferences,\n\t      closurify: false,\n\t      file: this.file,\n\t      loopDepth: 0\n\t    };\n\n\t    var loopOrFunctionParent = this.blockPath.find(function (path) {\n\t      return path.isLoop() || path.isFunction();\n\t    });\n\t    if (loopOrFunctionParent && loopOrFunctionParent.isLoop()) {\n\t      state.loopDepth++;\n\t    }\n\n\t    this.blockPath.traverse(letReferenceBlockVisitor, state);\n\n\t    return state.closurify;\n\t  };\n\n\t  BlockScoping.prototype.checkLoop = function checkLoop() {\n\t    var state = {\n\t      hasBreakContinue: false,\n\t      ignoreLabeless: false,\n\t      inSwitchCase: false,\n\t      innerLabels: [],\n\t      hasReturn: false,\n\t      isLoop: !!this.loop,\n\t      map: {},\n\t      LOOP_IGNORE: (0, _symbol2.default)()\n\t    };\n\n\t    this.blockPath.traverse(loopLabelVisitor, state);\n\t    this.blockPath.traverse(loopVisitor, state);\n\n\t    return state;\n\t  };\n\n\t  BlockScoping.prototype.hoistVarDeclarations = function hoistVarDeclarations() {\n\t    this.blockPath.traverse(hoistVarDeclarationsVisitor, this);\n\t  };\n\n\t  BlockScoping.prototype.pushDeclar = function pushDeclar(node) {\n\t    var declars = [];\n\t    var names = t.getBindingIdentifiers(node);\n\t    for (var name in names) {\n\t      declars.push(t.variableDeclarator(names[name]));\n\t    }\n\n\t    this.body.push(t.variableDeclaration(node.kind, declars));\n\n\t    var replace = [];\n\n\t    for (var i = 0; i < node.declarations.length; i++) {\n\t      var declar = node.declarations[i];\n\t      if (!declar.init) continue;\n\n\t      var expr = t.assignmentExpression(\"=\", declar.id, declar.init);\n\t      replace.push(t.inherits(expr, declar));\n\t    }\n\n\t    return replace;\n\t  };\n\n\t  BlockScoping.prototype.buildHas = function buildHas(ret, call) {\n\t    var body = this.body;\n\n\t    body.push(t.variableDeclaration(\"var\", [t.variableDeclarator(ret, call)]));\n\n\t    var retCheck = void 0;\n\t    var has = this.has;\n\t    var cases = [];\n\n\t    if (has.hasReturn) {\n\t      retCheck = buildRetCheck({\n\t        RETURN: ret\n\t      });\n\t    }\n\n\t    if (has.hasBreakContinue) {\n\t      for (var key in has.map) {\n\t        cases.push(t.switchCase(t.stringLiteral(key), [has.map[key]]));\n\t      }\n\n\t      if (has.hasReturn) {\n\t        cases.push(t.switchCase(null, [retCheck]));\n\t      }\n\n\t      if (cases.length === 1) {\n\t        var single = cases[0];\n\t        body.push(t.ifStatement(t.binaryExpression(\"===\", ret, single.test), single.consequent[0]));\n\t      } else {\n\t        if (this.loop) {\n\t          for (var i = 0; i < cases.length; i++) {\n\t            var caseConsequent = cases[i].consequent[0];\n\t            if (t.isBreakStatement(caseConsequent) && !caseConsequent.label) {\n\t              caseConsequent.label = this.loopLabel = this.loopLabel || this.scope.generateUidIdentifier(\"loop\");\n\t            }\n\t          }\n\t        }\n\n\t        body.push(t.switchStatement(ret, cases));\n\t      }\n\t    } else {\n\t      if (has.hasReturn) {\n\t        body.push(retCheck);\n\t      }\n\t    }\n\t  };\n\n\t  return BlockScoping;\n\t}();\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 71 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var VISITED = (0, _symbol2.default)();\n\n\t  return {\n\t    visitor: {\n\t      ExportDefaultDeclaration: function ExportDefaultDeclaration(path) {\n\t        if (!path.get(\"declaration\").isClassDeclaration()) return;\n\n\t        var node = path.node;\n\n\t        var ref = node.declaration.id || path.scope.generateUidIdentifier(\"class\");\n\t        node.declaration.id = ref;\n\n\t        path.replaceWith(node.declaration);\n\t        path.insertAfter(t.exportDefaultDeclaration(ref));\n\t      },\n\t      ClassDeclaration: function ClassDeclaration(path) {\n\t        var node = path.node;\n\n\t        var ref = node.id || path.scope.generateUidIdentifier(\"class\");\n\n\t        path.replaceWith(t.variableDeclaration(\"let\", [t.variableDeclarator(ref, t.toExpression(node))]));\n\t      },\n\t      ClassExpression: function ClassExpression(path, state) {\n\t        var node = path.node;\n\n\t        if (node[VISITED]) return;\n\n\t        var inferred = (0, _babelHelperFunctionName2.default)(path);\n\t        if (inferred && inferred !== node) return path.replaceWith(inferred);\n\n\t        node[VISITED] = true;\n\n\t        var Constructor = _vanilla2.default;\n\t        if (state.opts.loose) Constructor = _loose2.default;\n\n\t        path.replaceWith(new Constructor(path, state.file).run());\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _loose = __webpack_require__(331);\n\n\tvar _loose2 = _interopRequireDefault(_loose);\n\n\tvar _vanilla = __webpack_require__(207);\n\n\tvar _vanilla2 = _interopRequireDefault(_vanilla);\n\n\tvar _babelHelperFunctionName = __webpack_require__(40);\n\n\tvar _babelHelperFunctionName2 = _interopRequireDefault(_babelHelperFunctionName);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 72 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types,\n\t      template = _ref.template;\n\n\t  var buildMutatorMapAssign = template(\"\\n    MUTATOR_MAP_REF[KEY] = MUTATOR_MAP_REF[KEY] || {};\\n    MUTATOR_MAP_REF[KEY].KIND = VALUE;\\n  \");\n\n\t  function getValue(prop) {\n\t    if (t.isObjectProperty(prop)) {\n\t      return prop.value;\n\t    } else if (t.isObjectMethod(prop)) {\n\t      return t.functionExpression(null, prop.params, prop.body, prop.generator, prop.async);\n\t    }\n\t  }\n\n\t  function pushAssign(objId, prop, body) {\n\t    if (prop.kind === \"get\" && prop.kind === \"set\") {\n\t      pushMutatorDefine(objId, prop, body);\n\t    } else {\n\t      body.push(t.expressionStatement(t.assignmentExpression(\"=\", t.memberExpression(objId, prop.key, prop.computed || t.isLiteral(prop.key)), getValue(prop))));\n\t    }\n\t  }\n\n\t  function pushMutatorDefine(_ref2, prop) {\n\t    var objId = _ref2.objId,\n\t        body = _ref2.body,\n\t        getMutatorId = _ref2.getMutatorId,\n\t        scope = _ref2.scope;\n\n\t    var key = !prop.computed && t.isIdentifier(prop.key) ? t.stringLiteral(prop.key.name) : prop.key;\n\n\t    var maybeMemoise = scope.maybeGenerateMemoised(key);\n\t    if (maybeMemoise) {\n\t      body.push(t.expressionStatement(t.assignmentExpression(\"=\", maybeMemoise, key)));\n\t      key = maybeMemoise;\n\t    }\n\n\t    body.push.apply(body, buildMutatorMapAssign({\n\t      MUTATOR_MAP_REF: getMutatorId(),\n\t      KEY: key,\n\t      VALUE: getValue(prop),\n\t      KIND: t.identifier(prop.kind)\n\t    }));\n\t  }\n\n\t  function loose(info) {\n\t    for (var _iterator = info.computedProps, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref3;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref3 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref3 = _i.value;\n\t      }\n\n\t      var prop = _ref3;\n\n\t      if (prop.kind === \"get\" || prop.kind === \"set\") {\n\t        pushMutatorDefine(info, prop);\n\t      } else {\n\t        pushAssign(info.objId, prop, info.body);\n\t      }\n\t    }\n\t  }\n\n\t  function spec(info) {\n\t    var objId = info.objId,\n\t        body = info.body,\n\t        computedProps = info.computedProps,\n\t        state = info.state;\n\n\t    for (var _iterator2 = computedProps, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref4;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref4 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref4 = _i2.value;\n\t      }\n\n\t      var prop = _ref4;\n\n\t      var key = t.toComputedKey(prop);\n\n\t      if (prop.kind === \"get\" || prop.kind === \"set\") {\n\t        pushMutatorDefine(info, prop);\n\t      } else if (t.isStringLiteral(key, { value: \"__proto__\" })) {\n\t        pushAssign(objId, prop, body);\n\t      } else {\n\t        if (computedProps.length === 1) {\n\t          return t.callExpression(state.addHelper(\"defineProperty\"), [info.initPropExpression, key, getValue(prop)]);\n\t        } else {\n\t          body.push(t.expressionStatement(t.callExpression(state.addHelper(\"defineProperty\"), [objId, key, getValue(prop)])));\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      ObjectExpression: {\n\t        exit: function exit(path, state) {\n\t          var node = path.node,\n\t              parent = path.parent,\n\t              scope = path.scope;\n\n\t          var hasComputed = false;\n\t          for (var _iterator3 = node.properties, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t            var _ref5;\n\n\t            if (_isArray3) {\n\t              if (_i3 >= _iterator3.length) break;\n\t              _ref5 = _iterator3[_i3++];\n\t            } else {\n\t              _i3 = _iterator3.next();\n\t              if (_i3.done) break;\n\t              _ref5 = _i3.value;\n\t            }\n\n\t            var prop = _ref5;\n\n\t            hasComputed = prop.computed === true;\n\t            if (hasComputed) break;\n\t          }\n\t          if (!hasComputed) return;\n\n\t          var initProps = [];\n\t          var computedProps = [];\n\t          var foundComputed = false;\n\n\t          for (var _iterator4 = node.properties, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t            var _ref6;\n\n\t            if (_isArray4) {\n\t              if (_i4 >= _iterator4.length) break;\n\t              _ref6 = _iterator4[_i4++];\n\t            } else {\n\t              _i4 = _iterator4.next();\n\t              if (_i4.done) break;\n\t              _ref6 = _i4.value;\n\t            }\n\n\t            var _prop = _ref6;\n\n\t            if (_prop.computed) {\n\t              foundComputed = true;\n\t            }\n\n\t            if (foundComputed) {\n\t              computedProps.push(_prop);\n\t            } else {\n\t              initProps.push(_prop);\n\t            }\n\t          }\n\n\t          var objId = scope.generateUidIdentifierBasedOnNode(parent);\n\t          var initPropExpression = t.objectExpression(initProps);\n\t          var body = [];\n\n\t          body.push(t.variableDeclaration(\"var\", [t.variableDeclarator(objId, initPropExpression)]));\n\n\t          var callback = spec;\n\t          if (state.opts.loose) callback = loose;\n\n\t          var mutatorRef = void 0;\n\n\t          var getMutatorId = function getMutatorId() {\n\t            if (!mutatorRef) {\n\t              mutatorRef = scope.generateUidIdentifier(\"mutatorMap\");\n\n\t              body.push(t.variableDeclaration(\"var\", [t.variableDeclarator(mutatorRef, t.objectExpression([]))]));\n\t            }\n\n\t            return mutatorRef;\n\t          };\n\n\t          var single = callback({\n\t            scope: scope,\n\t            objId: objId,\n\t            body: body,\n\t            computedProps: computedProps,\n\t            initPropExpression: initPropExpression,\n\t            getMutatorId: getMutatorId,\n\t            state: state\n\t          });\n\n\t          if (mutatorRef) {\n\t            body.push(t.expressionStatement(t.callExpression(state.addHelper(\"defineEnumerableProperties\"), [objId, mutatorRef])));\n\t          }\n\n\t          if (single) {\n\t            path.replaceWith(single);\n\t          } else {\n\t            body.push(t.expressionStatement(objId));\n\t            path.replaceWithMultiple(body);\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 73 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function variableDeclarationHasPattern(node) {\n\t    for (var _iterator = node.declarations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref2;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref2 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref2 = _i.value;\n\t      }\n\n\t      var declar = _ref2;\n\n\t      if (t.isPattern(declar.id)) {\n\t        return true;\n\t      }\n\t    }\n\t    return false;\n\t  }\n\n\t  function hasRest(pattern) {\n\t    for (var _iterator2 = pattern.elements, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref3;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref3 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref3 = _i2.value;\n\t      }\n\n\t      var elem = _ref3;\n\n\t      if (t.isRestElement(elem)) {\n\t        return true;\n\t      }\n\t    }\n\t    return false;\n\t  }\n\n\t  var arrayUnpackVisitor = {\n\t    ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t      if (state.bindings[path.node.name]) {\n\t        state.deopt = true;\n\t        path.stop();\n\t      }\n\t    }\n\t  };\n\n\t  var DestructuringTransformer = function () {\n\t    function DestructuringTransformer(opts) {\n\t      (0, _classCallCheck3.default)(this, DestructuringTransformer);\n\n\t      this.blockHoist = opts.blockHoist;\n\t      this.operator = opts.operator;\n\t      this.arrays = {};\n\t      this.nodes = opts.nodes || [];\n\t      this.scope = opts.scope;\n\t      this.file = opts.file;\n\t      this.kind = opts.kind;\n\t    }\n\n\t    DestructuringTransformer.prototype.buildVariableAssignment = function buildVariableAssignment(id, init) {\n\t      var op = this.operator;\n\t      if (t.isMemberExpression(id)) op = \"=\";\n\n\t      var node = void 0;\n\n\t      if (op) {\n\t        node = t.expressionStatement(t.assignmentExpression(op, id, init));\n\t      } else {\n\t        node = t.variableDeclaration(this.kind, [t.variableDeclarator(id, init)]);\n\t      }\n\n\t      node._blockHoist = this.blockHoist;\n\n\t      return node;\n\t    };\n\n\t    DestructuringTransformer.prototype.buildVariableDeclaration = function buildVariableDeclaration(id, init) {\n\t      var declar = t.variableDeclaration(\"var\", [t.variableDeclarator(id, init)]);\n\t      declar._blockHoist = this.blockHoist;\n\t      return declar;\n\t    };\n\n\t    DestructuringTransformer.prototype.push = function push(id, init) {\n\t      if (t.isObjectPattern(id)) {\n\t        this.pushObjectPattern(id, init);\n\t      } else if (t.isArrayPattern(id)) {\n\t        this.pushArrayPattern(id, init);\n\t      } else if (t.isAssignmentPattern(id)) {\n\t        this.pushAssignmentPattern(id, init);\n\t      } else {\n\t        this.nodes.push(this.buildVariableAssignment(id, init));\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.toArray = function toArray(node, count) {\n\t      if (this.file.opts.loose || t.isIdentifier(node) && this.arrays[node.name]) {\n\t        return node;\n\t      } else {\n\t        return this.scope.toArray(node, count);\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.pushAssignmentPattern = function pushAssignmentPattern(pattern, valueRef) {\n\n\t      var tempValueRef = this.scope.generateUidIdentifierBasedOnNode(valueRef);\n\n\t      var declar = t.variableDeclaration(\"var\", [t.variableDeclarator(tempValueRef, valueRef)]);\n\t      declar._blockHoist = this.blockHoist;\n\t      this.nodes.push(declar);\n\n\t      var tempConditional = t.conditionalExpression(t.binaryExpression(\"===\", tempValueRef, t.identifier(\"undefined\")), pattern.right, tempValueRef);\n\n\t      var left = pattern.left;\n\t      if (t.isPattern(left)) {\n\t        var tempValueDefault = t.expressionStatement(t.assignmentExpression(\"=\", tempValueRef, tempConditional));\n\t        tempValueDefault._blockHoist = this.blockHoist;\n\n\t        this.nodes.push(tempValueDefault);\n\t        this.push(left, tempValueRef);\n\t      } else {\n\t        this.nodes.push(this.buildVariableAssignment(left, tempConditional));\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.pushObjectRest = function pushObjectRest(pattern, objRef, spreadProp, spreadPropIndex) {\n\n\t      var keys = [];\n\n\t      for (var i = 0; i < pattern.properties.length; i++) {\n\t        var prop = pattern.properties[i];\n\n\t        if (i >= spreadPropIndex) break;\n\n\t        if (t.isRestProperty(prop)) continue;\n\n\t        var key = prop.key;\n\t        if (t.isIdentifier(key) && !prop.computed) key = t.stringLiteral(prop.key.name);\n\t        keys.push(key);\n\t      }\n\n\t      keys = t.arrayExpression(keys);\n\n\t      var value = t.callExpression(this.file.addHelper(\"objectWithoutProperties\"), [objRef, keys]);\n\t      this.nodes.push(this.buildVariableAssignment(spreadProp.argument, value));\n\t    };\n\n\t    DestructuringTransformer.prototype.pushObjectProperty = function pushObjectProperty(prop, propRef) {\n\t      if (t.isLiteral(prop.key)) prop.computed = true;\n\n\t      var pattern = prop.value;\n\t      var objRef = t.memberExpression(propRef, prop.key, prop.computed);\n\n\t      if (t.isPattern(pattern)) {\n\t        this.push(pattern, objRef);\n\t      } else {\n\t        this.nodes.push(this.buildVariableAssignment(pattern, objRef));\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.pushObjectPattern = function pushObjectPattern(pattern, objRef) {\n\n\t      if (!pattern.properties.length) {\n\t        this.nodes.push(t.expressionStatement(t.callExpression(this.file.addHelper(\"objectDestructuringEmpty\"), [objRef])));\n\t      }\n\n\t      if (pattern.properties.length > 1 && !this.scope.isStatic(objRef)) {\n\t        var temp = this.scope.generateUidIdentifierBasedOnNode(objRef);\n\t        this.nodes.push(this.buildVariableDeclaration(temp, objRef));\n\t        objRef = temp;\n\t      }\n\n\t      for (var i = 0; i < pattern.properties.length; i++) {\n\t        var prop = pattern.properties[i];\n\t        if (t.isRestProperty(prop)) {\n\t          this.pushObjectRest(pattern, objRef, prop, i);\n\t        } else {\n\t          this.pushObjectProperty(prop, objRef);\n\t        }\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.canUnpackArrayPattern = function canUnpackArrayPattern(pattern, arr) {\n\t      if (!t.isArrayExpression(arr)) return false;\n\n\t      if (pattern.elements.length > arr.elements.length) return;\n\t      if (pattern.elements.length < arr.elements.length && !hasRest(pattern)) return false;\n\n\t      for (var _iterator3 = pattern.elements, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t        var _ref4;\n\n\t        if (_isArray3) {\n\t          if (_i3 >= _iterator3.length) break;\n\t          _ref4 = _iterator3[_i3++];\n\t        } else {\n\t          _i3 = _iterator3.next();\n\t          if (_i3.done) break;\n\t          _ref4 = _i3.value;\n\t        }\n\n\t        var elem = _ref4;\n\n\t        if (!elem) return false;\n\n\t        if (t.isMemberExpression(elem)) return false;\n\t      }\n\n\t      for (var _iterator4 = arr.elements, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t        var _ref5;\n\n\t        if (_isArray4) {\n\t          if (_i4 >= _iterator4.length) break;\n\t          _ref5 = _iterator4[_i4++];\n\t        } else {\n\t          _i4 = _iterator4.next();\n\t          if (_i4.done) break;\n\t          _ref5 = _i4.value;\n\t        }\n\n\t        var _elem = _ref5;\n\n\t        if (t.isSpreadElement(_elem)) return false;\n\n\t        if (t.isCallExpression(_elem)) return false;\n\n\t        if (t.isMemberExpression(_elem)) return false;\n\t      }\n\n\t      var bindings = t.getBindingIdentifiers(pattern);\n\t      var state = { deopt: false, bindings: bindings };\n\t      this.scope.traverse(arr, arrayUnpackVisitor, state);\n\t      return !state.deopt;\n\t    };\n\n\t    DestructuringTransformer.prototype.pushUnpackedArrayPattern = function pushUnpackedArrayPattern(pattern, arr) {\n\t      for (var i = 0; i < pattern.elements.length; i++) {\n\t        var elem = pattern.elements[i];\n\t        if (t.isRestElement(elem)) {\n\t          this.push(elem.argument, t.arrayExpression(arr.elements.slice(i)));\n\t        } else {\n\t          this.push(elem, arr.elements[i]);\n\t        }\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.pushArrayPattern = function pushArrayPattern(pattern, arrayRef) {\n\t      if (!pattern.elements) return;\n\n\t      if (this.canUnpackArrayPattern(pattern, arrayRef)) {\n\t        return this.pushUnpackedArrayPattern(pattern, arrayRef);\n\t      }\n\n\t      var count = !hasRest(pattern) && pattern.elements.length;\n\n\t      var toArray = this.toArray(arrayRef, count);\n\n\t      if (t.isIdentifier(toArray)) {\n\t        arrayRef = toArray;\n\t      } else {\n\t        arrayRef = this.scope.generateUidIdentifierBasedOnNode(arrayRef);\n\t        this.arrays[arrayRef.name] = true;\n\t        this.nodes.push(this.buildVariableDeclaration(arrayRef, toArray));\n\t      }\n\n\t      for (var i = 0; i < pattern.elements.length; i++) {\n\t        var elem = pattern.elements[i];\n\n\t        if (!elem) continue;\n\n\t        var elemRef = void 0;\n\n\t        if (t.isRestElement(elem)) {\n\t          elemRef = this.toArray(arrayRef);\n\t          elemRef = t.callExpression(t.memberExpression(elemRef, t.identifier(\"slice\")), [t.numericLiteral(i)]);\n\n\t          elem = elem.argument;\n\t        } else {\n\t          elemRef = t.memberExpression(arrayRef, t.numericLiteral(i), true);\n\t        }\n\n\t        this.push(elem, elemRef);\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.init = function init(pattern, ref) {\n\n\t      if (!t.isArrayExpression(ref) && !t.isMemberExpression(ref)) {\n\t        var memo = this.scope.maybeGenerateMemoised(ref, true);\n\t        if (memo) {\n\t          this.nodes.push(this.buildVariableDeclaration(memo, ref));\n\t          ref = memo;\n\t        }\n\t      }\n\n\t      this.push(pattern, ref);\n\n\t      return this.nodes;\n\t    };\n\n\t    return DestructuringTransformer;\n\t  }();\n\n\t  return {\n\t    visitor: {\n\t      ExportNamedDeclaration: function ExportNamedDeclaration(path) {\n\t        var declaration = path.get(\"declaration\");\n\t        if (!declaration.isVariableDeclaration()) return;\n\t        if (!variableDeclarationHasPattern(declaration.node)) return;\n\n\t        var specifiers = [];\n\n\t        for (var name in path.getOuterBindingIdentifiers(path)) {\n\t          var id = t.identifier(name);\n\t          specifiers.push(t.exportSpecifier(id, id));\n\t        }\n\n\t        path.replaceWith(declaration.node);\n\t        path.insertAfter(t.exportNamedDeclaration(null, specifiers));\n\t      },\n\t      ForXStatement: function ForXStatement(path, file) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var left = node.left;\n\n\t        if (t.isPattern(left)) {\n\n\t          var temp = scope.generateUidIdentifier(\"ref\");\n\n\t          node.left = t.variableDeclaration(\"var\", [t.variableDeclarator(temp)]);\n\n\t          path.ensureBlock();\n\n\t          node.body.body.unshift(t.variableDeclaration(\"var\", [t.variableDeclarator(left, temp)]));\n\n\t          return;\n\t        }\n\n\t        if (!t.isVariableDeclaration(left)) return;\n\n\t        var pattern = left.declarations[0].id;\n\t        if (!t.isPattern(pattern)) return;\n\n\t        var key = scope.generateUidIdentifier(\"ref\");\n\t        node.left = t.variableDeclaration(left.kind, [t.variableDeclarator(key, null)]);\n\n\t        var nodes = [];\n\n\t        var destructuring = new DestructuringTransformer({\n\t          kind: left.kind,\n\t          file: file,\n\t          scope: scope,\n\t          nodes: nodes\n\t        });\n\n\t        destructuring.init(pattern, key);\n\n\t        path.ensureBlock();\n\n\t        var block = node.body;\n\t        block.body = nodes.concat(block.body);\n\t      },\n\t      CatchClause: function CatchClause(_ref6, file) {\n\t        var node = _ref6.node,\n\t            scope = _ref6.scope;\n\n\t        var pattern = node.param;\n\t        if (!t.isPattern(pattern)) return;\n\n\t        var ref = scope.generateUidIdentifier(\"ref\");\n\t        node.param = ref;\n\n\t        var nodes = [];\n\n\t        var destructuring = new DestructuringTransformer({\n\t          kind: \"let\",\n\t          file: file,\n\t          scope: scope,\n\t          nodes: nodes\n\t        });\n\t        destructuring.init(pattern, ref);\n\n\t        node.body.body = nodes.concat(node.body.body);\n\t      },\n\t      AssignmentExpression: function AssignmentExpression(path, file) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        if (!t.isPattern(node.left)) return;\n\n\t        var nodes = [];\n\n\t        var destructuring = new DestructuringTransformer({\n\t          operator: node.operator,\n\t          file: file,\n\t          scope: scope,\n\t          nodes: nodes\n\t        });\n\n\t        var ref = void 0;\n\t        if (path.isCompletionRecord() || !path.parentPath.isExpressionStatement()) {\n\t          ref = scope.generateUidIdentifierBasedOnNode(node.right, \"ref\");\n\n\t          nodes.push(t.variableDeclaration(\"var\", [t.variableDeclarator(ref, node.right)]));\n\n\t          if (t.isArrayExpression(node.right)) {\n\t            destructuring.arrays[ref.name] = true;\n\t          }\n\t        }\n\n\t        destructuring.init(node.left, ref || node.right);\n\n\t        if (ref) {\n\t          nodes.push(t.expressionStatement(ref));\n\t        }\n\n\t        path.replaceWithMultiple(nodes);\n\t      },\n\t      VariableDeclaration: function VariableDeclaration(path, file) {\n\t        var node = path.node,\n\t            scope = path.scope,\n\t            parent = path.parent;\n\n\t        if (t.isForXStatement(parent)) return;\n\t        if (!parent || !path.container) return;\n\t        if (!variableDeclarationHasPattern(node)) return;\n\n\t        var nodes = [];\n\t        var declar = void 0;\n\n\t        for (var i = 0; i < node.declarations.length; i++) {\n\t          declar = node.declarations[i];\n\n\t          var patternId = declar.init;\n\t          var pattern = declar.id;\n\n\t          var destructuring = new DestructuringTransformer({\n\t            blockHoist: node._blockHoist,\n\t            nodes: nodes,\n\t            scope: scope,\n\t            kind: node.kind,\n\t            file: file\n\t          });\n\n\t          if (t.isPattern(pattern)) {\n\t            destructuring.init(pattern, patternId);\n\n\t            if (+i !== node.declarations.length - 1) {\n\t              t.inherits(nodes[nodes.length - 1], declar);\n\t            }\n\t          } else {\n\t            nodes.push(t.inherits(destructuring.buildVariableAssignment(declar.id, declar.init), declar));\n\t          }\n\t        }\n\n\t        var nodesOut = [];\n\t        for (var _iterator5 = nodes, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t          var _ref7;\n\n\t          if (_isArray5) {\n\t            if (_i5 >= _iterator5.length) break;\n\t            _ref7 = _iterator5[_i5++];\n\t          } else {\n\t            _i5 = _iterator5.next();\n\t            if (_i5.done) break;\n\t            _ref7 = _i5.value;\n\t          }\n\n\t          var _node = _ref7;\n\n\t          var tail = nodesOut[nodesOut.length - 1];\n\t          if (tail && t.isVariableDeclaration(tail) && t.isVariableDeclaration(_node) && tail.kind === _node.kind) {\n\t            var _tail$declarations;\n\n\t            (_tail$declarations = tail.declarations).push.apply(_tail$declarations, _node.declarations);\n\t          } else {\n\t            nodesOut.push(_node);\n\t          }\n\t        }\n\n\t        for (var _iterator6 = nodesOut, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : (0, _getIterator3.default)(_iterator6);;) {\n\t          var _ref8;\n\n\t          if (_isArray6) {\n\t            if (_i6 >= _iterator6.length) break;\n\t            _ref8 = _iterator6[_i6++];\n\t          } else {\n\t            _i6 = _iterator6.next();\n\t            if (_i6.done) break;\n\t            _ref8 = _i6.value;\n\t          }\n\n\t          var nodeOut = _ref8;\n\n\t          if (!nodeOut.declarations) continue;\n\t          for (var _iterator7 = nodeOut.declarations, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : (0, _getIterator3.default)(_iterator7);;) {\n\t            var _ref9;\n\n\t            if (_isArray7) {\n\t              if (_i7 >= _iterator7.length) break;\n\t              _ref9 = _iterator7[_i7++];\n\t            } else {\n\t              _i7 = _iterator7.next();\n\t              if (_i7.done) break;\n\t              _ref9 = _i7.value;\n\t            }\n\n\t            var declaration = _ref9;\n\t            var name = declaration.id.name;\n\n\t            if (scope.bindings[name]) {\n\t              scope.bindings[name].kind = nodeOut.kind;\n\t            }\n\t          }\n\t        }\n\n\t        if (nodesOut.length === 1) {\n\t          path.replaceWith(nodesOut[0]);\n\t        } else {\n\t          path.replaceWithMultiple(nodesOut);\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 74 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var messages = _ref.messages,\n\t      template = _ref.template,\n\t      t = _ref.types;\n\n\t  var buildForOfArray = template(\"\\n    for (var KEY = 0; KEY < ARR.length; KEY++) BODY;\\n  \");\n\n\t  var buildForOfLoose = template(\"\\n    for (var LOOP_OBJECT = OBJECT,\\n             IS_ARRAY = Array.isArray(LOOP_OBJECT),\\n             INDEX = 0,\\n             LOOP_OBJECT = IS_ARRAY ? LOOP_OBJECT : LOOP_OBJECT[Symbol.iterator]();;) {\\n      var ID;\\n      if (IS_ARRAY) {\\n        if (INDEX >= LOOP_OBJECT.length) break;\\n        ID = LOOP_OBJECT[INDEX++];\\n      } else {\\n        INDEX = LOOP_OBJECT.next();\\n        if (INDEX.done) break;\\n        ID = INDEX.value;\\n      }\\n    }\\n  \");\n\n\t  var buildForOf = template(\"\\n    var ITERATOR_COMPLETION = true;\\n    var ITERATOR_HAD_ERROR_KEY = false;\\n    var ITERATOR_ERROR_KEY = undefined;\\n    try {\\n      for (var ITERATOR_KEY = OBJECT[Symbol.iterator](), STEP_KEY; !(ITERATOR_COMPLETION = (STEP_KEY = ITERATOR_KEY.next()).done); ITERATOR_COMPLETION = true) {\\n      }\\n    } catch (err) {\\n      ITERATOR_HAD_ERROR_KEY = true;\\n      ITERATOR_ERROR_KEY = err;\\n    } finally {\\n      try {\\n        if (!ITERATOR_COMPLETION && ITERATOR_KEY.return) {\\n          ITERATOR_KEY.return();\\n        }\\n      } finally {\\n        if (ITERATOR_HAD_ERROR_KEY) {\\n          throw ITERATOR_ERROR_KEY;\\n        }\\n      }\\n    }\\n  \");\n\n\t  function _ForOfStatementArray(path) {\n\t    var node = path.node,\n\t        scope = path.scope;\n\n\t    var nodes = [];\n\t    var right = node.right;\n\n\t    if (!t.isIdentifier(right) || !scope.hasBinding(right.name)) {\n\t      var uid = scope.generateUidIdentifier(\"arr\");\n\t      nodes.push(t.variableDeclaration(\"var\", [t.variableDeclarator(uid, right)]));\n\t      right = uid;\n\t    }\n\n\t    var iterationKey = scope.generateUidIdentifier(\"i\");\n\n\t    var loop = buildForOfArray({\n\t      BODY: node.body,\n\t      KEY: iterationKey,\n\t      ARR: right\n\t    });\n\n\t    t.inherits(loop, node);\n\t    t.ensureBlock(loop);\n\n\t    var iterationValue = t.memberExpression(right, iterationKey, true);\n\n\t    var left = node.left;\n\t    if (t.isVariableDeclaration(left)) {\n\t      left.declarations[0].init = iterationValue;\n\t      loop.body.body.unshift(left);\n\t    } else {\n\t      loop.body.body.unshift(t.expressionStatement(t.assignmentExpression(\"=\", left, iterationValue)));\n\t    }\n\n\t    if (path.parentPath.isLabeledStatement()) {\n\t      loop = t.labeledStatement(path.parentPath.node.label, loop);\n\t    }\n\n\t    nodes.push(loop);\n\n\t    return nodes;\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      ForOfStatement: function ForOfStatement(path, state) {\n\t        if (path.get(\"right\").isArrayExpression()) {\n\t          if (path.parentPath.isLabeledStatement()) {\n\t            return path.parentPath.replaceWithMultiple(_ForOfStatementArray(path));\n\t          } else {\n\t            return path.replaceWithMultiple(_ForOfStatementArray(path));\n\t          }\n\t        }\n\n\t        var callback = spec;\n\t        if (state.opts.loose) callback = loose;\n\n\t        var node = path.node;\n\n\t        var build = callback(path, state);\n\t        var declar = build.declar;\n\t        var loop = build.loop;\n\t        var block = loop.body;\n\n\t        path.ensureBlock();\n\n\t        if (declar) {\n\t          block.body.push(declar);\n\t        }\n\n\t        block.body = block.body.concat(node.body.body);\n\n\t        t.inherits(loop, node);\n\t        t.inherits(loop.body, node.body);\n\n\t        if (build.replaceParent) {\n\t          path.parentPath.replaceWithMultiple(build.node);\n\t          path.remove();\n\t        } else {\n\t          path.replaceWithMultiple(build.node);\n\t        }\n\t      }\n\t    }\n\t  };\n\n\t  function loose(path, file) {\n\t    var node = path.node,\n\t        scope = path.scope,\n\t        parent = path.parent;\n\t    var left = node.left;\n\n\t    var declar = void 0,\n\t        id = void 0;\n\n\t    if (t.isIdentifier(left) || t.isPattern(left) || t.isMemberExpression(left)) {\n\t      id = left;\n\t    } else if (t.isVariableDeclaration(left)) {\n\t      id = scope.generateUidIdentifier(\"ref\");\n\t      declar = t.variableDeclaration(left.kind, [t.variableDeclarator(left.declarations[0].id, id)]);\n\t    } else {\n\t      throw file.buildCodeFrameError(left, messages.get(\"unknownForHead\", left.type));\n\t    }\n\n\t    var iteratorKey = scope.generateUidIdentifier(\"iterator\");\n\t    var isArrayKey = scope.generateUidIdentifier(\"isArray\");\n\n\t    var loop = buildForOfLoose({\n\t      LOOP_OBJECT: iteratorKey,\n\t      IS_ARRAY: isArrayKey,\n\t      OBJECT: node.right,\n\t      INDEX: scope.generateUidIdentifier(\"i\"),\n\t      ID: id\n\t    });\n\n\t    if (!declar) {\n\t      loop.body.body.shift();\n\t    }\n\n\t    var isLabeledParent = t.isLabeledStatement(parent);\n\t    var labeled = void 0;\n\n\t    if (isLabeledParent) {\n\t      labeled = t.labeledStatement(parent.label, loop);\n\t    }\n\n\t    return {\n\t      replaceParent: isLabeledParent,\n\t      declar: declar,\n\t      node: labeled || loop,\n\t      loop: loop\n\t    };\n\t  }\n\n\t  function spec(path, file) {\n\t    var node = path.node,\n\t        scope = path.scope,\n\t        parent = path.parent;\n\n\t    var left = node.left;\n\t    var declar = void 0;\n\n\t    var stepKey = scope.generateUidIdentifier(\"step\");\n\t    var stepValue = t.memberExpression(stepKey, t.identifier(\"value\"));\n\n\t    if (t.isIdentifier(left) || t.isPattern(left) || t.isMemberExpression(left)) {\n\t      declar = t.expressionStatement(t.assignmentExpression(\"=\", left, stepValue));\n\t    } else if (t.isVariableDeclaration(left)) {\n\t      declar = t.variableDeclaration(left.kind, [t.variableDeclarator(left.declarations[0].id, stepValue)]);\n\t    } else {\n\t      throw file.buildCodeFrameError(left, messages.get(\"unknownForHead\", left.type));\n\t    }\n\n\t    var iteratorKey = scope.generateUidIdentifier(\"iterator\");\n\n\t    var template = buildForOf({\n\t      ITERATOR_HAD_ERROR_KEY: scope.generateUidIdentifier(\"didIteratorError\"),\n\t      ITERATOR_COMPLETION: scope.generateUidIdentifier(\"iteratorNormalCompletion\"),\n\t      ITERATOR_ERROR_KEY: scope.generateUidIdentifier(\"iteratorError\"),\n\t      ITERATOR_KEY: iteratorKey,\n\t      STEP_KEY: stepKey,\n\t      OBJECT: node.right,\n\t      BODY: null\n\t    });\n\n\t    var isLabeledParent = t.isLabeledStatement(parent);\n\n\t    var tryBody = template[3].block.body;\n\t    var loop = tryBody[0];\n\n\t    if (isLabeledParent) {\n\t      tryBody[0] = t.labeledStatement(parent.label, loop);\n\t    }\n\n\t    return {\n\t      replaceParent: isLabeledParent,\n\t      declar: declar,\n\t      loop: loop,\n\t      node: template\n\t    };\n\t  }\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 75 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      FunctionExpression: {\n\t        exit: function exit(path) {\n\t          if (path.key !== \"value\" && !path.parentPath.isObjectProperty()) {\n\t            var replacement = (0, _babelHelperFunctionName2.default)(path);\n\t            if (replacement) path.replaceWith(replacement);\n\t          }\n\t        }\n\t      },\n\n\t      ObjectProperty: function ObjectProperty(path) {\n\t        var value = path.get(\"value\");\n\t        if (value.isFunction()) {\n\t          var newNode = (0, _babelHelperFunctionName2.default)(value);\n\t          if (newNode) value.replaceWith(newNode);\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperFunctionName = __webpack_require__(40);\n\n\tvar _babelHelperFunctionName2 = _interopRequireDefault(_babelHelperFunctionName);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 76 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      NumericLiteral: function NumericLiteral(_ref) {\n\t        var node = _ref.node;\n\n\t        if (node.extra && /^0[ob]/i.test(node.extra.raw)) {\n\t          node.extra = undefined;\n\t        }\n\t      },\n\t      StringLiteral: function StringLiteral(_ref2) {\n\t        var node = _ref2.node;\n\n\t        if (node.extra && /\\\\[u]/gi.test(node.extra.raw)) {\n\t          node.extra = undefined;\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 77 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function () {\n\t  var REASSIGN_REMAP_SKIP = (0, _symbol2.default)();\n\n\t  var reassignmentVisitor = {\n\t    ReferencedIdentifier: function ReferencedIdentifier(path) {\n\t      var name = path.node.name;\n\t      var remap = this.remaps[name];\n\t      if (!remap) return;\n\n\t      if (this.scope.getBinding(name) !== path.scope.getBinding(name)) return;\n\n\t      if (path.parentPath.isCallExpression({ callee: path.node })) {\n\t        path.replaceWith(t.sequenceExpression([t.numericLiteral(0), remap]));\n\t      } else if (path.isJSXIdentifier() && t.isMemberExpression(remap)) {\n\t        var object = remap.object,\n\t            property = remap.property;\n\n\t        path.replaceWith(t.JSXMemberExpression(t.JSXIdentifier(object.name), t.JSXIdentifier(property.name)));\n\t      } else {\n\t        path.replaceWith(remap);\n\t      }\n\t      this.requeueInParent(path);\n\t    },\n\t    AssignmentExpression: function AssignmentExpression(path) {\n\t      var node = path.node;\n\t      if (node[REASSIGN_REMAP_SKIP]) return;\n\n\t      var left = path.get(\"left\");\n\t      if (left.isIdentifier()) {\n\t        var name = left.node.name;\n\t        var exports = this.exports[name];\n\t        if (!exports) return;\n\n\t        if (this.scope.getBinding(name) !== path.scope.getBinding(name)) return;\n\n\t        node[REASSIGN_REMAP_SKIP] = true;\n\n\t        for (var _iterator = exports, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref = _i.value;\n\t          }\n\n\t          var reid = _ref;\n\n\t          node = buildExportsAssignment(reid, node).expression;\n\t        }\n\n\t        path.replaceWith(node);\n\t        this.requeueInParent(path);\n\t      } else if (left.isObjectPattern()) {\n\t        for (var _iterator2 = left.node.properties, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t          var _ref2;\n\n\t          if (_isArray2) {\n\t            if (_i2 >= _iterator2.length) break;\n\t            _ref2 = _iterator2[_i2++];\n\t          } else {\n\t            _i2 = _iterator2.next();\n\t            if (_i2.done) break;\n\t            _ref2 = _i2.value;\n\t          }\n\n\t          var property = _ref2;\n\n\t          var _name = property.value.name;\n\n\t          var _exports = this.exports[_name];\n\t          if (!_exports) continue;\n\n\t          if (this.scope.getBinding(_name) !== path.scope.getBinding(_name)) return;\n\n\t          node[REASSIGN_REMAP_SKIP] = true;\n\n\t          path.insertAfter(buildExportsAssignment(t.identifier(_name), t.identifier(_name)));\n\t        }\n\t      } else if (left.isArrayPattern()) {\n\t        for (var _iterator3 = left.node.elements, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t          var _ref3;\n\n\t          if (_isArray3) {\n\t            if (_i3 >= _iterator3.length) break;\n\t            _ref3 = _iterator3[_i3++];\n\t          } else {\n\t            _i3 = _iterator3.next();\n\t            if (_i3.done) break;\n\t            _ref3 = _i3.value;\n\t          }\n\n\t          var element = _ref3;\n\n\t          if (!element) continue;\n\t          var _name2 = element.name;\n\n\t          var _exports2 = this.exports[_name2];\n\t          if (!_exports2) continue;\n\n\t          if (this.scope.getBinding(_name2) !== path.scope.getBinding(_name2)) return;\n\n\t          node[REASSIGN_REMAP_SKIP] = true;\n\n\t          path.insertAfter(buildExportsAssignment(t.identifier(_name2), t.identifier(_name2)));\n\t        }\n\t      }\n\t    },\n\t    UpdateExpression: function UpdateExpression(path) {\n\t      var arg = path.get(\"argument\");\n\t      if (!arg.isIdentifier()) return;\n\n\t      var name = arg.node.name;\n\t      var exports = this.exports[name];\n\t      if (!exports) return;\n\n\t      if (this.scope.getBinding(name) !== path.scope.getBinding(name)) return;\n\n\t      var node = t.assignmentExpression(path.node.operator[0] + \"=\", arg.node, t.numericLiteral(1));\n\n\t      if (path.parentPath.isExpressionStatement() && !path.isCompletionRecord() || path.node.prefix) {\n\t        path.replaceWith(node);\n\t        this.requeueInParent(path);\n\t        return;\n\t      }\n\n\t      var nodes = [];\n\t      nodes.push(node);\n\n\t      var operator = void 0;\n\t      if (path.node.operator === \"--\") {\n\t        operator = \"+\";\n\t      } else {\n\t        operator = \"-\";\n\t      }\n\t      nodes.push(t.binaryExpression(operator, arg.node, t.numericLiteral(1)));\n\n\t      path.replaceWithMultiple(t.sequenceExpression(nodes));\n\t    }\n\t  };\n\n\t  return {\n\t    inherits: _babelPluginTransformStrictMode2.default,\n\n\t    visitor: {\n\t      ThisExpression: function ThisExpression(path, state) {\n\t        if (this.ranCommonJS) return;\n\n\t        if (state.opts.allowTopLevelThis !== true && !path.findParent(function (path) {\n\t          return !path.is(\"shadow\") && THIS_BREAK_KEYS.indexOf(path.type) >= 0;\n\t        })) {\n\t          path.replaceWith(t.identifier(\"undefined\"));\n\t        }\n\t      },\n\n\t      Program: {\n\t        exit: function exit(path) {\n\t          this.ranCommonJS = true;\n\n\t          var strict = !!this.opts.strict;\n\t          var noInterop = !!this.opts.noInterop;\n\n\t          var scope = path.scope;\n\n\t          scope.rename(\"module\");\n\t          scope.rename(\"exports\");\n\t          scope.rename(\"require\");\n\n\t          var hasExports = false;\n\t          var hasImports = false;\n\n\t          var body = path.get(\"body\");\n\t          var imports = (0, _create2.default)(null);\n\t          var exports = (0, _create2.default)(null);\n\n\t          var nonHoistedExportNames = (0, _create2.default)(null);\n\n\t          var topNodes = [];\n\t          var remaps = (0, _create2.default)(null);\n\n\t          var requires = (0, _create2.default)(null);\n\n\t          function addRequire(source, blockHoist) {\n\t            var cached = requires[source];\n\t            if (cached) return cached;\n\n\t            var ref = path.scope.generateUidIdentifier((0, _path2.basename)(source, (0, _path2.extname)(source)));\n\n\t            var varDecl = t.variableDeclaration(\"var\", [t.variableDeclarator(ref, buildRequire(t.stringLiteral(source)).expression)]);\n\n\t            if (imports[source]) {\n\t              varDecl.loc = imports[source].loc;\n\t            }\n\n\t            if (typeof blockHoist === \"number\" && blockHoist > 0) {\n\t              varDecl._blockHoist = blockHoist;\n\t            }\n\n\t            topNodes.push(varDecl);\n\n\t            return requires[source] = ref;\n\t          }\n\n\t          function addTo(obj, key, arr) {\n\t            var existing = obj[key] || [];\n\t            obj[key] = existing.concat(arr);\n\t          }\n\n\t          for (var _iterator4 = body, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t            var _ref4;\n\n\t            if (_isArray4) {\n\t              if (_i4 >= _iterator4.length) break;\n\t              _ref4 = _iterator4[_i4++];\n\t            } else {\n\t              _i4 = _iterator4.next();\n\t              if (_i4.done) break;\n\t              _ref4 = _i4.value;\n\t            }\n\n\t            var _path = _ref4;\n\n\t            if (_path.isExportDeclaration()) {\n\t              hasExports = true;\n\n\t              var specifiers = [].concat(_path.get(\"declaration\"), _path.get(\"specifiers\"));\n\t              for (var _iterator6 = specifiers, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : (0, _getIterator3.default)(_iterator6);;) {\n\t                var _ref6;\n\n\t                if (_isArray6) {\n\t                  if (_i6 >= _iterator6.length) break;\n\t                  _ref6 = _iterator6[_i6++];\n\t                } else {\n\t                  _i6 = _iterator6.next();\n\t                  if (_i6.done) break;\n\t                  _ref6 = _i6.value;\n\t                }\n\n\t                var _specifier2 = _ref6;\n\n\t                var ids = _specifier2.getBindingIdentifiers();\n\t                if (ids.__esModule) {\n\t                  throw _specifier2.buildCodeFrameError(\"Illegal export \\\"__esModule\\\"\");\n\t                }\n\t              }\n\t            }\n\n\t            if (_path.isImportDeclaration()) {\n\t              var _importsEntry$specifi;\n\n\t              hasImports = true;\n\n\t              var key = _path.node.source.value;\n\t              var importsEntry = imports[key] || {\n\t                specifiers: [],\n\t                maxBlockHoist: 0,\n\t                loc: _path.node.loc\n\t              };\n\n\t              (_importsEntry$specifi = importsEntry.specifiers).push.apply(_importsEntry$specifi, _path.node.specifiers);\n\n\t              if (typeof _path.node._blockHoist === \"number\") {\n\t                importsEntry.maxBlockHoist = Math.max(_path.node._blockHoist, importsEntry.maxBlockHoist);\n\t              }\n\n\t              imports[key] = importsEntry;\n\n\t              _path.remove();\n\t            } else if (_path.isExportDefaultDeclaration()) {\n\t              var declaration = _path.get(\"declaration\");\n\t              if (declaration.isFunctionDeclaration()) {\n\t                var id = declaration.node.id;\n\t                var defNode = t.identifier(\"default\");\n\t                if (id) {\n\t                  addTo(exports, id.name, defNode);\n\t                  topNodes.push(buildExportsAssignment(defNode, id));\n\t                  _path.replaceWith(declaration.node);\n\t                } else {\n\t                  topNodes.push(buildExportsAssignment(defNode, t.toExpression(declaration.node)));\n\t                  _path.remove();\n\t                }\n\t              } else if (declaration.isClassDeclaration()) {\n\t                var _id = declaration.node.id;\n\t                var _defNode = t.identifier(\"default\");\n\t                if (_id) {\n\t                  addTo(exports, _id.name, _defNode);\n\t                  _path.replaceWithMultiple([declaration.node, buildExportsAssignment(_defNode, _id)]);\n\t                } else {\n\t                  _path.replaceWith(buildExportsAssignment(_defNode, t.toExpression(declaration.node)));\n\n\t                  _path.parentPath.requeue(_path.get(\"expression.left\"));\n\t                }\n\t              } else {\n\t                _path.replaceWith(buildExportsAssignment(t.identifier(\"default\"), declaration.node));\n\n\t                _path.parentPath.requeue(_path.get(\"expression.left\"));\n\t              }\n\t            } else if (_path.isExportNamedDeclaration()) {\n\t              var _declaration = _path.get(\"declaration\");\n\t              if (_declaration.node) {\n\t                if (_declaration.isFunctionDeclaration()) {\n\t                  var _id2 = _declaration.node.id;\n\t                  addTo(exports, _id2.name, _id2);\n\t                  topNodes.push(buildExportsAssignment(_id2, _id2));\n\t                  _path.replaceWith(_declaration.node);\n\t                } else if (_declaration.isClassDeclaration()) {\n\t                  var _id3 = _declaration.node.id;\n\t                  addTo(exports, _id3.name, _id3);\n\t                  _path.replaceWithMultiple([_declaration.node, buildExportsAssignment(_id3, _id3)]);\n\t                  nonHoistedExportNames[_id3.name] = true;\n\t                } else if (_declaration.isVariableDeclaration()) {\n\t                  var declarators = _declaration.get(\"declarations\");\n\t                  for (var _iterator7 = declarators, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : (0, _getIterator3.default)(_iterator7);;) {\n\t                    var _ref7;\n\n\t                    if (_isArray7) {\n\t                      if (_i7 >= _iterator7.length) break;\n\t                      _ref7 = _iterator7[_i7++];\n\t                    } else {\n\t                      _i7 = _iterator7.next();\n\t                      if (_i7.done) break;\n\t                      _ref7 = _i7.value;\n\t                    }\n\n\t                    var decl = _ref7;\n\n\t                    var _id4 = decl.get(\"id\");\n\n\t                    var init = decl.get(\"init\");\n\t                    var exportsToInsert = [];\n\t                    if (!init.node) init.replaceWith(t.identifier(\"undefined\"));\n\n\t                    if (_id4.isIdentifier()) {\n\t                      addTo(exports, _id4.node.name, _id4.node);\n\t                      init.replaceWith(buildExportsAssignment(_id4.node, init.node).expression);\n\t                      nonHoistedExportNames[_id4.node.name] = true;\n\t                    } else if (_id4.isObjectPattern()) {\n\t                      for (var _i8 = 0; _i8 < _id4.node.properties.length; _i8++) {\n\t                        var prop = _id4.node.properties[_i8];\n\t                        var propValue = prop.value;\n\t                        if (t.isAssignmentPattern(propValue)) {\n\t                          propValue = propValue.left;\n\t                        } else if (t.isRestProperty(prop)) {\n\t                          propValue = prop.argument;\n\t                        }\n\t                        addTo(exports, propValue.name, propValue);\n\t                        exportsToInsert.push(buildExportsAssignment(propValue, propValue));\n\t                        nonHoistedExportNames[propValue.name] = true;\n\t                      }\n\t                    } else if (_id4.isArrayPattern() && _id4.node.elements) {\n\t                      for (var _i9 = 0; _i9 < _id4.node.elements.length; _i9++) {\n\t                        var elem = _id4.node.elements[_i9];\n\t                        if (!elem) continue;\n\t                        if (t.isAssignmentPattern(elem)) {\n\t                          elem = elem.left;\n\t                        } else if (t.isRestElement(elem)) {\n\t                          elem = elem.argument;\n\t                        }\n\t                        var name = elem.name;\n\t                        addTo(exports, name, elem);\n\t                        exportsToInsert.push(buildExportsAssignment(elem, elem));\n\t                        nonHoistedExportNames[name] = true;\n\t                      }\n\t                    }\n\t                    _path.insertAfter(exportsToInsert);\n\t                  }\n\t                  _path.replaceWith(_declaration.node);\n\t                }\n\t                continue;\n\t              }\n\n\t              var _specifiers = _path.get(\"specifiers\");\n\t              var nodes = [];\n\t              var _source = _path.node.source;\n\t              if (_source) {\n\t                var ref = addRequire(_source.value, _path.node._blockHoist);\n\n\t                for (var _iterator8 = _specifiers, _isArray8 = Array.isArray(_iterator8), _i10 = 0, _iterator8 = _isArray8 ? _iterator8 : (0, _getIterator3.default)(_iterator8);;) {\n\t                  var _ref8;\n\n\t                  if (_isArray8) {\n\t                    if (_i10 >= _iterator8.length) break;\n\t                    _ref8 = _iterator8[_i10++];\n\t                  } else {\n\t                    _i10 = _iterator8.next();\n\t                    if (_i10.done) break;\n\t                    _ref8 = _i10.value;\n\t                  }\n\n\t                  var _specifier3 = _ref8;\n\n\t                  if (_specifier3.isExportNamespaceSpecifier()) {} else if (_specifier3.isExportDefaultSpecifier()) {} else if (_specifier3.isExportSpecifier()) {\n\t                    if (!noInterop && _specifier3.node.local.name === \"default\") {\n\t                      topNodes.push(buildExportsFrom(t.stringLiteral(_specifier3.node.exported.name), t.memberExpression(t.callExpression(this.addHelper(\"interopRequireDefault\"), [ref]), _specifier3.node.local)));\n\t                    } else {\n\t                      topNodes.push(buildExportsFrom(t.stringLiteral(_specifier3.node.exported.name), t.memberExpression(ref, _specifier3.node.local)));\n\t                    }\n\t                    nonHoistedExportNames[_specifier3.node.exported.name] = true;\n\t                  }\n\t                }\n\t              } else {\n\t                for (var _iterator9 = _specifiers, _isArray9 = Array.isArray(_iterator9), _i11 = 0, _iterator9 = _isArray9 ? _iterator9 : (0, _getIterator3.default)(_iterator9);;) {\n\t                  var _ref9;\n\n\t                  if (_isArray9) {\n\t                    if (_i11 >= _iterator9.length) break;\n\t                    _ref9 = _iterator9[_i11++];\n\t                  } else {\n\t                    _i11 = _iterator9.next();\n\t                    if (_i11.done) break;\n\t                    _ref9 = _i11.value;\n\t                  }\n\n\t                  var _specifier4 = _ref9;\n\n\t                  if (_specifier4.isExportSpecifier()) {\n\t                    addTo(exports, _specifier4.node.local.name, _specifier4.node.exported);\n\t                    nonHoistedExportNames[_specifier4.node.exported.name] = true;\n\t                    nodes.push(buildExportsAssignment(_specifier4.node.exported, _specifier4.node.local));\n\t                  }\n\t                }\n\t              }\n\t              _path.replaceWithMultiple(nodes);\n\t            } else if (_path.isExportAllDeclaration()) {\n\t              var exportNode = buildExportAll({\n\t                OBJECT: addRequire(_path.node.source.value, _path.node._blockHoist)\n\t              });\n\t              exportNode.loc = _path.node.loc;\n\t              topNodes.push(exportNode);\n\t              _path.remove();\n\t            }\n\t          }\n\n\t          for (var source in imports) {\n\t            var _imports$source = imports[source],\n\t                specifiers = _imports$source.specifiers,\n\t                maxBlockHoist = _imports$source.maxBlockHoist;\n\n\t            if (specifiers.length) {\n\t              var uid = addRequire(source, maxBlockHoist);\n\n\t              var wildcard = void 0;\n\n\t              for (var i = 0; i < specifiers.length; i++) {\n\t                var specifier = specifiers[i];\n\t                if (t.isImportNamespaceSpecifier(specifier)) {\n\t                  if (strict || noInterop) {\n\t                    remaps[specifier.local.name] = uid;\n\t                  } else {\n\t                    var varDecl = t.variableDeclaration(\"var\", [t.variableDeclarator(specifier.local, t.callExpression(this.addHelper(\"interopRequireWildcard\"), [uid]))]);\n\n\t                    if (maxBlockHoist > 0) {\n\t                      varDecl._blockHoist = maxBlockHoist;\n\t                    }\n\n\t                    topNodes.push(varDecl);\n\t                  }\n\t                  wildcard = specifier.local;\n\t                } else if (t.isImportDefaultSpecifier(specifier)) {\n\t                  specifiers[i] = t.importSpecifier(specifier.local, t.identifier(\"default\"));\n\t                }\n\t              }\n\n\t              for (var _iterator5 = specifiers, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t                var _ref5;\n\n\t                if (_isArray5) {\n\t                  if (_i5 >= _iterator5.length) break;\n\t                  _ref5 = _iterator5[_i5++];\n\t                } else {\n\t                  _i5 = _iterator5.next();\n\t                  if (_i5.done) break;\n\t                  _ref5 = _i5.value;\n\t                }\n\n\t                var _specifier = _ref5;\n\n\t                if (t.isImportSpecifier(_specifier)) {\n\t                  var target = uid;\n\t                  if (_specifier.imported.name === \"default\") {\n\t                    if (wildcard) {\n\t                      target = wildcard;\n\t                    } else if (!noInterop) {\n\t                      target = wildcard = path.scope.generateUidIdentifier(uid.name);\n\t                      var _varDecl = t.variableDeclaration(\"var\", [t.variableDeclarator(target, t.callExpression(this.addHelper(\"interopRequireDefault\"), [uid]))]);\n\n\t                      if (maxBlockHoist > 0) {\n\t                        _varDecl._blockHoist = maxBlockHoist;\n\t                      }\n\n\t                      topNodes.push(_varDecl);\n\t                    }\n\t                  }\n\t                  remaps[_specifier.local.name] = t.memberExpression(target, t.cloneWithoutLoc(_specifier.imported));\n\t                }\n\t              }\n\t            } else {\n\t              var requireNode = buildRequire(t.stringLiteral(source));\n\t              requireNode.loc = imports[source].loc;\n\t              topNodes.push(requireNode);\n\t            }\n\t          }\n\n\t          if (hasImports && (0, _keys2.default)(nonHoistedExportNames).length) {\n\t            var maxHoistedExportsNodeAssignmentLength = 100;\n\t            var nonHoistedExportNamesArr = (0, _keys2.default)(nonHoistedExportNames);\n\n\t            var _loop = function _loop(currentExportsNodeAssignmentLength) {\n\t              var nonHoistedExportNamesChunk = nonHoistedExportNamesArr.slice(currentExportsNodeAssignmentLength, currentExportsNodeAssignmentLength + maxHoistedExportsNodeAssignmentLength);\n\n\t              var hoistedExportsNode = t.identifier(\"undefined\");\n\n\t              nonHoistedExportNamesChunk.forEach(function (name) {\n\t                hoistedExportsNode = buildExportsAssignment(t.identifier(name), hoistedExportsNode).expression;\n\t              });\n\n\t              var node = t.expressionStatement(hoistedExportsNode);\n\t              node._blockHoist = 3;\n\n\t              topNodes.unshift(node);\n\t            };\n\n\t            for (var currentExportsNodeAssignmentLength = 0; currentExportsNodeAssignmentLength < nonHoistedExportNamesArr.length; currentExportsNodeAssignmentLength += maxHoistedExportsNodeAssignmentLength) {\n\t              _loop(currentExportsNodeAssignmentLength);\n\t            }\n\t          }\n\n\t          if (hasExports && !strict) {\n\t            var buildTemplate = buildExportsModuleDeclaration;\n\t            if (this.opts.loose) buildTemplate = buildLooseExportsModuleDeclaration;\n\n\t            var declar = buildTemplate();\n\t            declar._blockHoist = 3;\n\n\t            topNodes.unshift(declar);\n\t          }\n\n\t          path.unshiftContainer(\"body\", topNodes);\n\t          path.traverse(reassignmentVisitor, {\n\t            remaps: remaps,\n\t            scope: scope,\n\t            exports: exports,\n\t            requeueInParent: function requeueInParent(newPath) {\n\t              return path.requeue(newPath);\n\t            }\n\t          });\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _path2 = __webpack_require__(19);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelPluginTransformStrictMode = __webpack_require__(216);\n\n\tvar _babelPluginTransformStrictMode2 = _interopRequireDefault(_babelPluginTransformStrictMode);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildRequire = (0, _babelTemplate2.default)(\"\\n  require($0);\\n\");\n\n\tvar buildExportsModuleDeclaration = (0, _babelTemplate2.default)(\"\\n  Object.defineProperty(exports, \\\"__esModule\\\", {\\n    value: true\\n  });\\n\");\n\n\tvar buildExportsFrom = (0, _babelTemplate2.default)(\"\\n  Object.defineProperty(exports, $0, {\\n    enumerable: true,\\n    get: function () {\\n      return $1;\\n    }\\n  });\\n\");\n\n\tvar buildLooseExportsModuleDeclaration = (0, _babelTemplate2.default)(\"\\n  exports.__esModule = true;\\n\");\n\n\tvar buildExportsAssignment = (0, _babelTemplate2.default)(\"\\n  exports.$0 = $1;\\n\");\n\n\tvar buildExportAll = (0, _babelTemplate2.default)(\"\\n  Object.keys(OBJECT).forEach(function (key) {\\n    if (key === \\\"default\\\" || key === \\\"__esModule\\\") return;\\n    Object.defineProperty(exports, key, {\\n      enumerable: true,\\n      get: function () {\\n        return OBJECT[key];\\n      }\\n    });\\n  });\\n\");\n\n\tvar THIS_BREAK_KEYS = [\"FunctionExpression\", \"FunctionDeclaration\", \"ClassProperty\", \"ClassMethod\", \"ObjectMethod\"];\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 78 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function Property(path, node, scope, getObjectRef, file) {\n\t    var replaceSupers = new _babelHelperReplaceSupers2.default({\n\t      getObjectRef: getObjectRef,\n\t      methodNode: node,\n\t      methodPath: path,\n\t      isStatic: true,\n\t      scope: scope,\n\t      file: file\n\t    });\n\n\t    replaceSupers.replace();\n\t  }\n\n\t  var CONTAINS_SUPER = (0, _symbol2.default)();\n\n\t  return {\n\t    visitor: {\n\t      Super: function Super(path) {\n\t        var parentObj = path.findParent(function (path) {\n\t          return path.isObjectExpression();\n\t        });\n\t        if (parentObj) parentObj.node[CONTAINS_SUPER] = true;\n\t      },\n\n\t      ObjectExpression: {\n\t        exit: function exit(path, file) {\n\t          if (!path.node[CONTAINS_SUPER]) return;\n\n\t          var objectRef = void 0;\n\t          var getObjectRef = function getObjectRef() {\n\t            return objectRef = objectRef || path.scope.generateUidIdentifier(\"obj\");\n\t          };\n\n\t          var propPaths = path.get(\"properties\");\n\t          for (var _iterator = propPaths, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t            var _ref2;\n\n\t            if (_isArray) {\n\t              if (_i >= _iterator.length) break;\n\t              _ref2 = _iterator[_i++];\n\t            } else {\n\t              _i = _iterator.next();\n\t              if (_i.done) break;\n\t              _ref2 = _i.value;\n\t            }\n\n\t            var propPath = _ref2;\n\n\t            if (propPath.isObjectProperty()) propPath = propPath.get(\"value\");\n\t            Property(propPath, propPath.node, path.scope, getObjectRef, file);\n\t          }\n\n\t          if (objectRef) {\n\t            path.scope.push({ id: objectRef });\n\t            path.replaceWith(t.assignmentExpression(\"=\", objectRef, path.node));\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperReplaceSupers = __webpack_require__(193);\n\n\tvar _babelHelperReplaceSupers2 = _interopRequireDefault(_babelHelperReplaceSupers);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 79 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function () {\n\t  return {\n\t    visitor: _babelTraverse.visitors.merge([{\n\t      ArrowFunctionExpression: function ArrowFunctionExpression(path) {\n\t        var params = path.get(\"params\");\n\t        for (var _iterator = params, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref = _i.value;\n\t          }\n\n\t          var param = _ref;\n\n\t          if (param.isRestElement() || param.isAssignmentPattern()) {\n\t            path.arrowFunctionToShadowed();\n\t            break;\n\t          }\n\t        }\n\t      }\n\t    }, destructuring.visitor, rest.visitor, def.visitor])\n\t  };\n\t};\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _destructuring = __webpack_require__(334);\n\n\tvar destructuring = _interopRequireWildcard(_destructuring);\n\n\tvar _default = __webpack_require__(333);\n\n\tvar def = _interopRequireWildcard(_default);\n\n\tvar _rest = __webpack_require__(335);\n\n\tvar rest = _interopRequireWildcard(_rest);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 80 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      ObjectMethod: function ObjectMethod(path) {\n\t        var node = path.node;\n\n\t        if (node.kind === \"method\") {\n\t          var func = t.functionExpression(null, node.params, node.body, node.generator, node.async);\n\t          func.returnType = node.returnType;\n\n\t          path.replaceWith(t.objectProperty(node.key, func, node.computed));\n\t        }\n\t      },\n\t      ObjectProperty: function ObjectProperty(_ref) {\n\t        var node = _ref.node;\n\n\t        if (node.shorthand) {\n\t          node.shorthand = false;\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 81 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function getSpreadLiteral(spread, scope, state) {\n\t    if (state.opts.loose && !t.isIdentifier(spread.argument, { name: \"arguments\" })) {\n\t      return spread.argument;\n\t    } else {\n\t      return scope.toArray(spread.argument, true);\n\t    }\n\t  }\n\n\t  function hasSpread(nodes) {\n\t    for (var i = 0; i < nodes.length; i++) {\n\t      if (t.isSpreadElement(nodes[i])) {\n\t        return true;\n\t      }\n\t    }\n\t    return false;\n\t  }\n\n\t  function build(props, scope, state) {\n\t    var nodes = [];\n\n\t    var _props = [];\n\n\t    function push() {\n\t      if (!_props.length) return;\n\t      nodes.push(t.arrayExpression(_props));\n\t      _props = [];\n\t    }\n\n\t    for (var _iterator = props, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref2;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref2 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref2 = _i.value;\n\t      }\n\n\t      var prop = _ref2;\n\n\t      if (t.isSpreadElement(prop)) {\n\t        push();\n\t        nodes.push(getSpreadLiteral(prop, scope, state));\n\t      } else {\n\t        _props.push(prop);\n\t      }\n\t    }\n\n\t    push();\n\n\t    return nodes;\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      ArrayExpression: function ArrayExpression(path, state) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var elements = node.elements;\n\t        if (!hasSpread(elements)) return;\n\n\t        var nodes = build(elements, scope, state);\n\t        var first = nodes.shift();\n\n\t        if (!t.isArrayExpression(first)) {\n\t          nodes.unshift(first);\n\t          first = t.arrayExpression([]);\n\t        }\n\n\t        path.replaceWith(t.callExpression(t.memberExpression(first, t.identifier(\"concat\")), nodes));\n\t      },\n\t      CallExpression: function CallExpression(path, state) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var args = node.arguments;\n\t        if (!hasSpread(args)) return;\n\n\t        var calleePath = path.get(\"callee\");\n\t        if (calleePath.isSuper()) return;\n\n\t        var contextLiteral = t.identifier(\"undefined\");\n\n\t        node.arguments = [];\n\n\t        var nodes = void 0;\n\t        if (args.length === 1 && args[0].argument.name === \"arguments\") {\n\t          nodes = [args[0].argument];\n\t        } else {\n\t          nodes = build(args, scope, state);\n\t        }\n\n\t        var first = nodes.shift();\n\t        if (nodes.length) {\n\t          node.arguments.push(t.callExpression(t.memberExpression(first, t.identifier(\"concat\")), nodes));\n\t        } else {\n\t          node.arguments.push(first);\n\t        }\n\n\t        var callee = node.callee;\n\n\t        if (calleePath.isMemberExpression()) {\n\t          var temp = scope.maybeGenerateMemoised(callee.object);\n\t          if (temp) {\n\t            callee.object = t.assignmentExpression(\"=\", temp, callee.object);\n\t            contextLiteral = temp;\n\t          } else {\n\t            contextLiteral = callee.object;\n\t          }\n\t          t.appendToMemberExpression(callee, t.identifier(\"apply\"));\n\t        } else {\n\t          node.callee = t.memberExpression(node.callee, t.identifier(\"apply\"));\n\t        }\n\n\t        if (t.isSuper(contextLiteral)) {\n\t          contextLiteral = t.thisExpression();\n\t        }\n\n\t        node.arguments.unshift(contextLiteral);\n\t      },\n\t      NewExpression: function NewExpression(path, state) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var args = node.arguments;\n\t        if (!hasSpread(args)) return;\n\n\t        var nodes = build(args, scope, state);\n\n\t        var context = t.arrayExpression([t.nullLiteral()]);\n\n\t        args = t.callExpression(t.memberExpression(context, t.identifier(\"concat\")), nodes);\n\n\t        path.replaceWith(t.newExpression(t.callExpression(t.memberExpression(t.memberExpression(t.memberExpression(t.identifier(\"Function\"), t.identifier(\"prototype\")), t.identifier(\"bind\")), t.identifier(\"apply\")), [node.callee, args]), []));\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 82 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      RegExpLiteral: function RegExpLiteral(path) {\n\t        var node = path.node;\n\n\t        if (!regex.is(node, \"y\")) return;\n\n\t        path.replaceWith(t.newExpression(t.identifier(\"RegExp\"), [t.stringLiteral(node.pattern), t.stringLiteral(node.flags)]));\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperRegex = __webpack_require__(192);\n\n\tvar regex = _interopRequireWildcard(_babelHelperRegex);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 83 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function isString(node) {\n\t    return t.isLiteral(node) && typeof node.value === \"string\";\n\t  }\n\n\t  function buildBinaryExpression(left, right) {\n\t    return t.binaryExpression(\"+\", left, right);\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      TaggedTemplateExpression: function TaggedTemplateExpression(path, state) {\n\t        var node = path.node;\n\n\t        var quasi = node.quasi;\n\t        var args = [];\n\n\t        var strings = [];\n\t        var raw = [];\n\n\t        for (var _iterator = quasi.quasis, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref2;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref2 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref2 = _i.value;\n\t          }\n\n\t          var elem = _ref2;\n\n\t          strings.push(t.stringLiteral(elem.value.cooked));\n\t          raw.push(t.stringLiteral(elem.value.raw));\n\t        }\n\n\t        strings = t.arrayExpression(strings);\n\t        raw = t.arrayExpression(raw);\n\n\t        var templateName = \"taggedTemplateLiteral\";\n\t        if (state.opts.loose) templateName += \"Loose\";\n\n\t        var templateObject = state.file.addTemplateObject(templateName, strings, raw);\n\t        args.push(templateObject);\n\n\t        args = args.concat(quasi.expressions);\n\n\t        path.replaceWith(t.callExpression(node.tag, args));\n\t      },\n\t      TemplateLiteral: function TemplateLiteral(path, state) {\n\t        var nodes = [];\n\n\t        var expressions = path.get(\"expressions\");\n\n\t        for (var _iterator2 = path.node.quasis, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t          var _ref3;\n\n\t          if (_isArray2) {\n\t            if (_i2 >= _iterator2.length) break;\n\t            _ref3 = _iterator2[_i2++];\n\t          } else {\n\t            _i2 = _iterator2.next();\n\t            if (_i2.done) break;\n\t            _ref3 = _i2.value;\n\t          }\n\n\t          var elem = _ref3;\n\n\t          nodes.push(t.stringLiteral(elem.value.cooked));\n\n\t          var expr = expressions.shift();\n\t          if (expr) {\n\t            if (state.opts.spec && !expr.isBaseType(\"string\") && !expr.isBaseType(\"number\")) {\n\t              nodes.push(t.callExpression(t.identifier(\"String\"), [expr.node]));\n\t            } else {\n\t              nodes.push(expr.node);\n\t            }\n\t          }\n\t        }\n\n\t        nodes = nodes.filter(function (n) {\n\t          return !t.isLiteral(n, { value: \"\" });\n\t        });\n\n\t        if (!isString(nodes[0]) && !isString(nodes[1])) {\n\t          nodes.unshift(t.stringLiteral(\"\"));\n\t        }\n\n\t        if (nodes.length > 1) {\n\t          var root = buildBinaryExpression(nodes.shift(), nodes.shift());\n\n\t          for (var _iterator3 = nodes, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t            var _ref4;\n\n\t            if (_isArray3) {\n\t              if (_i3 >= _iterator3.length) break;\n\t              _ref4 = _iterator3[_i3++];\n\t            } else {\n\t              _i3 = _iterator3.next();\n\t              if (_i3.done) break;\n\t              _ref4 = _i3.value;\n\t            }\n\n\t            var node = _ref4;\n\n\t            root = buildBinaryExpression(root, node);\n\t          }\n\n\t          path.replaceWith(root);\n\t        } else {\n\t          path.replaceWith(nodes[0]);\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 84 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var IGNORE = (0, _symbol2.default)();\n\n\t  return {\n\t    visitor: {\n\t      Scope: function Scope(_ref2) {\n\t        var scope = _ref2.scope;\n\n\t        if (!scope.getBinding(\"Symbol\")) {\n\t          return;\n\t        }\n\n\t        scope.rename(\"Symbol\");\n\t      },\n\t      UnaryExpression: function UnaryExpression(path) {\n\t        var node = path.node,\n\t            parent = path.parent;\n\n\t        if (node[IGNORE]) return;\n\t        if (path.find(function (path) {\n\t          return path.node && !!path.node._generated;\n\t        })) return;\n\n\t        if (path.parentPath.isBinaryExpression() && t.EQUALITY_BINARY_OPERATORS.indexOf(parent.operator) >= 0) {\n\t          var opposite = path.getOpposite();\n\t          if (opposite.isLiteral() && opposite.node.value !== \"symbol\" && opposite.node.value !== \"object\") {\n\t            return;\n\t          }\n\t        }\n\n\t        if (node.operator === \"typeof\") {\n\t          var call = t.callExpression(this.addHelper(\"typeof\"), [node.argument]);\n\t          if (path.get(\"argument\").isIdentifier()) {\n\t            var undefLiteral = t.stringLiteral(\"undefined\");\n\t            var unary = t.unaryExpression(\"typeof\", node.argument);\n\t            unary[IGNORE] = true;\n\t            path.replaceWith(t.conditionalExpression(t.binaryExpression(\"===\", unary, undefLiteral), undefLiteral, call));\n\t          } else {\n\t            path.replaceWith(call);\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 85 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      RegExpLiteral: function RegExpLiteral(_ref) {\n\t        var node = _ref.node;\n\n\t        if (!regex.is(node, \"u\")) return;\n\t        node.pattern = (0, _regexpuCore2.default)(node.pattern, node.flags);\n\t        regex.pullFlag(node, \"u\");\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _regexpuCore = __webpack_require__(612);\n\n\tvar _regexpuCore2 = _interopRequireDefault(_regexpuCore);\n\n\tvar _babelHelperRegex = __webpack_require__(192);\n\n\tvar regex = _interopRequireWildcard(_babelHelperRegex);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 86 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = __webpack_require__(606);\n\n/***/ }),\n/* 87 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(408), __esModule: true };\n\n/***/ }),\n/* 88 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.scope = exports.path = undefined;\n\n\tvar _weakMap = __webpack_require__(364);\n\n\tvar _weakMap2 = _interopRequireDefault(_weakMap);\n\n\texports.clear = clear;\n\texports.clearPath = clearPath;\n\texports.clearScope = clearScope;\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar path = exports.path = new _weakMap2.default();\n\tvar scope = exports.scope = new _weakMap2.default();\n\n\tfunction clear() {\n\t  clearPath();\n\t  clearScope();\n\t}\n\n\tfunction clearPath() {\n\t  exports.path = path = new _weakMap2.default();\n\t}\n\n\tfunction clearScope() {\n\t  exports.scope = scope = new _weakMap2.default();\n\t}\n\n/***/ }),\n/* 89 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof2 = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tObject.defineProperty(exports, '__esModule', { value: true });\n\n\t/* eslint max-len: 0 */\n\n\t// This is a trick taken from Esprima. It turns out that, on\n\t// non-Chrome browsers, to check whether a string is in a set, a\n\t// predicate containing a big ugly `switch` statement is faster than\n\t// a regular expression, and on Chrome the two are about on par.\n\t// This function uses `eval` (non-lexical) to produce such a\n\t// predicate from a space-separated string of words.\n\t//\n\t// It starts by sorting the words by length.\n\n\tfunction makePredicate(words) {\n\t  words = words.split(\" \");\n\t  return function (str) {\n\t    return words.indexOf(str) >= 0;\n\t  };\n\t}\n\n\t// Reserved word lists for various dialects of the language\n\n\tvar reservedWords = {\n\t  6: makePredicate(\"enum await\"),\n\t  strict: makePredicate(\"implements interface let package private protected public static yield\"),\n\t  strictBind: makePredicate(\"eval arguments\")\n\t};\n\n\t// And the keywords\n\n\tvar isKeyword = makePredicate(\"break case catch continue debugger default do else finally for function if return switch throw try var while with null true false instanceof typeof void delete new in this let const class extends export import yield super\");\n\n\t// ## Character categories\n\n\t// Big ugly regular expressions that match characters in the\n\t// whitespace, identifier, and identifier-start categories. These\n\t// are only applied when a character is found to actually have a\n\t// code point above 128.\n\t// Generated by `bin/generate-identifier-regex.js`.\n\n\tvar nonASCIIidentifierStartChars = '\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0-\\u08B4\\u08B6-\\u08BD\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0AF9\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D\\u0C58-\\u0C5A\\u0C60\\u0C61\\u0C80\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D54-\\u0D56\\u0D5F-\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F5\\u13F8-\\u13FD\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19B0-\\u19C9\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1C80-\\u1C88\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2118-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309B-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FD5\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA69D\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA7AE\\uA7B0-\\uA7B7\\uA7F7-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA8FD\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uA9E0-\\uA9E4\\uA9E6-\\uA9EF\\uA9FA-\\uA9FE\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA7E-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB65\\uAB70-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC';\n\tvar nonASCIIidentifierChars = '\\u200C\\u200D\\xB7\\u0300-\\u036F\\u0387\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u0669\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u06F0-\\u06F9\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07C0-\\u07C9\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0859-\\u085B\\u08D4-\\u08E1\\u08E3-\\u0903\\u093A-\\u093C\\u093E-\\u094F\\u0951-\\u0957\\u0962\\u0963\\u0966-\\u096F\\u0981-\\u0983\\u09BC\\u09BE-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CD\\u09D7\\u09E2\\u09E3\\u09E6-\\u09EF\\u0A01-\\u0A03\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A66-\\u0A71\\u0A75\\u0A81-\\u0A83\\u0ABC\\u0ABE-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AE2\\u0AE3\\u0AE6-\\u0AEF\\u0B01-\\u0B03\\u0B3C\\u0B3E-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B62\\u0B63\\u0B66-\\u0B6F\\u0B82\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD7\\u0BE6-\\u0BEF\\u0C00-\\u0C03\\u0C3E-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0C66-\\u0C6F\\u0C81-\\u0C83\\u0CBC\\u0CBE-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CE2\\u0CE3\\u0CE6-\\u0CEF\\u0D01-\\u0D03\\u0D3E-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4D\\u0D57\\u0D62\\u0D63\\u0D66-\\u0D6F\\u0D82\\u0D83\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DE6-\\u0DEF\\u0DF2\\u0DF3\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0E50-\\u0E59\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0ED0-\\u0ED9\\u0F18\\u0F19\\u0F20-\\u0F29\\u0F35\\u0F37\\u0F39\\u0F3E\\u0F3F\\u0F71-\\u0F84\\u0F86\\u0F87\\u0F8D-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102B-\\u103E\\u1040-\\u1049\\u1056-\\u1059\\u105E-\\u1060\\u1062-\\u1064\\u1067-\\u106D\\u1071-\\u1074\\u1082-\\u108D\\u108F-\\u109D\\u135D-\\u135F\\u1369-\\u1371\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B4-\\u17D3\\u17DD\\u17E0-\\u17E9\\u180B-\\u180D\\u1810-\\u1819\\u18A9\\u1920-\\u192B\\u1930-\\u193B\\u1946-\\u194F\\u19D0-\\u19DA\\u1A17-\\u1A1B\\u1A55-\\u1A5E\\u1A60-\\u1A7C\\u1A7F-\\u1A89\\u1A90-\\u1A99\\u1AB0-\\u1ABD\\u1B00-\\u1B04\\u1B34-\\u1B44\\u1B50-\\u1B59\\u1B6B-\\u1B73\\u1B80-\\u1B82\\u1BA1-\\u1BAD\\u1BB0-\\u1BB9\\u1BE6-\\u1BF3\\u1C24-\\u1C37\\u1C40-\\u1C49\\u1C50-\\u1C59\\u1CD0-\\u1CD2\\u1CD4-\\u1CE8\\u1CED\\u1CF2-\\u1CF4\\u1CF8\\u1CF9\\u1DC0-\\u1DF5\\u1DFB-\\u1DFF\\u203F\\u2040\\u2054\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2D7F\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA620-\\uA629\\uA66F\\uA674-\\uA67D\\uA69E\\uA69F\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA823-\\uA827\\uA880\\uA881\\uA8B4-\\uA8C5\\uA8D0-\\uA8D9\\uA8E0-\\uA8F1\\uA900-\\uA909\\uA926-\\uA92D\\uA947-\\uA953\\uA980-\\uA983\\uA9B3-\\uA9C0\\uA9D0-\\uA9D9\\uA9E5\\uA9F0-\\uA9F9\\uAA29-\\uAA36\\uAA43\\uAA4C\\uAA4D\\uAA50-\\uAA59\\uAA7B-\\uAA7D\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uAAEB-\\uAAEF\\uAAF5\\uAAF6\\uABE3-\\uABEA\\uABEC\\uABED\\uABF0-\\uABF9\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE2F\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF10-\\uFF19\\uFF3F';\n\n\tvar nonASCIIidentifierStart = new RegExp(\"[\" + nonASCIIidentifierStartChars + \"]\");\n\tvar nonASCIIidentifier = new RegExp(\"[\" + nonASCIIidentifierStartChars + nonASCIIidentifierChars + \"]\");\n\n\tnonASCIIidentifierStartChars = nonASCIIidentifierChars = null;\n\n\t// These are a run-length and offset encoded representation of the\n\t// >0xffff code points that are a valid part of identifiers. The\n\t// offset starts at 0x10000, and each pair of numbers represents an\n\t// offset to the next range, and then a size of the range. They were\n\t// generated by `bin/generate-identifier-regex.js`.\n\t// eslint-disable-next-line comma-spacing\n\tvar astralIdentifierStartCodes = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 17, 26, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 19, 35, 5, 35, 5, 39, 9, 51, 157, 310, 10, 21, 11, 7, 153, 5, 3, 0, 2, 43, 2, 1, 4, 0, 3, 22, 11, 22, 10, 30, 66, 18, 2, 1, 11, 21, 11, 25, 71, 55, 7, 1, 65, 0, 16, 3, 2, 2, 2, 26, 45, 28, 4, 28, 36, 7, 2, 27, 28, 53, 11, 21, 11, 18, 14, 17, 111, 72, 56, 50, 14, 50, 785, 52, 76, 44, 33, 24, 27, 35, 42, 34, 4, 0, 13, 47, 15, 3, 22, 0, 2, 0, 36, 17, 2, 24, 85, 6, 2, 0, 2, 3, 2, 14, 2, 9, 8, 46, 39, 7, 3, 1, 3, 21, 2, 6, 2, 1, 2, 4, 4, 0, 19, 0, 13, 4, 159, 52, 19, 3, 54, 47, 21, 1, 2, 0, 185, 46, 42, 3, 37, 47, 21, 0, 60, 42, 86, 25, 391, 63, 32, 0, 449, 56, 264, 8, 2, 36, 18, 0, 50, 29, 881, 921, 103, 110, 18, 195, 2749, 1070, 4050, 582, 8634, 568, 8, 30, 114, 29, 19, 47, 17, 3, 32, 20, 6, 18, 881, 68, 12, 0, 67, 12, 65, 0, 32, 6124, 20, 754, 9486, 1, 3071, 106, 6, 12, 4, 8, 8, 9, 5991, 84, 2, 70, 2, 1, 3, 0, 3, 1, 3, 3, 2, 11, 2, 0, 2, 6, 2, 64, 2, 3, 3, 7, 2, 6, 2, 27, 2, 3, 2, 4, 2, 0, 4, 6, 2, 339, 3, 24, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 7, 4149, 196, 60, 67, 1213, 3, 2, 26, 2, 1, 2, 0, 3, 0, 2, 9, 2, 3, 2, 0, 2, 0, 7, 0, 5, 0, 2, 0, 2, 0, 2, 2, 2, 1, 2, 0, 3, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 3, 3, 2, 6, 2, 3, 2, 3, 2, 0, 2, 9, 2, 16, 6, 2, 2, 4, 2, 16, 4421, 42710, 42, 4148, 12, 221, 3, 5761, 10591, 541];\n\t// eslint-disable-next-line comma-spacing\n\tvar astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 1306, 2, 54, 14, 32, 9, 16, 3, 46, 10, 54, 9, 7, 2, 37, 13, 2, 9, 52, 0, 13, 2, 49, 13, 10, 2, 4, 9, 83, 11, 7, 0, 161, 11, 6, 9, 7, 3, 57, 0, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 193, 17, 10, 9, 87, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 84, 14, 5, 9, 423, 9, 838, 7, 2, 7, 17, 9, 57, 21, 2, 13, 19882, 9, 135, 4, 60, 6, 26, 9, 1016, 45, 17, 3, 19723, 1, 5319, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 513, 54, 5, 49, 9, 0, 15, 0, 23, 4, 2, 14, 1361, 6, 2, 16, 3, 6, 2, 1, 2, 4, 2214, 6, 110, 6, 6, 9, 792487, 239];\n\n\t// This has a complexity linear to the value of the code. The\n\t// assumption is that looking up astral identifier characters is\n\t// rare.\n\tfunction isInAstralSet(code, set) {\n\t  var pos = 0x10000;\n\t  for (var i = 0; i < set.length; i += 2) {\n\t    pos += set[i];\n\t    if (pos > code) return false;\n\n\t    pos += set[i + 1];\n\t    if (pos >= code) return true;\n\t  }\n\t}\n\n\t// Test whether a given character code starts an identifier.\n\n\tfunction isIdentifierStart(code) {\n\t  if (code < 65) return code === 36;\n\t  if (code < 91) return true;\n\t  if (code < 97) return code === 95;\n\t  if (code < 123) return true;\n\t  if (code <= 0xffff) return code >= 0xaa && nonASCIIidentifierStart.test(String.fromCharCode(code));\n\t  return isInAstralSet(code, astralIdentifierStartCodes);\n\t}\n\n\t// Test whether a given character is part of an identifier.\n\n\tfunction isIdentifierChar(code) {\n\t  if (code < 48) return code === 36;\n\t  if (code < 58) return true;\n\t  if (code < 65) return false;\n\t  if (code < 91) return true;\n\t  if (code < 97) return code === 95;\n\t  if (code < 123) return true;\n\t  if (code <= 0xffff) return code >= 0xaa && nonASCIIidentifier.test(String.fromCharCode(code));\n\t  return isInAstralSet(code, astralIdentifierStartCodes) || isInAstralSet(code, astralIdentifierCodes);\n\t}\n\n\t// A second optional argument can be given to further configure\n\tvar defaultOptions = {\n\t  // Source type (\"script\" or \"module\") for different semantics\n\t  sourceType: \"script\",\n\t  // Source filename.\n\t  sourceFilename: undefined,\n\t  // Line from which to start counting source. Useful for\n\t  // integration with other tools.\n\t  startLine: 1,\n\t  // When enabled, a return at the top level is not considered an\n\t  // error.\n\t  allowReturnOutsideFunction: false,\n\t  // When enabled, import/export statements are not constrained to\n\t  // appearing at the top of the program.\n\t  allowImportExportEverywhere: false,\n\t  // TODO\n\t  allowSuperOutsideMethod: false,\n\t  // An array of plugins to enable\n\t  plugins: [],\n\t  // TODO\n\t  strictMode: null\n\t};\n\n\t// Interpret and default an options object\n\n\tfunction getOptions(opts) {\n\t  var options = {};\n\t  for (var key in defaultOptions) {\n\t    options[key] = opts && key in opts ? opts[key] : defaultOptions[key];\n\t  }\n\t  return options;\n\t}\n\n\tvar _typeof = typeof Symbol === \"function\" && _typeof2(Symbol.iterator) === \"symbol\" ? function (obj) {\n\t  return typeof obj === 'undefined' ? 'undefined' : _typeof2(obj);\n\t} : function (obj) {\n\t  return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj === 'undefined' ? 'undefined' : _typeof2(obj);\n\t};\n\n\tvar classCallCheck = function classCallCheck(instance, Constructor) {\n\t  if (!(instance instanceof Constructor)) {\n\t    throw new TypeError(\"Cannot call a class as a function\");\n\t  }\n\t};\n\n\tvar inherits = function inherits(subClass, superClass) {\n\t  if (typeof superClass !== \"function\" && superClass !== null) {\n\t    throw new TypeError(\"Super expression must either be null or a function, not \" + (typeof superClass === 'undefined' ? 'undefined' : _typeof2(superClass)));\n\t  }\n\n\t  subClass.prototype = Object.create(superClass && superClass.prototype, {\n\t    constructor: {\n\t      value: subClass,\n\t      enumerable: false,\n\t      writable: true,\n\t      configurable: true\n\t    }\n\t  });\n\t  if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;\n\t};\n\n\tvar possibleConstructorReturn = function possibleConstructorReturn(self, call) {\n\t  if (!self) {\n\t    throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n\t  }\n\n\t  return call && ((typeof call === 'undefined' ? 'undefined' : _typeof2(call)) === \"object\" || typeof call === \"function\") ? call : self;\n\t};\n\n\t// ## Token types\n\n\t// The assignment of fine-grained, information-carrying type objects\n\t// allows the tokenizer to store the information it has about a\n\t// token in a way that is very cheap for the parser to look up.\n\n\t// All token type variables start with an underscore, to make them\n\t// easy to recognize.\n\n\t// The `beforeExpr` property is used to disambiguate between regular\n\t// expressions and divisions. It is set on all token types that can\n\t// be followed by an expression (thus, a slash after them would be a\n\t// regular expression).\n\t//\n\t// `isLoop` marks a keyword as starting a loop, which is important\n\t// to know when parsing a label, in order to allow or disallow\n\t// continue jumps to that label.\n\n\tvar beforeExpr = true;\n\tvar startsExpr = true;\n\tvar isLoop = true;\n\tvar isAssign = true;\n\tvar prefix = true;\n\tvar postfix = true;\n\n\tvar TokenType = function TokenType(label) {\n\t  var conf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t  classCallCheck(this, TokenType);\n\n\t  this.label = label;\n\t  this.keyword = conf.keyword;\n\t  this.beforeExpr = !!conf.beforeExpr;\n\t  this.startsExpr = !!conf.startsExpr;\n\t  this.rightAssociative = !!conf.rightAssociative;\n\t  this.isLoop = !!conf.isLoop;\n\t  this.isAssign = !!conf.isAssign;\n\t  this.prefix = !!conf.prefix;\n\t  this.postfix = !!conf.postfix;\n\t  this.binop = conf.binop || null;\n\t  this.updateContext = null;\n\t};\n\n\tvar KeywordTokenType = function (_TokenType) {\n\t  inherits(KeywordTokenType, _TokenType);\n\n\t  function KeywordTokenType(name) {\n\t    var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t    classCallCheck(this, KeywordTokenType);\n\n\t    options.keyword = name;\n\n\t    return possibleConstructorReturn(this, _TokenType.call(this, name, options));\n\t  }\n\n\t  return KeywordTokenType;\n\t}(TokenType);\n\n\tvar BinopTokenType = function (_TokenType2) {\n\t  inherits(BinopTokenType, _TokenType2);\n\n\t  function BinopTokenType(name, prec) {\n\t    classCallCheck(this, BinopTokenType);\n\t    return possibleConstructorReturn(this, _TokenType2.call(this, name, { beforeExpr: beforeExpr, binop: prec }));\n\t  }\n\n\t  return BinopTokenType;\n\t}(TokenType);\n\n\tvar types = {\n\t  num: new TokenType(\"num\", { startsExpr: startsExpr }),\n\t  regexp: new TokenType(\"regexp\", { startsExpr: startsExpr }),\n\t  string: new TokenType(\"string\", { startsExpr: startsExpr }),\n\t  name: new TokenType(\"name\", { startsExpr: startsExpr }),\n\t  eof: new TokenType(\"eof\"),\n\n\t  // Punctuation token types.\n\t  bracketL: new TokenType(\"[\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  bracketR: new TokenType(\"]\"),\n\t  braceL: new TokenType(\"{\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  braceBarL: new TokenType(\"{|\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  braceR: new TokenType(\"}\"),\n\t  braceBarR: new TokenType(\"|}\"),\n\t  parenL: new TokenType(\"(\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  parenR: new TokenType(\")\"),\n\t  comma: new TokenType(\",\", { beforeExpr: beforeExpr }),\n\t  semi: new TokenType(\";\", { beforeExpr: beforeExpr }),\n\t  colon: new TokenType(\":\", { beforeExpr: beforeExpr }),\n\t  doubleColon: new TokenType(\"::\", { beforeExpr: beforeExpr }),\n\t  dot: new TokenType(\".\"),\n\t  question: new TokenType(\"?\", { beforeExpr: beforeExpr }),\n\t  arrow: new TokenType(\"=>\", { beforeExpr: beforeExpr }),\n\t  template: new TokenType(\"template\"),\n\t  ellipsis: new TokenType(\"...\", { beforeExpr: beforeExpr }),\n\t  backQuote: new TokenType(\"`\", { startsExpr: startsExpr }),\n\t  dollarBraceL: new TokenType(\"${\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  at: new TokenType(\"@\"),\n\n\t  // Operators. These carry several kinds of properties to help the\n\t  // parser use them properly (the presence of these properties is\n\t  // what categorizes them as operators).\n\t  //\n\t  // `binop`, when present, specifies that this operator is a binary\n\t  // operator, and will refer to its precedence.\n\t  //\n\t  // `prefix` and `postfix` mark the operator as a prefix or postfix\n\t  // unary operator.\n\t  //\n\t  // `isAssign` marks all of `=`, `+=`, `-=` etcetera, which act as\n\t  // binary operators with a very low precedence, that should result\n\t  // in AssignmentExpression nodes.\n\n\t  eq: new TokenType(\"=\", { beforeExpr: beforeExpr, isAssign: isAssign }),\n\t  assign: new TokenType(\"_=\", { beforeExpr: beforeExpr, isAssign: isAssign }),\n\t  incDec: new TokenType(\"++/--\", { prefix: prefix, postfix: postfix, startsExpr: startsExpr }),\n\t  prefix: new TokenType(\"prefix\", { beforeExpr: beforeExpr, prefix: prefix, startsExpr: startsExpr }),\n\t  logicalOR: new BinopTokenType(\"||\", 1),\n\t  logicalAND: new BinopTokenType(\"&&\", 2),\n\t  bitwiseOR: new BinopTokenType(\"|\", 3),\n\t  bitwiseXOR: new BinopTokenType(\"^\", 4),\n\t  bitwiseAND: new BinopTokenType(\"&\", 5),\n\t  equality: new BinopTokenType(\"==/!=\", 6),\n\t  relational: new BinopTokenType(\"</>\", 7),\n\t  bitShift: new BinopTokenType(\"<</>>\", 8),\n\t  plusMin: new TokenType(\"+/-\", { beforeExpr: beforeExpr, binop: 9, prefix: prefix, startsExpr: startsExpr }),\n\t  modulo: new BinopTokenType(\"%\", 10),\n\t  star: new BinopTokenType(\"*\", 10),\n\t  slash: new BinopTokenType(\"/\", 10),\n\t  exponent: new TokenType(\"**\", { beforeExpr: beforeExpr, binop: 11, rightAssociative: true })\n\t};\n\n\tvar keywords = {\n\t  \"break\": new KeywordTokenType(\"break\"),\n\t  \"case\": new KeywordTokenType(\"case\", { beforeExpr: beforeExpr }),\n\t  \"catch\": new KeywordTokenType(\"catch\"),\n\t  \"continue\": new KeywordTokenType(\"continue\"),\n\t  \"debugger\": new KeywordTokenType(\"debugger\"),\n\t  \"default\": new KeywordTokenType(\"default\", { beforeExpr: beforeExpr }),\n\t  \"do\": new KeywordTokenType(\"do\", { isLoop: isLoop, beforeExpr: beforeExpr }),\n\t  \"else\": new KeywordTokenType(\"else\", { beforeExpr: beforeExpr }),\n\t  \"finally\": new KeywordTokenType(\"finally\"),\n\t  \"for\": new KeywordTokenType(\"for\", { isLoop: isLoop }),\n\t  \"function\": new KeywordTokenType(\"function\", { startsExpr: startsExpr }),\n\t  \"if\": new KeywordTokenType(\"if\"),\n\t  \"return\": new KeywordTokenType(\"return\", { beforeExpr: beforeExpr }),\n\t  \"switch\": new KeywordTokenType(\"switch\"),\n\t  \"throw\": new KeywordTokenType(\"throw\", { beforeExpr: beforeExpr }),\n\t  \"try\": new KeywordTokenType(\"try\"),\n\t  \"var\": new KeywordTokenType(\"var\"),\n\t  \"let\": new KeywordTokenType(\"let\"),\n\t  \"const\": new KeywordTokenType(\"const\"),\n\t  \"while\": new KeywordTokenType(\"while\", { isLoop: isLoop }),\n\t  \"with\": new KeywordTokenType(\"with\"),\n\t  \"new\": new KeywordTokenType(\"new\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  \"this\": new KeywordTokenType(\"this\", { startsExpr: startsExpr }),\n\t  \"super\": new KeywordTokenType(\"super\", { startsExpr: startsExpr }),\n\t  \"class\": new KeywordTokenType(\"class\"),\n\t  \"extends\": new KeywordTokenType(\"extends\", { beforeExpr: beforeExpr }),\n\t  \"export\": new KeywordTokenType(\"export\"),\n\t  \"import\": new KeywordTokenType(\"import\", { startsExpr: startsExpr }),\n\t  \"yield\": new KeywordTokenType(\"yield\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  \"null\": new KeywordTokenType(\"null\", { startsExpr: startsExpr }),\n\t  \"true\": new KeywordTokenType(\"true\", { startsExpr: startsExpr }),\n\t  \"false\": new KeywordTokenType(\"false\", { startsExpr: startsExpr }),\n\t  \"in\": new KeywordTokenType(\"in\", { beforeExpr: beforeExpr, binop: 7 }),\n\t  \"instanceof\": new KeywordTokenType(\"instanceof\", { beforeExpr: beforeExpr, binop: 7 }),\n\t  \"typeof\": new KeywordTokenType(\"typeof\", { beforeExpr: beforeExpr, prefix: prefix, startsExpr: startsExpr }),\n\t  \"void\": new KeywordTokenType(\"void\", { beforeExpr: beforeExpr, prefix: prefix, startsExpr: startsExpr }),\n\t  \"delete\": new KeywordTokenType(\"delete\", { beforeExpr: beforeExpr, prefix: prefix, startsExpr: startsExpr })\n\t};\n\n\t// Map keyword names to token types.\n\tObject.keys(keywords).forEach(function (name) {\n\t  types[\"_\" + name] = keywords[name];\n\t});\n\n\t// Matches a whole line break (where CRLF is considered a single\n\t// line break). Used to count lines.\n\n\tvar lineBreak = /\\r\\n?|\\n|\\u2028|\\u2029/;\n\tvar lineBreakG = new RegExp(lineBreak.source, \"g\");\n\n\tfunction isNewLine(code) {\n\t  return code === 10 || code === 13 || code === 0x2028 || code === 0x2029;\n\t}\n\n\tvar nonASCIIwhitespace = /[\\u1680\\u180e\\u2000-\\u200a\\u202f\\u205f\\u3000\\ufeff]/;\n\n\t// The algorithm used to determine whether a regexp can appear at a\n\t// given point in the program is loosely based on sweet.js' approach.\n\t// See https://github.com/mozilla/sweet.js/wiki/design\n\n\tvar TokContext = function TokContext(token, isExpr, preserveSpace, override) {\n\t  classCallCheck(this, TokContext);\n\n\t  this.token = token;\n\t  this.isExpr = !!isExpr;\n\t  this.preserveSpace = !!preserveSpace;\n\t  this.override = override;\n\t};\n\n\tvar types$1 = {\n\t  braceStatement: new TokContext(\"{\", false),\n\t  braceExpression: new TokContext(\"{\", true),\n\t  templateQuasi: new TokContext(\"${\", true),\n\t  parenStatement: new TokContext(\"(\", false),\n\t  parenExpression: new TokContext(\"(\", true),\n\t  template: new TokContext(\"`\", true, true, function (p) {\n\t    return p.readTmplToken();\n\t  }),\n\t  functionExpression: new TokContext(\"function\", true)\n\t};\n\n\t// Token-specific context update code\n\n\ttypes.parenR.updateContext = types.braceR.updateContext = function () {\n\t  if (this.state.context.length === 1) {\n\t    this.state.exprAllowed = true;\n\t    return;\n\t  }\n\n\t  var out = this.state.context.pop();\n\t  if (out === types$1.braceStatement && this.curContext() === types$1.functionExpression) {\n\t    this.state.context.pop();\n\t    this.state.exprAllowed = false;\n\t  } else if (out === types$1.templateQuasi) {\n\t    this.state.exprAllowed = true;\n\t  } else {\n\t    this.state.exprAllowed = !out.isExpr;\n\t  }\n\t};\n\n\ttypes.name.updateContext = function (prevType) {\n\t  this.state.exprAllowed = false;\n\n\t  if (prevType === types._let || prevType === types._const || prevType === types._var) {\n\t    if (lineBreak.test(this.input.slice(this.state.end))) {\n\t      this.state.exprAllowed = true;\n\t    }\n\t  }\n\t};\n\n\ttypes.braceL.updateContext = function (prevType) {\n\t  this.state.context.push(this.braceIsBlock(prevType) ? types$1.braceStatement : types$1.braceExpression);\n\t  this.state.exprAllowed = true;\n\t};\n\n\ttypes.dollarBraceL.updateContext = function () {\n\t  this.state.context.push(types$1.templateQuasi);\n\t  this.state.exprAllowed = true;\n\t};\n\n\ttypes.parenL.updateContext = function (prevType) {\n\t  var statementParens = prevType === types._if || prevType === types._for || prevType === types._with || prevType === types._while;\n\t  this.state.context.push(statementParens ? types$1.parenStatement : types$1.parenExpression);\n\t  this.state.exprAllowed = true;\n\t};\n\n\ttypes.incDec.updateContext = function () {\n\t  // tokExprAllowed stays unchanged\n\t};\n\n\ttypes._function.updateContext = function () {\n\t  if (this.curContext() !== types$1.braceStatement) {\n\t    this.state.context.push(types$1.functionExpression);\n\t  }\n\n\t  this.state.exprAllowed = false;\n\t};\n\n\ttypes.backQuote.updateContext = function () {\n\t  if (this.curContext() === types$1.template) {\n\t    this.state.context.pop();\n\t  } else {\n\t    this.state.context.push(types$1.template);\n\t  }\n\t  this.state.exprAllowed = false;\n\t};\n\n\t// These are used when `options.locations` is on, for the\n\t// `startLoc` and `endLoc` properties.\n\n\tvar Position = function Position(line, col) {\n\t  classCallCheck(this, Position);\n\n\t  this.line = line;\n\t  this.column = col;\n\t};\n\n\tvar SourceLocation = function SourceLocation(start, end) {\n\t  classCallCheck(this, SourceLocation);\n\n\t  this.start = start;\n\t  this.end = end;\n\t};\n\n\t// The `getLineInfo` function is mostly useful when the\n\t// `locations` option is off (for performance reasons) and you\n\t// want to find the line/column position for a given character\n\t// offset. `input` should be the code string that the offset refers\n\t// into.\n\n\tfunction getLineInfo(input, offset) {\n\t  for (var line = 1, cur = 0;;) {\n\t    lineBreakG.lastIndex = cur;\n\t    var match = lineBreakG.exec(input);\n\t    if (match && match.index < offset) {\n\t      ++line;\n\t      cur = match.index + match[0].length;\n\t    } else {\n\t      return new Position(line, offset - cur);\n\t    }\n\t  }\n\t}\n\n\tvar State = function () {\n\t  function State() {\n\t    classCallCheck(this, State);\n\t  }\n\n\t  State.prototype.init = function init(options, input) {\n\t    this.strict = options.strictMode === false ? false : options.sourceType === \"module\";\n\n\t    this.input = input;\n\n\t    this.potentialArrowAt = -1;\n\n\t    this.inMethod = this.inFunction = this.inGenerator = this.inAsync = this.inPropertyName = this.inType = this.inClassProperty = this.noAnonFunctionType = false;\n\n\t    this.labels = [];\n\n\t    this.decorators = [];\n\n\t    this.tokens = [];\n\n\t    this.comments = [];\n\n\t    this.trailingComments = [];\n\t    this.leadingComments = [];\n\t    this.commentStack = [];\n\n\t    this.pos = this.lineStart = 0;\n\t    this.curLine = options.startLine;\n\n\t    this.type = types.eof;\n\t    this.value = null;\n\t    this.start = this.end = this.pos;\n\t    this.startLoc = this.endLoc = this.curPosition();\n\n\t    this.lastTokEndLoc = this.lastTokStartLoc = null;\n\t    this.lastTokStart = this.lastTokEnd = this.pos;\n\n\t    this.context = [types$1.braceStatement];\n\t    this.exprAllowed = true;\n\n\t    this.containsEsc = this.containsOctal = false;\n\t    this.octalPosition = null;\n\n\t    this.invalidTemplateEscapePosition = null;\n\n\t    this.exportedIdentifiers = [];\n\n\t    return this;\n\t  };\n\n\t  // TODO\n\n\n\t  // TODO\n\n\n\t  // Used to signify the start of a potential arrow function\n\n\n\t  // Flags to track whether we are in a function, a generator.\n\n\n\t  // Labels in scope.\n\n\n\t  // Leading decorators.\n\n\n\t  // Token store.\n\n\n\t  // Comment store.\n\n\n\t  // Comment attachment store\n\n\n\t  // The current position of the tokenizer in the input.\n\n\n\t  // Properties of the current token:\n\t  // Its type\n\n\n\t  // For tokens that include more information than their type, the value\n\n\n\t  // Its start and end offset\n\n\n\t  // And, if locations are used, the {line, column} object\n\t  // corresponding to those offsets\n\n\n\t  // Position information for the previous token\n\n\n\t  // The context stack is used to superficially track syntactic\n\t  // context to predict whether a regular expression is allowed in a\n\t  // given position.\n\n\n\t  // Used to signal to callers of `readWord1` whether the word\n\t  // contained any escape sequences. This is needed because words with\n\t  // escape sequences must not be interpreted as keywords.\n\n\n\t  // TODO\n\n\n\t  // Names of exports store. `default` is stored as a name for both\n\t  // `export default foo;` and `export { foo as default };`.\n\n\n\t  State.prototype.curPosition = function curPosition() {\n\t    return new Position(this.curLine, this.pos - this.lineStart);\n\t  };\n\n\t  State.prototype.clone = function clone(skipArrays) {\n\t    var state = new State();\n\t    for (var key in this) {\n\t      var val = this[key];\n\n\t      if ((!skipArrays || key === \"context\") && Array.isArray(val)) {\n\t        val = val.slice();\n\t      }\n\n\t      state[key] = val;\n\t    }\n\t    return state;\n\t  };\n\n\t  return State;\n\t}();\n\n\t// Object type used to represent tokens. Note that normally, tokens\n\t// simply exist as properties on the parser object. This is only\n\t// used for the onToken callback and the external tokenizer.\n\n\tvar Token = function Token(state) {\n\t  classCallCheck(this, Token);\n\n\t  this.type = state.type;\n\t  this.value = state.value;\n\t  this.start = state.start;\n\t  this.end = state.end;\n\t  this.loc = new SourceLocation(state.startLoc, state.endLoc);\n\t};\n\n\t// ## Tokenizer\n\n\tfunction codePointToString(code) {\n\t  // UTF-16 Decoding\n\t  if (code <= 0xFFFF) {\n\t    return String.fromCharCode(code);\n\t  } else {\n\t    return String.fromCharCode((code - 0x10000 >> 10) + 0xD800, (code - 0x10000 & 1023) + 0xDC00);\n\t  }\n\t}\n\n\tvar Tokenizer = function () {\n\t  function Tokenizer(options, input) {\n\t    classCallCheck(this, Tokenizer);\n\n\t    this.state = new State();\n\t    this.state.init(options, input);\n\t  }\n\n\t  // Move to the next token\n\n\t  Tokenizer.prototype.next = function next() {\n\t    if (!this.isLookahead) {\n\t      this.state.tokens.push(new Token(this.state));\n\t    }\n\n\t    this.state.lastTokEnd = this.state.end;\n\t    this.state.lastTokStart = this.state.start;\n\t    this.state.lastTokEndLoc = this.state.endLoc;\n\t    this.state.lastTokStartLoc = this.state.startLoc;\n\t    this.nextToken();\n\t  };\n\n\t  // TODO\n\n\t  Tokenizer.prototype.eat = function eat(type) {\n\t    if (this.match(type)) {\n\t      this.next();\n\t      return true;\n\t    } else {\n\t      return false;\n\t    }\n\t  };\n\n\t  // TODO\n\n\t  Tokenizer.prototype.match = function match(type) {\n\t    return this.state.type === type;\n\t  };\n\n\t  // TODO\n\n\t  Tokenizer.prototype.isKeyword = function isKeyword$$1(word) {\n\t    return isKeyword(word);\n\t  };\n\n\t  // TODO\n\n\t  Tokenizer.prototype.lookahead = function lookahead() {\n\t    var old = this.state;\n\t    this.state = old.clone(true);\n\n\t    this.isLookahead = true;\n\t    this.next();\n\t    this.isLookahead = false;\n\n\t    var curr = this.state.clone(true);\n\t    this.state = old;\n\t    return curr;\n\t  };\n\n\t  // Toggle strict mode. Re-reads the next number or string to please\n\t  // pedantic tests (`\"use strict\"; 010;` should fail).\n\n\t  Tokenizer.prototype.setStrict = function setStrict(strict) {\n\t    this.state.strict = strict;\n\t    if (!this.match(types.num) && !this.match(types.string)) return;\n\t    this.state.pos = this.state.start;\n\t    while (this.state.pos < this.state.lineStart) {\n\t      this.state.lineStart = this.input.lastIndexOf(\"\\n\", this.state.lineStart - 2) + 1;\n\t      --this.state.curLine;\n\t    }\n\t    this.nextToken();\n\t  };\n\n\t  Tokenizer.prototype.curContext = function curContext() {\n\t    return this.state.context[this.state.context.length - 1];\n\t  };\n\n\t  // Read a single token, updating the parser object's token-related\n\t  // properties.\n\n\t  Tokenizer.prototype.nextToken = function nextToken() {\n\t    var curContext = this.curContext();\n\t    if (!curContext || !curContext.preserveSpace) this.skipSpace();\n\n\t    this.state.containsOctal = false;\n\t    this.state.octalPosition = null;\n\t    this.state.start = this.state.pos;\n\t    this.state.startLoc = this.state.curPosition();\n\t    if (this.state.pos >= this.input.length) return this.finishToken(types.eof);\n\n\t    if (curContext.override) {\n\t      return curContext.override(this);\n\t    } else {\n\t      return this.readToken(this.fullCharCodeAtPos());\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.readToken = function readToken(code) {\n\t    // Identifier or keyword. '\\uXXXX' sequences are allowed in\n\t    // identifiers, so '\\' also dispatches to that.\n\t    if (isIdentifierStart(code) || code === 92 /* '\\' */) {\n\t        return this.readWord();\n\t      } else {\n\t      return this.getTokenFromCode(code);\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.fullCharCodeAtPos = function fullCharCodeAtPos() {\n\t    var code = this.input.charCodeAt(this.state.pos);\n\t    if (code <= 0xd7ff || code >= 0xe000) return code;\n\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    return (code << 10) + next - 0x35fdc00;\n\t  };\n\n\t  Tokenizer.prototype.pushComment = function pushComment(block, text, start, end, startLoc, endLoc) {\n\t    var comment = {\n\t      type: block ? \"CommentBlock\" : \"CommentLine\",\n\t      value: text,\n\t      start: start,\n\t      end: end,\n\t      loc: new SourceLocation(startLoc, endLoc)\n\t    };\n\n\t    if (!this.isLookahead) {\n\t      this.state.tokens.push(comment);\n\t      this.state.comments.push(comment);\n\t      this.addComment(comment);\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.skipBlockComment = function skipBlockComment() {\n\t    var startLoc = this.state.curPosition();\n\t    var start = this.state.pos;\n\t    var end = this.input.indexOf(\"*/\", this.state.pos += 2);\n\t    if (end === -1) this.raise(this.state.pos - 2, \"Unterminated comment\");\n\n\t    this.state.pos = end + 2;\n\t    lineBreakG.lastIndex = start;\n\t    var match = void 0;\n\t    while ((match = lineBreakG.exec(this.input)) && match.index < this.state.pos) {\n\t      ++this.state.curLine;\n\t      this.state.lineStart = match.index + match[0].length;\n\t    }\n\n\t    this.pushComment(true, this.input.slice(start + 2, end), start, this.state.pos, startLoc, this.state.curPosition());\n\t  };\n\n\t  Tokenizer.prototype.skipLineComment = function skipLineComment(startSkip) {\n\t    var start = this.state.pos;\n\t    var startLoc = this.state.curPosition();\n\t    var ch = this.input.charCodeAt(this.state.pos += startSkip);\n\t    while (this.state.pos < this.input.length && ch !== 10 && ch !== 13 && ch !== 8232 && ch !== 8233) {\n\t      ++this.state.pos;\n\t      ch = this.input.charCodeAt(this.state.pos);\n\t    }\n\n\t    this.pushComment(false, this.input.slice(start + startSkip, this.state.pos), start, this.state.pos, startLoc, this.state.curPosition());\n\t  };\n\n\t  // Called at the start of the parse and after every token. Skips\n\t  // whitespace and comments, and.\n\n\t  Tokenizer.prototype.skipSpace = function skipSpace() {\n\t    loop: while (this.state.pos < this.input.length) {\n\t      var ch = this.input.charCodeAt(this.state.pos);\n\t      switch (ch) {\n\t        case 32:case 160:\n\t          // ' '\n\t          ++this.state.pos;\n\t          break;\n\n\t        case 13:\n\t          if (this.input.charCodeAt(this.state.pos + 1) === 10) {\n\t            ++this.state.pos;\n\t          }\n\n\t        case 10:case 8232:case 8233:\n\t          ++this.state.pos;\n\t          ++this.state.curLine;\n\t          this.state.lineStart = this.state.pos;\n\t          break;\n\n\t        case 47:\n\t          // '/'\n\t          switch (this.input.charCodeAt(this.state.pos + 1)) {\n\t            case 42:\n\t              // '*'\n\t              this.skipBlockComment();\n\t              break;\n\n\t            case 47:\n\t              this.skipLineComment(2);\n\t              break;\n\n\t            default:\n\t              break loop;\n\t          }\n\t          break;\n\n\t        default:\n\t          if (ch > 8 && ch < 14 || ch >= 5760 && nonASCIIwhitespace.test(String.fromCharCode(ch))) {\n\t            ++this.state.pos;\n\t          } else {\n\t            break loop;\n\t          }\n\t      }\n\t    }\n\t  };\n\n\t  // Called at the end of every token. Sets `end`, `val`, and\n\t  // maintains `context` and `exprAllowed`, and skips the space after\n\t  // the token, so that the next one's `start` will point at the\n\t  // right position.\n\n\t  Tokenizer.prototype.finishToken = function finishToken(type, val) {\n\t    this.state.end = this.state.pos;\n\t    this.state.endLoc = this.state.curPosition();\n\t    var prevType = this.state.type;\n\t    this.state.type = type;\n\t    this.state.value = val;\n\n\t    this.updateContext(prevType);\n\t  };\n\n\t  // ### Token reading\n\n\t  // This is the function that is called to fetch the next token. It\n\t  // is somewhat obscure, because it works in character codes rather\n\t  // than characters, and because operator parsing has been inlined\n\t  // into it.\n\t  //\n\t  // All in the name of speed.\n\t  //\n\n\n\t  Tokenizer.prototype.readToken_dot = function readToken_dot() {\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    if (next >= 48 && next <= 57) {\n\t      return this.readNumber(true);\n\t    }\n\n\t    var next2 = this.input.charCodeAt(this.state.pos + 2);\n\t    if (next === 46 && next2 === 46) {\n\t      // 46 = dot '.'\n\t      this.state.pos += 3;\n\t      return this.finishToken(types.ellipsis);\n\t    } else {\n\t      ++this.state.pos;\n\t      return this.finishToken(types.dot);\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.readToken_slash = function readToken_slash() {\n\t    // '/'\n\t    if (this.state.exprAllowed) {\n\t      ++this.state.pos;\n\t      return this.readRegexp();\n\t    }\n\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    if (next === 61) {\n\t      return this.finishOp(types.assign, 2);\n\t    } else {\n\t      return this.finishOp(types.slash, 1);\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.readToken_mult_modulo = function readToken_mult_modulo(code) {\n\t    // '%*'\n\t    var type = code === 42 ? types.star : types.modulo;\n\t    var width = 1;\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\n\t    if (next === 42) {\n\t      // '*'\n\t      width++;\n\t      next = this.input.charCodeAt(this.state.pos + 2);\n\t      type = types.exponent;\n\t    }\n\n\t    if (next === 61) {\n\t      width++;\n\t      type = types.assign;\n\t    }\n\n\t    return this.finishOp(type, width);\n\t  };\n\n\t  Tokenizer.prototype.readToken_pipe_amp = function readToken_pipe_amp(code) {\n\t    // '|&'\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    if (next === code) return this.finishOp(code === 124 ? types.logicalOR : types.logicalAND, 2);\n\t    if (next === 61) return this.finishOp(types.assign, 2);\n\t    if (code === 124 && next === 125 && this.hasPlugin(\"flow\")) return this.finishOp(types.braceBarR, 2);\n\t    return this.finishOp(code === 124 ? types.bitwiseOR : types.bitwiseAND, 1);\n\t  };\n\n\t  Tokenizer.prototype.readToken_caret = function readToken_caret() {\n\t    // '^'\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    if (next === 61) {\n\t      return this.finishOp(types.assign, 2);\n\t    } else {\n\t      return this.finishOp(types.bitwiseXOR, 1);\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.readToken_plus_min = function readToken_plus_min(code) {\n\t    // '+-'\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\n\t    if (next === code) {\n\t      if (next === 45 && this.input.charCodeAt(this.state.pos + 2) === 62 && lineBreak.test(this.input.slice(this.state.lastTokEnd, this.state.pos))) {\n\t        // A `-->` line comment\n\t        this.skipLineComment(3);\n\t        this.skipSpace();\n\t        return this.nextToken();\n\t      }\n\t      return this.finishOp(types.incDec, 2);\n\t    }\n\n\t    if (next === 61) {\n\t      return this.finishOp(types.assign, 2);\n\t    } else {\n\t      return this.finishOp(types.plusMin, 1);\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.readToken_lt_gt = function readToken_lt_gt(code) {\n\t    // '<>'\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    var size = 1;\n\n\t    if (next === code) {\n\t      size = code === 62 && this.input.charCodeAt(this.state.pos + 2) === 62 ? 3 : 2;\n\t      if (this.input.charCodeAt(this.state.pos + size) === 61) return this.finishOp(types.assign, size + 1);\n\t      return this.finishOp(types.bitShift, size);\n\t    }\n\n\t    if (next === 33 && code === 60 && this.input.charCodeAt(this.state.pos + 2) === 45 && this.input.charCodeAt(this.state.pos + 3) === 45) {\n\t      if (this.inModule) this.unexpected();\n\t      // `<!--`, an XML-style comment that should be interpreted as a line comment\n\t      this.skipLineComment(4);\n\t      this.skipSpace();\n\t      return this.nextToken();\n\t    }\n\n\t    if (next === 61) {\n\t      // <= | >=\n\t      size = 2;\n\t    }\n\n\t    return this.finishOp(types.relational, size);\n\t  };\n\n\t  Tokenizer.prototype.readToken_eq_excl = function readToken_eq_excl(code) {\n\t    // '=!'\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    if (next === 61) return this.finishOp(types.equality, this.input.charCodeAt(this.state.pos + 2) === 61 ? 3 : 2);\n\t    if (code === 61 && next === 62) {\n\t      // '=>'\n\t      this.state.pos += 2;\n\t      return this.finishToken(types.arrow);\n\t    }\n\t    return this.finishOp(code === 61 ? types.eq : types.prefix, 1);\n\t  };\n\n\t  Tokenizer.prototype.getTokenFromCode = function getTokenFromCode(code) {\n\t    switch (code) {\n\t      // The interpretation of a dot depends on whether it is followed\n\t      // by a digit or another two dots.\n\t      case 46:\n\t        // '.'\n\t        return this.readToken_dot();\n\n\t      // Punctuation tokens.\n\t      case 40:\n\t        ++this.state.pos;return this.finishToken(types.parenL);\n\t      case 41:\n\t        ++this.state.pos;return this.finishToken(types.parenR);\n\t      case 59:\n\t        ++this.state.pos;return this.finishToken(types.semi);\n\t      case 44:\n\t        ++this.state.pos;return this.finishToken(types.comma);\n\t      case 91:\n\t        ++this.state.pos;return this.finishToken(types.bracketL);\n\t      case 93:\n\t        ++this.state.pos;return this.finishToken(types.bracketR);\n\n\t      case 123:\n\t        if (this.hasPlugin(\"flow\") && this.input.charCodeAt(this.state.pos + 1) === 124) {\n\t          return this.finishOp(types.braceBarL, 2);\n\t        } else {\n\t          ++this.state.pos;\n\t          return this.finishToken(types.braceL);\n\t        }\n\n\t      case 125:\n\t        ++this.state.pos;return this.finishToken(types.braceR);\n\n\t      case 58:\n\t        if (this.hasPlugin(\"functionBind\") && this.input.charCodeAt(this.state.pos + 1) === 58) {\n\t          return this.finishOp(types.doubleColon, 2);\n\t        } else {\n\t          ++this.state.pos;\n\t          return this.finishToken(types.colon);\n\t        }\n\n\t      case 63:\n\t        ++this.state.pos;return this.finishToken(types.question);\n\t      case 64:\n\t        ++this.state.pos;return this.finishToken(types.at);\n\n\t      case 96:\n\t        // '`'\n\t        ++this.state.pos;\n\t        return this.finishToken(types.backQuote);\n\n\t      case 48:\n\t        // '0'\n\t        var next = this.input.charCodeAt(this.state.pos + 1);\n\t        if (next === 120 || next === 88) return this.readRadixNumber(16); // '0x', '0X' - hex number\n\t        if (next === 111 || next === 79) return this.readRadixNumber(8); // '0o', '0O' - octal number\n\t        if (next === 98 || next === 66) return this.readRadixNumber(2); // '0b', '0B' - binary number\n\t      // Anything else beginning with a digit is an integer, octal\n\t      // number, or float.\n\t      case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:\n\t        // 1-9\n\t        return this.readNumber(false);\n\n\t      // Quotes produce strings.\n\t      case 34:case 39:\n\t        // '\"', \"'\"\n\t        return this.readString(code);\n\n\t      // Operators are parsed inline in tiny state machines. '=' (61) is\n\t      // often referred to. `finishOp` simply skips the amount of\n\t      // characters it is given as second argument, and returns a token\n\t      // of the type given by its first argument.\n\n\t      case 47:\n\t        // '/'\n\t        return this.readToken_slash();\n\n\t      case 37:case 42:\n\t        // '%*'\n\t        return this.readToken_mult_modulo(code);\n\n\t      case 124:case 38:\n\t        // '|&'\n\t        return this.readToken_pipe_amp(code);\n\n\t      case 94:\n\t        // '^'\n\t        return this.readToken_caret();\n\n\t      case 43:case 45:\n\t        // '+-'\n\t        return this.readToken_plus_min(code);\n\n\t      case 60:case 62:\n\t        // '<>'\n\t        return this.readToken_lt_gt(code);\n\n\t      case 61:case 33:\n\t        // '=!'\n\t        return this.readToken_eq_excl(code);\n\n\t      case 126:\n\t        // '~'\n\t        return this.finishOp(types.prefix, 1);\n\t    }\n\n\t    this.raise(this.state.pos, \"Unexpected character '\" + codePointToString(code) + \"'\");\n\t  };\n\n\t  Tokenizer.prototype.finishOp = function finishOp(type, size) {\n\t    var str = this.input.slice(this.state.pos, this.state.pos + size);\n\t    this.state.pos += size;\n\t    return this.finishToken(type, str);\n\t  };\n\n\t  Tokenizer.prototype.readRegexp = function readRegexp() {\n\t    var start = this.state.pos;\n\t    var escaped = void 0,\n\t        inClass = void 0;\n\t    for (;;) {\n\t      if (this.state.pos >= this.input.length) this.raise(start, \"Unterminated regular expression\");\n\t      var ch = this.input.charAt(this.state.pos);\n\t      if (lineBreak.test(ch)) {\n\t        this.raise(start, \"Unterminated regular expression\");\n\t      }\n\t      if (escaped) {\n\t        escaped = false;\n\t      } else {\n\t        if (ch === \"[\") {\n\t          inClass = true;\n\t        } else if (ch === \"]\" && inClass) {\n\t          inClass = false;\n\t        } else if (ch === \"/\" && !inClass) {\n\t          break;\n\t        }\n\t        escaped = ch === \"\\\\\";\n\t      }\n\t      ++this.state.pos;\n\t    }\n\t    var content = this.input.slice(start, this.state.pos);\n\t    ++this.state.pos;\n\t    // Need to use `readWord1` because '\\uXXXX' sequences are allowed\n\t    // here (don't ask).\n\t    var mods = this.readWord1();\n\t    if (mods) {\n\t      var validFlags = /^[gmsiyu]*$/;\n\t      if (!validFlags.test(mods)) this.raise(start, \"Invalid regular expression flag\");\n\t    }\n\t    return this.finishToken(types.regexp, {\n\t      pattern: content,\n\t      flags: mods\n\t    });\n\t  };\n\n\t  // Read an integer in the given radix. Return null if zero digits\n\t  // were read, the integer value otherwise. When `len` is given, this\n\t  // will return `null` unless the integer has exactly `len` digits.\n\n\t  Tokenizer.prototype.readInt = function readInt(radix, len) {\n\t    var start = this.state.pos;\n\t    var total = 0;\n\n\t    for (var i = 0, e = len == null ? Infinity : len; i < e; ++i) {\n\t      var code = this.input.charCodeAt(this.state.pos);\n\t      var val = void 0;\n\t      if (code >= 97) {\n\t        val = code - 97 + 10; // a\n\t      } else if (code >= 65) {\n\t        val = code - 65 + 10; // A\n\t      } else if (code >= 48 && code <= 57) {\n\t        val = code - 48; // 0-9\n\t      } else {\n\t        val = Infinity;\n\t      }\n\t      if (val >= radix) break;\n\t      ++this.state.pos;\n\t      total = total * radix + val;\n\t    }\n\t    if (this.state.pos === start || len != null && this.state.pos - start !== len) return null;\n\n\t    return total;\n\t  };\n\n\t  Tokenizer.prototype.readRadixNumber = function readRadixNumber(radix) {\n\t    this.state.pos += 2; // 0x\n\t    var val = this.readInt(radix);\n\t    if (val == null) this.raise(this.state.start + 2, \"Expected number in radix \" + radix);\n\t    if (isIdentifierStart(this.fullCharCodeAtPos())) this.raise(this.state.pos, \"Identifier directly after number\");\n\t    return this.finishToken(types.num, val);\n\t  };\n\n\t  // Read an integer, octal integer, or floating-point number.\n\n\t  Tokenizer.prototype.readNumber = function readNumber(startsWithDot) {\n\t    var start = this.state.pos;\n\t    var octal = this.input.charCodeAt(start) === 48; // '0'\n\t    var isFloat = false;\n\n\t    if (!startsWithDot && this.readInt(10) === null) this.raise(start, \"Invalid number\");\n\t    if (octal && this.state.pos == start + 1) octal = false; // number === 0\n\n\t    var next = this.input.charCodeAt(this.state.pos);\n\t    if (next === 46 && !octal) {\n\t      // '.'\n\t      ++this.state.pos;\n\t      this.readInt(10);\n\t      isFloat = true;\n\t      next = this.input.charCodeAt(this.state.pos);\n\t    }\n\n\t    if ((next === 69 || next === 101) && !octal) {\n\t      // 'eE'\n\t      next = this.input.charCodeAt(++this.state.pos);\n\t      if (next === 43 || next === 45) ++this.state.pos; // '+-'\n\t      if (this.readInt(10) === null) this.raise(start, \"Invalid number\");\n\t      isFloat = true;\n\t    }\n\n\t    if (isIdentifierStart(this.fullCharCodeAtPos())) this.raise(this.state.pos, \"Identifier directly after number\");\n\n\t    var str = this.input.slice(start, this.state.pos);\n\t    var val = void 0;\n\t    if (isFloat) {\n\t      val = parseFloat(str);\n\t    } else if (!octal || str.length === 1) {\n\t      val = parseInt(str, 10);\n\t    } else if (this.state.strict) {\n\t      this.raise(start, \"Invalid number\");\n\t    } else if (/[89]/.test(str)) {\n\t      val = parseInt(str, 10);\n\t    } else {\n\t      val = parseInt(str, 8);\n\t    }\n\t    return this.finishToken(types.num, val);\n\t  };\n\n\t  // Read a string value, interpreting backslash-escapes.\n\n\t  Tokenizer.prototype.readCodePoint = function readCodePoint(throwOnInvalid) {\n\t    var ch = this.input.charCodeAt(this.state.pos);\n\t    var code = void 0;\n\n\t    if (ch === 123) {\n\t      // '{'\n\t      var codePos = ++this.state.pos;\n\t      code = this.readHexChar(this.input.indexOf(\"}\", this.state.pos) - this.state.pos, throwOnInvalid);\n\t      ++this.state.pos;\n\t      if (code === null) {\n\t        --this.state.invalidTemplateEscapePosition; // to point to the '\\'' instead of the 'u'\n\t      } else if (code > 0x10FFFF) {\n\t        if (throwOnInvalid) {\n\t          this.raise(codePos, \"Code point out of bounds\");\n\t        } else {\n\t          this.state.invalidTemplateEscapePosition = codePos - 2;\n\t          return null;\n\t        }\n\t      }\n\t    } else {\n\t      code = this.readHexChar(4, throwOnInvalid);\n\t    }\n\t    return code;\n\t  };\n\n\t  Tokenizer.prototype.readString = function readString(quote) {\n\t    var out = \"\",\n\t        chunkStart = ++this.state.pos;\n\t    for (;;) {\n\t      if (this.state.pos >= this.input.length) this.raise(this.state.start, \"Unterminated string constant\");\n\t      var ch = this.input.charCodeAt(this.state.pos);\n\t      if (ch === quote) break;\n\t      if (ch === 92) {\n\t        // '\\'\n\t        out += this.input.slice(chunkStart, this.state.pos);\n\t        out += this.readEscapedChar(false);\n\t        chunkStart = this.state.pos;\n\t      } else {\n\t        if (isNewLine(ch)) this.raise(this.state.start, \"Unterminated string constant\");\n\t        ++this.state.pos;\n\t      }\n\t    }\n\t    out += this.input.slice(chunkStart, this.state.pos++);\n\t    return this.finishToken(types.string, out);\n\t  };\n\n\t  // Reads template string tokens.\n\n\t  Tokenizer.prototype.readTmplToken = function readTmplToken() {\n\t    var out = \"\",\n\t        chunkStart = this.state.pos,\n\t        containsInvalid = false;\n\t    for (;;) {\n\t      if (this.state.pos >= this.input.length) this.raise(this.state.start, \"Unterminated template\");\n\t      var ch = this.input.charCodeAt(this.state.pos);\n\t      if (ch === 96 || ch === 36 && this.input.charCodeAt(this.state.pos + 1) === 123) {\n\t        // '`', '${'\n\t        if (this.state.pos === this.state.start && this.match(types.template)) {\n\t          if (ch === 36) {\n\t            this.state.pos += 2;\n\t            return this.finishToken(types.dollarBraceL);\n\t          } else {\n\t            ++this.state.pos;\n\t            return this.finishToken(types.backQuote);\n\t          }\n\t        }\n\t        out += this.input.slice(chunkStart, this.state.pos);\n\t        return this.finishToken(types.template, containsInvalid ? null : out);\n\t      }\n\t      if (ch === 92) {\n\t        // '\\'\n\t        out += this.input.slice(chunkStart, this.state.pos);\n\t        var escaped = this.readEscapedChar(true);\n\t        if (escaped === null) {\n\t          containsInvalid = true;\n\t        } else {\n\t          out += escaped;\n\t        }\n\t        chunkStart = this.state.pos;\n\t      } else if (isNewLine(ch)) {\n\t        out += this.input.slice(chunkStart, this.state.pos);\n\t        ++this.state.pos;\n\t        switch (ch) {\n\t          case 13:\n\t            if (this.input.charCodeAt(this.state.pos) === 10) ++this.state.pos;\n\t          case 10:\n\t            out += \"\\n\";\n\t            break;\n\t          default:\n\t            out += String.fromCharCode(ch);\n\t            break;\n\t        }\n\t        ++this.state.curLine;\n\t        this.state.lineStart = this.state.pos;\n\t        chunkStart = this.state.pos;\n\t      } else {\n\t        ++this.state.pos;\n\t      }\n\t    }\n\t  };\n\n\t  // Used to read escaped characters\n\n\t  Tokenizer.prototype.readEscapedChar = function readEscapedChar(inTemplate) {\n\t    var throwOnInvalid = !inTemplate;\n\t    var ch = this.input.charCodeAt(++this.state.pos);\n\t    ++this.state.pos;\n\t    switch (ch) {\n\t      case 110:\n\t        return \"\\n\"; // 'n' -> '\\n'\n\t      case 114:\n\t        return \"\\r\"; // 'r' -> '\\r'\n\t      case 120:\n\t        {\n\t          // 'x'\n\t          var code = this.readHexChar(2, throwOnInvalid);\n\t          return code === null ? null : String.fromCharCode(code);\n\t        }\n\t      case 117:\n\t        {\n\t          // 'u'\n\t          var _code = this.readCodePoint(throwOnInvalid);\n\t          return _code === null ? null : codePointToString(_code);\n\t        }\n\t      case 116:\n\t        return \"\\t\"; // 't' -> '\\t'\n\t      case 98:\n\t        return \"\\b\"; // 'b' -> '\\b'\n\t      case 118:\n\t        return \"\\x0B\"; // 'v' -> '\\u000b'\n\t      case 102:\n\t        return \"\\f\"; // 'f' -> '\\f'\n\t      case 13:\n\t        if (this.input.charCodeAt(this.state.pos) === 10) ++this.state.pos; // '\\r\\n'\n\t      case 10:\n\t        // ' \\n'\n\t        this.state.lineStart = this.state.pos;\n\t        ++this.state.curLine;\n\t        return \"\";\n\t      default:\n\t        if (ch >= 48 && ch <= 55) {\n\t          var codePos = this.state.pos - 1;\n\t          var octalStr = this.input.substr(this.state.pos - 1, 3).match(/^[0-7]+/)[0];\n\t          var octal = parseInt(octalStr, 8);\n\t          if (octal > 255) {\n\t            octalStr = octalStr.slice(0, -1);\n\t            octal = parseInt(octalStr, 8);\n\t          }\n\t          if (octal > 0) {\n\t            if (inTemplate) {\n\t              this.state.invalidTemplateEscapePosition = codePos;\n\t              return null;\n\t            } else if (this.state.strict) {\n\t              this.raise(codePos, \"Octal literal in strict mode\");\n\t            } else if (!this.state.containsOctal) {\n\t              // These properties are only used to throw an error for an octal which occurs\n\t              // in a directive which occurs prior to a \"use strict\" directive.\n\t              this.state.containsOctal = true;\n\t              this.state.octalPosition = codePos;\n\t            }\n\t          }\n\t          this.state.pos += octalStr.length - 1;\n\t          return String.fromCharCode(octal);\n\t        }\n\t        return String.fromCharCode(ch);\n\t    }\n\t  };\n\n\t  // Used to read character escape sequences ('\\x', '\\u').\n\n\t  Tokenizer.prototype.readHexChar = function readHexChar(len, throwOnInvalid) {\n\t    var codePos = this.state.pos;\n\t    var n = this.readInt(16, len);\n\t    if (n === null) {\n\t      if (throwOnInvalid) {\n\t        this.raise(codePos, \"Bad character escape sequence\");\n\t      } else {\n\t        this.state.pos = codePos - 1;\n\t        this.state.invalidTemplateEscapePosition = codePos - 1;\n\t      }\n\t    }\n\t    return n;\n\t  };\n\n\t  // Read an identifier, and return it as a string. Sets `this.state.containsEsc`\n\t  // to whether the word contained a '\\u' escape.\n\t  //\n\t  // Incrementally adds only escaped chars, adding other chunks as-is\n\t  // as a micro-optimization.\n\n\t  Tokenizer.prototype.readWord1 = function readWord1() {\n\t    this.state.containsEsc = false;\n\t    var word = \"\",\n\t        first = true,\n\t        chunkStart = this.state.pos;\n\t    while (this.state.pos < this.input.length) {\n\t      var ch = this.fullCharCodeAtPos();\n\t      if (isIdentifierChar(ch)) {\n\t        this.state.pos += ch <= 0xffff ? 1 : 2;\n\t      } else if (ch === 92) {\n\t        // \"\\\"\n\t        this.state.containsEsc = true;\n\n\t        word += this.input.slice(chunkStart, this.state.pos);\n\t        var escStart = this.state.pos;\n\n\t        if (this.input.charCodeAt(++this.state.pos) !== 117) {\n\t          // \"u\"\n\t          this.raise(this.state.pos, 'Expecting Unicode escape sequence \\\\uXXXX');\n\t        }\n\n\t        ++this.state.pos;\n\t        var esc = this.readCodePoint(true);\n\t        if (!(first ? isIdentifierStart : isIdentifierChar)(esc, true)) {\n\t          this.raise(escStart, \"Invalid Unicode escape\");\n\t        }\n\n\t        word += codePointToString(esc);\n\t        chunkStart = this.state.pos;\n\t      } else {\n\t        break;\n\t      }\n\t      first = false;\n\t    }\n\t    return word + this.input.slice(chunkStart, this.state.pos);\n\t  };\n\n\t  // Read an identifier or keyword token. Will check for reserved\n\t  // words when necessary.\n\n\t  Tokenizer.prototype.readWord = function readWord() {\n\t    var word = this.readWord1();\n\t    var type = types.name;\n\t    if (!this.state.containsEsc && this.isKeyword(word)) {\n\t      type = keywords[word];\n\t    }\n\t    return this.finishToken(type, word);\n\t  };\n\n\t  Tokenizer.prototype.braceIsBlock = function braceIsBlock(prevType) {\n\t    if (prevType === types.colon) {\n\t      var parent = this.curContext();\n\t      if (parent === types$1.braceStatement || parent === types$1.braceExpression) {\n\t        return !parent.isExpr;\n\t      }\n\t    }\n\n\t    if (prevType === types._return) {\n\t      return lineBreak.test(this.input.slice(this.state.lastTokEnd, this.state.start));\n\t    }\n\n\t    if (prevType === types._else || prevType === types.semi || prevType === types.eof || prevType === types.parenR) {\n\t      return true;\n\t    }\n\n\t    if (prevType === types.braceL) {\n\t      return this.curContext() === types$1.braceStatement;\n\t    }\n\n\t    return !this.state.exprAllowed;\n\t  };\n\n\t  Tokenizer.prototype.updateContext = function updateContext(prevType) {\n\t    var type = this.state.type;\n\t    var update = void 0;\n\n\t    if (type.keyword && prevType === types.dot) {\n\t      this.state.exprAllowed = false;\n\t    } else if (update = type.updateContext) {\n\t      update.call(this, prevType);\n\t    } else {\n\t      this.state.exprAllowed = type.beforeExpr;\n\t    }\n\t  };\n\n\t  return Tokenizer;\n\t}();\n\n\tvar plugins = {};\n\tvar frozenDeprecatedWildcardPluginList = [\"jsx\", \"doExpressions\", \"objectRestSpread\", \"decorators\", \"classProperties\", \"exportExtensions\", \"asyncGenerators\", \"functionBind\", \"functionSent\", \"dynamicImport\", \"flow\"];\n\n\tvar Parser = function (_Tokenizer) {\n\t  inherits(Parser, _Tokenizer);\n\n\t  function Parser(options, input) {\n\t    classCallCheck(this, Parser);\n\n\t    options = getOptions(options);\n\n\t    var _this = possibleConstructorReturn(this, _Tokenizer.call(this, options, input));\n\n\t    _this.options = options;\n\t    _this.inModule = _this.options.sourceType === \"module\";\n\t    _this.input = input;\n\t    _this.plugins = _this.loadPlugins(_this.options.plugins);\n\t    _this.filename = options.sourceFilename;\n\n\t    // If enabled, skip leading hashbang line.\n\t    if (_this.state.pos === 0 && _this.input[0] === \"#\" && _this.input[1] === \"!\") {\n\t      _this.skipLineComment(2);\n\t    }\n\t    return _this;\n\t  }\n\n\t  Parser.prototype.isReservedWord = function isReservedWord(word) {\n\t    if (word === \"await\") {\n\t      return this.inModule;\n\t    } else {\n\t      return reservedWords[6](word);\n\t    }\n\t  };\n\n\t  Parser.prototype.hasPlugin = function hasPlugin(name) {\n\t    if (this.plugins[\"*\"] && frozenDeprecatedWildcardPluginList.indexOf(name) > -1) {\n\t      return true;\n\t    }\n\n\t    return !!this.plugins[name];\n\t  };\n\n\t  Parser.prototype.extend = function extend(name, f) {\n\t    this[name] = f(this[name]);\n\t  };\n\n\t  Parser.prototype.loadAllPlugins = function loadAllPlugins() {\n\t    var _this2 = this;\n\n\t    // ensure flow plugin loads last, also ensure estree is not loaded with *\n\t    var pluginNames = Object.keys(plugins).filter(function (name) {\n\t      return name !== \"flow\" && name !== \"estree\";\n\t    });\n\t    pluginNames.push(\"flow\");\n\n\t    pluginNames.forEach(function (name) {\n\t      var plugin = plugins[name];\n\t      if (plugin) plugin(_this2);\n\t    });\n\t  };\n\n\t  Parser.prototype.loadPlugins = function loadPlugins(pluginList) {\n\t    // TODO: Deprecate \"*\" option in next major version of Babylon\n\t    if (pluginList.indexOf(\"*\") >= 0) {\n\t      this.loadAllPlugins();\n\n\t      return { \"*\": true };\n\t    }\n\n\t    var pluginMap = {};\n\n\t    if (pluginList.indexOf(\"flow\") >= 0) {\n\t      // ensure flow plugin loads last\n\t      pluginList = pluginList.filter(function (plugin) {\n\t        return plugin !== \"flow\";\n\t      });\n\t      pluginList.push(\"flow\");\n\t    }\n\n\t    if (pluginList.indexOf(\"estree\") >= 0) {\n\t      // ensure estree plugin loads first\n\t      pluginList = pluginList.filter(function (plugin) {\n\t        return plugin !== \"estree\";\n\t      });\n\t      pluginList.unshift(\"estree\");\n\t    }\n\n\t    for (var _iterator = pluginList, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var name = _ref;\n\n\t      if (!pluginMap[name]) {\n\t        pluginMap[name] = true;\n\n\t        var plugin = plugins[name];\n\t        if (plugin) plugin(this);\n\t      }\n\t    }\n\n\t    return pluginMap;\n\t  };\n\n\t  Parser.prototype.parse = function parse() {\n\t    var file = this.startNode();\n\t    var program = this.startNode();\n\t    this.nextToken();\n\t    return this.parseTopLevel(file, program);\n\t  };\n\n\t  return Parser;\n\t}(Tokenizer);\n\n\tvar pp = Parser.prototype;\n\n\t// ## Parser utilities\n\n\t// TODO\n\n\tpp.addExtra = function (node, key, val) {\n\t  if (!node) return;\n\n\t  var extra = node.extra = node.extra || {};\n\t  extra[key] = val;\n\t};\n\n\t// TODO\n\n\tpp.isRelational = function (op) {\n\t  return this.match(types.relational) && this.state.value === op;\n\t};\n\n\t// TODO\n\n\tpp.expectRelational = function (op) {\n\t  if (this.isRelational(op)) {\n\t    this.next();\n\t  } else {\n\t    this.unexpected(null, types.relational);\n\t  }\n\t};\n\n\t// Tests whether parsed token is a contextual keyword.\n\n\tpp.isContextual = function (name) {\n\t  return this.match(types.name) && this.state.value === name;\n\t};\n\n\t// Consumes contextual keyword if possible.\n\n\tpp.eatContextual = function (name) {\n\t  return this.state.value === name && this.eat(types.name);\n\t};\n\n\t// Asserts that following token is given contextual keyword.\n\n\tpp.expectContextual = function (name, message) {\n\t  if (!this.eatContextual(name)) this.unexpected(null, message);\n\t};\n\n\t// Test whether a semicolon can be inserted at the current position.\n\n\tpp.canInsertSemicolon = function () {\n\t  return this.match(types.eof) || this.match(types.braceR) || lineBreak.test(this.input.slice(this.state.lastTokEnd, this.state.start));\n\t};\n\n\t// TODO\n\n\tpp.isLineTerminator = function () {\n\t  return this.eat(types.semi) || this.canInsertSemicolon();\n\t};\n\n\t// Consume a semicolon, or, failing that, see if we are allowed to\n\t// pretend that there is a semicolon at this position.\n\n\tpp.semicolon = function () {\n\t  if (!this.isLineTerminator()) this.unexpected(null, types.semi);\n\t};\n\n\t// Expect a token of a given type. If found, consume it, otherwise,\n\t// raise an unexpected token error at given pos.\n\n\tpp.expect = function (type, pos) {\n\t  return this.eat(type) || this.unexpected(pos, type);\n\t};\n\n\t// Raise an unexpected token error. Can take the expected token type\n\t// instead of a message string.\n\n\tpp.unexpected = function (pos) {\n\t  var messageOrType = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : \"Unexpected token\";\n\n\t  if (messageOrType && (typeof messageOrType === \"undefined\" ? \"undefined\" : _typeof(messageOrType)) === \"object\" && messageOrType.label) {\n\t    messageOrType = \"Unexpected token, expected \" + messageOrType.label;\n\t  }\n\t  this.raise(pos != null ? pos : this.state.start, messageOrType);\n\t};\n\n\t/* eslint max-len: 0 */\n\n\tvar pp$1 = Parser.prototype;\n\n\t// ### Statement parsing\n\n\t// Parse a program. Initializes the parser, reads any number of\n\t// statements, and wraps them in a Program node.  Optionally takes a\n\t// `program` argument.  If present, the statements will be appended\n\t// to its body instead of creating a new node.\n\n\tpp$1.parseTopLevel = function (file, program) {\n\t  program.sourceType = this.options.sourceType;\n\n\t  this.parseBlockBody(program, true, true, types.eof);\n\n\t  file.program = this.finishNode(program, \"Program\");\n\t  file.comments = this.state.comments;\n\t  file.tokens = this.state.tokens;\n\n\t  return this.finishNode(file, \"File\");\n\t};\n\n\tvar loopLabel = { kind: \"loop\" };\n\tvar switchLabel = { kind: \"switch\" };\n\n\t// TODO\n\n\tpp$1.stmtToDirective = function (stmt) {\n\t  var expr = stmt.expression;\n\n\t  var directiveLiteral = this.startNodeAt(expr.start, expr.loc.start);\n\t  var directive = this.startNodeAt(stmt.start, stmt.loc.start);\n\n\t  var raw = this.input.slice(expr.start, expr.end);\n\t  var val = directiveLiteral.value = raw.slice(1, -1); // remove quotes\n\n\t  this.addExtra(directiveLiteral, \"raw\", raw);\n\t  this.addExtra(directiveLiteral, \"rawValue\", val);\n\n\t  directive.value = this.finishNodeAt(directiveLiteral, \"DirectiveLiteral\", expr.end, expr.loc.end);\n\n\t  return this.finishNodeAt(directive, \"Directive\", stmt.end, stmt.loc.end);\n\t};\n\n\t// Parse a single statement.\n\t//\n\t// If expecting a statement and finding a slash operator, parse a\n\t// regular expression literal. This is to handle cases like\n\t// `if (foo) /blah/.exec(foo)`, where looking at the previous token\n\t// does not help.\n\n\tpp$1.parseStatement = function (declaration, topLevel) {\n\t  if (this.match(types.at)) {\n\t    this.parseDecorators(true);\n\t  }\n\n\t  var starttype = this.state.type;\n\t  var node = this.startNode();\n\n\t  // Most types of statements are recognized by the keyword they\n\t  // start with. Many are trivial to parse, some require a bit of\n\t  // complexity.\n\n\t  switch (starttype) {\n\t    case types._break:case types._continue:\n\t      return this.parseBreakContinueStatement(node, starttype.keyword);\n\t    case types._debugger:\n\t      return this.parseDebuggerStatement(node);\n\t    case types._do:\n\t      return this.parseDoStatement(node);\n\t    case types._for:\n\t      return this.parseForStatement(node);\n\t    case types._function:\n\t      if (!declaration) this.unexpected();\n\t      return this.parseFunctionStatement(node);\n\n\t    case types._class:\n\t      if (!declaration) this.unexpected();\n\t      return this.parseClass(node, true);\n\n\t    case types._if:\n\t      return this.parseIfStatement(node);\n\t    case types._return:\n\t      return this.parseReturnStatement(node);\n\t    case types._switch:\n\t      return this.parseSwitchStatement(node);\n\t    case types._throw:\n\t      return this.parseThrowStatement(node);\n\t    case types._try:\n\t      return this.parseTryStatement(node);\n\n\t    case types._let:\n\t    case types._const:\n\t      if (!declaration) this.unexpected(); // NOTE: falls through to _var\n\n\t    case types._var:\n\t      return this.parseVarStatement(node, starttype);\n\n\t    case types._while:\n\t      return this.parseWhileStatement(node);\n\t    case types._with:\n\t      return this.parseWithStatement(node);\n\t    case types.braceL:\n\t      return this.parseBlock();\n\t    case types.semi:\n\t      return this.parseEmptyStatement(node);\n\t    case types._export:\n\t    case types._import:\n\t      if (this.hasPlugin(\"dynamicImport\") && this.lookahead().type === types.parenL) break;\n\n\t      if (!this.options.allowImportExportEverywhere) {\n\t        if (!topLevel) {\n\t          this.raise(this.state.start, \"'import' and 'export' may only appear at the top level\");\n\t        }\n\n\t        if (!this.inModule) {\n\t          this.raise(this.state.start, \"'import' and 'export' may appear only with 'sourceType: \\\"module\\\"'\");\n\t        }\n\t      }\n\t      return starttype === types._import ? this.parseImport(node) : this.parseExport(node);\n\n\t    case types.name:\n\t      if (this.state.value === \"async\") {\n\t        // peek ahead and see if next token is a function\n\t        var state = this.state.clone();\n\t        this.next();\n\t        if (this.match(types._function) && !this.canInsertSemicolon()) {\n\t          this.expect(types._function);\n\t          return this.parseFunction(node, true, false, true);\n\t        } else {\n\t          this.state = state;\n\t        }\n\t      }\n\t  }\n\n\t  // If the statement does not start with a statement keyword or a\n\t  // brace, it's an ExpressionStatement or LabeledStatement. We\n\t  // simply start parsing an expression, and afterwards, if the\n\t  // next token is a colon and the expression was a simple\n\t  // Identifier node, we switch to interpreting it as a label.\n\t  var maybeName = this.state.value;\n\t  var expr = this.parseExpression();\n\n\t  if (starttype === types.name && expr.type === \"Identifier\" && this.eat(types.colon)) {\n\t    return this.parseLabeledStatement(node, maybeName, expr);\n\t  } else {\n\t    return this.parseExpressionStatement(node, expr);\n\t  }\n\t};\n\n\tpp$1.takeDecorators = function (node) {\n\t  if (this.state.decorators.length) {\n\t    node.decorators = this.state.decorators;\n\t    this.state.decorators = [];\n\t  }\n\t};\n\n\tpp$1.parseDecorators = function (allowExport) {\n\t  while (this.match(types.at)) {\n\t    var decorator = this.parseDecorator();\n\t    this.state.decorators.push(decorator);\n\t  }\n\n\t  if (allowExport && this.match(types._export)) {\n\t    return;\n\t  }\n\n\t  if (!this.match(types._class)) {\n\t    this.raise(this.state.start, \"Leading decorators must be attached to a class declaration\");\n\t  }\n\t};\n\n\tpp$1.parseDecorator = function () {\n\t  if (!this.hasPlugin(\"decorators\")) {\n\t    this.unexpected();\n\t  }\n\t  var node = this.startNode();\n\t  this.next();\n\t  node.expression = this.parseMaybeAssign();\n\t  return this.finishNode(node, \"Decorator\");\n\t};\n\n\tpp$1.parseBreakContinueStatement = function (node, keyword) {\n\t  var isBreak = keyword === \"break\";\n\t  this.next();\n\n\t  if (this.isLineTerminator()) {\n\t    node.label = null;\n\t  } else if (!this.match(types.name)) {\n\t    this.unexpected();\n\t  } else {\n\t    node.label = this.parseIdentifier();\n\t    this.semicolon();\n\t  }\n\n\t  // Verify that there is an actual destination to break or\n\t  // continue to.\n\t  var i = void 0;\n\t  for (i = 0; i < this.state.labels.length; ++i) {\n\t    var lab = this.state.labels[i];\n\t    if (node.label == null || lab.name === node.label.name) {\n\t      if (lab.kind != null && (isBreak || lab.kind === \"loop\")) break;\n\t      if (node.label && isBreak) break;\n\t    }\n\t  }\n\t  if (i === this.state.labels.length) this.raise(node.start, \"Unsyntactic \" + keyword);\n\t  return this.finishNode(node, isBreak ? \"BreakStatement\" : \"ContinueStatement\");\n\t};\n\n\tpp$1.parseDebuggerStatement = function (node) {\n\t  this.next();\n\t  this.semicolon();\n\t  return this.finishNode(node, \"DebuggerStatement\");\n\t};\n\n\tpp$1.parseDoStatement = function (node) {\n\t  this.next();\n\t  this.state.labels.push(loopLabel);\n\t  node.body = this.parseStatement(false);\n\t  this.state.labels.pop();\n\t  this.expect(types._while);\n\t  node.test = this.parseParenExpression();\n\t  this.eat(types.semi);\n\t  return this.finishNode(node, \"DoWhileStatement\");\n\t};\n\n\t// Disambiguating between a `for` and a `for`/`in` or `for`/`of`\n\t// loop is non-trivial. Basically, we have to parse the init `var`\n\t// statement or expression, disallowing the `in` operator (see\n\t// the second parameter to `parseExpression`), and then check\n\t// whether the next token is `in` or `of`. When there is no init\n\t// part (semicolon immediately after the opening parenthesis), it\n\t// is a regular `for` loop.\n\n\tpp$1.parseForStatement = function (node) {\n\t  this.next();\n\t  this.state.labels.push(loopLabel);\n\n\t  var forAwait = false;\n\t  if (this.hasPlugin(\"asyncGenerators\") && this.state.inAsync && this.isContextual(\"await\")) {\n\t    forAwait = true;\n\t    this.next();\n\t  }\n\t  this.expect(types.parenL);\n\n\t  if (this.match(types.semi)) {\n\t    if (forAwait) {\n\t      this.unexpected();\n\t    }\n\t    return this.parseFor(node, null);\n\t  }\n\n\t  if (this.match(types._var) || this.match(types._let) || this.match(types._const)) {\n\t    var _init = this.startNode();\n\t    var varKind = this.state.type;\n\t    this.next();\n\t    this.parseVar(_init, true, varKind);\n\t    this.finishNode(_init, \"VariableDeclaration\");\n\n\t    if (this.match(types._in) || this.isContextual(\"of\")) {\n\t      if (_init.declarations.length === 1 && !_init.declarations[0].init) {\n\t        return this.parseForIn(node, _init, forAwait);\n\t      }\n\t    }\n\t    if (forAwait) {\n\t      this.unexpected();\n\t    }\n\t    return this.parseFor(node, _init);\n\t  }\n\n\t  var refShorthandDefaultPos = { start: 0 };\n\t  var init = this.parseExpression(true, refShorthandDefaultPos);\n\t  if (this.match(types._in) || this.isContextual(\"of\")) {\n\t    var description = this.isContextual(\"of\") ? \"for-of statement\" : \"for-in statement\";\n\t    this.toAssignable(init, undefined, description);\n\t    this.checkLVal(init, undefined, undefined, description);\n\t    return this.parseForIn(node, init, forAwait);\n\t  } else if (refShorthandDefaultPos.start) {\n\t    this.unexpected(refShorthandDefaultPos.start);\n\t  }\n\t  if (forAwait) {\n\t    this.unexpected();\n\t  }\n\t  return this.parseFor(node, init);\n\t};\n\n\tpp$1.parseFunctionStatement = function (node) {\n\t  this.next();\n\t  return this.parseFunction(node, true);\n\t};\n\n\tpp$1.parseIfStatement = function (node) {\n\t  this.next();\n\t  node.test = this.parseParenExpression();\n\t  node.consequent = this.parseStatement(false);\n\t  node.alternate = this.eat(types._else) ? this.parseStatement(false) : null;\n\t  return this.finishNode(node, \"IfStatement\");\n\t};\n\n\tpp$1.parseReturnStatement = function (node) {\n\t  if (!this.state.inFunction && !this.options.allowReturnOutsideFunction) {\n\t    this.raise(this.state.start, \"'return' outside of function\");\n\t  }\n\n\t  this.next();\n\n\t  // In `return` (and `break`/`continue`), the keywords with\n\t  // optional arguments, we eagerly look for a semicolon or the\n\t  // possibility to insert one.\n\n\t  if (this.isLineTerminator()) {\n\t    node.argument = null;\n\t  } else {\n\t    node.argument = this.parseExpression();\n\t    this.semicolon();\n\t  }\n\n\t  return this.finishNode(node, \"ReturnStatement\");\n\t};\n\n\tpp$1.parseSwitchStatement = function (node) {\n\t  this.next();\n\t  node.discriminant = this.parseParenExpression();\n\t  node.cases = [];\n\t  this.expect(types.braceL);\n\t  this.state.labels.push(switchLabel);\n\n\t  // Statements under must be grouped (by label) in SwitchCase\n\t  // nodes. `cur` is used to keep the node that we are currently\n\t  // adding statements to.\n\n\t  var cur = void 0;\n\t  for (var sawDefault; !this.match(types.braceR);) {\n\t    if (this.match(types._case) || this.match(types._default)) {\n\t      var isCase = this.match(types._case);\n\t      if (cur) this.finishNode(cur, \"SwitchCase\");\n\t      node.cases.push(cur = this.startNode());\n\t      cur.consequent = [];\n\t      this.next();\n\t      if (isCase) {\n\t        cur.test = this.parseExpression();\n\t      } else {\n\t        if (sawDefault) this.raise(this.state.lastTokStart, \"Multiple default clauses\");\n\t        sawDefault = true;\n\t        cur.test = null;\n\t      }\n\t      this.expect(types.colon);\n\t    } else {\n\t      if (cur) {\n\t        cur.consequent.push(this.parseStatement(true));\n\t      } else {\n\t        this.unexpected();\n\t      }\n\t    }\n\t  }\n\t  if (cur) this.finishNode(cur, \"SwitchCase\");\n\t  this.next(); // Closing brace\n\t  this.state.labels.pop();\n\t  return this.finishNode(node, \"SwitchStatement\");\n\t};\n\n\tpp$1.parseThrowStatement = function (node) {\n\t  this.next();\n\t  if (lineBreak.test(this.input.slice(this.state.lastTokEnd, this.state.start))) this.raise(this.state.lastTokEnd, \"Illegal newline after throw\");\n\t  node.argument = this.parseExpression();\n\t  this.semicolon();\n\t  return this.finishNode(node, \"ThrowStatement\");\n\t};\n\n\t// Reused empty array added for node fields that are always empty.\n\n\tvar empty = [];\n\n\tpp$1.parseTryStatement = function (node) {\n\t  this.next();\n\n\t  node.block = this.parseBlock();\n\t  node.handler = null;\n\n\t  if (this.match(types._catch)) {\n\t    var clause = this.startNode();\n\t    this.next();\n\n\t    this.expect(types.parenL);\n\t    clause.param = this.parseBindingAtom();\n\t    this.checkLVal(clause.param, true, Object.create(null), \"catch clause\");\n\t    this.expect(types.parenR);\n\n\t    clause.body = this.parseBlock();\n\t    node.handler = this.finishNode(clause, \"CatchClause\");\n\t  }\n\n\t  node.guardedHandlers = empty;\n\t  node.finalizer = this.eat(types._finally) ? this.parseBlock() : null;\n\n\t  if (!node.handler && !node.finalizer) {\n\t    this.raise(node.start, \"Missing catch or finally clause\");\n\t  }\n\n\t  return this.finishNode(node, \"TryStatement\");\n\t};\n\n\tpp$1.parseVarStatement = function (node, kind) {\n\t  this.next();\n\t  this.parseVar(node, false, kind);\n\t  this.semicolon();\n\t  return this.finishNode(node, \"VariableDeclaration\");\n\t};\n\n\tpp$1.parseWhileStatement = function (node) {\n\t  this.next();\n\t  node.test = this.parseParenExpression();\n\t  this.state.labels.push(loopLabel);\n\t  node.body = this.parseStatement(false);\n\t  this.state.labels.pop();\n\t  return this.finishNode(node, \"WhileStatement\");\n\t};\n\n\tpp$1.parseWithStatement = function (node) {\n\t  if (this.state.strict) this.raise(this.state.start, \"'with' in strict mode\");\n\t  this.next();\n\t  node.object = this.parseParenExpression();\n\t  node.body = this.parseStatement(false);\n\t  return this.finishNode(node, \"WithStatement\");\n\t};\n\n\tpp$1.parseEmptyStatement = function (node) {\n\t  this.next();\n\t  return this.finishNode(node, \"EmptyStatement\");\n\t};\n\n\tpp$1.parseLabeledStatement = function (node, maybeName, expr) {\n\t  for (var _iterator = this.state.labels, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var _label = _ref;\n\n\t    if (_label.name === maybeName) {\n\t      this.raise(expr.start, \"Label '\" + maybeName + \"' is already declared\");\n\t    }\n\t  }\n\n\t  var kind = this.state.type.isLoop ? \"loop\" : this.match(types._switch) ? \"switch\" : null;\n\t  for (var i = this.state.labels.length - 1; i >= 0; i--) {\n\t    var label = this.state.labels[i];\n\t    if (label.statementStart === node.start) {\n\t      label.statementStart = this.state.start;\n\t      label.kind = kind;\n\t    } else {\n\t      break;\n\t    }\n\t  }\n\n\t  this.state.labels.push({ name: maybeName, kind: kind, statementStart: this.state.start });\n\t  node.body = this.parseStatement(true);\n\t  this.state.labels.pop();\n\t  node.label = expr;\n\t  return this.finishNode(node, \"LabeledStatement\");\n\t};\n\n\tpp$1.parseExpressionStatement = function (node, expr) {\n\t  node.expression = expr;\n\t  this.semicolon();\n\t  return this.finishNode(node, \"ExpressionStatement\");\n\t};\n\n\t// Parse a semicolon-enclosed block of statements, handling `\"use\n\t// strict\"` declarations when `allowStrict` is true (used for\n\t// function bodies).\n\n\tpp$1.parseBlock = function (allowDirectives) {\n\t  var node = this.startNode();\n\t  this.expect(types.braceL);\n\t  this.parseBlockBody(node, allowDirectives, false, types.braceR);\n\t  return this.finishNode(node, \"BlockStatement\");\n\t};\n\n\tpp$1.isValidDirective = function (stmt) {\n\t  return stmt.type === \"ExpressionStatement\" && stmt.expression.type === \"StringLiteral\" && !stmt.expression.extra.parenthesized;\n\t};\n\n\tpp$1.parseBlockBody = function (node, allowDirectives, topLevel, end) {\n\t  node.body = [];\n\t  node.directives = [];\n\n\t  var parsedNonDirective = false;\n\t  var oldStrict = void 0;\n\t  var octalPosition = void 0;\n\n\t  while (!this.eat(end)) {\n\t    if (!parsedNonDirective && this.state.containsOctal && !octalPosition) {\n\t      octalPosition = this.state.octalPosition;\n\t    }\n\n\t    var stmt = this.parseStatement(true, topLevel);\n\n\t    if (allowDirectives && !parsedNonDirective && this.isValidDirective(stmt)) {\n\t      var directive = this.stmtToDirective(stmt);\n\t      node.directives.push(directive);\n\n\t      if (oldStrict === undefined && directive.value.value === \"use strict\") {\n\t        oldStrict = this.state.strict;\n\t        this.setStrict(true);\n\n\t        if (octalPosition) {\n\t          this.raise(octalPosition, \"Octal literal in strict mode\");\n\t        }\n\t      }\n\n\t      continue;\n\t    }\n\n\t    parsedNonDirective = true;\n\t    node.body.push(stmt);\n\t  }\n\n\t  if (oldStrict === false) {\n\t    this.setStrict(false);\n\t  }\n\t};\n\n\t// Parse a regular `for` loop. The disambiguation code in\n\t// `parseStatement` will already have parsed the init statement or\n\t// expression.\n\n\tpp$1.parseFor = function (node, init) {\n\t  node.init = init;\n\t  this.expect(types.semi);\n\t  node.test = this.match(types.semi) ? null : this.parseExpression();\n\t  this.expect(types.semi);\n\t  node.update = this.match(types.parenR) ? null : this.parseExpression();\n\t  this.expect(types.parenR);\n\t  node.body = this.parseStatement(false);\n\t  this.state.labels.pop();\n\t  return this.finishNode(node, \"ForStatement\");\n\t};\n\n\t// Parse a `for`/`in` and `for`/`of` loop, which are almost\n\t// same from parser's perspective.\n\n\tpp$1.parseForIn = function (node, init, forAwait) {\n\t  var type = void 0;\n\t  if (forAwait) {\n\t    this.eatContextual(\"of\");\n\t    type = \"ForAwaitStatement\";\n\t  } else {\n\t    type = this.match(types._in) ? \"ForInStatement\" : \"ForOfStatement\";\n\t    this.next();\n\t  }\n\t  node.left = init;\n\t  node.right = this.parseExpression();\n\t  this.expect(types.parenR);\n\t  node.body = this.parseStatement(false);\n\t  this.state.labels.pop();\n\t  return this.finishNode(node, type);\n\t};\n\n\t// Parse a list of variable declarations.\n\n\tpp$1.parseVar = function (node, isFor, kind) {\n\t  node.declarations = [];\n\t  node.kind = kind.keyword;\n\t  for (;;) {\n\t    var decl = this.startNode();\n\t    this.parseVarHead(decl);\n\t    if (this.eat(types.eq)) {\n\t      decl.init = this.parseMaybeAssign(isFor);\n\t    } else if (kind === types._const && !(this.match(types._in) || this.isContextual(\"of\"))) {\n\t      this.unexpected();\n\t    } else if (decl.id.type !== \"Identifier\" && !(isFor && (this.match(types._in) || this.isContextual(\"of\")))) {\n\t      this.raise(this.state.lastTokEnd, \"Complex binding patterns require an initialization value\");\n\t    } else {\n\t      decl.init = null;\n\t    }\n\t    node.declarations.push(this.finishNode(decl, \"VariableDeclarator\"));\n\t    if (!this.eat(types.comma)) break;\n\t  }\n\t  return node;\n\t};\n\n\tpp$1.parseVarHead = function (decl) {\n\t  decl.id = this.parseBindingAtom();\n\t  this.checkLVal(decl.id, true, undefined, \"variable declaration\");\n\t};\n\n\t// Parse a function declaration or literal (depending on the\n\t// `isStatement` parameter).\n\n\tpp$1.parseFunction = function (node, isStatement, allowExpressionBody, isAsync, optionalId) {\n\t  var oldInMethod = this.state.inMethod;\n\t  this.state.inMethod = false;\n\n\t  this.initFunction(node, isAsync);\n\n\t  if (this.match(types.star)) {\n\t    if (node.async && !this.hasPlugin(\"asyncGenerators\")) {\n\t      this.unexpected();\n\t    } else {\n\t      node.generator = true;\n\t      this.next();\n\t    }\n\t  }\n\n\t  if (isStatement && !optionalId && !this.match(types.name) && !this.match(types._yield)) {\n\t    this.unexpected();\n\t  }\n\n\t  if (this.match(types.name) || this.match(types._yield)) {\n\t    node.id = this.parseBindingIdentifier();\n\t  }\n\n\t  this.parseFunctionParams(node);\n\t  this.parseFunctionBody(node, allowExpressionBody);\n\n\t  this.state.inMethod = oldInMethod;\n\n\t  return this.finishNode(node, isStatement ? \"FunctionDeclaration\" : \"FunctionExpression\");\n\t};\n\n\tpp$1.parseFunctionParams = function (node) {\n\t  this.expect(types.parenL);\n\t  node.params = this.parseBindingList(types.parenR);\n\t};\n\n\t// Parse a class declaration or literal (depending on the\n\t// `isStatement` parameter).\n\n\tpp$1.parseClass = function (node, isStatement, optionalId) {\n\t  this.next();\n\t  this.takeDecorators(node);\n\t  this.parseClassId(node, isStatement, optionalId);\n\t  this.parseClassSuper(node);\n\t  this.parseClassBody(node);\n\t  return this.finishNode(node, isStatement ? \"ClassDeclaration\" : \"ClassExpression\");\n\t};\n\n\tpp$1.isClassProperty = function () {\n\t  return this.match(types.eq) || this.match(types.semi) || this.match(types.braceR);\n\t};\n\n\tpp$1.isClassMethod = function () {\n\t  return this.match(types.parenL);\n\t};\n\n\tpp$1.isNonstaticConstructor = function (method) {\n\t  return !method.computed && !method.static && (method.key.name === \"constructor\" || // Identifier\n\t  method.key.value === \"constructor\" // Literal\n\t  );\n\t};\n\n\tpp$1.parseClassBody = function (node) {\n\t  // class bodies are implicitly strict\n\t  var oldStrict = this.state.strict;\n\t  this.state.strict = true;\n\n\t  var hadConstructorCall = false;\n\t  var hadConstructor = false;\n\t  var decorators = [];\n\t  var classBody = this.startNode();\n\n\t  classBody.body = [];\n\n\t  this.expect(types.braceL);\n\n\t  while (!this.eat(types.braceR)) {\n\t    if (this.eat(types.semi)) {\n\t      if (decorators.length > 0) {\n\t        this.raise(this.state.lastTokEnd, \"Decorators must not be followed by a semicolon\");\n\t      }\n\t      continue;\n\t    }\n\n\t    if (this.match(types.at)) {\n\t      decorators.push(this.parseDecorator());\n\t      continue;\n\t    }\n\n\t    var method = this.startNode();\n\n\t    // steal the decorators if there are any\n\t    if (decorators.length) {\n\t      method.decorators = decorators;\n\t      decorators = [];\n\t    }\n\n\t    method.static = false;\n\t    if (this.match(types.name) && this.state.value === \"static\") {\n\t      var key = this.parseIdentifier(true); // eats 'static'\n\t      if (this.isClassMethod()) {\n\t        // a method named 'static'\n\t        method.kind = \"method\";\n\t        method.computed = false;\n\t        method.key = key;\n\t        this.parseClassMethod(classBody, method, false, false);\n\t        continue;\n\t      } else if (this.isClassProperty()) {\n\t        // a property named 'static'\n\t        method.computed = false;\n\t        method.key = key;\n\t        classBody.body.push(this.parseClassProperty(method));\n\t        continue;\n\t      }\n\t      // otherwise something static\n\t      method.static = true;\n\t    }\n\n\t    if (this.eat(types.star)) {\n\t      // a generator\n\t      method.kind = \"method\";\n\t      this.parsePropertyName(method);\n\t      if (this.isNonstaticConstructor(method)) {\n\t        this.raise(method.key.start, \"Constructor can't be a generator\");\n\t      }\n\t      if (!method.computed && method.static && (method.key.name === \"prototype\" || method.key.value === \"prototype\")) {\n\t        this.raise(method.key.start, \"Classes may not have static property named prototype\");\n\t      }\n\t      this.parseClassMethod(classBody, method, true, false);\n\t    } else {\n\t      var isSimple = this.match(types.name);\n\t      var _key = this.parsePropertyName(method);\n\t      if (!method.computed && method.static && (method.key.name === \"prototype\" || method.key.value === \"prototype\")) {\n\t        this.raise(method.key.start, \"Classes may not have static property named prototype\");\n\t      }\n\t      if (this.isClassMethod()) {\n\t        // a normal method\n\t        if (this.isNonstaticConstructor(method)) {\n\t          if (hadConstructor) {\n\t            this.raise(_key.start, \"Duplicate constructor in the same class\");\n\t          } else if (method.decorators) {\n\t            this.raise(method.start, \"You can't attach decorators to a class constructor\");\n\t          }\n\t          hadConstructor = true;\n\t          method.kind = \"constructor\";\n\t        } else {\n\t          method.kind = \"method\";\n\t        }\n\t        this.parseClassMethod(classBody, method, false, false);\n\t      } else if (this.isClassProperty()) {\n\t        // a normal property\n\t        if (this.isNonstaticConstructor(method)) {\n\t          this.raise(method.key.start, \"Classes may not have a non-static field named 'constructor'\");\n\t        }\n\t        classBody.body.push(this.parseClassProperty(method));\n\t      } else if (isSimple && _key.name === \"async\" && !this.isLineTerminator()) {\n\t        // an async method\n\t        var isGenerator = this.hasPlugin(\"asyncGenerators\") && this.eat(types.star);\n\t        method.kind = \"method\";\n\t        this.parsePropertyName(method);\n\t        if (this.isNonstaticConstructor(method)) {\n\t          this.raise(method.key.start, \"Constructor can't be an async function\");\n\t        }\n\t        this.parseClassMethod(classBody, method, isGenerator, true);\n\t      } else if (isSimple && (_key.name === \"get\" || _key.name === \"set\") && !(this.isLineTerminator() && this.match(types.star))) {\n\t        // `get\\n*` is an uninitialized property named 'get' followed by a generator.\n\t        // a getter or setter\n\t        method.kind = _key.name;\n\t        this.parsePropertyName(method);\n\t        if (this.isNonstaticConstructor(method)) {\n\t          this.raise(method.key.start, \"Constructor can't have get/set modifier\");\n\t        }\n\t        this.parseClassMethod(classBody, method, false, false);\n\t        this.checkGetterSetterParamCount(method);\n\t      } else if (this.hasPlugin(\"classConstructorCall\") && isSimple && _key.name === \"call\" && this.match(types.name) && this.state.value === \"constructor\") {\n\t        // a (deprecated) call constructor\n\t        if (hadConstructorCall) {\n\t          this.raise(method.start, \"Duplicate constructor call in the same class\");\n\t        } else if (method.decorators) {\n\t          this.raise(method.start, \"You can't attach decorators to a class constructor\");\n\t        }\n\t        hadConstructorCall = true;\n\t        method.kind = \"constructorCall\";\n\t        this.parsePropertyName(method); // consume \"constructor\" and make it the method's name\n\t        this.parseClassMethod(classBody, method, false, false);\n\t      } else if (this.isLineTerminator()) {\n\t        // an uninitialized class property (due to ASI, since we don't otherwise recognize the next token)\n\t        if (this.isNonstaticConstructor(method)) {\n\t          this.raise(method.key.start, \"Classes may not have a non-static field named 'constructor'\");\n\t        }\n\t        classBody.body.push(this.parseClassProperty(method));\n\t      } else {\n\t        this.unexpected();\n\t      }\n\t    }\n\t  }\n\n\t  if (decorators.length) {\n\t    this.raise(this.state.start, \"You have trailing decorators with no method\");\n\t  }\n\n\t  node.body = this.finishNode(classBody, \"ClassBody\");\n\n\t  this.state.strict = oldStrict;\n\t};\n\n\tpp$1.parseClassProperty = function (node) {\n\t  this.state.inClassProperty = true;\n\t  if (this.match(types.eq)) {\n\t    if (!this.hasPlugin(\"classProperties\")) this.unexpected();\n\t    this.next();\n\t    node.value = this.parseMaybeAssign();\n\t  } else {\n\t    node.value = null;\n\t  }\n\t  this.semicolon();\n\t  this.state.inClassProperty = false;\n\t  return this.finishNode(node, \"ClassProperty\");\n\t};\n\n\tpp$1.parseClassMethod = function (classBody, method, isGenerator, isAsync) {\n\t  this.parseMethod(method, isGenerator, isAsync);\n\t  classBody.body.push(this.finishNode(method, \"ClassMethod\"));\n\t};\n\n\tpp$1.parseClassId = function (node, isStatement, optionalId) {\n\t  if (this.match(types.name)) {\n\t    node.id = this.parseIdentifier();\n\t  } else {\n\t    if (optionalId || !isStatement) {\n\t      node.id = null;\n\t    } else {\n\t      this.unexpected();\n\t    }\n\t  }\n\t};\n\n\tpp$1.parseClassSuper = function (node) {\n\t  node.superClass = this.eat(types._extends) ? this.parseExprSubscripts() : null;\n\t};\n\n\t// Parses module export declaration.\n\n\tpp$1.parseExport = function (node) {\n\t  this.next();\n\t  // export * from '...'\n\t  if (this.match(types.star)) {\n\t    var specifier = this.startNode();\n\t    this.next();\n\t    if (this.hasPlugin(\"exportExtensions\") && this.eatContextual(\"as\")) {\n\t      specifier.exported = this.parseIdentifier();\n\t      node.specifiers = [this.finishNode(specifier, \"ExportNamespaceSpecifier\")];\n\t      this.parseExportSpecifiersMaybe(node);\n\t      this.parseExportFrom(node, true);\n\t    } else {\n\t      this.parseExportFrom(node, true);\n\t      return this.finishNode(node, \"ExportAllDeclaration\");\n\t    }\n\t  } else if (this.hasPlugin(\"exportExtensions\") && this.isExportDefaultSpecifier()) {\n\t    var _specifier = this.startNode();\n\t    _specifier.exported = this.parseIdentifier(true);\n\t    node.specifiers = [this.finishNode(_specifier, \"ExportDefaultSpecifier\")];\n\t    if (this.match(types.comma) && this.lookahead().type === types.star) {\n\t      this.expect(types.comma);\n\t      var _specifier2 = this.startNode();\n\t      this.expect(types.star);\n\t      this.expectContextual(\"as\");\n\t      _specifier2.exported = this.parseIdentifier();\n\t      node.specifiers.push(this.finishNode(_specifier2, \"ExportNamespaceSpecifier\"));\n\t    } else {\n\t      this.parseExportSpecifiersMaybe(node);\n\t    }\n\t    this.parseExportFrom(node, true);\n\t  } else if (this.eat(types._default)) {\n\t    // export default ...\n\t    var expr = this.startNode();\n\t    var needsSemi = false;\n\t    if (this.eat(types._function)) {\n\t      expr = this.parseFunction(expr, true, false, false, true);\n\t    } else if (this.match(types._class)) {\n\t      expr = this.parseClass(expr, true, true);\n\t    } else {\n\t      needsSemi = true;\n\t      expr = this.parseMaybeAssign();\n\t    }\n\t    node.declaration = expr;\n\t    if (needsSemi) this.semicolon();\n\t    this.checkExport(node, true, true);\n\t    return this.finishNode(node, \"ExportDefaultDeclaration\");\n\t  } else if (this.shouldParseExportDeclaration()) {\n\t    node.specifiers = [];\n\t    node.source = null;\n\t    node.declaration = this.parseExportDeclaration(node);\n\t  } else {\n\t    // export { x, y as z } [from '...']\n\t    node.declaration = null;\n\t    node.specifiers = this.parseExportSpecifiers();\n\t    this.parseExportFrom(node);\n\t  }\n\t  this.checkExport(node, true);\n\t  return this.finishNode(node, \"ExportNamedDeclaration\");\n\t};\n\n\tpp$1.parseExportDeclaration = function () {\n\t  return this.parseStatement(true);\n\t};\n\n\tpp$1.isExportDefaultSpecifier = function () {\n\t  if (this.match(types.name)) {\n\t    return this.state.value !== \"async\";\n\t  }\n\n\t  if (!this.match(types._default)) {\n\t    return false;\n\t  }\n\n\t  var lookahead = this.lookahead();\n\t  return lookahead.type === types.comma || lookahead.type === types.name && lookahead.value === \"from\";\n\t};\n\n\tpp$1.parseExportSpecifiersMaybe = function (node) {\n\t  if (this.eat(types.comma)) {\n\t    node.specifiers = node.specifiers.concat(this.parseExportSpecifiers());\n\t  }\n\t};\n\n\tpp$1.parseExportFrom = function (node, expect) {\n\t  if (this.eatContextual(\"from\")) {\n\t    node.source = this.match(types.string) ? this.parseExprAtom() : this.unexpected();\n\t    this.checkExport(node);\n\t  } else {\n\t    if (expect) {\n\t      this.unexpected();\n\t    } else {\n\t      node.source = null;\n\t    }\n\t  }\n\n\t  this.semicolon();\n\t};\n\n\tpp$1.shouldParseExportDeclaration = function () {\n\t  return this.state.type.keyword === \"var\" || this.state.type.keyword === \"const\" || this.state.type.keyword === \"let\" || this.state.type.keyword === \"function\" || this.state.type.keyword === \"class\" || this.isContextual(\"async\");\n\t};\n\n\tpp$1.checkExport = function (node, checkNames, isDefault) {\n\t  if (checkNames) {\n\t    // Check for duplicate exports\n\t    if (isDefault) {\n\t      // Default exports\n\t      this.checkDuplicateExports(node, \"default\");\n\t    } else if (node.specifiers && node.specifiers.length) {\n\t      // Named exports\n\t      for (var _iterator2 = node.specifiers, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) {\n\t        var _ref2;\n\n\t        if (_isArray2) {\n\t          if (_i2 >= _iterator2.length) break;\n\t          _ref2 = _iterator2[_i2++];\n\t        } else {\n\t          _i2 = _iterator2.next();\n\t          if (_i2.done) break;\n\t          _ref2 = _i2.value;\n\t        }\n\n\t        var specifier = _ref2;\n\n\t        this.checkDuplicateExports(specifier, specifier.exported.name);\n\t      }\n\t    } else if (node.declaration) {\n\t      // Exported declarations\n\t      if (node.declaration.type === \"FunctionDeclaration\" || node.declaration.type === \"ClassDeclaration\") {\n\t        this.checkDuplicateExports(node, node.declaration.id.name);\n\t      } else if (node.declaration.type === \"VariableDeclaration\") {\n\t        for (var _iterator3 = node.declaration.declarations, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : _iterator3[Symbol.iterator]();;) {\n\t          var _ref3;\n\n\t          if (_isArray3) {\n\t            if (_i3 >= _iterator3.length) break;\n\t            _ref3 = _iterator3[_i3++];\n\t          } else {\n\t            _i3 = _iterator3.next();\n\t            if (_i3.done) break;\n\t            _ref3 = _i3.value;\n\t          }\n\n\t          var declaration = _ref3;\n\n\t          this.checkDeclaration(declaration.id);\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  if (this.state.decorators.length) {\n\t    var isClass = node.declaration && (node.declaration.type === \"ClassDeclaration\" || node.declaration.type === \"ClassExpression\");\n\t    if (!node.declaration || !isClass) {\n\t      this.raise(node.start, \"You can only use decorators on an export when exporting a class\");\n\t    }\n\t    this.takeDecorators(node.declaration);\n\t  }\n\t};\n\n\tpp$1.checkDeclaration = function (node) {\n\t  if (node.type === \"ObjectPattern\") {\n\t    for (var _iterator4 = node.properties, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : _iterator4[Symbol.iterator]();;) {\n\t      var _ref4;\n\n\t      if (_isArray4) {\n\t        if (_i4 >= _iterator4.length) break;\n\t        _ref4 = _iterator4[_i4++];\n\t      } else {\n\t        _i4 = _iterator4.next();\n\t        if (_i4.done) break;\n\t        _ref4 = _i4.value;\n\t      }\n\n\t      var prop = _ref4;\n\n\t      this.checkDeclaration(prop);\n\t    }\n\t  } else if (node.type === \"ArrayPattern\") {\n\t    for (var _iterator5 = node.elements, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : _iterator5[Symbol.iterator]();;) {\n\t      var _ref5;\n\n\t      if (_isArray5) {\n\t        if (_i5 >= _iterator5.length) break;\n\t        _ref5 = _iterator5[_i5++];\n\t      } else {\n\t        _i5 = _iterator5.next();\n\t        if (_i5.done) break;\n\t        _ref5 = _i5.value;\n\t      }\n\n\t      var elem = _ref5;\n\n\t      if (elem) {\n\t        this.checkDeclaration(elem);\n\t      }\n\t    }\n\t  } else if (node.type === \"ObjectProperty\") {\n\t    this.checkDeclaration(node.value);\n\t  } else if (node.type === \"RestElement\" || node.type === \"RestProperty\") {\n\t    this.checkDeclaration(node.argument);\n\t  } else if (node.type === \"Identifier\") {\n\t    this.checkDuplicateExports(node, node.name);\n\t  }\n\t};\n\n\tpp$1.checkDuplicateExports = function (node, name) {\n\t  if (this.state.exportedIdentifiers.indexOf(name) > -1) {\n\t    this.raiseDuplicateExportError(node, name);\n\t  }\n\t  this.state.exportedIdentifiers.push(name);\n\t};\n\n\tpp$1.raiseDuplicateExportError = function (node, name) {\n\t  this.raise(node.start, name === \"default\" ? \"Only one default export allowed per module.\" : \"`\" + name + \"` has already been exported. Exported identifiers must be unique.\");\n\t};\n\n\t// Parses a comma-separated list of module exports.\n\n\tpp$1.parseExportSpecifiers = function () {\n\t  var nodes = [];\n\t  var first = true;\n\t  var needsFrom = void 0;\n\n\t  // export { x, y as z } [from '...']\n\t  this.expect(types.braceL);\n\n\t  while (!this.eat(types.braceR)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      this.expect(types.comma);\n\t      if (this.eat(types.braceR)) break;\n\t    }\n\n\t    var isDefault = this.match(types._default);\n\t    if (isDefault && !needsFrom) needsFrom = true;\n\n\t    var node = this.startNode();\n\t    node.local = this.parseIdentifier(isDefault);\n\t    node.exported = this.eatContextual(\"as\") ? this.parseIdentifier(true) : node.local.__clone();\n\t    nodes.push(this.finishNode(node, \"ExportSpecifier\"));\n\t  }\n\n\t  // https://github.com/ember-cli/ember-cli/pull/3739\n\t  if (needsFrom && !this.isContextual(\"from\")) {\n\t    this.unexpected();\n\t  }\n\n\t  return nodes;\n\t};\n\n\t// Parses import declaration.\n\n\tpp$1.parseImport = function (node) {\n\t  this.eat(types._import);\n\n\t  // import '...'\n\t  if (this.match(types.string)) {\n\t    node.specifiers = [];\n\t    node.source = this.parseExprAtom();\n\t  } else {\n\t    node.specifiers = [];\n\t    this.parseImportSpecifiers(node);\n\t    this.expectContextual(\"from\");\n\t    node.source = this.match(types.string) ? this.parseExprAtom() : this.unexpected();\n\t  }\n\t  this.semicolon();\n\t  return this.finishNode(node, \"ImportDeclaration\");\n\t};\n\n\t// Parses a comma-separated list of module imports.\n\n\tpp$1.parseImportSpecifiers = function (node) {\n\t  var first = true;\n\t  if (this.match(types.name)) {\n\t    // import defaultObj, { x, y as z } from '...'\n\t    var startPos = this.state.start;\n\t    var startLoc = this.state.startLoc;\n\t    node.specifiers.push(this.parseImportSpecifierDefault(this.parseIdentifier(), startPos, startLoc));\n\t    if (!this.eat(types.comma)) return;\n\t  }\n\n\t  if (this.match(types.star)) {\n\t    var specifier = this.startNode();\n\t    this.next();\n\t    this.expectContextual(\"as\");\n\t    specifier.local = this.parseIdentifier();\n\t    this.checkLVal(specifier.local, true, undefined, \"import namespace specifier\");\n\t    node.specifiers.push(this.finishNode(specifier, \"ImportNamespaceSpecifier\"));\n\t    return;\n\t  }\n\n\t  this.expect(types.braceL);\n\t  while (!this.eat(types.braceR)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      // Detect an attempt to deep destructure\n\t      if (this.eat(types.colon)) {\n\t        this.unexpected(null, \"ES2015 named imports do not destructure. Use another statement for destructuring after the import.\");\n\t      }\n\n\t      this.expect(types.comma);\n\t      if (this.eat(types.braceR)) break;\n\t    }\n\n\t    this.parseImportSpecifier(node);\n\t  }\n\t};\n\n\tpp$1.parseImportSpecifier = function (node) {\n\t  var specifier = this.startNode();\n\t  specifier.imported = this.parseIdentifier(true);\n\t  if (this.eatContextual(\"as\")) {\n\t    specifier.local = this.parseIdentifier();\n\t  } else {\n\t    this.checkReservedWord(specifier.imported.name, specifier.start, true, true);\n\t    specifier.local = specifier.imported.__clone();\n\t  }\n\t  this.checkLVal(specifier.local, true, undefined, \"import specifier\");\n\t  node.specifiers.push(this.finishNode(specifier, \"ImportSpecifier\"));\n\t};\n\n\tpp$1.parseImportSpecifierDefault = function (id, startPos, startLoc) {\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  node.local = id;\n\t  this.checkLVal(node.local, true, undefined, \"default import specifier\");\n\t  return this.finishNode(node, \"ImportDefaultSpecifier\");\n\t};\n\n\tvar pp$2 = Parser.prototype;\n\n\t// Convert existing expression atom to assignable pattern\n\t// if possible.\n\n\tpp$2.toAssignable = function (node, isBinding, contextDescription) {\n\t  if (node) {\n\t    switch (node.type) {\n\t      case \"Identifier\":\n\t      case \"ObjectPattern\":\n\t      case \"ArrayPattern\":\n\t      case \"AssignmentPattern\":\n\t        break;\n\n\t      case \"ObjectExpression\":\n\t        node.type = \"ObjectPattern\";\n\t        for (var _iterator = node.properties, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {\n\t          var _ref;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref = _i.value;\n\t          }\n\n\t          var prop = _ref;\n\n\t          if (prop.type === \"ObjectMethod\") {\n\t            if (prop.kind === \"get\" || prop.kind === \"set\") {\n\t              this.raise(prop.key.start, \"Object pattern can't contain getter or setter\");\n\t            } else {\n\t              this.raise(prop.key.start, \"Object pattern can't contain methods\");\n\t            }\n\t          } else {\n\t            this.toAssignable(prop, isBinding, \"object destructuring pattern\");\n\t          }\n\t        }\n\t        break;\n\n\t      case \"ObjectProperty\":\n\t        this.toAssignable(node.value, isBinding, contextDescription);\n\t        break;\n\n\t      case \"SpreadProperty\":\n\t        node.type = \"RestProperty\";\n\t        var arg = node.argument;\n\t        this.toAssignable(arg, isBinding, contextDescription);\n\t        break;\n\n\t      case \"ArrayExpression\":\n\t        node.type = \"ArrayPattern\";\n\t        this.toAssignableList(node.elements, isBinding, contextDescription);\n\t        break;\n\n\t      case \"AssignmentExpression\":\n\t        if (node.operator === \"=\") {\n\t          node.type = \"AssignmentPattern\";\n\t          delete node.operator;\n\t        } else {\n\t          this.raise(node.left.end, \"Only '=' operator can be used for specifying default value.\");\n\t        }\n\t        break;\n\n\t      case \"MemberExpression\":\n\t        if (!isBinding) break;\n\n\t      default:\n\t        {\n\t          var message = \"Invalid left-hand side\" + (contextDescription ? \" in \" + contextDescription : /* istanbul ignore next */\"expression\");\n\t          this.raise(node.start, message);\n\t        }\n\t    }\n\t  }\n\t  return node;\n\t};\n\n\t// Convert list of expression atoms to binding list.\n\n\tpp$2.toAssignableList = function (exprList, isBinding, contextDescription) {\n\t  var end = exprList.length;\n\t  if (end) {\n\t    var last = exprList[end - 1];\n\t    if (last && last.type === \"RestElement\") {\n\t      --end;\n\t    } else if (last && last.type === \"SpreadElement\") {\n\t      last.type = \"RestElement\";\n\t      var arg = last.argument;\n\t      this.toAssignable(arg, isBinding, contextDescription);\n\t      if (arg.type !== \"Identifier\" && arg.type !== \"MemberExpression\" && arg.type !== \"ArrayPattern\") {\n\t        this.unexpected(arg.start);\n\t      }\n\t      --end;\n\t    }\n\t  }\n\t  for (var i = 0; i < end; i++) {\n\t    var elt = exprList[i];\n\t    if (elt) this.toAssignable(elt, isBinding, contextDescription);\n\t  }\n\t  return exprList;\n\t};\n\n\t// Convert list of expression atoms to a list of\n\n\tpp$2.toReferencedList = function (exprList) {\n\t  return exprList;\n\t};\n\n\t// Parses spread element.\n\n\tpp$2.parseSpread = function (refShorthandDefaultPos) {\n\t  var node = this.startNode();\n\t  this.next();\n\t  node.argument = this.parseMaybeAssign(false, refShorthandDefaultPos);\n\t  return this.finishNode(node, \"SpreadElement\");\n\t};\n\n\tpp$2.parseRest = function () {\n\t  var node = this.startNode();\n\t  this.next();\n\t  node.argument = this.parseBindingIdentifier();\n\t  return this.finishNode(node, \"RestElement\");\n\t};\n\n\tpp$2.shouldAllowYieldIdentifier = function () {\n\t  return this.match(types._yield) && !this.state.strict && !this.state.inGenerator;\n\t};\n\n\tpp$2.parseBindingIdentifier = function () {\n\t  return this.parseIdentifier(this.shouldAllowYieldIdentifier());\n\t};\n\n\t// Parses lvalue (assignable) atom.\n\n\tpp$2.parseBindingAtom = function () {\n\t  switch (this.state.type) {\n\t    case types._yield:\n\t      if (this.state.strict || this.state.inGenerator) this.unexpected();\n\t    // fall-through\n\t    case types.name:\n\t      return this.parseIdentifier(true);\n\n\t    case types.bracketL:\n\t      var node = this.startNode();\n\t      this.next();\n\t      node.elements = this.parseBindingList(types.bracketR, true);\n\t      return this.finishNode(node, \"ArrayPattern\");\n\n\t    case types.braceL:\n\t      return this.parseObj(true);\n\n\t    default:\n\t      this.unexpected();\n\t  }\n\t};\n\n\tpp$2.parseBindingList = function (close, allowEmpty) {\n\t  var elts = [];\n\t  var first = true;\n\t  while (!this.eat(close)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      this.expect(types.comma);\n\t    }\n\t    if (allowEmpty && this.match(types.comma)) {\n\t      elts.push(null);\n\t    } else if (this.eat(close)) {\n\t      break;\n\t    } else if (this.match(types.ellipsis)) {\n\t      elts.push(this.parseAssignableListItemTypes(this.parseRest()));\n\t      this.expect(close);\n\t      break;\n\t    } else {\n\t      var decorators = [];\n\t      while (this.match(types.at)) {\n\t        decorators.push(this.parseDecorator());\n\t      }\n\t      var left = this.parseMaybeDefault();\n\t      if (decorators.length) {\n\t        left.decorators = decorators;\n\t      }\n\t      this.parseAssignableListItemTypes(left);\n\t      elts.push(this.parseMaybeDefault(left.start, left.loc.start, left));\n\t    }\n\t  }\n\t  return elts;\n\t};\n\n\tpp$2.parseAssignableListItemTypes = function (param) {\n\t  return param;\n\t};\n\n\t// Parses assignment pattern around given atom if possible.\n\n\tpp$2.parseMaybeDefault = function (startPos, startLoc, left) {\n\t  startLoc = startLoc || this.state.startLoc;\n\t  startPos = startPos || this.state.start;\n\t  left = left || this.parseBindingAtom();\n\t  if (!this.eat(types.eq)) return left;\n\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  node.left = left;\n\t  node.right = this.parseMaybeAssign();\n\t  return this.finishNode(node, \"AssignmentPattern\");\n\t};\n\n\t// Verify that a node is an lval — something that can be assigned\n\t// to.\n\n\tpp$2.checkLVal = function (expr, isBinding, checkClashes, contextDescription) {\n\t  switch (expr.type) {\n\t    case \"Identifier\":\n\t      this.checkReservedWord(expr.name, expr.start, false, true);\n\n\t      if (checkClashes) {\n\t        // we need to prefix this with an underscore for the cases where we have a key of\n\t        // `__proto__`. there's a bug in old V8 where the following wouldn't work:\n\t        //\n\t        //   > var obj = Object.create(null);\n\t        //   undefined\n\t        //   > obj.__proto__\n\t        //   null\n\t        //   > obj.__proto__ = true;\n\t        //   true\n\t        //   > obj.__proto__\n\t        //   null\n\t        var key = \"_\" + expr.name;\n\n\t        if (checkClashes[key]) {\n\t          this.raise(expr.start, \"Argument name clash in strict mode\");\n\t        } else {\n\t          checkClashes[key] = true;\n\t        }\n\t      }\n\t      break;\n\n\t    case \"MemberExpression\":\n\t      if (isBinding) this.raise(expr.start, (isBinding ? \"Binding\" : \"Assigning to\") + \" member expression\");\n\t      break;\n\n\t    case \"ObjectPattern\":\n\t      for (var _iterator2 = expr.properties, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) {\n\t        var _ref2;\n\n\t        if (_isArray2) {\n\t          if (_i2 >= _iterator2.length) break;\n\t          _ref2 = _iterator2[_i2++];\n\t        } else {\n\t          _i2 = _iterator2.next();\n\t          if (_i2.done) break;\n\t          _ref2 = _i2.value;\n\t        }\n\n\t        var prop = _ref2;\n\n\t        if (prop.type === \"ObjectProperty\") prop = prop.value;\n\t        this.checkLVal(prop, isBinding, checkClashes, \"object destructuring pattern\");\n\t      }\n\t      break;\n\n\t    case \"ArrayPattern\":\n\t      for (var _iterator3 = expr.elements, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : _iterator3[Symbol.iterator]();;) {\n\t        var _ref3;\n\n\t        if (_isArray3) {\n\t          if (_i3 >= _iterator3.length) break;\n\t          _ref3 = _iterator3[_i3++];\n\t        } else {\n\t          _i3 = _iterator3.next();\n\t          if (_i3.done) break;\n\t          _ref3 = _i3.value;\n\t        }\n\n\t        var elem = _ref3;\n\n\t        if (elem) this.checkLVal(elem, isBinding, checkClashes, \"array destructuring pattern\");\n\t      }\n\t      break;\n\n\t    case \"AssignmentPattern\":\n\t      this.checkLVal(expr.left, isBinding, checkClashes, \"assignment pattern\");\n\t      break;\n\n\t    case \"RestProperty\":\n\t      this.checkLVal(expr.argument, isBinding, checkClashes, \"rest property\");\n\t      break;\n\n\t    case \"RestElement\":\n\t      this.checkLVal(expr.argument, isBinding, checkClashes, \"rest element\");\n\t      break;\n\n\t    default:\n\t      {\n\t        var message = (isBinding ? /* istanbul ignore next */\"Binding invalid\" : \"Invalid\") + \" left-hand side\" + (contextDescription ? \" in \" + contextDescription : /* istanbul ignore next */\"expression\");\n\t        this.raise(expr.start, message);\n\t      }\n\t  }\n\t};\n\n\t/* eslint max-len: 0 */\n\n\t// A recursive descent parser operates by defining functions for all\n\t// syntactic elements, and recursively calling those, each function\n\t// advancing the input stream and returning an AST node. Precedence\n\t// of constructs (for example, the fact that `!x[1]` means `!(x[1])`\n\t// instead of `(!x)[1]` is handled by the fact that the parser\n\t// function that parses unary prefix operators is called first, and\n\t// in turn calls the function that parses `[]` subscripts — that\n\t// way, it'll receive the node for `x[1]` already parsed, and wraps\n\t// *that* in the unary operator node.\n\t//\n\t// Acorn uses an [operator precedence parser][opp] to handle binary\n\t// operator precedence, because it is much more compact than using\n\t// the technique outlined above, which uses different, nesting\n\t// functions to specify precedence, for all of the ten binary\n\t// precedence levels that JavaScript defines.\n\t//\n\t// [opp]: http://en.wikipedia.org/wiki/Operator-precedence_parser\n\n\tvar pp$3 = Parser.prototype;\n\n\t// Check if property name clashes with already added.\n\t// Object/class getters and setters are not allowed to clash —\n\t// either with each other or with an init property — and in\n\t// strict mode, init properties are also not allowed to be repeated.\n\n\tpp$3.checkPropClash = function (prop, propHash) {\n\t  if (prop.computed || prop.kind) return;\n\n\t  var key = prop.key;\n\t  // It is either an Identifier or a String/NumericLiteral\n\t  var name = key.type === \"Identifier\" ? key.name : String(key.value);\n\n\t  if (name === \"__proto__\") {\n\t    if (propHash.proto) this.raise(key.start, \"Redefinition of __proto__ property\");\n\t    propHash.proto = true;\n\t  }\n\t};\n\n\t// Convenience method to parse an Expression only\n\tpp$3.getExpression = function () {\n\t  this.nextToken();\n\t  var expr = this.parseExpression();\n\t  if (!this.match(types.eof)) {\n\t    this.unexpected();\n\t  }\n\t  return expr;\n\t};\n\n\t// ### Expression parsing\n\n\t// These nest, from the most general expression type at the top to\n\t// 'atomic', nondivisible expression types at the bottom. Most of\n\t// the functions will simply let the function (s) below them parse,\n\t// and, *if* the syntactic construct they handle is present, wrap\n\t// the AST node that the inner parser gave them in another node.\n\n\t// Parse a full expression. The optional arguments are used to\n\t// forbid the `in` operator (in for loops initialization expressions)\n\t// and provide reference for storing '=' operator inside shorthand\n\t// property assignment in contexts where both object expression\n\t// and object pattern might appear (so it's possible to raise\n\t// delayed syntax error at correct position).\n\n\tpp$3.parseExpression = function (noIn, refShorthandDefaultPos) {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var expr = this.parseMaybeAssign(noIn, refShorthandDefaultPos);\n\t  if (this.match(types.comma)) {\n\t    var node = this.startNodeAt(startPos, startLoc);\n\t    node.expressions = [expr];\n\t    while (this.eat(types.comma)) {\n\t      node.expressions.push(this.parseMaybeAssign(noIn, refShorthandDefaultPos));\n\t    }\n\t    this.toReferencedList(node.expressions);\n\t    return this.finishNode(node, \"SequenceExpression\");\n\t  }\n\t  return expr;\n\t};\n\n\t// Parse an assignment expression. This includes applications of\n\t// operators like `+=`.\n\n\tpp$3.parseMaybeAssign = function (noIn, refShorthandDefaultPos, afterLeftParse, refNeedsArrowPos) {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\n\t  if (this.match(types._yield) && this.state.inGenerator) {\n\t    var _left = this.parseYield();\n\t    if (afterLeftParse) _left = afterLeftParse.call(this, _left, startPos, startLoc);\n\t    return _left;\n\t  }\n\n\t  var failOnShorthandAssign = void 0;\n\t  if (refShorthandDefaultPos) {\n\t    failOnShorthandAssign = false;\n\t  } else {\n\t    refShorthandDefaultPos = { start: 0 };\n\t    failOnShorthandAssign = true;\n\t  }\n\n\t  if (this.match(types.parenL) || this.match(types.name)) {\n\t    this.state.potentialArrowAt = this.state.start;\n\t  }\n\n\t  var left = this.parseMaybeConditional(noIn, refShorthandDefaultPos, refNeedsArrowPos);\n\t  if (afterLeftParse) left = afterLeftParse.call(this, left, startPos, startLoc);\n\t  if (this.state.type.isAssign) {\n\t    var node = this.startNodeAt(startPos, startLoc);\n\t    node.operator = this.state.value;\n\t    node.left = this.match(types.eq) ? this.toAssignable(left, undefined, \"assignment expression\") : left;\n\t    refShorthandDefaultPos.start = 0; // reset because shorthand default was used correctly\n\n\t    this.checkLVal(left, undefined, undefined, \"assignment expression\");\n\n\t    if (left.extra && left.extra.parenthesized) {\n\t      var errorMsg = void 0;\n\t      if (left.type === \"ObjectPattern\") {\n\t        errorMsg = \"`({a}) = 0` use `({a} = 0)`\";\n\t      } else if (left.type === \"ArrayPattern\") {\n\t        errorMsg = \"`([a]) = 0` use `([a] = 0)`\";\n\t      }\n\t      if (errorMsg) {\n\t        this.raise(left.start, \"You're trying to assign to a parenthesized expression, eg. instead of \" + errorMsg);\n\t      }\n\t    }\n\n\t    this.next();\n\t    node.right = this.parseMaybeAssign(noIn);\n\t    return this.finishNode(node, \"AssignmentExpression\");\n\t  } else if (failOnShorthandAssign && refShorthandDefaultPos.start) {\n\t    this.unexpected(refShorthandDefaultPos.start);\n\t  }\n\n\t  return left;\n\t};\n\n\t// Parse a ternary conditional (`?:`) operator.\n\n\tpp$3.parseMaybeConditional = function (noIn, refShorthandDefaultPos, refNeedsArrowPos) {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var expr = this.parseExprOps(noIn, refShorthandDefaultPos);\n\t  if (refShorthandDefaultPos && refShorthandDefaultPos.start) return expr;\n\n\t  return this.parseConditional(expr, noIn, startPos, startLoc, refNeedsArrowPos);\n\t};\n\n\tpp$3.parseConditional = function (expr, noIn, startPos, startLoc) {\n\t  if (this.eat(types.question)) {\n\t    var node = this.startNodeAt(startPos, startLoc);\n\t    node.test = expr;\n\t    node.consequent = this.parseMaybeAssign();\n\t    this.expect(types.colon);\n\t    node.alternate = this.parseMaybeAssign(noIn);\n\t    return this.finishNode(node, \"ConditionalExpression\");\n\t  }\n\t  return expr;\n\t};\n\n\t// Start the precedence parser.\n\n\tpp$3.parseExprOps = function (noIn, refShorthandDefaultPos) {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var expr = this.parseMaybeUnary(refShorthandDefaultPos);\n\t  if (refShorthandDefaultPos && refShorthandDefaultPos.start) {\n\t    return expr;\n\t  } else {\n\t    return this.parseExprOp(expr, startPos, startLoc, -1, noIn);\n\t  }\n\t};\n\n\t// Parse binary operators with the operator precedence parsing\n\t// algorithm. `left` is the left-hand side of the operator.\n\t// `minPrec` provides context that allows the function to stop and\n\t// defer further parser to one of its callers when it encounters an\n\t// operator that has a lower precedence than the set it is parsing.\n\n\tpp$3.parseExprOp = function (left, leftStartPos, leftStartLoc, minPrec, noIn) {\n\t  var prec = this.state.type.binop;\n\t  if (prec != null && (!noIn || !this.match(types._in))) {\n\t    if (prec > minPrec) {\n\t      var node = this.startNodeAt(leftStartPos, leftStartLoc);\n\t      node.left = left;\n\t      node.operator = this.state.value;\n\n\t      if (node.operator === \"**\" && left.type === \"UnaryExpression\" && left.extra && !left.extra.parenthesizedArgument && !left.extra.parenthesized) {\n\t        this.raise(left.argument.start, \"Illegal expression. Wrap left hand side or entire exponentiation in parentheses.\");\n\t      }\n\n\t      var op = this.state.type;\n\t      this.next();\n\n\t      var startPos = this.state.start;\n\t      var startLoc = this.state.startLoc;\n\t      node.right = this.parseExprOp(this.parseMaybeUnary(), startPos, startLoc, op.rightAssociative ? prec - 1 : prec, noIn);\n\n\t      this.finishNode(node, op === types.logicalOR || op === types.logicalAND ? \"LogicalExpression\" : \"BinaryExpression\");\n\t      return this.parseExprOp(node, leftStartPos, leftStartLoc, minPrec, noIn);\n\t    }\n\t  }\n\t  return left;\n\t};\n\n\t// Parse unary operators, both prefix and postfix.\n\n\tpp$3.parseMaybeUnary = function (refShorthandDefaultPos) {\n\t  if (this.state.type.prefix) {\n\t    var node = this.startNode();\n\t    var update = this.match(types.incDec);\n\t    node.operator = this.state.value;\n\t    node.prefix = true;\n\t    this.next();\n\n\t    var argType = this.state.type;\n\t    node.argument = this.parseMaybeUnary();\n\n\t    this.addExtra(node, \"parenthesizedArgument\", argType === types.parenL && (!node.argument.extra || !node.argument.extra.parenthesized));\n\n\t    if (refShorthandDefaultPos && refShorthandDefaultPos.start) {\n\t      this.unexpected(refShorthandDefaultPos.start);\n\t    }\n\n\t    if (update) {\n\t      this.checkLVal(node.argument, undefined, undefined, \"prefix operation\");\n\t    } else if (this.state.strict && node.operator === \"delete\" && node.argument.type === \"Identifier\") {\n\t      this.raise(node.start, \"Deleting local variable in strict mode\");\n\t    }\n\n\t    return this.finishNode(node, update ? \"UpdateExpression\" : \"UnaryExpression\");\n\t  }\n\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var expr = this.parseExprSubscripts(refShorthandDefaultPos);\n\t  if (refShorthandDefaultPos && refShorthandDefaultPos.start) return expr;\n\t  while (this.state.type.postfix && !this.canInsertSemicolon()) {\n\t    var _node = this.startNodeAt(startPos, startLoc);\n\t    _node.operator = this.state.value;\n\t    _node.prefix = false;\n\t    _node.argument = expr;\n\t    this.checkLVal(expr, undefined, undefined, \"postfix operation\");\n\t    this.next();\n\t    expr = this.finishNode(_node, \"UpdateExpression\");\n\t  }\n\t  return expr;\n\t};\n\n\t// Parse call, dot, and `[]`-subscript expressions.\n\n\tpp$3.parseExprSubscripts = function (refShorthandDefaultPos) {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var potentialArrowAt = this.state.potentialArrowAt;\n\t  var expr = this.parseExprAtom(refShorthandDefaultPos);\n\n\t  if (expr.type === \"ArrowFunctionExpression\" && expr.start === potentialArrowAt) {\n\t    return expr;\n\t  }\n\n\t  if (refShorthandDefaultPos && refShorthandDefaultPos.start) {\n\t    return expr;\n\t  }\n\n\t  return this.parseSubscripts(expr, startPos, startLoc);\n\t};\n\n\tpp$3.parseSubscripts = function (base, startPos, startLoc, noCalls) {\n\t  for (;;) {\n\t    if (!noCalls && this.eat(types.doubleColon)) {\n\t      var node = this.startNodeAt(startPos, startLoc);\n\t      node.object = base;\n\t      node.callee = this.parseNoCallExpr();\n\t      return this.parseSubscripts(this.finishNode(node, \"BindExpression\"), startPos, startLoc, noCalls);\n\t    } else if (this.eat(types.dot)) {\n\t      var _node2 = this.startNodeAt(startPos, startLoc);\n\t      _node2.object = base;\n\t      _node2.property = this.parseIdentifier(true);\n\t      _node2.computed = false;\n\t      base = this.finishNode(_node2, \"MemberExpression\");\n\t    } else if (this.eat(types.bracketL)) {\n\t      var _node3 = this.startNodeAt(startPos, startLoc);\n\t      _node3.object = base;\n\t      _node3.property = this.parseExpression();\n\t      _node3.computed = true;\n\t      this.expect(types.bracketR);\n\t      base = this.finishNode(_node3, \"MemberExpression\");\n\t    } else if (!noCalls && this.match(types.parenL)) {\n\t      var possibleAsync = this.state.potentialArrowAt === base.start && base.type === \"Identifier\" && base.name === \"async\" && !this.canInsertSemicolon();\n\t      this.next();\n\n\t      var _node4 = this.startNodeAt(startPos, startLoc);\n\t      _node4.callee = base;\n\t      _node4.arguments = this.parseCallExpressionArguments(types.parenR, possibleAsync);\n\t      if (_node4.callee.type === \"Import\" && _node4.arguments.length !== 1) {\n\t        this.raise(_node4.start, \"import() requires exactly one argument\");\n\t      }\n\t      base = this.finishNode(_node4, \"CallExpression\");\n\n\t      if (possibleAsync && this.shouldParseAsyncArrow()) {\n\t        return this.parseAsyncArrowFromCallExpression(this.startNodeAt(startPos, startLoc), _node4);\n\t      } else {\n\t        this.toReferencedList(_node4.arguments);\n\t      }\n\t    } else if (this.match(types.backQuote)) {\n\t      var _node5 = this.startNodeAt(startPos, startLoc);\n\t      _node5.tag = base;\n\t      _node5.quasi = this.parseTemplate(true);\n\t      base = this.finishNode(_node5, \"TaggedTemplateExpression\");\n\t    } else {\n\t      return base;\n\t    }\n\t  }\n\t};\n\n\tpp$3.parseCallExpressionArguments = function (close, possibleAsyncArrow) {\n\t  var elts = [];\n\t  var innerParenStart = void 0;\n\t  var first = true;\n\n\t  while (!this.eat(close)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      this.expect(types.comma);\n\t      if (this.eat(close)) break;\n\t    }\n\n\t    // we need to make sure that if this is an async arrow functions, that we don't allow inner parens inside the params\n\t    if (this.match(types.parenL) && !innerParenStart) {\n\t      innerParenStart = this.state.start;\n\t    }\n\n\t    elts.push(this.parseExprListItem(false, possibleAsyncArrow ? { start: 0 } : undefined, possibleAsyncArrow ? { start: 0 } : undefined));\n\t  }\n\n\t  // we found an async arrow function so let's not allow any inner parens\n\t  if (possibleAsyncArrow && innerParenStart && this.shouldParseAsyncArrow()) {\n\t    this.unexpected();\n\t  }\n\n\t  return elts;\n\t};\n\n\tpp$3.shouldParseAsyncArrow = function () {\n\t  return this.match(types.arrow);\n\t};\n\n\tpp$3.parseAsyncArrowFromCallExpression = function (node, call) {\n\t  this.expect(types.arrow);\n\t  return this.parseArrowExpression(node, call.arguments, true);\n\t};\n\n\t// Parse a no-call expression (like argument of `new` or `::` operators).\n\n\tpp$3.parseNoCallExpr = function () {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  return this.parseSubscripts(this.parseExprAtom(), startPos, startLoc, true);\n\t};\n\n\t// Parse an atomic expression — either a single token that is an\n\t// expression, an expression started by a keyword like `function` or\n\t// `new`, or an expression wrapped in punctuation like `()`, `[]`,\n\t// or `{}`.\n\n\tpp$3.parseExprAtom = function (refShorthandDefaultPos) {\n\t  var canBeArrow = this.state.potentialArrowAt === this.state.start;\n\t  var node = void 0;\n\n\t  switch (this.state.type) {\n\t    case types._super:\n\t      if (!this.state.inMethod && !this.state.inClassProperty && !this.options.allowSuperOutsideMethod) {\n\t        this.raise(this.state.start, \"'super' outside of function or class\");\n\t      }\n\n\t      node = this.startNode();\n\t      this.next();\n\t      if (!this.match(types.parenL) && !this.match(types.bracketL) && !this.match(types.dot)) {\n\t        this.unexpected();\n\t      }\n\t      if (this.match(types.parenL) && this.state.inMethod !== \"constructor\" && !this.options.allowSuperOutsideMethod) {\n\t        this.raise(node.start, \"super() outside of class constructor\");\n\t      }\n\t      return this.finishNode(node, \"Super\");\n\n\t    case types._import:\n\t      if (!this.hasPlugin(\"dynamicImport\")) this.unexpected();\n\n\t      node = this.startNode();\n\t      this.next();\n\t      if (!this.match(types.parenL)) {\n\t        this.unexpected(null, types.parenL);\n\t      }\n\t      return this.finishNode(node, \"Import\");\n\n\t    case types._this:\n\t      node = this.startNode();\n\t      this.next();\n\t      return this.finishNode(node, \"ThisExpression\");\n\n\t    case types._yield:\n\t      if (this.state.inGenerator) this.unexpected();\n\n\t    case types.name:\n\t      node = this.startNode();\n\t      var allowAwait = this.state.value === \"await\" && this.state.inAsync;\n\t      var allowYield = this.shouldAllowYieldIdentifier();\n\t      var id = this.parseIdentifier(allowAwait || allowYield);\n\n\t      if (id.name === \"await\") {\n\t        if (this.state.inAsync || this.inModule) {\n\t          return this.parseAwait(node);\n\t        }\n\t      } else if (id.name === \"async\" && this.match(types._function) && !this.canInsertSemicolon()) {\n\t        this.next();\n\t        return this.parseFunction(node, false, false, true);\n\t      } else if (canBeArrow && id.name === \"async\" && this.match(types.name)) {\n\t        var params = [this.parseIdentifier()];\n\t        this.expect(types.arrow);\n\t        // let foo = bar => {};\n\t        return this.parseArrowExpression(node, params, true);\n\t      }\n\n\t      if (canBeArrow && !this.canInsertSemicolon() && this.eat(types.arrow)) {\n\t        return this.parseArrowExpression(node, [id]);\n\t      }\n\n\t      return id;\n\n\t    case types._do:\n\t      if (this.hasPlugin(\"doExpressions\")) {\n\t        var _node6 = this.startNode();\n\t        this.next();\n\t        var oldInFunction = this.state.inFunction;\n\t        var oldLabels = this.state.labels;\n\t        this.state.labels = [];\n\t        this.state.inFunction = false;\n\t        _node6.body = this.parseBlock(false, true);\n\t        this.state.inFunction = oldInFunction;\n\t        this.state.labels = oldLabels;\n\t        return this.finishNode(_node6, \"DoExpression\");\n\t      }\n\n\t    case types.regexp:\n\t      var value = this.state.value;\n\t      node = this.parseLiteral(value.value, \"RegExpLiteral\");\n\t      node.pattern = value.pattern;\n\t      node.flags = value.flags;\n\t      return node;\n\n\t    case types.num:\n\t      return this.parseLiteral(this.state.value, \"NumericLiteral\");\n\n\t    case types.string:\n\t      return this.parseLiteral(this.state.value, \"StringLiteral\");\n\n\t    case types._null:\n\t      node = this.startNode();\n\t      this.next();\n\t      return this.finishNode(node, \"NullLiteral\");\n\n\t    case types._true:case types._false:\n\t      node = this.startNode();\n\t      node.value = this.match(types._true);\n\t      this.next();\n\t      return this.finishNode(node, \"BooleanLiteral\");\n\n\t    case types.parenL:\n\t      return this.parseParenAndDistinguishExpression(null, null, canBeArrow);\n\n\t    case types.bracketL:\n\t      node = this.startNode();\n\t      this.next();\n\t      node.elements = this.parseExprList(types.bracketR, true, refShorthandDefaultPos);\n\t      this.toReferencedList(node.elements);\n\t      return this.finishNode(node, \"ArrayExpression\");\n\n\t    case types.braceL:\n\t      return this.parseObj(false, refShorthandDefaultPos);\n\n\t    case types._function:\n\t      return this.parseFunctionExpression();\n\n\t    case types.at:\n\t      this.parseDecorators();\n\n\t    case types._class:\n\t      node = this.startNode();\n\t      this.takeDecorators(node);\n\t      return this.parseClass(node, false);\n\n\t    case types._new:\n\t      return this.parseNew();\n\n\t    case types.backQuote:\n\t      return this.parseTemplate(false);\n\n\t    case types.doubleColon:\n\t      node = this.startNode();\n\t      this.next();\n\t      node.object = null;\n\t      var callee = node.callee = this.parseNoCallExpr();\n\t      if (callee.type === \"MemberExpression\") {\n\t        return this.finishNode(node, \"BindExpression\");\n\t      } else {\n\t        this.raise(callee.start, \"Binding should be performed on object property.\");\n\t      }\n\n\t    default:\n\t      this.unexpected();\n\t  }\n\t};\n\n\tpp$3.parseFunctionExpression = function () {\n\t  var node = this.startNode();\n\t  var meta = this.parseIdentifier(true);\n\t  if (this.state.inGenerator && this.eat(types.dot) && this.hasPlugin(\"functionSent\")) {\n\t    return this.parseMetaProperty(node, meta, \"sent\");\n\t  } else {\n\t    return this.parseFunction(node, false);\n\t  }\n\t};\n\n\tpp$3.parseMetaProperty = function (node, meta, propertyName) {\n\t  node.meta = meta;\n\t  node.property = this.parseIdentifier(true);\n\n\t  if (node.property.name !== propertyName) {\n\t    this.raise(node.property.start, \"The only valid meta property for new is \" + meta.name + \".\" + propertyName);\n\t  }\n\n\t  return this.finishNode(node, \"MetaProperty\");\n\t};\n\n\tpp$3.parseLiteral = function (value, type, startPos, startLoc) {\n\t  startPos = startPos || this.state.start;\n\t  startLoc = startLoc || this.state.startLoc;\n\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  this.addExtra(node, \"rawValue\", value);\n\t  this.addExtra(node, \"raw\", this.input.slice(startPos, this.state.end));\n\t  node.value = value;\n\t  this.next();\n\t  return this.finishNode(node, type);\n\t};\n\n\tpp$3.parseParenExpression = function () {\n\t  this.expect(types.parenL);\n\t  var val = this.parseExpression();\n\t  this.expect(types.parenR);\n\t  return val;\n\t};\n\n\tpp$3.parseParenAndDistinguishExpression = function (startPos, startLoc, canBeArrow) {\n\t  startPos = startPos || this.state.start;\n\t  startLoc = startLoc || this.state.startLoc;\n\n\t  var val = void 0;\n\t  this.expect(types.parenL);\n\n\t  var innerStartPos = this.state.start;\n\t  var innerStartLoc = this.state.startLoc;\n\t  var exprList = [];\n\t  var refShorthandDefaultPos = { start: 0 };\n\t  var refNeedsArrowPos = { start: 0 };\n\t  var first = true;\n\t  var spreadStart = void 0;\n\t  var optionalCommaStart = void 0;\n\n\t  while (!this.match(types.parenR)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      this.expect(types.comma, refNeedsArrowPos.start || null);\n\t      if (this.match(types.parenR)) {\n\t        optionalCommaStart = this.state.start;\n\t        break;\n\t      }\n\t    }\n\n\t    if (this.match(types.ellipsis)) {\n\t      var spreadNodeStartPos = this.state.start;\n\t      var spreadNodeStartLoc = this.state.startLoc;\n\t      spreadStart = this.state.start;\n\t      exprList.push(this.parseParenItem(this.parseRest(), spreadNodeStartPos, spreadNodeStartLoc));\n\t      break;\n\t    } else {\n\t      exprList.push(this.parseMaybeAssign(false, refShorthandDefaultPos, this.parseParenItem, refNeedsArrowPos));\n\t    }\n\t  }\n\n\t  var innerEndPos = this.state.start;\n\t  var innerEndLoc = this.state.startLoc;\n\t  this.expect(types.parenR);\n\n\t  var arrowNode = this.startNodeAt(startPos, startLoc);\n\t  if (canBeArrow && this.shouldParseArrow() && (arrowNode = this.parseArrow(arrowNode))) {\n\t    for (var _iterator = exprList, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var param = _ref;\n\n\t      if (param.extra && param.extra.parenthesized) this.unexpected(param.extra.parenStart);\n\t    }\n\n\t    return this.parseArrowExpression(arrowNode, exprList);\n\t  }\n\n\t  if (!exprList.length) {\n\t    this.unexpected(this.state.lastTokStart);\n\t  }\n\t  if (optionalCommaStart) this.unexpected(optionalCommaStart);\n\t  if (spreadStart) this.unexpected(spreadStart);\n\t  if (refShorthandDefaultPos.start) this.unexpected(refShorthandDefaultPos.start);\n\t  if (refNeedsArrowPos.start) this.unexpected(refNeedsArrowPos.start);\n\n\t  if (exprList.length > 1) {\n\t    val = this.startNodeAt(innerStartPos, innerStartLoc);\n\t    val.expressions = exprList;\n\t    this.toReferencedList(val.expressions);\n\t    this.finishNodeAt(val, \"SequenceExpression\", innerEndPos, innerEndLoc);\n\t  } else {\n\t    val = exprList[0];\n\t  }\n\n\t  this.addExtra(val, \"parenthesized\", true);\n\t  this.addExtra(val, \"parenStart\", startPos);\n\n\t  return val;\n\t};\n\n\tpp$3.shouldParseArrow = function () {\n\t  return !this.canInsertSemicolon();\n\t};\n\n\tpp$3.parseArrow = function (node) {\n\t  if (this.eat(types.arrow)) {\n\t    return node;\n\t  }\n\t};\n\n\tpp$3.parseParenItem = function (node) {\n\t  return node;\n\t};\n\n\t// New's precedence is slightly tricky. It must allow its argument\n\t// to be a `[]` or dot subscript expression, but not a call — at\n\t// least, not without wrapping it in parentheses. Thus, it uses the\n\n\tpp$3.parseNew = function () {\n\t  var node = this.startNode();\n\t  var meta = this.parseIdentifier(true);\n\n\t  if (this.eat(types.dot)) {\n\t    var metaProp = this.parseMetaProperty(node, meta, \"target\");\n\n\t    if (!this.state.inFunction) {\n\t      this.raise(metaProp.property.start, \"new.target can only be used in functions\");\n\t    }\n\n\t    return metaProp;\n\t  }\n\n\t  node.callee = this.parseNoCallExpr();\n\n\t  if (this.eat(types.parenL)) {\n\t    node.arguments = this.parseExprList(types.parenR);\n\t    this.toReferencedList(node.arguments);\n\t  } else {\n\t    node.arguments = [];\n\t  }\n\n\t  return this.finishNode(node, \"NewExpression\");\n\t};\n\n\t// Parse template expression.\n\n\tpp$3.parseTemplateElement = function (isTagged) {\n\t  var elem = this.startNode();\n\t  if (this.state.value === null) {\n\t    if (!isTagged || !this.hasPlugin(\"templateInvalidEscapes\")) {\n\t      this.raise(this.state.invalidTemplateEscapePosition, \"Invalid escape sequence in template\");\n\t    } else {\n\t      this.state.invalidTemplateEscapePosition = null;\n\t    }\n\t  }\n\t  elem.value = {\n\t    raw: this.input.slice(this.state.start, this.state.end).replace(/\\r\\n?/g, \"\\n\"),\n\t    cooked: this.state.value\n\t  };\n\t  this.next();\n\t  elem.tail = this.match(types.backQuote);\n\t  return this.finishNode(elem, \"TemplateElement\");\n\t};\n\n\tpp$3.parseTemplate = function (isTagged) {\n\t  var node = this.startNode();\n\t  this.next();\n\t  node.expressions = [];\n\t  var curElt = this.parseTemplateElement(isTagged);\n\t  node.quasis = [curElt];\n\t  while (!curElt.tail) {\n\t    this.expect(types.dollarBraceL);\n\t    node.expressions.push(this.parseExpression());\n\t    this.expect(types.braceR);\n\t    node.quasis.push(curElt = this.parseTemplateElement(isTagged));\n\t  }\n\t  this.next();\n\t  return this.finishNode(node, \"TemplateLiteral\");\n\t};\n\n\t// Parse an object literal or binding pattern.\n\n\tpp$3.parseObj = function (isPattern, refShorthandDefaultPos) {\n\t  var decorators = [];\n\t  var propHash = Object.create(null);\n\t  var first = true;\n\t  var node = this.startNode();\n\n\t  node.properties = [];\n\t  this.next();\n\n\t  var firstRestLocation = null;\n\n\t  while (!this.eat(types.braceR)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      this.expect(types.comma);\n\t      if (this.eat(types.braceR)) break;\n\t    }\n\n\t    while (this.match(types.at)) {\n\t      decorators.push(this.parseDecorator());\n\t    }\n\n\t    var prop = this.startNode(),\n\t        isGenerator = false,\n\t        isAsync = false,\n\t        startPos = void 0,\n\t        startLoc = void 0;\n\t    if (decorators.length) {\n\t      prop.decorators = decorators;\n\t      decorators = [];\n\t    }\n\n\t    if (this.hasPlugin(\"objectRestSpread\") && this.match(types.ellipsis)) {\n\t      prop = this.parseSpread(isPattern ? { start: 0 } : undefined);\n\t      prop.type = isPattern ? \"RestProperty\" : \"SpreadProperty\";\n\t      if (isPattern) this.toAssignable(prop.argument, true, \"object pattern\");\n\t      node.properties.push(prop);\n\t      if (isPattern) {\n\t        var position = this.state.start;\n\t        if (firstRestLocation !== null) {\n\t          this.unexpected(firstRestLocation, \"Cannot have multiple rest elements when destructuring\");\n\t        } else if (this.eat(types.braceR)) {\n\t          break;\n\t        } else if (this.match(types.comma) && this.lookahead().type === types.braceR) {\n\t          // TODO: temporary rollback\n\t          // this.unexpected(position, \"A trailing comma is not permitted after the rest element\");\n\t          continue;\n\t        } else {\n\t          firstRestLocation = position;\n\t          continue;\n\t        }\n\t      } else {\n\t        continue;\n\t      }\n\t    }\n\n\t    prop.method = false;\n\t    prop.shorthand = false;\n\n\t    if (isPattern || refShorthandDefaultPos) {\n\t      startPos = this.state.start;\n\t      startLoc = this.state.startLoc;\n\t    }\n\n\t    if (!isPattern) {\n\t      isGenerator = this.eat(types.star);\n\t    }\n\n\t    if (!isPattern && this.isContextual(\"async\")) {\n\t      if (isGenerator) this.unexpected();\n\n\t      var asyncId = this.parseIdentifier();\n\t      if (this.match(types.colon) || this.match(types.parenL) || this.match(types.braceR) || this.match(types.eq) || this.match(types.comma)) {\n\t        prop.key = asyncId;\n\t        prop.computed = false;\n\t      } else {\n\t        isAsync = true;\n\t        if (this.hasPlugin(\"asyncGenerators\")) isGenerator = this.eat(types.star);\n\t        this.parsePropertyName(prop);\n\t      }\n\t    } else {\n\t      this.parsePropertyName(prop);\n\t    }\n\n\t    this.parseObjPropValue(prop, startPos, startLoc, isGenerator, isAsync, isPattern, refShorthandDefaultPos);\n\t    this.checkPropClash(prop, propHash);\n\n\t    if (prop.shorthand) {\n\t      this.addExtra(prop, \"shorthand\", true);\n\t    }\n\n\t    node.properties.push(prop);\n\t  }\n\n\t  if (firstRestLocation !== null) {\n\t    this.unexpected(firstRestLocation, \"The rest element has to be the last element when destructuring\");\n\t  }\n\n\t  if (decorators.length) {\n\t    this.raise(this.state.start, \"You have trailing decorators with no property\");\n\t  }\n\n\t  return this.finishNode(node, isPattern ? \"ObjectPattern\" : \"ObjectExpression\");\n\t};\n\n\tpp$3.isGetterOrSetterMethod = function (prop, isPattern) {\n\t  return !isPattern && !prop.computed && prop.key.type === \"Identifier\" && (prop.key.name === \"get\" || prop.key.name === \"set\") && (this.match(types.string) || // get \"string\"() {}\n\t  this.match(types.num) || // get 1() {}\n\t  this.match(types.bracketL) || // get [\"string\"]() {}\n\t  this.match(types.name) || // get foo() {}\n\t  this.state.type.keyword // get debugger() {}\n\t  );\n\t};\n\n\t// get methods aren't allowed to have any parameters\n\t// set methods must have exactly 1 parameter\n\tpp$3.checkGetterSetterParamCount = function (method) {\n\t  var paramCount = method.kind === \"get\" ? 0 : 1;\n\t  if (method.params.length !== paramCount) {\n\t    var start = method.start;\n\t    if (method.kind === \"get\") {\n\t      this.raise(start, \"getter should have no params\");\n\t    } else {\n\t      this.raise(start, \"setter should have exactly one param\");\n\t    }\n\t  }\n\t};\n\n\tpp$3.parseObjectMethod = function (prop, isGenerator, isAsync, isPattern) {\n\t  if (isAsync || isGenerator || this.match(types.parenL)) {\n\t    if (isPattern) this.unexpected();\n\t    prop.kind = \"method\";\n\t    prop.method = true;\n\t    this.parseMethod(prop, isGenerator, isAsync);\n\n\t    return this.finishNode(prop, \"ObjectMethod\");\n\t  }\n\n\t  if (this.isGetterOrSetterMethod(prop, isPattern)) {\n\t    if (isGenerator || isAsync) this.unexpected();\n\t    prop.kind = prop.key.name;\n\t    this.parsePropertyName(prop);\n\t    this.parseMethod(prop);\n\t    this.checkGetterSetterParamCount(prop);\n\n\t    return this.finishNode(prop, \"ObjectMethod\");\n\t  }\n\t};\n\n\tpp$3.parseObjectProperty = function (prop, startPos, startLoc, isPattern, refShorthandDefaultPos) {\n\t  if (this.eat(types.colon)) {\n\t    prop.value = isPattern ? this.parseMaybeDefault(this.state.start, this.state.startLoc) : this.parseMaybeAssign(false, refShorthandDefaultPos);\n\n\t    return this.finishNode(prop, \"ObjectProperty\");\n\t  }\n\n\t  if (!prop.computed && prop.key.type === \"Identifier\") {\n\t    this.checkReservedWord(prop.key.name, prop.key.start, true, true);\n\n\t    if (isPattern) {\n\t      prop.value = this.parseMaybeDefault(startPos, startLoc, prop.key.__clone());\n\t    } else if (this.match(types.eq) && refShorthandDefaultPos) {\n\t      if (!refShorthandDefaultPos.start) {\n\t        refShorthandDefaultPos.start = this.state.start;\n\t      }\n\t      prop.value = this.parseMaybeDefault(startPos, startLoc, prop.key.__clone());\n\t    } else {\n\t      prop.value = prop.key.__clone();\n\t    }\n\t    prop.shorthand = true;\n\n\t    return this.finishNode(prop, \"ObjectProperty\");\n\t  }\n\t};\n\n\tpp$3.parseObjPropValue = function (prop, startPos, startLoc, isGenerator, isAsync, isPattern, refShorthandDefaultPos) {\n\t  var node = this.parseObjectMethod(prop, isGenerator, isAsync, isPattern) || this.parseObjectProperty(prop, startPos, startLoc, isPattern, refShorthandDefaultPos);\n\n\t  if (!node) this.unexpected();\n\n\t  return node;\n\t};\n\n\tpp$3.parsePropertyName = function (prop) {\n\t  if (this.eat(types.bracketL)) {\n\t    prop.computed = true;\n\t    prop.key = this.parseMaybeAssign();\n\t    this.expect(types.bracketR);\n\t  } else {\n\t    prop.computed = false;\n\t    var oldInPropertyName = this.state.inPropertyName;\n\t    this.state.inPropertyName = true;\n\t    prop.key = this.match(types.num) || this.match(types.string) ? this.parseExprAtom() : this.parseIdentifier(true);\n\t    this.state.inPropertyName = oldInPropertyName;\n\t  }\n\t  return prop.key;\n\t};\n\n\t// Initialize empty function node.\n\n\tpp$3.initFunction = function (node, isAsync) {\n\t  node.id = null;\n\t  node.generator = false;\n\t  node.expression = false;\n\t  node.async = !!isAsync;\n\t};\n\n\t// Parse object or class method.\n\n\tpp$3.parseMethod = function (node, isGenerator, isAsync) {\n\t  var oldInMethod = this.state.inMethod;\n\t  this.state.inMethod = node.kind || true;\n\t  this.initFunction(node, isAsync);\n\t  this.expect(types.parenL);\n\t  node.params = this.parseBindingList(types.parenR);\n\t  node.generator = !!isGenerator;\n\t  this.parseFunctionBody(node);\n\t  this.state.inMethod = oldInMethod;\n\t  return node;\n\t};\n\n\t// Parse arrow function expression with given parameters.\n\n\tpp$3.parseArrowExpression = function (node, params, isAsync) {\n\t  this.initFunction(node, isAsync);\n\t  node.params = this.toAssignableList(params, true, \"arrow function parameters\");\n\t  this.parseFunctionBody(node, true);\n\t  return this.finishNode(node, \"ArrowFunctionExpression\");\n\t};\n\n\tpp$3.isStrictBody = function (node, isExpression) {\n\t  if (!isExpression && node.body.directives.length) {\n\t    for (var _iterator2 = node.body.directives, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var directive = _ref2;\n\n\t      if (directive.value.value === \"use strict\") {\n\t        return true;\n\t      }\n\t    }\n\t  }\n\n\t  return false;\n\t};\n\n\t// Parse function body and check parameters.\n\tpp$3.parseFunctionBody = function (node, allowExpression) {\n\t  var isExpression = allowExpression && !this.match(types.braceL);\n\n\t  var oldInAsync = this.state.inAsync;\n\t  this.state.inAsync = node.async;\n\t  if (isExpression) {\n\t    node.body = this.parseMaybeAssign();\n\t    node.expression = true;\n\t  } else {\n\t    // Start a new scope with regard to labels and the `inFunction`\n\t    // flag (restore them to their old value afterwards).\n\t    var oldInFunc = this.state.inFunction;\n\t    var oldInGen = this.state.inGenerator;\n\t    var oldLabels = this.state.labels;\n\t    this.state.inFunction = true;this.state.inGenerator = node.generator;this.state.labels = [];\n\t    node.body = this.parseBlock(true);\n\t    node.expression = false;\n\t    this.state.inFunction = oldInFunc;this.state.inGenerator = oldInGen;this.state.labels = oldLabels;\n\t  }\n\t  this.state.inAsync = oldInAsync;\n\n\t  // If this is a strict mode function, verify that argument names\n\t  // are not repeated, and it does not try to bind the words `eval`\n\t  // or `arguments`.\n\t  var isStrict = this.isStrictBody(node, isExpression);\n\t  // Also check when allowExpression === true for arrow functions\n\t  var checkLVal = this.state.strict || allowExpression || isStrict;\n\n\t  if (isStrict && node.id && node.id.type === \"Identifier\" && node.id.name === \"yield\") {\n\t    this.raise(node.id.start, \"Binding yield in strict mode\");\n\t  }\n\n\t  if (checkLVal) {\n\t    var nameHash = Object.create(null);\n\t    var oldStrict = this.state.strict;\n\t    if (isStrict) this.state.strict = true;\n\t    if (node.id) {\n\t      this.checkLVal(node.id, true, undefined, \"function name\");\n\t    }\n\t    for (var _iterator3 = node.params, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : _iterator3[Symbol.iterator]();;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var param = _ref3;\n\n\t      if (isStrict && param.type !== \"Identifier\") {\n\t        this.raise(param.start, \"Non-simple parameter in strict mode\");\n\t      }\n\t      this.checkLVal(param, true, nameHash, \"function parameter list\");\n\t    }\n\t    this.state.strict = oldStrict;\n\t  }\n\t};\n\n\t// Parses a comma-separated list of expressions, and returns them as\n\t// an array. `close` is the token type that ends the list, and\n\t// `allowEmpty` can be turned on to allow subsequent commas with\n\t// nothing in between them to be parsed as `null` (which is needed\n\t// for array literals).\n\n\tpp$3.parseExprList = function (close, allowEmpty, refShorthandDefaultPos) {\n\t  var elts = [];\n\t  var first = true;\n\n\t  while (!this.eat(close)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      this.expect(types.comma);\n\t      if (this.eat(close)) break;\n\t    }\n\n\t    elts.push(this.parseExprListItem(allowEmpty, refShorthandDefaultPos));\n\t  }\n\t  return elts;\n\t};\n\n\tpp$3.parseExprListItem = function (allowEmpty, refShorthandDefaultPos, refNeedsArrowPos) {\n\t  var elt = void 0;\n\t  if (allowEmpty && this.match(types.comma)) {\n\t    elt = null;\n\t  } else if (this.match(types.ellipsis)) {\n\t    elt = this.parseSpread(refShorthandDefaultPos);\n\t  } else {\n\t    elt = this.parseMaybeAssign(false, refShorthandDefaultPos, this.parseParenItem, refNeedsArrowPos);\n\t  }\n\t  return elt;\n\t};\n\n\t// Parse the next token as an identifier. If `liberal` is true (used\n\t// when parsing properties), it will also convert keywords into\n\t// identifiers.\n\n\tpp$3.parseIdentifier = function (liberal) {\n\t  var node = this.startNode();\n\t  if (!liberal) {\n\t    this.checkReservedWord(this.state.value, this.state.start, !!this.state.type.keyword, false);\n\t  }\n\n\t  if (this.match(types.name)) {\n\t    node.name = this.state.value;\n\t  } else if (this.state.type.keyword) {\n\t    node.name = this.state.type.keyword;\n\t  } else {\n\t    this.unexpected();\n\t  }\n\n\t  if (!liberal && node.name === \"await\" && this.state.inAsync) {\n\t    this.raise(node.start, \"invalid use of await inside of an async function\");\n\t  }\n\n\t  node.loc.identifierName = node.name;\n\n\t  this.next();\n\t  return this.finishNode(node, \"Identifier\");\n\t};\n\n\tpp$3.checkReservedWord = function (word, startLoc, checkKeywords, isBinding) {\n\t  if (this.isReservedWord(word) || checkKeywords && this.isKeyword(word)) {\n\t    this.raise(startLoc, word + \" is a reserved word\");\n\t  }\n\n\t  if (this.state.strict && (reservedWords.strict(word) || isBinding && reservedWords.strictBind(word))) {\n\t    this.raise(startLoc, word + \" is a reserved word in strict mode\");\n\t  }\n\t};\n\n\t// Parses await expression inside async function.\n\n\tpp$3.parseAwait = function (node) {\n\t  // istanbul ignore next: this condition is checked at the call site so won't be hit here\n\t  if (!this.state.inAsync) {\n\t    this.unexpected();\n\t  }\n\t  if (this.match(types.star)) {\n\t    this.raise(node.start, \"await* has been removed from the async functions proposal. Use Promise.all() instead.\");\n\t  }\n\t  node.argument = this.parseMaybeUnary();\n\t  return this.finishNode(node, \"AwaitExpression\");\n\t};\n\n\t// Parses yield expression inside generator.\n\n\tpp$3.parseYield = function () {\n\t  var node = this.startNode();\n\t  this.next();\n\t  if (this.match(types.semi) || this.canInsertSemicolon() || !this.match(types.star) && !this.state.type.startsExpr) {\n\t    node.delegate = false;\n\t    node.argument = null;\n\t  } else {\n\t    node.delegate = this.eat(types.star);\n\t    node.argument = this.parseMaybeAssign();\n\t  }\n\t  return this.finishNode(node, \"YieldExpression\");\n\t};\n\n\t// Start an AST node, attaching a start offset.\n\n\tvar pp$4 = Parser.prototype;\n\tvar commentKeys = [\"leadingComments\", \"trailingComments\", \"innerComments\"];\n\n\tvar Node = function () {\n\t  function Node(pos, loc, filename) {\n\t    classCallCheck(this, Node);\n\n\t    this.type = \"\";\n\t    this.start = pos;\n\t    this.end = 0;\n\t    this.loc = new SourceLocation(loc);\n\t    if (filename) this.loc.filename = filename;\n\t  }\n\n\t  Node.prototype.__clone = function __clone() {\n\t    var node2 = new Node();\n\t    for (var key in this) {\n\t      // Do not clone comments that are already attached to the node\n\t      if (commentKeys.indexOf(key) < 0) {\n\t        node2[key] = this[key];\n\t      }\n\t    }\n\n\t    return node2;\n\t  };\n\n\t  return Node;\n\t}();\n\n\tpp$4.startNode = function () {\n\t  return new Node(this.state.start, this.state.startLoc, this.filename);\n\t};\n\n\tpp$4.startNodeAt = function (pos, loc) {\n\t  return new Node(pos, loc, this.filename);\n\t};\n\n\tfunction finishNodeAt(node, type, pos, loc) {\n\t  node.type = type;\n\t  node.end = pos;\n\t  node.loc.end = loc;\n\t  this.processComment(node);\n\t  return node;\n\t}\n\n\t// Finish an AST node, adding `type` and `end` properties.\n\n\tpp$4.finishNode = function (node, type) {\n\t  return finishNodeAt.call(this, node, type, this.state.lastTokEnd, this.state.lastTokEndLoc);\n\t};\n\n\t// Finish node at given position\n\n\tpp$4.finishNodeAt = function (node, type, pos, loc) {\n\t  return finishNodeAt.call(this, node, type, pos, loc);\n\t};\n\n\tvar pp$5 = Parser.prototype;\n\n\t// This function is used to raise exceptions on parse errors. It\n\t// takes an offset integer (into the current `input`) to indicate\n\t// the location of the error, attaches the position to the end\n\t// of the error message, and then raises a `SyntaxError` with that\n\t// message.\n\n\tpp$5.raise = function (pos, message) {\n\t  var loc = getLineInfo(this.input, pos);\n\t  message += \" (\" + loc.line + \":\" + loc.column + \")\";\n\t  var err = new SyntaxError(message);\n\t  err.pos = pos;\n\t  err.loc = loc;\n\t  throw err;\n\t};\n\n\t/* eslint max-len: 0 */\n\n\t/**\n\t * Based on the comment attachment algorithm used in espree and estraverse.\n\t *\n\t * Redistribution and use in source and binary forms, with or without\n\t * modification, are permitted provided that the following conditions are met:\n\t *\n\t * * Redistributions of source code must retain the above copyright\n\t *   notice, this list of conditions and the following disclaimer.\n\t * * Redistributions in binary form must reproduce the above copyright\n\t *   notice, this list of conditions and the following disclaimer in the\n\t *   documentation and/or other materials provided with the distribution.\n\t *\n\t * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n\t * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\t * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\t * ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\n\t * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n\t * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n\t * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n\t * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n\t * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t */\n\n\tfunction last(stack) {\n\t  return stack[stack.length - 1];\n\t}\n\n\tvar pp$6 = Parser.prototype;\n\n\tpp$6.addComment = function (comment) {\n\t  if (this.filename) comment.loc.filename = this.filename;\n\t  this.state.trailingComments.push(comment);\n\t  this.state.leadingComments.push(comment);\n\t};\n\n\tpp$6.processComment = function (node) {\n\t  if (node.type === \"Program\" && node.body.length > 0) return;\n\n\t  var stack = this.state.commentStack;\n\n\t  var firstChild = void 0,\n\t      lastChild = void 0,\n\t      trailingComments = void 0,\n\t      i = void 0,\n\t      j = void 0;\n\n\t  if (this.state.trailingComments.length > 0) {\n\t    // If the first comment in trailingComments comes after the\n\t    // current node, then we're good - all comments in the array will\n\t    // come after the node and so it's safe to add them as official\n\t    // trailingComments.\n\t    if (this.state.trailingComments[0].start >= node.end) {\n\t      trailingComments = this.state.trailingComments;\n\t      this.state.trailingComments = [];\n\t    } else {\n\t      // Otherwise, if the first comment doesn't come after the\n\t      // current node, that means we have a mix of leading and trailing\n\t      // comments in the array and that leadingComments contains the\n\t      // same items as trailingComments. Reset trailingComments to\n\t      // zero items and we'll handle this by evaluating leadingComments\n\t      // later.\n\t      this.state.trailingComments.length = 0;\n\t    }\n\t  } else {\n\t    var lastInStack = last(stack);\n\t    if (stack.length > 0 && lastInStack.trailingComments && lastInStack.trailingComments[0].start >= node.end) {\n\t      trailingComments = lastInStack.trailingComments;\n\t      lastInStack.trailingComments = null;\n\t    }\n\t  }\n\n\t  // Eating the stack.\n\t  if (stack.length > 0 && last(stack).start >= node.start) {\n\t    firstChild = stack.pop();\n\t  }\n\n\t  while (stack.length > 0 && last(stack).start >= node.start) {\n\t    lastChild = stack.pop();\n\t  }\n\n\t  if (!lastChild && firstChild) lastChild = firstChild;\n\n\t  // Attach comments that follow a trailing comma on the last\n\t  // property in an object literal or a trailing comma in function arguments\n\t  // as trailing comments\n\t  if (firstChild && this.state.leadingComments.length > 0) {\n\t    var lastComment = last(this.state.leadingComments);\n\n\t    if (firstChild.type === \"ObjectProperty\") {\n\t      if (lastComment.start >= node.start) {\n\t        if (this.state.commentPreviousNode) {\n\t          for (j = 0; j < this.state.leadingComments.length; j++) {\n\t            if (this.state.leadingComments[j].end < this.state.commentPreviousNode.end) {\n\t              this.state.leadingComments.splice(j, 1);\n\t              j--;\n\t            }\n\t          }\n\n\t          if (this.state.leadingComments.length > 0) {\n\t            firstChild.trailingComments = this.state.leadingComments;\n\t            this.state.leadingComments = [];\n\t          }\n\t        }\n\t      }\n\t    } else if (node.type === \"CallExpression\" && node.arguments && node.arguments.length) {\n\t      var lastArg = last(node.arguments);\n\n\t      if (lastArg && lastComment.start >= lastArg.start && lastComment.end <= node.end) {\n\t        if (this.state.commentPreviousNode) {\n\t          if (this.state.leadingComments.length > 0) {\n\t            lastArg.trailingComments = this.state.leadingComments;\n\t            this.state.leadingComments = [];\n\t          }\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  if (lastChild) {\n\t    if (lastChild.leadingComments) {\n\t      if (lastChild !== node && last(lastChild.leadingComments).end <= node.start) {\n\t        node.leadingComments = lastChild.leadingComments;\n\t        lastChild.leadingComments = null;\n\t      } else {\n\t        // A leading comment for an anonymous class had been stolen by its first ClassMethod,\n\t        // so this takes back the leading comment.\n\t        // See also: https://github.com/eslint/espree/issues/158\n\t        for (i = lastChild.leadingComments.length - 2; i >= 0; --i) {\n\t          if (lastChild.leadingComments[i].end <= node.start) {\n\t            node.leadingComments = lastChild.leadingComments.splice(0, i + 1);\n\t            break;\n\t          }\n\t        }\n\t      }\n\t    }\n\t  } else if (this.state.leadingComments.length > 0) {\n\t    if (last(this.state.leadingComments).end <= node.start) {\n\t      if (this.state.commentPreviousNode) {\n\t        for (j = 0; j < this.state.leadingComments.length; j++) {\n\t          if (this.state.leadingComments[j].end < this.state.commentPreviousNode.end) {\n\t            this.state.leadingComments.splice(j, 1);\n\t            j--;\n\t          }\n\t        }\n\t      }\n\t      if (this.state.leadingComments.length > 0) {\n\t        node.leadingComments = this.state.leadingComments;\n\t        this.state.leadingComments = [];\n\t      }\n\t    } else {\n\t      // https://github.com/eslint/espree/issues/2\n\t      //\n\t      // In special cases, such as return (without a value) and\n\t      // debugger, all comments will end up as leadingComments and\n\t      // will otherwise be eliminated. This step runs when the\n\t      // commentStack is empty and there are comments left\n\t      // in leadingComments.\n\t      //\n\t      // This loop figures out the stopping point between the actual\n\t      // leading and trailing comments by finding the location of the\n\t      // first comment that comes after the given node.\n\t      for (i = 0; i < this.state.leadingComments.length; i++) {\n\t        if (this.state.leadingComments[i].end > node.start) {\n\t          break;\n\t        }\n\t      }\n\n\t      // Split the array based on the location of the first comment\n\t      // that comes after the node. Keep in mind that this could\n\t      // result in an empty array, and if so, the array must be\n\t      // deleted.\n\t      node.leadingComments = this.state.leadingComments.slice(0, i);\n\t      if (node.leadingComments.length === 0) {\n\t        node.leadingComments = null;\n\t      }\n\n\t      // Similarly, trailing comments are attached later. The variable\n\t      // must be reset to null if there are no trailing comments.\n\t      trailingComments = this.state.leadingComments.slice(i);\n\t      if (trailingComments.length === 0) {\n\t        trailingComments = null;\n\t      }\n\t    }\n\t  }\n\n\t  this.state.commentPreviousNode = node;\n\n\t  if (trailingComments) {\n\t    if (trailingComments.length && trailingComments[0].start >= node.start && last(trailingComments).end <= node.end) {\n\t      node.innerComments = trailingComments;\n\t    } else {\n\t      node.trailingComments = trailingComments;\n\t    }\n\t  }\n\n\t  stack.push(node);\n\t};\n\n\tvar pp$7 = Parser.prototype;\n\n\tpp$7.estreeParseRegExpLiteral = function (_ref) {\n\t  var pattern = _ref.pattern,\n\t      flags = _ref.flags;\n\n\t  var regex = null;\n\t  try {\n\t    regex = new RegExp(pattern, flags);\n\t  } catch (e) {\n\t    // In environments that don't support these flags value will\n\t    // be null as the regex can't be represented natively.\n\t  }\n\t  var node = this.estreeParseLiteral(regex);\n\t  node.regex = { pattern: pattern, flags: flags };\n\n\t  return node;\n\t};\n\n\tpp$7.estreeParseLiteral = function (value) {\n\t  return this.parseLiteral(value, \"Literal\");\n\t};\n\n\tpp$7.directiveToStmt = function (directive) {\n\t  var directiveLiteral = directive.value;\n\n\t  var stmt = this.startNodeAt(directive.start, directive.loc.start);\n\t  var expression = this.startNodeAt(directiveLiteral.start, directiveLiteral.loc.start);\n\n\t  expression.value = directiveLiteral.value;\n\t  expression.raw = directiveLiteral.extra.raw;\n\n\t  stmt.expression = this.finishNodeAt(expression, \"Literal\", directiveLiteral.end, directiveLiteral.loc.end);\n\t  stmt.directive = directiveLiteral.extra.raw.slice(1, -1);\n\n\t  return this.finishNodeAt(stmt, \"ExpressionStatement\", directive.end, directive.loc.end);\n\t};\n\n\tfunction isSimpleProperty(node) {\n\t  return node && node.type === \"Property\" && node.kind === \"init\" && node.method === false;\n\t}\n\n\tvar estreePlugin = function estreePlugin(instance) {\n\t  instance.extend(\"checkDeclaration\", function (inner) {\n\t    return function (node) {\n\t      if (isSimpleProperty(node)) {\n\t        this.checkDeclaration(node.value);\n\t      } else {\n\t        inner.call(this, node);\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"checkGetterSetterParamCount\", function () {\n\t    return function (prop) {\n\t      var paramCount = prop.kind === \"get\" ? 0 : 1;\n\t      if (prop.value.params.length !== paramCount) {\n\t        var start = prop.start;\n\t        if (prop.kind === \"get\") {\n\t          this.raise(start, \"getter should have no params\");\n\t        } else {\n\t          this.raise(start, \"setter should have exactly one param\");\n\t        }\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"checkLVal\", function (inner) {\n\t    return function (expr, isBinding, checkClashes) {\n\t      var _this = this;\n\n\t      switch (expr.type) {\n\t        case \"ObjectPattern\":\n\t          expr.properties.forEach(function (prop) {\n\t            _this.checkLVal(prop.type === \"Property\" ? prop.value : prop, isBinding, checkClashes, \"object destructuring pattern\");\n\t          });\n\t          break;\n\t        default:\n\t          for (var _len = arguments.length, args = Array(_len > 3 ? _len - 3 : 0), _key = 3; _key < _len; _key++) {\n\t            args[_key - 3] = arguments[_key];\n\t          }\n\n\t          inner.call.apply(inner, [this, expr, isBinding, checkClashes].concat(args));\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"checkPropClash\", function () {\n\t    return function (prop, propHash) {\n\t      if (prop.computed || !isSimpleProperty(prop)) return;\n\n\t      var key = prop.key;\n\t      // It is either an Identifier or a String/NumericLiteral\n\t      var name = key.type === \"Identifier\" ? key.name : String(key.value);\n\n\t      if (name === \"__proto__\") {\n\t        if (propHash.proto) this.raise(key.start, \"Redefinition of __proto__ property\");\n\t        propHash.proto = true;\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"isStrictBody\", function () {\n\t    return function (node, isExpression) {\n\t      if (!isExpression && node.body.body.length > 0) {\n\t        for (var _iterator = node.body.body, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {\n\t          var _ref2;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref2 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref2 = _i.value;\n\t          }\n\n\t          var directive = _ref2;\n\n\t          if (directive.type === \"ExpressionStatement\" && directive.expression.type === \"Literal\") {\n\t            if (directive.expression.value === \"use strict\") return true;\n\t          } else {\n\t            // Break for the first non literal expression\n\t            break;\n\t          }\n\t        }\n\t      }\n\n\t      return false;\n\t    };\n\t  });\n\n\t  instance.extend(\"isValidDirective\", function () {\n\t    return function (stmt) {\n\t      return stmt.type === \"ExpressionStatement\" && stmt.expression.type === \"Literal\" && typeof stmt.expression.value === \"string\" && (!stmt.expression.extra || !stmt.expression.extra.parenthesized);\n\t    };\n\t  });\n\n\t  instance.extend(\"stmtToDirective\", function (inner) {\n\t    return function (stmt) {\n\t      var directive = inner.call(this, stmt);\n\t      var value = stmt.expression.value;\n\n\t      // Reset value to the actual value as in estree mode we want\n\t      // the stmt to have the real value and not the raw value\n\t      directive.value.value = value;\n\n\t      return directive;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseBlockBody\", function (inner) {\n\t    return function (node) {\n\t      var _this2 = this;\n\n\t      for (var _len2 = arguments.length, args = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n\t        args[_key2 - 1] = arguments[_key2];\n\t      }\n\n\t      inner.call.apply(inner, [this, node].concat(args));\n\n\t      node.directives.reverse().forEach(function (directive) {\n\t        node.body.unshift(_this2.directiveToStmt(directive));\n\t      });\n\t      delete node.directives;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseClassMethod\", function () {\n\t    return function (classBody, method, isGenerator, isAsync) {\n\t      this.parseMethod(method, isGenerator, isAsync);\n\t      if (method.typeParameters) {\n\t        method.value.typeParameters = method.typeParameters;\n\t        delete method.typeParameters;\n\t      }\n\t      classBody.body.push(this.finishNode(method, \"MethodDefinition\"));\n\t    };\n\t  });\n\n\t  instance.extend(\"parseExprAtom\", function (inner) {\n\t    return function () {\n\t      switch (this.state.type) {\n\t        case types.regexp:\n\t          return this.estreeParseRegExpLiteral(this.state.value);\n\n\t        case types.num:\n\t        case types.string:\n\t          return this.estreeParseLiteral(this.state.value);\n\n\t        case types._null:\n\t          return this.estreeParseLiteral(null);\n\n\t        case types._true:\n\t          return this.estreeParseLiteral(true);\n\n\t        case types._false:\n\t          return this.estreeParseLiteral(false);\n\n\t        default:\n\t          for (var _len3 = arguments.length, args = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {\n\t            args[_key3] = arguments[_key3];\n\t          }\n\n\t          return inner.call.apply(inner, [this].concat(args));\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"parseLiteral\", function (inner) {\n\t    return function () {\n\t      for (var _len4 = arguments.length, args = Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {\n\t        args[_key4] = arguments[_key4];\n\t      }\n\n\t      var node = inner.call.apply(inner, [this].concat(args));\n\t      node.raw = node.extra.raw;\n\t      delete node.extra;\n\n\t      return node;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseMethod\", function (inner) {\n\t    return function (node) {\n\t      var funcNode = this.startNode();\n\t      funcNode.kind = node.kind; // provide kind, so inner method correctly sets state\n\n\t      for (var _len5 = arguments.length, args = Array(_len5 > 1 ? _len5 - 1 : 0), _key5 = 1; _key5 < _len5; _key5++) {\n\t        args[_key5 - 1] = arguments[_key5];\n\t      }\n\n\t      funcNode = inner.call.apply(inner, [this, funcNode].concat(args));\n\t      delete funcNode.kind;\n\t      node.value = this.finishNode(funcNode, \"FunctionExpression\");\n\n\t      return node;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseObjectMethod\", function (inner) {\n\t    return function () {\n\t      for (var _len6 = arguments.length, args = Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {\n\t        args[_key6] = arguments[_key6];\n\t      }\n\n\t      var node = inner.call.apply(inner, [this].concat(args));\n\n\t      if (node) {\n\t        if (node.kind === \"method\") node.kind = \"init\";\n\t        node.type = \"Property\";\n\t      }\n\n\t      return node;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseObjectProperty\", function (inner) {\n\t    return function () {\n\t      for (var _len7 = arguments.length, args = Array(_len7), _key7 = 0; _key7 < _len7; _key7++) {\n\t        args[_key7] = arguments[_key7];\n\t      }\n\n\t      var node = inner.call.apply(inner, [this].concat(args));\n\n\t      if (node) {\n\t        node.kind = \"init\";\n\t        node.type = \"Property\";\n\t      }\n\n\t      return node;\n\t    };\n\t  });\n\n\t  instance.extend(\"toAssignable\", function (inner) {\n\t    return function (node, isBinding) {\n\t      for (var _len8 = arguments.length, args = Array(_len8 > 2 ? _len8 - 2 : 0), _key8 = 2; _key8 < _len8; _key8++) {\n\t        args[_key8 - 2] = arguments[_key8];\n\t      }\n\n\t      if (isSimpleProperty(node)) {\n\t        this.toAssignable.apply(this, [node.value, isBinding].concat(args));\n\n\t        return node;\n\t      } else if (node.type === \"ObjectExpression\") {\n\t        node.type = \"ObjectPattern\";\n\t        for (var _iterator2 = node.properties, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) {\n\t          var _ref3;\n\n\t          if (_isArray2) {\n\t            if (_i2 >= _iterator2.length) break;\n\t            _ref3 = _iterator2[_i2++];\n\t          } else {\n\t            _i2 = _iterator2.next();\n\t            if (_i2.done) break;\n\t            _ref3 = _i2.value;\n\t          }\n\n\t          var prop = _ref3;\n\n\t          if (prop.kind === \"get\" || prop.kind === \"set\") {\n\t            this.raise(prop.key.start, \"Object pattern can't contain getter or setter\");\n\t          } else if (prop.method) {\n\t            this.raise(prop.key.start, \"Object pattern can't contain methods\");\n\t          } else {\n\t            this.toAssignable(prop, isBinding, \"object destructuring pattern\");\n\t          }\n\t        }\n\n\t        return node;\n\t      }\n\n\t      return inner.call.apply(inner, [this, node, isBinding].concat(args));\n\t    };\n\t  });\n\t};\n\n\t/* eslint max-len: 0 */\n\n\tvar primitiveTypes = [\"any\", \"mixed\", \"empty\", \"bool\", \"boolean\", \"number\", \"string\", \"void\", \"null\"];\n\n\tvar pp$8 = Parser.prototype;\n\n\tpp$8.flowParseTypeInitialiser = function (tok) {\n\t  var oldInType = this.state.inType;\n\t  this.state.inType = true;\n\t  this.expect(tok || types.colon);\n\n\t  var type = this.flowParseType();\n\t  this.state.inType = oldInType;\n\t  return type;\n\t};\n\n\tpp$8.flowParsePredicate = function () {\n\t  var node = this.startNode();\n\t  var moduloLoc = this.state.startLoc;\n\t  var moduloPos = this.state.start;\n\t  this.expect(types.modulo);\n\t  var checksLoc = this.state.startLoc;\n\t  this.expectContextual(\"checks\");\n\t  // Force '%' and 'checks' to be adjacent\n\t  if (moduloLoc.line !== checksLoc.line || moduloLoc.column !== checksLoc.column - 1) {\n\t    this.raise(moduloPos, \"Spaces between ´%´ and ´checks´ are not allowed here.\");\n\t  }\n\t  if (this.eat(types.parenL)) {\n\t    node.expression = this.parseExpression();\n\t    this.expect(types.parenR);\n\t    return this.finishNode(node, \"DeclaredPredicate\");\n\t  } else {\n\t    return this.finishNode(node, \"InferredPredicate\");\n\t  }\n\t};\n\n\tpp$8.flowParseTypeAndPredicateInitialiser = function () {\n\t  var oldInType = this.state.inType;\n\t  this.state.inType = true;\n\t  this.expect(types.colon);\n\t  var type = null;\n\t  var predicate = null;\n\t  if (this.match(types.modulo)) {\n\t    this.state.inType = oldInType;\n\t    predicate = this.flowParsePredicate();\n\t  } else {\n\t    type = this.flowParseType();\n\t    this.state.inType = oldInType;\n\t    if (this.match(types.modulo)) {\n\t      predicate = this.flowParsePredicate();\n\t    }\n\t  }\n\t  return [type, predicate];\n\t};\n\n\tpp$8.flowParseDeclareClass = function (node) {\n\t  this.next();\n\t  this.flowParseInterfaceish(node, true);\n\t  return this.finishNode(node, \"DeclareClass\");\n\t};\n\n\tpp$8.flowParseDeclareFunction = function (node) {\n\t  this.next();\n\n\t  var id = node.id = this.parseIdentifier();\n\n\t  var typeNode = this.startNode();\n\t  var typeContainer = this.startNode();\n\n\t  if (this.isRelational(\"<\")) {\n\t    typeNode.typeParameters = this.flowParseTypeParameterDeclaration();\n\t  } else {\n\t    typeNode.typeParameters = null;\n\t  }\n\n\t  this.expect(types.parenL);\n\t  var tmp = this.flowParseFunctionTypeParams();\n\t  typeNode.params = tmp.params;\n\t  typeNode.rest = tmp.rest;\n\t  this.expect(types.parenR);\n\t  var predicate = null;\n\n\t  var _flowParseTypeAndPred = this.flowParseTypeAndPredicateInitialiser();\n\n\t  typeNode.returnType = _flowParseTypeAndPred[0];\n\t  predicate = _flowParseTypeAndPred[1];\n\n\t  typeContainer.typeAnnotation = this.finishNode(typeNode, \"FunctionTypeAnnotation\");\n\t  typeContainer.predicate = predicate;\n\t  id.typeAnnotation = this.finishNode(typeContainer, \"TypeAnnotation\");\n\n\t  this.finishNode(id, id.type);\n\n\t  this.semicolon();\n\n\t  return this.finishNode(node, \"DeclareFunction\");\n\t};\n\n\tpp$8.flowParseDeclare = function (node) {\n\t  if (this.match(types._class)) {\n\t    return this.flowParseDeclareClass(node);\n\t  } else if (this.match(types._function)) {\n\t    return this.flowParseDeclareFunction(node);\n\t  } else if (this.match(types._var)) {\n\t    return this.flowParseDeclareVariable(node);\n\t  } else if (this.isContextual(\"module\")) {\n\t    if (this.lookahead().type === types.dot) {\n\t      return this.flowParseDeclareModuleExports(node);\n\t    } else {\n\t      return this.flowParseDeclareModule(node);\n\t    }\n\t  } else if (this.isContextual(\"type\")) {\n\t    return this.flowParseDeclareTypeAlias(node);\n\t  } else if (this.isContextual(\"opaque\")) {\n\t    return this.flowParseDeclareOpaqueType(node);\n\t  } else if (this.isContextual(\"interface\")) {\n\t    return this.flowParseDeclareInterface(node);\n\t  } else if (this.match(types._export)) {\n\t    return this.flowParseDeclareExportDeclaration(node);\n\t  } else {\n\t    this.unexpected();\n\t  }\n\t};\n\n\tpp$8.flowParseDeclareExportDeclaration = function (node) {\n\t  this.expect(types._export);\n\t  if (this.isContextual(\"opaque\") // declare export opaque ...\n\t  ) {\n\t      node.declaration = this.flowParseDeclare(this.startNode());\n\t      node.default = false;\n\n\t      return this.finishNode(node, \"DeclareExportDeclaration\");\n\t    }\n\n\t  throw this.unexpected();\n\t};\n\n\tpp$8.flowParseDeclareVariable = function (node) {\n\t  this.next();\n\t  node.id = this.flowParseTypeAnnotatableIdentifier();\n\t  this.semicolon();\n\t  return this.finishNode(node, \"DeclareVariable\");\n\t};\n\n\tpp$8.flowParseDeclareModule = function (node) {\n\t  this.next();\n\n\t  if (this.match(types.string)) {\n\t    node.id = this.parseExprAtom();\n\t  } else {\n\t    node.id = this.parseIdentifier();\n\t  }\n\n\t  var bodyNode = node.body = this.startNode();\n\t  var body = bodyNode.body = [];\n\t  this.expect(types.braceL);\n\t  while (!this.match(types.braceR)) {\n\t    var _bodyNode = this.startNode();\n\n\t    if (this.match(types._import)) {\n\t      var lookahead = this.lookahead();\n\t      if (lookahead.value !== \"type\" && lookahead.value !== \"typeof\") {\n\t        this.unexpected(null, \"Imports within a `declare module` body must always be `import type` or `import typeof`\");\n\t      }\n\n\t      this.parseImport(_bodyNode);\n\t    } else {\n\t      this.expectContextual(\"declare\", \"Only declares and type imports are allowed inside declare module\");\n\n\t      _bodyNode = this.flowParseDeclare(_bodyNode, true);\n\t    }\n\n\t    body.push(_bodyNode);\n\t  }\n\t  this.expect(types.braceR);\n\n\t  this.finishNode(bodyNode, \"BlockStatement\");\n\t  return this.finishNode(node, \"DeclareModule\");\n\t};\n\n\tpp$8.flowParseDeclareModuleExports = function (node) {\n\t  this.expectContextual(\"module\");\n\t  this.expect(types.dot);\n\t  this.expectContextual(\"exports\");\n\t  node.typeAnnotation = this.flowParseTypeAnnotation();\n\t  this.semicolon();\n\n\t  return this.finishNode(node, \"DeclareModuleExports\");\n\t};\n\n\tpp$8.flowParseDeclareTypeAlias = function (node) {\n\t  this.next();\n\t  this.flowParseTypeAlias(node);\n\t  return this.finishNode(node, \"DeclareTypeAlias\");\n\t};\n\n\tpp$8.flowParseDeclareOpaqueType = function (node) {\n\t  this.next();\n\t  this.flowParseOpaqueType(node, true);\n\t  return this.finishNode(node, \"DeclareOpaqueType\");\n\t};\n\n\tpp$8.flowParseDeclareInterface = function (node) {\n\t  this.next();\n\t  this.flowParseInterfaceish(node);\n\t  return this.finishNode(node, \"DeclareInterface\");\n\t};\n\n\t// Interfaces\n\n\tpp$8.flowParseInterfaceish = function (node) {\n\t  node.id = this.parseIdentifier();\n\n\t  if (this.isRelational(\"<\")) {\n\t    node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t  } else {\n\t    node.typeParameters = null;\n\t  }\n\n\t  node.extends = [];\n\t  node.mixins = [];\n\n\t  if (this.eat(types._extends)) {\n\t    do {\n\t      node.extends.push(this.flowParseInterfaceExtends());\n\t    } while (this.eat(types.comma));\n\t  }\n\n\t  if (this.isContextual(\"mixins\")) {\n\t    this.next();\n\t    do {\n\t      node.mixins.push(this.flowParseInterfaceExtends());\n\t    } while (this.eat(types.comma));\n\t  }\n\n\t  node.body = this.flowParseObjectType(true, false, false);\n\t};\n\n\tpp$8.flowParseInterfaceExtends = function () {\n\t  var node = this.startNode();\n\n\t  node.id = this.flowParseQualifiedTypeIdentifier();\n\t  if (this.isRelational(\"<\")) {\n\t    node.typeParameters = this.flowParseTypeParameterInstantiation();\n\t  } else {\n\t    node.typeParameters = null;\n\t  }\n\n\t  return this.finishNode(node, \"InterfaceExtends\");\n\t};\n\n\tpp$8.flowParseInterface = function (node) {\n\t  this.flowParseInterfaceish(node, false);\n\t  return this.finishNode(node, \"InterfaceDeclaration\");\n\t};\n\n\tpp$8.flowParseRestrictedIdentifier = function (liberal) {\n\t  if (primitiveTypes.indexOf(this.state.value) > -1) {\n\t    this.raise(this.state.start, \"Cannot overwrite primitive type \" + this.state.value);\n\t  }\n\n\t  return this.parseIdentifier(liberal);\n\t};\n\n\t// Type aliases\n\n\tpp$8.flowParseTypeAlias = function (node) {\n\t  node.id = this.flowParseRestrictedIdentifier();\n\n\t  if (this.isRelational(\"<\")) {\n\t    node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t  } else {\n\t    node.typeParameters = null;\n\t  }\n\n\t  node.right = this.flowParseTypeInitialiser(types.eq);\n\t  this.semicolon();\n\n\t  return this.finishNode(node, \"TypeAlias\");\n\t};\n\n\t// Opaque type aliases\n\n\tpp$8.flowParseOpaqueType = function (node, declare) {\n\t  this.expectContextual(\"type\");\n\t  node.id = this.flowParseRestrictedIdentifier();\n\n\t  if (this.isRelational(\"<\")) {\n\t    node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t  } else {\n\t    node.typeParameters = null;\n\t  }\n\n\t  // Parse the supertype\n\t  node.supertype = null;\n\t  if (this.match(types.colon)) {\n\t    node.supertype = this.flowParseTypeInitialiser(types.colon);\n\t  }\n\n\t  node.impltype = null;\n\t  if (!declare) {\n\t    node.impltype = this.flowParseTypeInitialiser(types.eq);\n\t  }\n\t  this.semicolon();\n\n\t  return this.finishNode(node, \"OpaqueType\");\n\t};\n\n\t// Type annotations\n\n\tpp$8.flowParseTypeParameter = function () {\n\t  var node = this.startNode();\n\n\t  var variance = this.flowParseVariance();\n\n\t  var ident = this.flowParseTypeAnnotatableIdentifier();\n\t  node.name = ident.name;\n\t  node.variance = variance;\n\t  node.bound = ident.typeAnnotation;\n\n\t  if (this.match(types.eq)) {\n\t    this.eat(types.eq);\n\t    node.default = this.flowParseType();\n\t  }\n\n\t  return this.finishNode(node, \"TypeParameter\");\n\t};\n\n\tpp$8.flowParseTypeParameterDeclaration = function () {\n\t  var oldInType = this.state.inType;\n\t  var node = this.startNode();\n\t  node.params = [];\n\n\t  this.state.inType = true;\n\n\t  // istanbul ignore else: this condition is already checked at all call sites\n\t  if (this.isRelational(\"<\") || this.match(types.jsxTagStart)) {\n\t    this.next();\n\t  } else {\n\t    this.unexpected();\n\t  }\n\n\t  do {\n\t    node.params.push(this.flowParseTypeParameter());\n\t    if (!this.isRelational(\">\")) {\n\t      this.expect(types.comma);\n\t    }\n\t  } while (!this.isRelational(\">\"));\n\t  this.expectRelational(\">\");\n\n\t  this.state.inType = oldInType;\n\n\t  return this.finishNode(node, \"TypeParameterDeclaration\");\n\t};\n\n\tpp$8.flowParseTypeParameterInstantiation = function () {\n\t  var node = this.startNode();\n\t  var oldInType = this.state.inType;\n\t  node.params = [];\n\n\t  this.state.inType = true;\n\n\t  this.expectRelational(\"<\");\n\t  while (!this.isRelational(\">\")) {\n\t    node.params.push(this.flowParseType());\n\t    if (!this.isRelational(\">\")) {\n\t      this.expect(types.comma);\n\t    }\n\t  }\n\t  this.expectRelational(\">\");\n\n\t  this.state.inType = oldInType;\n\n\t  return this.finishNode(node, \"TypeParameterInstantiation\");\n\t};\n\n\tpp$8.flowParseObjectPropertyKey = function () {\n\t  return this.match(types.num) || this.match(types.string) ? this.parseExprAtom() : this.parseIdentifier(true);\n\t};\n\n\tpp$8.flowParseObjectTypeIndexer = function (node, isStatic, variance) {\n\t  node.static = isStatic;\n\n\t  this.expect(types.bracketL);\n\t  if (this.lookahead().type === types.colon) {\n\t    node.id = this.flowParseObjectPropertyKey();\n\t    node.key = this.flowParseTypeInitialiser();\n\t  } else {\n\t    node.id = null;\n\t    node.key = this.flowParseType();\n\t  }\n\t  this.expect(types.bracketR);\n\t  node.value = this.flowParseTypeInitialiser();\n\t  node.variance = variance;\n\n\t  this.flowObjectTypeSemicolon();\n\t  return this.finishNode(node, \"ObjectTypeIndexer\");\n\t};\n\n\tpp$8.flowParseObjectTypeMethodish = function (node) {\n\t  node.params = [];\n\t  node.rest = null;\n\t  node.typeParameters = null;\n\n\t  if (this.isRelational(\"<\")) {\n\t    node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t  }\n\n\t  this.expect(types.parenL);\n\t  while (!this.match(types.parenR) && !this.match(types.ellipsis)) {\n\t    node.params.push(this.flowParseFunctionTypeParam());\n\t    if (!this.match(types.parenR)) {\n\t      this.expect(types.comma);\n\t    }\n\t  }\n\n\t  if (this.eat(types.ellipsis)) {\n\t    node.rest = this.flowParseFunctionTypeParam();\n\t  }\n\t  this.expect(types.parenR);\n\t  node.returnType = this.flowParseTypeInitialiser();\n\n\t  return this.finishNode(node, \"FunctionTypeAnnotation\");\n\t};\n\n\tpp$8.flowParseObjectTypeMethod = function (startPos, startLoc, isStatic, key) {\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  node.value = this.flowParseObjectTypeMethodish(this.startNodeAt(startPos, startLoc));\n\t  node.static = isStatic;\n\t  node.key = key;\n\t  node.optional = false;\n\t  this.flowObjectTypeSemicolon();\n\t  return this.finishNode(node, \"ObjectTypeProperty\");\n\t};\n\n\tpp$8.flowParseObjectTypeCallProperty = function (node, isStatic) {\n\t  var valueNode = this.startNode();\n\t  node.static = isStatic;\n\t  node.value = this.flowParseObjectTypeMethodish(valueNode);\n\t  this.flowObjectTypeSemicolon();\n\t  return this.finishNode(node, \"ObjectTypeCallProperty\");\n\t};\n\n\tpp$8.flowParseObjectType = function (allowStatic, allowExact, allowSpread) {\n\t  var oldInType = this.state.inType;\n\t  this.state.inType = true;\n\n\t  var nodeStart = this.startNode();\n\t  var node = void 0;\n\t  var propertyKey = void 0;\n\t  var isStatic = false;\n\n\t  nodeStart.callProperties = [];\n\t  nodeStart.properties = [];\n\t  nodeStart.indexers = [];\n\n\t  var endDelim = void 0;\n\t  var exact = void 0;\n\t  if (allowExact && this.match(types.braceBarL)) {\n\t    this.expect(types.braceBarL);\n\t    endDelim = types.braceBarR;\n\t    exact = true;\n\t  } else {\n\t    this.expect(types.braceL);\n\t    endDelim = types.braceR;\n\t    exact = false;\n\t  }\n\n\t  nodeStart.exact = exact;\n\n\t  while (!this.match(endDelim)) {\n\t    var optional = false;\n\t    var startPos = this.state.start;\n\t    var startLoc = this.state.startLoc;\n\t    node = this.startNode();\n\t    if (allowStatic && this.isContextual(\"static\") && this.lookahead().type !== types.colon) {\n\t      this.next();\n\t      isStatic = true;\n\t    }\n\n\t    var variancePos = this.state.start;\n\t    var variance = this.flowParseVariance();\n\n\t    if (this.match(types.bracketL)) {\n\t      nodeStart.indexers.push(this.flowParseObjectTypeIndexer(node, isStatic, variance));\n\t    } else if (this.match(types.parenL) || this.isRelational(\"<\")) {\n\t      if (variance) {\n\t        this.unexpected(variancePos);\n\t      }\n\t      nodeStart.callProperties.push(this.flowParseObjectTypeCallProperty(node, isStatic));\n\t    } else {\n\t      if (this.match(types.ellipsis)) {\n\t        if (!allowSpread) {\n\t          this.unexpected(null, \"Spread operator cannot appear in class or interface definitions\");\n\t        }\n\t        if (variance) {\n\t          this.unexpected(variance.start, \"Spread properties cannot have variance\");\n\t        }\n\t        this.expect(types.ellipsis);\n\t        node.argument = this.flowParseType();\n\t        this.flowObjectTypeSemicolon();\n\t        nodeStart.properties.push(this.finishNode(node, \"ObjectTypeSpreadProperty\"));\n\t      } else {\n\t        propertyKey = this.flowParseObjectPropertyKey();\n\t        if (this.isRelational(\"<\") || this.match(types.parenL)) {\n\t          // This is a method property\n\t          if (variance) {\n\t            this.unexpected(variance.start);\n\t          }\n\t          nodeStart.properties.push(this.flowParseObjectTypeMethod(startPos, startLoc, isStatic, propertyKey));\n\t        } else {\n\t          if (this.eat(types.question)) {\n\t            optional = true;\n\t          }\n\t          node.key = propertyKey;\n\t          node.value = this.flowParseTypeInitialiser();\n\t          node.optional = optional;\n\t          node.static = isStatic;\n\t          node.variance = variance;\n\t          this.flowObjectTypeSemicolon();\n\t          nodeStart.properties.push(this.finishNode(node, \"ObjectTypeProperty\"));\n\t        }\n\t      }\n\t    }\n\n\t    isStatic = false;\n\t  }\n\n\t  this.expect(endDelim);\n\n\t  var out = this.finishNode(nodeStart, \"ObjectTypeAnnotation\");\n\n\t  this.state.inType = oldInType;\n\n\t  return out;\n\t};\n\n\tpp$8.flowObjectTypeSemicolon = function () {\n\t  if (!this.eat(types.semi) && !this.eat(types.comma) && !this.match(types.braceR) && !this.match(types.braceBarR)) {\n\t    this.unexpected();\n\t  }\n\t};\n\n\tpp$8.flowParseQualifiedTypeIdentifier = function (startPos, startLoc, id) {\n\t  startPos = startPos || this.state.start;\n\t  startLoc = startLoc || this.state.startLoc;\n\t  var node = id || this.parseIdentifier();\n\n\t  while (this.eat(types.dot)) {\n\t    var node2 = this.startNodeAt(startPos, startLoc);\n\t    node2.qualification = node;\n\t    node2.id = this.parseIdentifier();\n\t    node = this.finishNode(node2, \"QualifiedTypeIdentifier\");\n\t  }\n\n\t  return node;\n\t};\n\n\tpp$8.flowParseGenericType = function (startPos, startLoc, id) {\n\t  var node = this.startNodeAt(startPos, startLoc);\n\n\t  node.typeParameters = null;\n\t  node.id = this.flowParseQualifiedTypeIdentifier(startPos, startLoc, id);\n\n\t  if (this.isRelational(\"<\")) {\n\t    node.typeParameters = this.flowParseTypeParameterInstantiation();\n\t  }\n\n\t  return this.finishNode(node, \"GenericTypeAnnotation\");\n\t};\n\n\tpp$8.flowParseTypeofType = function () {\n\t  var node = this.startNode();\n\t  this.expect(types._typeof);\n\t  node.argument = this.flowParsePrimaryType();\n\t  return this.finishNode(node, \"TypeofTypeAnnotation\");\n\t};\n\n\tpp$8.flowParseTupleType = function () {\n\t  var node = this.startNode();\n\t  node.types = [];\n\t  this.expect(types.bracketL);\n\t  // We allow trailing commas\n\t  while (this.state.pos < this.input.length && !this.match(types.bracketR)) {\n\t    node.types.push(this.flowParseType());\n\t    if (this.match(types.bracketR)) break;\n\t    this.expect(types.comma);\n\t  }\n\t  this.expect(types.bracketR);\n\t  return this.finishNode(node, \"TupleTypeAnnotation\");\n\t};\n\n\tpp$8.flowParseFunctionTypeParam = function () {\n\t  var name = null;\n\t  var optional = false;\n\t  var typeAnnotation = null;\n\t  var node = this.startNode();\n\t  var lh = this.lookahead();\n\t  if (lh.type === types.colon || lh.type === types.question) {\n\t    name = this.parseIdentifier();\n\t    if (this.eat(types.question)) {\n\t      optional = true;\n\t    }\n\t    typeAnnotation = this.flowParseTypeInitialiser();\n\t  } else {\n\t    typeAnnotation = this.flowParseType();\n\t  }\n\t  node.name = name;\n\t  node.optional = optional;\n\t  node.typeAnnotation = typeAnnotation;\n\t  return this.finishNode(node, \"FunctionTypeParam\");\n\t};\n\n\tpp$8.reinterpretTypeAsFunctionTypeParam = function (type) {\n\t  var node = this.startNodeAt(type.start, type.loc.start);\n\t  node.name = null;\n\t  node.optional = false;\n\t  node.typeAnnotation = type;\n\t  return this.finishNode(node, \"FunctionTypeParam\");\n\t};\n\n\tpp$8.flowParseFunctionTypeParams = function () {\n\t  var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n\n\t  var ret = { params: params, rest: null };\n\t  while (!this.match(types.parenR) && !this.match(types.ellipsis)) {\n\t    ret.params.push(this.flowParseFunctionTypeParam());\n\t    if (!this.match(types.parenR)) {\n\t      this.expect(types.comma);\n\t    }\n\t  }\n\t  if (this.eat(types.ellipsis)) {\n\t    ret.rest = this.flowParseFunctionTypeParam();\n\t  }\n\t  return ret;\n\t};\n\n\tpp$8.flowIdentToTypeAnnotation = function (startPos, startLoc, node, id) {\n\t  switch (id.name) {\n\t    case \"any\":\n\t      return this.finishNode(node, \"AnyTypeAnnotation\");\n\n\t    case \"void\":\n\t      return this.finishNode(node, \"VoidTypeAnnotation\");\n\n\t    case \"bool\":\n\t    case \"boolean\":\n\t      return this.finishNode(node, \"BooleanTypeAnnotation\");\n\n\t    case \"mixed\":\n\t      return this.finishNode(node, \"MixedTypeAnnotation\");\n\n\t    case \"empty\":\n\t      return this.finishNode(node, \"EmptyTypeAnnotation\");\n\n\t    case \"number\":\n\t      return this.finishNode(node, \"NumberTypeAnnotation\");\n\n\t    case \"string\":\n\t      return this.finishNode(node, \"StringTypeAnnotation\");\n\n\t    default:\n\t      return this.flowParseGenericType(startPos, startLoc, id);\n\t  }\n\t};\n\n\t// The parsing of types roughly parallels the parsing of expressions, and\n\t// primary types are kind of like primary expressions...they're the\n\t// primitives with which other types are constructed.\n\tpp$8.flowParsePrimaryType = function () {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var node = this.startNode();\n\t  var tmp = void 0;\n\t  var type = void 0;\n\t  var isGroupedType = false;\n\t  var oldNoAnonFunctionType = this.state.noAnonFunctionType;\n\n\t  switch (this.state.type) {\n\t    case types.name:\n\t      return this.flowIdentToTypeAnnotation(startPos, startLoc, node, this.parseIdentifier());\n\n\t    case types.braceL:\n\t      return this.flowParseObjectType(false, false, true);\n\n\t    case types.braceBarL:\n\t      return this.flowParseObjectType(false, true, true);\n\n\t    case types.bracketL:\n\t      return this.flowParseTupleType();\n\n\t    case types.relational:\n\t      if (this.state.value === \"<\") {\n\t        node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t        this.expect(types.parenL);\n\t        tmp = this.flowParseFunctionTypeParams();\n\t        node.params = tmp.params;\n\t        node.rest = tmp.rest;\n\t        this.expect(types.parenR);\n\n\t        this.expect(types.arrow);\n\n\t        node.returnType = this.flowParseType();\n\n\t        return this.finishNode(node, \"FunctionTypeAnnotation\");\n\t      }\n\t      break;\n\n\t    case types.parenL:\n\t      this.next();\n\n\t      // Check to see if this is actually a grouped type\n\t      if (!this.match(types.parenR) && !this.match(types.ellipsis)) {\n\t        if (this.match(types.name)) {\n\t          var token = this.lookahead().type;\n\t          isGroupedType = token !== types.question && token !== types.colon;\n\t        } else {\n\t          isGroupedType = true;\n\t        }\n\t      }\n\n\t      if (isGroupedType) {\n\t        this.state.noAnonFunctionType = false;\n\t        type = this.flowParseType();\n\t        this.state.noAnonFunctionType = oldNoAnonFunctionType;\n\n\t        // A `,` or a `) =>` means this is an anonymous function type\n\t        if (this.state.noAnonFunctionType || !(this.match(types.comma) || this.match(types.parenR) && this.lookahead().type === types.arrow)) {\n\t          this.expect(types.parenR);\n\t          return type;\n\t        } else {\n\t          // Eat a comma if there is one\n\t          this.eat(types.comma);\n\t        }\n\t      }\n\n\t      if (type) {\n\t        tmp = this.flowParseFunctionTypeParams([this.reinterpretTypeAsFunctionTypeParam(type)]);\n\t      } else {\n\t        tmp = this.flowParseFunctionTypeParams();\n\t      }\n\n\t      node.params = tmp.params;\n\t      node.rest = tmp.rest;\n\n\t      this.expect(types.parenR);\n\n\t      this.expect(types.arrow);\n\n\t      node.returnType = this.flowParseType();\n\n\t      node.typeParameters = null;\n\n\t      return this.finishNode(node, \"FunctionTypeAnnotation\");\n\n\t    case types.string:\n\t      return this.parseLiteral(this.state.value, \"StringLiteralTypeAnnotation\");\n\n\t    case types._true:case types._false:\n\t      node.value = this.match(types._true);\n\t      this.next();\n\t      return this.finishNode(node, \"BooleanLiteralTypeAnnotation\");\n\n\t    case types.plusMin:\n\t      if (this.state.value === \"-\") {\n\t        this.next();\n\t        if (!this.match(types.num)) this.unexpected(null, \"Unexpected token, expected number\");\n\n\t        return this.parseLiteral(-this.state.value, \"NumericLiteralTypeAnnotation\", node.start, node.loc.start);\n\t      }\n\n\t      this.unexpected();\n\t    case types.num:\n\t      return this.parseLiteral(this.state.value, \"NumericLiteralTypeAnnotation\");\n\n\t    case types._null:\n\t      node.value = this.match(types._null);\n\t      this.next();\n\t      return this.finishNode(node, \"NullLiteralTypeAnnotation\");\n\n\t    case types._this:\n\t      node.value = this.match(types._this);\n\t      this.next();\n\t      return this.finishNode(node, \"ThisTypeAnnotation\");\n\n\t    case types.star:\n\t      this.next();\n\t      return this.finishNode(node, \"ExistentialTypeParam\");\n\n\t    default:\n\t      if (this.state.type.keyword === \"typeof\") {\n\t        return this.flowParseTypeofType();\n\t      }\n\t  }\n\n\t  this.unexpected();\n\t};\n\n\tpp$8.flowParsePostfixType = function () {\n\t  var startPos = this.state.start,\n\t      startLoc = this.state.startLoc;\n\t  var type = this.flowParsePrimaryType();\n\t  while (!this.canInsertSemicolon() && this.match(types.bracketL)) {\n\t    var node = this.startNodeAt(startPos, startLoc);\n\t    node.elementType = type;\n\t    this.expect(types.bracketL);\n\t    this.expect(types.bracketR);\n\t    type = this.finishNode(node, \"ArrayTypeAnnotation\");\n\t  }\n\t  return type;\n\t};\n\n\tpp$8.flowParsePrefixType = function () {\n\t  var node = this.startNode();\n\t  if (this.eat(types.question)) {\n\t    node.typeAnnotation = this.flowParsePrefixType();\n\t    return this.finishNode(node, \"NullableTypeAnnotation\");\n\t  } else {\n\t    return this.flowParsePostfixType();\n\t  }\n\t};\n\n\tpp$8.flowParseAnonFunctionWithoutParens = function () {\n\t  var param = this.flowParsePrefixType();\n\t  if (!this.state.noAnonFunctionType && this.eat(types.arrow)) {\n\t    var node = this.startNodeAt(param.start, param.loc.start);\n\t    node.params = [this.reinterpretTypeAsFunctionTypeParam(param)];\n\t    node.rest = null;\n\t    node.returnType = this.flowParseType();\n\t    node.typeParameters = null;\n\t    return this.finishNode(node, \"FunctionTypeAnnotation\");\n\t  }\n\t  return param;\n\t};\n\n\tpp$8.flowParseIntersectionType = function () {\n\t  var node = this.startNode();\n\t  this.eat(types.bitwiseAND);\n\t  var type = this.flowParseAnonFunctionWithoutParens();\n\t  node.types = [type];\n\t  while (this.eat(types.bitwiseAND)) {\n\t    node.types.push(this.flowParseAnonFunctionWithoutParens());\n\t  }\n\t  return node.types.length === 1 ? type : this.finishNode(node, \"IntersectionTypeAnnotation\");\n\t};\n\n\tpp$8.flowParseUnionType = function () {\n\t  var node = this.startNode();\n\t  this.eat(types.bitwiseOR);\n\t  var type = this.flowParseIntersectionType();\n\t  node.types = [type];\n\t  while (this.eat(types.bitwiseOR)) {\n\t    node.types.push(this.flowParseIntersectionType());\n\t  }\n\t  return node.types.length === 1 ? type : this.finishNode(node, \"UnionTypeAnnotation\");\n\t};\n\n\tpp$8.flowParseType = function () {\n\t  var oldInType = this.state.inType;\n\t  this.state.inType = true;\n\t  var type = this.flowParseUnionType();\n\t  this.state.inType = oldInType;\n\t  return type;\n\t};\n\n\tpp$8.flowParseTypeAnnotation = function () {\n\t  var node = this.startNode();\n\t  node.typeAnnotation = this.flowParseTypeInitialiser();\n\t  return this.finishNode(node, \"TypeAnnotation\");\n\t};\n\n\tpp$8.flowParseTypeAndPredicateAnnotation = function () {\n\t  var node = this.startNode();\n\n\t  var _flowParseTypeAndPred2 = this.flowParseTypeAndPredicateInitialiser();\n\n\t  node.typeAnnotation = _flowParseTypeAndPred2[0];\n\t  node.predicate = _flowParseTypeAndPred2[1];\n\n\t  return this.finishNode(node, \"TypeAnnotation\");\n\t};\n\n\tpp$8.flowParseTypeAnnotatableIdentifier = function () {\n\t  var ident = this.flowParseRestrictedIdentifier();\n\t  if (this.match(types.colon)) {\n\t    ident.typeAnnotation = this.flowParseTypeAnnotation();\n\t    this.finishNode(ident, ident.type);\n\t  }\n\t  return ident;\n\t};\n\n\tpp$8.typeCastToParameter = function (node) {\n\t  node.expression.typeAnnotation = node.typeAnnotation;\n\n\t  return this.finishNodeAt(node.expression, node.expression.type, node.typeAnnotation.end, node.typeAnnotation.loc.end);\n\t};\n\n\tpp$8.flowParseVariance = function () {\n\t  var variance = null;\n\t  if (this.match(types.plusMin)) {\n\t    if (this.state.value === \"+\") {\n\t      variance = \"plus\";\n\t    } else if (this.state.value === \"-\") {\n\t      variance = \"minus\";\n\t    }\n\t    this.next();\n\t  }\n\t  return variance;\n\t};\n\n\tvar flowPlugin = function flowPlugin(instance) {\n\t  // plain function return types: function name(): string {}\n\t  instance.extend(\"parseFunctionBody\", function (inner) {\n\t    return function (node, allowExpression) {\n\t      if (this.match(types.colon) && !allowExpression) {\n\t        // if allowExpression is true then we're parsing an arrow function and if\n\t        // there's a return type then it's been handled elsewhere\n\t        node.returnType = this.flowParseTypeAndPredicateAnnotation();\n\t      }\n\n\t      return inner.call(this, node, allowExpression);\n\t    };\n\t  });\n\n\t  // interfaces\n\t  instance.extend(\"parseStatement\", function (inner) {\n\t    return function (declaration, topLevel) {\n\t      // strict mode handling of `interface` since it's a reserved word\n\t      if (this.state.strict && this.match(types.name) && this.state.value === \"interface\") {\n\t        var node = this.startNode();\n\t        this.next();\n\t        return this.flowParseInterface(node);\n\t      } else {\n\t        return inner.call(this, declaration, topLevel);\n\t      }\n\t    };\n\t  });\n\n\t  // declares, interfaces and type aliases\n\t  instance.extend(\"parseExpressionStatement\", function (inner) {\n\t    return function (node, expr) {\n\t      if (expr.type === \"Identifier\") {\n\t        if (expr.name === \"declare\") {\n\t          if (this.match(types._class) || this.match(types.name) || this.match(types._function) || this.match(types._var) || this.match(types._export)) {\n\t            return this.flowParseDeclare(node);\n\t          }\n\t        } else if (this.match(types.name)) {\n\t          if (expr.name === \"interface\") {\n\t            return this.flowParseInterface(node);\n\t          } else if (expr.name === \"type\") {\n\t            return this.flowParseTypeAlias(node);\n\t          } else if (expr.name === \"opaque\") {\n\t            return this.flowParseOpaqueType(node, false);\n\t          }\n\t        }\n\t      }\n\n\t      return inner.call(this, node, expr);\n\t    };\n\t  });\n\n\t  // export type\n\t  instance.extend(\"shouldParseExportDeclaration\", function (inner) {\n\t    return function () {\n\t      return this.isContextual(\"type\") || this.isContextual(\"interface\") || this.isContextual(\"opaque\") || inner.call(this);\n\t    };\n\t  });\n\n\t  instance.extend(\"isExportDefaultSpecifier\", function (inner) {\n\t    return function () {\n\t      if (this.match(types.name) && (this.state.value === \"type\" || this.state.value === \"interface\" || this.state.value === \"opaque\")) {\n\t        return false;\n\t      }\n\n\t      return inner.call(this);\n\t    };\n\t  });\n\n\t  instance.extend(\"parseConditional\", function (inner) {\n\t    return function (expr, noIn, startPos, startLoc, refNeedsArrowPos) {\n\t      // only do the expensive clone if there is a question mark\n\t      // and if we come from inside parens\n\t      if (refNeedsArrowPos && this.match(types.question)) {\n\t        var state = this.state.clone();\n\t        try {\n\t          return inner.call(this, expr, noIn, startPos, startLoc);\n\t        } catch (err) {\n\t          if (err instanceof SyntaxError) {\n\t            this.state = state;\n\t            refNeedsArrowPos.start = err.pos || this.state.start;\n\t            return expr;\n\t          } else {\n\t            // istanbul ignore next: no such error is expected\n\t            throw err;\n\t          }\n\t        }\n\t      }\n\n\t      return inner.call(this, expr, noIn, startPos, startLoc);\n\t    };\n\t  });\n\n\t  instance.extend(\"parseParenItem\", function (inner) {\n\t    return function (node, startPos, startLoc) {\n\t      node = inner.call(this, node, startPos, startLoc);\n\t      if (this.eat(types.question)) {\n\t        node.optional = true;\n\t      }\n\n\t      if (this.match(types.colon)) {\n\t        var typeCastNode = this.startNodeAt(startPos, startLoc);\n\t        typeCastNode.expression = node;\n\t        typeCastNode.typeAnnotation = this.flowParseTypeAnnotation();\n\n\t        return this.finishNode(typeCastNode, \"TypeCastExpression\");\n\t      }\n\n\t      return node;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseExport\", function (inner) {\n\t    return function (node) {\n\t      node = inner.call(this, node);\n\t      if (node.type === \"ExportNamedDeclaration\") {\n\t        node.exportKind = node.exportKind || \"value\";\n\t      }\n\t      return node;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseExportDeclaration\", function (inner) {\n\t    return function (node) {\n\t      if (this.isContextual(\"type\")) {\n\t        node.exportKind = \"type\";\n\n\t        var declarationNode = this.startNode();\n\t        this.next();\n\n\t        if (this.match(types.braceL)) {\n\t          // export type { foo, bar };\n\t          node.specifiers = this.parseExportSpecifiers();\n\t          this.parseExportFrom(node);\n\t          return null;\n\t        } else {\n\t          // export type Foo = Bar;\n\t          return this.flowParseTypeAlias(declarationNode);\n\t        }\n\t      } else if (this.isContextual(\"opaque\")) {\n\t        node.exportKind = \"type\";\n\n\t        var _declarationNode = this.startNode();\n\t        this.next();\n\t        // export opaque type Foo = Bar;\n\t        return this.flowParseOpaqueType(_declarationNode, false);\n\t      } else if (this.isContextual(\"interface\")) {\n\t        node.exportKind = \"type\";\n\t        var _declarationNode2 = this.startNode();\n\t        this.next();\n\t        return this.flowParseInterface(_declarationNode2);\n\t      } else {\n\t        return inner.call(this, node);\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"parseClassId\", function (inner) {\n\t    return function (node) {\n\t      inner.apply(this, arguments);\n\t      if (this.isRelational(\"<\")) {\n\t        node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t      }\n\t    };\n\t  });\n\n\t  // don't consider `void` to be a keyword as then it'll use the void token type\n\t  // and set startExpr\n\t  instance.extend(\"isKeyword\", function (inner) {\n\t    return function (name) {\n\t      if (this.state.inType && name === \"void\") {\n\t        return false;\n\t      } else {\n\t        return inner.call(this, name);\n\t      }\n\t    };\n\t  });\n\n\t  // ensure that inside flow types, we bypass the jsx parser plugin\n\t  instance.extend(\"readToken\", function (inner) {\n\t    return function (code) {\n\t      if (this.state.inType && (code === 62 || code === 60)) {\n\t        return this.finishOp(types.relational, 1);\n\t      } else {\n\t        return inner.call(this, code);\n\t      }\n\t    };\n\t  });\n\n\t  // don't lex any token as a jsx one inside a flow type\n\t  instance.extend(\"jsx_readToken\", function (inner) {\n\t    return function () {\n\t      if (!this.state.inType) return inner.call(this);\n\t    };\n\t  });\n\n\t  instance.extend(\"toAssignable\", function (inner) {\n\t    return function (node, isBinding, contextDescription) {\n\t      if (node.type === \"TypeCastExpression\") {\n\t        return inner.call(this, this.typeCastToParameter(node), isBinding, contextDescription);\n\t      } else {\n\t        return inner.call(this, node, isBinding, contextDescription);\n\t      }\n\t    };\n\t  });\n\n\t  // turn type casts that we found in function parameter head into type annotated params\n\t  instance.extend(\"toAssignableList\", function (inner) {\n\t    return function (exprList, isBinding, contextDescription) {\n\t      for (var i = 0; i < exprList.length; i++) {\n\t        var expr = exprList[i];\n\t        if (expr && expr.type === \"TypeCastExpression\") {\n\t          exprList[i] = this.typeCastToParameter(expr);\n\t        }\n\t      }\n\t      return inner.call(this, exprList, isBinding, contextDescription);\n\t    };\n\t  });\n\n\t  // this is a list of nodes, from something like a call expression, we need to filter the\n\t  // type casts that we've found that are illegal in this context\n\t  instance.extend(\"toReferencedList\", function () {\n\t    return function (exprList) {\n\t      for (var i = 0; i < exprList.length; i++) {\n\t        var expr = exprList[i];\n\t        if (expr && expr._exprListItem && expr.type === \"TypeCastExpression\") {\n\t          this.raise(expr.start, \"Unexpected type cast\");\n\t        }\n\t      }\n\n\t      return exprList;\n\t    };\n\t  });\n\n\t  // parse an item inside a expression list eg. `(NODE, NODE)` where NODE represents\n\t  // the position where this function is called\n\t  instance.extend(\"parseExprListItem\", function (inner) {\n\t    return function () {\n\t      var container = this.startNode();\n\n\t      for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t        args[_key] = arguments[_key];\n\t      }\n\n\t      var node = inner.call.apply(inner, [this].concat(args));\n\t      if (this.match(types.colon)) {\n\t        container._exprListItem = true;\n\t        container.expression = node;\n\t        container.typeAnnotation = this.flowParseTypeAnnotation();\n\t        return this.finishNode(container, \"TypeCastExpression\");\n\t      } else {\n\t        return node;\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"checkLVal\", function (inner) {\n\t    return function (node) {\n\t      if (node.type !== \"TypeCastExpression\") {\n\t        return inner.apply(this, arguments);\n\t      }\n\t    };\n\t  });\n\n\t  // parse class property type annotations\n\t  instance.extend(\"parseClassProperty\", function (inner) {\n\t    return function (node) {\n\t      delete node.variancePos;\n\t      if (this.match(types.colon)) {\n\t        node.typeAnnotation = this.flowParseTypeAnnotation();\n\t      }\n\t      return inner.call(this, node);\n\t    };\n\t  });\n\n\t  // determine whether or not we're currently in the position where a class method would appear\n\t  instance.extend(\"isClassMethod\", function (inner) {\n\t    return function () {\n\t      return this.isRelational(\"<\") || inner.call(this);\n\t    };\n\t  });\n\n\t  // determine whether or not we're currently in the position where a class property would appear\n\t  instance.extend(\"isClassProperty\", function (inner) {\n\t    return function () {\n\t      return this.match(types.colon) || inner.call(this);\n\t    };\n\t  });\n\n\t  instance.extend(\"isNonstaticConstructor\", function (inner) {\n\t    return function (method) {\n\t      return !this.match(types.colon) && inner.call(this, method);\n\t    };\n\t  });\n\n\t  // parse type parameters for class methods\n\t  instance.extend(\"parseClassMethod\", function (inner) {\n\t    return function (classBody, method) {\n\t      if (method.variance) {\n\t        this.unexpected(method.variancePos);\n\t      }\n\t      delete method.variance;\n\t      delete method.variancePos;\n\t      if (this.isRelational(\"<\")) {\n\t        method.typeParameters = this.flowParseTypeParameterDeclaration();\n\t      }\n\n\t      for (var _len2 = arguments.length, args = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {\n\t        args[_key2 - 2] = arguments[_key2];\n\t      }\n\n\t      inner.call.apply(inner, [this, classBody, method].concat(args));\n\t    };\n\t  });\n\n\t  // parse a the super class type parameters and implements\n\t  instance.extend(\"parseClassSuper\", function (inner) {\n\t    return function (node, isStatement) {\n\t      inner.call(this, node, isStatement);\n\t      if (node.superClass && this.isRelational(\"<\")) {\n\t        node.superTypeParameters = this.flowParseTypeParameterInstantiation();\n\t      }\n\t      if (this.isContextual(\"implements\")) {\n\t        this.next();\n\t        var implemented = node.implements = [];\n\t        do {\n\t          var _node = this.startNode();\n\t          _node.id = this.parseIdentifier();\n\t          if (this.isRelational(\"<\")) {\n\t            _node.typeParameters = this.flowParseTypeParameterInstantiation();\n\t          } else {\n\t            _node.typeParameters = null;\n\t          }\n\t          implemented.push(this.finishNode(_node, \"ClassImplements\"));\n\t        } while (this.eat(types.comma));\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"parsePropertyName\", function (inner) {\n\t    return function (node) {\n\t      var variancePos = this.state.start;\n\t      var variance = this.flowParseVariance();\n\t      var key = inner.call(this, node);\n\t      node.variance = variance;\n\t      node.variancePos = variancePos;\n\t      return key;\n\t    };\n\t  });\n\n\t  // parse type parameters for object method shorthand\n\t  instance.extend(\"parseObjPropValue\", function (inner) {\n\t    return function (prop) {\n\t      if (prop.variance) {\n\t        this.unexpected(prop.variancePos);\n\t      }\n\t      delete prop.variance;\n\t      delete prop.variancePos;\n\n\t      var typeParameters = void 0;\n\n\t      // method shorthand\n\t      if (this.isRelational(\"<\")) {\n\t        typeParameters = this.flowParseTypeParameterDeclaration();\n\t        if (!this.match(types.parenL)) this.unexpected();\n\t      }\n\n\t      inner.apply(this, arguments);\n\n\t      // add typeParameters if we found them\n\t      if (typeParameters) {\n\t        (prop.value || prop).typeParameters = typeParameters;\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"parseAssignableListItemTypes\", function () {\n\t    return function (param) {\n\t      if (this.eat(types.question)) {\n\t        param.optional = true;\n\t      }\n\t      if (this.match(types.colon)) {\n\t        param.typeAnnotation = this.flowParseTypeAnnotation();\n\t      }\n\t      this.finishNode(param, param.type);\n\t      return param;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseMaybeDefault\", function (inner) {\n\t    return function () {\n\t      for (var _len3 = arguments.length, args = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {\n\t        args[_key3] = arguments[_key3];\n\t      }\n\n\t      var node = inner.apply(this, args);\n\n\t      if (node.type === \"AssignmentPattern\" && node.typeAnnotation && node.right.start < node.typeAnnotation.start) {\n\t        this.raise(node.typeAnnotation.start, \"Type annotations must come before default assignments, e.g. instead of `age = 25: number` use `age: number = 25`\");\n\t      }\n\n\t      return node;\n\t    };\n\t  });\n\n\t  // parse typeof and type imports\n\t  instance.extend(\"parseImportSpecifiers\", function (inner) {\n\t    return function (node) {\n\t      node.importKind = \"value\";\n\n\t      var kind = null;\n\t      if (this.match(types._typeof)) {\n\t        kind = \"typeof\";\n\t      } else if (this.isContextual(\"type\")) {\n\t        kind = \"type\";\n\t      }\n\t      if (kind) {\n\t        var lh = this.lookahead();\n\t        if (lh.type === types.name && lh.value !== \"from\" || lh.type === types.braceL || lh.type === types.star) {\n\t          this.next();\n\t          node.importKind = kind;\n\t        }\n\t      }\n\n\t      inner.call(this, node);\n\t    };\n\t  });\n\n\t  // parse import-type/typeof shorthand\n\t  instance.extend(\"parseImportSpecifier\", function () {\n\t    return function (node) {\n\t      var specifier = this.startNode();\n\t      var firstIdentLoc = this.state.start;\n\t      var firstIdent = this.parseIdentifier(true);\n\n\t      var specifierTypeKind = null;\n\t      if (firstIdent.name === \"type\") {\n\t        specifierTypeKind = \"type\";\n\t      } else if (firstIdent.name === \"typeof\") {\n\t        specifierTypeKind = \"typeof\";\n\t      }\n\n\t      var isBinding = false;\n\t      if (this.isContextual(\"as\")) {\n\t        var as_ident = this.parseIdentifier(true);\n\t        if (specifierTypeKind !== null && !this.match(types.name) && !this.state.type.keyword) {\n\t          // `import {type as ,` or `import {type as }`\n\t          specifier.imported = as_ident;\n\t          specifier.importKind = specifierTypeKind;\n\t          specifier.local = as_ident.__clone();\n\t        } else {\n\t          // `import {type as foo`\n\t          specifier.imported = firstIdent;\n\t          specifier.importKind = null;\n\t          specifier.local = this.parseIdentifier();\n\t        }\n\t      } else if (specifierTypeKind !== null && (this.match(types.name) || this.state.type.keyword)) {\n\t        // `import {type foo`\n\t        specifier.imported = this.parseIdentifier(true);\n\t        specifier.importKind = specifierTypeKind;\n\t        if (this.eatContextual(\"as\")) {\n\t          specifier.local = this.parseIdentifier();\n\t        } else {\n\t          isBinding = true;\n\t          specifier.local = specifier.imported.__clone();\n\t        }\n\t      } else {\n\t        isBinding = true;\n\t        specifier.imported = firstIdent;\n\t        specifier.importKind = null;\n\t        specifier.local = specifier.imported.__clone();\n\t      }\n\n\t      if ((node.importKind === \"type\" || node.importKind === \"typeof\") && (specifier.importKind === \"type\" || specifier.importKind === \"typeof\")) {\n\t        this.raise(firstIdentLoc, \"`The `type` and `typeof` keywords on named imports can only be used on regular `import` statements. It cannot be used with `import type` or `import typeof` statements`\");\n\t      }\n\n\t      if (isBinding) this.checkReservedWord(specifier.local.name, specifier.start, true, true);\n\n\t      this.checkLVal(specifier.local, true, undefined, \"import specifier\");\n\t      node.specifiers.push(this.finishNode(specifier, \"ImportSpecifier\"));\n\t    };\n\t  });\n\n\t  // parse function type parameters - function foo<T>() {}\n\t  instance.extend(\"parseFunctionParams\", function (inner) {\n\t    return function (node) {\n\t      if (this.isRelational(\"<\")) {\n\t        node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t      }\n\t      inner.call(this, node);\n\t    };\n\t  });\n\n\t  // parse flow type annotations on variable declarator heads - let foo: string = bar\n\t  instance.extend(\"parseVarHead\", function (inner) {\n\t    return function (decl) {\n\t      inner.call(this, decl);\n\t      if (this.match(types.colon)) {\n\t        decl.id.typeAnnotation = this.flowParseTypeAnnotation();\n\t        this.finishNode(decl.id, decl.id.type);\n\t      }\n\t    };\n\t  });\n\n\t  // parse the return type of an async arrow function - let foo = (async (): number => {});\n\t  instance.extend(\"parseAsyncArrowFromCallExpression\", function (inner) {\n\t    return function (node, call) {\n\t      if (this.match(types.colon)) {\n\t        var oldNoAnonFunctionType = this.state.noAnonFunctionType;\n\t        this.state.noAnonFunctionType = true;\n\t        node.returnType = this.flowParseTypeAnnotation();\n\t        this.state.noAnonFunctionType = oldNoAnonFunctionType;\n\t      }\n\n\t      return inner.call(this, node, call);\n\t    };\n\t  });\n\n\t  // todo description\n\t  instance.extend(\"shouldParseAsyncArrow\", function (inner) {\n\t    return function () {\n\t      return this.match(types.colon) || inner.call(this);\n\t    };\n\t  });\n\n\t  // We need to support type parameter declarations for arrow functions. This\n\t  // is tricky. There are three situations we need to handle\n\t  //\n\t  // 1. This is either JSX or an arrow function. We'll try JSX first. If that\n\t  //    fails, we'll try an arrow function. If that fails, we'll throw the JSX\n\t  //    error.\n\t  // 2. This is an arrow function. We'll parse the type parameter declaration,\n\t  //    parse the rest, make sure the rest is an arrow function, and go from\n\t  //    there\n\t  // 3. This is neither. Just call the inner function\n\t  instance.extend(\"parseMaybeAssign\", function (inner) {\n\t    return function () {\n\t      var jsxError = null;\n\n\t      for (var _len4 = arguments.length, args = Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {\n\t        args[_key4] = arguments[_key4];\n\t      }\n\n\t      if (types.jsxTagStart && this.match(types.jsxTagStart)) {\n\t        var state = this.state.clone();\n\t        try {\n\t          return inner.apply(this, args);\n\t        } catch (err) {\n\t          if (err instanceof SyntaxError) {\n\t            this.state = state;\n\n\t            // Remove `tc.j_expr` and `tc.j_oTag` from context added\n\t            // by parsing `jsxTagStart` to stop the JSX plugin from\n\t            // messing with the tokens\n\t            this.state.context.length -= 2;\n\n\t            jsxError = err;\n\t          } else {\n\t            // istanbul ignore next: no such error is expected\n\t            throw err;\n\t          }\n\t        }\n\t      }\n\n\t      if (jsxError != null || this.isRelational(\"<\")) {\n\t        var arrowExpression = void 0;\n\t        var typeParameters = void 0;\n\t        try {\n\t          typeParameters = this.flowParseTypeParameterDeclaration();\n\n\t          arrowExpression = inner.apply(this, args);\n\t          arrowExpression.typeParameters = typeParameters;\n\t          arrowExpression.start = typeParameters.start;\n\t          arrowExpression.loc.start = typeParameters.loc.start;\n\t        } catch (err) {\n\t          throw jsxError || err;\n\t        }\n\n\t        if (arrowExpression.type === \"ArrowFunctionExpression\") {\n\t          return arrowExpression;\n\t        } else if (jsxError != null) {\n\t          throw jsxError;\n\t        } else {\n\t          this.raise(typeParameters.start, \"Expected an arrow function after this type parameter declaration\");\n\t        }\n\t      }\n\n\t      return inner.apply(this, args);\n\t    };\n\t  });\n\n\t  // handle return types for arrow functions\n\t  instance.extend(\"parseArrow\", function (inner) {\n\t    return function (node) {\n\t      if (this.match(types.colon)) {\n\t        var state = this.state.clone();\n\t        try {\n\t          var oldNoAnonFunctionType = this.state.noAnonFunctionType;\n\t          this.state.noAnonFunctionType = true;\n\t          var returnType = this.flowParseTypeAndPredicateAnnotation();\n\t          this.state.noAnonFunctionType = oldNoAnonFunctionType;\n\n\t          if (this.canInsertSemicolon()) this.unexpected();\n\t          if (!this.match(types.arrow)) this.unexpected();\n\t          // assign after it is clear it is an arrow\n\t          node.returnType = returnType;\n\t        } catch (err) {\n\t          if (err instanceof SyntaxError) {\n\t            this.state = state;\n\t          } else {\n\t            // istanbul ignore next: no such error is expected\n\t            throw err;\n\t          }\n\t        }\n\t      }\n\n\t      return inner.call(this, node);\n\t    };\n\t  });\n\n\t  instance.extend(\"shouldParseArrow\", function (inner) {\n\t    return function () {\n\t      return this.match(types.colon) || inner.call(this);\n\t    };\n\t  });\n\t};\n\n\t// Adapted from String.fromcodepoint to export the function without modifying String\n\t/*! https://mths.be/fromcodepoint v0.2.1 by @mathias */\n\n\t// The MIT License (MIT)\n\t// Copyright (c) Mathias Bynens\n\t//\n\t// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and\n\t// associated documentation files (the \"Software\"), to deal in the Software without restriction,\n\t// including without limitation the rights to use, copy, modify, merge, publish, distribute,\n\t// sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\n\t// furnished to do so, subject to the following conditions:\n\t//\n\t// The above copyright notice and this permission notice shall be included in all copies or\n\t// substantial portions of the Software.\n\t//\n\t// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT\n\t// NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n\t// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n\t// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n\t// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\tvar fromCodePoint = String.fromCodePoint;\n\n\tif (!fromCodePoint) {\n\t  var stringFromCharCode = String.fromCharCode;\n\t  var floor = Math.floor;\n\t  fromCodePoint = function fromCodePoint() {\n\t    var MAX_SIZE = 0x4000;\n\t    var codeUnits = [];\n\t    var highSurrogate = void 0;\n\t    var lowSurrogate = void 0;\n\t    var index = -1;\n\t    var length = arguments.length;\n\t    if (!length) {\n\t      return \"\";\n\t    }\n\t    var result = \"\";\n\t    while (++index < length) {\n\t      var codePoint = Number(arguments[index]);\n\t      if (!isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`\n\t      codePoint < 0 || // not a valid Unicode code point\n\t      codePoint > 0x10FFFF || // not a valid Unicode code point\n\t      floor(codePoint) != codePoint // not an integer\n\t      ) {\n\t          throw RangeError(\"Invalid code point: \" + codePoint);\n\t        }\n\t      if (codePoint <= 0xFFFF) {\n\t        // BMP code point\n\t        codeUnits.push(codePoint);\n\t      } else {\n\t        // Astral code point; split in surrogate halves\n\t        // https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n\t        codePoint -= 0x10000;\n\t        highSurrogate = (codePoint >> 10) + 0xD800;\n\t        lowSurrogate = codePoint % 0x400 + 0xDC00;\n\t        codeUnits.push(highSurrogate, lowSurrogate);\n\t      }\n\t      if (index + 1 == length || codeUnits.length > MAX_SIZE) {\n\t        result += stringFromCharCode.apply(null, codeUnits);\n\t        codeUnits.length = 0;\n\t      }\n\t    }\n\t    return result;\n\t  };\n\t}\n\n\tvar fromCodePoint$1 = fromCodePoint;\n\n\tvar XHTMLEntities = {\n\t  quot: \"\\\"\",\n\t  amp: \"&\",\n\t  apos: \"'\",\n\t  lt: \"<\",\n\t  gt: \">\",\n\t  nbsp: \"\\xA0\",\n\t  iexcl: \"\\xA1\",\n\t  cent: \"\\xA2\",\n\t  pound: \"\\xA3\",\n\t  curren: \"\\xA4\",\n\t  yen: \"\\xA5\",\n\t  brvbar: \"\\xA6\",\n\t  sect: \"\\xA7\",\n\t  uml: \"\\xA8\",\n\t  copy: \"\\xA9\",\n\t  ordf: \"\\xAA\",\n\t  laquo: \"\\xAB\",\n\t  not: \"\\xAC\",\n\t  shy: \"\\xAD\",\n\t  reg: \"\\xAE\",\n\t  macr: \"\\xAF\",\n\t  deg: \"\\xB0\",\n\t  plusmn: \"\\xB1\",\n\t  sup2: \"\\xB2\",\n\t  sup3: \"\\xB3\",\n\t  acute: \"\\xB4\",\n\t  micro: \"\\xB5\",\n\t  para: \"\\xB6\",\n\t  middot: \"\\xB7\",\n\t  cedil: \"\\xB8\",\n\t  sup1: \"\\xB9\",\n\t  ordm: \"\\xBA\",\n\t  raquo: \"\\xBB\",\n\t  frac14: \"\\xBC\",\n\t  frac12: \"\\xBD\",\n\t  frac34: \"\\xBE\",\n\t  iquest: \"\\xBF\",\n\t  Agrave: \"\\xC0\",\n\t  Aacute: \"\\xC1\",\n\t  Acirc: \"\\xC2\",\n\t  Atilde: \"\\xC3\",\n\t  Auml: \"\\xC4\",\n\t  Aring: \"\\xC5\",\n\t  AElig: \"\\xC6\",\n\t  Ccedil: \"\\xC7\",\n\t  Egrave: \"\\xC8\",\n\t  Eacute: \"\\xC9\",\n\t  Ecirc: \"\\xCA\",\n\t  Euml: \"\\xCB\",\n\t  Igrave: \"\\xCC\",\n\t  Iacute: \"\\xCD\",\n\t  Icirc: \"\\xCE\",\n\t  Iuml: \"\\xCF\",\n\t  ETH: \"\\xD0\",\n\t  Ntilde: \"\\xD1\",\n\t  Ograve: \"\\xD2\",\n\t  Oacute: \"\\xD3\",\n\t  Ocirc: \"\\xD4\",\n\t  Otilde: \"\\xD5\",\n\t  Ouml: \"\\xD6\",\n\t  times: \"\\xD7\",\n\t  Oslash: \"\\xD8\",\n\t  Ugrave: \"\\xD9\",\n\t  Uacute: \"\\xDA\",\n\t  Ucirc: \"\\xDB\",\n\t  Uuml: \"\\xDC\",\n\t  Yacute: \"\\xDD\",\n\t  THORN: \"\\xDE\",\n\t  szlig: \"\\xDF\",\n\t  agrave: \"\\xE0\",\n\t  aacute: \"\\xE1\",\n\t  acirc: \"\\xE2\",\n\t  atilde: \"\\xE3\",\n\t  auml: \"\\xE4\",\n\t  aring: \"\\xE5\",\n\t  aelig: \"\\xE6\",\n\t  ccedil: \"\\xE7\",\n\t  egrave: \"\\xE8\",\n\t  eacute: \"\\xE9\",\n\t  ecirc: \"\\xEA\",\n\t  euml: \"\\xEB\",\n\t  igrave: \"\\xEC\",\n\t  iacute: \"\\xED\",\n\t  icirc: \"\\xEE\",\n\t  iuml: \"\\xEF\",\n\t  eth: \"\\xF0\",\n\t  ntilde: \"\\xF1\",\n\t  ograve: \"\\xF2\",\n\t  oacute: \"\\xF3\",\n\t  ocirc: \"\\xF4\",\n\t  otilde: \"\\xF5\",\n\t  ouml: \"\\xF6\",\n\t  divide: \"\\xF7\",\n\t  oslash: \"\\xF8\",\n\t  ugrave: \"\\xF9\",\n\t  uacute: \"\\xFA\",\n\t  ucirc: \"\\xFB\",\n\t  uuml: \"\\xFC\",\n\t  yacute: \"\\xFD\",\n\t  thorn: \"\\xFE\",\n\t  yuml: \"\\xFF\",\n\t  OElig: '\\u0152',\n\t  oelig: '\\u0153',\n\t  Scaron: '\\u0160',\n\t  scaron: '\\u0161',\n\t  Yuml: '\\u0178',\n\t  fnof: '\\u0192',\n\t  circ: '\\u02C6',\n\t  tilde: '\\u02DC',\n\t  Alpha: '\\u0391',\n\t  Beta: '\\u0392',\n\t  Gamma: '\\u0393',\n\t  Delta: '\\u0394',\n\t  Epsilon: '\\u0395',\n\t  Zeta: '\\u0396',\n\t  Eta: '\\u0397',\n\t  Theta: '\\u0398',\n\t  Iota: '\\u0399',\n\t  Kappa: '\\u039A',\n\t  Lambda: '\\u039B',\n\t  Mu: '\\u039C',\n\t  Nu: '\\u039D',\n\t  Xi: '\\u039E',\n\t  Omicron: '\\u039F',\n\t  Pi: '\\u03A0',\n\t  Rho: '\\u03A1',\n\t  Sigma: '\\u03A3',\n\t  Tau: '\\u03A4',\n\t  Upsilon: '\\u03A5',\n\t  Phi: '\\u03A6',\n\t  Chi: '\\u03A7',\n\t  Psi: '\\u03A8',\n\t  Omega: '\\u03A9',\n\t  alpha: '\\u03B1',\n\t  beta: '\\u03B2',\n\t  gamma: '\\u03B3',\n\t  delta: '\\u03B4',\n\t  epsilon: '\\u03B5',\n\t  zeta: '\\u03B6',\n\t  eta: '\\u03B7',\n\t  theta: '\\u03B8',\n\t  iota: '\\u03B9',\n\t  kappa: '\\u03BA',\n\t  lambda: '\\u03BB',\n\t  mu: '\\u03BC',\n\t  nu: '\\u03BD',\n\t  xi: '\\u03BE',\n\t  omicron: '\\u03BF',\n\t  pi: '\\u03C0',\n\t  rho: '\\u03C1',\n\t  sigmaf: '\\u03C2',\n\t  sigma: '\\u03C3',\n\t  tau: '\\u03C4',\n\t  upsilon: '\\u03C5',\n\t  phi: '\\u03C6',\n\t  chi: '\\u03C7',\n\t  psi: '\\u03C8',\n\t  omega: '\\u03C9',\n\t  thetasym: '\\u03D1',\n\t  upsih: '\\u03D2',\n\t  piv: '\\u03D6',\n\t  ensp: '\\u2002',\n\t  emsp: '\\u2003',\n\t  thinsp: '\\u2009',\n\t  zwnj: '\\u200C',\n\t  zwj: '\\u200D',\n\t  lrm: '\\u200E',\n\t  rlm: '\\u200F',\n\t  ndash: '\\u2013',\n\t  mdash: '\\u2014',\n\t  lsquo: '\\u2018',\n\t  rsquo: '\\u2019',\n\t  sbquo: '\\u201A',\n\t  ldquo: '\\u201C',\n\t  rdquo: '\\u201D',\n\t  bdquo: '\\u201E',\n\t  dagger: '\\u2020',\n\t  Dagger: '\\u2021',\n\t  bull: '\\u2022',\n\t  hellip: '\\u2026',\n\t  permil: '\\u2030',\n\t  prime: '\\u2032',\n\t  Prime: '\\u2033',\n\t  lsaquo: '\\u2039',\n\t  rsaquo: '\\u203A',\n\t  oline: '\\u203E',\n\t  frasl: '\\u2044',\n\t  euro: '\\u20AC',\n\t  image: '\\u2111',\n\t  weierp: '\\u2118',\n\t  real: '\\u211C',\n\t  trade: '\\u2122',\n\t  alefsym: '\\u2135',\n\t  larr: '\\u2190',\n\t  uarr: '\\u2191',\n\t  rarr: '\\u2192',\n\t  darr: '\\u2193',\n\t  harr: '\\u2194',\n\t  crarr: '\\u21B5',\n\t  lArr: '\\u21D0',\n\t  uArr: '\\u21D1',\n\t  rArr: '\\u21D2',\n\t  dArr: '\\u21D3',\n\t  hArr: '\\u21D4',\n\t  forall: '\\u2200',\n\t  part: '\\u2202',\n\t  exist: '\\u2203',\n\t  empty: '\\u2205',\n\t  nabla: '\\u2207',\n\t  isin: '\\u2208',\n\t  notin: '\\u2209',\n\t  ni: '\\u220B',\n\t  prod: '\\u220F',\n\t  sum: '\\u2211',\n\t  minus: '\\u2212',\n\t  lowast: '\\u2217',\n\t  radic: '\\u221A',\n\t  prop: '\\u221D',\n\t  infin: '\\u221E',\n\t  ang: '\\u2220',\n\t  and: '\\u2227',\n\t  or: '\\u2228',\n\t  cap: '\\u2229',\n\t  cup: '\\u222A',\n\t  \"int\": '\\u222B',\n\t  there4: '\\u2234',\n\t  sim: '\\u223C',\n\t  cong: '\\u2245',\n\t  asymp: '\\u2248',\n\t  ne: '\\u2260',\n\t  equiv: '\\u2261',\n\t  le: '\\u2264',\n\t  ge: '\\u2265',\n\t  sub: '\\u2282',\n\t  sup: '\\u2283',\n\t  nsub: '\\u2284',\n\t  sube: '\\u2286',\n\t  supe: '\\u2287',\n\t  oplus: '\\u2295',\n\t  otimes: '\\u2297',\n\t  perp: '\\u22A5',\n\t  sdot: '\\u22C5',\n\t  lceil: '\\u2308',\n\t  rceil: '\\u2309',\n\t  lfloor: '\\u230A',\n\t  rfloor: '\\u230B',\n\t  lang: '\\u2329',\n\t  rang: '\\u232A',\n\t  loz: '\\u25CA',\n\t  spades: '\\u2660',\n\t  clubs: '\\u2663',\n\t  hearts: '\\u2665',\n\t  diams: '\\u2666'\n\t};\n\n\tvar HEX_NUMBER = /^[\\da-fA-F]+$/;\n\tvar DECIMAL_NUMBER = /^\\d+$/;\n\n\ttypes$1.j_oTag = new TokContext(\"<tag\", false);\n\ttypes$1.j_cTag = new TokContext(\"</tag\", false);\n\ttypes$1.j_expr = new TokContext(\"<tag>...</tag>\", true, true);\n\n\ttypes.jsxName = new TokenType(\"jsxName\");\n\ttypes.jsxText = new TokenType(\"jsxText\", { beforeExpr: true });\n\ttypes.jsxTagStart = new TokenType(\"jsxTagStart\", { startsExpr: true });\n\ttypes.jsxTagEnd = new TokenType(\"jsxTagEnd\");\n\n\ttypes.jsxTagStart.updateContext = function () {\n\t  this.state.context.push(types$1.j_expr); // treat as beginning of JSX expression\n\t  this.state.context.push(types$1.j_oTag); // start opening tag context\n\t  this.state.exprAllowed = false;\n\t};\n\n\ttypes.jsxTagEnd.updateContext = function (prevType) {\n\t  var out = this.state.context.pop();\n\t  if (out === types$1.j_oTag && prevType === types.slash || out === types$1.j_cTag) {\n\t    this.state.context.pop();\n\t    this.state.exprAllowed = this.curContext() === types$1.j_expr;\n\t  } else {\n\t    this.state.exprAllowed = true;\n\t  }\n\t};\n\n\tvar pp$9 = Parser.prototype;\n\n\t// Reads inline JSX contents token.\n\n\tpp$9.jsxReadToken = function () {\n\t  var out = \"\";\n\t  var chunkStart = this.state.pos;\n\t  for (;;) {\n\t    if (this.state.pos >= this.input.length) {\n\t      this.raise(this.state.start, \"Unterminated JSX contents\");\n\t    }\n\n\t    var ch = this.input.charCodeAt(this.state.pos);\n\n\t    switch (ch) {\n\t      case 60: // \"<\"\n\t      case 123:\n\t        // \"{\"\n\t        if (this.state.pos === this.state.start) {\n\t          if (ch === 60 && this.state.exprAllowed) {\n\t            ++this.state.pos;\n\t            return this.finishToken(types.jsxTagStart);\n\t          }\n\t          return this.getTokenFromCode(ch);\n\t        }\n\t        out += this.input.slice(chunkStart, this.state.pos);\n\t        return this.finishToken(types.jsxText, out);\n\n\t      case 38:\n\t        // \"&\"\n\t        out += this.input.slice(chunkStart, this.state.pos);\n\t        out += this.jsxReadEntity();\n\t        chunkStart = this.state.pos;\n\t        break;\n\n\t      default:\n\t        if (isNewLine(ch)) {\n\t          out += this.input.slice(chunkStart, this.state.pos);\n\t          out += this.jsxReadNewLine(true);\n\t          chunkStart = this.state.pos;\n\t        } else {\n\t          ++this.state.pos;\n\t        }\n\t    }\n\t  }\n\t};\n\n\tpp$9.jsxReadNewLine = function (normalizeCRLF) {\n\t  var ch = this.input.charCodeAt(this.state.pos);\n\t  var out = void 0;\n\t  ++this.state.pos;\n\t  if (ch === 13 && this.input.charCodeAt(this.state.pos) === 10) {\n\t    ++this.state.pos;\n\t    out = normalizeCRLF ? \"\\n\" : \"\\r\\n\";\n\t  } else {\n\t    out = String.fromCharCode(ch);\n\t  }\n\t  ++this.state.curLine;\n\t  this.state.lineStart = this.state.pos;\n\n\t  return out;\n\t};\n\n\tpp$9.jsxReadString = function (quote) {\n\t  var out = \"\";\n\t  var chunkStart = ++this.state.pos;\n\t  for (;;) {\n\t    if (this.state.pos >= this.input.length) {\n\t      this.raise(this.state.start, \"Unterminated string constant\");\n\t    }\n\n\t    var ch = this.input.charCodeAt(this.state.pos);\n\t    if (ch === quote) break;\n\t    if (ch === 38) {\n\t      // \"&\"\n\t      out += this.input.slice(chunkStart, this.state.pos);\n\t      out += this.jsxReadEntity();\n\t      chunkStart = this.state.pos;\n\t    } else if (isNewLine(ch)) {\n\t      out += this.input.slice(chunkStart, this.state.pos);\n\t      out += this.jsxReadNewLine(false);\n\t      chunkStart = this.state.pos;\n\t    } else {\n\t      ++this.state.pos;\n\t    }\n\t  }\n\t  out += this.input.slice(chunkStart, this.state.pos++);\n\t  return this.finishToken(types.string, out);\n\t};\n\n\tpp$9.jsxReadEntity = function () {\n\t  var str = \"\";\n\t  var count = 0;\n\t  var entity = void 0;\n\t  var ch = this.input[this.state.pos];\n\n\t  var startPos = ++this.state.pos;\n\t  while (this.state.pos < this.input.length && count++ < 10) {\n\t    ch = this.input[this.state.pos++];\n\t    if (ch === \";\") {\n\t      if (str[0] === \"#\") {\n\t        if (str[1] === \"x\") {\n\t          str = str.substr(2);\n\t          if (HEX_NUMBER.test(str)) entity = fromCodePoint$1(parseInt(str, 16));\n\t        } else {\n\t          str = str.substr(1);\n\t          if (DECIMAL_NUMBER.test(str)) entity = fromCodePoint$1(parseInt(str, 10));\n\t        }\n\t      } else {\n\t        entity = XHTMLEntities[str];\n\t      }\n\t      break;\n\t    }\n\t    str += ch;\n\t  }\n\t  if (!entity) {\n\t    this.state.pos = startPos;\n\t    return \"&\";\n\t  }\n\t  return entity;\n\t};\n\n\t// Read a JSX identifier (valid tag or attribute name).\n\t//\n\t// Optimized version since JSX identifiers can\"t contain\n\t// escape characters and so can be read as single slice.\n\t// Also assumes that first character was already checked\n\t// by isIdentifierStart in readToken.\n\n\tpp$9.jsxReadWord = function () {\n\t  var ch = void 0;\n\t  var start = this.state.pos;\n\t  do {\n\t    ch = this.input.charCodeAt(++this.state.pos);\n\t  } while (isIdentifierChar(ch) || ch === 45); // \"-\"\n\t  return this.finishToken(types.jsxName, this.input.slice(start, this.state.pos));\n\t};\n\n\t// Transforms JSX element name to string.\n\n\tfunction getQualifiedJSXName(object) {\n\t  if (object.type === \"JSXIdentifier\") {\n\t    return object.name;\n\t  }\n\n\t  if (object.type === \"JSXNamespacedName\") {\n\t    return object.namespace.name + \":\" + object.name.name;\n\t  }\n\n\t  if (object.type === \"JSXMemberExpression\") {\n\t    return getQualifiedJSXName(object.object) + \".\" + getQualifiedJSXName(object.property);\n\t  }\n\t}\n\n\t// Parse next token as JSX identifier\n\n\tpp$9.jsxParseIdentifier = function () {\n\t  var node = this.startNode();\n\t  if (this.match(types.jsxName)) {\n\t    node.name = this.state.value;\n\t  } else if (this.state.type.keyword) {\n\t    node.name = this.state.type.keyword;\n\t  } else {\n\t    this.unexpected();\n\t  }\n\t  this.next();\n\t  return this.finishNode(node, \"JSXIdentifier\");\n\t};\n\n\t// Parse namespaced identifier.\n\n\tpp$9.jsxParseNamespacedName = function () {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var name = this.jsxParseIdentifier();\n\t  if (!this.eat(types.colon)) return name;\n\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  node.namespace = name;\n\t  node.name = this.jsxParseIdentifier();\n\t  return this.finishNode(node, \"JSXNamespacedName\");\n\t};\n\n\t// Parses element name in any form - namespaced, member\n\t// or single identifier.\n\n\tpp$9.jsxParseElementName = function () {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var node = this.jsxParseNamespacedName();\n\t  while (this.eat(types.dot)) {\n\t    var newNode = this.startNodeAt(startPos, startLoc);\n\t    newNode.object = node;\n\t    newNode.property = this.jsxParseIdentifier();\n\t    node = this.finishNode(newNode, \"JSXMemberExpression\");\n\t  }\n\t  return node;\n\t};\n\n\t// Parses any type of JSX attribute value.\n\n\tpp$9.jsxParseAttributeValue = function () {\n\t  var node = void 0;\n\t  switch (this.state.type) {\n\t    case types.braceL:\n\t      node = this.jsxParseExpressionContainer();\n\t      if (node.expression.type === \"JSXEmptyExpression\") {\n\t        this.raise(node.start, \"JSX attributes must only be assigned a non-empty expression\");\n\t      } else {\n\t        return node;\n\t      }\n\n\t    case types.jsxTagStart:\n\t    case types.string:\n\t      node = this.parseExprAtom();\n\t      node.extra = null;\n\t      return node;\n\n\t    default:\n\t      this.raise(this.state.start, \"JSX value should be either an expression or a quoted JSX text\");\n\t  }\n\t};\n\n\t// JSXEmptyExpression is unique type since it doesn't actually parse anything,\n\t// and so it should start at the end of last read token (left brace) and finish\n\t// at the beginning of the next one (right brace).\n\n\tpp$9.jsxParseEmptyExpression = function () {\n\t  var node = this.startNodeAt(this.state.lastTokEnd, this.state.lastTokEndLoc);\n\t  return this.finishNodeAt(node, \"JSXEmptyExpression\", this.state.start, this.state.startLoc);\n\t};\n\n\t// Parse JSX spread child\n\n\tpp$9.jsxParseSpreadChild = function () {\n\t  var node = this.startNode();\n\t  this.expect(types.braceL);\n\t  this.expect(types.ellipsis);\n\t  node.expression = this.parseExpression();\n\t  this.expect(types.braceR);\n\n\t  return this.finishNode(node, \"JSXSpreadChild\");\n\t};\n\n\t// Parses JSX expression enclosed into curly brackets.\n\n\n\tpp$9.jsxParseExpressionContainer = function () {\n\t  var node = this.startNode();\n\t  this.next();\n\t  if (this.match(types.braceR)) {\n\t    node.expression = this.jsxParseEmptyExpression();\n\t  } else {\n\t    node.expression = this.parseExpression();\n\t  }\n\t  this.expect(types.braceR);\n\t  return this.finishNode(node, \"JSXExpressionContainer\");\n\t};\n\n\t// Parses following JSX attribute name-value pair.\n\n\tpp$9.jsxParseAttribute = function () {\n\t  var node = this.startNode();\n\t  if (this.eat(types.braceL)) {\n\t    this.expect(types.ellipsis);\n\t    node.argument = this.parseMaybeAssign();\n\t    this.expect(types.braceR);\n\t    return this.finishNode(node, \"JSXSpreadAttribute\");\n\t  }\n\t  node.name = this.jsxParseNamespacedName();\n\t  node.value = this.eat(types.eq) ? this.jsxParseAttributeValue() : null;\n\t  return this.finishNode(node, \"JSXAttribute\");\n\t};\n\n\t// Parses JSX opening tag starting after \"<\".\n\n\tpp$9.jsxParseOpeningElementAt = function (startPos, startLoc) {\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  node.attributes = [];\n\t  node.name = this.jsxParseElementName();\n\t  while (!this.match(types.slash) && !this.match(types.jsxTagEnd)) {\n\t    node.attributes.push(this.jsxParseAttribute());\n\t  }\n\t  node.selfClosing = this.eat(types.slash);\n\t  this.expect(types.jsxTagEnd);\n\t  return this.finishNode(node, \"JSXOpeningElement\");\n\t};\n\n\t// Parses JSX closing tag starting after \"</\".\n\n\tpp$9.jsxParseClosingElementAt = function (startPos, startLoc) {\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  node.name = this.jsxParseElementName();\n\t  this.expect(types.jsxTagEnd);\n\t  return this.finishNode(node, \"JSXClosingElement\");\n\t};\n\n\t// Parses entire JSX element, including it\"s opening tag\n\t// (starting after \"<\"), attributes, contents and closing tag.\n\n\tpp$9.jsxParseElementAt = function (startPos, startLoc) {\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  var children = [];\n\t  var openingElement = this.jsxParseOpeningElementAt(startPos, startLoc);\n\t  var closingElement = null;\n\n\t  if (!openingElement.selfClosing) {\n\t    contents: for (;;) {\n\t      switch (this.state.type) {\n\t        case types.jsxTagStart:\n\t          startPos = this.state.start;startLoc = this.state.startLoc;\n\t          this.next();\n\t          if (this.eat(types.slash)) {\n\t            closingElement = this.jsxParseClosingElementAt(startPos, startLoc);\n\t            break contents;\n\t          }\n\t          children.push(this.jsxParseElementAt(startPos, startLoc));\n\t          break;\n\n\t        case types.jsxText:\n\t          children.push(this.parseExprAtom());\n\t          break;\n\n\t        case types.braceL:\n\t          if (this.lookahead().type === types.ellipsis) {\n\t            children.push(this.jsxParseSpreadChild());\n\t          } else {\n\t            children.push(this.jsxParseExpressionContainer());\n\t          }\n\n\t          break;\n\n\t        // istanbul ignore next - should never happen\n\t        default:\n\t          this.unexpected();\n\t      }\n\t    }\n\n\t    if (getQualifiedJSXName(closingElement.name) !== getQualifiedJSXName(openingElement.name)) {\n\t      this.raise(closingElement.start, \"Expected corresponding JSX closing tag for <\" + getQualifiedJSXName(openingElement.name) + \">\");\n\t    }\n\t  }\n\n\t  node.openingElement = openingElement;\n\t  node.closingElement = closingElement;\n\t  node.children = children;\n\t  if (this.match(types.relational) && this.state.value === \"<\") {\n\t    this.raise(this.state.start, \"Adjacent JSX elements must be wrapped in an enclosing tag\");\n\t  }\n\t  return this.finishNode(node, \"JSXElement\");\n\t};\n\n\t// Parses entire JSX element from current position.\n\n\tpp$9.jsxParseElement = function () {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  this.next();\n\t  return this.jsxParseElementAt(startPos, startLoc);\n\t};\n\n\tvar jsxPlugin = function jsxPlugin(instance) {\n\t  instance.extend(\"parseExprAtom\", function (inner) {\n\t    return function (refShortHandDefaultPos) {\n\t      if (this.match(types.jsxText)) {\n\t        var node = this.parseLiteral(this.state.value, \"JSXText\");\n\t        // https://github.com/babel/babel/issues/2078\n\t        node.extra = null;\n\t        return node;\n\t      } else if (this.match(types.jsxTagStart)) {\n\t        return this.jsxParseElement();\n\t      } else {\n\t        return inner.call(this, refShortHandDefaultPos);\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"readToken\", function (inner) {\n\t    return function (code) {\n\t      if (this.state.inPropertyName) return inner.call(this, code);\n\n\t      var context = this.curContext();\n\n\t      if (context === types$1.j_expr) {\n\t        return this.jsxReadToken();\n\t      }\n\n\t      if (context === types$1.j_oTag || context === types$1.j_cTag) {\n\t        if (isIdentifierStart(code)) {\n\t          return this.jsxReadWord();\n\t        }\n\n\t        if (code === 62) {\n\t          ++this.state.pos;\n\t          return this.finishToken(types.jsxTagEnd);\n\t        }\n\n\t        if ((code === 34 || code === 39) && context === types$1.j_oTag) {\n\t          return this.jsxReadString(code);\n\t        }\n\t      }\n\n\t      if (code === 60 && this.state.exprAllowed) {\n\t        ++this.state.pos;\n\t        return this.finishToken(types.jsxTagStart);\n\t      }\n\n\t      return inner.call(this, code);\n\t    };\n\t  });\n\n\t  instance.extend(\"updateContext\", function (inner) {\n\t    return function (prevType) {\n\t      if (this.match(types.braceL)) {\n\t        var curContext = this.curContext();\n\t        if (curContext === types$1.j_oTag) {\n\t          this.state.context.push(types$1.braceExpression);\n\t        } else if (curContext === types$1.j_expr) {\n\t          this.state.context.push(types$1.templateQuasi);\n\t        } else {\n\t          inner.call(this, prevType);\n\t        }\n\t        this.state.exprAllowed = true;\n\t      } else if (this.match(types.slash) && prevType === types.jsxTagStart) {\n\t        this.state.context.length -= 2; // do not consider JSX expr -> JSX open tag -> ... anymore\n\t        this.state.context.push(types$1.j_cTag); // reconsider as closing tag context\n\t        this.state.exprAllowed = false;\n\t      } else {\n\t        return inner.call(this, prevType);\n\t      }\n\t    };\n\t  });\n\t};\n\n\tplugins.estree = estreePlugin;\n\tplugins.flow = flowPlugin;\n\tplugins.jsx = jsxPlugin;\n\n\tfunction parse(input, options) {\n\t  return new Parser(options, input).parse();\n\t}\n\n\tfunction parseExpression(input, options) {\n\t  var parser = new Parser(options, input);\n\t  if (parser.options.strictMode) {\n\t    parser.state.strict = true;\n\t  }\n\t  return parser.getExpression();\n\t}\n\n\texports.parse = parse;\n\texports.parseExpression = parseExpression;\n\texports.tokTypes = types;\n\n/***/ }),\n/* 90 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\n\tvar anObject = __webpack_require__(21);\n\tvar dPs = __webpack_require__(431);\n\tvar enumBugKeys = __webpack_require__(141);\n\tvar IE_PROTO = __webpack_require__(150)('IE_PROTO');\n\tvar Empty = function Empty() {/* empty */};\n\tvar PROTOTYPE = 'prototype';\n\n\t// Create object with fake `null` prototype: use iframe Object with cleared prototype\n\tvar _createDict = function createDict() {\n\t  // Thrash, waste and sodomy: IE GC bug\n\t  var iframe = __webpack_require__(230)('iframe');\n\t  var i = enumBugKeys.length;\n\t  var lt = '<';\n\t  var gt = '>';\n\t  var iframeDocument;\n\t  iframe.style.display = 'none';\n\t  __webpack_require__(426).appendChild(iframe);\n\t  iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n\t  // createDict = iframe.contentWindow.Object;\n\t  // html.removeChild(iframe);\n\t  iframeDocument = iframe.contentWindow.document;\n\t  iframeDocument.open();\n\t  iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n\t  iframeDocument.close();\n\t  _createDict = iframeDocument.F;\n\t  while (i--) {\n\t    delete _createDict[PROTOTYPE][enumBugKeys[i]];\n\t  }return _createDict();\n\t};\n\n\tmodule.exports = Object.create || function create(O, Properties) {\n\t  var result;\n\t  if (O !== null) {\n\t    Empty[PROTOTYPE] = anObject(O);\n\t    result = new Empty();\n\t    Empty[PROTOTYPE] = null;\n\t    // add \"__proto__\" for Object.getPrototypeOf polyfill\n\t    result[IE_PROTO] = O;\n\t  } else result = _createDict();\n\t  return Properties === undefined ? result : dPs(result, Properties);\n\t};\n\n/***/ }),\n/* 91 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.f = {}.propertyIsEnumerable;\n\n/***/ }),\n/* 92 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = function (bitmap, value) {\n\t  return {\n\t    enumerable: !(bitmap & 1),\n\t    configurable: !(bitmap & 2),\n\t    writable: !(bitmap & 4),\n\t    value: value\n\t  };\n\t};\n\n/***/ }),\n/* 93 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar def = __webpack_require__(23).f;\n\tvar has = __webpack_require__(28);\n\tvar TAG = __webpack_require__(13)('toStringTag');\n\n\tmodule.exports = function (it, tag, stat) {\n\t  if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n\t};\n\n/***/ }),\n/* 94 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 7.1.13 ToObject(argument)\n\tvar defined = __webpack_require__(140);\n\tmodule.exports = function (it) {\n\t  return Object(defined(it));\n\t};\n\n/***/ }),\n/* 95 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar id = 0;\n\tvar px = Math.random();\n\tmodule.exports = function (key) {\n\t  return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n\t};\n\n/***/ }),\n/* 96 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n/***/ }),\n/* 97 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/*\n\t  Copyright (C) 2013 Yusuke Suzuki <utatane.tea@gmail.com>\n\n\t  Redistribution and use in source and binary forms, with or without\n\t  modification, are permitted provided that the following conditions are met:\n\n\t    * Redistributions of source code must retain the above copyright\n\t      notice, this list of conditions and the following disclaimer.\n\t    * Redistributions in binary form must reproduce the above copyright\n\t      notice, this list of conditions and the following disclaimer in the\n\t      documentation and/or other materials provided with the distribution.\n\n\t  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n\t  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\t  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\t  ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\n\t  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n\t  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n\t  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n\t  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n\t  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t*/\n\n\t(function () {\n\t  'use strict';\n\n\t  exports.ast = __webpack_require__(461);\n\t  exports.code = __webpack_require__(240);\n\t  exports.keyword = __webpack_require__(462);\n\t})();\n\t/* vim: set sw=4 ts=4 et tw=80 : */\n\n/***/ }),\n/* 98 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar listCacheClear = __webpack_require__(546),\n\t    listCacheDelete = __webpack_require__(547),\n\t    listCacheGet = __webpack_require__(548),\n\t    listCacheHas = __webpack_require__(549),\n\t    listCacheSet = __webpack_require__(550);\n\n\t/**\n\t * Creates an list cache object.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction ListCache(entries) {\n\t    var index = -1,\n\t        length = entries == null ? 0 : entries.length;\n\n\t    this.clear();\n\t    while (++index < length) {\n\t        var entry = entries[index];\n\t        this.set(entry[0], entry[1]);\n\t    }\n\t}\n\n\t// Add methods to `ListCache`.\n\tListCache.prototype.clear = listCacheClear;\n\tListCache.prototype['delete'] = listCacheDelete;\n\tListCache.prototype.get = listCacheGet;\n\tListCache.prototype.has = listCacheHas;\n\tListCache.prototype.set = listCacheSet;\n\n\tmodule.exports = ListCache;\n\n/***/ }),\n/* 99 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar ListCache = __webpack_require__(98),\n\t    stackClear = __webpack_require__(565),\n\t    stackDelete = __webpack_require__(566),\n\t    stackGet = __webpack_require__(567),\n\t    stackHas = __webpack_require__(568),\n\t    stackSet = __webpack_require__(569);\n\n\t/**\n\t * Creates a stack cache object to store key-value pairs.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction Stack(entries) {\n\t  var data = this.__data__ = new ListCache(entries);\n\t  this.size = data.size;\n\t}\n\n\t// Add methods to `Stack`.\n\tStack.prototype.clear = stackClear;\n\tStack.prototype['delete'] = stackDelete;\n\tStack.prototype.get = stackGet;\n\tStack.prototype.has = stackHas;\n\tStack.prototype.set = stackSet;\n\n\tmodule.exports = Stack;\n\n/***/ }),\n/* 100 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar eq = __webpack_require__(46);\n\n\t/**\n\t * Gets the index at which the `key` is found in `array` of key-value pairs.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {*} key The key to search for.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction assocIndexOf(array, key) {\n\t  var length = array.length;\n\t  while (length--) {\n\t    if (eq(array[length][0], key)) {\n\t      return length;\n\t    }\n\t  }\n\t  return -1;\n\t}\n\n\tmodule.exports = assocIndexOf;\n\n/***/ }),\n/* 101 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar identity = __webpack_require__(110),\n\t    overRest = __webpack_require__(560),\n\t    setToString = __webpack_require__(563);\n\n\t/**\n\t * The base implementation of `_.rest` which doesn't validate or coerce arguments.\n\t *\n\t * @private\n\t * @param {Function} func The function to apply a rest parameter to.\n\t * @param {number} [start=func.length-1] The start position of the rest parameter.\n\t * @returns {Function} Returns the new function.\n\t */\n\tfunction baseRest(func, start) {\n\t  return setToString(overRest(func, start, identity), func + '');\n\t}\n\n\tmodule.exports = baseRest;\n\n/***/ }),\n/* 102 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.unary` without support for storing metadata.\n\t *\n\t * @private\n\t * @param {Function} func The function to cap arguments for.\n\t * @returns {Function} Returns the new capped function.\n\t */\n\tfunction baseUnary(func) {\n\t  return function (value) {\n\t    return func(value);\n\t  };\n\t}\n\n\tmodule.exports = baseUnary;\n\n/***/ }),\n/* 103 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseRest = __webpack_require__(101),\n\t    isIterateeCall = __webpack_require__(172);\n\n\t/**\n\t * Creates a function like `_.assign`.\n\t *\n\t * @private\n\t * @param {Function} assigner The function to assign values.\n\t * @returns {Function} Returns the new assigner function.\n\t */\n\tfunction createAssigner(assigner) {\n\t  return baseRest(function (object, sources) {\n\t    var index = -1,\n\t        length = sources.length,\n\t        customizer = length > 1 ? sources[length - 1] : undefined,\n\t        guard = length > 2 ? sources[2] : undefined;\n\n\t    customizer = assigner.length > 3 && typeof customizer == 'function' ? (length--, customizer) : undefined;\n\n\t    if (guard && isIterateeCall(sources[0], sources[1], guard)) {\n\t      customizer = length < 3 ? undefined : customizer;\n\t      length = 1;\n\t    }\n\t    object = Object(object);\n\t    while (++index < length) {\n\t      var source = sources[index];\n\t      if (source) {\n\t        assigner(object, source, index, customizer);\n\t      }\n\t    }\n\t    return object;\n\t  });\n\t}\n\n\tmodule.exports = createAssigner;\n\n/***/ }),\n/* 104 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isKeyable = __webpack_require__(544);\n\n\t/**\n\t * Gets the data for `map`.\n\t *\n\t * @private\n\t * @param {Object} map The map to query.\n\t * @param {string} key The reference key.\n\t * @returns {*} Returns the map data.\n\t */\n\tfunction getMapData(map, key) {\n\t  var data = map.__data__;\n\t  return isKeyable(key) ? data[typeof key == 'string' ? 'string' : 'hash'] : data.map;\n\t}\n\n\tmodule.exports = getMapData;\n\n/***/ }),\n/* 105 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/**\n\t * Checks if `value` is likely a prototype object.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\n\t */\n\tfunction isPrototype(value) {\n\t  var Ctor = value && value.constructor,\n\t      proto = typeof Ctor == 'function' && Ctor.prototype || objectProto;\n\n\t  return value === proto;\n\t}\n\n\tmodule.exports = isPrototype;\n\n/***/ }),\n/* 106 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar nativeCreate = getNative(Object, 'create');\n\n\tmodule.exports = nativeCreate;\n\n/***/ }),\n/* 107 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Converts `set` to an array of its values.\n\t *\n\t * @private\n\t * @param {Object} set The set to convert.\n\t * @returns {Array} Returns the values.\n\t */\n\tfunction setToArray(set) {\n\t  var index = -1,\n\t      result = Array(set.size);\n\n\t  set.forEach(function (value) {\n\t    result[++index] = value;\n\t  });\n\t  return result;\n\t}\n\n\tmodule.exports = setToArray;\n\n/***/ }),\n/* 108 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isSymbol = __webpack_require__(62);\n\n\t/** Used as references for various `Number` constants. */\n\tvar INFINITY = 1 / 0;\n\n\t/**\n\t * Converts `value` to a string key if it's not a string or symbol.\n\t *\n\t * @private\n\t * @param {*} value The value to inspect.\n\t * @returns {string|symbol} Returns the key.\n\t */\n\tfunction toKey(value) {\n\t  if (typeof value == 'string' || isSymbol(value)) {\n\t    return value;\n\t  }\n\t  var result = value + '';\n\t  return result == '0' && 1 / value == -INFINITY ? '-0' : result;\n\t}\n\n\tmodule.exports = toKey;\n\n/***/ }),\n/* 109 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseClone = __webpack_require__(164);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_SYMBOLS_FLAG = 4;\n\n\t/**\n\t * Creates a shallow clone of `value`.\n\t *\n\t * **Note:** This method is loosely based on the\n\t * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm)\n\t * and supports cloning arrays, array buffers, booleans, date objects, maps,\n\t * numbers, `Object` objects, regexes, sets, strings, symbols, and typed\n\t * arrays. The own enumerable properties of `arguments` objects are cloned\n\t * as plain objects. An empty object is returned for uncloneable values such\n\t * as error objects, functions, DOM nodes, and WeakMaps.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to clone.\n\t * @returns {*} Returns the cloned value.\n\t * @see _.cloneDeep\n\t * @example\n\t *\n\t * var objects = [{ 'a': 1 }, { 'b': 2 }];\n\t *\n\t * var shallow = _.clone(objects);\n\t * console.log(shallow[0] === objects[0]);\n\t * // => true\n\t */\n\tfunction clone(value) {\n\t  return baseClone(value, CLONE_SYMBOLS_FLAG);\n\t}\n\n\tmodule.exports = clone;\n\n/***/ }),\n/* 110 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This method returns the first argument it receives.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Util\n\t * @param {*} value Any value.\n\t * @returns {*} Returns `value`.\n\t * @example\n\t *\n\t * var object = { 'a': 1 };\n\t *\n\t * console.log(_.identity(object) === object);\n\t * // => true\n\t */\n\tfunction identity(value) {\n\t  return value;\n\t}\n\n\tmodule.exports = identity;\n\n/***/ }),\n/* 111 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIndexOf = __webpack_require__(166),\n\t    isArrayLike = __webpack_require__(24),\n\t    isString = __webpack_require__(587),\n\t    toInteger = __webpack_require__(48),\n\t    values = __webpack_require__(280);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeMax = Math.max;\n\n\t/**\n\t * Checks if `value` is in `collection`. If `collection` is a string, it's\n\t * checked for a substring of `value`, otherwise\n\t * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * is used for equality comparisons. If `fromIndex` is negative, it's used as\n\t * the offset from the end of `collection`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Collection\n\t * @param {Array|Object|string} collection The collection to inspect.\n\t * @param {*} value The value to search for.\n\t * @param {number} [fromIndex=0] The index to search from.\n\t * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`.\n\t * @returns {boolean} Returns `true` if `value` is found, else `false`.\n\t * @example\n\t *\n\t * _.includes([1, 2, 3], 1);\n\t * // => true\n\t *\n\t * _.includes([1, 2, 3], 1, 2);\n\t * // => false\n\t *\n\t * _.includes({ 'a': 1, 'b': 2 }, 1);\n\t * // => true\n\t *\n\t * _.includes('abcd', 'bc');\n\t * // => true\n\t */\n\tfunction includes(collection, value, fromIndex, guard) {\n\t  collection = isArrayLike(collection) ? collection : values(collection);\n\t  fromIndex = fromIndex && !guard ? toInteger(fromIndex) : 0;\n\n\t  var length = collection.length;\n\t  if (fromIndex < 0) {\n\t    fromIndex = nativeMax(length + fromIndex, 0);\n\t  }\n\t  return isString(collection) ? fromIndex <= length && collection.indexOf(value, fromIndex) > -1 : !!length && baseIndexOf(collection, value, fromIndex) > -1;\n\t}\n\n\tmodule.exports = includes;\n\n/***/ }),\n/* 112 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsArguments = __webpack_require__(493),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/** Built-in value references. */\n\tvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n\t/**\n\t * Checks if `value` is likely an `arguments` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n\t *  else `false`.\n\t * @example\n\t *\n\t * _.isArguments(function() { return arguments; }());\n\t * // => true\n\t *\n\t * _.isArguments([1, 2, 3]);\n\t * // => false\n\t */\n\tvar isArguments = baseIsArguments(function () {\n\t    return arguments;\n\t}()) ? baseIsArguments : function (value) {\n\t    return isObjectLike(value) && hasOwnProperty.call(value, 'callee') && !propertyIsEnumerable.call(value, 'callee');\n\t};\n\n\tmodule.exports = isArguments;\n\n/***/ }),\n/* 113 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(module) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar root = __webpack_require__(17),\n\t    stubFalse = __webpack_require__(596);\n\n\t/** Detect free variable `exports`. */\n\tvar freeExports = ( false ? 'undefined' : _typeof(exports)) == 'object' && exports && !exports.nodeType && exports;\n\n\t/** Detect free variable `module`. */\n\tvar freeModule = freeExports && ( false ? 'undefined' : _typeof(module)) == 'object' && module && !module.nodeType && module;\n\n\t/** Detect the popular CommonJS extension `module.exports`. */\n\tvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n\t/** Built-in value references. */\n\tvar Buffer = moduleExports ? root.Buffer : undefined;\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;\n\n\t/**\n\t * Checks if `value` is a buffer.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.3.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\n\t * @example\n\t *\n\t * _.isBuffer(new Buffer(2));\n\t * // => true\n\t *\n\t * _.isBuffer(new Uint8Array(2));\n\t * // => false\n\t */\n\tvar isBuffer = nativeIsBuffer || stubFalse;\n\n\tmodule.exports = isBuffer;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module)))\n\n/***/ }),\n/* 114 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseToString = __webpack_require__(253);\n\n\t/**\n\t * Converts `value` to a string. An empty string is returned for `null`\n\t * and `undefined` values. The sign of `-0` is preserved.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to convert.\n\t * @returns {string} Returns the converted string.\n\t * @example\n\t *\n\t * _.toString(null);\n\t * // => ''\n\t *\n\t * _.toString(-0);\n\t * // => '-0'\n\t *\n\t * _.toString([1, 2, 3]);\n\t * // => '1,2,3'\n\t */\n\tfunction toString(value) {\n\t  return value == null ? '' : baseToString(value);\n\t}\n\n\tmodule.exports = toString;\n\n/***/ }),\n/* 115 */\n96,\n/* 116 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.runtimeProperty = runtimeProperty;\n\texports.isReference = isReference;\n\texports.replaceWithOrRemove = replaceWithOrRemove;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction runtimeProperty(name) {\n\t  return t.memberExpression(t.identifier(\"regeneratorRuntime\"), t.identifier(name), false);\n\t} /**\n\t   * Copyright (c) 2014, Facebook, Inc.\n\t   * All rights reserved.\n\t   *\n\t   * This source code is licensed under the BSD-style license found in the\n\t   * https://raw.github.com/facebook/regenerator/master/LICENSE file. An\n\t   * additional grant of patent rights can be found in the PATENTS file in\n\t   * the same directory.\n\t   */\n\n\tfunction isReference(path) {\n\t  return path.isReferenced() || path.parentPath.isAssignmentExpression({ left: path.node });\n\t}\n\n\tfunction replaceWithOrRemove(path, replacement) {\n\t  if (replacement) {\n\t    path.replaceWith(replacement);\n\t  } else {\n\t    path.remove();\n\t  }\n\t}\n\n/***/ }),\n/* 117 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(global, process) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t// Copyright Joyent, Inc. and other Node contributors.\n\t//\n\t// Permission is hereby granted, free of charge, to any person obtaining a\n\t// copy of this software and associated documentation files (the\n\t// \"Software\"), to deal in the Software without restriction, including\n\t// without limitation the rights to use, copy, modify, merge, publish,\n\t// distribute, sublicense, and/or sell copies of the Software, and to permit\n\t// persons to whom the Software is furnished to do so, subject to the\n\t// following conditions:\n\t//\n\t// The above copyright notice and this permission notice shall be included\n\t// in all copies or substantial portions of the Software.\n\t//\n\t// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n\t// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n\t// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n\t// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n\t// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n\t// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n\t// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\tvar formatRegExp = /%[sdj%]/g;\n\texports.format = function (f) {\n\t  if (!isString(f)) {\n\t    var objects = [];\n\t    for (var i = 0; i < arguments.length; i++) {\n\t      objects.push(inspect(arguments[i]));\n\t    }\n\t    return objects.join(' ');\n\t  }\n\n\t  var i = 1;\n\t  var args = arguments;\n\t  var len = args.length;\n\t  var str = String(f).replace(formatRegExp, function (x) {\n\t    if (x === '%%') return '%';\n\t    if (i >= len) return x;\n\t    switch (x) {\n\t      case '%s':\n\t        return String(args[i++]);\n\t      case '%d':\n\t        return Number(args[i++]);\n\t      case '%j':\n\t        try {\n\t          return JSON.stringify(args[i++]);\n\t        } catch (_) {\n\t          return '[Circular]';\n\t        }\n\t      default:\n\t        return x;\n\t    }\n\t  });\n\t  for (var x = args[i]; i < len; x = args[++i]) {\n\t    if (isNull(x) || !isObject(x)) {\n\t      str += ' ' + x;\n\t    } else {\n\t      str += ' ' + inspect(x);\n\t    }\n\t  }\n\t  return str;\n\t};\n\n\t// Mark that a method should not be used.\n\t// Returns a modified function which warns once by default.\n\t// If --no-deprecation is set, then it is a no-op.\n\texports.deprecate = function (fn, msg) {\n\t  // Allow for deprecating things in the process of starting up.\n\t  if (isUndefined(global.process)) {\n\t    return function () {\n\t      return exports.deprecate(fn, msg).apply(this, arguments);\n\t    };\n\t  }\n\n\t  if (process.noDeprecation === true) {\n\t    return fn;\n\t  }\n\n\t  var warned = false;\n\t  function deprecated() {\n\t    if (!warned) {\n\t      if (process.throwDeprecation) {\n\t        throw new Error(msg);\n\t      } else if (process.traceDeprecation) {\n\t        console.trace(msg);\n\t      } else {\n\t        console.error(msg);\n\t      }\n\t      warned = true;\n\t    }\n\t    return fn.apply(this, arguments);\n\t  }\n\n\t  return deprecated;\n\t};\n\n\tvar debugs = {};\n\tvar debugEnviron;\n\texports.debuglog = function (set) {\n\t  if (isUndefined(debugEnviron)) debugEnviron = process.env.NODE_DEBUG || '';\n\t  set = set.toUpperCase();\n\t  if (!debugs[set]) {\n\t    if (new RegExp('\\\\b' + set + '\\\\b', 'i').test(debugEnviron)) {\n\t      var pid = process.pid;\n\t      debugs[set] = function () {\n\t        var msg = exports.format.apply(exports, arguments);\n\t        console.error('%s %d: %s', set, pid, msg);\n\t      };\n\t    } else {\n\t      debugs[set] = function () {};\n\t    }\n\t  }\n\t  return debugs[set];\n\t};\n\n\t/**\n\t * Echos the value of a value. Trys to print the value out\n\t * in the best way possible given the different types.\n\t *\n\t * @param {Object} obj The object to print out.\n\t * @param {Object} opts Optional options object that alters the output.\n\t */\n\t/* legacy: obj, showHidden, depth, colors*/\n\tfunction inspect(obj, opts) {\n\t  // default options\n\t  var ctx = {\n\t    seen: [],\n\t    stylize: stylizeNoColor\n\t  };\n\t  // legacy...\n\t  if (arguments.length >= 3) ctx.depth = arguments[2];\n\t  if (arguments.length >= 4) ctx.colors = arguments[3];\n\t  if (isBoolean(opts)) {\n\t    // legacy...\n\t    ctx.showHidden = opts;\n\t  } else if (opts) {\n\t    // got an \"options\" object\n\t    exports._extend(ctx, opts);\n\t  }\n\t  // set default options\n\t  if (isUndefined(ctx.showHidden)) ctx.showHidden = false;\n\t  if (isUndefined(ctx.depth)) ctx.depth = 2;\n\t  if (isUndefined(ctx.colors)) ctx.colors = false;\n\t  if (isUndefined(ctx.customInspect)) ctx.customInspect = true;\n\t  if (ctx.colors) ctx.stylize = stylizeWithColor;\n\t  return formatValue(ctx, obj, ctx.depth);\n\t}\n\texports.inspect = inspect;\n\n\t// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics\n\tinspect.colors = {\n\t  'bold': [1, 22],\n\t  'italic': [3, 23],\n\t  'underline': [4, 24],\n\t  'inverse': [7, 27],\n\t  'white': [37, 39],\n\t  'grey': [90, 39],\n\t  'black': [30, 39],\n\t  'blue': [34, 39],\n\t  'cyan': [36, 39],\n\t  'green': [32, 39],\n\t  'magenta': [35, 39],\n\t  'red': [31, 39],\n\t  'yellow': [33, 39]\n\t};\n\n\t// Don't use 'blue' not visible on cmd.exe\n\tinspect.styles = {\n\t  'special': 'cyan',\n\t  'number': 'yellow',\n\t  'boolean': 'yellow',\n\t  'undefined': 'grey',\n\t  'null': 'bold',\n\t  'string': 'green',\n\t  'date': 'magenta',\n\t  // \"name\": intentionally not styling\n\t  'regexp': 'red'\n\t};\n\n\tfunction stylizeWithColor(str, styleType) {\n\t  var style = inspect.styles[styleType];\n\n\t  if (style) {\n\t    return '\\x1B[' + inspect.colors[style][0] + 'm' + str + '\\x1B[' + inspect.colors[style][1] + 'm';\n\t  } else {\n\t    return str;\n\t  }\n\t}\n\n\tfunction stylizeNoColor(str, styleType) {\n\t  return str;\n\t}\n\n\tfunction arrayToHash(array) {\n\t  var hash = {};\n\n\t  array.forEach(function (val, idx) {\n\t    hash[val] = true;\n\t  });\n\n\t  return hash;\n\t}\n\n\tfunction formatValue(ctx, value, recurseTimes) {\n\t  // Provide a hook for user-specified inspect functions.\n\t  // Check that value is an object with an inspect function on it\n\t  if (ctx.customInspect && value && isFunction(value.inspect) &&\n\t  // Filter out the util module, it's inspect function is special\n\t  value.inspect !== exports.inspect &&\n\t  // Also filter out any prototype objects using the circular check.\n\t  !(value.constructor && value.constructor.prototype === value)) {\n\t    var ret = value.inspect(recurseTimes, ctx);\n\t    if (!isString(ret)) {\n\t      ret = formatValue(ctx, ret, recurseTimes);\n\t    }\n\t    return ret;\n\t  }\n\n\t  // Primitive types cannot have properties\n\t  var primitive = formatPrimitive(ctx, value);\n\t  if (primitive) {\n\t    return primitive;\n\t  }\n\n\t  // Look up the keys of the object.\n\t  var keys = Object.keys(value);\n\t  var visibleKeys = arrayToHash(keys);\n\n\t  if (ctx.showHidden) {\n\t    keys = Object.getOwnPropertyNames(value);\n\t  }\n\n\t  // IE doesn't make error fields non-enumerable\n\t  // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx\n\t  if (isError(value) && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {\n\t    return formatError(value);\n\t  }\n\n\t  // Some type of object without properties can be shortcutted.\n\t  if (keys.length === 0) {\n\t    if (isFunction(value)) {\n\t      var name = value.name ? ': ' + value.name : '';\n\t      return ctx.stylize('[Function' + name + ']', 'special');\n\t    }\n\t    if (isRegExp(value)) {\n\t      return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n\t    }\n\t    if (isDate(value)) {\n\t      return ctx.stylize(Date.prototype.toString.call(value), 'date');\n\t    }\n\t    if (isError(value)) {\n\t      return formatError(value);\n\t    }\n\t  }\n\n\t  var base = '',\n\t      array = false,\n\t      braces = ['{', '}'];\n\n\t  // Make Array say that they are Array\n\t  if (isArray(value)) {\n\t    array = true;\n\t    braces = ['[', ']'];\n\t  }\n\n\t  // Make functions say that they are functions\n\t  if (isFunction(value)) {\n\t    var n = value.name ? ': ' + value.name : '';\n\t    base = ' [Function' + n + ']';\n\t  }\n\n\t  // Make RegExps say that they are RegExps\n\t  if (isRegExp(value)) {\n\t    base = ' ' + RegExp.prototype.toString.call(value);\n\t  }\n\n\t  // Make dates with properties first say the date\n\t  if (isDate(value)) {\n\t    base = ' ' + Date.prototype.toUTCString.call(value);\n\t  }\n\n\t  // Make error with message first say the error\n\t  if (isError(value)) {\n\t    base = ' ' + formatError(value);\n\t  }\n\n\t  if (keys.length === 0 && (!array || value.length == 0)) {\n\t    return braces[0] + base + braces[1];\n\t  }\n\n\t  if (recurseTimes < 0) {\n\t    if (isRegExp(value)) {\n\t      return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n\t    } else {\n\t      return ctx.stylize('[Object]', 'special');\n\t    }\n\t  }\n\n\t  ctx.seen.push(value);\n\n\t  var output;\n\t  if (array) {\n\t    output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);\n\t  } else {\n\t    output = keys.map(function (key) {\n\t      return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);\n\t    });\n\t  }\n\n\t  ctx.seen.pop();\n\n\t  return reduceToSingleString(output, base, braces);\n\t}\n\n\tfunction formatPrimitive(ctx, value) {\n\t  if (isUndefined(value)) return ctx.stylize('undefined', 'undefined');\n\t  if (isString(value)) {\n\t    var simple = '\\'' + JSON.stringify(value).replace(/^\"|\"$/g, '').replace(/'/g, \"\\\\'\").replace(/\\\\\"/g, '\"') + '\\'';\n\t    return ctx.stylize(simple, 'string');\n\t  }\n\t  if (isNumber(value)) return ctx.stylize('' + value, 'number');\n\t  if (isBoolean(value)) return ctx.stylize('' + value, 'boolean');\n\t  // For some reason typeof null is \"object\", so special case here.\n\t  if (isNull(value)) return ctx.stylize('null', 'null');\n\t}\n\n\tfunction formatError(value) {\n\t  return '[' + Error.prototype.toString.call(value) + ']';\n\t}\n\n\tfunction formatArray(ctx, value, recurseTimes, visibleKeys, keys) {\n\t  var output = [];\n\t  for (var i = 0, l = value.length; i < l; ++i) {\n\t    if (hasOwnProperty(value, String(i))) {\n\t      output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, String(i), true));\n\t    } else {\n\t      output.push('');\n\t    }\n\t  }\n\t  keys.forEach(function (key) {\n\t    if (!key.match(/^\\d+$/)) {\n\t      output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, key, true));\n\t    }\n\t  });\n\t  return output;\n\t}\n\n\tfunction formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {\n\t  var name, str, desc;\n\t  desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };\n\t  if (desc.get) {\n\t    if (desc.set) {\n\t      str = ctx.stylize('[Getter/Setter]', 'special');\n\t    } else {\n\t      str = ctx.stylize('[Getter]', 'special');\n\t    }\n\t  } else {\n\t    if (desc.set) {\n\t      str = ctx.stylize('[Setter]', 'special');\n\t    }\n\t  }\n\t  if (!hasOwnProperty(visibleKeys, key)) {\n\t    name = '[' + key + ']';\n\t  }\n\t  if (!str) {\n\t    if (ctx.seen.indexOf(desc.value) < 0) {\n\t      if (isNull(recurseTimes)) {\n\t        str = formatValue(ctx, desc.value, null);\n\t      } else {\n\t        str = formatValue(ctx, desc.value, recurseTimes - 1);\n\t      }\n\t      if (str.indexOf('\\n') > -1) {\n\t        if (array) {\n\t          str = str.split('\\n').map(function (line) {\n\t            return '  ' + line;\n\t          }).join('\\n').substr(2);\n\t        } else {\n\t          str = '\\n' + str.split('\\n').map(function (line) {\n\t            return '   ' + line;\n\t          }).join('\\n');\n\t        }\n\t      }\n\t    } else {\n\t      str = ctx.stylize('[Circular]', 'special');\n\t    }\n\t  }\n\t  if (isUndefined(name)) {\n\t    if (array && key.match(/^\\d+$/)) {\n\t      return str;\n\t    }\n\t    name = JSON.stringify('' + key);\n\t    if (name.match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)) {\n\t      name = name.substr(1, name.length - 2);\n\t      name = ctx.stylize(name, 'name');\n\t    } else {\n\t      name = name.replace(/'/g, \"\\\\'\").replace(/\\\\\"/g, '\"').replace(/(^\"|\"$)/g, \"'\");\n\t      name = ctx.stylize(name, 'string');\n\t    }\n\t  }\n\n\t  return name + ': ' + str;\n\t}\n\n\tfunction reduceToSingleString(output, base, braces) {\n\t  var numLinesEst = 0;\n\t  var length = output.reduce(function (prev, cur) {\n\t    numLinesEst++;\n\t    if (cur.indexOf('\\n') >= 0) numLinesEst++;\n\t    return prev + cur.replace(/\\u001b\\[\\d\\d?m/g, '').length + 1;\n\t  }, 0);\n\n\t  if (length > 60) {\n\t    return braces[0] + (base === '' ? '' : base + '\\n ') + ' ' + output.join(',\\n  ') + ' ' + braces[1];\n\t  }\n\n\t  return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];\n\t}\n\n\t// NOTE: These type checking functions intentionally don't use `instanceof`\n\t// because it is fragile and can be easily faked with `Object.create()`.\n\tfunction isArray(ar) {\n\t  return Array.isArray(ar);\n\t}\n\texports.isArray = isArray;\n\n\tfunction isBoolean(arg) {\n\t  return typeof arg === 'boolean';\n\t}\n\texports.isBoolean = isBoolean;\n\n\tfunction isNull(arg) {\n\t  return arg === null;\n\t}\n\texports.isNull = isNull;\n\n\tfunction isNullOrUndefined(arg) {\n\t  return arg == null;\n\t}\n\texports.isNullOrUndefined = isNullOrUndefined;\n\n\tfunction isNumber(arg) {\n\t  return typeof arg === 'number';\n\t}\n\texports.isNumber = isNumber;\n\n\tfunction isString(arg) {\n\t  return typeof arg === 'string';\n\t}\n\texports.isString = isString;\n\n\tfunction isSymbol(arg) {\n\t  return (typeof arg === 'undefined' ? 'undefined' : _typeof(arg)) === 'symbol';\n\t}\n\texports.isSymbol = isSymbol;\n\n\tfunction isUndefined(arg) {\n\t  return arg === void 0;\n\t}\n\texports.isUndefined = isUndefined;\n\n\tfunction isRegExp(re) {\n\t  return isObject(re) && objectToString(re) === '[object RegExp]';\n\t}\n\texports.isRegExp = isRegExp;\n\n\tfunction isObject(arg) {\n\t  return (typeof arg === 'undefined' ? 'undefined' : _typeof(arg)) === 'object' && arg !== null;\n\t}\n\texports.isObject = isObject;\n\n\tfunction isDate(d) {\n\t  return isObject(d) && objectToString(d) === '[object Date]';\n\t}\n\texports.isDate = isDate;\n\n\tfunction isError(e) {\n\t  return isObject(e) && (objectToString(e) === '[object Error]' || e instanceof Error);\n\t}\n\texports.isError = isError;\n\n\tfunction isFunction(arg) {\n\t  return typeof arg === 'function';\n\t}\n\texports.isFunction = isFunction;\n\n\tfunction isPrimitive(arg) {\n\t  return arg === null || typeof arg === 'boolean' || typeof arg === 'number' || typeof arg === 'string' || (typeof arg === 'undefined' ? 'undefined' : _typeof(arg)) === 'symbol' || // ES6 symbol\n\t  typeof arg === 'undefined';\n\t}\n\texports.isPrimitive = isPrimitive;\n\n\texports.isBuffer = __webpack_require__(627);\n\n\tfunction objectToString(o) {\n\t  return Object.prototype.toString.call(o);\n\t}\n\n\tfunction pad(n) {\n\t  return n < 10 ? '0' + n.toString(10) : n.toString(10);\n\t}\n\n\tvar months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];\n\n\t// 26 Feb 16:19:34\n\tfunction timestamp() {\n\t  var d = new Date();\n\t  var time = [pad(d.getHours()), pad(d.getMinutes()), pad(d.getSeconds())].join(':');\n\t  return [d.getDate(), months[d.getMonth()], time].join(' ');\n\t}\n\n\t// log is just a thin wrapper to console.log that prepends a timestamp\n\texports.log = function () {\n\t  console.log('%s - %s', timestamp(), exports.format.apply(exports, arguments));\n\t};\n\n\t/**\n\t * Inherit the prototype methods from one constructor into another.\n\t *\n\t * The Function.prototype.inherits from lang.js rewritten as a standalone\n\t * function (not on Function.prototype). NOTE: If this file is to be loaded\n\t * during bootstrapping this function needs to be rewritten using some native\n\t * functions as prototype setup using normal JavaScript does not work as\n\t * expected during bootstrapping (see mirror.js in r114903).\n\t *\n\t * @param {function} ctor Constructor function which needs to inherit the\n\t *     prototype.\n\t * @param {function} superCtor Constructor function to inherit prototype from.\n\t */\n\texports.inherits = __webpack_require__(626);\n\n\texports._extend = function (origin, add) {\n\t  // Don't do anything if add isn't an object\n\t  if (!add || !isObject(add)) return origin;\n\n\t  var keys = Object.keys(add);\n\t  var i = keys.length;\n\t  while (i--) {\n\t    origin[keys[i]] = add[keys[i]];\n\t  }\n\t  return origin;\n\t};\n\n\tfunction hasOwnProperty(obj, prop) {\n\t  return Object.prototype.hasOwnProperty.call(obj, prop);\n\t}\n\t/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(8)))\n\n/***/ }),\n/* 118 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\texports.default = function (loc) {\n\t  var relative = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : process.cwd();\n\n\t  if ((typeof _module2.default === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(_module2.default)) === \"object\") return null;\n\n\t  var relativeMod = relativeModules[relative];\n\n\t  if (!relativeMod) {\n\t    relativeMod = new _module2.default();\n\n\t    var filename = _path2.default.join(relative, \".babelrc\");\n\t    relativeMod.id = filename;\n\t    relativeMod.filename = filename;\n\n\t    relativeMod.paths = _module2.default._nodeModulePaths(relative);\n\t    relativeModules[relative] = relativeMod;\n\t  }\n\n\t  try {\n\t    return _module2.default._resolveFilename(loc, relativeMod);\n\t  } catch (err) {\n\t    return null;\n\t  }\n\t};\n\n\tvar _module = __webpack_require__(115);\n\n\tvar _module2 = _interopRequireDefault(_module);\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _path2 = _interopRequireDefault(_path);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar relativeModules = {};\n\n\tmodule.exports = exports[\"default\"];\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 119 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _map = __webpack_require__(133);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _possibleConstructorReturn2 = __webpack_require__(42);\n\n\tvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\n\tvar _inherits2 = __webpack_require__(41);\n\n\tvar _inherits3 = _interopRequireDefault(_inherits2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar Store = function (_Map) {\n\t  (0, _inherits3.default)(Store, _Map);\n\n\t  function Store() {\n\t    (0, _classCallCheck3.default)(this, Store);\n\n\t    var _this = (0, _possibleConstructorReturn3.default)(this, _Map.call(this));\n\n\t    _this.dynamicData = {};\n\t    return _this;\n\t  }\n\n\t  Store.prototype.setDynamic = function setDynamic(key, fn) {\n\t    this.dynamicData[key] = fn;\n\t  };\n\n\t  Store.prototype.get = function get(key) {\n\t    if (this.has(key)) {\n\t      return _Map.prototype.get.call(this, key);\n\t    } else {\n\t      if (Object.prototype.hasOwnProperty.call(this.dynamicData, key)) {\n\t        var val = this.dynamicData[key]();\n\t        this.set(key, val);\n\t        return val;\n\t      }\n\t    }\n\t  };\n\n\t  return Store;\n\t}(_map2.default);\n\n\texports.default = Store;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 120 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _node = __webpack_require__(239);\n\n\tvar _node2 = _interopRequireDefault(_node);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar verboseDebug = (0, _node2.default)(\"babel:verbose\");\n\tvar generalDebug = (0, _node2.default)(\"babel\");\n\n\tvar seenDeprecatedMessages = [];\n\n\tvar Logger = function () {\n\t  function Logger(file, filename) {\n\t    (0, _classCallCheck3.default)(this, Logger);\n\n\t    this.filename = filename;\n\t    this.file = file;\n\t  }\n\n\t  Logger.prototype._buildMessage = function _buildMessage(msg) {\n\t    var parts = \"[BABEL] \" + this.filename;\n\t    if (msg) parts += \": \" + msg;\n\t    return parts;\n\t  };\n\n\t  Logger.prototype.warn = function warn(msg) {\n\t    console.warn(this._buildMessage(msg));\n\t  };\n\n\t  Logger.prototype.error = function error(msg) {\n\t    var Constructor = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : Error;\n\n\t    throw new Constructor(this._buildMessage(msg));\n\t  };\n\n\t  Logger.prototype.deprecate = function deprecate(msg) {\n\t    if (this.file.opts && this.file.opts.suppressDeprecationMessages) return;\n\n\t    msg = this._buildMessage(msg);\n\n\t    if (seenDeprecatedMessages.indexOf(msg) >= 0) return;\n\n\t    seenDeprecatedMessages.push(msg);\n\n\t    console.error(msg);\n\t  };\n\n\t  Logger.prototype.verbose = function verbose(msg) {\n\t    if (verboseDebug.enabled) verboseDebug(this._buildMessage(msg));\n\t  };\n\n\t  Logger.prototype.debug = function debug(msg) {\n\t    if (generalDebug.enabled) generalDebug(this._buildMessage(msg));\n\t  };\n\n\t  Logger.prototype.deopt = function deopt(node, msg) {\n\t    this.debug(msg);\n\t  };\n\n\t  return Logger;\n\t}();\n\n\texports.default = Logger;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 121 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.ImportDeclaration = exports.ModuleDeclaration = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.ExportDeclaration = ExportDeclaration;\n\texports.Scope = Scope;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar ModuleDeclaration = exports.ModuleDeclaration = {\n\t  enter: function enter(path, file) {\n\t    var node = path.node;\n\n\t    if (node.source) {\n\t      node.source.value = file.resolveModuleSource(node.source.value);\n\t    }\n\t  }\n\t};\n\n\tvar ImportDeclaration = exports.ImportDeclaration = {\n\t  exit: function exit(path, file) {\n\t    var node = path.node;\n\n\t    var specifiers = [];\n\t    var imported = [];\n\t    file.metadata.modules.imports.push({\n\t      source: node.source.value,\n\t      imported: imported,\n\t      specifiers: specifiers\n\t    });\n\n\t    for (var _iterator = path.get(\"specifiers\"), _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var specifier = _ref;\n\n\t      var local = specifier.node.local.name;\n\n\t      if (specifier.isImportDefaultSpecifier()) {\n\t        imported.push(\"default\");\n\t        specifiers.push({\n\t          kind: \"named\",\n\t          imported: \"default\",\n\t          local: local\n\t        });\n\t      }\n\n\t      if (specifier.isImportSpecifier()) {\n\t        var importedName = specifier.node.imported.name;\n\t        imported.push(importedName);\n\t        specifiers.push({\n\t          kind: \"named\",\n\t          imported: importedName,\n\t          local: local\n\t        });\n\t      }\n\n\t      if (specifier.isImportNamespaceSpecifier()) {\n\t        imported.push(\"*\");\n\t        specifiers.push({\n\t          kind: \"namespace\",\n\t          local: local\n\t        });\n\t      }\n\t    }\n\t  }\n\t};\n\n\tfunction ExportDeclaration(path, file) {\n\t  var node = path.node;\n\n\t  var source = node.source ? node.source.value : null;\n\t  var exports = file.metadata.modules.exports;\n\n\t  var declar = path.get(\"declaration\");\n\t  if (declar.isStatement()) {\n\t    var bindings = declar.getBindingIdentifiers();\n\n\t    for (var name in bindings) {\n\t      exports.exported.push(name);\n\t      exports.specifiers.push({\n\t        kind: \"local\",\n\t        local: name,\n\t        exported: path.isExportDefaultDeclaration() ? \"default\" : name\n\t      });\n\t    }\n\t  }\n\n\t  if (path.isExportNamedDeclaration() && node.specifiers) {\n\t    for (var _iterator2 = node.specifiers, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var specifier = _ref2;\n\n\t      var exported = specifier.exported.name;\n\t      exports.exported.push(exported);\n\n\t      if (t.isExportDefaultSpecifier(specifier)) {\n\t        exports.specifiers.push({\n\t          kind: \"external\",\n\t          local: exported,\n\t          exported: exported,\n\t          source: source\n\t        });\n\t      }\n\n\t      if (t.isExportNamespaceSpecifier(specifier)) {\n\t        exports.specifiers.push({\n\t          kind: \"external-namespace\",\n\t          exported: exported,\n\t          source: source\n\t        });\n\t      }\n\n\t      var local = specifier.local;\n\t      if (!local) continue;\n\n\t      if (source) {\n\t        exports.specifiers.push({\n\t          kind: \"external\",\n\t          local: local.name,\n\t          exported: exported,\n\t          source: source\n\t        });\n\t      }\n\n\t      if (!source) {\n\t        exports.specifiers.push({\n\t          kind: \"local\",\n\t          local: local.name,\n\t          exported: exported\n\t        });\n\t      }\n\t    }\n\t  }\n\n\t  if (path.isExportAllDeclaration()) {\n\t    exports.specifiers.push({\n\t      kind: \"external-all\",\n\t      source: source\n\t    });\n\t  }\n\t}\n\n\tfunction Scope(path) {\n\t  path.skip();\n\t}\n\n/***/ }),\n/* 122 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.inspect = exports.inherits = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _util = __webpack_require__(117);\n\n\tObject.defineProperty(exports, \"inherits\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _util.inherits;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"inspect\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _util.inspect;\n\t  }\n\t});\n\texports.canCompile = canCompile;\n\texports.list = list;\n\texports.regexify = regexify;\n\texports.arrayify = arrayify;\n\texports.booleanify = booleanify;\n\texports.shouldIgnore = shouldIgnore;\n\n\tvar _escapeRegExp = __webpack_require__(577);\n\n\tvar _escapeRegExp2 = _interopRequireDefault(_escapeRegExp);\n\n\tvar _startsWith = __webpack_require__(595);\n\n\tvar _startsWith2 = _interopRequireDefault(_startsWith);\n\n\tvar _minimatch = __webpack_require__(601);\n\n\tvar _minimatch2 = _interopRequireDefault(_minimatch);\n\n\tvar _includes = __webpack_require__(111);\n\n\tvar _includes2 = _interopRequireDefault(_includes);\n\n\tvar _isRegExp = __webpack_require__(276);\n\n\tvar _isRegExp2 = _interopRequireDefault(_isRegExp);\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _path2 = _interopRequireDefault(_path);\n\n\tvar _slash = __webpack_require__(284);\n\n\tvar _slash2 = _interopRequireDefault(_slash);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction canCompile(filename, altExts) {\n\t  var exts = altExts || canCompile.EXTENSIONS;\n\t  var ext = _path2.default.extname(filename);\n\t  return (0, _includes2.default)(exts, ext);\n\t}\n\n\tcanCompile.EXTENSIONS = [\".js\", \".jsx\", \".es6\", \".es\"];\n\n\tfunction list(val) {\n\t  if (!val) {\n\t    return [];\n\t  } else if (Array.isArray(val)) {\n\t    return val;\n\t  } else if (typeof val === \"string\") {\n\t    return val.split(\",\");\n\t  } else {\n\t    return [val];\n\t  }\n\t}\n\n\tfunction regexify(val) {\n\t  if (!val) {\n\t    return new RegExp(/.^/);\n\t  }\n\n\t  if (Array.isArray(val)) {\n\t    val = new RegExp(val.map(_escapeRegExp2.default).join(\"|\"), \"i\");\n\t  }\n\n\t  if (typeof val === \"string\") {\n\t    val = (0, _slash2.default)(val);\n\n\t    if ((0, _startsWith2.default)(val, \"./\") || (0, _startsWith2.default)(val, \"*/\")) val = val.slice(2);\n\t    if ((0, _startsWith2.default)(val, \"**/\")) val = val.slice(3);\n\n\t    var regex = _minimatch2.default.makeRe(val, { nocase: true });\n\t    return new RegExp(regex.source.slice(1, -1), \"i\");\n\t  }\n\n\t  if ((0, _isRegExp2.default)(val)) {\n\t    return val;\n\t  }\n\n\t  throw new TypeError(\"illegal type for regexify\");\n\t}\n\n\tfunction arrayify(val, mapFn) {\n\t  if (!val) return [];\n\t  if (typeof val === \"boolean\") return arrayify([val], mapFn);\n\t  if (typeof val === \"string\") return arrayify(list(val), mapFn);\n\n\t  if (Array.isArray(val)) {\n\t    if (mapFn) val = val.map(mapFn);\n\t    return val;\n\t  }\n\n\t  return [val];\n\t}\n\n\tfunction booleanify(val) {\n\t  if (val === \"true\" || val == 1) {\n\t    return true;\n\t  }\n\n\t  if (val === \"false\" || val == 0 || !val) {\n\t    return false;\n\t  }\n\n\t  return val;\n\t}\n\n\tfunction shouldIgnore(filename) {\n\t  var ignore = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];\n\t  var only = arguments[2];\n\n\t  filename = filename.replace(/\\\\/g, \"/\");\n\n\t  if (only) {\n\t    for (var _iterator = only, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var pattern = _ref;\n\n\t      if (_shouldIgnore(pattern, filename)) return false;\n\t    }\n\t    return true;\n\t  } else if (ignore.length) {\n\t    for (var _iterator2 = ignore, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var _pattern = _ref2;\n\n\t      if (_shouldIgnore(_pattern, filename)) return true;\n\t    }\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction _shouldIgnore(pattern, filename) {\n\t  if (typeof pattern === \"function\") {\n\t    return pattern(filename);\n\t  } else {\n\t    return pattern.test(filename);\n\t  }\n\t}\n\n/***/ }),\n/* 123 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.ArrayPattern = exports.ObjectPattern = exports.RestProperty = exports.SpreadProperty = exports.SpreadElement = undefined;\n\texports.Identifier = Identifier;\n\texports.RestElement = RestElement;\n\texports.ObjectExpression = ObjectExpression;\n\texports.ObjectMethod = ObjectMethod;\n\texports.ObjectProperty = ObjectProperty;\n\texports.ArrayExpression = ArrayExpression;\n\texports.RegExpLiteral = RegExpLiteral;\n\texports.BooleanLiteral = BooleanLiteral;\n\texports.NullLiteral = NullLiteral;\n\texports.NumericLiteral = NumericLiteral;\n\texports.StringLiteral = StringLiteral;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _jsesc = __webpack_require__(469);\n\n\tvar _jsesc2 = _interopRequireDefault(_jsesc);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction Identifier(node) {\n\t  if (node.variance) {\n\t    if (node.variance === \"plus\") {\n\t      this.token(\"+\");\n\t    } else if (node.variance === \"minus\") {\n\t      this.token(\"-\");\n\t    }\n\t  }\n\n\t  this.word(node.name);\n\t}\n\n\tfunction RestElement(node) {\n\t  this.token(\"...\");\n\t  this.print(node.argument, node);\n\t}\n\n\texports.SpreadElement = RestElement;\n\texports.SpreadProperty = RestElement;\n\texports.RestProperty = RestElement;\n\tfunction ObjectExpression(node) {\n\t  var props = node.properties;\n\n\t  this.token(\"{\");\n\t  this.printInnerComments(node);\n\n\t  if (props.length) {\n\t    this.space();\n\t    this.printList(props, node, { indent: true, statement: true });\n\t    this.space();\n\t  }\n\n\t  this.token(\"}\");\n\t}\n\n\texports.ObjectPattern = ObjectExpression;\n\tfunction ObjectMethod(node) {\n\t  this.printJoin(node.decorators, node);\n\t  this._method(node);\n\t}\n\n\tfunction ObjectProperty(node) {\n\t  this.printJoin(node.decorators, node);\n\n\t  if (node.computed) {\n\t    this.token(\"[\");\n\t    this.print(node.key, node);\n\t    this.token(\"]\");\n\t  } else {\n\t    if (t.isAssignmentPattern(node.value) && t.isIdentifier(node.key) && node.key.name === node.value.left.name) {\n\t      this.print(node.value, node);\n\t      return;\n\t    }\n\n\t    this.print(node.key, node);\n\n\t    if (node.shorthand && t.isIdentifier(node.key) && t.isIdentifier(node.value) && node.key.name === node.value.name) {\n\t      return;\n\t    }\n\t  }\n\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.value, node);\n\t}\n\n\tfunction ArrayExpression(node) {\n\t  var elems = node.elements;\n\t  var len = elems.length;\n\n\t  this.token(\"[\");\n\t  this.printInnerComments(node);\n\n\t  for (var i = 0; i < elems.length; i++) {\n\t    var elem = elems[i];\n\t    if (elem) {\n\t      if (i > 0) this.space();\n\t      this.print(elem, node);\n\t      if (i < len - 1) this.token(\",\");\n\t    } else {\n\t      this.token(\",\");\n\t    }\n\t  }\n\n\t  this.token(\"]\");\n\t}\n\n\texports.ArrayPattern = ArrayExpression;\n\tfunction RegExpLiteral(node) {\n\t  this.word(\"/\" + node.pattern + \"/\" + node.flags);\n\t}\n\n\tfunction BooleanLiteral(node) {\n\t  this.word(node.value ? \"true\" : \"false\");\n\t}\n\n\tfunction NullLiteral() {\n\t  this.word(\"null\");\n\t}\n\n\tfunction NumericLiteral(node) {\n\t  var raw = this.getPossibleRaw(node);\n\t  var value = node.value + \"\";\n\t  if (raw == null) {\n\t    this.number(value);\n\t  } else if (this.format.minified) {\n\t    this.number(raw.length < value.length ? raw : value);\n\t  } else {\n\t    this.number(raw);\n\t  }\n\t}\n\n\tfunction StringLiteral(node, parent) {\n\t  var raw = this.getPossibleRaw(node);\n\t  if (!this.format.minified && raw != null) {\n\t    this.token(raw);\n\t    return;\n\t  }\n\n\t  var opts = {\n\t    quotes: t.isJSX(parent) ? \"double\" : this.format.quotes,\n\t    wrap: true\n\t  };\n\t  if (this.format.jsonCompatibleStrings) {\n\t    opts.json = true;\n\t  }\n\t  var val = (0, _jsesc2.default)(node.value, opts);\n\n\t  return this.token(val);\n\t}\n\n/***/ }),\n/* 124 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (path, file, helpers) {\n\t  if (!helpers) {\n\t    helpers = { wrapAsync: file };\n\t    file = null;\n\t  }\n\t  path.traverse(awaitVisitor, {\n\t    file: file,\n\t    wrapAwait: helpers.wrapAwait\n\t  });\n\n\t  if (path.isClassMethod() || path.isObjectMethod()) {\n\t    classOrObjectMethod(path, helpers.wrapAsync);\n\t  } else {\n\t    plainFunction(path, helpers.wrapAsync);\n\t  }\n\t};\n\n\tvar _babelHelperFunctionName = __webpack_require__(40);\n\n\tvar _babelHelperFunctionName2 = _interopRequireDefault(_babelHelperFunctionName);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _forAwait = __webpack_require__(320);\n\n\tvar _forAwait2 = _interopRequireDefault(_forAwait);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildWrapper = (0, _babelTemplate2.default)(\"\\n  (() => {\\n    var REF = FUNCTION;\\n    return function NAME(PARAMS) {\\n      return REF.apply(this, arguments);\\n    };\\n  })\\n\");\n\n\tvar namedBuildWrapper = (0, _babelTemplate2.default)(\"\\n  (() => {\\n    var REF = FUNCTION;\\n    function NAME(PARAMS) {\\n      return REF.apply(this, arguments);\\n    }\\n    return NAME;\\n  })\\n\");\n\n\tvar awaitVisitor = {\n\t  Function: function Function(path) {\n\t    if (path.isArrowFunctionExpression() && !path.node.async) {\n\t      path.arrowFunctionToShadowed();\n\t      return;\n\t    }\n\t    path.skip();\n\t  },\n\t  AwaitExpression: function AwaitExpression(_ref, _ref2) {\n\t    var node = _ref.node;\n\t    var wrapAwait = _ref2.wrapAwait;\n\n\t    node.type = \"YieldExpression\";\n\t    if (wrapAwait) {\n\t      node.argument = t.callExpression(wrapAwait, [node.argument]);\n\t    }\n\t  },\n\t  ForAwaitStatement: function ForAwaitStatement(path, _ref3) {\n\t    var file = _ref3.file,\n\t        wrapAwait = _ref3.wrapAwait;\n\t    var node = path.node;\n\n\t    var build = (0, _forAwait2.default)(path, {\n\t      getAsyncIterator: file.addHelper(\"asyncIterator\"),\n\t      wrapAwait: wrapAwait\n\t    });\n\n\t    var declar = build.declar,\n\t        loop = build.loop;\n\n\t    var block = loop.body;\n\n\t    path.ensureBlock();\n\n\t    if (declar) {\n\t      block.body.push(declar);\n\t    }\n\n\t    block.body = block.body.concat(node.body.body);\n\n\t    t.inherits(loop, node);\n\t    t.inherits(loop.body, node.body);\n\n\t    if (build.replaceParent) {\n\t      path.parentPath.replaceWithMultiple(build.node);\n\t      path.remove();\n\t    } else {\n\t      path.replaceWithMultiple(build.node);\n\t    }\n\t  }\n\t};\n\n\tfunction classOrObjectMethod(path, callId) {\n\t  var node = path.node;\n\t  var body = node.body;\n\n\t  node.async = false;\n\n\t  var container = t.functionExpression(null, [], t.blockStatement(body.body), true);\n\t  container.shadow = true;\n\t  body.body = [t.returnStatement(t.callExpression(t.callExpression(callId, [container]), []))];\n\n\t  node.generator = false;\n\t}\n\n\tfunction plainFunction(path, callId) {\n\t  var node = path.node;\n\t  var isDeclaration = path.isFunctionDeclaration();\n\t  var asyncFnId = node.id;\n\t  var wrapper = buildWrapper;\n\n\t  if (path.isArrowFunctionExpression()) {\n\t    path.arrowFunctionToShadowed();\n\t  } else if (!isDeclaration && asyncFnId) {\n\t    wrapper = namedBuildWrapper;\n\t  }\n\n\t  node.async = false;\n\t  node.generator = true;\n\n\t  node.id = null;\n\n\t  if (isDeclaration) {\n\t    node.type = \"FunctionExpression\";\n\t  }\n\n\t  var built = t.callExpression(callId, [node]);\n\t  var container = wrapper({\n\t    NAME: asyncFnId,\n\t    REF: path.scope.generateUidIdentifier(\"ref\"),\n\t    FUNCTION: built,\n\t    PARAMS: node.params.reduce(function (acc, param) {\n\t      acc.done = acc.done || t.isAssignmentPattern(param) || t.isRestElement(param);\n\n\t      if (!acc.done) {\n\t        acc.params.push(path.scope.generateUidIdentifier(\"x\"));\n\t      }\n\n\t      return acc;\n\t    }, {\n\t      params: [],\n\t      done: false\n\t    }).params\n\t  }).expression;\n\n\t  if (isDeclaration) {\n\t    var declar = t.variableDeclaration(\"let\", [t.variableDeclarator(t.identifier(asyncFnId.name), t.callExpression(container, []))]);\n\t    declar._blockHoist = true;\n\n\t    path.replaceWith(declar);\n\t  } else {\n\t    var retFunction = container.body.body[1].argument;\n\t    if (!asyncFnId) {\n\t      (0, _babelHelperFunctionName2.default)({\n\t        node: retFunction,\n\t        parent: path.parent,\n\t        scope: path.scope\n\t      });\n\t    }\n\n\t    if (!retFunction || retFunction.id || node.params.length) {\n\t      path.replaceWith(t.callExpression(container, []));\n\t    } else {\n\t      path.replaceWith(built);\n\t    }\n\t  }\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 125 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"decorators\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 126 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"flow\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 127 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"jsx\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 128 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"trailingFunctionCommas\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 129 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    inherits: __webpack_require__(67),\n\n\t    visitor: {\n\t      Function: function Function(path, state) {\n\t        if (!path.node.async || path.node.generator) return;\n\n\t        (0, _babelHelperRemapAsyncToGenerator2.default)(path, state.file, {\n\t          wrapAsync: state.addHelper(\"asyncToGenerator\")\n\t        });\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperRemapAsyncToGenerator = __webpack_require__(124);\n\n\tvar _babelHelperRemapAsyncToGenerator2 = _interopRequireDefault(_babelHelperRemapAsyncToGenerator);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 130 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      ObjectExpression: function ObjectExpression(path) {\n\t        var node = path.node;\n\n\t        var plainProps = node.properties.filter(function (prop) {\n\t          return !t.isSpreadProperty(prop) && !prop.computed;\n\t        });\n\n\t        var alreadySeenData = (0, _create2.default)(null);\n\t        var alreadySeenGetters = (0, _create2.default)(null);\n\t        var alreadySeenSetters = (0, _create2.default)(null);\n\n\t        for (var _iterator = plainProps, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref = _i.value;\n\t          }\n\n\t          var prop = _ref;\n\n\t          var name = getName(prop.key);\n\t          var isDuplicate = false;\n\t          switch (prop.kind) {\n\t            case \"get\":\n\t              if (alreadySeenData[name] || alreadySeenGetters[name]) {\n\t                isDuplicate = true;\n\t              }\n\t              alreadySeenGetters[name] = true;\n\t              break;\n\t            case \"set\":\n\t              if (alreadySeenData[name] || alreadySeenSetters[name]) {\n\t                isDuplicate = true;\n\t              }\n\t              alreadySeenSetters[name] = true;\n\t              break;\n\t            default:\n\t              if (alreadySeenData[name] || alreadySeenGetters[name] || alreadySeenSetters[name]) {\n\t                isDuplicate = true;\n\t              }\n\t              alreadySeenData[name] = true;\n\t          }\n\n\t          if (isDuplicate) {\n\t            prop.computed = true;\n\t            prop.key = t.stringLiteral(name);\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction getName(key) {\n\t  if (t.isIdentifier(key)) {\n\t    return key.name;\n\t  }\n\t  return key.value.toString();\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 131 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function isValidRequireCall(path) {\n\t    if (!path.isCallExpression()) return false;\n\t    if (!path.get(\"callee\").isIdentifier({ name: \"require\" })) return false;\n\t    if (path.scope.getBinding(\"require\")) return false;\n\n\t    var args = path.get(\"arguments\");\n\t    if (args.length !== 1) return false;\n\n\t    var arg = args[0];\n\t    if (!arg.isStringLiteral()) return false;\n\n\t    return true;\n\t  }\n\n\t  var amdVisitor = {\n\t    ReferencedIdentifier: function ReferencedIdentifier(_ref2) {\n\t      var node = _ref2.node,\n\t          scope = _ref2.scope;\n\n\t      if (node.name === \"exports\" && !scope.getBinding(\"exports\")) {\n\t        this.hasExports = true;\n\t      }\n\n\t      if (node.name === \"module\" && !scope.getBinding(\"module\")) {\n\t        this.hasModule = true;\n\t      }\n\t    },\n\t    CallExpression: function CallExpression(path) {\n\t      if (!isValidRequireCall(path)) return;\n\t      this.bareSources.push(path.node.arguments[0]);\n\t      path.remove();\n\t    },\n\t    VariableDeclarator: function VariableDeclarator(path) {\n\t      var id = path.get(\"id\");\n\t      if (!id.isIdentifier()) return;\n\n\t      var init = path.get(\"init\");\n\t      if (!isValidRequireCall(init)) return;\n\n\t      var source = init.node.arguments[0];\n\t      this.sourceNames[source.value] = true;\n\t      this.sources.push([id.node, source]);\n\n\t      path.remove();\n\t    }\n\t  };\n\n\t  return {\n\t    inherits: __webpack_require__(77),\n\n\t    pre: function pre() {\n\t      this.sources = [];\n\t      this.sourceNames = (0, _create2.default)(null);\n\n\t      this.bareSources = [];\n\n\t      this.hasExports = false;\n\t      this.hasModule = false;\n\t    },\n\n\t    visitor: {\n\t      Program: {\n\t        exit: function exit(path) {\n\t          var _this = this;\n\n\t          if (this.ran) return;\n\t          this.ran = true;\n\n\t          path.traverse(amdVisitor, this);\n\n\t          var params = this.sources.map(function (source) {\n\t            return source[0];\n\t          });\n\t          var sources = this.sources.map(function (source) {\n\t            return source[1];\n\t          });\n\n\t          sources = sources.concat(this.bareSources.filter(function (str) {\n\t            return !_this.sourceNames[str.value];\n\t          }));\n\n\t          var moduleName = this.getModuleName();\n\t          if (moduleName) moduleName = t.stringLiteral(moduleName);\n\n\t          if (this.hasExports) {\n\t            sources.unshift(t.stringLiteral(\"exports\"));\n\t            params.unshift(t.identifier(\"exports\"));\n\t          }\n\n\t          if (this.hasModule) {\n\t            sources.unshift(t.stringLiteral(\"module\"));\n\t            params.unshift(t.identifier(\"module\"));\n\t          }\n\n\t          var node = path.node;\n\n\t          var factory = buildFactory({\n\t            PARAMS: params,\n\t            BODY: node.body\n\t          });\n\t          factory.expression.body.directives = node.directives;\n\t          node.directives = [];\n\n\t          node.body = [buildDefine({\n\t            MODULE_NAME: moduleName,\n\t            SOURCES: sources,\n\t            FACTORY: factory\n\t          })];\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildDefine = (0, _babelTemplate2.default)(\"\\n  define(MODULE_NAME, [SOURCES], FACTORY);\\n\");\n\n\tvar buildFactory = (0, _babelTemplate2.default)(\"\\n  (function (PARAMS) {\\n    BODY;\\n  })\\n\");\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 132 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    inherits: __webpack_require__(199),\n\n\t    visitor: (0, _babelHelperBuilderBinaryAssignmentOperatorVisitor2.default)({\n\t      operator: \"**\",\n\n\t      build: function build(left, right) {\n\t        return t.callExpression(t.memberExpression(t.identifier(\"Math\"), t.identifier(\"pow\")), [left, right]);\n\t      }\n\t    })\n\t  };\n\t};\n\n\tvar _babelHelperBuilderBinaryAssignmentOperatorVisitor = __webpack_require__(316);\n\n\tvar _babelHelperBuilderBinaryAssignmentOperatorVisitor2 = _interopRequireDefault(_babelHelperBuilderBinaryAssignmentOperatorVisitor);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 133 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(406), __esModule: true };\n\n/***/ }),\n/* 134 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _map = __webpack_require__(133);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _includes = __webpack_require__(111);\n\n\tvar _includes2 = _interopRequireDefault(_includes);\n\n\tvar _repeat = __webpack_require__(278);\n\n\tvar _repeat2 = _interopRequireDefault(_repeat);\n\n\tvar _renamer = __webpack_require__(383);\n\n\tvar _renamer2 = _interopRequireDefault(_renamer);\n\n\tvar _index = __webpack_require__(7);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tvar _defaults = __webpack_require__(273);\n\n\tvar _defaults2 = _interopRequireDefault(_defaults);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _binding2 = __webpack_require__(225);\n\n\tvar _binding3 = _interopRequireDefault(_binding2);\n\n\tvar _globals = __webpack_require__(463);\n\n\tvar _globals2 = _interopRequireDefault(_globals);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _cache = __webpack_require__(88);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar _crawlCallsCount = 0;\n\n\tfunction getCache(path, parentScope, self) {\n\t  var scopes = _cache.scope.get(path.node) || [];\n\n\t  for (var _iterator = scopes, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var scope = _ref;\n\n\t    if (scope.parent === parentScope && scope.path === path) return scope;\n\t  }\n\n\t  scopes.push(self);\n\n\t  if (!_cache.scope.has(path.node)) {\n\t    _cache.scope.set(path.node, scopes);\n\t  }\n\t}\n\n\tfunction gatherNodeParts(node, parts) {\n\t  if (t.isModuleDeclaration(node)) {\n\t    if (node.source) {\n\t      gatherNodeParts(node.source, parts);\n\t    } else if (node.specifiers && node.specifiers.length) {\n\t      for (var _iterator2 = node.specifiers, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t        var _ref2;\n\n\t        if (_isArray2) {\n\t          if (_i2 >= _iterator2.length) break;\n\t          _ref2 = _iterator2[_i2++];\n\t        } else {\n\t          _i2 = _iterator2.next();\n\t          if (_i2.done) break;\n\t          _ref2 = _i2.value;\n\t        }\n\n\t        var specifier = _ref2;\n\n\t        gatherNodeParts(specifier, parts);\n\t      }\n\t    } else if (node.declaration) {\n\t      gatherNodeParts(node.declaration, parts);\n\t    }\n\t  } else if (t.isModuleSpecifier(node)) {\n\t    gatherNodeParts(node.local, parts);\n\t  } else if (t.isMemberExpression(node)) {\n\t    gatherNodeParts(node.object, parts);\n\t    gatherNodeParts(node.property, parts);\n\t  } else if (t.isIdentifier(node)) {\n\t    parts.push(node.name);\n\t  } else if (t.isLiteral(node)) {\n\t    parts.push(node.value);\n\t  } else if (t.isCallExpression(node)) {\n\t    gatherNodeParts(node.callee, parts);\n\t  } else if (t.isObjectExpression(node) || t.isObjectPattern(node)) {\n\t    for (var _iterator3 = node.properties, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var prop = _ref3;\n\n\t      gatherNodeParts(prop.key || prop.argument, parts);\n\t    }\n\t  }\n\t}\n\n\tvar collectorVisitor = {\n\t  For: function For(path) {\n\t    for (var _iterator4 = t.FOR_INIT_KEYS, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t      var _ref4;\n\n\t      if (_isArray4) {\n\t        if (_i4 >= _iterator4.length) break;\n\t        _ref4 = _iterator4[_i4++];\n\t      } else {\n\t        _i4 = _iterator4.next();\n\t        if (_i4.done) break;\n\t        _ref4 = _i4.value;\n\t      }\n\n\t      var key = _ref4;\n\n\t      var declar = path.get(key);\n\t      if (declar.isVar()) path.scope.getFunctionParent().registerBinding(\"var\", declar);\n\t    }\n\t  },\n\t  Declaration: function Declaration(path) {\n\t    if (path.isBlockScoped()) return;\n\n\t    if (path.isExportDeclaration() && path.get(\"declaration\").isDeclaration()) return;\n\n\t    path.scope.getFunctionParent().registerDeclaration(path);\n\t  },\n\t  ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t    state.references.push(path);\n\t  },\n\t  ForXStatement: function ForXStatement(path, state) {\n\t    var left = path.get(\"left\");\n\t    if (left.isPattern() || left.isIdentifier()) {\n\t      state.constantViolations.push(left);\n\t    }\n\t  },\n\n\t  ExportDeclaration: {\n\t    exit: function exit(path) {\n\t      var node = path.node,\n\t          scope = path.scope;\n\n\t      var declar = node.declaration;\n\t      if (t.isClassDeclaration(declar) || t.isFunctionDeclaration(declar)) {\n\t        var _id = declar.id;\n\t        if (!_id) return;\n\n\t        var binding = scope.getBinding(_id.name);\n\t        if (binding) binding.reference(path);\n\t      } else if (t.isVariableDeclaration(declar)) {\n\t        for (var _iterator5 = declar.declarations, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t          var _ref5;\n\n\t          if (_isArray5) {\n\t            if (_i5 >= _iterator5.length) break;\n\t            _ref5 = _iterator5[_i5++];\n\t          } else {\n\t            _i5 = _iterator5.next();\n\t            if (_i5.done) break;\n\t            _ref5 = _i5.value;\n\t          }\n\n\t          var decl = _ref5;\n\n\t          var ids = t.getBindingIdentifiers(decl);\n\t          for (var name in ids) {\n\t            var _binding = scope.getBinding(name);\n\t            if (_binding) _binding.reference(path);\n\t          }\n\t        }\n\t      }\n\t    }\n\t  },\n\n\t  LabeledStatement: function LabeledStatement(path) {\n\t    path.scope.getProgramParent().addGlobal(path.node);\n\t    path.scope.getBlockParent().registerDeclaration(path);\n\t  },\n\t  AssignmentExpression: function AssignmentExpression(path, state) {\n\t    state.assignments.push(path);\n\t  },\n\t  UpdateExpression: function UpdateExpression(path, state) {\n\t    state.constantViolations.push(path.get(\"argument\"));\n\t  },\n\t  UnaryExpression: function UnaryExpression(path, state) {\n\t    if (path.node.operator === \"delete\") {\n\t      state.constantViolations.push(path.get(\"argument\"));\n\t    }\n\t  },\n\t  BlockScoped: function BlockScoped(path) {\n\t    var scope = path.scope;\n\t    if (scope.path === path) scope = scope.parent;\n\t    scope.getBlockParent().registerDeclaration(path);\n\t  },\n\t  ClassDeclaration: function ClassDeclaration(path) {\n\t    var id = path.node.id;\n\t    if (!id) return;\n\n\t    var name = id.name;\n\t    path.scope.bindings[name] = path.scope.getBinding(name);\n\t  },\n\t  Block: function Block(path) {\n\t    var paths = path.get(\"body\");\n\t    for (var _iterator6 = paths, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : (0, _getIterator3.default)(_iterator6);;) {\n\t      var _ref6;\n\n\t      if (_isArray6) {\n\t        if (_i6 >= _iterator6.length) break;\n\t        _ref6 = _iterator6[_i6++];\n\t      } else {\n\t        _i6 = _iterator6.next();\n\t        if (_i6.done) break;\n\t        _ref6 = _i6.value;\n\t      }\n\n\t      var bodyPath = _ref6;\n\n\t      if (bodyPath.isFunctionDeclaration()) {\n\t        path.scope.getBlockParent().registerDeclaration(bodyPath);\n\t      }\n\t    }\n\t  }\n\t};\n\n\tvar uid = 0;\n\n\tvar Scope = function () {\n\t  function Scope(path, parentScope) {\n\t    (0, _classCallCheck3.default)(this, Scope);\n\n\t    if (parentScope && parentScope.block === path.node) {\n\t      return parentScope;\n\t    }\n\n\t    var cached = getCache(path, parentScope, this);\n\t    if (cached) return cached;\n\n\t    this.uid = uid++;\n\t    this.parent = parentScope;\n\t    this.hub = path.hub;\n\n\t    this.parentBlock = path.parent;\n\t    this.block = path.node;\n\t    this.path = path;\n\n\t    this.labels = new _map2.default();\n\t  }\n\n\t  Scope.prototype.traverse = function traverse(node, opts, state) {\n\t    (0, _index2.default)(node, opts, this, state, this.path);\n\t  };\n\n\t  Scope.prototype.generateDeclaredUidIdentifier = function generateDeclaredUidIdentifier() {\n\t    var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : \"temp\";\n\n\t    var id = this.generateUidIdentifier(name);\n\t    this.push({ id: id });\n\t    return id;\n\t  };\n\n\t  Scope.prototype.generateUidIdentifier = function generateUidIdentifier() {\n\t    var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : \"temp\";\n\n\t    return t.identifier(this.generateUid(name));\n\t  };\n\n\t  Scope.prototype.generateUid = function generateUid() {\n\t    var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : \"temp\";\n\n\t    name = t.toIdentifier(name).replace(/^_+/, \"\").replace(/[0-9]+$/g, \"\");\n\n\t    var uid = void 0;\n\t    var i = 0;\n\t    do {\n\t      uid = this._generateUid(name, i);\n\t      i++;\n\t    } while (this.hasLabel(uid) || this.hasBinding(uid) || this.hasGlobal(uid) || this.hasReference(uid));\n\n\t    var program = this.getProgramParent();\n\t    program.references[uid] = true;\n\t    program.uids[uid] = true;\n\n\t    return uid;\n\t  };\n\n\t  Scope.prototype._generateUid = function _generateUid(name, i) {\n\t    var id = name;\n\t    if (i > 1) id += i;\n\t    return \"_\" + id;\n\t  };\n\n\t  Scope.prototype.generateUidIdentifierBasedOnNode = function generateUidIdentifierBasedOnNode(parent, defaultName) {\n\t    var node = parent;\n\n\t    if (t.isAssignmentExpression(parent)) {\n\t      node = parent.left;\n\t    } else if (t.isVariableDeclarator(parent)) {\n\t      node = parent.id;\n\t    } else if (t.isObjectProperty(node) || t.isObjectMethod(node)) {\n\t      node = node.key;\n\t    }\n\n\t    var parts = [];\n\t    gatherNodeParts(node, parts);\n\n\t    var id = parts.join(\"$\");\n\t    id = id.replace(/^_/, \"\") || defaultName || \"ref\";\n\n\t    return this.generateUidIdentifier(id.slice(0, 20));\n\t  };\n\n\t  Scope.prototype.isStatic = function isStatic(node) {\n\t    if (t.isThisExpression(node) || t.isSuper(node)) {\n\t      return true;\n\t    }\n\n\t    if (t.isIdentifier(node)) {\n\t      var binding = this.getBinding(node.name);\n\t      if (binding) {\n\t        return binding.constant;\n\t      } else {\n\t        return this.hasBinding(node.name);\n\t      }\n\t    }\n\n\t    return false;\n\t  };\n\n\t  Scope.prototype.maybeGenerateMemoised = function maybeGenerateMemoised(node, dontPush) {\n\t    if (this.isStatic(node)) {\n\t      return null;\n\t    } else {\n\t      var _id2 = this.generateUidIdentifierBasedOnNode(node);\n\t      if (!dontPush) this.push({ id: _id2 });\n\t      return _id2;\n\t    }\n\t  };\n\n\t  Scope.prototype.checkBlockScopedCollisions = function checkBlockScopedCollisions(local, kind, name, id) {\n\t    if (kind === \"param\") return;\n\n\t    if (kind === \"hoisted\" && local.kind === \"let\") return;\n\n\t    var duplicate = kind === \"let\" || local.kind === \"let\" || local.kind === \"const\" || local.kind === \"module\" || local.kind === \"param\" && (kind === \"let\" || kind === \"const\");\n\n\t    if (duplicate) {\n\t      throw this.hub.file.buildCodeFrameError(id, messages.get(\"scopeDuplicateDeclaration\", name), TypeError);\n\t    }\n\t  };\n\n\t  Scope.prototype.rename = function rename(oldName, newName, block) {\n\t    var binding = this.getBinding(oldName);\n\t    if (binding) {\n\t      newName = newName || this.generateUidIdentifier(oldName).name;\n\t      return new _renamer2.default(binding, oldName, newName).rename(block);\n\t    }\n\t  };\n\n\t  Scope.prototype._renameFromMap = function _renameFromMap(map, oldName, newName, value) {\n\t    if (map[oldName]) {\n\t      map[newName] = value;\n\t      map[oldName] = null;\n\t    }\n\t  };\n\n\t  Scope.prototype.dump = function dump() {\n\t    var sep = (0, _repeat2.default)(\"-\", 60);\n\t    console.log(sep);\n\t    var scope = this;\n\t    do {\n\t      console.log(\"#\", scope.block.type);\n\t      for (var name in scope.bindings) {\n\t        var binding = scope.bindings[name];\n\t        console.log(\" -\", name, {\n\t          constant: binding.constant,\n\t          references: binding.references,\n\t          violations: binding.constantViolations.length,\n\t          kind: binding.kind\n\t        });\n\t      }\n\t    } while (scope = scope.parent);\n\t    console.log(sep);\n\t  };\n\n\t  Scope.prototype.toArray = function toArray(node, i) {\n\t    var file = this.hub.file;\n\n\t    if (t.isIdentifier(node)) {\n\t      var binding = this.getBinding(node.name);\n\t      if (binding && binding.constant && binding.path.isGenericType(\"Array\")) return node;\n\t    }\n\n\t    if (t.isArrayExpression(node)) {\n\t      return node;\n\t    }\n\n\t    if (t.isIdentifier(node, { name: \"arguments\" })) {\n\t      return t.callExpression(t.memberExpression(t.memberExpression(t.memberExpression(t.identifier(\"Array\"), t.identifier(\"prototype\")), t.identifier(\"slice\")), t.identifier(\"call\")), [node]);\n\t    }\n\n\t    var helperName = \"toArray\";\n\t    var args = [node];\n\t    if (i === true) {\n\t      helperName = \"toConsumableArray\";\n\t    } else if (i) {\n\t      args.push(t.numericLiteral(i));\n\t      helperName = \"slicedToArray\";\n\t    }\n\t    return t.callExpression(file.addHelper(helperName), args);\n\t  };\n\n\t  Scope.prototype.hasLabel = function hasLabel(name) {\n\t    return !!this.getLabel(name);\n\t  };\n\n\t  Scope.prototype.getLabel = function getLabel(name) {\n\t    return this.labels.get(name);\n\t  };\n\n\t  Scope.prototype.registerLabel = function registerLabel(path) {\n\t    this.labels.set(path.node.label.name, path);\n\t  };\n\n\t  Scope.prototype.registerDeclaration = function registerDeclaration(path) {\n\t    if (path.isLabeledStatement()) {\n\t      this.registerLabel(path);\n\t    } else if (path.isFunctionDeclaration()) {\n\t      this.registerBinding(\"hoisted\", path.get(\"id\"), path);\n\t    } else if (path.isVariableDeclaration()) {\n\t      var declarations = path.get(\"declarations\");\n\t      for (var _iterator7 = declarations, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : (0, _getIterator3.default)(_iterator7);;) {\n\t        var _ref7;\n\n\t        if (_isArray7) {\n\t          if (_i7 >= _iterator7.length) break;\n\t          _ref7 = _iterator7[_i7++];\n\t        } else {\n\t          _i7 = _iterator7.next();\n\t          if (_i7.done) break;\n\t          _ref7 = _i7.value;\n\t        }\n\n\t        var declar = _ref7;\n\n\t        this.registerBinding(path.node.kind, declar);\n\t      }\n\t    } else if (path.isClassDeclaration()) {\n\t      this.registerBinding(\"let\", path);\n\t    } else if (path.isImportDeclaration()) {\n\t      var specifiers = path.get(\"specifiers\");\n\t      for (var _iterator8 = specifiers, _isArray8 = Array.isArray(_iterator8), _i8 = 0, _iterator8 = _isArray8 ? _iterator8 : (0, _getIterator3.default)(_iterator8);;) {\n\t        var _ref8;\n\n\t        if (_isArray8) {\n\t          if (_i8 >= _iterator8.length) break;\n\t          _ref8 = _iterator8[_i8++];\n\t        } else {\n\t          _i8 = _iterator8.next();\n\t          if (_i8.done) break;\n\t          _ref8 = _i8.value;\n\t        }\n\n\t        var specifier = _ref8;\n\n\t        this.registerBinding(\"module\", specifier);\n\t      }\n\t    } else if (path.isExportDeclaration()) {\n\t      var _declar = path.get(\"declaration\");\n\t      if (_declar.isClassDeclaration() || _declar.isFunctionDeclaration() || _declar.isVariableDeclaration()) {\n\t        this.registerDeclaration(_declar);\n\t      }\n\t    } else {\n\t      this.registerBinding(\"unknown\", path);\n\t    }\n\t  };\n\n\t  Scope.prototype.buildUndefinedNode = function buildUndefinedNode() {\n\t    if (this.hasBinding(\"undefined\")) {\n\t      return t.unaryExpression(\"void\", t.numericLiteral(0), true);\n\t    } else {\n\t      return t.identifier(\"undefined\");\n\t    }\n\t  };\n\n\t  Scope.prototype.registerConstantViolation = function registerConstantViolation(path) {\n\t    var ids = path.getBindingIdentifiers();\n\t    for (var name in ids) {\n\t      var binding = this.getBinding(name);\n\t      if (binding) binding.reassign(path);\n\t    }\n\t  };\n\n\t  Scope.prototype.registerBinding = function registerBinding(kind, path) {\n\t    var bindingPath = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : path;\n\n\t    if (!kind) throw new ReferenceError(\"no `kind`\");\n\n\t    if (path.isVariableDeclaration()) {\n\t      var declarators = path.get(\"declarations\");\n\t      for (var _iterator9 = declarators, _isArray9 = Array.isArray(_iterator9), _i9 = 0, _iterator9 = _isArray9 ? _iterator9 : (0, _getIterator3.default)(_iterator9);;) {\n\t        var _ref9;\n\n\t        if (_isArray9) {\n\t          if (_i9 >= _iterator9.length) break;\n\t          _ref9 = _iterator9[_i9++];\n\t        } else {\n\t          _i9 = _iterator9.next();\n\t          if (_i9.done) break;\n\t          _ref9 = _i9.value;\n\t        }\n\n\t        var declar = _ref9;\n\n\t        this.registerBinding(kind, declar);\n\t      }\n\t      return;\n\t    }\n\n\t    var parent = this.getProgramParent();\n\t    var ids = path.getBindingIdentifiers(true);\n\n\t    for (var name in ids) {\n\t      for (var _iterator10 = ids[name], _isArray10 = Array.isArray(_iterator10), _i10 = 0, _iterator10 = _isArray10 ? _iterator10 : (0, _getIterator3.default)(_iterator10);;) {\n\t        var _ref10;\n\n\t        if (_isArray10) {\n\t          if (_i10 >= _iterator10.length) break;\n\t          _ref10 = _iterator10[_i10++];\n\t        } else {\n\t          _i10 = _iterator10.next();\n\t          if (_i10.done) break;\n\t          _ref10 = _i10.value;\n\t        }\n\n\t        var _id3 = _ref10;\n\n\t        var local = this.getOwnBinding(name);\n\t        if (local) {\n\t          if (local.identifier === _id3) continue;\n\n\t          this.checkBlockScopedCollisions(local, kind, name, _id3);\n\t        }\n\n\t        if (local && local.path.isFlow()) local = null;\n\n\t        parent.references[name] = true;\n\n\t        this.bindings[name] = new _binding3.default({\n\t          identifier: _id3,\n\t          existing: local,\n\t          scope: this,\n\t          path: bindingPath,\n\t          kind: kind\n\t        });\n\t      }\n\t    }\n\t  };\n\n\t  Scope.prototype.addGlobal = function addGlobal(node) {\n\t    this.globals[node.name] = node;\n\t  };\n\n\t  Scope.prototype.hasUid = function hasUid(name) {\n\t    var scope = this;\n\n\t    do {\n\t      if (scope.uids[name]) return true;\n\t    } while (scope = scope.parent);\n\n\t    return false;\n\t  };\n\n\t  Scope.prototype.hasGlobal = function hasGlobal(name) {\n\t    var scope = this;\n\n\t    do {\n\t      if (scope.globals[name]) return true;\n\t    } while (scope = scope.parent);\n\n\t    return false;\n\t  };\n\n\t  Scope.prototype.hasReference = function hasReference(name) {\n\t    var scope = this;\n\n\t    do {\n\t      if (scope.references[name]) return true;\n\t    } while (scope = scope.parent);\n\n\t    return false;\n\t  };\n\n\t  Scope.prototype.isPure = function isPure(node, constantsOnly) {\n\t    if (t.isIdentifier(node)) {\n\t      var binding = this.getBinding(node.name);\n\t      if (!binding) return false;\n\t      if (constantsOnly) return binding.constant;\n\t      return true;\n\t    } else if (t.isClass(node)) {\n\t      if (node.superClass && !this.isPure(node.superClass, constantsOnly)) return false;\n\t      return this.isPure(node.body, constantsOnly);\n\t    } else if (t.isClassBody(node)) {\n\t      for (var _iterator11 = node.body, _isArray11 = Array.isArray(_iterator11), _i11 = 0, _iterator11 = _isArray11 ? _iterator11 : (0, _getIterator3.default)(_iterator11);;) {\n\t        var _ref11;\n\n\t        if (_isArray11) {\n\t          if (_i11 >= _iterator11.length) break;\n\t          _ref11 = _iterator11[_i11++];\n\t        } else {\n\t          _i11 = _iterator11.next();\n\t          if (_i11.done) break;\n\t          _ref11 = _i11.value;\n\t        }\n\n\t        var method = _ref11;\n\n\t        if (!this.isPure(method, constantsOnly)) return false;\n\t      }\n\t      return true;\n\t    } else if (t.isBinary(node)) {\n\t      return this.isPure(node.left, constantsOnly) && this.isPure(node.right, constantsOnly);\n\t    } else if (t.isArrayExpression(node)) {\n\t      for (var _iterator12 = node.elements, _isArray12 = Array.isArray(_iterator12), _i12 = 0, _iterator12 = _isArray12 ? _iterator12 : (0, _getIterator3.default)(_iterator12);;) {\n\t        var _ref12;\n\n\t        if (_isArray12) {\n\t          if (_i12 >= _iterator12.length) break;\n\t          _ref12 = _iterator12[_i12++];\n\t        } else {\n\t          _i12 = _iterator12.next();\n\t          if (_i12.done) break;\n\t          _ref12 = _i12.value;\n\t        }\n\n\t        var elem = _ref12;\n\n\t        if (!this.isPure(elem, constantsOnly)) return false;\n\t      }\n\t      return true;\n\t    } else if (t.isObjectExpression(node)) {\n\t      for (var _iterator13 = node.properties, _isArray13 = Array.isArray(_iterator13), _i13 = 0, _iterator13 = _isArray13 ? _iterator13 : (0, _getIterator3.default)(_iterator13);;) {\n\t        var _ref13;\n\n\t        if (_isArray13) {\n\t          if (_i13 >= _iterator13.length) break;\n\t          _ref13 = _iterator13[_i13++];\n\t        } else {\n\t          _i13 = _iterator13.next();\n\t          if (_i13.done) break;\n\t          _ref13 = _i13.value;\n\t        }\n\n\t        var prop = _ref13;\n\n\t        if (!this.isPure(prop, constantsOnly)) return false;\n\t      }\n\t      return true;\n\t    } else if (t.isClassMethod(node)) {\n\t      if (node.computed && !this.isPure(node.key, constantsOnly)) return false;\n\t      if (node.kind === \"get\" || node.kind === \"set\") return false;\n\t      return true;\n\t    } else if (t.isClassProperty(node) || t.isObjectProperty(node)) {\n\t      if (node.computed && !this.isPure(node.key, constantsOnly)) return false;\n\t      return this.isPure(node.value, constantsOnly);\n\t    } else if (t.isUnaryExpression(node)) {\n\t      return this.isPure(node.argument, constantsOnly);\n\t    } else {\n\t      return t.isPureish(node);\n\t    }\n\t  };\n\n\t  Scope.prototype.setData = function setData(key, val) {\n\t    return this.data[key] = val;\n\t  };\n\n\t  Scope.prototype.getData = function getData(key) {\n\t    var scope = this;\n\t    do {\n\t      var data = scope.data[key];\n\t      if (data != null) return data;\n\t    } while (scope = scope.parent);\n\t  };\n\n\t  Scope.prototype.removeData = function removeData(key) {\n\t    var scope = this;\n\t    do {\n\t      var data = scope.data[key];\n\t      if (data != null) scope.data[key] = null;\n\t    } while (scope = scope.parent);\n\t  };\n\n\t  Scope.prototype.init = function init() {\n\t    if (!this.references) this.crawl();\n\t  };\n\n\t  Scope.prototype.crawl = function crawl() {\n\t    _crawlCallsCount++;\n\t    this._crawl();\n\t    _crawlCallsCount--;\n\t  };\n\n\t  Scope.prototype._crawl = function _crawl() {\n\t    var path = this.path;\n\n\t    this.references = (0, _create2.default)(null);\n\t    this.bindings = (0, _create2.default)(null);\n\t    this.globals = (0, _create2.default)(null);\n\t    this.uids = (0, _create2.default)(null);\n\t    this.data = (0, _create2.default)(null);\n\n\t    if (path.isLoop()) {\n\t      for (var _iterator14 = t.FOR_INIT_KEYS, _isArray14 = Array.isArray(_iterator14), _i14 = 0, _iterator14 = _isArray14 ? _iterator14 : (0, _getIterator3.default)(_iterator14);;) {\n\t        var _ref14;\n\n\t        if (_isArray14) {\n\t          if (_i14 >= _iterator14.length) break;\n\t          _ref14 = _iterator14[_i14++];\n\t        } else {\n\t          _i14 = _iterator14.next();\n\t          if (_i14.done) break;\n\t          _ref14 = _i14.value;\n\t        }\n\n\t        var key = _ref14;\n\n\t        var node = path.get(key);\n\t        if (node.isBlockScoped()) this.registerBinding(node.node.kind, node);\n\t      }\n\t    }\n\n\t    if (path.isFunctionExpression() && path.has(\"id\")) {\n\t      if (!path.get(\"id\").node[t.NOT_LOCAL_BINDING]) {\n\t        this.registerBinding(\"local\", path.get(\"id\"), path);\n\t      }\n\t    }\n\n\t    if (path.isClassExpression() && path.has(\"id\")) {\n\t      if (!path.get(\"id\").node[t.NOT_LOCAL_BINDING]) {\n\t        this.registerBinding(\"local\", path);\n\t      }\n\t    }\n\n\t    if (path.isFunction()) {\n\t      var params = path.get(\"params\");\n\t      for (var _iterator15 = params, _isArray15 = Array.isArray(_iterator15), _i15 = 0, _iterator15 = _isArray15 ? _iterator15 : (0, _getIterator3.default)(_iterator15);;) {\n\t        var _ref15;\n\n\t        if (_isArray15) {\n\t          if (_i15 >= _iterator15.length) break;\n\t          _ref15 = _iterator15[_i15++];\n\t        } else {\n\t          _i15 = _iterator15.next();\n\t          if (_i15.done) break;\n\t          _ref15 = _i15.value;\n\t        }\n\n\t        var param = _ref15;\n\n\t        this.registerBinding(\"param\", param);\n\t      }\n\t    }\n\n\t    if (path.isCatchClause()) {\n\t      this.registerBinding(\"let\", path);\n\t    }\n\n\t    var parent = this.getProgramParent();\n\t    if (parent.crawling) return;\n\n\t    var state = {\n\t      references: [],\n\t      constantViolations: [],\n\t      assignments: []\n\t    };\n\n\t    this.crawling = true;\n\t    path.traverse(collectorVisitor, state);\n\t    this.crawling = false;\n\n\t    for (var _iterator16 = state.assignments, _isArray16 = Array.isArray(_iterator16), _i16 = 0, _iterator16 = _isArray16 ? _iterator16 : (0, _getIterator3.default)(_iterator16);;) {\n\t      var _ref16;\n\n\t      if (_isArray16) {\n\t        if (_i16 >= _iterator16.length) break;\n\t        _ref16 = _iterator16[_i16++];\n\t      } else {\n\t        _i16 = _iterator16.next();\n\t        if (_i16.done) break;\n\t        _ref16 = _i16.value;\n\t      }\n\n\t      var _path = _ref16;\n\n\t      var ids = _path.getBindingIdentifiers();\n\t      var programParent = void 0;\n\t      for (var name in ids) {\n\t        if (_path.scope.getBinding(name)) continue;\n\n\t        programParent = programParent || _path.scope.getProgramParent();\n\t        programParent.addGlobal(ids[name]);\n\t      }\n\n\t      _path.scope.registerConstantViolation(_path);\n\t    }\n\n\t    for (var _iterator17 = state.references, _isArray17 = Array.isArray(_iterator17), _i17 = 0, _iterator17 = _isArray17 ? _iterator17 : (0, _getIterator3.default)(_iterator17);;) {\n\t      var _ref17;\n\n\t      if (_isArray17) {\n\t        if (_i17 >= _iterator17.length) break;\n\t        _ref17 = _iterator17[_i17++];\n\t      } else {\n\t        _i17 = _iterator17.next();\n\t        if (_i17.done) break;\n\t        _ref17 = _i17.value;\n\t      }\n\n\t      var ref = _ref17;\n\n\t      var binding = ref.scope.getBinding(ref.node.name);\n\t      if (binding) {\n\t        binding.reference(ref);\n\t      } else {\n\t        ref.scope.getProgramParent().addGlobal(ref.node);\n\t      }\n\t    }\n\n\t    for (var _iterator18 = state.constantViolations, _isArray18 = Array.isArray(_iterator18), _i18 = 0, _iterator18 = _isArray18 ? _iterator18 : (0, _getIterator3.default)(_iterator18);;) {\n\t      var _ref18;\n\n\t      if (_isArray18) {\n\t        if (_i18 >= _iterator18.length) break;\n\t        _ref18 = _iterator18[_i18++];\n\t      } else {\n\t        _i18 = _iterator18.next();\n\t        if (_i18.done) break;\n\t        _ref18 = _i18.value;\n\t      }\n\n\t      var _path2 = _ref18;\n\n\t      _path2.scope.registerConstantViolation(_path2);\n\t    }\n\t  };\n\n\t  Scope.prototype.push = function push(opts) {\n\t    var path = this.path;\n\n\t    if (!path.isBlockStatement() && !path.isProgram()) {\n\t      path = this.getBlockParent().path;\n\t    }\n\n\t    if (path.isSwitchStatement()) {\n\t      path = this.getFunctionParent().path;\n\t    }\n\n\t    if (path.isLoop() || path.isCatchClause() || path.isFunction()) {\n\t      t.ensureBlock(path.node);\n\t      path = path.get(\"body\");\n\t    }\n\n\t    var unique = opts.unique;\n\t    var kind = opts.kind || \"var\";\n\t    var blockHoist = opts._blockHoist == null ? 2 : opts._blockHoist;\n\n\t    var dataKey = \"declaration:\" + kind + \":\" + blockHoist;\n\t    var declarPath = !unique && path.getData(dataKey);\n\n\t    if (!declarPath) {\n\t      var declar = t.variableDeclaration(kind, []);\n\t      declar._generated = true;\n\t      declar._blockHoist = blockHoist;\n\n\t      var _path$unshiftContaine = path.unshiftContainer(\"body\", [declar]);\n\n\t      declarPath = _path$unshiftContaine[0];\n\n\t      if (!unique) path.setData(dataKey, declarPath);\n\t    }\n\n\t    var declarator = t.variableDeclarator(opts.id, opts.init);\n\t    declarPath.node.declarations.push(declarator);\n\t    this.registerBinding(kind, declarPath.get(\"declarations\").pop());\n\t  };\n\n\t  Scope.prototype.getProgramParent = function getProgramParent() {\n\t    var scope = this;\n\t    do {\n\t      if (scope.path.isProgram()) {\n\t        return scope;\n\t      }\n\t    } while (scope = scope.parent);\n\t    throw new Error(\"We couldn't find a Function or Program...\");\n\t  };\n\n\t  Scope.prototype.getFunctionParent = function getFunctionParent() {\n\t    var scope = this;\n\t    do {\n\t      if (scope.path.isFunctionParent()) {\n\t        return scope;\n\t      }\n\t    } while (scope = scope.parent);\n\t    throw new Error(\"We couldn't find a Function or Program...\");\n\t  };\n\n\t  Scope.prototype.getBlockParent = function getBlockParent() {\n\t    var scope = this;\n\t    do {\n\t      if (scope.path.isBlockParent()) {\n\t        return scope;\n\t      }\n\t    } while (scope = scope.parent);\n\t    throw new Error(\"We couldn't find a BlockStatement, For, Switch, Function, Loop or Program...\");\n\t  };\n\n\t  Scope.prototype.getAllBindings = function getAllBindings() {\n\t    var ids = (0, _create2.default)(null);\n\n\t    var scope = this;\n\t    do {\n\t      (0, _defaults2.default)(ids, scope.bindings);\n\t      scope = scope.parent;\n\t    } while (scope);\n\n\t    return ids;\n\t  };\n\n\t  Scope.prototype.getAllBindingsOfKind = function getAllBindingsOfKind() {\n\t    var ids = (0, _create2.default)(null);\n\n\t    for (var _iterator19 = arguments, _isArray19 = Array.isArray(_iterator19), _i19 = 0, _iterator19 = _isArray19 ? _iterator19 : (0, _getIterator3.default)(_iterator19);;) {\n\t      var _ref19;\n\n\t      if (_isArray19) {\n\t        if (_i19 >= _iterator19.length) break;\n\t        _ref19 = _iterator19[_i19++];\n\t      } else {\n\t        _i19 = _iterator19.next();\n\t        if (_i19.done) break;\n\t        _ref19 = _i19.value;\n\t      }\n\n\t      var kind = _ref19;\n\n\t      var scope = this;\n\t      do {\n\t        for (var name in scope.bindings) {\n\t          var binding = scope.bindings[name];\n\t          if (binding.kind === kind) ids[name] = binding;\n\t        }\n\t        scope = scope.parent;\n\t      } while (scope);\n\t    }\n\n\t    return ids;\n\t  };\n\n\t  Scope.prototype.bindingIdentifierEquals = function bindingIdentifierEquals(name, node) {\n\t    return this.getBindingIdentifier(name) === node;\n\t  };\n\n\t  Scope.prototype.warnOnFlowBinding = function warnOnFlowBinding(binding) {\n\t    if (_crawlCallsCount === 0 && binding && binding.path.isFlow()) {\n\t      console.warn(\"\\n        You or one of the Babel plugins you are using are using Flow declarations as bindings.\\n        Support for this will be removed in version 7. To find out the caller, grep for this\\n        message and change it to a `console.trace()`.\\n      \");\n\t    }\n\t    return binding;\n\t  };\n\n\t  Scope.prototype.getBinding = function getBinding(name) {\n\t    var scope = this;\n\n\t    do {\n\t      var binding = scope.getOwnBinding(name);\n\t      if (binding) return this.warnOnFlowBinding(binding);\n\t    } while (scope = scope.parent);\n\t  };\n\n\t  Scope.prototype.getOwnBinding = function getOwnBinding(name) {\n\t    return this.warnOnFlowBinding(this.bindings[name]);\n\t  };\n\n\t  Scope.prototype.getBindingIdentifier = function getBindingIdentifier(name) {\n\t    var info = this.getBinding(name);\n\t    return info && info.identifier;\n\t  };\n\n\t  Scope.prototype.getOwnBindingIdentifier = function getOwnBindingIdentifier(name) {\n\t    var binding = this.bindings[name];\n\t    return binding && binding.identifier;\n\t  };\n\n\t  Scope.prototype.hasOwnBinding = function hasOwnBinding(name) {\n\t    return !!this.getOwnBinding(name);\n\t  };\n\n\t  Scope.prototype.hasBinding = function hasBinding(name, noGlobals) {\n\t    if (!name) return false;\n\t    if (this.hasOwnBinding(name)) return true;\n\t    if (this.parentHasBinding(name, noGlobals)) return true;\n\t    if (this.hasUid(name)) return true;\n\t    if (!noGlobals && (0, _includes2.default)(Scope.globals, name)) return true;\n\t    if (!noGlobals && (0, _includes2.default)(Scope.contextVariables, name)) return true;\n\t    return false;\n\t  };\n\n\t  Scope.prototype.parentHasBinding = function parentHasBinding(name, noGlobals) {\n\t    return this.parent && this.parent.hasBinding(name, noGlobals);\n\t  };\n\n\t  Scope.prototype.moveBindingTo = function moveBindingTo(name, scope) {\n\t    var info = this.getBinding(name);\n\t    if (info) {\n\t      info.scope.removeOwnBinding(name);\n\t      info.scope = scope;\n\t      scope.bindings[name] = info;\n\t    }\n\t  };\n\n\t  Scope.prototype.removeOwnBinding = function removeOwnBinding(name) {\n\t    delete this.bindings[name];\n\t  };\n\n\t  Scope.prototype.removeBinding = function removeBinding(name) {\n\t    var info = this.getBinding(name);\n\t    if (info) {\n\t      info.scope.removeOwnBinding(name);\n\t    }\n\n\t    var scope = this;\n\t    do {\n\t      if (scope.uids[name]) {\n\t        scope.uids[name] = false;\n\t      }\n\t    } while (scope = scope.parent);\n\t  };\n\n\t  return Scope;\n\t}();\n\n\tScope.globals = (0, _keys2.default)(_globals2.default.builtin);\n\tScope.contextVariables = [\"arguments\", \"undefined\", \"Infinity\", \"NaN\"];\n\texports.default = Scope;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 135 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.NOT_LOCAL_BINDING = exports.BLOCK_SCOPED_SYMBOL = exports.INHERIT_KEYS = exports.UNARY_OPERATORS = exports.STRING_UNARY_OPERATORS = exports.NUMBER_UNARY_OPERATORS = exports.BOOLEAN_UNARY_OPERATORS = exports.BINARY_OPERATORS = exports.NUMBER_BINARY_OPERATORS = exports.BOOLEAN_BINARY_OPERATORS = exports.COMPARISON_BINARY_OPERATORS = exports.EQUALITY_BINARY_OPERATORS = exports.BOOLEAN_NUMBER_BINARY_OPERATORS = exports.UPDATE_OPERATORS = exports.LOGICAL_OPERATORS = exports.COMMENT_KEYS = exports.FOR_INIT_KEYS = exports.FLATTENABLE_KEYS = exports.STATEMENT_OR_BLOCK_KEYS = undefined;\n\n\tvar _for = __webpack_require__(362);\n\n\tvar _for2 = _interopRequireDefault(_for);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar STATEMENT_OR_BLOCK_KEYS = exports.STATEMENT_OR_BLOCK_KEYS = [\"consequent\", \"body\", \"alternate\"];\n\tvar FLATTENABLE_KEYS = exports.FLATTENABLE_KEYS = [\"body\", \"expressions\"];\n\tvar FOR_INIT_KEYS = exports.FOR_INIT_KEYS = [\"left\", \"init\"];\n\tvar COMMENT_KEYS = exports.COMMENT_KEYS = [\"leadingComments\", \"trailingComments\", \"innerComments\"];\n\n\tvar LOGICAL_OPERATORS = exports.LOGICAL_OPERATORS = [\"||\", \"&&\"];\n\tvar UPDATE_OPERATORS = exports.UPDATE_OPERATORS = [\"++\", \"--\"];\n\n\tvar BOOLEAN_NUMBER_BINARY_OPERATORS = exports.BOOLEAN_NUMBER_BINARY_OPERATORS = [\">\", \"<\", \">=\", \"<=\"];\n\tvar EQUALITY_BINARY_OPERATORS = exports.EQUALITY_BINARY_OPERATORS = [\"==\", \"===\", \"!=\", \"!==\"];\n\tvar COMPARISON_BINARY_OPERATORS = exports.COMPARISON_BINARY_OPERATORS = [].concat(EQUALITY_BINARY_OPERATORS, [\"in\", \"instanceof\"]);\n\tvar BOOLEAN_BINARY_OPERATORS = exports.BOOLEAN_BINARY_OPERATORS = [].concat(COMPARISON_BINARY_OPERATORS, BOOLEAN_NUMBER_BINARY_OPERATORS);\n\tvar NUMBER_BINARY_OPERATORS = exports.NUMBER_BINARY_OPERATORS = [\"-\", \"/\", \"%\", \"*\", \"**\", \"&\", \"|\", \">>\", \">>>\", \"<<\", \"^\"];\n\tvar BINARY_OPERATORS = exports.BINARY_OPERATORS = [\"+\"].concat(NUMBER_BINARY_OPERATORS, BOOLEAN_BINARY_OPERATORS);\n\n\tvar BOOLEAN_UNARY_OPERATORS = exports.BOOLEAN_UNARY_OPERATORS = [\"delete\", \"!\"];\n\tvar NUMBER_UNARY_OPERATORS = exports.NUMBER_UNARY_OPERATORS = [\"+\", \"-\", \"++\", \"--\", \"~\"];\n\tvar STRING_UNARY_OPERATORS = exports.STRING_UNARY_OPERATORS = [\"typeof\"];\n\tvar UNARY_OPERATORS = exports.UNARY_OPERATORS = [\"void\"].concat(BOOLEAN_UNARY_OPERATORS, NUMBER_UNARY_OPERATORS, STRING_UNARY_OPERATORS);\n\n\tvar INHERIT_KEYS = exports.INHERIT_KEYS = {\n\t  optional: [\"typeAnnotation\", \"typeParameters\", \"returnType\"],\n\t  force: [\"start\", \"loc\", \"end\"]\n\t};\n\n\tvar BLOCK_SCOPED_SYMBOL = exports.BLOCK_SCOPED_SYMBOL = (0, _for2.default)(\"var used to be block scoped\");\n\tvar NOT_LOCAL_BINDING = exports.NOT_LOCAL_BINDING = (0, _for2.default)(\"should not be considered a local binding\");\n\n/***/ }),\n/* 136 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function (it, Constructor, name, forbiddenField) {\n\t  if (!(it instanceof Constructor) || forbiddenField !== undefined && forbiddenField in it) {\n\t    throw TypeError(name + ': incorrect invocation!');\n\t  }return it;\n\t};\n\n/***/ }),\n/* 137 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 0 -> Array#forEach\n\t// 1 -> Array#map\n\t// 2 -> Array#filter\n\t// 3 -> Array#some\n\t// 4 -> Array#every\n\t// 5 -> Array#find\n\t// 6 -> Array#findIndex\n\tvar ctx = __webpack_require__(43);\n\tvar IObject = __webpack_require__(142);\n\tvar toObject = __webpack_require__(94);\n\tvar toLength = __webpack_require__(153);\n\tvar asc = __webpack_require__(422);\n\tmodule.exports = function (TYPE, $create) {\n\t  var IS_MAP = TYPE == 1;\n\t  var IS_FILTER = TYPE == 2;\n\t  var IS_SOME = TYPE == 3;\n\t  var IS_EVERY = TYPE == 4;\n\t  var IS_FIND_INDEX = TYPE == 6;\n\t  var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n\t  var create = $create || asc;\n\t  return function ($this, callbackfn, that) {\n\t    var O = toObject($this);\n\t    var self = IObject(O);\n\t    var f = ctx(callbackfn, that, 3);\n\t    var length = toLength(self.length);\n\t    var index = 0;\n\t    var result = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n\t    var val, res;\n\t    for (; length > index; index++) {\n\t      if (NO_HOLES || index in self) {\n\t        val = self[index];\n\t        res = f(val, index, O);\n\t        if (TYPE) {\n\t          if (IS_MAP) result[index] = res; // map\n\t          else if (res) switch (TYPE) {\n\t              case 3:\n\t                return true; // some\n\t              case 5:\n\t                return val; // find\n\t              case 6:\n\t                return index; // findIndex\n\t              case 2:\n\t                result.push(val); // filter\n\t            } else if (IS_EVERY) return false; // every\n\t        }\n\t      }\n\t    }return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;\n\t  };\n\t};\n\n/***/ }),\n/* 138 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tvar toString = {}.toString;\n\n\tmodule.exports = function (it) {\n\t  return toString.call(it).slice(8, -1);\n\t};\n\n/***/ }),\n/* 139 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar global = __webpack_require__(15);\n\tvar $export = __webpack_require__(12);\n\tvar meta = __webpack_require__(57);\n\tvar fails = __webpack_require__(27);\n\tvar hide = __webpack_require__(29);\n\tvar redefineAll = __webpack_require__(146);\n\tvar forOf = __webpack_require__(55);\n\tvar anInstance = __webpack_require__(136);\n\tvar isObject = __webpack_require__(16);\n\tvar setToStringTag = __webpack_require__(93);\n\tvar dP = __webpack_require__(23).f;\n\tvar each = __webpack_require__(137)(0);\n\tvar DESCRIPTORS = __webpack_require__(22);\n\n\tmodule.exports = function (NAME, wrapper, methods, common, IS_MAP, IS_WEAK) {\n\t  var Base = global[NAME];\n\t  var C = Base;\n\t  var ADDER = IS_MAP ? 'set' : 'add';\n\t  var proto = C && C.prototype;\n\t  var O = {};\n\t  if (!DESCRIPTORS || typeof C != 'function' || !(IS_WEAK || proto.forEach && !fails(function () {\n\t    new C().entries().next();\n\t  }))) {\n\t    // create collection constructor\n\t    C = common.getConstructor(wrapper, NAME, IS_MAP, ADDER);\n\t    redefineAll(C.prototype, methods);\n\t    meta.NEED = true;\n\t  } else {\n\t    C = wrapper(function (target, iterable) {\n\t      anInstance(target, C, NAME, '_c');\n\t      target._c = new Base();\n\t      if (iterable != undefined) forOf(iterable, IS_MAP, target[ADDER], target);\n\t    });\n\t    each('add,clear,delete,forEach,get,has,set,keys,values,entries,toJSON'.split(','), function (KEY) {\n\t      var IS_ADDER = KEY == 'add' || KEY == 'set';\n\t      if (KEY in proto && !(IS_WEAK && KEY == 'clear')) hide(C.prototype, KEY, function (a, b) {\n\t        anInstance(this, C, KEY);\n\t        if (!IS_ADDER && IS_WEAK && !isObject(a)) return KEY == 'get' ? undefined : false;\n\t        var result = this._c[KEY](a === 0 ? 0 : a, b);\n\t        return IS_ADDER ? this : result;\n\t      });\n\t    });\n\t    IS_WEAK || dP(C.prototype, 'size', {\n\t      get: function get() {\n\t        return this._c.size;\n\t      }\n\t    });\n\t  }\n\n\t  setToStringTag(C, NAME);\n\n\t  O[NAME] = C;\n\t  $export($export.G + $export.W + $export.F, O);\n\n\t  if (!IS_WEAK) common.setStrong(C, NAME, IS_MAP);\n\n\t  return C;\n\t};\n\n/***/ }),\n/* 140 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t// 7.2.1 RequireObjectCoercible(argument)\n\tmodule.exports = function (it) {\n\t  if (it == undefined) throw TypeError(\"Can't call method on  \" + it);\n\t  return it;\n\t};\n\n/***/ }),\n/* 141 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t// IE 8- don't enum bug keys\n\tmodule.exports = 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'.split(',');\n\n/***/ }),\n/* 142 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// fallback for non-array-like ES3 and non-enumerable old V8 strings\n\tvar cof = __webpack_require__(138);\n\t// eslint-disable-next-line no-prototype-builtins\n\tmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n\t  return cof(it) == 'String' ? it.split('') : Object(it);\n\t};\n\n/***/ }),\n/* 143 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar LIBRARY = __webpack_require__(144);\n\tvar $export = __webpack_require__(12);\n\tvar redefine = __webpack_require__(147);\n\tvar hide = __webpack_require__(29);\n\tvar has = __webpack_require__(28);\n\tvar Iterators = __webpack_require__(56);\n\tvar $iterCreate = __webpack_require__(429);\n\tvar setToStringTag = __webpack_require__(93);\n\tvar getPrototypeOf = __webpack_require__(433);\n\tvar ITERATOR = __webpack_require__(13)('iterator');\n\tvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\n\tvar FF_ITERATOR = '@@iterator';\n\tvar KEYS = 'keys';\n\tvar VALUES = 'values';\n\n\tvar returnThis = function returnThis() {\n\t  return this;\n\t};\n\n\tmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n\t  $iterCreate(Constructor, NAME, next);\n\t  var getMethod = function getMethod(kind) {\n\t    if (!BUGGY && kind in proto) return proto[kind];\n\t    switch (kind) {\n\t      case KEYS:\n\t        return function keys() {\n\t          return new Constructor(this, kind);\n\t        };\n\t      case VALUES:\n\t        return function values() {\n\t          return new Constructor(this, kind);\n\t        };\n\t    }return function entries() {\n\t      return new Constructor(this, kind);\n\t    };\n\t  };\n\t  var TAG = NAME + ' Iterator';\n\t  var DEF_VALUES = DEFAULT == VALUES;\n\t  var VALUES_BUG = false;\n\t  var proto = Base.prototype;\n\t  var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n\t  var $default = $native || getMethod(DEFAULT);\n\t  var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n\t  var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n\t  var methods, key, IteratorPrototype;\n\t  // Fix native\n\t  if ($anyNative) {\n\t    IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n\t    if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n\t      // Set @@toStringTag to native iterators\n\t      setToStringTag(IteratorPrototype, TAG, true);\n\t      // fix for some old engines\n\t      if (!LIBRARY && !has(IteratorPrototype, ITERATOR)) hide(IteratorPrototype, ITERATOR, returnThis);\n\t    }\n\t  }\n\t  // fix Array#{values, @@iterator}.name in V8 / FF\n\t  if (DEF_VALUES && $native && $native.name !== VALUES) {\n\t    VALUES_BUG = true;\n\t    $default = function values() {\n\t      return $native.call(this);\n\t    };\n\t  }\n\t  // Define iterator\n\t  if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n\t    hide(proto, ITERATOR, $default);\n\t  }\n\t  // Plug for library\n\t  Iterators[NAME] = $default;\n\t  Iterators[TAG] = returnThis;\n\t  if (DEFAULT) {\n\t    methods = {\n\t      values: DEF_VALUES ? $default : getMethod(VALUES),\n\t      keys: IS_SET ? $default : getMethod(KEYS),\n\t      entries: $entries\n\t    };\n\t    if (FORCED) for (key in methods) {\n\t      if (!(key in proto)) redefine(proto, key, methods[key]);\n\t    } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n\t  }\n\t  return methods;\n\t};\n\n/***/ }),\n/* 144 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = true;\n\n/***/ }),\n/* 145 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.f = Object.getOwnPropertySymbols;\n\n/***/ }),\n/* 146 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar hide = __webpack_require__(29);\n\tmodule.exports = function (target, src, safe) {\n\t  for (var key in src) {\n\t    if (safe && target[key]) target[key] = src[key];else hide(target, key, src[key]);\n\t  }return target;\n\t};\n\n/***/ }),\n/* 147 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tmodule.exports = __webpack_require__(29);\n\n/***/ }),\n/* 148 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// https://tc39.github.io/proposal-setmap-offrom/\n\n\tvar $export = __webpack_require__(12);\n\tvar aFunction = __webpack_require__(227);\n\tvar ctx = __webpack_require__(43);\n\tvar forOf = __webpack_require__(55);\n\n\tmodule.exports = function (COLLECTION) {\n\t  $export($export.S, COLLECTION, { from: function from(source /* , mapFn, thisArg */) {\n\t      var mapFn = arguments[1];\n\t      var mapping, A, n, cb;\n\t      aFunction(this);\n\t      mapping = mapFn !== undefined;\n\t      if (mapping) aFunction(mapFn);\n\t      if (source == undefined) return new this();\n\t      A = [];\n\t      if (mapping) {\n\t        n = 0;\n\t        cb = ctx(mapFn, arguments[2], 2);\n\t        forOf(source, false, function (nextItem) {\n\t          A.push(cb(nextItem, n++));\n\t        });\n\t      } else {\n\t        forOf(source, false, A.push, A);\n\t      }\n\t      return new this(A);\n\t    } });\n\t};\n\n/***/ }),\n/* 149 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// https://tc39.github.io/proposal-setmap-offrom/\n\n\tvar $export = __webpack_require__(12);\n\n\tmodule.exports = function (COLLECTION) {\n\t  $export($export.S, COLLECTION, { of: function of() {\n\t      var length = arguments.length;\n\t      var A = Array(length);\n\t      while (length--) {\n\t        A[length] = arguments[length];\n\t      }return new this(A);\n\t    } });\n\t};\n\n/***/ }),\n/* 150 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar shared = __webpack_require__(151)('keys');\n\tvar uid = __webpack_require__(95);\n\tmodule.exports = function (key) {\n\t  return shared[key] || (shared[key] = uid(key));\n\t};\n\n/***/ }),\n/* 151 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar global = __webpack_require__(15);\n\tvar SHARED = '__core-js_shared__';\n\tvar store = global[SHARED] || (global[SHARED] = {});\n\tmodule.exports = function (key) {\n\t  return store[key] || (store[key] = {});\n\t};\n\n/***/ }),\n/* 152 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t// 7.1.4 ToInteger\n\tvar ceil = Math.ceil;\n\tvar floor = Math.floor;\n\tmodule.exports = function (it) {\n\t  return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n\t};\n\n/***/ }),\n/* 153 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 7.1.15 ToLength\n\tvar toInteger = __webpack_require__(152);\n\tvar min = Math.min;\n\tmodule.exports = function (it) {\n\t  return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n\t};\n\n/***/ }),\n/* 154 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 7.1.1 ToPrimitive(input [, PreferredType])\n\tvar isObject = __webpack_require__(16);\n\t// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n\t// and the second argument - flag - preferred type is a string\n\tmodule.exports = function (it, S) {\n\t  if (!isObject(it)) return it;\n\t  var fn, val;\n\t  if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n\t  if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n\t  if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n\t  throw TypeError(\"Can't convert object to primitive value\");\n\t};\n\n/***/ }),\n/* 155 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar global = __webpack_require__(15);\n\tvar core = __webpack_require__(5);\n\tvar LIBRARY = __webpack_require__(144);\n\tvar wksExt = __webpack_require__(156);\n\tvar defineProperty = __webpack_require__(23).f;\n\tmodule.exports = function (name) {\n\t  var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {});\n\t  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) });\n\t};\n\n/***/ }),\n/* 156 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\texports.f = __webpack_require__(13);\n\n/***/ }),\n/* 157 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar $at = __webpack_require__(437)(true);\n\n\t// 21.1.3.27 String.prototype[@@iterator]()\n\t__webpack_require__(143)(String, 'String', function (iterated) {\n\t  this._t = String(iterated); // target\n\t  this._i = 0; // next index\n\t  // 21.1.5.2.1 %StringIteratorPrototype%.next()\n\t}, function () {\n\t  var O = this._t;\n\t  var index = this._i;\n\t  var point;\n\t  if (index >= O.length) return { value: undefined, done: true };\n\t  point = $at(O, index);\n\t  this._i += point.length;\n\t  return { value: point, done: false };\n\t});\n\n/***/ }),\n/* 158 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// ECMAScript 6 symbols shim\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar global = __webpack_require__(15);\n\tvar has = __webpack_require__(28);\n\tvar DESCRIPTORS = __webpack_require__(22);\n\tvar $export = __webpack_require__(12);\n\tvar redefine = __webpack_require__(147);\n\tvar META = __webpack_require__(57).KEY;\n\tvar $fails = __webpack_require__(27);\n\tvar shared = __webpack_require__(151);\n\tvar setToStringTag = __webpack_require__(93);\n\tvar uid = __webpack_require__(95);\n\tvar wks = __webpack_require__(13);\n\tvar wksExt = __webpack_require__(156);\n\tvar wksDefine = __webpack_require__(155);\n\tvar keyOf = __webpack_require__(430);\n\tvar enumKeys = __webpack_require__(425);\n\tvar isArray = __webpack_require__(232);\n\tvar anObject = __webpack_require__(21);\n\tvar toIObject = __webpack_require__(37);\n\tvar toPrimitive = __webpack_require__(154);\n\tvar createDesc = __webpack_require__(92);\n\tvar _create = __webpack_require__(90);\n\tvar gOPNExt = __webpack_require__(432);\n\tvar $GOPD = __webpack_require__(235);\n\tvar $DP = __webpack_require__(23);\n\tvar $keys = __webpack_require__(44);\n\tvar gOPD = $GOPD.f;\n\tvar dP = $DP.f;\n\tvar gOPN = gOPNExt.f;\n\tvar $Symbol = global.Symbol;\n\tvar $JSON = global.JSON;\n\tvar _stringify = $JSON && $JSON.stringify;\n\tvar PROTOTYPE = 'prototype';\n\tvar HIDDEN = wks('_hidden');\n\tvar TO_PRIMITIVE = wks('toPrimitive');\n\tvar isEnum = {}.propertyIsEnumerable;\n\tvar SymbolRegistry = shared('symbol-registry');\n\tvar AllSymbols = shared('symbols');\n\tvar OPSymbols = shared('op-symbols');\n\tvar ObjectProto = Object[PROTOTYPE];\n\tvar USE_NATIVE = typeof $Symbol == 'function';\n\tvar QObject = global.QObject;\n\t// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173\n\tvar setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;\n\n\t// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687\n\tvar setSymbolDesc = DESCRIPTORS && $fails(function () {\n\t  return _create(dP({}, 'a', {\n\t    get: function get() {\n\t      return dP(this, 'a', { value: 7 }).a;\n\t    }\n\t  })).a != 7;\n\t}) ? function (it, key, D) {\n\t  var protoDesc = gOPD(ObjectProto, key);\n\t  if (protoDesc) delete ObjectProto[key];\n\t  dP(it, key, D);\n\t  if (protoDesc && it !== ObjectProto) dP(ObjectProto, key, protoDesc);\n\t} : dP;\n\n\tvar wrap = function wrap(tag) {\n\t  var sym = AllSymbols[tag] = _create($Symbol[PROTOTYPE]);\n\t  sym._k = tag;\n\t  return sym;\n\t};\n\n\tvar isSymbol = USE_NATIVE && _typeof($Symbol.iterator) == 'symbol' ? function (it) {\n\t  return (typeof it === 'undefined' ? 'undefined' : _typeof(it)) == 'symbol';\n\t} : function (it) {\n\t  return it instanceof $Symbol;\n\t};\n\n\tvar $defineProperty = function defineProperty(it, key, D) {\n\t  if (it === ObjectProto) $defineProperty(OPSymbols, key, D);\n\t  anObject(it);\n\t  key = toPrimitive(key, true);\n\t  anObject(D);\n\t  if (has(AllSymbols, key)) {\n\t    if (!D.enumerable) {\n\t      if (!has(it, HIDDEN)) dP(it, HIDDEN, createDesc(1, {}));\n\t      it[HIDDEN][key] = true;\n\t    } else {\n\t      if (has(it, HIDDEN) && it[HIDDEN][key]) it[HIDDEN][key] = false;\n\t      D = _create(D, { enumerable: createDesc(0, false) });\n\t    }return setSymbolDesc(it, key, D);\n\t  }return dP(it, key, D);\n\t};\n\tvar $defineProperties = function defineProperties(it, P) {\n\t  anObject(it);\n\t  var keys = enumKeys(P = toIObject(P));\n\t  var i = 0;\n\t  var l = keys.length;\n\t  var key;\n\t  while (l > i) {\n\t    $defineProperty(it, key = keys[i++], P[key]);\n\t  }return it;\n\t};\n\tvar $create = function create(it, P) {\n\t  return P === undefined ? _create(it) : $defineProperties(_create(it), P);\n\t};\n\tvar $propertyIsEnumerable = function propertyIsEnumerable(key) {\n\t  var E = isEnum.call(this, key = toPrimitive(key, true));\n\t  if (this === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return false;\n\t  return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key] ? E : true;\n\t};\n\tvar $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(it, key) {\n\t  it = toIObject(it);\n\t  key = toPrimitive(key, true);\n\t  if (it === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return;\n\t  var D = gOPD(it, key);\n\t  if (D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) D.enumerable = true;\n\t  return D;\n\t};\n\tvar $getOwnPropertyNames = function getOwnPropertyNames(it) {\n\t  var names = gOPN(toIObject(it));\n\t  var result = [];\n\t  var i = 0;\n\t  var key;\n\t  while (names.length > i) {\n\t    if (!has(AllSymbols, key = names[i++]) && key != HIDDEN && key != META) result.push(key);\n\t  }return result;\n\t};\n\tvar $getOwnPropertySymbols = function getOwnPropertySymbols(it) {\n\t  var IS_OP = it === ObjectProto;\n\t  var names = gOPN(IS_OP ? OPSymbols : toIObject(it));\n\t  var result = [];\n\t  var i = 0;\n\t  var key;\n\t  while (names.length > i) {\n\t    if (has(AllSymbols, key = names[i++]) && (IS_OP ? has(ObjectProto, key) : true)) result.push(AllSymbols[key]);\n\t  }return result;\n\t};\n\n\t// 19.4.1.1 Symbol([description])\n\tif (!USE_NATIVE) {\n\t  $Symbol = function _Symbol() {\n\t    if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor!');\n\t    var tag = uid(arguments.length > 0 ? arguments[0] : undefined);\n\t    var $set = function $set(value) {\n\t      if (this === ObjectProto) $set.call(OPSymbols, value);\n\t      if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;\n\t      setSymbolDesc(this, tag, createDesc(1, value));\n\t    };\n\t    if (DESCRIPTORS && setter) setSymbolDesc(ObjectProto, tag, { configurable: true, set: $set });\n\t    return wrap(tag);\n\t  };\n\t  redefine($Symbol[PROTOTYPE], 'toString', function toString() {\n\t    return this._k;\n\t  });\n\n\t  $GOPD.f = $getOwnPropertyDescriptor;\n\t  $DP.f = $defineProperty;\n\t  __webpack_require__(236).f = gOPNExt.f = $getOwnPropertyNames;\n\t  __webpack_require__(91).f = $propertyIsEnumerable;\n\t  __webpack_require__(145).f = $getOwnPropertySymbols;\n\n\t  if (DESCRIPTORS && !__webpack_require__(144)) {\n\t    redefine(ObjectProto, 'propertyIsEnumerable', $propertyIsEnumerable, true);\n\t  }\n\n\t  wksExt.f = function (name) {\n\t    return wrap(wks(name));\n\t  };\n\t}\n\n\t$export($export.G + $export.W + $export.F * !USE_NATIVE, { Symbol: $Symbol });\n\n\tfor (var es6Symbols =\n\t// 19.4.2.2, 19.4.2.3, 19.4.2.4, 19.4.2.6, 19.4.2.8, 19.4.2.9, 19.4.2.10, 19.4.2.11, 19.4.2.12, 19.4.2.13, 19.4.2.14\n\t'hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'.split(','), j = 0; es6Symbols.length > j;) {\n\t  wks(es6Symbols[j++]);\n\t}for (var wellKnownSymbols = $keys(wks.store), k = 0; wellKnownSymbols.length > k;) {\n\t  wksDefine(wellKnownSymbols[k++]);\n\t}$export($export.S + $export.F * !USE_NATIVE, 'Symbol', {\n\t  // 19.4.2.1 Symbol.for(key)\n\t  'for': function _for(key) {\n\t    return has(SymbolRegistry, key += '') ? SymbolRegistry[key] : SymbolRegistry[key] = $Symbol(key);\n\t  },\n\t  // 19.4.2.5 Symbol.keyFor(sym)\n\t  keyFor: function keyFor(key) {\n\t    if (isSymbol(key)) return keyOf(SymbolRegistry, key);\n\t    throw TypeError(key + ' is not a symbol!');\n\t  },\n\t  useSetter: function useSetter() {\n\t    setter = true;\n\t  },\n\t  useSimple: function useSimple() {\n\t    setter = false;\n\t  }\n\t});\n\n\t$export($export.S + $export.F * !USE_NATIVE, 'Object', {\n\t  // 19.1.2.2 Object.create(O [, Properties])\n\t  create: $create,\n\t  // 19.1.2.4 Object.defineProperty(O, P, Attributes)\n\t  defineProperty: $defineProperty,\n\t  // 19.1.2.3 Object.defineProperties(O, Properties)\n\t  defineProperties: $defineProperties,\n\t  // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\n\t  getOwnPropertyDescriptor: $getOwnPropertyDescriptor,\n\t  // 19.1.2.7 Object.getOwnPropertyNames(O)\n\t  getOwnPropertyNames: $getOwnPropertyNames,\n\t  // 19.1.2.8 Object.getOwnPropertySymbols(O)\n\t  getOwnPropertySymbols: $getOwnPropertySymbols\n\t});\n\n\t// 24.3.2 JSON.stringify(value [, replacer [, space]])\n\t$JSON && $export($export.S + $export.F * (!USE_NATIVE || $fails(function () {\n\t  var S = $Symbol();\n\t  // MS Edge converts symbol values to JSON as {}\n\t  // WebKit converts symbol values to JSON as null\n\t  // V8 throws on boxed symbols\n\t  return _stringify([S]) != '[null]' || _stringify({ a: S }) != '{}' || _stringify(Object(S)) != '{}';\n\t})), 'JSON', {\n\t  stringify: function stringify(it) {\n\t    if (it === undefined || isSymbol(it)) return; // IE8 returns string on undefined\n\t    var args = [it];\n\t    var i = 1;\n\t    var replacer, $replacer;\n\t    while (arguments.length > i) {\n\t      args.push(arguments[i++]);\n\t    }replacer = args[1];\n\t    if (typeof replacer == 'function') $replacer = replacer;\n\t    if ($replacer || !isArray(replacer)) replacer = function replacer(key, value) {\n\t      if ($replacer) value = $replacer.call(this, key, value);\n\t      if (!isSymbol(value)) return value;\n\t    };\n\t    args[1] = replacer;\n\t    return _stringify.apply($JSON, args);\n\t  }\n\t});\n\n\t// 19.4.3.4 Symbol.prototype[@@toPrimitive](hint)\n\t$Symbol[PROTOTYPE][TO_PRIMITIVE] || __webpack_require__(29)($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);\n\t// 19.4.3.5 Symbol.prototype[@@toStringTag]\n\tsetToStringTag($Symbol, 'Symbol');\n\t// 20.2.1.9 Math[@@toStringTag]\n\tsetToStringTag(Math, 'Math', true);\n\t// 24.3.3 JSON[@@toStringTag]\n\tsetToStringTag(global.JSON, 'JSON', true);\n\n/***/ }),\n/* 159 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38),\n\t    root = __webpack_require__(17);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar Map = getNative(root, 'Map');\n\n\tmodule.exports = Map;\n\n/***/ }),\n/* 160 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar mapCacheClear = __webpack_require__(551),\n\t    mapCacheDelete = __webpack_require__(552),\n\t    mapCacheGet = __webpack_require__(553),\n\t    mapCacheHas = __webpack_require__(554),\n\t    mapCacheSet = __webpack_require__(555);\n\n\t/**\n\t * Creates a map cache object to store key-value pairs.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction MapCache(entries) {\n\t    var index = -1,\n\t        length = entries == null ? 0 : entries.length;\n\n\t    this.clear();\n\t    while (++index < length) {\n\t        var entry = entries[index];\n\t        this.set(entry[0], entry[1]);\n\t    }\n\t}\n\n\t// Add methods to `MapCache`.\n\tMapCache.prototype.clear = mapCacheClear;\n\tMapCache.prototype['delete'] = mapCacheDelete;\n\tMapCache.prototype.get = mapCacheGet;\n\tMapCache.prototype.has = mapCacheHas;\n\tMapCache.prototype.set = mapCacheSet;\n\n\tmodule.exports = MapCache;\n\n/***/ }),\n/* 161 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Appends the elements of `values` to `array`.\n\t *\n\t * @private\n\t * @param {Array} array The array to modify.\n\t * @param {Array} values The values to append.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction arrayPush(array, values) {\n\t  var index = -1,\n\t      length = values.length,\n\t      offset = array.length;\n\n\t  while (++index < length) {\n\t    array[offset + index] = values[index];\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = arrayPush;\n\n/***/ }),\n/* 162 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseAssignValue = __webpack_require__(163),\n\t    eq = __webpack_require__(46);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Assigns `value` to `key` of `object` if the existing value is not equivalent\n\t * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * for equality comparisons.\n\t *\n\t * @private\n\t * @param {Object} object The object to modify.\n\t * @param {string} key The key of the property to assign.\n\t * @param {*} value The value to assign.\n\t */\n\tfunction assignValue(object, key, value) {\n\t  var objValue = object[key];\n\t  if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || value === undefined && !(key in object)) {\n\t    baseAssignValue(object, key, value);\n\t  }\n\t}\n\n\tmodule.exports = assignValue;\n\n/***/ }),\n/* 163 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar defineProperty = __webpack_require__(259);\n\n\t/**\n\t * The base implementation of `assignValue` and `assignMergeValue` without\n\t * value checks.\n\t *\n\t * @private\n\t * @param {Object} object The object to modify.\n\t * @param {string} key The key of the property to assign.\n\t * @param {*} value The value to assign.\n\t */\n\tfunction baseAssignValue(object, key, value) {\n\t  if (key == '__proto__' && defineProperty) {\n\t    defineProperty(object, key, {\n\t      'configurable': true,\n\t      'enumerable': true,\n\t      'value': value,\n\t      'writable': true\n\t    });\n\t  } else {\n\t    object[key] = value;\n\t  }\n\t}\n\n\tmodule.exports = baseAssignValue;\n\n/***/ }),\n/* 164 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Stack = __webpack_require__(99),\n\t    arrayEach = __webpack_require__(478),\n\t    assignValue = __webpack_require__(162),\n\t    baseAssign = __webpack_require__(483),\n\t    baseAssignIn = __webpack_require__(484),\n\t    cloneBuffer = __webpack_require__(256),\n\t    copyArray = __webpack_require__(168),\n\t    copySymbols = __webpack_require__(523),\n\t    copySymbolsIn = __webpack_require__(524),\n\t    getAllKeys = __webpack_require__(262),\n\t    getAllKeysIn = __webpack_require__(532),\n\t    getTag = __webpack_require__(264),\n\t    initCloneArray = __webpack_require__(541),\n\t    initCloneByTag = __webpack_require__(542),\n\t    initCloneObject = __webpack_require__(266),\n\t    isArray = __webpack_require__(6),\n\t    isBuffer = __webpack_require__(113),\n\t    isObject = __webpack_require__(18),\n\t    keys = __webpack_require__(32);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1,\n\t    CLONE_FLAT_FLAG = 2,\n\t    CLONE_SYMBOLS_FLAG = 4;\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]',\n\t    arrayTag = '[object Array]',\n\t    boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    errorTag = '[object Error]',\n\t    funcTag = '[object Function]',\n\t    genTag = '[object GeneratorFunction]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    objectTag = '[object Object]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    symbolTag = '[object Symbol]',\n\t    weakMapTag = '[object WeakMap]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]',\n\t    float32Tag = '[object Float32Array]',\n\t    float64Tag = '[object Float64Array]',\n\t    int8Tag = '[object Int8Array]',\n\t    int16Tag = '[object Int16Array]',\n\t    int32Tag = '[object Int32Array]',\n\t    uint8Tag = '[object Uint8Array]',\n\t    uint8ClampedTag = '[object Uint8ClampedArray]',\n\t    uint16Tag = '[object Uint16Array]',\n\t    uint32Tag = '[object Uint32Array]';\n\n\t/** Used to identify `toStringTag` values supported by `_.clone`. */\n\tvar cloneableTags = {};\n\tcloneableTags[argsTag] = cloneableTags[arrayTag] = cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = cloneableTags[boolTag] = cloneableTags[dateTag] = cloneableTags[float32Tag] = cloneableTags[float64Tag] = cloneableTags[int8Tag] = cloneableTags[int16Tag] = cloneableTags[int32Tag] = cloneableTags[mapTag] = cloneableTags[numberTag] = cloneableTags[objectTag] = cloneableTags[regexpTag] = cloneableTags[setTag] = cloneableTags[stringTag] = cloneableTags[symbolTag] = cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;\n\tcloneableTags[errorTag] = cloneableTags[funcTag] = cloneableTags[weakMapTag] = false;\n\n\t/**\n\t * The base implementation of `_.clone` and `_.cloneDeep` which tracks\n\t * traversed objects.\n\t *\n\t * @private\n\t * @param {*} value The value to clone.\n\t * @param {boolean} bitmask The bitmask flags.\n\t *  1 - Deep clone\n\t *  2 - Flatten inherited properties\n\t *  4 - Clone symbols\n\t * @param {Function} [customizer] The function to customize cloning.\n\t * @param {string} [key] The key of `value`.\n\t * @param {Object} [object] The parent object of `value`.\n\t * @param {Object} [stack] Tracks traversed objects and their clone counterparts.\n\t * @returns {*} Returns the cloned value.\n\t */\n\tfunction baseClone(value, bitmask, customizer, key, object, stack) {\n\t  var result,\n\t      isDeep = bitmask & CLONE_DEEP_FLAG,\n\t      isFlat = bitmask & CLONE_FLAT_FLAG,\n\t      isFull = bitmask & CLONE_SYMBOLS_FLAG;\n\n\t  if (customizer) {\n\t    result = object ? customizer(value, key, object, stack) : customizer(value);\n\t  }\n\t  if (result !== undefined) {\n\t    return result;\n\t  }\n\t  if (!isObject(value)) {\n\t    return value;\n\t  }\n\t  var isArr = isArray(value);\n\t  if (isArr) {\n\t    result = initCloneArray(value);\n\t    if (!isDeep) {\n\t      return copyArray(value, result);\n\t    }\n\t  } else {\n\t    var tag = getTag(value),\n\t        isFunc = tag == funcTag || tag == genTag;\n\n\t    if (isBuffer(value)) {\n\t      return cloneBuffer(value, isDeep);\n\t    }\n\t    if (tag == objectTag || tag == argsTag || isFunc && !object) {\n\t      result = isFlat || isFunc ? {} : initCloneObject(value);\n\t      if (!isDeep) {\n\t        return isFlat ? copySymbolsIn(value, baseAssignIn(result, value)) : copySymbols(value, baseAssign(result, value));\n\t      }\n\t    } else {\n\t      if (!cloneableTags[tag]) {\n\t        return object ? value : {};\n\t      }\n\t      result = initCloneByTag(value, tag, baseClone, isDeep);\n\t    }\n\t  }\n\t  // Check for circular references and return its corresponding clone.\n\t  stack || (stack = new Stack());\n\t  var stacked = stack.get(value);\n\t  if (stacked) {\n\t    return stacked;\n\t  }\n\t  stack.set(value, result);\n\n\t  var keysFunc = isFull ? isFlat ? getAllKeysIn : getAllKeys : isFlat ? keysIn : keys;\n\n\t  var props = isArr ? undefined : keysFunc(value);\n\t  arrayEach(props || value, function (subValue, key) {\n\t    if (props) {\n\t      key = subValue;\n\t      subValue = value[key];\n\t    }\n\t    // Recursively populate clone (susceptible to call stack limits).\n\t    assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack));\n\t  });\n\t  return result;\n\t}\n\n\tmodule.exports = baseClone;\n\n/***/ }),\n/* 165 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.findIndex` and `_.findLastIndex` without\n\t * support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {Function} predicate The function invoked per iteration.\n\t * @param {number} fromIndex The index to search from.\n\t * @param {boolean} [fromRight] Specify iterating from right to left.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction baseFindIndex(array, predicate, fromIndex, fromRight) {\n\t  var length = array.length,\n\t      index = fromIndex + (fromRight ? 1 : -1);\n\n\t  while (fromRight ? index-- : ++index < length) {\n\t    if (predicate(array[index], index, array)) {\n\t      return index;\n\t    }\n\t  }\n\t  return -1;\n\t}\n\n\tmodule.exports = baseFindIndex;\n\n/***/ }),\n/* 166 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseFindIndex = __webpack_require__(165),\n\t    baseIsNaN = __webpack_require__(496),\n\t    strictIndexOf = __webpack_require__(570);\n\n\t/**\n\t * The base implementation of `_.indexOf` without `fromIndex` bounds checks.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {*} value The value to search for.\n\t * @param {number} fromIndex The index to search from.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction baseIndexOf(array, value, fromIndex) {\n\t    return value === value ? strictIndexOf(array, value, fromIndex) : baseFindIndex(array, baseIsNaN, fromIndex);\n\t}\n\n\tmodule.exports = baseIndexOf;\n\n/***/ }),\n/* 167 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Uint8Array = __webpack_require__(243);\n\n\t/**\n\t * Creates a clone of `arrayBuffer`.\n\t *\n\t * @private\n\t * @param {ArrayBuffer} arrayBuffer The array buffer to clone.\n\t * @returns {ArrayBuffer} Returns the cloned array buffer.\n\t */\n\tfunction cloneArrayBuffer(arrayBuffer) {\n\t  var result = new arrayBuffer.constructor(arrayBuffer.byteLength);\n\t  new Uint8Array(result).set(new Uint8Array(arrayBuffer));\n\t  return result;\n\t}\n\n\tmodule.exports = cloneArrayBuffer;\n\n/***/ }),\n/* 168 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Copies the values of `source` to `array`.\n\t *\n\t * @private\n\t * @param {Array} source The array to copy values from.\n\t * @param {Array} [array=[]] The array to copy values to.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction copyArray(source, array) {\n\t  var index = -1,\n\t      length = source.length;\n\n\t  array || (array = Array(length));\n\t  while (++index < length) {\n\t    array[index] = source[index];\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = copyArray;\n\n/***/ }),\n/* 169 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar overArg = __webpack_require__(271);\n\n\t/** Built-in value references. */\n\tvar getPrototype = overArg(Object.getPrototypeOf, Object);\n\n\tmodule.exports = getPrototype;\n\n/***/ }),\n/* 170 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayFilter = __webpack_require__(479),\n\t    stubArray = __webpack_require__(279);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Built-in value references. */\n\tvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeGetSymbols = Object.getOwnPropertySymbols;\n\n\t/**\n\t * Creates an array of the own enumerable symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of symbols.\n\t */\n\tvar getSymbols = !nativeGetSymbols ? stubArray : function (object) {\n\t  if (object == null) {\n\t    return [];\n\t  }\n\t  object = Object(object);\n\t  return arrayFilter(nativeGetSymbols(object), function (symbol) {\n\t    return propertyIsEnumerable.call(object, symbol);\n\t  });\n\t};\n\n\tmodule.exports = getSymbols;\n\n/***/ }),\n/* 171 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used as references for various `Number` constants. */\n\tvar MAX_SAFE_INTEGER = 9007199254740991;\n\n\t/** Used to detect unsigned integer values. */\n\tvar reIsUint = /^(?:0|[1-9]\\d*)$/;\n\n\t/**\n\t * Checks if `value` is a valid array-like index.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\n\t * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\n\t */\n\tfunction isIndex(value, length) {\n\t  length = length == null ? MAX_SAFE_INTEGER : length;\n\t  return !!length && (typeof value == 'number' || reIsUint.test(value)) && value > -1 && value % 1 == 0 && value < length;\n\t}\n\n\tmodule.exports = isIndex;\n\n/***/ }),\n/* 172 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar eq = __webpack_require__(46),\n\t    isArrayLike = __webpack_require__(24),\n\t    isIndex = __webpack_require__(171),\n\t    isObject = __webpack_require__(18);\n\n\t/**\n\t * Checks if the given arguments are from an iteratee call.\n\t *\n\t * @private\n\t * @param {*} value The potential iteratee value argument.\n\t * @param {*} index The potential iteratee index or key argument.\n\t * @param {*} object The potential iteratee object argument.\n\t * @returns {boolean} Returns `true` if the arguments are from an iteratee call,\n\t *  else `false`.\n\t */\n\tfunction isIterateeCall(value, index, object) {\n\t  if (!isObject(object)) {\n\t    return false;\n\t  }\n\t  var type = typeof index === 'undefined' ? 'undefined' : _typeof(index);\n\t  if (type == 'number' ? isArrayLike(object) && isIndex(index, object.length) : type == 'string' && index in object) {\n\t    return eq(object[index], value);\n\t  }\n\t  return false;\n\t}\n\n\tmodule.exports = isIterateeCall;\n\n/***/ }),\n/* 173 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar isArray = __webpack_require__(6),\n\t    isSymbol = __webpack_require__(62);\n\n\t/** Used to match property names within property paths. */\n\tvar reIsDeepProp = /\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\\\]|\\\\.)*?\\1)\\]/,\n\t    reIsPlainProp = /^\\w*$/;\n\n\t/**\n\t * Checks if `value` is a property name and not a property path.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @param {Object} [object] The object to query keys on.\n\t * @returns {boolean} Returns `true` if `value` is a property name, else `false`.\n\t */\n\tfunction isKey(value, object) {\n\t  if (isArray(value)) {\n\t    return false;\n\t  }\n\t  var type = typeof value === 'undefined' ? 'undefined' : _typeof(value);\n\t  if (type == 'number' || type == 'symbol' || type == 'boolean' || value == null || isSymbol(value)) {\n\t    return true;\n\t  }\n\t  return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || object != null && value in Object(object);\n\t}\n\n\tmodule.exports = isKey;\n\n/***/ }),\n/* 174 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assignValue = __webpack_require__(162),\n\t    copyObject = __webpack_require__(31),\n\t    createAssigner = __webpack_require__(103),\n\t    isArrayLike = __webpack_require__(24),\n\t    isPrototype = __webpack_require__(105),\n\t    keys = __webpack_require__(32);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Assigns own enumerable string keyed properties of source objects to the\n\t * destination object. Source objects are applied from left to right.\n\t * Subsequent sources overwrite property assignments of previous sources.\n\t *\n\t * **Note:** This method mutates `object` and is loosely based on\n\t * [`Object.assign`](https://mdn.io/Object/assign).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.10.0\n\t * @category Object\n\t * @param {Object} object The destination object.\n\t * @param {...Object} [sources] The source objects.\n\t * @returns {Object} Returns `object`.\n\t * @see _.assignIn\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t * }\n\t *\n\t * function Bar() {\n\t *   this.c = 3;\n\t * }\n\t *\n\t * Foo.prototype.b = 2;\n\t * Bar.prototype.d = 4;\n\t *\n\t * _.assign({ 'a': 0 }, new Foo, new Bar);\n\t * // => { 'a': 1, 'c': 3 }\n\t */\n\tvar assign = createAssigner(function (object, source) {\n\t  if (isPrototype(source) || isArrayLike(source)) {\n\t    copyObject(source, keys(source), object);\n\t    return;\n\t  }\n\t  for (var key in source) {\n\t    if (hasOwnProperty.call(source, key)) {\n\t      assignValue(object, key, source[key]);\n\t    }\n\t  }\n\t});\n\n\tmodule.exports = assign;\n\n/***/ }),\n/* 175 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    isObject = __webpack_require__(18);\n\n\t/** `Object#toString` result references. */\n\tvar asyncTag = '[object AsyncFunction]',\n\t    funcTag = '[object Function]',\n\t    genTag = '[object GeneratorFunction]',\n\t    proxyTag = '[object Proxy]';\n\n\t/**\n\t * Checks if `value` is classified as a `Function` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a function, else `false`.\n\t * @example\n\t *\n\t * _.isFunction(_);\n\t * // => true\n\t *\n\t * _.isFunction(/abc/);\n\t * // => false\n\t */\n\tfunction isFunction(value) {\n\t    if (!isObject(value)) {\n\t        return false;\n\t    }\n\t    // The use of `Object#toString` avoids issues with the `typeof` operator\n\t    // in Safari 9 which returns 'object' for typed arrays and other constructors.\n\t    var tag = baseGetTag(value);\n\t    return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;\n\t}\n\n\tmodule.exports = isFunction;\n\n/***/ }),\n/* 176 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used as references for various `Number` constants. */\n\tvar MAX_SAFE_INTEGER = 9007199254740991;\n\n\t/**\n\t * Checks if `value` is a valid array-like length.\n\t *\n\t * **Note:** This method is loosely based on\n\t * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\n\t * @example\n\t *\n\t * _.isLength(3);\n\t * // => true\n\t *\n\t * _.isLength(Number.MIN_VALUE);\n\t * // => false\n\t *\n\t * _.isLength(Infinity);\n\t * // => false\n\t *\n\t * _.isLength('3');\n\t * // => false\n\t */\n\tfunction isLength(value) {\n\t  return typeof value == 'number' && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\n\t}\n\n\tmodule.exports = isLength;\n\n/***/ }),\n/* 177 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsTypedArray = __webpack_require__(499),\n\t    baseUnary = __webpack_require__(102),\n\t    nodeUtil = __webpack_require__(270);\n\n\t/* Node.js helper references. */\n\tvar nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;\n\n\t/**\n\t * Checks if `value` is classified as a typed array.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n\t * @example\n\t *\n\t * _.isTypedArray(new Uint8Array);\n\t * // => true\n\t *\n\t * _.isTypedArray([]);\n\t * // => false\n\t */\n\tvar isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;\n\n\tmodule.exports = isTypedArray;\n\n/***/ }),\n/* 178 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar map = {\n\t\t\"./index\": 50,\n\t\t\"./index.js\": 50,\n\t\t\"./logger\": 120,\n\t\t\"./logger.js\": 120,\n\t\t\"./metadata\": 121,\n\t\t\"./metadata.js\": 121,\n\t\t\"./options/build-config-chain\": 51,\n\t\t\"./options/build-config-chain.js\": 51,\n\t\t\"./options/config\": 33,\n\t\t\"./options/config.js\": 33,\n\t\t\"./options/index\": 52,\n\t\t\"./options/index.js\": 52,\n\t\t\"./options/option-manager\": 34,\n\t\t\"./options/option-manager.js\": 34,\n\t\t\"./options/parsers\": 53,\n\t\t\"./options/parsers.js\": 53,\n\t\t\"./options/removed\": 54,\n\t\t\"./options/removed.js\": 54\n\t};\n\tfunction webpackContext(req) {\n\t\treturn __webpack_require__(webpackContextResolve(req));\n\t};\n\tfunction webpackContextResolve(req) {\n\t\treturn map[req] || (function() { throw new Error(\"Cannot find module '\" + req + \"'.\") }());\n\t};\n\twebpackContext.keys = function webpackContextKeys() {\n\t\treturn Object.keys(map);\n\t};\n\twebpackContext.resolve = webpackContextResolve;\n\tmodule.exports = webpackContext;\n\twebpackContext.id = 178;\n\n\n/***/ }),\n/* 179 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar map = {\n\t\t\"./build-config-chain\": 51,\n\t\t\"./build-config-chain.js\": 51,\n\t\t\"./config\": 33,\n\t\t\"./config.js\": 33,\n\t\t\"./index\": 52,\n\t\t\"./index.js\": 52,\n\t\t\"./option-manager\": 34,\n\t\t\"./option-manager.js\": 34,\n\t\t\"./parsers\": 53,\n\t\t\"./parsers.js\": 53,\n\t\t\"./removed\": 54,\n\t\t\"./removed.js\": 54\n\t};\n\tfunction webpackContext(req) {\n\t\treturn __webpack_require__(webpackContextResolve(req));\n\t};\n\tfunction webpackContextResolve(req) {\n\t\treturn map[req] || (function() { throw new Error(\"Cannot find module '\" + req + \"'.\") }());\n\t};\n\twebpackContext.keys = function webpackContextKeys() {\n\t\treturn Object.keys(map);\n\t};\n\twebpackContext.resolve = webpackContextResolve;\n\tmodule.exports = webpackContext;\n\twebpackContext.id = 179;\n\n\n/***/ }),\n/* 180 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function () {\n\t\treturn (/[\\u001b\\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-PRZcf-nqry=><]/g\n\t\t);\n\t};\n\n/***/ }),\n/* 181 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (rawLines, lineNumber, colNumber) {\n\t  var opts = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};\n\n\t  colNumber = Math.max(colNumber, 0);\n\n\t  var highlighted = opts.highlightCode && _chalk2.default.supportsColor || opts.forceColor;\n\t  var chalk = _chalk2.default;\n\t  if (opts.forceColor) {\n\t    chalk = new _chalk2.default.constructor({ enabled: true });\n\t  }\n\t  var maybeHighlight = function maybeHighlight(chalkFn, string) {\n\t    return highlighted ? chalkFn(string) : string;\n\t  };\n\t  var defs = getDefs(chalk);\n\t  if (highlighted) rawLines = highlight(defs, rawLines);\n\n\t  var linesAbove = opts.linesAbove || 2;\n\t  var linesBelow = opts.linesBelow || 3;\n\n\t  var lines = rawLines.split(NEWLINE);\n\t  var start = Math.max(lineNumber - (linesAbove + 1), 0);\n\t  var end = Math.min(lines.length, lineNumber + linesBelow);\n\n\t  if (!lineNumber && !colNumber) {\n\t    start = 0;\n\t    end = lines.length;\n\t  }\n\n\t  var numberMaxWidth = String(end).length;\n\n\t  var frame = lines.slice(start, end).map(function (line, index) {\n\t    var number = start + 1 + index;\n\t    var paddedNumber = (\" \" + number).slice(-numberMaxWidth);\n\t    var gutter = \" \" + paddedNumber + \" | \";\n\t    if (number === lineNumber) {\n\t      var markerLine = \"\";\n\t      if (colNumber) {\n\t        var markerSpacing = line.slice(0, colNumber - 1).replace(/[^\\t]/g, \" \");\n\t        markerLine = [\"\\n \", maybeHighlight(defs.gutter, gutter.replace(/\\d/g, \" \")), markerSpacing, maybeHighlight(defs.marker, \"^\")].join(\"\");\n\t      }\n\t      return [maybeHighlight(defs.marker, \">\"), maybeHighlight(defs.gutter, gutter), line, markerLine].join(\"\");\n\t    } else {\n\t      return \" \" + maybeHighlight(defs.gutter, gutter) + line;\n\t    }\n\t  }).join(\"\\n\");\n\n\t  if (highlighted) {\n\t    return chalk.reset(frame);\n\t  } else {\n\t    return frame;\n\t  }\n\t};\n\n\tvar _jsTokens = __webpack_require__(468);\n\n\tvar _jsTokens2 = _interopRequireDefault(_jsTokens);\n\n\tvar _esutils = __webpack_require__(97);\n\n\tvar _esutils2 = _interopRequireDefault(_esutils);\n\n\tvar _chalk = __webpack_require__(401);\n\n\tvar _chalk2 = _interopRequireDefault(_chalk);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction getDefs(chalk) {\n\t  return {\n\t    keyword: chalk.cyan,\n\t    capitalized: chalk.yellow,\n\t    jsx_tag: chalk.yellow,\n\t    punctuator: chalk.yellow,\n\n\t    number: chalk.magenta,\n\t    string: chalk.green,\n\t    regex: chalk.magenta,\n\t    comment: chalk.grey,\n\t    invalid: chalk.white.bgRed.bold,\n\t    gutter: chalk.grey,\n\t    marker: chalk.red.bold\n\t  };\n\t}\n\n\tvar NEWLINE = /\\r\\n|[\\n\\r\\u2028\\u2029]/;\n\n\tvar JSX_TAG = /^[a-z][\\w-]*$/i;\n\n\tvar BRACKET = /^[()\\[\\]{}]$/;\n\n\tfunction getTokenType(match) {\n\t  var _match$slice = match.slice(-2),\n\t      offset = _match$slice[0],\n\t      text = _match$slice[1];\n\n\t  var token = (0, _jsTokens.matchToToken)(match);\n\n\t  if (token.type === \"name\") {\n\t    if (_esutils2.default.keyword.isReservedWordES6(token.value)) {\n\t      return \"keyword\";\n\t    }\n\n\t    if (JSX_TAG.test(token.value) && (text[offset - 1] === \"<\" || text.substr(offset - 2, 2) == \"</\")) {\n\t      return \"jsx_tag\";\n\t    }\n\n\t    if (token.value[0] !== token.value[0].toLowerCase()) {\n\t      return \"capitalized\";\n\t    }\n\t  }\n\n\t  if (token.type === \"punctuator\" && BRACKET.test(token.value)) {\n\t    return \"bracket\";\n\t  }\n\n\t  return token.type;\n\t}\n\n\tfunction highlight(defs, text) {\n\t  return text.replace(_jsTokens2.default, function () {\n\t    for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t      args[_key] = arguments[_key];\n\t    }\n\n\t    var type = getTokenType(args);\n\t    var colorize = defs[type];\n\t    if (colorize) {\n\t      return args[0].split(NEWLINE).map(function (str) {\n\t        return colorize(str);\n\t      }).join(\"\\n\");\n\t    } else {\n\t      return args[0];\n\t    }\n\t  });\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 182 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.transformFromAst = exports.transform = exports.analyse = exports.Pipeline = exports.OptionManager = exports.traverse = exports.types = exports.messages = exports.util = exports.version = exports.resolvePreset = exports.resolvePlugin = exports.template = exports.buildExternalHelpers = exports.options = exports.File = undefined;\n\n\tvar _file = __webpack_require__(50);\n\n\tObject.defineProperty(exports, \"File\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_file).default;\n\t  }\n\t});\n\n\tvar _config = __webpack_require__(33);\n\n\tObject.defineProperty(exports, \"options\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_config).default;\n\t  }\n\t});\n\n\tvar _buildExternalHelpers = __webpack_require__(295);\n\n\tObject.defineProperty(exports, \"buildExternalHelpers\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_buildExternalHelpers).default;\n\t  }\n\t});\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tObject.defineProperty(exports, \"template\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_babelTemplate).default;\n\t  }\n\t});\n\n\tvar _resolvePlugin = __webpack_require__(184);\n\n\tObject.defineProperty(exports, \"resolvePlugin\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_resolvePlugin).default;\n\t  }\n\t});\n\n\tvar _resolvePreset = __webpack_require__(185);\n\n\tObject.defineProperty(exports, \"resolvePreset\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_resolvePreset).default;\n\t  }\n\t});\n\n\tvar _package = __webpack_require__(628);\n\n\tObject.defineProperty(exports, \"version\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _package.version;\n\t  }\n\t});\n\texports.Plugin = Plugin;\n\texports.transformFile = transformFile;\n\texports.transformFileSync = transformFileSync;\n\n\tvar _fs = __webpack_require__(115);\n\n\tvar _fs2 = _interopRequireDefault(_fs);\n\n\tvar _util = __webpack_require__(122);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelTraverse2 = _interopRequireDefault(_babelTraverse);\n\n\tvar _optionManager = __webpack_require__(34);\n\n\tvar _optionManager2 = _interopRequireDefault(_optionManager);\n\n\tvar _pipeline = __webpack_require__(298);\n\n\tvar _pipeline2 = _interopRequireDefault(_pipeline);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.util = util;\n\texports.messages = messages;\n\texports.types = t;\n\texports.traverse = _babelTraverse2.default;\n\texports.OptionManager = _optionManager2.default;\n\tfunction Plugin(alias) {\n\t  throw new Error(\"The (\" + alias + \") Babel 5 plugin is being run with Babel 6.\");\n\t}\n\n\texports.Pipeline = _pipeline2.default;\n\n\tvar pipeline = new _pipeline2.default();\n\tvar analyse = exports.analyse = pipeline.analyse.bind(pipeline);\n\tvar transform = exports.transform = pipeline.transform.bind(pipeline);\n\tvar transformFromAst = exports.transformFromAst = pipeline.transformFromAst.bind(pipeline);\n\n\tfunction transformFile(filename, opts, callback) {\n\t  if (typeof opts === \"function\") {\n\t    callback = opts;\n\t    opts = {};\n\t  }\n\n\t  opts.filename = filename;\n\n\t  _fs2.default.readFile(filename, function (err, code) {\n\t    var result = void 0;\n\n\t    if (!err) {\n\t      try {\n\t        result = transform(code, opts);\n\t      } catch (_err) {\n\t        err = _err;\n\t      }\n\t    }\n\n\t    if (err) {\n\t      callback(err);\n\t    } else {\n\t      callback(null, result);\n\t    }\n\t  });\n\t}\n\n\tfunction transformFileSync(filename) {\n\t  var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t  opts.filename = filename;\n\t  return transform(_fs2.default.readFileSync(filename, \"utf8\"), opts);\n\t}\n\n/***/ }),\n/* 183 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.default = resolveFromPossibleNames;\n\n\tvar _resolve = __webpack_require__(118);\n\n\tvar _resolve2 = _interopRequireDefault(_resolve);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction resolveFromPossibleNames(possibleNames, dirname) {\n\t  return possibleNames.reduce(function (accum, curr) {\n\t    return accum || (0, _resolve2.default)(curr, dirname);\n\t  }, null);\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 184 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {\"use strict\";\n\n\texports.__esModule = true;\n\texports.default = resolvePlugin;\n\n\tvar _resolveFromPossibleNames = __webpack_require__(183);\n\n\tvar _resolveFromPossibleNames2 = _interopRequireDefault(_resolveFromPossibleNames);\n\n\tvar _getPossiblePluginNames = __webpack_require__(291);\n\n\tvar _getPossiblePluginNames2 = _interopRequireDefault(_getPossiblePluginNames);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction resolvePlugin(pluginName) {\n\t  var dirname = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : process.cwd();\n\n\t  return (0, _resolveFromPossibleNames2.default)((0, _getPossiblePluginNames2.default)(pluginName), dirname);\n\t}\n\tmodule.exports = exports[\"default\"];\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 185 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {\"use strict\";\n\n\texports.__esModule = true;\n\texports.default = resolvePreset;\n\n\tvar _resolveFromPossibleNames = __webpack_require__(183);\n\n\tvar _resolveFromPossibleNames2 = _interopRequireDefault(_resolveFromPossibleNames);\n\n\tvar _getPossiblePresetNames = __webpack_require__(292);\n\n\tvar _getPossiblePresetNames2 = _interopRequireDefault(_getPossiblePresetNames);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction resolvePreset(presetName) {\n\t  var dirname = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : process.cwd();\n\n\t  return (0, _resolveFromPossibleNames2.default)((0, _getPossiblePresetNames2.default)(presetName), dirname);\n\t}\n\tmodule.exports = exports[\"default\"];\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 186 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.CodeGenerator = undefined;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _possibleConstructorReturn2 = __webpack_require__(42);\n\n\tvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\n\tvar _inherits2 = __webpack_require__(41);\n\n\tvar _inherits3 = _interopRequireDefault(_inherits2);\n\n\texports.default = function (ast, opts, code) {\n\t  var gen = new Generator(ast, opts, code);\n\t  return gen.generate();\n\t};\n\n\tvar _detectIndent = __webpack_require__(459);\n\n\tvar _detectIndent2 = _interopRequireDefault(_detectIndent);\n\n\tvar _sourceMap = __webpack_require__(313);\n\n\tvar _sourceMap2 = _interopRequireDefault(_sourceMap);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _printer = __webpack_require__(312);\n\n\tvar _printer2 = _interopRequireDefault(_printer);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar Generator = function (_Printer) {\n\t  (0, _inherits3.default)(Generator, _Printer);\n\n\t  function Generator(ast) {\n\t    var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t    var code = arguments[2];\n\t    (0, _classCallCheck3.default)(this, Generator);\n\n\t    var tokens = ast.tokens || [];\n\t    var format = normalizeOptions(code, opts, tokens);\n\t    var map = opts.sourceMaps ? new _sourceMap2.default(opts, code) : null;\n\n\t    var _this = (0, _possibleConstructorReturn3.default)(this, _Printer.call(this, format, map, tokens));\n\n\t    _this.ast = ast;\n\t    return _this;\n\t  }\n\n\t  Generator.prototype.generate = function generate() {\n\t    return _Printer.prototype.generate.call(this, this.ast);\n\t  };\n\n\t  return Generator;\n\t}(_printer2.default);\n\n\tfunction normalizeOptions(code, opts, tokens) {\n\t  var style = \"  \";\n\t  if (code && typeof code === \"string\") {\n\t    var indent = (0, _detectIndent2.default)(code).indent;\n\t    if (indent && indent !== \" \") style = indent;\n\t  }\n\n\t  var format = {\n\t    auxiliaryCommentBefore: opts.auxiliaryCommentBefore,\n\t    auxiliaryCommentAfter: opts.auxiliaryCommentAfter,\n\t    shouldPrintComment: opts.shouldPrintComment,\n\t    retainLines: opts.retainLines,\n\t    retainFunctionParens: opts.retainFunctionParens,\n\t    comments: opts.comments == null || opts.comments,\n\t    compact: opts.compact,\n\t    minified: opts.minified,\n\t    concise: opts.concise,\n\t    quotes: opts.quotes || findCommonStringDelimiter(code, tokens),\n\t    jsonCompatibleStrings: opts.jsonCompatibleStrings,\n\t    indent: {\n\t      adjustMultilineComment: true,\n\t      style: style,\n\t      base: 0\n\t    },\n\t    flowCommaSeparator: opts.flowCommaSeparator\n\t  };\n\n\t  if (format.minified) {\n\t    format.compact = true;\n\n\t    format.shouldPrintComment = format.shouldPrintComment || function () {\n\t      return format.comments;\n\t    };\n\t  } else {\n\t    format.shouldPrintComment = format.shouldPrintComment || function (value) {\n\t      return format.comments || value.indexOf(\"@license\") >= 0 || value.indexOf(\"@preserve\") >= 0;\n\t    };\n\t  }\n\n\t  if (format.compact === \"auto\") {\n\t    format.compact = code.length > 500000;\n\n\t    if (format.compact) {\n\t      console.error(\"[BABEL] \" + messages.get(\"codeGeneratorDeopt\", opts.filename, \"500KB\"));\n\t    }\n\t  }\n\n\t  if (format.compact) {\n\t    format.indent.adjustMultilineComment = false;\n\t  }\n\n\t  return format;\n\t}\n\n\tfunction findCommonStringDelimiter(code, tokens) {\n\t  var DEFAULT_STRING_DELIMITER = \"double\";\n\t  if (!code) {\n\t    return DEFAULT_STRING_DELIMITER;\n\t  }\n\n\t  var occurrences = {\n\t    single: 0,\n\t    double: 0\n\t  };\n\n\t  var checked = 0;\n\n\t  for (var i = 0; i < tokens.length; i++) {\n\t    var token = tokens[i];\n\t    if (token.type.label !== \"string\") continue;\n\n\t    var raw = code.slice(token.start, token.end);\n\t    if (raw[0] === \"'\") {\n\t      occurrences.single++;\n\t    } else {\n\t      occurrences.double++;\n\t    }\n\n\t    checked++;\n\t    if (checked >= 3) break;\n\t  }\n\t  if (occurrences.single > occurrences.double) {\n\t    return \"single\";\n\t  } else {\n\t    return \"double\";\n\t  }\n\t}\n\n\tvar CodeGenerator = exports.CodeGenerator = function () {\n\t  function CodeGenerator(ast, opts, code) {\n\t    (0, _classCallCheck3.default)(this, CodeGenerator);\n\n\t    this._generator = new Generator(ast, opts, code);\n\t  }\n\n\t  CodeGenerator.prototype.generate = function generate() {\n\t    return this._generator.generate();\n\t  };\n\n\t  return CodeGenerator;\n\t}();\n\n/***/ }),\n/* 187 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\texports.needsWhitespace = needsWhitespace;\n\texports.needsWhitespaceBefore = needsWhitespaceBefore;\n\texports.needsWhitespaceAfter = needsWhitespaceAfter;\n\texports.needsParens = needsParens;\n\n\tvar _whitespace = __webpack_require__(311);\n\n\tvar _whitespace2 = _interopRequireDefault(_whitespace);\n\n\tvar _parentheses = __webpack_require__(310);\n\n\tvar parens = _interopRequireWildcard(_parentheses);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction expandAliases(obj) {\n\t  var newObj = {};\n\n\t  function add(type, func) {\n\t    var fn = newObj[type];\n\t    newObj[type] = fn ? function (node, parent, stack) {\n\t      var result = fn(node, parent, stack);\n\n\t      return result == null ? func(node, parent, stack) : result;\n\t    } : func;\n\t  }\n\n\t  for (var _iterator = (0, _keys2.default)(obj), _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var type = _ref;\n\n\t    var aliases = t.FLIPPED_ALIAS_KEYS[type];\n\t    if (aliases) {\n\t      for (var _iterator2 = aliases, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t        var _ref2;\n\n\t        if (_isArray2) {\n\t          if (_i2 >= _iterator2.length) break;\n\t          _ref2 = _iterator2[_i2++];\n\t        } else {\n\t          _i2 = _iterator2.next();\n\t          if (_i2.done) break;\n\t          _ref2 = _i2.value;\n\t        }\n\n\t        var alias = _ref2;\n\n\t        add(alias, obj[type]);\n\t      }\n\t    } else {\n\t      add(type, obj[type]);\n\t    }\n\t  }\n\n\t  return newObj;\n\t}\n\n\tvar expandedParens = expandAliases(parens);\n\tvar expandedWhitespaceNodes = expandAliases(_whitespace2.default.nodes);\n\tvar expandedWhitespaceList = expandAliases(_whitespace2.default.list);\n\n\tfunction find(obj, node, parent, printStack) {\n\t  var fn = obj[node.type];\n\t  return fn ? fn(node, parent, printStack) : null;\n\t}\n\n\tfunction isOrHasCallExpression(node) {\n\t  if (t.isCallExpression(node)) {\n\t    return true;\n\t  }\n\n\t  if (t.isMemberExpression(node)) {\n\t    return isOrHasCallExpression(node.object) || !node.computed && isOrHasCallExpression(node.property);\n\t  } else {\n\t    return false;\n\t  }\n\t}\n\n\tfunction needsWhitespace(node, parent, type) {\n\t  if (!node) return 0;\n\n\t  if (t.isExpressionStatement(node)) {\n\t    node = node.expression;\n\t  }\n\n\t  var linesInfo = find(expandedWhitespaceNodes, node, parent);\n\n\t  if (!linesInfo) {\n\t    var items = find(expandedWhitespaceList, node, parent);\n\t    if (items) {\n\t      for (var i = 0; i < items.length; i++) {\n\t        linesInfo = needsWhitespace(items[i], node, type);\n\t        if (linesInfo) break;\n\t      }\n\t    }\n\t  }\n\n\t  return linesInfo && linesInfo[type] || 0;\n\t}\n\n\tfunction needsWhitespaceBefore(node, parent) {\n\t  return needsWhitespace(node, parent, \"before\");\n\t}\n\n\tfunction needsWhitespaceAfter(node, parent) {\n\t  return needsWhitespace(node, parent, \"after\");\n\t}\n\n\tfunction needsParens(node, parent, printStack) {\n\t  if (!parent) return false;\n\n\t  if (t.isNewExpression(parent) && parent.callee === node) {\n\t    if (isOrHasCallExpression(node)) return true;\n\t  }\n\n\t  return find(expandedParens, node, parent, printStack);\n\t}\n\n/***/ }),\n/* 188 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\texports.push = push;\n\texports.hasComputed = hasComputed;\n\texports.toComputedObjectFromClass = toComputedObjectFromClass;\n\texports.toClassObject = toClassObject;\n\texports.toDefineObject = toDefineObject;\n\n\tvar _babelHelperFunctionName = __webpack_require__(40);\n\n\tvar _babelHelperFunctionName2 = _interopRequireDefault(_babelHelperFunctionName);\n\n\tvar _has = __webpack_require__(274);\n\n\tvar _has2 = _interopRequireDefault(_has);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction toKind(node) {\n\t  if (t.isClassMethod(node) || t.isObjectMethod(node)) {\n\t    if (node.kind === \"get\" || node.kind === \"set\") {\n\t      return node.kind;\n\t    }\n\t  }\n\n\t  return \"value\";\n\t}\n\n\tfunction push(mutatorMap, node, kind, file, scope) {\n\t  var alias = t.toKeyAlias(node);\n\n\t  var map = {};\n\t  if ((0, _has2.default)(mutatorMap, alias)) map = mutatorMap[alias];\n\t  mutatorMap[alias] = map;\n\n\t  map._inherits = map._inherits || [];\n\t  map._inherits.push(node);\n\n\t  map._key = node.key;\n\n\t  if (node.computed) {\n\t    map._computed = true;\n\t  }\n\n\t  if (node.decorators) {\n\t    var decorators = map.decorators = map.decorators || t.arrayExpression([]);\n\t    decorators.elements = decorators.elements.concat(node.decorators.map(function (dec) {\n\t      return dec.expression;\n\t    }).reverse());\n\t  }\n\n\t  if (map.value || map.initializer) {\n\t    throw file.buildCodeFrameError(node, \"Key conflict with sibling node\");\n\t  }\n\n\t  var key = void 0,\n\t      value = void 0;\n\n\t  if (t.isObjectProperty(node) || t.isObjectMethod(node) || t.isClassMethod(node)) {\n\t    key = t.toComputedKey(node, node.key);\n\t  }\n\n\t  if (t.isObjectProperty(node) || t.isClassProperty(node)) {\n\t    value = node.value;\n\t  } else if (t.isObjectMethod(node) || t.isClassMethod(node)) {\n\t    value = t.functionExpression(null, node.params, node.body, node.generator, node.async);\n\t    value.returnType = node.returnType;\n\t  }\n\n\t  var inheritedKind = toKind(node);\n\t  if (!kind || inheritedKind !== \"value\") {\n\t    kind = inheritedKind;\n\t  }\n\n\t  if (scope && t.isStringLiteral(key) && (kind === \"value\" || kind === \"initializer\") && t.isFunctionExpression(value)) {\n\t    value = (0, _babelHelperFunctionName2.default)({ id: key, node: value, scope: scope });\n\t  }\n\n\t  if (value) {\n\t    t.inheritsComments(value, node);\n\t    map[kind] = value;\n\t  }\n\n\t  return map;\n\t}\n\n\tfunction hasComputed(mutatorMap) {\n\t  for (var key in mutatorMap) {\n\t    if (mutatorMap[key]._computed) {\n\t      return true;\n\t    }\n\t  }\n\t  return false;\n\t}\n\n\tfunction toComputedObjectFromClass(obj) {\n\t  var objExpr = t.arrayExpression([]);\n\n\t  for (var i = 0; i < obj.properties.length; i++) {\n\t    var prop = obj.properties[i];\n\t    var val = prop.value;\n\t    val.properties.unshift(t.objectProperty(t.identifier(\"key\"), t.toComputedKey(prop)));\n\t    objExpr.elements.push(val);\n\t  }\n\n\t  return objExpr;\n\t}\n\n\tfunction toClassObject(mutatorMap) {\n\t  var objExpr = t.objectExpression([]);\n\n\t  (0, _keys2.default)(mutatorMap).forEach(function (mutatorMapKey) {\n\t    var map = mutatorMap[mutatorMapKey];\n\t    var mapNode = t.objectExpression([]);\n\n\t    var propNode = t.objectProperty(map._key, mapNode, map._computed);\n\n\t    (0, _keys2.default)(map).forEach(function (key) {\n\t      var node = map[key];\n\t      if (key[0] === \"_\") return;\n\n\t      var inheritNode = node;\n\t      if (t.isClassMethod(node) || t.isClassProperty(node)) node = node.value;\n\n\t      var prop = t.objectProperty(t.identifier(key), node);\n\t      t.inheritsComments(prop, inheritNode);\n\t      t.removeComments(inheritNode);\n\n\t      mapNode.properties.push(prop);\n\t    });\n\n\t    objExpr.properties.push(propNode);\n\t  });\n\n\t  return objExpr;\n\t}\n\n\tfunction toDefineObject(mutatorMap) {\n\t  (0, _keys2.default)(mutatorMap).forEach(function (key) {\n\t    var map = mutatorMap[key];\n\t    if (map.value) map.writable = t.booleanLiteral(true);\n\t    map.configurable = t.booleanLiteral(true);\n\t    map.enumerable = t.booleanLiteral(true);\n\t  });\n\n\t  return toClassObject(mutatorMap);\n\t}\n\n/***/ }),\n/* 189 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (node) {\n\t  var params = node.params;\n\t  for (var i = 0; i < params.length; i++) {\n\t    var param = params[i];\n\t    if (t.isAssignmentPattern(param) || t.isRestElement(param)) {\n\t      return i;\n\t    }\n\t  }\n\t  return params.length;\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 190 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (path, emit) {\n\t  var kind = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : \"var\";\n\n\t  path.traverse(visitor, { kind: kind, emit: emit });\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar visitor = {\n\t  Scope: function Scope(path, state) {\n\t    if (state.kind === \"let\") path.skip();\n\t  },\n\t  Function: function Function(path) {\n\t    path.skip();\n\t  },\n\t  VariableDeclaration: function VariableDeclaration(path, state) {\n\t    if (state.kind && path.node.kind !== state.kind) return;\n\n\t    var nodes = [];\n\n\t    var declarations = path.get(\"declarations\");\n\t    var firstId = void 0;\n\n\t    for (var _iterator = declarations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var declar = _ref;\n\n\t      firstId = declar.node.id;\n\n\t      if (declar.node.init) {\n\t        nodes.push(t.expressionStatement(t.assignmentExpression(\"=\", declar.node.id, declar.node.init)));\n\t      }\n\n\t      for (var name in declar.getBindingIdentifiers()) {\n\t        state.emit(t.identifier(name), name);\n\t      }\n\t    }\n\n\t    if (path.parentPath.isFor({ left: path.node })) {\n\t      path.replaceWith(firstId);\n\t    } else {\n\t      path.replaceWithMultiple(nodes);\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 191 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (callee, thisNode, args) {\n\t  if (args.length === 1 && t.isSpreadElement(args[0]) && t.isIdentifier(args[0].argument, { name: \"arguments\" })) {\n\t    return t.callExpression(t.memberExpression(callee, t.identifier(\"apply\")), [thisNode, args[0].argument]);\n\t  } else {\n\t    return t.callExpression(t.memberExpression(callee, t.identifier(\"call\")), [thisNode].concat(args));\n\t  }\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 192 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.is = is;\n\texports.pullFlag = pullFlag;\n\n\tvar _pull = __webpack_require__(277);\n\n\tvar _pull2 = _interopRequireDefault(_pull);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction is(node, flag) {\n\t  return t.isRegExpLiteral(node) && node.flags.indexOf(flag) >= 0;\n\t}\n\n\tfunction pullFlag(node, flag) {\n\t  var flags = node.flags.split(\"\");\n\t  if (node.flags.indexOf(flag) < 0) return;\n\t  (0, _pull2.default)(flags, flag);\n\t  node.flags = flags.join(\"\");\n\t}\n\n/***/ }),\n/* 193 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\tvar _babelHelperOptimiseCallExpression = __webpack_require__(191);\n\n\tvar _babelHelperOptimiseCallExpression2 = _interopRequireDefault(_babelHelperOptimiseCallExpression);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar HARDCORE_THIS_REF = (0, _symbol2.default)();\n\n\tfunction isIllegalBareSuper(node, parent) {\n\t  if (!t.isSuper(node)) return false;\n\t  if (t.isMemberExpression(parent, { computed: false })) return false;\n\t  if (t.isCallExpression(parent, { callee: node })) return false;\n\t  return true;\n\t}\n\n\tfunction isMemberExpressionSuper(node) {\n\t  return t.isMemberExpression(node) && t.isSuper(node.object);\n\t}\n\n\tfunction getPrototypeOfExpression(objectRef, isStatic) {\n\t  var targetRef = isStatic ? objectRef : t.memberExpression(objectRef, t.identifier(\"prototype\"));\n\n\t  return t.logicalExpression(\"||\", t.memberExpression(targetRef, t.identifier(\"__proto__\")), t.callExpression(t.memberExpression(t.identifier(\"Object\"), t.identifier(\"getPrototypeOf\")), [targetRef]));\n\t}\n\n\tvar visitor = {\n\t  Function: function Function(path) {\n\t    if (!path.inShadow(\"this\")) {\n\t      path.skip();\n\t    }\n\t  },\n\t  ReturnStatement: function ReturnStatement(path, state) {\n\t    if (!path.inShadow(\"this\")) {\n\t      state.returns.push(path);\n\t    }\n\t  },\n\t  ThisExpression: function ThisExpression(path, state) {\n\t    if (!path.node[HARDCORE_THIS_REF]) {\n\t      state.thises.push(path);\n\t    }\n\t  },\n\t  enter: function enter(path, state) {\n\t    var callback = state.specHandle;\n\t    if (state.isLoose) callback = state.looseHandle;\n\n\t    var isBareSuper = path.isCallExpression() && path.get(\"callee\").isSuper();\n\n\t    var result = callback.call(state, path);\n\n\t    if (result) {\n\t      state.hasSuper = true;\n\t    }\n\n\t    if (isBareSuper) {\n\t      state.bareSupers.push(path);\n\t    }\n\n\t    if (result === true) {\n\t      path.requeue();\n\t    }\n\n\t    if (result !== true && result) {\n\t      if (Array.isArray(result)) {\n\t        path.replaceWithMultiple(result);\n\t      } else {\n\t        path.replaceWith(result);\n\t      }\n\t    }\n\t  }\n\t};\n\n\tvar ReplaceSupers = function () {\n\t  function ReplaceSupers(opts) {\n\t    var inClass = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\t    (0, _classCallCheck3.default)(this, ReplaceSupers);\n\n\t    this.forceSuperMemoisation = opts.forceSuperMemoisation;\n\t    this.methodPath = opts.methodPath;\n\t    this.methodNode = opts.methodNode;\n\t    this.superRef = opts.superRef;\n\t    this.isStatic = opts.isStatic;\n\t    this.hasSuper = false;\n\t    this.inClass = inClass;\n\t    this.isLoose = opts.isLoose;\n\t    this.scope = this.methodPath.scope;\n\t    this.file = opts.file;\n\t    this.opts = opts;\n\n\t    this.bareSupers = [];\n\t    this.returns = [];\n\t    this.thises = [];\n\t  }\n\n\t  ReplaceSupers.prototype.getObjectRef = function getObjectRef() {\n\t    return this.opts.objectRef || this.opts.getObjectRef();\n\t  };\n\n\t  ReplaceSupers.prototype.setSuperProperty = function setSuperProperty(property, value, isComputed) {\n\t    return t.callExpression(this.file.addHelper(\"set\"), [getPrototypeOfExpression(this.getObjectRef(), this.isStatic), isComputed ? property : t.stringLiteral(property.name), value, t.thisExpression()]);\n\t  };\n\n\t  ReplaceSupers.prototype.getSuperProperty = function getSuperProperty(property, isComputed) {\n\t    return t.callExpression(this.file.addHelper(\"get\"), [getPrototypeOfExpression(this.getObjectRef(), this.isStatic), isComputed ? property : t.stringLiteral(property.name), t.thisExpression()]);\n\t  };\n\n\t  ReplaceSupers.prototype.replace = function replace() {\n\t    this.methodPath.traverse(visitor, this);\n\t  };\n\n\t  ReplaceSupers.prototype.getLooseSuperProperty = function getLooseSuperProperty(id, parent) {\n\t    var methodNode = this.methodNode;\n\t    var superRef = this.superRef || t.identifier(\"Function\");\n\n\t    if (parent.property === id) {\n\t      return;\n\t    } else if (t.isCallExpression(parent, { callee: id })) {\n\t      return;\n\t    } else if (t.isMemberExpression(parent) && !methodNode.static) {\n\t      return t.memberExpression(superRef, t.identifier(\"prototype\"));\n\t    } else {\n\t      return superRef;\n\t    }\n\t  };\n\n\t  ReplaceSupers.prototype.looseHandle = function looseHandle(path) {\n\t    var node = path.node;\n\t    if (path.isSuper()) {\n\t      return this.getLooseSuperProperty(node, path.parent);\n\t    } else if (path.isCallExpression()) {\n\t      var callee = node.callee;\n\t      if (!t.isMemberExpression(callee)) return;\n\t      if (!t.isSuper(callee.object)) return;\n\n\t      t.appendToMemberExpression(callee, t.identifier(\"call\"));\n\t      node.arguments.unshift(t.thisExpression());\n\t      return true;\n\t    }\n\t  };\n\n\t  ReplaceSupers.prototype.specHandleAssignmentExpression = function specHandleAssignmentExpression(ref, path, node) {\n\t    if (node.operator === \"=\") {\n\t      return this.setSuperProperty(node.left.property, node.right, node.left.computed);\n\t    } else {\n\t      ref = ref || path.scope.generateUidIdentifier(\"ref\");\n\t      return [t.variableDeclaration(\"var\", [t.variableDeclarator(ref, node.left)]), t.expressionStatement(t.assignmentExpression(\"=\", node.left, t.binaryExpression(node.operator[0], ref, node.right)))];\n\t    }\n\t  };\n\n\t  ReplaceSupers.prototype.specHandle = function specHandle(path) {\n\t    var property = void 0;\n\t    var computed = void 0;\n\t    var args = void 0;\n\n\t    var parent = path.parent;\n\t    var node = path.node;\n\n\t    if (isIllegalBareSuper(node, parent)) {\n\t      throw path.buildCodeFrameError(messages.get(\"classesIllegalBareSuper\"));\n\t    }\n\n\t    if (t.isCallExpression(node)) {\n\t      var callee = node.callee;\n\t      if (t.isSuper(callee)) {\n\t        return;\n\t      } else if (isMemberExpressionSuper(callee)) {\n\t        property = callee.property;\n\t        computed = callee.computed;\n\t        args = node.arguments;\n\t      }\n\t    } else if (t.isMemberExpression(node) && t.isSuper(node.object)) {\n\t      property = node.property;\n\t      computed = node.computed;\n\t    } else if (t.isUpdateExpression(node) && isMemberExpressionSuper(node.argument)) {\n\t      var binary = t.binaryExpression(node.operator[0], node.argument, t.numericLiteral(1));\n\t      if (node.prefix) {\n\t        return this.specHandleAssignmentExpression(null, path, binary);\n\t      } else {\n\t        var ref = path.scope.generateUidIdentifier(\"ref\");\n\t        return this.specHandleAssignmentExpression(ref, path, binary).concat(t.expressionStatement(ref));\n\t      }\n\t    } else if (t.isAssignmentExpression(node) && isMemberExpressionSuper(node.left)) {\n\t      return this.specHandleAssignmentExpression(null, path, node);\n\t    }\n\n\t    if (!property) return;\n\n\t    var superProperty = this.getSuperProperty(property, computed);\n\n\t    if (args) {\n\t      return this.optimiseCall(superProperty, args);\n\t    } else {\n\t      return superProperty;\n\t    }\n\t  };\n\n\t  ReplaceSupers.prototype.optimiseCall = function optimiseCall(callee, args) {\n\t    var thisNode = t.thisExpression();\n\t    thisNode[HARDCORE_THIS_REF] = true;\n\t    return (0, _babelHelperOptimiseCallExpression2.default)(callee, thisNode, args);\n\t  };\n\n\t  return ReplaceSupers;\n\t}();\n\n\texports.default = ReplaceSupers;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 194 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.list = undefined;\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\texports.get = get;\n\n\tvar _helpers = __webpack_require__(321);\n\n\tvar _helpers2 = _interopRequireDefault(_helpers);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction get(name) {\n\t  var fn = _helpers2.default[name];\n\t  if (!fn) throw new ReferenceError(\"Unknown helper \" + name);\n\n\t  return fn().expression;\n\t}\n\n\tvar list = exports.list = (0, _keys2.default)(_helpers2.default).map(function (name) {\n\t  return name.replace(/^_/, \"\");\n\t}).filter(function (name) {\n\t  return name !== \"__esModule\";\n\t});\n\n\texports.default = get;\n\n/***/ }),\n/* 195 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"asyncGenerators\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 196 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"classConstructorCall\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 197 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"classProperties\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 198 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"doExpressions\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 199 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"exponentiationOperator\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 200 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"exportExtensions\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 201 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"functionBind\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 202 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"objectRestSpread\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 203 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var ALREADY_VISITED = (0, _symbol2.default)();\n\n\t  function findConstructorCall(path) {\n\t    var methods = path.get(\"body.body\");\n\n\t    for (var _iterator = methods, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref2;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref2 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref2 = _i.value;\n\t      }\n\n\t      var method = _ref2;\n\n\t      if (method.node.kind === \"constructorCall\") {\n\t        return method;\n\t      }\n\t    }\n\n\t    return null;\n\t  }\n\n\t  function handleClassWithCall(constructorCall, classPath) {\n\t    var _classPath = classPath,\n\t        node = _classPath.node;\n\n\t    var ref = node.id || classPath.scope.generateUidIdentifier(\"class\");\n\n\t    if (classPath.parentPath.isExportDefaultDeclaration()) {\n\t      classPath = classPath.parentPath;\n\t      classPath.insertAfter(t.exportDefaultDeclaration(ref));\n\t    }\n\n\t    classPath.replaceWithMultiple(buildWrapper({\n\t      CLASS_REF: classPath.scope.generateUidIdentifier(ref.name),\n\t      CALL_REF: classPath.scope.generateUidIdentifier(ref.name + \"Call\"),\n\t      CALL: t.functionExpression(null, constructorCall.node.params, constructorCall.node.body),\n\t      CLASS: t.toExpression(node),\n\t      WRAPPER_REF: ref\n\t    }));\n\n\t    constructorCall.remove();\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(196),\n\n\t    visitor: {\n\t      Class: function Class(path) {\n\t        if (path.node[ALREADY_VISITED]) return;\n\t        path.node[ALREADY_VISITED] = true;\n\n\t        var constructorCall = findConstructorCall(path);\n\n\t        if (constructorCall) {\n\t          handleClassWithCall(constructorCall, path);\n\t        } else {\n\t          return;\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildWrapper = (0, _babelTemplate2.default)(\"\\n  let CLASS_REF = CLASS;\\n  var CALL_REF = CALL;\\n  var WRAPPER_REF = function (...args) {\\n    if (this instanceof WRAPPER_REF) {\\n      return Reflect.construct(CLASS_REF, args);\\n    } else {\\n      return CALL_REF.apply(this, args);\\n    }\\n  };\\n  WRAPPER_REF.__proto__ = CLASS_REF;\\n  WRAPPER_REF;\\n\");\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 204 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var findBareSupers = {\n\t    Super: function Super(path) {\n\t      if (path.parentPath.isCallExpression({ callee: path.node })) {\n\t        this.push(path.parentPath);\n\t      }\n\t    }\n\t  };\n\n\t  var referenceVisitor = {\n\t    ReferencedIdentifier: function ReferencedIdentifier(path) {\n\t      if (this.scope.hasOwnBinding(path.node.name)) {\n\t        this.collision = true;\n\t        path.skip();\n\t      }\n\t    }\n\t  };\n\n\t  var buildObjectDefineProperty = (0, _babelTemplate2.default)(\"\\n    Object.defineProperty(REF, KEY, {\\n      // configurable is false by default\\n      enumerable: true,\\n      writable: true,\\n      value: VALUE\\n    });\\n  \");\n\n\t  var buildClassPropertySpec = function buildClassPropertySpec(ref, _ref2) {\n\t    var key = _ref2.key,\n\t        value = _ref2.value,\n\t        computed = _ref2.computed;\n\t    return buildObjectDefineProperty({\n\t      REF: ref,\n\t      KEY: t.isIdentifier(key) && !computed ? t.stringLiteral(key.name) : key,\n\t      VALUE: value ? value : t.identifier(\"undefined\")\n\t    });\n\t  };\n\n\t  var buildClassPropertyNonSpec = function buildClassPropertyNonSpec(ref, _ref3) {\n\t    var key = _ref3.key,\n\t        value = _ref3.value,\n\t        computed = _ref3.computed;\n\t    return t.expressionStatement(t.assignmentExpression(\"=\", t.memberExpression(ref, key, computed || t.isLiteral(key)), value));\n\t  };\n\n\t  return {\n\t    inherits: __webpack_require__(197),\n\n\t    visitor: {\n\t      Class: function Class(path, state) {\n\t        var buildClassProperty = state.opts.spec ? buildClassPropertySpec : buildClassPropertyNonSpec;\n\t        var isDerived = !!path.node.superClass;\n\t        var constructor = void 0;\n\t        var props = [];\n\t        var body = path.get(\"body\");\n\n\t        for (var _iterator = body.get(\"body\"), _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref4;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref4 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref4 = _i.value;\n\t          }\n\n\t          var _path = _ref4;\n\n\t          if (_path.isClassProperty()) {\n\t            props.push(_path);\n\t          } else if (_path.isClassMethod({ kind: \"constructor\" })) {\n\t            constructor = _path;\n\t          }\n\t        }\n\n\t        if (!props.length) return;\n\n\t        var nodes = [];\n\t        var ref = void 0;\n\n\t        if (path.isClassExpression() || !path.node.id) {\n\t          (0, _babelHelperFunctionName2.default)(path);\n\t          ref = path.scope.generateUidIdentifier(\"class\");\n\t        } else {\n\t          ref = path.node.id;\n\t        }\n\n\t        var instanceBody = [];\n\n\t        for (var _iterator2 = props, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t          var _ref5;\n\n\t          if (_isArray2) {\n\t            if (_i2 >= _iterator2.length) break;\n\t            _ref5 = _iterator2[_i2++];\n\t          } else {\n\t            _i2 = _iterator2.next();\n\t            if (_i2.done) break;\n\t            _ref5 = _i2.value;\n\t          }\n\n\t          var _prop = _ref5;\n\n\t          var propNode = _prop.node;\n\t          if (propNode.decorators && propNode.decorators.length > 0) continue;\n\n\t          if (!state.opts.spec && !propNode.value) continue;\n\n\t          var isStatic = propNode.static;\n\n\t          if (isStatic) {\n\t            nodes.push(buildClassProperty(ref, propNode));\n\t          } else {\n\t            if (!propNode.value) continue;\n\t            instanceBody.push(buildClassProperty(t.thisExpression(), propNode));\n\t          }\n\t        }\n\n\t        if (instanceBody.length) {\n\t          if (!constructor) {\n\t            var newConstructor = t.classMethod(\"constructor\", t.identifier(\"constructor\"), [], t.blockStatement([]));\n\t            if (isDerived) {\n\t              newConstructor.params = [t.restElement(t.identifier(\"args\"))];\n\t              newConstructor.body.body.push(t.returnStatement(t.callExpression(t.super(), [t.spreadElement(t.identifier(\"args\"))])));\n\t            }\n\n\t            var _body$unshiftContaine = body.unshiftContainer(\"body\", newConstructor);\n\n\t            constructor = _body$unshiftContaine[0];\n\t          }\n\n\t          var collisionState = {\n\t            collision: false,\n\t            scope: constructor.scope\n\t          };\n\n\t          for (var _iterator3 = props, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t            var _ref6;\n\n\t            if (_isArray3) {\n\t              if (_i3 >= _iterator3.length) break;\n\t              _ref6 = _iterator3[_i3++];\n\t            } else {\n\t              _i3 = _iterator3.next();\n\t              if (_i3.done) break;\n\t              _ref6 = _i3.value;\n\t            }\n\n\t            var prop = _ref6;\n\n\t            prop.traverse(referenceVisitor, collisionState);\n\t            if (collisionState.collision) break;\n\t          }\n\n\t          if (collisionState.collision) {\n\t            var initialisePropsRef = path.scope.generateUidIdentifier(\"initialiseProps\");\n\n\t            nodes.push(t.variableDeclaration(\"var\", [t.variableDeclarator(initialisePropsRef, t.functionExpression(null, [], t.blockStatement(instanceBody)))]));\n\n\t            instanceBody = [t.expressionStatement(t.callExpression(t.memberExpression(initialisePropsRef, t.identifier(\"call\")), [t.thisExpression()]))];\n\t          }\n\n\t          if (isDerived) {\n\t            var bareSupers = [];\n\t            constructor.traverse(findBareSupers, bareSupers);\n\t            for (var _iterator4 = bareSupers, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t              var _ref7;\n\n\t              if (_isArray4) {\n\t                if (_i4 >= _iterator4.length) break;\n\t                _ref7 = _iterator4[_i4++];\n\t              } else {\n\t                _i4 = _iterator4.next();\n\t                if (_i4.done) break;\n\t                _ref7 = _i4.value;\n\t              }\n\n\t              var bareSuper = _ref7;\n\n\t              bareSuper.insertAfter(instanceBody);\n\t            }\n\t          } else {\n\t            constructor.get(\"body\").unshiftContainer(\"body\", instanceBody);\n\t          }\n\t        }\n\n\t        for (var _iterator5 = props, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t          var _ref8;\n\n\t          if (_isArray5) {\n\t            if (_i5 >= _iterator5.length) break;\n\t            _ref8 = _iterator5[_i5++];\n\t          } else {\n\t            _i5 = _iterator5.next();\n\t            if (_i5.done) break;\n\t            _ref8 = _i5.value;\n\t          }\n\n\t          var _prop2 = _ref8;\n\n\t          _prop2.remove();\n\t        }\n\n\t        if (!nodes.length) return;\n\n\t        if (path.isClassExpression()) {\n\t          path.scope.push({ id: ref });\n\t          path.replaceWith(t.assignmentExpression(\"=\", ref, path.node));\n\t        } else {\n\t          if (!path.node.id) {\n\t            path.node.id = ref;\n\t          }\n\n\t          if (path.parentPath.isExportDeclaration()) {\n\t            path = path.parentPath;\n\t          }\n\t        }\n\n\t        path.insertAfter(nodes);\n\t      },\n\t      ArrowFunctionExpression: function ArrowFunctionExpression(path) {\n\t        var classExp = path.get(\"body\");\n\t        if (!classExp.isClassExpression()) return;\n\n\t        var body = classExp.get(\"body\");\n\t        var members = body.get(\"body\");\n\t        if (members.some(function (member) {\n\t          return member.isClassProperty();\n\t        })) {\n\t          path.ensureBlock();\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperFunctionName = __webpack_require__(40);\n\n\tvar _babelHelperFunctionName2 = _interopRequireDefault(_babelHelperFunctionName);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 205 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function cleanDecorators(decorators) {\n\t    return decorators.reverse().map(function (dec) {\n\t      return dec.expression;\n\t    });\n\t  }\n\n\t  function transformClass(path, ref, state) {\n\t    var nodes = [];\n\n\t    state;\n\n\t    var classDecorators = path.node.decorators;\n\t    if (classDecorators) {\n\t      path.node.decorators = null;\n\t      classDecorators = cleanDecorators(classDecorators);\n\n\t      for (var _iterator = classDecorators, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref2;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref2 = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref2 = _i.value;\n\t        }\n\n\t        var decorator = _ref2;\n\n\t        nodes.push(buildClassDecorator({\n\t          CLASS_REF: ref,\n\t          DECORATOR: decorator\n\t        }));\n\t      }\n\t    }\n\n\t    var map = (0, _create2.default)(null);\n\n\t    for (var _iterator2 = path.get(\"body.body\"), _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref3;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref3 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref3 = _i2.value;\n\t      }\n\n\t      var method = _ref3;\n\n\t      var decorators = method.node.decorators;\n\t      if (!decorators) continue;\n\n\t      var _alias = t.toKeyAlias(method.node);\n\t      map[_alias] = map[_alias] || [];\n\t      map[_alias].push(method.node);\n\n\t      method.remove();\n\t    }\n\n\t    for (var alias in map) {\n\t      var items = map[alias];\n\n\t      items;\n\t    }\n\n\t    return nodes;\n\t  }\n\n\t  function hasDecorators(path) {\n\t    if (path.isClass()) {\n\t      if (path.node.decorators) return true;\n\n\t      for (var _iterator3 = path.node.body.body, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t        var _ref4;\n\n\t        if (_isArray3) {\n\t          if (_i3 >= _iterator3.length) break;\n\t          _ref4 = _iterator3[_i3++];\n\t        } else {\n\t          _i3 = _iterator3.next();\n\t          if (_i3.done) break;\n\t          _ref4 = _i3.value;\n\t        }\n\n\t        var method = _ref4;\n\n\t        if (method.decorators) {\n\t          return true;\n\t        }\n\t      }\n\t    } else if (path.isObjectExpression()) {\n\t      for (var _iterator4 = path.node.properties, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t        var _ref5;\n\n\t        if (_isArray4) {\n\t          if (_i4 >= _iterator4.length) break;\n\t          _ref5 = _iterator4[_i4++];\n\t        } else {\n\t          _i4 = _iterator4.next();\n\t          if (_i4.done) break;\n\t          _ref5 = _i4.value;\n\t        }\n\n\t        var prop = _ref5;\n\n\t        if (prop.decorators) {\n\t          return true;\n\t        }\n\t      }\n\t    }\n\n\t    return false;\n\t  }\n\n\t  function doError(path) {\n\t    throw path.buildCodeFrameError(\"Decorators are not officially supported yet in 6.x pending a proposal update.\\nHowever, if you need to use them you can install the legacy decorators transform with:\\n\\nnpm install babel-plugin-transform-decorators-legacy --save-dev\\n\\nand add the following line to your .babelrc file:\\n\\n{\\n  \\\"plugins\\\": [\\\"transform-decorators-legacy\\\"]\\n}\\n\\nThe repo url is: https://github.com/loganfsmyth/babel-plugin-transform-decorators-legacy.\\n    \");\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(125),\n\n\t    visitor: {\n\t      ClassExpression: function ClassExpression(path) {\n\t        if (!hasDecorators(path)) return;\n\t        doError(path);\n\n\t        (0, _babelHelperExplodeClass2.default)(path);\n\n\t        var ref = path.scope.generateDeclaredUidIdentifier(\"ref\");\n\t        var nodes = [];\n\n\t        nodes.push(t.assignmentExpression(\"=\", ref, path.node));\n\n\t        nodes = nodes.concat(transformClass(path, ref, this));\n\n\t        nodes.push(ref);\n\n\t        path.replaceWith(t.sequenceExpression(nodes));\n\t      },\n\t      ClassDeclaration: function ClassDeclaration(path) {\n\t        if (!hasDecorators(path)) return;\n\t        doError(path);\n\t        (0, _babelHelperExplodeClass2.default)(path);\n\n\t        var ref = path.node.id;\n\t        var nodes = [];\n\n\t        nodes = nodes.concat(transformClass(path, ref, this).map(function (expr) {\n\t          return t.expressionStatement(expr);\n\t        }));\n\t        nodes.push(t.expressionStatement(ref));\n\n\t        path.insertAfter(nodes);\n\t      },\n\t      ObjectExpression: function ObjectExpression(path) {\n\t        if (!hasDecorators(path)) return;\n\t        doError(path);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelHelperExplodeClass = __webpack_require__(319);\n\n\tvar _babelHelperExplodeClass2 = _interopRequireDefault(_babelHelperExplodeClass);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildClassDecorator = (0, _babelTemplate2.default)(\"\\n  CLASS_REF = DECORATOR(CLASS_REF) || CLASS_REF;\\n\");\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 206 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    inherits: __webpack_require__(198),\n\n\t    visitor: {\n\t      DoExpression: function DoExpression(path) {\n\t        var body = path.node.body.body;\n\t        if (body.length) {\n\t          path.replaceWithMultiple(body);\n\t        } else {\n\t          path.replaceWith(path.scope.buildUndefinedNode());\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 207 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelHelperReplaceSupers = __webpack_require__(193);\n\n\tvar _babelHelperReplaceSupers2 = _interopRequireDefault(_babelHelperReplaceSupers);\n\n\tvar _babelHelperOptimiseCallExpression = __webpack_require__(191);\n\n\tvar _babelHelperOptimiseCallExpression2 = _interopRequireDefault(_babelHelperOptimiseCallExpression);\n\n\tvar _babelHelperDefineMap = __webpack_require__(188);\n\n\tvar defineMap = _interopRequireWildcard(_babelHelperDefineMap);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildDerivedConstructor = (0, _babelTemplate2.default)(\"\\n  (function () {\\n    super(...arguments);\\n  })\\n\");\n\n\tvar noMethodVisitor = {\n\t  \"FunctionExpression|FunctionDeclaration\": function FunctionExpressionFunctionDeclaration(path) {\n\t    if (!path.is(\"shadow\")) {\n\t      path.skip();\n\t    }\n\t  },\n\t  Method: function Method(path) {\n\t    path.skip();\n\t  }\n\t};\n\n\tvar verifyConstructorVisitor = _babelTraverse.visitors.merge([noMethodVisitor, {\n\t  Super: function Super(path) {\n\t    if (this.isDerived && !this.hasBareSuper && !path.parentPath.isCallExpression({ callee: path.node })) {\n\t      throw path.buildCodeFrameError(\"'super.*' is not allowed before super()\");\n\t    }\n\t  },\n\n\t  CallExpression: {\n\t    exit: function exit(path) {\n\t      if (path.get(\"callee\").isSuper()) {\n\t        this.hasBareSuper = true;\n\n\t        if (!this.isDerived) {\n\t          throw path.buildCodeFrameError(\"super() is only allowed in a derived constructor\");\n\t        }\n\t      }\n\t    }\n\t  },\n\n\t  ThisExpression: function ThisExpression(path) {\n\t    if (this.isDerived && !this.hasBareSuper) {\n\t      if (!path.inShadow(\"this\")) {\n\t        throw path.buildCodeFrameError(\"'this' is not allowed before super()\");\n\t      }\n\t    }\n\t  }\n\t}]);\n\n\tvar findThisesVisitor = _babelTraverse.visitors.merge([noMethodVisitor, {\n\t  ThisExpression: function ThisExpression(path) {\n\t    this.superThises.push(path);\n\t  }\n\t}]);\n\n\tvar ClassTransformer = function () {\n\t  function ClassTransformer(path, file) {\n\t    (0, _classCallCheck3.default)(this, ClassTransformer);\n\n\t    this.parent = path.parent;\n\t    this.scope = path.scope;\n\t    this.node = path.node;\n\t    this.path = path;\n\t    this.file = file;\n\n\t    this.clearDescriptors();\n\n\t    this.instancePropBody = [];\n\t    this.instancePropRefs = {};\n\t    this.staticPropBody = [];\n\t    this.body = [];\n\n\t    this.bareSuperAfter = [];\n\t    this.bareSupers = [];\n\n\t    this.pushedConstructor = false;\n\t    this.pushedInherits = false;\n\t    this.isLoose = false;\n\n\t    this.superThises = [];\n\n\t    this.classId = this.node.id;\n\n\t    this.classRef = this.node.id ? t.identifier(this.node.id.name) : this.scope.generateUidIdentifier(\"class\");\n\n\t    this.superName = this.node.superClass || t.identifier(\"Function\");\n\t    this.isDerived = !!this.node.superClass;\n\t  }\n\n\t  ClassTransformer.prototype.run = function run() {\n\t    var _this = this;\n\n\t    var superName = this.superName;\n\t    var file = this.file;\n\t    var body = this.body;\n\n\t    var constructorBody = this.constructorBody = t.blockStatement([]);\n\t    this.constructor = this.buildConstructor();\n\n\t    var closureParams = [];\n\t    var closureArgs = [];\n\n\t    if (this.isDerived) {\n\t      closureArgs.push(superName);\n\n\t      superName = this.scope.generateUidIdentifierBasedOnNode(superName);\n\t      closureParams.push(superName);\n\n\t      this.superName = superName;\n\t    }\n\n\t    this.buildBody();\n\n\t    constructorBody.body.unshift(t.expressionStatement(t.callExpression(file.addHelper(\"classCallCheck\"), [t.thisExpression(), this.classRef])));\n\n\t    body = body.concat(this.staticPropBody.map(function (fn) {\n\t      return fn(_this.classRef);\n\t    }));\n\n\t    if (this.classId) {\n\t      if (body.length === 1) return t.toExpression(body[0]);\n\t    }\n\n\t    body.push(t.returnStatement(this.classRef));\n\n\t    var container = t.functionExpression(null, closureParams, t.blockStatement(body));\n\t    container.shadow = true;\n\t    return t.callExpression(container, closureArgs);\n\t  };\n\n\t  ClassTransformer.prototype.buildConstructor = function buildConstructor() {\n\t    var func = t.functionDeclaration(this.classRef, [], this.constructorBody);\n\t    t.inherits(func, this.node);\n\t    return func;\n\t  };\n\n\t  ClassTransformer.prototype.pushToMap = function pushToMap(node, enumerable) {\n\t    var kind = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : \"value\";\n\t    var scope = arguments[3];\n\n\t    var mutatorMap = void 0;\n\t    if (node.static) {\n\t      this.hasStaticDescriptors = true;\n\t      mutatorMap = this.staticMutatorMap;\n\t    } else {\n\t      this.hasInstanceDescriptors = true;\n\t      mutatorMap = this.instanceMutatorMap;\n\t    }\n\n\t    var map = defineMap.push(mutatorMap, node, kind, this.file, scope);\n\n\t    if (enumerable) {\n\t      map.enumerable = t.booleanLiteral(true);\n\t    }\n\n\t    return map;\n\t  };\n\n\t  ClassTransformer.prototype.constructorMeMaybe = function constructorMeMaybe() {\n\t    var hasConstructor = false;\n\t    var paths = this.path.get(\"body.body\");\n\t    for (var _iterator = paths, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var path = _ref;\n\n\t      hasConstructor = path.equals(\"kind\", \"constructor\");\n\t      if (hasConstructor) break;\n\t    }\n\t    if (hasConstructor) return;\n\n\t    var params = void 0,\n\t        body = void 0;\n\n\t    if (this.isDerived) {\n\t      var _constructor = buildDerivedConstructor().expression;\n\t      params = _constructor.params;\n\t      body = _constructor.body;\n\t    } else {\n\t      params = [];\n\t      body = t.blockStatement([]);\n\t    }\n\n\t    this.path.get(\"body\").unshiftContainer(\"body\", t.classMethod(\"constructor\", t.identifier(\"constructor\"), params, body));\n\t  };\n\n\t  ClassTransformer.prototype.buildBody = function buildBody() {\n\t    this.constructorMeMaybe();\n\t    this.pushBody();\n\t    this.verifyConstructor();\n\n\t    if (this.userConstructor) {\n\t      var constructorBody = this.constructorBody;\n\t      constructorBody.body = constructorBody.body.concat(this.userConstructor.body.body);\n\t      t.inherits(this.constructor, this.userConstructor);\n\t      t.inherits(constructorBody, this.userConstructor.body);\n\t    }\n\n\t    this.pushDescriptors();\n\t  };\n\n\t  ClassTransformer.prototype.pushBody = function pushBody() {\n\t    var classBodyPaths = this.path.get(\"body.body\");\n\n\t    for (var _iterator2 = classBodyPaths, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var path = _ref2;\n\n\t      var node = path.node;\n\n\t      if (path.isClassProperty()) {\n\t        throw path.buildCodeFrameError(\"Missing class properties transform.\");\n\t      }\n\n\t      if (node.decorators) {\n\t        throw path.buildCodeFrameError(\"Method has decorators, put the decorator plugin before the classes one.\");\n\t      }\n\n\t      if (t.isClassMethod(node)) {\n\t        var isConstructor = node.kind === \"constructor\";\n\n\t        if (isConstructor) {\n\t          path.traverse(verifyConstructorVisitor, this);\n\n\t          if (!this.hasBareSuper && this.isDerived) {\n\t            throw path.buildCodeFrameError(\"missing super() call in constructor\");\n\t          }\n\t        }\n\n\t        var replaceSupers = new _babelHelperReplaceSupers2.default({\n\t          forceSuperMemoisation: isConstructor,\n\t          methodPath: path,\n\t          methodNode: node,\n\t          objectRef: this.classRef,\n\t          superRef: this.superName,\n\t          isStatic: node.static,\n\t          isLoose: this.isLoose,\n\t          scope: this.scope,\n\t          file: this.file\n\t        }, true);\n\n\t        replaceSupers.replace();\n\n\t        if (isConstructor) {\n\t          this.pushConstructor(replaceSupers, node, path);\n\t        } else {\n\t          this.pushMethod(node, path);\n\t        }\n\t      }\n\t    }\n\t  };\n\n\t  ClassTransformer.prototype.clearDescriptors = function clearDescriptors() {\n\t    this.hasInstanceDescriptors = false;\n\t    this.hasStaticDescriptors = false;\n\n\t    this.instanceMutatorMap = {};\n\t    this.staticMutatorMap = {};\n\t  };\n\n\t  ClassTransformer.prototype.pushDescriptors = function pushDescriptors() {\n\t    this.pushInherits();\n\n\t    var body = this.body;\n\n\t    var instanceProps = void 0;\n\t    var staticProps = void 0;\n\n\t    if (this.hasInstanceDescriptors) {\n\t      instanceProps = defineMap.toClassObject(this.instanceMutatorMap);\n\t    }\n\n\t    if (this.hasStaticDescriptors) {\n\t      staticProps = defineMap.toClassObject(this.staticMutatorMap);\n\t    }\n\n\t    if (instanceProps || staticProps) {\n\t      if (instanceProps) instanceProps = defineMap.toComputedObjectFromClass(instanceProps);\n\t      if (staticProps) staticProps = defineMap.toComputedObjectFromClass(staticProps);\n\n\t      var nullNode = t.nullLiteral();\n\n\t      var args = [this.classRef, nullNode, nullNode, nullNode, nullNode];\n\n\t      if (instanceProps) args[1] = instanceProps;\n\t      if (staticProps) args[2] = staticProps;\n\n\t      if (this.instanceInitializersId) {\n\t        args[3] = this.instanceInitializersId;\n\t        body.unshift(this.buildObjectAssignment(this.instanceInitializersId));\n\t      }\n\n\t      if (this.staticInitializersId) {\n\t        args[4] = this.staticInitializersId;\n\t        body.unshift(this.buildObjectAssignment(this.staticInitializersId));\n\t      }\n\n\t      var lastNonNullIndex = 0;\n\t      for (var i = 0; i < args.length; i++) {\n\t        if (args[i] !== nullNode) lastNonNullIndex = i;\n\t      }\n\t      args = args.slice(0, lastNonNullIndex + 1);\n\n\t      body.push(t.expressionStatement(t.callExpression(this.file.addHelper(\"createClass\"), args)));\n\t    }\n\n\t    this.clearDescriptors();\n\t  };\n\n\t  ClassTransformer.prototype.buildObjectAssignment = function buildObjectAssignment(id) {\n\t    return t.variableDeclaration(\"var\", [t.variableDeclarator(id, t.objectExpression([]))]);\n\t  };\n\n\t  ClassTransformer.prototype.wrapSuperCall = function wrapSuperCall(bareSuper, superRef, thisRef, body) {\n\t    var bareSuperNode = bareSuper.node;\n\n\t    if (this.isLoose) {\n\t      bareSuperNode.arguments.unshift(t.thisExpression());\n\t      if (bareSuperNode.arguments.length === 2 && t.isSpreadElement(bareSuperNode.arguments[1]) && t.isIdentifier(bareSuperNode.arguments[1].argument, { name: \"arguments\" })) {\n\t        bareSuperNode.arguments[1] = bareSuperNode.arguments[1].argument;\n\t        bareSuperNode.callee = t.memberExpression(superRef, t.identifier(\"apply\"));\n\t      } else {\n\t        bareSuperNode.callee = t.memberExpression(superRef, t.identifier(\"call\"));\n\t      }\n\t    } else {\n\t      bareSuperNode = (0, _babelHelperOptimiseCallExpression2.default)(t.logicalExpression(\"||\", t.memberExpression(this.classRef, t.identifier(\"__proto__\")), t.callExpression(t.memberExpression(t.identifier(\"Object\"), t.identifier(\"getPrototypeOf\")), [this.classRef])), t.thisExpression(), bareSuperNode.arguments);\n\t    }\n\n\t    var call = t.callExpression(this.file.addHelper(\"possibleConstructorReturn\"), [t.thisExpression(), bareSuperNode]);\n\n\t    var bareSuperAfter = this.bareSuperAfter.map(function (fn) {\n\t      return fn(thisRef);\n\t    });\n\n\t    if (bareSuper.parentPath.isExpressionStatement() && bareSuper.parentPath.container === body.node.body && body.node.body.length - 1 === bareSuper.parentPath.key) {\n\n\t      if (this.superThises.length || bareSuperAfter.length) {\n\t        bareSuper.scope.push({ id: thisRef });\n\t        call = t.assignmentExpression(\"=\", thisRef, call);\n\t      }\n\n\t      if (bareSuperAfter.length) {\n\t        call = t.toSequenceExpression([call].concat(bareSuperAfter, [thisRef]));\n\t      }\n\n\t      bareSuper.parentPath.replaceWith(t.returnStatement(call));\n\t    } else {\n\t      bareSuper.replaceWithMultiple([t.variableDeclaration(\"var\", [t.variableDeclarator(thisRef, call)])].concat(bareSuperAfter, [t.expressionStatement(thisRef)]));\n\t    }\n\t  };\n\n\t  ClassTransformer.prototype.verifyConstructor = function verifyConstructor() {\n\t    var _this2 = this;\n\n\t    if (!this.isDerived) return;\n\n\t    var path = this.userConstructorPath;\n\t    var body = path.get(\"body\");\n\n\t    path.traverse(findThisesVisitor, this);\n\n\t    var guaranteedSuperBeforeFinish = !!this.bareSupers.length;\n\n\t    var superRef = this.superName || t.identifier(\"Function\");\n\t    var thisRef = path.scope.generateUidIdentifier(\"this\");\n\n\t    for (var _iterator3 = this.bareSupers, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var bareSuper = _ref3;\n\n\t      this.wrapSuperCall(bareSuper, superRef, thisRef, body);\n\n\t      if (guaranteedSuperBeforeFinish) {\n\t        bareSuper.find(function (parentPath) {\n\t          if (parentPath === path) {\n\t            return true;\n\t          }\n\n\t          if (parentPath.isLoop() || parentPath.isConditional()) {\n\t            guaranteedSuperBeforeFinish = false;\n\t            return true;\n\t          }\n\t        });\n\t      }\n\t    }\n\n\t    for (var _iterator4 = this.superThises, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t      var _ref4;\n\n\t      if (_isArray4) {\n\t        if (_i4 >= _iterator4.length) break;\n\t        _ref4 = _iterator4[_i4++];\n\t      } else {\n\t        _i4 = _iterator4.next();\n\t        if (_i4.done) break;\n\t        _ref4 = _i4.value;\n\t      }\n\n\t      var thisPath = _ref4;\n\n\t      thisPath.replaceWith(thisRef);\n\t    }\n\n\t    var wrapReturn = function wrapReturn(returnArg) {\n\t      return t.callExpression(_this2.file.addHelper(\"possibleConstructorReturn\"), [thisRef].concat(returnArg || []));\n\t    };\n\n\t    var bodyPaths = body.get(\"body\");\n\t    if (bodyPaths.length && !bodyPaths.pop().isReturnStatement()) {\n\t      body.pushContainer(\"body\", t.returnStatement(guaranteedSuperBeforeFinish ? thisRef : wrapReturn()));\n\t    }\n\n\t    for (var _iterator5 = this.superReturns, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t      var _ref5;\n\n\t      if (_isArray5) {\n\t        if (_i5 >= _iterator5.length) break;\n\t        _ref5 = _iterator5[_i5++];\n\t      } else {\n\t        _i5 = _iterator5.next();\n\t        if (_i5.done) break;\n\t        _ref5 = _i5.value;\n\t      }\n\n\t      var returnPath = _ref5;\n\n\t      if (returnPath.node.argument) {\n\t        var ref = returnPath.scope.generateDeclaredUidIdentifier(\"ret\");\n\t        returnPath.get(\"argument\").replaceWithMultiple([t.assignmentExpression(\"=\", ref, returnPath.node.argument), wrapReturn(ref)]);\n\t      } else {\n\t        returnPath.get(\"argument\").replaceWith(wrapReturn());\n\t      }\n\t    }\n\t  };\n\n\t  ClassTransformer.prototype.pushMethod = function pushMethod(node, path) {\n\t    var scope = path ? path.scope : this.scope;\n\n\t    if (node.kind === \"method\") {\n\t      if (this._processMethod(node, scope)) return;\n\t    }\n\n\t    this.pushToMap(node, false, null, scope);\n\t  };\n\n\t  ClassTransformer.prototype._processMethod = function _processMethod() {\n\t    return false;\n\t  };\n\n\t  ClassTransformer.prototype.pushConstructor = function pushConstructor(replaceSupers, method, path) {\n\t    this.bareSupers = replaceSupers.bareSupers;\n\t    this.superReturns = replaceSupers.returns;\n\n\t    if (path.scope.hasOwnBinding(this.classRef.name)) {\n\t      path.scope.rename(this.classRef.name);\n\t    }\n\n\t    var construct = this.constructor;\n\n\t    this.userConstructorPath = path;\n\t    this.userConstructor = method;\n\t    this.hasConstructor = true;\n\n\t    t.inheritsComments(construct, method);\n\n\t    construct._ignoreUserWhitespace = true;\n\t    construct.params = method.params;\n\n\t    t.inherits(construct.body, method.body);\n\t    construct.body.directives = method.body.directives;\n\n\t    this._pushConstructor();\n\t  };\n\n\t  ClassTransformer.prototype._pushConstructor = function _pushConstructor() {\n\t    if (this.pushedConstructor) return;\n\t    this.pushedConstructor = true;\n\n\t    if (this.hasInstanceDescriptors || this.hasStaticDescriptors) {\n\t      this.pushDescriptors();\n\t    }\n\n\t    this.body.push(this.constructor);\n\n\t    this.pushInherits();\n\t  };\n\n\t  ClassTransformer.prototype.pushInherits = function pushInherits() {\n\t    if (!this.isDerived || this.pushedInherits) return;\n\n\t    this.pushedInherits = true;\n\t    this.body.unshift(t.expressionStatement(t.callExpression(this.file.addHelper(\"inherits\"), [this.classRef, this.superName])));\n\t  };\n\n\t  return ClassTransformer;\n\t}();\n\n\texports.default = ClassTransformer;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 208 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var IGNORE_REASSIGNMENT_SYMBOL = (0, _symbol2.default)();\n\n\t  var reassignmentVisitor = {\n\t    \"AssignmentExpression|UpdateExpression\": function AssignmentExpressionUpdateExpression(path) {\n\t      if (path.node[IGNORE_REASSIGNMENT_SYMBOL]) return;\n\t      path.node[IGNORE_REASSIGNMENT_SYMBOL] = true;\n\n\t      var arg = path.get(path.isAssignmentExpression() ? \"left\" : \"argument\");\n\t      if (!arg.isIdentifier()) return;\n\n\t      var name = arg.node.name;\n\n\t      if (this.scope.getBinding(name) !== path.scope.getBinding(name)) return;\n\n\t      var exportedNames = this.exports[name];\n\t      if (!exportedNames) return;\n\n\t      var node = path.node;\n\n\t      var isPostUpdateExpression = path.isUpdateExpression() && !node.prefix;\n\t      if (isPostUpdateExpression) {\n\t        if (node.operator === \"++\") node = t.binaryExpression(\"+\", node.argument, t.numericLiteral(1));else if (node.operator === \"--\") node = t.binaryExpression(\"-\", node.argument, t.numericLiteral(1));else isPostUpdateExpression = false;\n\t      }\n\n\t      for (var _iterator = exportedNames, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref2;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref2 = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref2 = _i.value;\n\t        }\n\n\t        var exportedName = _ref2;\n\n\t        node = this.buildCall(exportedName, node).expression;\n\t      }\n\n\t      if (isPostUpdateExpression) node = t.sequenceExpression([node, path.node]);\n\n\t      path.replaceWith(node);\n\t    }\n\t  };\n\n\t  return {\n\t    visitor: {\n\t      CallExpression: function CallExpression(path, state) {\n\t        if (path.node.callee.type === TYPE_IMPORT) {\n\t          var contextIdent = state.contextIdent;\n\t          path.replaceWith(t.callExpression(t.memberExpression(contextIdent, t.identifier(\"import\")), path.node.arguments));\n\t        }\n\t      },\n\t      ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t        if (path.node.name == \"__moduleName\" && !path.scope.hasBinding(\"__moduleName\")) {\n\t          path.replaceWith(t.memberExpression(state.contextIdent, t.identifier(\"id\")));\n\t        }\n\t      },\n\n\t      Program: {\n\t        enter: function enter(path, state) {\n\t          state.contextIdent = path.scope.generateUidIdentifier(\"context\");\n\t        },\n\t        exit: function exit(path, state) {\n\t          var exportIdent = path.scope.generateUidIdentifier(\"export\");\n\t          var contextIdent = state.contextIdent;\n\n\t          var exportNames = (0, _create2.default)(null);\n\t          var modules = [];\n\n\t          var beforeBody = [];\n\t          var setters = [];\n\t          var sources = [];\n\t          var variableIds = [];\n\t          var removedPaths = [];\n\n\t          function addExportName(key, val) {\n\t            exportNames[key] = exportNames[key] || [];\n\t            exportNames[key].push(val);\n\t          }\n\n\t          function pushModule(source, key, specifiers) {\n\t            var module = void 0;\n\t            modules.forEach(function (m) {\n\t              if (m.key === source) {\n\t                module = m;\n\t              }\n\t            });\n\t            if (!module) {\n\t              modules.push(module = { key: source, imports: [], exports: [] });\n\t            }\n\t            module[key] = module[key].concat(specifiers);\n\t          }\n\n\t          function buildExportCall(name, val) {\n\t            return t.expressionStatement(t.callExpression(exportIdent, [t.stringLiteral(name), val]));\n\t          }\n\n\t          var body = path.get(\"body\");\n\n\t          var canHoist = true;\n\t          for (var _iterator2 = body, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t            var _ref3;\n\n\t            if (_isArray2) {\n\t              if (_i2 >= _iterator2.length) break;\n\t              _ref3 = _iterator2[_i2++];\n\t            } else {\n\t              _i2 = _iterator2.next();\n\t              if (_i2.done) break;\n\t              _ref3 = _i2.value;\n\t            }\n\n\t            var _path = _ref3;\n\n\t            if (_path.isExportDeclaration()) _path = _path.get(\"declaration\");\n\t            if (_path.isVariableDeclaration() && _path.node.kind !== \"var\") {\n\t              canHoist = false;\n\t              break;\n\t            }\n\t          }\n\n\t          for (var _iterator3 = body, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t            var _ref4;\n\n\t            if (_isArray3) {\n\t              if (_i3 >= _iterator3.length) break;\n\t              _ref4 = _iterator3[_i3++];\n\t            } else {\n\t              _i3 = _iterator3.next();\n\t              if (_i3.done) break;\n\t              _ref4 = _i3.value;\n\t            }\n\n\t            var _path2 = _ref4;\n\n\t            if (canHoist && _path2.isFunctionDeclaration()) {\n\t              beforeBody.push(_path2.node);\n\t              removedPaths.push(_path2);\n\t            } else if (_path2.isImportDeclaration()) {\n\t              var source = _path2.node.source.value;\n\t              pushModule(source, \"imports\", _path2.node.specifiers);\n\t              for (var name in _path2.getBindingIdentifiers()) {\n\t                _path2.scope.removeBinding(name);\n\t                variableIds.push(t.identifier(name));\n\t              }\n\t              _path2.remove();\n\t            } else if (_path2.isExportAllDeclaration()) {\n\t              pushModule(_path2.node.source.value, \"exports\", _path2.node);\n\t              _path2.remove();\n\t            } else if (_path2.isExportDefaultDeclaration()) {\n\t              var declar = _path2.get(\"declaration\");\n\t              if (declar.isClassDeclaration() || declar.isFunctionDeclaration()) {\n\t                var id = declar.node.id;\n\t                var nodes = [];\n\n\t                if (id) {\n\t                  nodes.push(declar.node);\n\t                  nodes.push(buildExportCall(\"default\", id));\n\t                  addExportName(id.name, \"default\");\n\t                } else {\n\t                  nodes.push(buildExportCall(\"default\", t.toExpression(declar.node)));\n\t                }\n\n\t                if (!canHoist || declar.isClassDeclaration()) {\n\t                  _path2.replaceWithMultiple(nodes);\n\t                } else {\n\t                  beforeBody = beforeBody.concat(nodes);\n\t                  removedPaths.push(_path2);\n\t                }\n\t              } else {\n\t                _path2.replaceWith(buildExportCall(\"default\", declar.node));\n\t              }\n\t            } else if (_path2.isExportNamedDeclaration()) {\n\t              var _declar = _path2.get(\"declaration\");\n\n\t              if (_declar.node) {\n\t                _path2.replaceWith(_declar);\n\n\t                var _nodes = [];\n\t                var bindingIdentifiers = void 0;\n\t                if (_path2.isFunction()) {\n\t                  var node = _declar.node;\n\t                  var _name = node.id.name;\n\t                  if (canHoist) {\n\t                    addExportName(_name, _name);\n\t                    beforeBody.push(node);\n\t                    beforeBody.push(buildExportCall(_name, node.id));\n\t                    removedPaths.push(_path2);\n\t                  } else {\n\t                    var _bindingIdentifiers;\n\n\t                    bindingIdentifiers = (_bindingIdentifiers = {}, _bindingIdentifiers[_name] = node.id, _bindingIdentifiers);\n\t                  }\n\t                } else {\n\t                  bindingIdentifiers = _declar.getBindingIdentifiers();\n\t                }\n\t                for (var _name2 in bindingIdentifiers) {\n\t                  addExportName(_name2, _name2);\n\t                  _nodes.push(buildExportCall(_name2, t.identifier(_name2)));\n\t                }\n\t                _path2.insertAfter(_nodes);\n\t              } else {\n\t                var specifiers = _path2.node.specifiers;\n\t                if (specifiers && specifiers.length) {\n\t                  if (_path2.node.source) {\n\t                    pushModule(_path2.node.source.value, \"exports\", specifiers);\n\t                    _path2.remove();\n\t                  } else {\n\t                    var _nodes2 = [];\n\n\t                    for (var _iterator7 = specifiers, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : (0, _getIterator3.default)(_iterator7);;) {\n\t                      var _ref8;\n\n\t                      if (_isArray7) {\n\t                        if (_i7 >= _iterator7.length) break;\n\t                        _ref8 = _iterator7[_i7++];\n\t                      } else {\n\t                        _i7 = _iterator7.next();\n\t                        if (_i7.done) break;\n\t                        _ref8 = _i7.value;\n\t                      }\n\n\t                      var specifier = _ref8;\n\n\t                      _nodes2.push(buildExportCall(specifier.exported.name, specifier.local));\n\t                      addExportName(specifier.local.name, specifier.exported.name);\n\t                    }\n\n\t                    _path2.replaceWithMultiple(_nodes2);\n\t                  }\n\t                }\n\t              }\n\t            }\n\t          }\n\n\t          modules.forEach(function (specifiers) {\n\t            var setterBody = [];\n\t            var target = path.scope.generateUidIdentifier(specifiers.key);\n\n\t            for (var _iterator4 = specifiers.imports, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t              var _ref5;\n\n\t              if (_isArray4) {\n\t                if (_i4 >= _iterator4.length) break;\n\t                _ref5 = _iterator4[_i4++];\n\t              } else {\n\t                _i4 = _iterator4.next();\n\t                if (_i4.done) break;\n\t                _ref5 = _i4.value;\n\t              }\n\n\t              var specifier = _ref5;\n\n\t              if (t.isImportNamespaceSpecifier(specifier)) {\n\t                setterBody.push(t.expressionStatement(t.assignmentExpression(\"=\", specifier.local, target)));\n\t              } else if (t.isImportDefaultSpecifier(specifier)) {\n\t                specifier = t.importSpecifier(specifier.local, t.identifier(\"default\"));\n\t              }\n\n\t              if (t.isImportSpecifier(specifier)) {\n\t                setterBody.push(t.expressionStatement(t.assignmentExpression(\"=\", specifier.local, t.memberExpression(target, specifier.imported))));\n\t              }\n\t            }\n\n\t            if (specifiers.exports.length) {\n\t              var exportObjRef = path.scope.generateUidIdentifier(\"exportObj\");\n\n\t              setterBody.push(t.variableDeclaration(\"var\", [t.variableDeclarator(exportObjRef, t.objectExpression([]))]));\n\n\t              for (var _iterator5 = specifiers.exports, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t                var _ref6;\n\n\t                if (_isArray5) {\n\t                  if (_i5 >= _iterator5.length) break;\n\t                  _ref6 = _iterator5[_i5++];\n\t                } else {\n\t                  _i5 = _iterator5.next();\n\t                  if (_i5.done) break;\n\t                  _ref6 = _i5.value;\n\t                }\n\n\t                var node = _ref6;\n\n\t                if (t.isExportAllDeclaration(node)) {\n\t                  setterBody.push(buildExportAll({\n\t                    KEY: path.scope.generateUidIdentifier(\"key\"),\n\t                    EXPORT_OBJ: exportObjRef,\n\t                    TARGET: target\n\t                  }));\n\t                } else if (t.isExportSpecifier(node)) {\n\t                  setterBody.push(t.expressionStatement(t.assignmentExpression(\"=\", t.memberExpression(exportObjRef, node.exported), t.memberExpression(target, node.local))));\n\t                } else {}\n\t              }\n\n\t              setterBody.push(t.expressionStatement(t.callExpression(exportIdent, [exportObjRef])));\n\t            }\n\n\t            sources.push(t.stringLiteral(specifiers.key));\n\t            setters.push(t.functionExpression(null, [target], t.blockStatement(setterBody)));\n\t          });\n\n\t          var moduleName = this.getModuleName();\n\t          if (moduleName) moduleName = t.stringLiteral(moduleName);\n\n\t          if (canHoist) {\n\t            (0, _babelHelperHoistVariables2.default)(path, function (id) {\n\t              return variableIds.push(id);\n\t            });\n\t          }\n\n\t          if (variableIds.length) {\n\t            beforeBody.unshift(t.variableDeclaration(\"var\", variableIds.map(function (id) {\n\t              return t.variableDeclarator(id);\n\t            })));\n\t          }\n\n\t          path.traverse(reassignmentVisitor, {\n\t            exports: exportNames,\n\t            buildCall: buildExportCall,\n\t            scope: path.scope\n\t          });\n\n\t          for (var _iterator6 = removedPaths, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : (0, _getIterator3.default)(_iterator6);;) {\n\t            var _ref7;\n\n\t            if (_isArray6) {\n\t              if (_i6 >= _iterator6.length) break;\n\t              _ref7 = _iterator6[_i6++];\n\t            } else {\n\t              _i6 = _iterator6.next();\n\t              if (_i6.done) break;\n\t              _ref7 = _i6.value;\n\t            }\n\n\t            var _path3 = _ref7;\n\n\t            _path3.remove();\n\t          }\n\n\t          path.node.body = [buildTemplate({\n\t            SYSTEM_REGISTER: t.memberExpression(t.identifier(state.opts.systemGlobal || \"System\"), t.identifier(\"register\")),\n\t            BEFORE_BODY: beforeBody,\n\t            MODULE_NAME: moduleName,\n\t            SETTERS: setters,\n\t            SOURCES: sources,\n\t            BODY: path.node.body,\n\t            EXPORT_IDENTIFIER: exportIdent,\n\t            CONTEXT_IDENTIFIER: contextIdent\n\t          })];\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperHoistVariables = __webpack_require__(190);\n\n\tvar _babelHelperHoistVariables2 = _interopRequireDefault(_babelHelperHoistVariables);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildTemplate = (0, _babelTemplate2.default)(\"\\n  SYSTEM_REGISTER(MODULE_NAME, [SOURCES], function (EXPORT_IDENTIFIER, CONTEXT_IDENTIFIER) {\\n    \\\"use strict\\\";\\n    BEFORE_BODY;\\n    return {\\n      setters: [SETTERS],\\n      execute: function () {\\n        BODY;\\n      }\\n    };\\n  });\\n\");\n\n\tvar buildExportAll = (0, _babelTemplate2.default)(\"\\n  for (var KEY in TARGET) {\\n    if (KEY !== \\\"default\\\" && KEY !== \\\"__esModule\\\") EXPORT_OBJ[KEY] = TARGET[KEY];\\n  }\\n\");\n\n\tvar TYPE_IMPORT = \"Import\";\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 209 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function isValidDefine(path) {\n\t    if (!path.isExpressionStatement()) return;\n\n\t    var expr = path.get(\"expression\");\n\t    if (!expr.isCallExpression()) return false;\n\t    if (!expr.get(\"callee\").isIdentifier({ name: \"define\" })) return false;\n\n\t    var args = expr.get(\"arguments\");\n\t    if (args.length === 3 && !args.shift().isStringLiteral()) return false;\n\t    if (args.length !== 2) return false;\n\t    if (!args.shift().isArrayExpression()) return false;\n\t    if (!args.shift().isFunctionExpression()) return false;\n\n\t    return true;\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(131),\n\n\t    visitor: {\n\t      Program: {\n\t        exit: function exit(path, state) {\n\t          var last = path.get(\"body\").pop();\n\t          if (!isValidDefine(last)) return;\n\n\t          var call = last.node.expression;\n\t          var args = call.arguments;\n\n\t          var moduleName = args.length === 3 ? args.shift() : null;\n\t          var amdArgs = call.arguments[0];\n\t          var func = call.arguments[1];\n\t          var browserGlobals = state.opts.globals || {};\n\n\t          var commonArgs = amdArgs.elements.map(function (arg) {\n\t            if (arg.value === \"module\" || arg.value === \"exports\") {\n\t              return t.identifier(arg.value);\n\t            } else {\n\t              return t.callExpression(t.identifier(\"require\"), [arg]);\n\t            }\n\t          });\n\n\t          var browserArgs = amdArgs.elements.map(function (arg) {\n\t            if (arg.value === \"module\") {\n\t              return t.identifier(\"mod\");\n\t            } else if (arg.value === \"exports\") {\n\t              return t.memberExpression(t.identifier(\"mod\"), t.identifier(\"exports\"));\n\t            } else {\n\t              var memberExpression = void 0;\n\n\t              if (state.opts.exactGlobals) {\n\t                var globalRef = browserGlobals[arg.value];\n\t                if (globalRef) {\n\t                  memberExpression = globalRef.split(\".\").reduce(function (accum, curr) {\n\t                    return t.memberExpression(accum, t.identifier(curr));\n\t                  }, t.identifier(\"global\"));\n\t                } else {\n\t                  memberExpression = t.memberExpression(t.identifier(\"global\"), t.identifier(t.toIdentifier(arg.value)));\n\t                }\n\t              } else {\n\t                var requireName = (0, _path.basename)(arg.value, (0, _path.extname)(arg.value));\n\t                var globalName = browserGlobals[requireName] || requireName;\n\t                memberExpression = t.memberExpression(t.identifier(\"global\"), t.identifier(t.toIdentifier(globalName)));\n\t              }\n\n\t              return memberExpression;\n\t            }\n\t          });\n\n\t          var moduleNameOrBasename = moduleName ? moduleName.value : this.file.opts.basename;\n\t          var globalToAssign = t.memberExpression(t.identifier(\"global\"), t.identifier(t.toIdentifier(moduleNameOrBasename)));\n\t          var prerequisiteAssignments = null;\n\n\t          if (state.opts.exactGlobals) {\n\t            var globalName = browserGlobals[moduleNameOrBasename];\n\n\t            if (globalName) {\n\t              prerequisiteAssignments = [];\n\n\t              var members = globalName.split(\".\");\n\t              globalToAssign = members.slice(1).reduce(function (accum, curr) {\n\t                prerequisiteAssignments.push(buildPrerequisiteAssignment({ GLOBAL_REFERENCE: accum }));\n\t                return t.memberExpression(accum, t.identifier(curr));\n\t              }, t.memberExpression(t.identifier(\"global\"), t.identifier(members[0])));\n\t            }\n\t          }\n\n\t          var globalExport = buildGlobalExport({\n\t            BROWSER_ARGUMENTS: browserArgs,\n\t            PREREQUISITE_ASSIGNMENTS: prerequisiteAssignments,\n\t            GLOBAL_TO_ASSIGN: globalToAssign\n\t          });\n\n\t          last.replaceWith(buildWrapper({\n\t            MODULE_NAME: moduleName,\n\t            AMD_ARGUMENTS: amdArgs,\n\t            COMMON_ARGUMENTS: commonArgs,\n\t            GLOBAL_EXPORT: globalExport,\n\t            FUNC: func\n\t          }));\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildPrerequisiteAssignment = (0, _babelTemplate2.default)(\"\\n  GLOBAL_REFERENCE = GLOBAL_REFERENCE || {}\\n\");\n\n\tvar buildGlobalExport = (0, _babelTemplate2.default)(\"\\n  var mod = { exports: {} };\\n  factory(BROWSER_ARGUMENTS);\\n  PREREQUISITE_ASSIGNMENTS\\n  GLOBAL_TO_ASSIGN = mod.exports;\\n\");\n\n\tvar buildWrapper = (0, _babelTemplate2.default)(\"\\n  (function (global, factory) {\\n    if (typeof define === \\\"function\\\" && define.amd) {\\n      define(MODULE_NAME, AMD_ARGUMENTS, factory);\\n    } else if (typeof exports !== \\\"undefined\\\") {\\n      factory(COMMON_ARGUMENTS);\\n    } else {\\n      GLOBAL_EXPORT\\n    }\\n  })(this, FUNC);\\n\");\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 210 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function build(node, nodes, scope) {\n\t    var first = node.specifiers[0];\n\t    if (!t.isExportNamespaceSpecifier(first) && !t.isExportDefaultSpecifier(first)) return;\n\n\t    var specifier = node.specifiers.shift();\n\t    var uid = scope.generateUidIdentifier(specifier.exported.name);\n\n\t    var newSpecifier = void 0;\n\t    if (t.isExportNamespaceSpecifier(specifier)) {\n\t      newSpecifier = t.importNamespaceSpecifier(uid);\n\t    } else {\n\t      newSpecifier = t.importDefaultSpecifier(uid);\n\t    }\n\n\t    nodes.push(t.importDeclaration([newSpecifier], node.source));\n\t    nodes.push(t.exportNamedDeclaration(null, [t.exportSpecifier(uid, specifier.exported)]));\n\n\t    build(node, nodes, scope);\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(200),\n\n\t    visitor: {\n\t      ExportNamedDeclaration: function ExportNamedDeclaration(path) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var nodes = [];\n\t        build(node, nodes, scope);\n\t        if (!nodes.length) return;\n\n\t        if (node.specifiers.length >= 1) {\n\t          nodes.push(node);\n\t        }\n\t        path.replaceWithMultiple(nodes);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 211 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var FLOW_DIRECTIVE = \"@flow\";\n\n\t  return {\n\t    inherits: __webpack_require__(126),\n\n\t    visitor: {\n\t      Program: function Program(path, _ref2) {\n\t        var comments = _ref2.file.ast.comments;\n\n\t        for (var _iterator = comments, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref3;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref3 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref3 = _i.value;\n\t          }\n\n\t          var comment = _ref3;\n\n\t          if (comment.value.indexOf(FLOW_DIRECTIVE) >= 0) {\n\t            comment.value = comment.value.replace(FLOW_DIRECTIVE, \"\");\n\n\t            if (!comment.value.replace(/\\*/g, \"\").trim()) comment.ignore = true;\n\t          }\n\t        }\n\t      },\n\t      Flow: function Flow(path) {\n\t        path.remove();\n\t      },\n\t      ClassProperty: function ClassProperty(path) {\n\t        path.node.variance = null;\n\t        path.node.typeAnnotation = null;\n\t        if (!path.node.value) path.remove();\n\t      },\n\t      Class: function Class(path) {\n\t        path.node.implements = null;\n\n\t        path.get(\"body.body\").forEach(function (child) {\n\t          if (child.isClassProperty()) {\n\t            child.node.typeAnnotation = null;\n\t            if (!child.node.value) child.remove();\n\t          }\n\t        });\n\t      },\n\t      AssignmentPattern: function AssignmentPattern(_ref4) {\n\t        var node = _ref4.node;\n\n\t        node.left.optional = false;\n\t      },\n\t      Function: function Function(_ref5) {\n\t        var node = _ref5.node;\n\n\t        for (var i = 0; i < node.params.length; i++) {\n\t          var param = node.params[i];\n\t          param.optional = false;\n\t        }\n\t      },\n\t      TypeCastExpression: function TypeCastExpression(path) {\n\t        var node = path.node;\n\n\t        do {\n\t          node = node.expression;\n\t        } while (t.isTypeCastExpression(node));\n\t        path.replaceWith(node);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 212 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function getTempId(scope) {\n\t    var id = scope.path.getData(\"functionBind\");\n\t    if (id) return id;\n\n\t    id = scope.generateDeclaredUidIdentifier(\"context\");\n\t    return scope.path.setData(\"functionBind\", id);\n\t  }\n\n\t  function getStaticContext(bind, scope) {\n\t    var object = bind.object || bind.callee.object;\n\t    return scope.isStatic(object) && object;\n\t  }\n\n\t  function inferBindContext(bind, scope) {\n\t    var staticContext = getStaticContext(bind, scope);\n\t    if (staticContext) return staticContext;\n\n\t    var tempId = getTempId(scope);\n\t    if (bind.object) {\n\t      bind.callee = t.sequenceExpression([t.assignmentExpression(\"=\", tempId, bind.object), bind.callee]);\n\t    } else {\n\t      bind.callee.object = t.assignmentExpression(\"=\", tempId, bind.callee.object);\n\t    }\n\t    return tempId;\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(201),\n\n\t    visitor: {\n\t      CallExpression: function CallExpression(_ref2) {\n\t        var node = _ref2.node,\n\t            scope = _ref2.scope;\n\n\t        var bind = node.callee;\n\t        if (!t.isBindExpression(bind)) return;\n\n\t        var context = inferBindContext(bind, scope);\n\t        node.callee = t.memberExpression(bind.callee, t.identifier(\"call\"));\n\t        node.arguments.unshift(context);\n\t      },\n\t      BindExpression: function BindExpression(path) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var context = inferBindContext(node, scope);\n\t        path.replaceWith(t.callExpression(t.memberExpression(node.callee, t.identifier(\"bind\")), [context]));\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 213 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function hasRestProperty(path) {\n\t    var foundRestProperty = false;\n\t    path.traverse({\n\t      RestProperty: function RestProperty() {\n\t        foundRestProperty = true;\n\t        path.stop();\n\t      }\n\t    });\n\t    return foundRestProperty;\n\t  }\n\n\t  function hasSpread(node) {\n\t    for (var _iterator = node.properties, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref2;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref2 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref2 = _i.value;\n\t      }\n\n\t      var prop = _ref2;\n\n\t      if (t.isSpreadProperty(prop)) {\n\t        return true;\n\t      }\n\t    }\n\t    return false;\n\t  }\n\n\t  function createObjectSpread(file, props, objRef) {\n\t    var restProperty = props.pop();\n\n\t    var keys = [];\n\t    for (var _iterator2 = props, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref3;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref3 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref3 = _i2.value;\n\t      }\n\n\t      var prop = _ref3;\n\n\t      var key = prop.key;\n\t      if (t.isIdentifier(key) && !prop.computed) {\n\t        key = t.stringLiteral(prop.key.name);\n\t      }\n\t      keys.push(key);\n\t    }\n\n\t    return [restProperty.argument, t.callExpression(file.addHelper(\"objectWithoutProperties\"), [objRef, t.arrayExpression(keys)])];\n\t  }\n\n\t  function replaceRestProperty(parentPath, paramPath, i, numParams) {\n\t    if (paramPath.isAssignmentPattern()) {\n\t      replaceRestProperty(parentPath, paramPath.get(\"left\"), i, numParams);\n\t      return;\n\t    }\n\n\t    if (paramPath.isObjectPattern() && hasRestProperty(paramPath)) {\n\t      var uid = parentPath.scope.generateUidIdentifier(\"ref\");\n\n\t      var declar = t.variableDeclaration(\"let\", [t.variableDeclarator(paramPath.node, uid)]);\n\t      declar._blockHoist = i ? numParams - i : 1;\n\n\t      parentPath.ensureBlock();\n\t      parentPath.get(\"body\").unshiftContainer(\"body\", declar);\n\t      paramPath.replaceWith(uid);\n\t    }\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(202),\n\n\t    visitor: {\n\t      Function: function Function(path) {\n\t        var params = path.get(\"params\");\n\t        for (var i = 0; i < params.length; i++) {\n\t          replaceRestProperty(params[i].parentPath, params[i], i, params.length);\n\t        }\n\t      },\n\t      VariableDeclarator: function VariableDeclarator(path, file) {\n\t        if (!path.get(\"id\").isObjectPattern()) {\n\t          return;\n\t        }\n\n\t        var insertionPath = path;\n\n\t        path.get(\"id\").traverse({\n\t          RestProperty: function RestProperty(path) {\n\t            if (this.originalPath.node.id.properties.length > 1 && !t.isIdentifier(this.originalPath.node.init)) {\n\t              var initRef = path.scope.generateUidIdentifierBasedOnNode(this.originalPath.node.init, \"ref\");\n\n\t              this.originalPath.insertBefore(t.variableDeclarator(initRef, this.originalPath.node.init));\n\n\t              this.originalPath.replaceWith(t.variableDeclarator(this.originalPath.node.id, initRef));\n\n\t              return;\n\t            }\n\n\t            var ref = this.originalPath.node.init;\n\t            var refPropertyPath = [];\n\n\t            path.findParent(function (path) {\n\t              if (path.isObjectProperty()) {\n\t                refPropertyPath.unshift(path.node.key.name);\n\t              } else if (path.isVariableDeclarator()) {\n\t                return true;\n\t              }\n\t            });\n\n\t            if (refPropertyPath.length) {\n\t              refPropertyPath.forEach(function (prop) {\n\t                ref = t.memberExpression(ref, t.identifier(prop));\n\t              });\n\t            }\n\n\t            var _createObjectSpread = createObjectSpread(file, path.parentPath.node.properties, ref),\n\t                argument = _createObjectSpread[0],\n\t                callExpression = _createObjectSpread[1];\n\n\t            insertionPath.insertAfter(t.variableDeclarator(argument, callExpression));\n\n\t            insertionPath = insertionPath.getSibling(insertionPath.key + 1);\n\n\t            if (path.parentPath.node.properties.length === 0) {\n\t              path.findParent(function (path) {\n\t                return path.isObjectProperty() || path.isVariableDeclarator();\n\t              }).remove();\n\t            }\n\t          }\n\t        }, {\n\t          originalPath: path\n\t        });\n\t      },\n\t      ExportNamedDeclaration: function ExportNamedDeclaration(path) {\n\t        var declaration = path.get(\"declaration\");\n\t        if (!declaration.isVariableDeclaration()) return;\n\t        if (!hasRestProperty(declaration)) return;\n\n\t        var specifiers = [];\n\n\t        for (var name in path.getOuterBindingIdentifiers(path)) {\n\t          var id = t.identifier(name);\n\t          specifiers.push(t.exportSpecifier(id, id));\n\t        }\n\n\t        path.replaceWith(declaration.node);\n\t        path.insertAfter(t.exportNamedDeclaration(null, specifiers));\n\t      },\n\t      CatchClause: function CatchClause(path) {\n\t        var paramPath = path.get(\"param\");\n\t        replaceRestProperty(paramPath.parentPath, paramPath);\n\t      },\n\t      AssignmentExpression: function AssignmentExpression(path, file) {\n\t        var leftPath = path.get(\"left\");\n\t        if (leftPath.isObjectPattern() && hasRestProperty(leftPath)) {\n\t          var nodes = [];\n\n\t          var ref = void 0;\n\t          if (path.isCompletionRecord() || path.parentPath.isExpressionStatement()) {\n\t            ref = path.scope.generateUidIdentifierBasedOnNode(path.node.right, \"ref\");\n\n\t            nodes.push(t.variableDeclaration(\"var\", [t.variableDeclarator(ref, path.node.right)]));\n\t          }\n\n\t          var _createObjectSpread2 = createObjectSpread(file, path.node.left.properties, ref),\n\t              argument = _createObjectSpread2[0],\n\t              callExpression = _createObjectSpread2[1];\n\n\t          var nodeWithoutSpread = t.clone(path.node);\n\t          nodeWithoutSpread.right = ref;\n\t          nodes.push(t.expressionStatement(nodeWithoutSpread));\n\t          nodes.push(t.toStatement(t.assignmentExpression(\"=\", argument, callExpression)));\n\n\t          if (ref) {\n\t            nodes.push(t.expressionStatement(ref));\n\t          }\n\n\t          path.replaceWithMultiple(nodes);\n\t        }\n\t      },\n\t      ForXStatement: function ForXStatement(path) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var leftPath = path.get(\"left\");\n\t        var left = node.left;\n\n\t        if (t.isObjectPattern(left) && hasRestProperty(leftPath)) {\n\t          var temp = scope.generateUidIdentifier(\"ref\");\n\n\t          node.left = t.variableDeclaration(\"var\", [t.variableDeclarator(temp)]);\n\n\t          path.ensureBlock();\n\n\t          node.body.body.unshift(t.variableDeclaration(\"var\", [t.variableDeclarator(left, temp)]));\n\n\t          return;\n\t        }\n\n\t        if (!t.isVariableDeclaration(left)) return;\n\n\t        var pattern = left.declarations[0].id;\n\t        if (!t.isObjectPattern(pattern)) return;\n\n\t        var key = scope.generateUidIdentifier(\"ref\");\n\t        node.left = t.variableDeclaration(left.kind, [t.variableDeclarator(key, null)]);\n\n\t        path.ensureBlock();\n\n\t        node.body.body.unshift(t.variableDeclaration(node.left.kind, [t.variableDeclarator(pattern, key)]));\n\t      },\n\t      ObjectExpression: function ObjectExpression(path, file) {\n\t        if (!hasSpread(path.node)) return;\n\n\t        var useBuiltIns = file.opts.useBuiltIns || false;\n\t        if (typeof useBuiltIns !== \"boolean\") {\n\t          throw new Error(\"transform-object-rest-spread currently only accepts a boolean \" + \"option for useBuiltIns (defaults to false)\");\n\t        }\n\n\t        var args = [];\n\t        var props = [];\n\n\t        function push() {\n\t          if (!props.length) return;\n\t          args.push(t.objectExpression(props));\n\t          props = [];\n\t        }\n\n\t        for (var _iterator3 = path.node.properties, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t          var _ref4;\n\n\t          if (_isArray3) {\n\t            if (_i3 >= _iterator3.length) break;\n\t            _ref4 = _iterator3[_i3++];\n\t          } else {\n\t            _i3 = _iterator3.next();\n\t            if (_i3.done) break;\n\t            _ref4 = _i3.value;\n\t          }\n\n\t          var prop = _ref4;\n\n\t          if (t.isSpreadProperty(prop)) {\n\t            push();\n\t            args.push(prop.argument);\n\t          } else {\n\t            props.push(prop);\n\t          }\n\t        }\n\n\t        push();\n\n\t        if (!t.isObjectExpression(args[0])) {\n\t          args.unshift(t.objectExpression([]));\n\t        }\n\n\t        var helper = useBuiltIns ? t.memberExpression(t.identifier(\"Object\"), t.identifier(\"assign\")) : file.addHelper(\"extends\");\n\n\t        path.replaceWith(t.callExpression(helper, args));\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 214 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function addDisplayName(id, call) {\n\t    var props = call.arguments[0].properties;\n\t    var safe = true;\n\n\t    for (var i = 0; i < props.length; i++) {\n\t      var prop = props[i];\n\t      var key = t.toComputedKey(prop);\n\t      if (t.isLiteral(key, { value: \"displayName\" })) {\n\t        safe = false;\n\t        break;\n\t      }\n\t    }\n\n\t    if (safe) {\n\t      props.unshift(t.objectProperty(t.identifier(\"displayName\"), t.stringLiteral(id)));\n\t    }\n\t  }\n\n\t  var isCreateClassCallExpression = t.buildMatchMemberExpression(\"React.createClass\");\n\t  var isCreateClassAddon = function isCreateClassAddon(callee) {\n\t    return callee.name === \"createReactClass\";\n\t  };\n\n\t  function isCreateClass(node) {\n\t    if (!node || !t.isCallExpression(node)) return false;\n\n\t    if (!isCreateClassCallExpression(node.callee) && !isCreateClassAddon(node.callee)) return false;\n\n\t    var args = node.arguments;\n\t    if (args.length !== 1) return false;\n\n\t    var first = args[0];\n\t    if (!t.isObjectExpression(first)) return false;\n\n\t    return true;\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      ExportDefaultDeclaration: function ExportDefaultDeclaration(_ref2, state) {\n\t        var node = _ref2.node;\n\n\t        if (isCreateClass(node.declaration)) {\n\t          var displayName = state.file.opts.basename;\n\n\t          if (displayName === \"index\") {\n\t            displayName = _path2.default.basename(_path2.default.dirname(state.file.opts.filename));\n\t          }\n\n\t          addDisplayName(displayName, node.declaration);\n\t        }\n\t      },\n\t      CallExpression: function CallExpression(path) {\n\t        var node = path.node;\n\n\t        if (!isCreateClass(node)) return;\n\n\t        var id = void 0;\n\n\t        path.find(function (path) {\n\t          if (path.isAssignmentExpression()) {\n\t            id = path.node.left;\n\t          } else if (path.isObjectProperty()) {\n\t            id = path.node.key;\n\t          } else if (path.isVariableDeclarator()) {\n\t            id = path.node.id;\n\t          } else if (path.isStatement()) {\n\t            return true;\n\t          }\n\n\t          if (id) return true;\n\t        });\n\n\t        if (!id) return;\n\n\t        if (t.isMemberExpression(id)) {\n\t          id = id.property;\n\t        }\n\n\t        if (t.isIdentifier(id)) {\n\t          addDisplayName(id.name, node);\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _path2 = _interopRequireDefault(_path);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 215 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var JSX_ANNOTATION_REGEX = /\\*?\\s*@jsx\\s+([^\\s]+)/;\n\n\t  var visitor = (0, _babelHelperBuilderReactJsx2.default)({\n\t    pre: function pre(state) {\n\t      var tagName = state.tagName;\n\t      var args = state.args;\n\t      if (t.react.isCompatTag(tagName)) {\n\t        args.push(t.stringLiteral(tagName));\n\t      } else {\n\t        args.push(state.tagExpr);\n\t      }\n\t    },\n\t    post: function post(state, pass) {\n\t      state.callee = pass.get(\"jsxIdentifier\")();\n\t    }\n\t  });\n\n\t  visitor.Program = function (path, state) {\n\t    var file = state.file;\n\n\t    var id = state.opts.pragma || \"React.createElement\";\n\n\t    for (var _iterator = file.ast.comments, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref2;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref2 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref2 = _i.value;\n\t      }\n\n\t      var comment = _ref2;\n\n\t      var matches = JSX_ANNOTATION_REGEX.exec(comment.value);\n\t      if (matches) {\n\t        id = matches[1];\n\t        if (id === \"React.DOM\") {\n\t          throw file.buildCodeFrameError(comment, \"The @jsx React.DOM pragma has been deprecated as of React 0.12\");\n\t        } else {\n\t          break;\n\t        }\n\t      }\n\t    }\n\n\t    state.set(\"jsxIdentifier\", function () {\n\t      return id.split(\".\").map(function (name) {\n\t        return t.identifier(name);\n\t      }).reduce(function (object, property) {\n\t        return t.memberExpression(object, property);\n\t      });\n\t    });\n\t  };\n\n\t  return {\n\t    inherits: _babelPluginSyntaxJsx2.default,\n\t    visitor: visitor\n\t  };\n\t};\n\n\tvar _babelPluginSyntaxJsx = __webpack_require__(127);\n\n\tvar _babelPluginSyntaxJsx2 = _interopRequireDefault(_babelPluginSyntaxJsx);\n\n\tvar _babelHelperBuilderReactJsx = __webpack_require__(351);\n\n\tvar _babelHelperBuilderReactJsx2 = _interopRequireDefault(_babelHelperBuilderReactJsx);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 216 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      Program: function Program(path, state) {\n\t        if (state.opts.strict === false || state.opts.strictMode === false) return;\n\n\t        var node = path.node;\n\n\t        for (var _iterator = node.directives, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref = _i.value;\n\t          }\n\n\t          var directive = _ref;\n\n\t          if (directive.value.value === \"use strict\") return;\n\t        }\n\n\t        path.unshiftContainer(\"directives\", t.directive(t.directiveLiteral(\"use strict\")));\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 217 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPluginTransformEs2015TemplateLiterals = __webpack_require__(83);\n\n\tvar _babelPluginTransformEs2015TemplateLiterals2 = _interopRequireDefault(_babelPluginTransformEs2015TemplateLiterals);\n\n\tvar _babelPluginTransformEs2015Literals = __webpack_require__(76);\n\n\tvar _babelPluginTransformEs2015Literals2 = _interopRequireDefault(_babelPluginTransformEs2015Literals);\n\n\tvar _babelPluginTransformEs2015FunctionName = __webpack_require__(75);\n\n\tvar _babelPluginTransformEs2015FunctionName2 = _interopRequireDefault(_babelPluginTransformEs2015FunctionName);\n\n\tvar _babelPluginTransformEs2015ArrowFunctions = __webpack_require__(68);\n\n\tvar _babelPluginTransformEs2015ArrowFunctions2 = _interopRequireDefault(_babelPluginTransformEs2015ArrowFunctions);\n\n\tvar _babelPluginTransformEs2015BlockScopedFunctions = __webpack_require__(69);\n\n\tvar _babelPluginTransformEs2015BlockScopedFunctions2 = _interopRequireDefault(_babelPluginTransformEs2015BlockScopedFunctions);\n\n\tvar _babelPluginTransformEs2015Classes = __webpack_require__(71);\n\n\tvar _babelPluginTransformEs2015Classes2 = _interopRequireDefault(_babelPluginTransformEs2015Classes);\n\n\tvar _babelPluginTransformEs2015ObjectSuper = __webpack_require__(78);\n\n\tvar _babelPluginTransformEs2015ObjectSuper2 = _interopRequireDefault(_babelPluginTransformEs2015ObjectSuper);\n\n\tvar _babelPluginTransformEs2015ShorthandProperties = __webpack_require__(80);\n\n\tvar _babelPluginTransformEs2015ShorthandProperties2 = _interopRequireDefault(_babelPluginTransformEs2015ShorthandProperties);\n\n\tvar _babelPluginTransformEs2015DuplicateKeys = __webpack_require__(130);\n\n\tvar _babelPluginTransformEs2015DuplicateKeys2 = _interopRequireDefault(_babelPluginTransformEs2015DuplicateKeys);\n\n\tvar _babelPluginTransformEs2015ComputedProperties = __webpack_require__(72);\n\n\tvar _babelPluginTransformEs2015ComputedProperties2 = _interopRequireDefault(_babelPluginTransformEs2015ComputedProperties);\n\n\tvar _babelPluginTransformEs2015ForOf = __webpack_require__(74);\n\n\tvar _babelPluginTransformEs2015ForOf2 = _interopRequireDefault(_babelPluginTransformEs2015ForOf);\n\n\tvar _babelPluginTransformEs2015StickyRegex = __webpack_require__(82);\n\n\tvar _babelPluginTransformEs2015StickyRegex2 = _interopRequireDefault(_babelPluginTransformEs2015StickyRegex);\n\n\tvar _babelPluginTransformEs2015UnicodeRegex = __webpack_require__(85);\n\n\tvar _babelPluginTransformEs2015UnicodeRegex2 = _interopRequireDefault(_babelPluginTransformEs2015UnicodeRegex);\n\n\tvar _babelPluginCheckEs2015Constants = __webpack_require__(66);\n\n\tvar _babelPluginCheckEs2015Constants2 = _interopRequireDefault(_babelPluginCheckEs2015Constants);\n\n\tvar _babelPluginTransformEs2015Spread = __webpack_require__(81);\n\n\tvar _babelPluginTransformEs2015Spread2 = _interopRequireDefault(_babelPluginTransformEs2015Spread);\n\n\tvar _babelPluginTransformEs2015Parameters = __webpack_require__(79);\n\n\tvar _babelPluginTransformEs2015Parameters2 = _interopRequireDefault(_babelPluginTransformEs2015Parameters);\n\n\tvar _babelPluginTransformEs2015Destructuring = __webpack_require__(73);\n\n\tvar _babelPluginTransformEs2015Destructuring2 = _interopRequireDefault(_babelPluginTransformEs2015Destructuring);\n\n\tvar _babelPluginTransformEs2015BlockScoping = __webpack_require__(70);\n\n\tvar _babelPluginTransformEs2015BlockScoping2 = _interopRequireDefault(_babelPluginTransformEs2015BlockScoping);\n\n\tvar _babelPluginTransformEs2015TypeofSymbol = __webpack_require__(84);\n\n\tvar _babelPluginTransformEs2015TypeofSymbol2 = _interopRequireDefault(_babelPluginTransformEs2015TypeofSymbol);\n\n\tvar _babelPluginTransformEs2015ModulesCommonjs = __webpack_require__(77);\n\n\tvar _babelPluginTransformEs2015ModulesCommonjs2 = _interopRequireDefault(_babelPluginTransformEs2015ModulesCommonjs);\n\n\tvar _babelPluginTransformEs2015ModulesSystemjs = __webpack_require__(208);\n\n\tvar _babelPluginTransformEs2015ModulesSystemjs2 = _interopRequireDefault(_babelPluginTransformEs2015ModulesSystemjs);\n\n\tvar _babelPluginTransformEs2015ModulesAmd = __webpack_require__(131);\n\n\tvar _babelPluginTransformEs2015ModulesAmd2 = _interopRequireDefault(_babelPluginTransformEs2015ModulesAmd);\n\n\tvar _babelPluginTransformEs2015ModulesUmd = __webpack_require__(209);\n\n\tvar _babelPluginTransformEs2015ModulesUmd2 = _interopRequireDefault(_babelPluginTransformEs2015ModulesUmd);\n\n\tvar _babelPluginTransformRegenerator = __webpack_require__(86);\n\n\tvar _babelPluginTransformRegenerator2 = _interopRequireDefault(_babelPluginTransformRegenerator);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction preset(context) {\n\t  var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t  var moduleTypes = [\"commonjs\", \"amd\", \"umd\", \"systemjs\"];\n\t  var loose = false;\n\t  var modules = \"commonjs\";\n\t  var spec = false;\n\n\t  if (opts !== undefined) {\n\t    if (opts.loose !== undefined) loose = opts.loose;\n\t    if (opts.modules !== undefined) modules = opts.modules;\n\t    if (opts.spec !== undefined) spec = opts.spec;\n\t  }\n\n\t  if (typeof loose !== \"boolean\") throw new Error(\"Preset es2015 'loose' option must be a boolean.\");\n\t  if (typeof spec !== \"boolean\") throw new Error(\"Preset es2015 'spec' option must be a boolean.\");\n\t  if (modules !== false && moduleTypes.indexOf(modules) === -1) {\n\t    throw new Error(\"Preset es2015 'modules' option must be 'false' to indicate no modules\\n\" + \"or a module type which be be one of: 'commonjs' (default), 'amd', 'umd', 'systemjs'\");\n\t  }\n\n\t  var optsLoose = { loose: loose };\n\n\t  return {\n\t    plugins: [[_babelPluginTransformEs2015TemplateLiterals2.default, { loose: loose, spec: spec }], _babelPluginTransformEs2015Literals2.default, _babelPluginTransformEs2015FunctionName2.default, [_babelPluginTransformEs2015ArrowFunctions2.default, { spec: spec }], _babelPluginTransformEs2015BlockScopedFunctions2.default, [_babelPluginTransformEs2015Classes2.default, optsLoose], _babelPluginTransformEs2015ObjectSuper2.default, _babelPluginTransformEs2015ShorthandProperties2.default, _babelPluginTransformEs2015DuplicateKeys2.default, [_babelPluginTransformEs2015ComputedProperties2.default, optsLoose], [_babelPluginTransformEs2015ForOf2.default, optsLoose], _babelPluginTransformEs2015StickyRegex2.default, _babelPluginTransformEs2015UnicodeRegex2.default, _babelPluginCheckEs2015Constants2.default, [_babelPluginTransformEs2015Spread2.default, optsLoose], _babelPluginTransformEs2015Parameters2.default, [_babelPluginTransformEs2015Destructuring2.default, optsLoose], _babelPluginTransformEs2015BlockScoping2.default, _babelPluginTransformEs2015TypeofSymbol2.default, modules === \"commonjs\" && [_babelPluginTransformEs2015ModulesCommonjs2.default, optsLoose], modules === \"systemjs\" && [_babelPluginTransformEs2015ModulesSystemjs2.default, optsLoose], modules === \"amd\" && [_babelPluginTransformEs2015ModulesAmd2.default, optsLoose], modules === \"umd\" && [_babelPluginTransformEs2015ModulesUmd2.default, optsLoose], [_babelPluginTransformRegenerator2.default, { async: false, asyncGenerators: false }]].filter(Boolean) };\n\t}\n\n\tvar oldConfig = preset({});\n\n\texports.default = oldConfig;\n\n\tObject.defineProperty(oldConfig, \"buildPreset\", {\n\t  configurable: true,\n\t  writable: true,\n\n\t  enumerable: false,\n\t  value: preset\n\t});\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 218 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPluginTransformExponentiationOperator = __webpack_require__(132);\n\n\tvar _babelPluginTransformExponentiationOperator2 = _interopRequireDefault(_babelPluginTransformExponentiationOperator);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  plugins: [_babelPluginTransformExponentiationOperator2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 219 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPluginSyntaxTrailingFunctionCommas = __webpack_require__(128);\n\n\tvar _babelPluginSyntaxTrailingFunctionCommas2 = _interopRequireDefault(_babelPluginSyntaxTrailingFunctionCommas);\n\n\tvar _babelPluginTransformAsyncToGenerator = __webpack_require__(129);\n\n\tvar _babelPluginTransformAsyncToGenerator2 = _interopRequireDefault(_babelPluginTransformAsyncToGenerator);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  plugins: [_babelPluginSyntaxTrailingFunctionCommas2.default, _babelPluginTransformAsyncToGenerator2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 220 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPresetStage = __webpack_require__(221);\n\n\tvar _babelPresetStage2 = _interopRequireDefault(_babelPresetStage);\n\n\tvar _babelPluginTransformClassConstructorCall = __webpack_require__(203);\n\n\tvar _babelPluginTransformClassConstructorCall2 = _interopRequireDefault(_babelPluginTransformClassConstructorCall);\n\n\tvar _babelPluginTransformExportExtensions = __webpack_require__(210);\n\n\tvar _babelPluginTransformExportExtensions2 = _interopRequireDefault(_babelPluginTransformExportExtensions);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  presets: [_babelPresetStage2.default],\n\t  plugins: [_babelPluginTransformClassConstructorCall2.default, _babelPluginTransformExportExtensions2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 221 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPresetStage = __webpack_require__(222);\n\n\tvar _babelPresetStage2 = _interopRequireDefault(_babelPresetStage);\n\n\tvar _babelPluginTransformClassProperties = __webpack_require__(204);\n\n\tvar _babelPluginTransformClassProperties2 = _interopRequireDefault(_babelPluginTransformClassProperties);\n\n\tvar _babelPluginTransformDecorators = __webpack_require__(205);\n\n\tvar _babelPluginTransformDecorators2 = _interopRequireDefault(_babelPluginTransformDecorators);\n\n\tvar _babelPluginSyntaxDynamicImport = __webpack_require__(324);\n\n\tvar _babelPluginSyntaxDynamicImport2 = _interopRequireDefault(_babelPluginSyntaxDynamicImport);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  presets: [_babelPresetStage2.default],\n\t  plugins: [_babelPluginSyntaxDynamicImport2.default, _babelPluginTransformClassProperties2.default, _babelPluginTransformDecorators2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 222 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPluginSyntaxTrailingFunctionCommas = __webpack_require__(128);\n\n\tvar _babelPluginSyntaxTrailingFunctionCommas2 = _interopRequireDefault(_babelPluginSyntaxTrailingFunctionCommas);\n\n\tvar _babelPluginTransformAsyncToGenerator = __webpack_require__(129);\n\n\tvar _babelPluginTransformAsyncToGenerator2 = _interopRequireDefault(_babelPluginTransformAsyncToGenerator);\n\n\tvar _babelPluginTransformExponentiationOperator = __webpack_require__(132);\n\n\tvar _babelPluginTransformExponentiationOperator2 = _interopRequireDefault(_babelPluginTransformExponentiationOperator);\n\n\tvar _babelPluginTransformObjectRestSpread = __webpack_require__(213);\n\n\tvar _babelPluginTransformObjectRestSpread2 = _interopRequireDefault(_babelPluginTransformObjectRestSpread);\n\n\tvar _babelPluginTransformAsyncGeneratorFunctions = __webpack_require__(327);\n\n\tvar _babelPluginTransformAsyncGeneratorFunctions2 = _interopRequireDefault(_babelPluginTransformAsyncGeneratorFunctions);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  plugins: [_babelPluginSyntaxTrailingFunctionCommas2.default, _babelPluginTransformAsyncToGenerator2.default, _babelPluginTransformExponentiationOperator2.default, _babelPluginTransformAsyncGeneratorFunctions2.default, _babelPluginTransformObjectRestSpread2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 223 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar Hub = function Hub(file, options) {\n\t  (0, _classCallCheck3.default)(this, Hub);\n\n\t  this.file = file;\n\t  this.options = options;\n\t};\n\n\texports.default = Hub;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 224 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.Flow = exports.Pure = exports.Generated = exports.User = exports.Var = exports.BlockScoped = exports.Referenced = exports.Scope = exports.Expression = exports.Statement = exports.BindingIdentifier = exports.ReferencedMemberExpression = exports.ReferencedIdentifier = undefined;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tvar ReferencedIdentifier = exports.ReferencedIdentifier = {\n\t  types: [\"Identifier\", \"JSXIdentifier\"],\n\t  checkPath: function checkPath(_ref, opts) {\n\t    var node = _ref.node,\n\t        parent = _ref.parent;\n\n\t    if (!t.isIdentifier(node, opts) && !t.isJSXMemberExpression(parent, opts)) {\n\t      if (t.isJSXIdentifier(node, opts)) {\n\t        if (_babelTypes.react.isCompatTag(node.name)) return false;\n\t      } else {\n\t        return false;\n\t      }\n\t    }\n\n\t    return t.isReferenced(node, parent);\n\t  }\n\t};\n\n\tvar ReferencedMemberExpression = exports.ReferencedMemberExpression = {\n\t  types: [\"MemberExpression\"],\n\t  checkPath: function checkPath(_ref2) {\n\t    var node = _ref2.node,\n\t        parent = _ref2.parent;\n\n\t    return t.isMemberExpression(node) && t.isReferenced(node, parent);\n\t  }\n\t};\n\n\tvar BindingIdentifier = exports.BindingIdentifier = {\n\t  types: [\"Identifier\"],\n\t  checkPath: function checkPath(_ref3) {\n\t    var node = _ref3.node,\n\t        parent = _ref3.parent;\n\n\t    return t.isIdentifier(node) && t.isBinding(node, parent);\n\t  }\n\t};\n\n\tvar Statement = exports.Statement = {\n\t  types: [\"Statement\"],\n\t  checkPath: function checkPath(_ref4) {\n\t    var node = _ref4.node,\n\t        parent = _ref4.parent;\n\n\t    if (t.isStatement(node)) {\n\t      if (t.isVariableDeclaration(node)) {\n\t        if (t.isForXStatement(parent, { left: node })) return false;\n\t        if (t.isForStatement(parent, { init: node })) return false;\n\t      }\n\n\t      return true;\n\t    } else {\n\t      return false;\n\t    }\n\t  }\n\t};\n\n\tvar Expression = exports.Expression = {\n\t  types: [\"Expression\"],\n\t  checkPath: function checkPath(path) {\n\t    if (path.isIdentifier()) {\n\t      return path.isReferencedIdentifier();\n\t    } else {\n\t      return t.isExpression(path.node);\n\t    }\n\t  }\n\t};\n\n\tvar Scope = exports.Scope = {\n\t  types: [\"Scopable\"],\n\t  checkPath: function checkPath(path) {\n\t    return t.isScope(path.node, path.parent);\n\t  }\n\t};\n\n\tvar Referenced = exports.Referenced = {\n\t  checkPath: function checkPath(path) {\n\t    return t.isReferenced(path.node, path.parent);\n\t  }\n\t};\n\n\tvar BlockScoped = exports.BlockScoped = {\n\t  checkPath: function checkPath(path) {\n\t    return t.isBlockScoped(path.node);\n\t  }\n\t};\n\n\tvar Var = exports.Var = {\n\t  types: [\"VariableDeclaration\"],\n\t  checkPath: function checkPath(path) {\n\t    return t.isVar(path.node);\n\t  }\n\t};\n\n\tvar User = exports.User = {\n\t  checkPath: function checkPath(path) {\n\t    return path.node && !!path.node.loc;\n\t  }\n\t};\n\n\tvar Generated = exports.Generated = {\n\t  checkPath: function checkPath(path) {\n\t    return !path.isUser();\n\t  }\n\t};\n\n\tvar Pure = exports.Pure = {\n\t  checkPath: function checkPath(path, opts) {\n\t    return path.scope.isPure(path.node, opts);\n\t  }\n\t};\n\n\tvar Flow = exports.Flow = {\n\t  types: [\"Flow\", \"ImportDeclaration\", \"ExportDeclaration\", \"ImportSpecifier\"],\n\t  checkPath: function checkPath(_ref5) {\n\t    var node = _ref5.node;\n\n\t    if (t.isFlow(node)) {\n\t      return true;\n\t    } else if (t.isImportDeclaration(node)) {\n\t      return node.importKind === \"type\" || node.importKind === \"typeof\";\n\t    } else if (t.isExportDeclaration(node)) {\n\t      return node.exportKind === \"type\";\n\t    } else if (t.isImportSpecifier(node)) {\n\t      return node.importKind === \"type\" || node.importKind === \"typeof\";\n\t    } else {\n\t      return false;\n\t    }\n\t  }\n\t};\n\n/***/ }),\n/* 225 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar Binding = function () {\n\t  function Binding(_ref) {\n\t    var existing = _ref.existing,\n\t        identifier = _ref.identifier,\n\t        scope = _ref.scope,\n\t        path = _ref.path,\n\t        kind = _ref.kind;\n\t    (0, _classCallCheck3.default)(this, Binding);\n\n\t    this.identifier = identifier;\n\t    this.scope = scope;\n\t    this.path = path;\n\t    this.kind = kind;\n\n\t    this.constantViolations = [];\n\t    this.constant = true;\n\n\t    this.referencePaths = [];\n\t    this.referenced = false;\n\t    this.references = 0;\n\n\t    this.clearValue();\n\n\t    if (existing) {\n\t      this.constantViolations = [].concat(existing.path, existing.constantViolations, this.constantViolations);\n\t    }\n\t  }\n\n\t  Binding.prototype.deoptValue = function deoptValue() {\n\t    this.clearValue();\n\t    this.hasDeoptedValue = true;\n\t  };\n\n\t  Binding.prototype.setValue = function setValue(value) {\n\t    if (this.hasDeoptedValue) return;\n\t    this.hasValue = true;\n\t    this.value = value;\n\t  };\n\n\t  Binding.prototype.clearValue = function clearValue() {\n\t    this.hasDeoptedValue = false;\n\t    this.hasValue = false;\n\t    this.value = null;\n\t  };\n\n\t  Binding.prototype.reassign = function reassign(path) {\n\t    this.constant = false;\n\t    if (this.constantViolations.indexOf(path) !== -1) {\n\t      return;\n\t    }\n\t    this.constantViolations.push(path);\n\t  };\n\n\t  Binding.prototype.reference = function reference(path) {\n\t    if (this.referencePaths.indexOf(path) !== -1) {\n\t      return;\n\t    }\n\t    this.referenced = true;\n\t    this.references++;\n\t    this.referencePaths.push(path);\n\t  };\n\n\t  Binding.prototype.dereference = function dereference() {\n\t    this.references--;\n\t    this.referenced = !!this.references;\n\t  };\n\n\t  return Binding;\n\t}();\n\n\texports.default = Binding;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 226 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\texports.getBindingIdentifiers = getBindingIdentifiers;\n\texports.getOuterBindingIdentifiers = getOuterBindingIdentifiers;\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction getBindingIdentifiers(node, duplicates, outerOnly) {\n\t  var search = [].concat(node);\n\t  var ids = (0, _create2.default)(null);\n\n\t  while (search.length) {\n\t    var id = search.shift();\n\t    if (!id) continue;\n\n\t    var keys = t.getBindingIdentifiers.keys[id.type];\n\n\t    if (t.isIdentifier(id)) {\n\t      if (duplicates) {\n\t        var _ids = ids[id.name] = ids[id.name] || [];\n\t        _ids.push(id);\n\t      } else {\n\t        ids[id.name] = id;\n\t      }\n\t      continue;\n\t    }\n\n\t    if (t.isExportDeclaration(id)) {\n\t      if (t.isDeclaration(id.declaration)) {\n\t        search.push(id.declaration);\n\t      }\n\t      continue;\n\t    }\n\n\t    if (outerOnly) {\n\t      if (t.isFunctionDeclaration(id)) {\n\t        search.push(id.id);\n\t        continue;\n\t      }\n\n\t      if (t.isFunctionExpression(id)) {\n\t        continue;\n\t      }\n\t    }\n\n\t    if (keys) {\n\t      for (var i = 0; i < keys.length; i++) {\n\t        var key = keys[i];\n\t        if (id[key]) {\n\t          search = search.concat(id[key]);\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  return ids;\n\t}\n\n\tgetBindingIdentifiers.keys = {\n\t  DeclareClass: [\"id\"],\n\t  DeclareFunction: [\"id\"],\n\t  DeclareModule: [\"id\"],\n\t  DeclareVariable: [\"id\"],\n\t  InterfaceDeclaration: [\"id\"],\n\t  TypeAlias: [\"id\"],\n\t  OpaqueType: [\"id\"],\n\n\t  CatchClause: [\"param\"],\n\t  LabeledStatement: [\"label\"],\n\t  UnaryExpression: [\"argument\"],\n\t  AssignmentExpression: [\"left\"],\n\n\t  ImportSpecifier: [\"local\"],\n\t  ImportNamespaceSpecifier: [\"local\"],\n\t  ImportDefaultSpecifier: [\"local\"],\n\t  ImportDeclaration: [\"specifiers\"],\n\n\t  ExportSpecifier: [\"exported\"],\n\t  ExportNamespaceSpecifier: [\"exported\"],\n\t  ExportDefaultSpecifier: [\"exported\"],\n\n\t  FunctionDeclaration: [\"id\", \"params\"],\n\t  FunctionExpression: [\"id\", \"params\"],\n\n\t  ClassDeclaration: [\"id\"],\n\t  ClassExpression: [\"id\"],\n\n\t  RestElement: [\"argument\"],\n\t  UpdateExpression: [\"argument\"],\n\n\t  RestProperty: [\"argument\"],\n\t  ObjectProperty: [\"value\"],\n\n\t  AssignmentPattern: [\"left\"],\n\t  ArrayPattern: [\"elements\"],\n\t  ObjectPattern: [\"properties\"],\n\n\t  VariableDeclaration: [\"declarations\"],\n\t  VariableDeclarator: [\"id\"]\n\t};\n\n\tfunction getOuterBindingIdentifiers(node, duplicates) {\n\t  return getBindingIdentifiers(node, duplicates, true);\n\t}\n\n/***/ }),\n/* 227 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function (it) {\n\t  if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n\t  return it;\n\t};\n\n/***/ }),\n/* 228 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// getting tag from 19.1.3.6 Object.prototype.toString()\n\tvar cof = __webpack_require__(138);\n\tvar TAG = __webpack_require__(13)('toStringTag');\n\t// ES3 wrong here\n\tvar ARG = cof(function () {\n\t  return arguments;\n\t}()) == 'Arguments';\n\n\t// fallback for IE11 Script Access Denied error\n\tvar tryGet = function tryGet(it, key) {\n\t  try {\n\t    return it[key];\n\t  } catch (e) {/* empty */}\n\t};\n\n\tmodule.exports = function (it) {\n\t  var O, T, B;\n\t  return it === undefined ? 'Undefined' : it === null ? 'Null'\n\t  // @@toStringTag case\n\t  : typeof (T = tryGet(O = Object(it), TAG)) == 'string' ? T\n\t  // builtinTag case\n\t  : ARG ? cof(O)\n\t  // ES3 arguments fallback\n\t  : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;\n\t};\n\n/***/ }),\n/* 229 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar redefineAll = __webpack_require__(146);\n\tvar getWeak = __webpack_require__(57).getWeak;\n\tvar anObject = __webpack_require__(21);\n\tvar isObject = __webpack_require__(16);\n\tvar anInstance = __webpack_require__(136);\n\tvar forOf = __webpack_require__(55);\n\tvar createArrayMethod = __webpack_require__(137);\n\tvar $has = __webpack_require__(28);\n\tvar validate = __webpack_require__(58);\n\tvar arrayFind = createArrayMethod(5);\n\tvar arrayFindIndex = createArrayMethod(6);\n\tvar id = 0;\n\n\t// fallback for uncaught frozen keys\n\tvar uncaughtFrozenStore = function uncaughtFrozenStore(that) {\n\t  return that._l || (that._l = new UncaughtFrozenStore());\n\t};\n\tvar UncaughtFrozenStore = function UncaughtFrozenStore() {\n\t  this.a = [];\n\t};\n\tvar findUncaughtFrozen = function findUncaughtFrozen(store, key) {\n\t  return arrayFind(store.a, function (it) {\n\t    return it[0] === key;\n\t  });\n\t};\n\tUncaughtFrozenStore.prototype = {\n\t  get: function get(key) {\n\t    var entry = findUncaughtFrozen(this, key);\n\t    if (entry) return entry[1];\n\t  },\n\t  has: function has(key) {\n\t    return !!findUncaughtFrozen(this, key);\n\t  },\n\t  set: function set(key, value) {\n\t    var entry = findUncaughtFrozen(this, key);\n\t    if (entry) entry[1] = value;else this.a.push([key, value]);\n\t  },\n\t  'delete': function _delete(key) {\n\t    var index = arrayFindIndex(this.a, function (it) {\n\t      return it[0] === key;\n\t    });\n\t    if (~index) this.a.splice(index, 1);\n\t    return !!~index;\n\t  }\n\t};\n\n\tmodule.exports = {\n\t  getConstructor: function getConstructor(wrapper, NAME, IS_MAP, ADDER) {\n\t    var C = wrapper(function (that, iterable) {\n\t      anInstance(that, C, NAME, '_i');\n\t      that._t = NAME; // collection type\n\t      that._i = id++; // collection id\n\t      that._l = undefined; // leak store for uncaught frozen objects\n\t      if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n\t    });\n\t    redefineAll(C.prototype, {\n\t      // 23.3.3.2 WeakMap.prototype.delete(key)\n\t      // 23.4.3.3 WeakSet.prototype.delete(value)\n\t      'delete': function _delete(key) {\n\t        if (!isObject(key)) return false;\n\t        var data = getWeak(key);\n\t        if (data === true) return uncaughtFrozenStore(validate(this, NAME))['delete'](key);\n\t        return data && $has(data, this._i) && delete data[this._i];\n\t      },\n\t      // 23.3.3.4 WeakMap.prototype.has(key)\n\t      // 23.4.3.4 WeakSet.prototype.has(value)\n\t      has: function has(key) {\n\t        if (!isObject(key)) return false;\n\t        var data = getWeak(key);\n\t        if (data === true) return uncaughtFrozenStore(validate(this, NAME)).has(key);\n\t        return data && $has(data, this._i);\n\t      }\n\t    });\n\t    return C;\n\t  },\n\t  def: function def(that, key, value) {\n\t    var data = getWeak(anObject(key), true);\n\t    if (data === true) uncaughtFrozenStore(that).set(key, value);else data[that._i] = value;\n\t    return that;\n\t  },\n\t  ufstore: uncaughtFrozenStore\n\t};\n\n/***/ }),\n/* 230 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(16);\n\tvar document = __webpack_require__(15).document;\n\t// typeof document.createElement is 'object' in old IE\n\tvar is = isObject(document) && isObject(document.createElement);\n\tmodule.exports = function (it) {\n\t  return is ? document.createElement(it) : {};\n\t};\n\n/***/ }),\n/* 231 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tmodule.exports = !__webpack_require__(22) && !__webpack_require__(27)(function () {\n\t  return Object.defineProperty(__webpack_require__(230)('div'), 'a', { get: function get() {\n\t      return 7;\n\t    } }).a != 7;\n\t});\n\n/***/ }),\n/* 232 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 7.2.2 IsArray(argument)\n\tvar cof = __webpack_require__(138);\n\tmodule.exports = Array.isArray || function isArray(arg) {\n\t  return cof(arg) == 'Array';\n\t};\n\n/***/ }),\n/* 233 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = function (done, value) {\n\t  return { value: value, done: !!done };\n\t};\n\n/***/ }),\n/* 234 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// 19.1.2.1 Object.assign(target, source, ...)\n\n\tvar getKeys = __webpack_require__(44);\n\tvar gOPS = __webpack_require__(145);\n\tvar pIE = __webpack_require__(91);\n\tvar toObject = __webpack_require__(94);\n\tvar IObject = __webpack_require__(142);\n\tvar $assign = Object.assign;\n\n\t// should work with symbols and should have deterministic property order (V8 bug)\n\tmodule.exports = !$assign || __webpack_require__(27)(function () {\n\t  var A = {};\n\t  var B = {};\n\t  // eslint-disable-next-line no-undef\n\t  var S = Symbol();\n\t  var K = 'abcdefghijklmnopqrst';\n\t  A[S] = 7;\n\t  K.split('').forEach(function (k) {\n\t    B[k] = k;\n\t  });\n\t  return $assign({}, A)[S] != 7 || Object.keys($assign({}, B)).join('') != K;\n\t}) ? function assign(target, source) {\n\t  // eslint-disable-line no-unused-vars\n\t  var T = toObject(target);\n\t  var aLen = arguments.length;\n\t  var index = 1;\n\t  var getSymbols = gOPS.f;\n\t  var isEnum = pIE.f;\n\t  while (aLen > index) {\n\t    var S = IObject(arguments[index++]);\n\t    var keys = getSymbols ? getKeys(S).concat(getSymbols(S)) : getKeys(S);\n\t    var length = keys.length;\n\t    var j = 0;\n\t    var key;\n\t    while (length > j) {\n\t      if (isEnum.call(S, key = keys[j++])) T[key] = S[key];\n\t    }\n\t  }return T;\n\t} : $assign;\n\n/***/ }),\n/* 235 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar pIE = __webpack_require__(91);\n\tvar createDesc = __webpack_require__(92);\n\tvar toIObject = __webpack_require__(37);\n\tvar toPrimitive = __webpack_require__(154);\n\tvar has = __webpack_require__(28);\n\tvar IE8_DOM_DEFINE = __webpack_require__(231);\n\tvar gOPD = Object.getOwnPropertyDescriptor;\n\n\texports.f = __webpack_require__(22) ? gOPD : function getOwnPropertyDescriptor(O, P) {\n\t  O = toIObject(O);\n\t  P = toPrimitive(P, true);\n\t  if (IE8_DOM_DEFINE) try {\n\t    return gOPD(O, P);\n\t  } catch (e) {/* empty */}\n\t  if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n\t};\n\n/***/ }),\n/* 236 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\n\tvar $keys = __webpack_require__(237);\n\tvar hiddenKeys = __webpack_require__(141).concat('length', 'prototype');\n\n\texports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n\t  return $keys(O, hiddenKeys);\n\t};\n\n/***/ }),\n/* 237 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar has = __webpack_require__(28);\n\tvar toIObject = __webpack_require__(37);\n\tvar arrayIndexOf = __webpack_require__(420)(false);\n\tvar IE_PROTO = __webpack_require__(150)('IE_PROTO');\n\n\tmodule.exports = function (object, names) {\n\t  var O = toIObject(object);\n\t  var i = 0;\n\t  var result = [];\n\t  var key;\n\t  for (key in O) {\n\t    if (key != IE_PROTO) has(O, key) && result.push(key);\n\t  } // Don't enum bug & hidden keys\n\t  while (names.length > i) {\n\t    if (has(O, key = names[i++])) {\n\t      ~arrayIndexOf(result, key) || result.push(key);\n\t    }\n\t  }return result;\n\t};\n\n/***/ }),\n/* 238 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar classof = __webpack_require__(228);\n\tvar ITERATOR = __webpack_require__(13)('iterator');\n\tvar Iterators = __webpack_require__(56);\n\tmodule.exports = __webpack_require__(5).getIteratorMethod = function (it) {\n\t  if (it != undefined) return it[ITERATOR] || it['@@iterator'] || Iterators[classof(it)];\n\t};\n\n/***/ }),\n/* 239 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/**\n\t * This is the web browser implementation of `debug()`.\n\t *\n\t * Expose `debug()` as the module.\n\t */\n\n\texports = module.exports = __webpack_require__(458);\n\texports.log = log;\n\texports.formatArgs = formatArgs;\n\texports.save = save;\n\texports.load = load;\n\texports.useColors = useColors;\n\texports.storage = 'undefined' != typeof chrome && 'undefined' != typeof chrome.storage ? chrome.storage.local : localstorage();\n\n\t/**\n\t * Colors.\n\t */\n\n\texports.colors = ['lightseagreen', 'forestgreen', 'goldenrod', 'dodgerblue', 'darkorchid', 'crimson'];\n\n\t/**\n\t * Currently only WebKit-based Web Inspectors, Firefox >= v31,\n\t * and the Firebug extension (any Firefox version) are known\n\t * to support \"%c\" CSS customizations.\n\t *\n\t * TODO: add a `localStorage` variable to explicitly enable/disable colors\n\t */\n\n\tfunction useColors() {\n\t  // NB: In an Electron preload script, document will be defined but not fully\n\t  // initialized. Since we know we're in Chrome, we'll just detect this case\n\t  // explicitly\n\t  if (typeof window !== 'undefined' && window.process && window.process.type === 'renderer') {\n\t    return true;\n\t  }\n\n\t  // is webkit? http://stackoverflow.com/a/16459606/376773\n\t  // document is undefined in react-native: https://github.com/facebook/react-native/pull/1632\n\t  return typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance ||\n\t  // is firebug? http://stackoverflow.com/a/398120/376773\n\t  typeof window !== 'undefined' && window.console && (window.console.firebug || window.console.exception && window.console.table) ||\n\t  // is firefox >= v31?\n\t  // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages\n\t  typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\\/(\\d+)/) && parseInt(RegExp.$1, 10) >= 31 ||\n\t  // double check webkit in userAgent just in case we are in a worker\n\t  typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\\/(\\d+)/);\n\t}\n\n\t/**\n\t * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default.\n\t */\n\n\texports.formatters.j = function (v) {\n\t  try {\n\t    return JSON.stringify(v);\n\t  } catch (err) {\n\t    return '[UnexpectedJSONParseError]: ' + err.message;\n\t  }\n\t};\n\n\t/**\n\t * Colorize log arguments if enabled.\n\t *\n\t * @api public\n\t */\n\n\tfunction formatArgs(args) {\n\t  var useColors = this.useColors;\n\n\t  args[0] = (useColors ? '%c' : '') + this.namespace + (useColors ? ' %c' : ' ') + args[0] + (useColors ? '%c ' : ' ') + '+' + exports.humanize(this.diff);\n\n\t  if (!useColors) return;\n\n\t  var c = 'color: ' + this.color;\n\t  args.splice(1, 0, c, 'color: inherit');\n\n\t  // the final \"%c\" is somewhat tricky, because there could be other\n\t  // arguments passed either before or after the %c, so we need to\n\t  // figure out the correct index to insert the CSS into\n\t  var index = 0;\n\t  var lastC = 0;\n\t  args[0].replace(/%[a-zA-Z%]/g, function (match) {\n\t    if ('%%' === match) return;\n\t    index++;\n\t    if ('%c' === match) {\n\t      // we only are interested in the *last* %c\n\t      // (the user may have provided their own)\n\t      lastC = index;\n\t    }\n\t  });\n\n\t  args.splice(lastC, 0, c);\n\t}\n\n\t/**\n\t * Invokes `console.log()` when available.\n\t * No-op when `console.log` is not a \"function\".\n\t *\n\t * @api public\n\t */\n\n\tfunction log() {\n\t  // this hackery is required for IE8/9, where\n\t  // the `console.log` function doesn't have 'apply'\n\t  return 'object' === (typeof console === 'undefined' ? 'undefined' : _typeof(console)) && console.log && Function.prototype.apply.call(console.log, console, arguments);\n\t}\n\n\t/**\n\t * Save `namespaces`.\n\t *\n\t * @param {String} namespaces\n\t * @api private\n\t */\n\n\tfunction save(namespaces) {\n\t  try {\n\t    if (null == namespaces) {\n\t      exports.storage.removeItem('debug');\n\t    } else {\n\t      exports.storage.debug = namespaces;\n\t    }\n\t  } catch (e) {}\n\t}\n\n\t/**\n\t * Load `namespaces`.\n\t *\n\t * @return {String} returns the previously persisted debug modes\n\t * @api private\n\t */\n\n\tfunction load() {\n\t  var r;\n\t  try {\n\t    r = exports.storage.debug;\n\t  } catch (e) {}\n\n\t  // If debug isn't set in LS, and we're in Electron, try to load $DEBUG\n\t  if (!r && typeof process !== 'undefined' && 'env' in process) {\n\t    r = process.env.DEBUG;\n\t  }\n\n\t  return r;\n\t}\n\n\t/**\n\t * Enable namespaces listed in `localStorage.debug` initially.\n\t */\n\n\texports.enable(load());\n\n\t/**\n\t * Localstorage attempts to return the localstorage.\n\t *\n\t * This is necessary because safari throws\n\t * when a user disables cookies/localstorage\n\t * and you attempt to access it.\n\t *\n\t * @return {LocalStorage}\n\t * @api private\n\t */\n\n\tfunction localstorage() {\n\t  try {\n\t    return window.localStorage;\n\t  } catch (e) {}\n\t}\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 240 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/*\n\t  Copyright (C) 2013-2014 Yusuke Suzuki <utatane.tea@gmail.com>\n\t  Copyright (C) 2014 Ivan Nikulin <ifaaan@gmail.com>\n\n\t  Redistribution and use in source and binary forms, with or without\n\t  modification, are permitted provided that the following conditions are met:\n\n\t    * Redistributions of source code must retain the above copyright\n\t      notice, this list of conditions and the following disclaimer.\n\t    * Redistributions in binary form must reproduce the above copyright\n\t      notice, this list of conditions and the following disclaimer in the\n\t      documentation and/or other materials provided with the distribution.\n\n\t  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n\t  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\t  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\t  ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\n\t  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n\t  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n\t  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n\t  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n\t  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t*/\n\n\t(function () {\n\t    'use strict';\n\n\t    var ES6Regex, ES5Regex, NON_ASCII_WHITESPACES, IDENTIFIER_START, IDENTIFIER_PART, ch;\n\n\t    // See `tools/generate-identifier-regex.js`.\n\t    ES5Regex = {\n\t        // ECMAScript 5.1/Unicode v7.0.0 NonAsciiIdentifierStart:\n\t        NonAsciiIdentifierStart: /[\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0-\\u08B2\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA69D\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uA9E0-\\uA9E4\\uA9E6-\\uA9EF\\uA9FA-\\uA9FE\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA7E-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]/,\n\t        // ECMAScript 5.1/Unicode v7.0.0 NonAsciiIdentifierPart:\n\t        NonAsciiIdentifierPart: /[\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0300-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u0483-\\u0487\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0610-\\u061A\\u0620-\\u0669\\u066E-\\u06D3\\u06D5-\\u06DC\\u06DF-\\u06E8\\u06EA-\\u06FC\\u06FF\\u0710-\\u074A\\u074D-\\u07B1\\u07C0-\\u07F5\\u07FA\\u0800-\\u082D\\u0840-\\u085B\\u08A0-\\u08B2\\u08E4-\\u0963\\u0966-\\u096F\\u0971-\\u0983\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BC-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CE\\u09D7\\u09DC\\u09DD\\u09DF-\\u09E3\\u09E6-\\u09F1\\u0A01-\\u0A03\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A59-\\u0A5C\\u0A5E\\u0A66-\\u0A75\\u0A81-\\u0A83\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABC-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AD0\\u0AE0-\\u0AE3\\u0AE6-\\u0AEF\\u0B01-\\u0B03\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3C-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B5C\\u0B5D\\u0B5F-\\u0B63\\u0B66-\\u0B6F\\u0B71\\u0B82\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD0\\u0BD7\\u0BE6-\\u0BEF\\u0C00-\\u0C03\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C58\\u0C59\\u0C60-\\u0C63\\u0C66-\\u0C6F\\u0C81-\\u0C83\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBC-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CDE\\u0CE0-\\u0CE3\\u0CE6-\\u0CEF\\u0CF1\\u0CF2\\u0D01-\\u0D03\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4E\\u0D57\\u0D60-\\u0D63\\u0D66-\\u0D6F\\u0D7A-\\u0D7F\\u0D82\\u0D83\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DE6-\\u0DEF\\u0DF2\\u0DF3\\u0E01-\\u0E3A\\u0E40-\\u0E4E\\u0E50-\\u0E59\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB9\\u0EBB-\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EC8-\\u0ECD\\u0ED0-\\u0ED9\\u0EDC-\\u0EDF\\u0F00\\u0F18\\u0F19\\u0F20-\\u0F29\\u0F35\\u0F37\\u0F39\\u0F3E-\\u0F47\\u0F49-\\u0F6C\\u0F71-\\u0F84\\u0F86-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u1000-\\u1049\\u1050-\\u109D\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u135D-\\u135F\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1714\\u1720-\\u1734\\u1740-\\u1753\\u1760-\\u176C\\u176E-\\u1770\\u1772\\u1773\\u1780-\\u17D3\\u17D7\\u17DC\\u17DD\\u17E0-\\u17E9\\u180B-\\u180D\\u1810-\\u1819\\u1820-\\u1877\\u1880-\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1920-\\u192B\\u1930-\\u193B\\u1946-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19B0-\\u19C9\\u19D0-\\u19D9\\u1A00-\\u1A1B\\u1A20-\\u1A5E\\u1A60-\\u1A7C\\u1A7F-\\u1A89\\u1A90-\\u1A99\\u1AA7\\u1AB0-\\u1ABD\\u1B00-\\u1B4B\\u1B50-\\u1B59\\u1B6B-\\u1B73\\u1B80-\\u1BF3\\u1C00-\\u1C37\\u1C40-\\u1C49\\u1C4D-\\u1C7D\\u1CD0-\\u1CD2\\u1CD4-\\u1CF6\\u1CF8\\u1CF9\\u1D00-\\u1DF5\\u1DFC-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u200C\\u200D\\u203F\\u2040\\u2054\\u2071\\u207F\\u2090-\\u209C\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D7F-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2DE0-\\u2DFF\\u2E2F\\u3005-\\u3007\\u3021-\\u302F\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u3099\\u309A\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA62B\\uA640-\\uA66F\\uA674-\\uA67D\\uA67F-\\uA69D\\uA69F-\\uA6F1\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA827\\uA840-\\uA873\\uA880-\\uA8C4\\uA8D0-\\uA8D9\\uA8E0-\\uA8F7\\uA8FB\\uA900-\\uA92D\\uA930-\\uA953\\uA960-\\uA97C\\uA980-\\uA9C0\\uA9CF-\\uA9D9\\uA9E0-\\uA9FE\\uAA00-\\uAA36\\uAA40-\\uAA4D\\uAA50-\\uAA59\\uAA60-\\uAA76\\uAA7A-\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEF\\uAAF2-\\uAAF6\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABEA\\uABEC\\uABED\\uABF0-\\uABF9\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE00-\\uFE0F\\uFE20-\\uFE2D\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF10-\\uFF19\\uFF21-\\uFF3A\\uFF3F\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]/\n\t    };\n\n\t    ES6Regex = {\n\t        // ECMAScript 6/Unicode v7.0.0 NonAsciiIdentifierStart:\n\t        NonAsciiIdentifierStart: /[\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0-\\u08B2\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2118-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309B-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA69D\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uA9E0-\\uA9E4\\uA9E6-\\uA9EF\\uA9FA-\\uA9FE\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA7E-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]|\\uD800[\\uDC00-\\uDC0B\\uDC0D-\\uDC26\\uDC28-\\uDC3A\\uDC3C\\uDC3D\\uDC3F-\\uDC4D\\uDC50-\\uDC5D\\uDC80-\\uDCFA\\uDD40-\\uDD74\\uDE80-\\uDE9C\\uDEA0-\\uDED0\\uDF00-\\uDF1F\\uDF30-\\uDF4A\\uDF50-\\uDF75\\uDF80-\\uDF9D\\uDFA0-\\uDFC3\\uDFC8-\\uDFCF\\uDFD1-\\uDFD5]|\\uD801[\\uDC00-\\uDC9D\\uDD00-\\uDD27\\uDD30-\\uDD63\\uDE00-\\uDF36\\uDF40-\\uDF55\\uDF60-\\uDF67]|\\uD802[\\uDC00-\\uDC05\\uDC08\\uDC0A-\\uDC35\\uDC37\\uDC38\\uDC3C\\uDC3F-\\uDC55\\uDC60-\\uDC76\\uDC80-\\uDC9E\\uDD00-\\uDD15\\uDD20-\\uDD39\\uDD80-\\uDDB7\\uDDBE\\uDDBF\\uDE00\\uDE10-\\uDE13\\uDE15-\\uDE17\\uDE19-\\uDE33\\uDE60-\\uDE7C\\uDE80-\\uDE9C\\uDEC0-\\uDEC7\\uDEC9-\\uDEE4\\uDF00-\\uDF35\\uDF40-\\uDF55\\uDF60-\\uDF72\\uDF80-\\uDF91]|\\uD803[\\uDC00-\\uDC48]|\\uD804[\\uDC03-\\uDC37\\uDC83-\\uDCAF\\uDCD0-\\uDCE8\\uDD03-\\uDD26\\uDD50-\\uDD72\\uDD76\\uDD83-\\uDDB2\\uDDC1-\\uDDC4\\uDDDA\\uDE00-\\uDE11\\uDE13-\\uDE2B\\uDEB0-\\uDEDE\\uDF05-\\uDF0C\\uDF0F\\uDF10\\uDF13-\\uDF28\\uDF2A-\\uDF30\\uDF32\\uDF33\\uDF35-\\uDF39\\uDF3D\\uDF5D-\\uDF61]|\\uD805[\\uDC80-\\uDCAF\\uDCC4\\uDCC5\\uDCC7\\uDD80-\\uDDAE\\uDE00-\\uDE2F\\uDE44\\uDE80-\\uDEAA]|\\uD806[\\uDCA0-\\uDCDF\\uDCFF\\uDEC0-\\uDEF8]|\\uD808[\\uDC00-\\uDF98]|\\uD809[\\uDC00-\\uDC6E]|[\\uD80C\\uD840-\\uD868\\uD86A-\\uD86C][\\uDC00-\\uDFFF]|\\uD80D[\\uDC00-\\uDC2E]|\\uD81A[\\uDC00-\\uDE38\\uDE40-\\uDE5E\\uDED0-\\uDEED\\uDF00-\\uDF2F\\uDF40-\\uDF43\\uDF63-\\uDF77\\uDF7D-\\uDF8F]|\\uD81B[\\uDF00-\\uDF44\\uDF50\\uDF93-\\uDF9F]|\\uD82C[\\uDC00\\uDC01]|\\uD82F[\\uDC00-\\uDC6A\\uDC70-\\uDC7C\\uDC80-\\uDC88\\uDC90-\\uDC99]|\\uD835[\\uDC00-\\uDC54\\uDC56-\\uDC9C\\uDC9E\\uDC9F\\uDCA2\\uDCA5\\uDCA6\\uDCA9-\\uDCAC\\uDCAE-\\uDCB9\\uDCBB\\uDCBD-\\uDCC3\\uDCC5-\\uDD05\\uDD07-\\uDD0A\\uDD0D-\\uDD14\\uDD16-\\uDD1C\\uDD1E-\\uDD39\\uDD3B-\\uDD3E\\uDD40-\\uDD44\\uDD46\\uDD4A-\\uDD50\\uDD52-\\uDEA5\\uDEA8-\\uDEC0\\uDEC2-\\uDEDA\\uDEDC-\\uDEFA\\uDEFC-\\uDF14\\uDF16-\\uDF34\\uDF36-\\uDF4E\\uDF50-\\uDF6E\\uDF70-\\uDF88\\uDF8A-\\uDFA8\\uDFAA-\\uDFC2\\uDFC4-\\uDFCB]|\\uD83A[\\uDC00-\\uDCC4]|\\uD83B[\\uDE00-\\uDE03\\uDE05-\\uDE1F\\uDE21\\uDE22\\uDE24\\uDE27\\uDE29-\\uDE32\\uDE34-\\uDE37\\uDE39\\uDE3B\\uDE42\\uDE47\\uDE49\\uDE4B\\uDE4D-\\uDE4F\\uDE51\\uDE52\\uDE54\\uDE57\\uDE59\\uDE5B\\uDE5D\\uDE5F\\uDE61\\uDE62\\uDE64\\uDE67-\\uDE6A\\uDE6C-\\uDE72\\uDE74-\\uDE77\\uDE79-\\uDE7C\\uDE7E\\uDE80-\\uDE89\\uDE8B-\\uDE9B\\uDEA1-\\uDEA3\\uDEA5-\\uDEA9\\uDEAB-\\uDEBB]|\\uD869[\\uDC00-\\uDED6\\uDF00-\\uDFFF]|\\uD86D[\\uDC00-\\uDF34\\uDF40-\\uDFFF]|\\uD86E[\\uDC00-\\uDC1D]|\\uD87E[\\uDC00-\\uDE1D]/,\n\t        // ECMAScript 6/Unicode v7.0.0 NonAsciiIdentifierPart:\n\t        NonAsciiIdentifierPart: /[\\xAA\\xB5\\xB7\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0300-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u0483-\\u0487\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0610-\\u061A\\u0620-\\u0669\\u066E-\\u06D3\\u06D5-\\u06DC\\u06DF-\\u06E8\\u06EA-\\u06FC\\u06FF\\u0710-\\u074A\\u074D-\\u07B1\\u07C0-\\u07F5\\u07FA\\u0800-\\u082D\\u0840-\\u085B\\u08A0-\\u08B2\\u08E4-\\u0963\\u0966-\\u096F\\u0971-\\u0983\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BC-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CE\\u09D7\\u09DC\\u09DD\\u09DF-\\u09E3\\u09E6-\\u09F1\\u0A01-\\u0A03\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A59-\\u0A5C\\u0A5E\\u0A66-\\u0A75\\u0A81-\\u0A83\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABC-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AD0\\u0AE0-\\u0AE3\\u0AE6-\\u0AEF\\u0B01-\\u0B03\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3C-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B5C\\u0B5D\\u0B5F-\\u0B63\\u0B66-\\u0B6F\\u0B71\\u0B82\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD0\\u0BD7\\u0BE6-\\u0BEF\\u0C00-\\u0C03\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C58\\u0C59\\u0C60-\\u0C63\\u0C66-\\u0C6F\\u0C81-\\u0C83\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBC-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CDE\\u0CE0-\\u0CE3\\u0CE6-\\u0CEF\\u0CF1\\u0CF2\\u0D01-\\u0D03\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4E\\u0D57\\u0D60-\\u0D63\\u0D66-\\u0D6F\\u0D7A-\\u0D7F\\u0D82\\u0D83\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DE6-\\u0DEF\\u0DF2\\u0DF3\\u0E01-\\u0E3A\\u0E40-\\u0E4E\\u0E50-\\u0E59\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB9\\u0EBB-\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EC8-\\u0ECD\\u0ED0-\\u0ED9\\u0EDC-\\u0EDF\\u0F00\\u0F18\\u0F19\\u0F20-\\u0F29\\u0F35\\u0F37\\u0F39\\u0F3E-\\u0F47\\u0F49-\\u0F6C\\u0F71-\\u0F84\\u0F86-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u1000-\\u1049\\u1050-\\u109D\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u135D-\\u135F\\u1369-\\u1371\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1714\\u1720-\\u1734\\u1740-\\u1753\\u1760-\\u176C\\u176E-\\u1770\\u1772\\u1773\\u1780-\\u17D3\\u17D7\\u17DC\\u17DD\\u17E0-\\u17E9\\u180B-\\u180D\\u1810-\\u1819\\u1820-\\u1877\\u1880-\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1920-\\u192B\\u1930-\\u193B\\u1946-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19B0-\\u19C9\\u19D0-\\u19DA\\u1A00-\\u1A1B\\u1A20-\\u1A5E\\u1A60-\\u1A7C\\u1A7F-\\u1A89\\u1A90-\\u1A99\\u1AA7\\u1AB0-\\u1ABD\\u1B00-\\u1B4B\\u1B50-\\u1B59\\u1B6B-\\u1B73\\u1B80-\\u1BF3\\u1C00-\\u1C37\\u1C40-\\u1C49\\u1C4D-\\u1C7D\\u1CD0-\\u1CD2\\u1CD4-\\u1CF6\\u1CF8\\u1CF9\\u1D00-\\u1DF5\\u1DFC-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u200C\\u200D\\u203F\\u2040\\u2054\\u2071\\u207F\\u2090-\\u209C\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2118-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D7F-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2DE0-\\u2DFF\\u3005-\\u3007\\u3021-\\u302F\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u3099-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA62B\\uA640-\\uA66F\\uA674-\\uA67D\\uA67F-\\uA69D\\uA69F-\\uA6F1\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA827\\uA840-\\uA873\\uA880-\\uA8C4\\uA8D0-\\uA8D9\\uA8E0-\\uA8F7\\uA8FB\\uA900-\\uA92D\\uA930-\\uA953\\uA960-\\uA97C\\uA980-\\uA9C0\\uA9CF-\\uA9D9\\uA9E0-\\uA9FE\\uAA00-\\uAA36\\uAA40-\\uAA4D\\uAA50-\\uAA59\\uAA60-\\uAA76\\uAA7A-\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEF\\uAAF2-\\uAAF6\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABEA\\uABEC\\uABED\\uABF0-\\uABF9\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE00-\\uFE0F\\uFE20-\\uFE2D\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF10-\\uFF19\\uFF21-\\uFF3A\\uFF3F\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]|\\uD800[\\uDC00-\\uDC0B\\uDC0D-\\uDC26\\uDC28-\\uDC3A\\uDC3C\\uDC3D\\uDC3F-\\uDC4D\\uDC50-\\uDC5D\\uDC80-\\uDCFA\\uDD40-\\uDD74\\uDDFD\\uDE80-\\uDE9C\\uDEA0-\\uDED0\\uDEE0\\uDF00-\\uDF1F\\uDF30-\\uDF4A\\uDF50-\\uDF7A\\uDF80-\\uDF9D\\uDFA0-\\uDFC3\\uDFC8-\\uDFCF\\uDFD1-\\uDFD5]|\\uD801[\\uDC00-\\uDC9D\\uDCA0-\\uDCA9\\uDD00-\\uDD27\\uDD30-\\uDD63\\uDE00-\\uDF36\\uDF40-\\uDF55\\uDF60-\\uDF67]|\\uD802[\\uDC00-\\uDC05\\uDC08\\uDC0A-\\uDC35\\uDC37\\uDC38\\uDC3C\\uDC3F-\\uDC55\\uDC60-\\uDC76\\uDC80-\\uDC9E\\uDD00-\\uDD15\\uDD20-\\uDD39\\uDD80-\\uDDB7\\uDDBE\\uDDBF\\uDE00-\\uDE03\\uDE05\\uDE06\\uDE0C-\\uDE13\\uDE15-\\uDE17\\uDE19-\\uDE33\\uDE38-\\uDE3A\\uDE3F\\uDE60-\\uDE7C\\uDE80-\\uDE9C\\uDEC0-\\uDEC7\\uDEC9-\\uDEE6\\uDF00-\\uDF35\\uDF40-\\uDF55\\uDF60-\\uDF72\\uDF80-\\uDF91]|\\uD803[\\uDC00-\\uDC48]|\\uD804[\\uDC00-\\uDC46\\uDC66-\\uDC6F\\uDC7F-\\uDCBA\\uDCD0-\\uDCE8\\uDCF0-\\uDCF9\\uDD00-\\uDD34\\uDD36-\\uDD3F\\uDD50-\\uDD73\\uDD76\\uDD80-\\uDDC4\\uDDD0-\\uDDDA\\uDE00-\\uDE11\\uDE13-\\uDE37\\uDEB0-\\uDEEA\\uDEF0-\\uDEF9\\uDF01-\\uDF03\\uDF05-\\uDF0C\\uDF0F\\uDF10\\uDF13-\\uDF28\\uDF2A-\\uDF30\\uDF32\\uDF33\\uDF35-\\uDF39\\uDF3C-\\uDF44\\uDF47\\uDF48\\uDF4B-\\uDF4D\\uDF57\\uDF5D-\\uDF63\\uDF66-\\uDF6C\\uDF70-\\uDF74]|\\uD805[\\uDC80-\\uDCC5\\uDCC7\\uDCD0-\\uDCD9\\uDD80-\\uDDB5\\uDDB8-\\uDDC0\\uDE00-\\uDE40\\uDE44\\uDE50-\\uDE59\\uDE80-\\uDEB7\\uDEC0-\\uDEC9]|\\uD806[\\uDCA0-\\uDCE9\\uDCFF\\uDEC0-\\uDEF8]|\\uD808[\\uDC00-\\uDF98]|\\uD809[\\uDC00-\\uDC6E]|[\\uD80C\\uD840-\\uD868\\uD86A-\\uD86C][\\uDC00-\\uDFFF]|\\uD80D[\\uDC00-\\uDC2E]|\\uD81A[\\uDC00-\\uDE38\\uDE40-\\uDE5E\\uDE60-\\uDE69\\uDED0-\\uDEED\\uDEF0-\\uDEF4\\uDF00-\\uDF36\\uDF40-\\uDF43\\uDF50-\\uDF59\\uDF63-\\uDF77\\uDF7D-\\uDF8F]|\\uD81B[\\uDF00-\\uDF44\\uDF50-\\uDF7E\\uDF8F-\\uDF9F]|\\uD82C[\\uDC00\\uDC01]|\\uD82F[\\uDC00-\\uDC6A\\uDC70-\\uDC7C\\uDC80-\\uDC88\\uDC90-\\uDC99\\uDC9D\\uDC9E]|\\uD834[\\uDD65-\\uDD69\\uDD6D-\\uDD72\\uDD7B-\\uDD82\\uDD85-\\uDD8B\\uDDAA-\\uDDAD\\uDE42-\\uDE44]|\\uD835[\\uDC00-\\uDC54\\uDC56-\\uDC9C\\uDC9E\\uDC9F\\uDCA2\\uDCA5\\uDCA6\\uDCA9-\\uDCAC\\uDCAE-\\uDCB9\\uDCBB\\uDCBD-\\uDCC3\\uDCC5-\\uDD05\\uDD07-\\uDD0A\\uDD0D-\\uDD14\\uDD16-\\uDD1C\\uDD1E-\\uDD39\\uDD3B-\\uDD3E\\uDD40-\\uDD44\\uDD46\\uDD4A-\\uDD50\\uDD52-\\uDEA5\\uDEA8-\\uDEC0\\uDEC2-\\uDEDA\\uDEDC-\\uDEFA\\uDEFC-\\uDF14\\uDF16-\\uDF34\\uDF36-\\uDF4E\\uDF50-\\uDF6E\\uDF70-\\uDF88\\uDF8A-\\uDFA8\\uDFAA-\\uDFC2\\uDFC4-\\uDFCB\\uDFCE-\\uDFFF]|\\uD83A[\\uDC00-\\uDCC4\\uDCD0-\\uDCD6]|\\uD83B[\\uDE00-\\uDE03\\uDE05-\\uDE1F\\uDE21\\uDE22\\uDE24\\uDE27\\uDE29-\\uDE32\\uDE34-\\uDE37\\uDE39\\uDE3B\\uDE42\\uDE47\\uDE49\\uDE4B\\uDE4D-\\uDE4F\\uDE51\\uDE52\\uDE54\\uDE57\\uDE59\\uDE5B\\uDE5D\\uDE5F\\uDE61\\uDE62\\uDE64\\uDE67-\\uDE6A\\uDE6C-\\uDE72\\uDE74-\\uDE77\\uDE79-\\uDE7C\\uDE7E\\uDE80-\\uDE89\\uDE8B-\\uDE9B\\uDEA1-\\uDEA3\\uDEA5-\\uDEA9\\uDEAB-\\uDEBB]|\\uD869[\\uDC00-\\uDED6\\uDF00-\\uDFFF]|\\uD86D[\\uDC00-\\uDF34\\uDF40-\\uDFFF]|\\uD86E[\\uDC00-\\uDC1D]|\\uD87E[\\uDC00-\\uDE1D]|\\uDB40[\\uDD00-\\uDDEF]/\n\t    };\n\n\t    function isDecimalDigit(ch) {\n\t        return 0x30 <= ch && ch <= 0x39; // 0..9\n\t    }\n\n\t    function isHexDigit(ch) {\n\t        return 0x30 <= ch && ch <= 0x39 || // 0..9\n\t        0x61 <= ch && ch <= 0x66 || // a..f\n\t        0x41 <= ch && ch <= 0x46; // A..F\n\t    }\n\n\t    function isOctalDigit(ch) {\n\t        return ch >= 0x30 && ch <= 0x37; // 0..7\n\t    }\n\n\t    // 7.2 White Space\n\n\t    NON_ASCII_WHITESPACES = [0x1680, 0x180E, 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005, 0x2006, 0x2007, 0x2008, 0x2009, 0x200A, 0x202F, 0x205F, 0x3000, 0xFEFF];\n\n\t    function isWhiteSpace(ch) {\n\t        return ch === 0x20 || ch === 0x09 || ch === 0x0B || ch === 0x0C || ch === 0xA0 || ch >= 0x1680 && NON_ASCII_WHITESPACES.indexOf(ch) >= 0;\n\t    }\n\n\t    // 7.3 Line Terminators\n\n\t    function isLineTerminator(ch) {\n\t        return ch === 0x0A || ch === 0x0D || ch === 0x2028 || ch === 0x2029;\n\t    }\n\n\t    // 7.6 Identifier Names and Identifiers\n\n\t    function fromCodePoint(cp) {\n\t        if (cp <= 0xFFFF) {\n\t            return String.fromCharCode(cp);\n\t        }\n\t        var cu1 = String.fromCharCode(Math.floor((cp - 0x10000) / 0x400) + 0xD800);\n\t        var cu2 = String.fromCharCode((cp - 0x10000) % 0x400 + 0xDC00);\n\t        return cu1 + cu2;\n\t    }\n\n\t    IDENTIFIER_START = new Array(0x80);\n\t    for (ch = 0; ch < 0x80; ++ch) {\n\t        IDENTIFIER_START[ch] = ch >= 0x61 && ch <= 0x7A || // a..z\n\t        ch >= 0x41 && ch <= 0x5A || // A..Z\n\t        ch === 0x24 || ch === 0x5F; // $ (dollar) and _ (underscore)\n\t    }\n\n\t    IDENTIFIER_PART = new Array(0x80);\n\t    for (ch = 0; ch < 0x80; ++ch) {\n\t        IDENTIFIER_PART[ch] = ch >= 0x61 && ch <= 0x7A || // a..z\n\t        ch >= 0x41 && ch <= 0x5A || // A..Z\n\t        ch >= 0x30 && ch <= 0x39 || // 0..9\n\t        ch === 0x24 || ch === 0x5F; // $ (dollar) and _ (underscore)\n\t    }\n\n\t    function isIdentifierStartES5(ch) {\n\t        return ch < 0x80 ? IDENTIFIER_START[ch] : ES5Regex.NonAsciiIdentifierStart.test(fromCodePoint(ch));\n\t    }\n\n\t    function isIdentifierPartES5(ch) {\n\t        return ch < 0x80 ? IDENTIFIER_PART[ch] : ES5Regex.NonAsciiIdentifierPart.test(fromCodePoint(ch));\n\t    }\n\n\t    function isIdentifierStartES6(ch) {\n\t        return ch < 0x80 ? IDENTIFIER_START[ch] : ES6Regex.NonAsciiIdentifierStart.test(fromCodePoint(ch));\n\t    }\n\n\t    function isIdentifierPartES6(ch) {\n\t        return ch < 0x80 ? IDENTIFIER_PART[ch] : ES6Regex.NonAsciiIdentifierPart.test(fromCodePoint(ch));\n\t    }\n\n\t    module.exports = {\n\t        isDecimalDigit: isDecimalDigit,\n\t        isHexDigit: isHexDigit,\n\t        isOctalDigit: isOctalDigit,\n\t        isWhiteSpace: isWhiteSpace,\n\t        isLineTerminator: isLineTerminator,\n\t        isIdentifierStartES5: isIdentifierStartES5,\n\t        isIdentifierPartES5: isIdentifierPartES5,\n\t        isIdentifierStartES6: isIdentifierStartES6,\n\t        isIdentifierPartES6: isIdentifierPartES6\n\t    };\n\t})();\n\t/* vim: set sw=4 ts=4 et tw=80 : */\n\n/***/ }),\n/* 241 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38),\n\t    root = __webpack_require__(17);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar Set = getNative(root, 'Set');\n\n\tmodule.exports = Set;\n\n/***/ }),\n/* 242 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar MapCache = __webpack_require__(160),\n\t    setCacheAdd = __webpack_require__(561),\n\t    setCacheHas = __webpack_require__(562);\n\n\t/**\n\t *\n\t * Creates an array cache object to store unique values.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [values] The values to cache.\n\t */\n\tfunction SetCache(values) {\n\t    var index = -1,\n\t        length = values == null ? 0 : values.length;\n\n\t    this.__data__ = new MapCache();\n\t    while (++index < length) {\n\t        this.add(values[index]);\n\t    }\n\t}\n\n\t// Add methods to `SetCache`.\n\tSetCache.prototype.add = SetCache.prototype.push = setCacheAdd;\n\tSetCache.prototype.has = setCacheHas;\n\n\tmodule.exports = SetCache;\n\n/***/ }),\n/* 243 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar root = __webpack_require__(17);\n\n\t/** Built-in value references. */\n\tvar Uint8Array = root.Uint8Array;\n\n\tmodule.exports = Uint8Array;\n\n/***/ }),\n/* 244 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A faster alternative to `Function#apply`, this function invokes `func`\n\t * with the `this` binding of `thisArg` and the arguments of `args`.\n\t *\n\t * @private\n\t * @param {Function} func The function to invoke.\n\t * @param {*} thisArg The `this` binding of `func`.\n\t * @param {Array} args The arguments to invoke `func` with.\n\t * @returns {*} Returns the result of `func`.\n\t */\n\tfunction apply(func, thisArg, args) {\n\t  switch (args.length) {\n\t    case 0:\n\t      return func.call(thisArg);\n\t    case 1:\n\t      return func.call(thisArg, args[0]);\n\t    case 2:\n\t      return func.call(thisArg, args[0], args[1]);\n\t    case 3:\n\t      return func.call(thisArg, args[0], args[1], args[2]);\n\t  }\n\t  return func.apply(thisArg, args);\n\t}\n\n\tmodule.exports = apply;\n\n/***/ }),\n/* 245 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseTimes = __webpack_require__(513),\n\t    isArguments = __webpack_require__(112),\n\t    isArray = __webpack_require__(6),\n\t    isBuffer = __webpack_require__(113),\n\t    isIndex = __webpack_require__(171),\n\t    isTypedArray = __webpack_require__(177);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Creates an array of the enumerable property names of the array-like `value`.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @param {boolean} inherited Specify returning inherited property names.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction arrayLikeKeys(value, inherited) {\n\t  var isArr = isArray(value),\n\t      isArg = !isArr && isArguments(value),\n\t      isBuff = !isArr && !isArg && isBuffer(value),\n\t      isType = !isArr && !isArg && !isBuff && isTypedArray(value),\n\t      skipIndexes = isArr || isArg || isBuff || isType,\n\t      result = skipIndexes ? baseTimes(value.length, String) : [],\n\t      length = result.length;\n\n\t  for (var key in value) {\n\t    if ((inherited || hasOwnProperty.call(value, key)) && !(skipIndexes && (\n\t    // Safari 9 has enumerable `arguments.length` in strict mode.\n\t    key == 'length' ||\n\t    // Node.js 0.10 has enumerable non-index properties on buffers.\n\t    isBuff && (key == 'offset' || key == 'parent') ||\n\t    // PhantomJS 2 has enumerable non-index properties on typed arrays.\n\t    isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset') ||\n\t    // Skip index properties.\n\t    isIndex(key, length)))) {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = arrayLikeKeys;\n\n/***/ }),\n/* 246 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `_.reduce` for arrays without support for\n\t * iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @param {*} [accumulator] The initial value.\n\t * @param {boolean} [initAccum] Specify using the first element of `array` as\n\t *  the initial value.\n\t * @returns {*} Returns the accumulated value.\n\t */\n\tfunction arrayReduce(array, iteratee, accumulator, initAccum) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length;\n\n\t  if (initAccum && length) {\n\t    accumulator = array[++index];\n\t  }\n\t  while (++index < length) {\n\t    accumulator = iteratee(accumulator, array[index], index, array);\n\t  }\n\t  return accumulator;\n\t}\n\n\tmodule.exports = arrayReduce;\n\n/***/ }),\n/* 247 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseAssignValue = __webpack_require__(163),\n\t    eq = __webpack_require__(46);\n\n\t/**\n\t * This function is like `assignValue` except that it doesn't assign\n\t * `undefined` values.\n\t *\n\t * @private\n\t * @param {Object} object The object to modify.\n\t * @param {string} key The key of the property to assign.\n\t * @param {*} value The value to assign.\n\t */\n\tfunction assignMergeValue(object, key, value) {\n\t  if (value !== undefined && !eq(object[key], value) || value === undefined && !(key in object)) {\n\t    baseAssignValue(object, key, value);\n\t  }\n\t}\n\n\tmodule.exports = assignMergeValue;\n\n/***/ }),\n/* 248 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar createBaseFor = __webpack_require__(527);\n\n\t/**\n\t * The base implementation of `baseForOwn` which iterates over `object`\n\t * properties returned by `keysFunc` and invokes `iteratee` for each property.\n\t * Iteratee functions may exit iteration early by explicitly returning `false`.\n\t *\n\t * @private\n\t * @param {Object} object The object to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @param {Function} keysFunc The function to get the keys of `object`.\n\t * @returns {Object} Returns `object`.\n\t */\n\tvar baseFor = createBaseFor();\n\n\tmodule.exports = baseFor;\n\n/***/ }),\n/* 249 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar castPath = __webpack_require__(255),\n\t    toKey = __webpack_require__(108);\n\n\t/**\n\t * The base implementation of `_.get` without support for default values.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path of the property to get.\n\t * @returns {*} Returns the resolved value.\n\t */\n\tfunction baseGet(object, path) {\n\t  path = castPath(path, object);\n\n\t  var index = 0,\n\t      length = path.length;\n\n\t  while (object != null && index < length) {\n\t    object = object[toKey(path[index++])];\n\t  }\n\t  return index && index == length ? object : undefined;\n\t}\n\n\tmodule.exports = baseGet;\n\n/***/ }),\n/* 250 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayPush = __webpack_require__(161),\n\t    isArray = __webpack_require__(6);\n\n\t/**\n\t * The base implementation of `getAllKeys` and `getAllKeysIn` which uses\n\t * `keysFunc` and `symbolsFunc` to get the enumerable property names and\n\t * symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {Function} keysFunc The function to get the keys of `object`.\n\t * @param {Function} symbolsFunc The function to get the symbols of `object`.\n\t * @returns {Array} Returns the array of property names and symbols.\n\t */\n\tfunction baseGetAllKeys(object, keysFunc, symbolsFunc) {\n\t  var result = keysFunc(object);\n\t  return isArray(object) ? result : arrayPush(result, symbolsFunc(object));\n\t}\n\n\tmodule.exports = baseGetAllKeys;\n\n/***/ }),\n/* 251 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsEqualDeep = __webpack_require__(494),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/**\n\t * The base implementation of `_.isEqual` which supports partial comparisons\n\t * and tracks traversed objects.\n\t *\n\t * @private\n\t * @param {*} value The value to compare.\n\t * @param {*} other The other value to compare.\n\t * @param {boolean} bitmask The bitmask flags.\n\t *  1 - Unordered comparison\n\t *  2 - Partial comparison\n\t * @param {Function} [customizer] The function to customize comparisons.\n\t * @param {Object} [stack] Tracks traversed `value` and `other` objects.\n\t * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n\t */\n\tfunction baseIsEqual(value, other, bitmask, customizer, stack) {\n\t  if (value === other) {\n\t    return true;\n\t  }\n\t  if (value == null || other == null || !isObjectLike(value) && !isObjectLike(other)) {\n\t    return value !== value && other !== other;\n\t  }\n\t  return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);\n\t}\n\n\tmodule.exports = baseIsEqual;\n\n/***/ }),\n/* 252 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseEach = __webpack_require__(487),\n\t    isArrayLike = __webpack_require__(24);\n\n\t/**\n\t * The base implementation of `_.map` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array} Returns the new mapped array.\n\t */\n\tfunction baseMap(collection, iteratee) {\n\t  var index = -1,\n\t      result = isArrayLike(collection) ? Array(collection.length) : [];\n\n\t  baseEach(collection, function (value, key, collection) {\n\t    result[++index] = iteratee(value, key, collection);\n\t  });\n\t  return result;\n\t}\n\n\tmodule.exports = baseMap;\n\n/***/ }),\n/* 253 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _Symbol = __webpack_require__(45),\n\t    arrayMap = __webpack_require__(60),\n\t    isArray = __webpack_require__(6),\n\t    isSymbol = __webpack_require__(62);\n\n\t/** Used as references for various `Number` constants. */\n\tvar INFINITY = 1 / 0;\n\n\t/** Used to convert symbols to primitives and strings. */\n\tvar symbolProto = _Symbol ? _Symbol.prototype : undefined,\n\t    symbolToString = symbolProto ? symbolProto.toString : undefined;\n\n\t/**\n\t * The base implementation of `_.toString` which doesn't convert nullish\n\t * values to empty strings.\n\t *\n\t * @private\n\t * @param {*} value The value to process.\n\t * @returns {string} Returns the string.\n\t */\n\tfunction baseToString(value) {\n\t  // Exit early for strings to avoid a performance hit in some environments.\n\t  if (typeof value == 'string') {\n\t    return value;\n\t  }\n\t  if (isArray(value)) {\n\t    // Recursively convert values (susceptible to call stack limits).\n\t    return arrayMap(value, baseToString) + '';\n\t  }\n\t  if (isSymbol(value)) {\n\t    return symbolToString ? symbolToString.call(value) : '';\n\t  }\n\t  var result = value + '';\n\t  return result == '0' && 1 / value == -INFINITY ? '-0' : result;\n\t}\n\n\tmodule.exports = baseToString;\n\n/***/ }),\n/* 254 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Checks if a `cache` value for `key` exists.\n\t *\n\t * @private\n\t * @param {Object} cache The cache to query.\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction cacheHas(cache, key) {\n\t  return cache.has(key);\n\t}\n\n\tmodule.exports = cacheHas;\n\n/***/ }),\n/* 255 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isArray = __webpack_require__(6),\n\t    isKey = __webpack_require__(173),\n\t    stringToPath = __webpack_require__(571),\n\t    toString = __webpack_require__(114);\n\n\t/**\n\t * Casts `value` to a path array if it's not one.\n\t *\n\t * @private\n\t * @param {*} value The value to inspect.\n\t * @param {Object} [object] The object to query keys on.\n\t * @returns {Array} Returns the cast property path array.\n\t */\n\tfunction castPath(value, object) {\n\t  if (isArray(value)) {\n\t    return value;\n\t  }\n\t  return isKey(value, object) ? [value] : stringToPath(toString(value));\n\t}\n\n\tmodule.exports = castPath;\n\n/***/ }),\n/* 256 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(module) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar root = __webpack_require__(17);\n\n\t/** Detect free variable `exports`. */\n\tvar freeExports = ( false ? 'undefined' : _typeof(exports)) == 'object' && exports && !exports.nodeType && exports;\n\n\t/** Detect free variable `module`. */\n\tvar freeModule = freeExports && ( false ? 'undefined' : _typeof(module)) == 'object' && module && !module.nodeType && module;\n\n\t/** Detect the popular CommonJS extension `module.exports`. */\n\tvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n\t/** Built-in value references. */\n\tvar Buffer = moduleExports ? root.Buffer : undefined,\n\t    allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;\n\n\t/**\n\t * Creates a clone of  `buffer`.\n\t *\n\t * @private\n\t * @param {Buffer} buffer The buffer to clone.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Buffer} Returns the cloned buffer.\n\t */\n\tfunction cloneBuffer(buffer, isDeep) {\n\t  if (isDeep) {\n\t    return buffer.slice();\n\t  }\n\t  var length = buffer.length,\n\t      result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);\n\n\t  buffer.copy(result);\n\t  return result;\n\t}\n\n\tmodule.exports = cloneBuffer;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module)))\n\n/***/ }),\n/* 257 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar cloneArrayBuffer = __webpack_require__(167);\n\n\t/**\n\t * Creates a clone of `typedArray`.\n\t *\n\t * @private\n\t * @param {Object} typedArray The typed array to clone.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the cloned typed array.\n\t */\n\tfunction cloneTypedArray(typedArray, isDeep) {\n\t  var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;\n\t  return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);\n\t}\n\n\tmodule.exports = cloneTypedArray;\n\n/***/ }),\n/* 258 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIteratee = __webpack_require__(61),\n\t    isArrayLike = __webpack_require__(24),\n\t    keys = __webpack_require__(32);\n\n\t/**\n\t * Creates a `_.find` or `_.findLast` function.\n\t *\n\t * @private\n\t * @param {Function} findIndexFunc The function to find the collection index.\n\t * @returns {Function} Returns the new find function.\n\t */\n\tfunction createFind(findIndexFunc) {\n\t  return function (collection, predicate, fromIndex) {\n\t    var iterable = Object(collection);\n\t    if (!isArrayLike(collection)) {\n\t      var iteratee = baseIteratee(predicate, 3);\n\t      collection = keys(collection);\n\t      predicate = function predicate(key) {\n\t        return iteratee(iterable[key], key, iterable);\n\t      };\n\t    }\n\t    var index = findIndexFunc(collection, predicate, fromIndex);\n\t    return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined;\n\t  };\n\t}\n\n\tmodule.exports = createFind;\n\n/***/ }),\n/* 259 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38);\n\n\tvar defineProperty = function () {\n\t  try {\n\t    var func = getNative(Object, 'defineProperty');\n\t    func({}, '', {});\n\t    return func;\n\t  } catch (e) {}\n\t}();\n\n\tmodule.exports = defineProperty;\n\n/***/ }),\n/* 260 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar SetCache = __webpack_require__(242),\n\t    arraySome = __webpack_require__(482),\n\t    cacheHas = __webpack_require__(254);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1,\n\t    COMPARE_UNORDERED_FLAG = 2;\n\n\t/**\n\t * A specialized version of `baseIsEqualDeep` for arrays with support for\n\t * partial deep comparisons.\n\t *\n\t * @private\n\t * @param {Array} array The array to compare.\n\t * @param {Array} other The other array to compare.\n\t * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n\t * @param {Function} customizer The function to customize comparisons.\n\t * @param {Function} equalFunc The function to determine equivalents of values.\n\t * @param {Object} stack Tracks traversed `array` and `other` objects.\n\t * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.\n\t */\n\tfunction equalArrays(array, other, bitmask, customizer, equalFunc, stack) {\n\t  var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\n\t      arrLength = array.length,\n\t      othLength = other.length;\n\n\t  if (arrLength != othLength && !(isPartial && othLength > arrLength)) {\n\t    return false;\n\t  }\n\t  // Assume cyclic values are equal.\n\t  var stacked = stack.get(array);\n\t  if (stacked && stack.get(other)) {\n\t    return stacked == other;\n\t  }\n\t  var index = -1,\n\t      result = true,\n\t      seen = bitmask & COMPARE_UNORDERED_FLAG ? new SetCache() : undefined;\n\n\t  stack.set(array, other);\n\t  stack.set(other, array);\n\n\t  // Ignore non-index properties.\n\t  while (++index < arrLength) {\n\t    var arrValue = array[index],\n\t        othValue = other[index];\n\n\t    if (customizer) {\n\t      var compared = isPartial ? customizer(othValue, arrValue, index, other, array, stack) : customizer(arrValue, othValue, index, array, other, stack);\n\t    }\n\t    if (compared !== undefined) {\n\t      if (compared) {\n\t        continue;\n\t      }\n\t      result = false;\n\t      break;\n\t    }\n\t    // Recursively compare arrays (susceptible to call stack limits).\n\t    if (seen) {\n\t      if (!arraySome(other, function (othValue, othIndex) {\n\t        if (!cacheHas(seen, othIndex) && (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {\n\t          return seen.push(othIndex);\n\t        }\n\t      })) {\n\t        result = false;\n\t        break;\n\t      }\n\t    } else if (!(arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {\n\t      result = false;\n\t      break;\n\t    }\n\t  }\n\t  stack['delete'](array);\n\t  stack['delete'](other);\n\t  return result;\n\t}\n\n\tmodule.exports = equalArrays;\n\n/***/ }),\n/* 261 */\n/***/ (function(module, exports) {\n\n\t/* WEBPACK VAR INJECTION */(function(global) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/** Detect free variable `global` from Node.js. */\n\tvar freeGlobal = (typeof global === 'undefined' ? 'undefined' : _typeof(global)) == 'object' && global && global.Object === Object && global;\n\n\tmodule.exports = freeGlobal;\n\t/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))\n\n/***/ }),\n/* 262 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetAllKeys = __webpack_require__(250),\n\t    getSymbols = __webpack_require__(170),\n\t    keys = __webpack_require__(32);\n\n\t/**\n\t * Creates an array of own enumerable property names and symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names and symbols.\n\t */\n\tfunction getAllKeys(object) {\n\t  return baseGetAllKeys(object, keys, getSymbols);\n\t}\n\n\tmodule.exports = getAllKeys;\n\n/***/ }),\n/* 263 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayPush = __webpack_require__(161),\n\t    getPrototype = __webpack_require__(169),\n\t    getSymbols = __webpack_require__(170),\n\t    stubArray = __webpack_require__(279);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeGetSymbols = Object.getOwnPropertySymbols;\n\n\t/**\n\t * Creates an array of the own and inherited enumerable symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of symbols.\n\t */\n\tvar getSymbolsIn = !nativeGetSymbols ? stubArray : function (object) {\n\t  var result = [];\n\t  while (object) {\n\t    arrayPush(result, getSymbols(object));\n\t    object = getPrototype(object);\n\t  }\n\t  return result;\n\t};\n\n\tmodule.exports = getSymbolsIn;\n\n/***/ }),\n/* 264 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar DataView = __webpack_require__(472),\n\t    Map = __webpack_require__(159),\n\t    Promise = __webpack_require__(474),\n\t    Set = __webpack_require__(241),\n\t    WeakMap = __webpack_require__(475),\n\t    baseGetTag = __webpack_require__(30),\n\t    toSource = __webpack_require__(272);\n\n\t/** `Object#toString` result references. */\n\tvar mapTag = '[object Map]',\n\t    objectTag = '[object Object]',\n\t    promiseTag = '[object Promise]',\n\t    setTag = '[object Set]',\n\t    weakMapTag = '[object WeakMap]';\n\n\tvar dataViewTag = '[object DataView]';\n\n\t/** Used to detect maps, sets, and weakmaps. */\n\tvar dataViewCtorString = toSource(DataView),\n\t    mapCtorString = toSource(Map),\n\t    promiseCtorString = toSource(Promise),\n\t    setCtorString = toSource(Set),\n\t    weakMapCtorString = toSource(WeakMap);\n\n\t/**\n\t * Gets the `toStringTag` of `value`.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @returns {string} Returns the `toStringTag`.\n\t */\n\tvar getTag = baseGetTag;\n\n\t// Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6.\n\tif (DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag || Map && getTag(new Map()) != mapTag || Promise && getTag(Promise.resolve()) != promiseTag || Set && getTag(new Set()) != setTag || WeakMap && getTag(new WeakMap()) != weakMapTag) {\n\t    getTag = function getTag(value) {\n\t        var result = baseGetTag(value),\n\t            Ctor = result == objectTag ? value.constructor : undefined,\n\t            ctorString = Ctor ? toSource(Ctor) : '';\n\n\t        if (ctorString) {\n\t            switch (ctorString) {\n\t                case dataViewCtorString:\n\t                    return dataViewTag;\n\t                case mapCtorString:\n\t                    return mapTag;\n\t                case promiseCtorString:\n\t                    return promiseTag;\n\t                case setCtorString:\n\t                    return setTag;\n\t                case weakMapCtorString:\n\t                    return weakMapTag;\n\t            }\n\t        }\n\t        return result;\n\t    };\n\t}\n\n\tmodule.exports = getTag;\n\n/***/ }),\n/* 265 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar castPath = __webpack_require__(255),\n\t    isArguments = __webpack_require__(112),\n\t    isArray = __webpack_require__(6),\n\t    isIndex = __webpack_require__(171),\n\t    isLength = __webpack_require__(176),\n\t    toKey = __webpack_require__(108);\n\n\t/**\n\t * Checks if `path` exists on `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path to check.\n\t * @param {Function} hasFunc The function to check properties.\n\t * @returns {boolean} Returns `true` if `path` exists, else `false`.\n\t */\n\tfunction hasPath(object, path, hasFunc) {\n\t  path = castPath(path, object);\n\n\t  var index = -1,\n\t      length = path.length,\n\t      result = false;\n\n\t  while (++index < length) {\n\t    var key = toKey(path[index]);\n\t    if (!(result = object != null && hasFunc(object, key))) {\n\t      break;\n\t    }\n\t    object = object[key];\n\t  }\n\t  if (result || ++index != length) {\n\t    return result;\n\t  }\n\t  length = object == null ? 0 : object.length;\n\t  return !!length && isLength(length) && isIndex(key, length) && (isArray(object) || isArguments(object));\n\t}\n\n\tmodule.exports = hasPath;\n\n/***/ }),\n/* 266 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseCreate = __webpack_require__(486),\n\t    getPrototype = __webpack_require__(169),\n\t    isPrototype = __webpack_require__(105);\n\n\t/**\n\t * Initializes an object clone.\n\t *\n\t * @private\n\t * @param {Object} object The object to clone.\n\t * @returns {Object} Returns the initialized clone.\n\t */\n\tfunction initCloneObject(object) {\n\t    return typeof object.constructor == 'function' && !isPrototype(object) ? baseCreate(getPrototype(object)) : {};\n\t}\n\n\tmodule.exports = initCloneObject;\n\n/***/ }),\n/* 267 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(18);\n\n\t/**\n\t * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` if suitable for strict\n\t *  equality comparisons, else `false`.\n\t */\n\tfunction isStrictComparable(value) {\n\t  return value === value && !isObject(value);\n\t}\n\n\tmodule.exports = isStrictComparable;\n\n/***/ }),\n/* 268 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Converts `map` to its key-value pairs.\n\t *\n\t * @private\n\t * @param {Object} map The map to convert.\n\t * @returns {Array} Returns the key-value pairs.\n\t */\n\tfunction mapToArray(map) {\n\t  var index = -1,\n\t      result = Array(map.size);\n\n\t  map.forEach(function (value, key) {\n\t    result[++index] = [key, value];\n\t  });\n\t  return result;\n\t}\n\n\tmodule.exports = mapToArray;\n\n/***/ }),\n/* 269 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `matchesProperty` for source values suitable\n\t * for strict equality comparisons, i.e. `===`.\n\t *\n\t * @private\n\t * @param {string} key The key of the property to get.\n\t * @param {*} srcValue The value to match.\n\t * @returns {Function} Returns the new spec function.\n\t */\n\tfunction matchesStrictComparable(key, srcValue) {\n\t  return function (object) {\n\t    if (object == null) {\n\t      return false;\n\t    }\n\t    return object[key] === srcValue && (srcValue !== undefined || key in Object(object));\n\t  };\n\t}\n\n\tmodule.exports = matchesStrictComparable;\n\n/***/ }),\n/* 270 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(module) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar freeGlobal = __webpack_require__(261);\n\n\t/** Detect free variable `exports`. */\n\tvar freeExports = ( false ? 'undefined' : _typeof(exports)) == 'object' && exports && !exports.nodeType && exports;\n\n\t/** Detect free variable `module`. */\n\tvar freeModule = freeExports && ( false ? 'undefined' : _typeof(module)) == 'object' && module && !module.nodeType && module;\n\n\t/** Detect the popular CommonJS extension `module.exports`. */\n\tvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n\t/** Detect free variable `process` from Node.js. */\n\tvar freeProcess = moduleExports && freeGlobal.process;\n\n\t/** Used to access faster Node.js helpers. */\n\tvar nodeUtil = function () {\n\t  try {\n\t    return freeProcess && freeProcess.binding && freeProcess.binding('util');\n\t  } catch (e) {}\n\t}();\n\n\tmodule.exports = nodeUtil;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module)))\n\n/***/ }),\n/* 271 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Creates a unary function that invokes `func` with its argument transformed.\n\t *\n\t * @private\n\t * @param {Function} func The function to wrap.\n\t * @param {Function} transform The argument transform.\n\t * @returns {Function} Returns the new function.\n\t */\n\tfunction overArg(func, transform) {\n\t  return function (arg) {\n\t    return func(transform(arg));\n\t  };\n\t}\n\n\tmodule.exports = overArg;\n\n/***/ }),\n/* 272 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used for built-in method references. */\n\tvar funcProto = Function.prototype;\n\n\t/** Used to resolve the decompiled source of functions. */\n\tvar funcToString = funcProto.toString;\n\n\t/**\n\t * Converts `func` to its source code.\n\t *\n\t * @private\n\t * @param {Function} func The function to convert.\n\t * @returns {string} Returns the source code.\n\t */\n\tfunction toSource(func) {\n\t  if (func != null) {\n\t    try {\n\t      return funcToString.call(func);\n\t    } catch (e) {}\n\t    try {\n\t      return func + '';\n\t    } catch (e) {}\n\t  }\n\t  return '';\n\t}\n\n\tmodule.exports = toSource;\n\n/***/ }),\n/* 273 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar apply = __webpack_require__(244),\n\t    assignInWith = __webpack_require__(573),\n\t    baseRest = __webpack_require__(101),\n\t    customDefaultsAssignIn = __webpack_require__(529);\n\n\t/**\n\t * Assigns own and inherited enumerable string keyed properties of source\n\t * objects to the destination object for all destination properties that\n\t * resolve to `undefined`. Source objects are applied from left to right.\n\t * Once a property is set, additional values of the same property are ignored.\n\t *\n\t * **Note:** This method mutates `object`.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Object\n\t * @param {Object} object The destination object.\n\t * @param {...Object} [sources] The source objects.\n\t * @returns {Object} Returns `object`.\n\t * @see _.defaultsDeep\n\t * @example\n\t *\n\t * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\n\t * // => { 'a': 1, 'b': 2 }\n\t */\n\tvar defaults = baseRest(function (args) {\n\t  args.push(undefined, customDefaultsAssignIn);\n\t  return apply(assignInWith, undefined, args);\n\t});\n\n\tmodule.exports = defaults;\n\n/***/ }),\n/* 274 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseHas = __webpack_require__(490),\n\t    hasPath = __webpack_require__(265);\n\n\t/**\n\t * Checks if `path` is a direct property of `object`.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path to check.\n\t * @returns {boolean} Returns `true` if `path` exists, else `false`.\n\t * @example\n\t *\n\t * var object = { 'a': { 'b': 2 } };\n\t * var other = _.create({ 'a': _.create({ 'b': 2 }) });\n\t *\n\t * _.has(object, 'a');\n\t * // => true\n\t *\n\t * _.has(object, 'a.b');\n\t * // => true\n\t *\n\t * _.has(object, ['a', 'b']);\n\t * // => true\n\t *\n\t * _.has(other, 'a');\n\t * // => false\n\t */\n\tfunction has(object, path) {\n\t  return object != null && hasPath(object, path, baseHas);\n\t}\n\n\tmodule.exports = has;\n\n/***/ }),\n/* 275 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    getPrototype = __webpack_require__(169),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** `Object#toString` result references. */\n\tvar objectTag = '[object Object]';\n\n\t/** Used for built-in method references. */\n\tvar funcProto = Function.prototype,\n\t    objectProto = Object.prototype;\n\n\t/** Used to resolve the decompiled source of functions. */\n\tvar funcToString = funcProto.toString;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/** Used to infer the `Object` constructor. */\n\tvar objectCtorString = funcToString.call(Object);\n\n\t/**\n\t * Checks if `value` is a plain object, that is, an object created by the\n\t * `Object` constructor or one with a `[[Prototype]]` of `null`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.8.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t * }\n\t *\n\t * _.isPlainObject(new Foo);\n\t * // => false\n\t *\n\t * _.isPlainObject([1, 2, 3]);\n\t * // => false\n\t *\n\t * _.isPlainObject({ 'x': 0, 'y': 0 });\n\t * // => true\n\t *\n\t * _.isPlainObject(Object.create(null));\n\t * // => true\n\t */\n\tfunction isPlainObject(value) {\n\t  if (!isObjectLike(value) || baseGetTag(value) != objectTag) {\n\t    return false;\n\t  }\n\t  var proto = getPrototype(value);\n\t  if (proto === null) {\n\t    return true;\n\t  }\n\t  var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;\n\t  return typeof Ctor == 'function' && Ctor instanceof Ctor && funcToString.call(Ctor) == objectCtorString;\n\t}\n\n\tmodule.exports = isPlainObject;\n\n/***/ }),\n/* 276 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsRegExp = __webpack_require__(498),\n\t    baseUnary = __webpack_require__(102),\n\t    nodeUtil = __webpack_require__(270);\n\n\t/* Node.js helper references. */\n\tvar nodeIsRegExp = nodeUtil && nodeUtil.isRegExp;\n\n\t/**\n\t * Checks if `value` is classified as a `RegExp` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a regexp, else `false`.\n\t * @example\n\t *\n\t * _.isRegExp(/abc/);\n\t * // => true\n\t *\n\t * _.isRegExp('/abc/');\n\t * // => false\n\t */\n\tvar isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp;\n\n\tmodule.exports = isRegExp;\n\n/***/ }),\n/* 277 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseRest = __webpack_require__(101),\n\t    pullAll = __webpack_require__(593);\n\n\t/**\n\t * Removes all given values from `array` using\n\t * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * for equality comparisons.\n\t *\n\t * **Note:** Unlike `_.without`, this method mutates `array`. Use `_.remove`\n\t * to remove elements from an array by predicate.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.0.0\n\t * @category Array\n\t * @param {Array} array The array to modify.\n\t * @param {...*} [values] The values to remove.\n\t * @returns {Array} Returns `array`.\n\t * @example\n\t *\n\t * var array = ['a', 'b', 'c', 'a', 'b', 'c'];\n\t *\n\t * _.pull(array, 'a', 'c');\n\t * console.log(array);\n\t * // => ['b', 'b']\n\t */\n\tvar pull = baseRest(pullAll);\n\n\tmodule.exports = pull;\n\n/***/ }),\n/* 278 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseRepeat = __webpack_require__(510),\n\t    isIterateeCall = __webpack_require__(172),\n\t    toInteger = __webpack_require__(48),\n\t    toString = __webpack_require__(114);\n\n\t/**\n\t * Repeats the given string `n` times.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category String\n\t * @param {string} [string=''] The string to repeat.\n\t * @param {number} [n=1] The number of times to repeat the string.\n\t * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n\t * @returns {string} Returns the repeated string.\n\t * @example\n\t *\n\t * _.repeat('*', 3);\n\t * // => '***'\n\t *\n\t * _.repeat('abc', 2);\n\t * // => 'abcabc'\n\t *\n\t * _.repeat('abc', 0);\n\t * // => ''\n\t */\n\tfunction repeat(string, n, guard) {\n\t  if (guard ? isIterateeCall(string, n, guard) : n === undefined) {\n\t    n = 1;\n\t  } else {\n\t    n = toInteger(n);\n\t  }\n\t  return baseRepeat(toString(string), n);\n\t}\n\n\tmodule.exports = repeat;\n\n/***/ }),\n/* 279 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This method returns a new empty array.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.13.0\n\t * @category Util\n\t * @returns {Array} Returns the new empty array.\n\t * @example\n\t *\n\t * var arrays = _.times(2, _.stubArray);\n\t *\n\t * console.log(arrays);\n\t * // => [[], []]\n\t *\n\t * console.log(arrays[0] === arrays[1]);\n\t * // => false\n\t */\n\tfunction stubArray() {\n\t  return [];\n\t}\n\n\tmodule.exports = stubArray;\n\n/***/ }),\n/* 280 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseValues = __webpack_require__(515),\n\t    keys = __webpack_require__(32);\n\n\t/**\n\t * Creates an array of the own enumerable string keyed property values of `object`.\n\t *\n\t * **Note:** Non-object values are coerced to objects.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property values.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t *   this.b = 2;\n\t * }\n\t *\n\t * Foo.prototype.c = 3;\n\t *\n\t * _.values(new Foo);\n\t * // => [1, 2] (iteration order is not guaranteed)\n\t *\n\t * _.values('hi');\n\t * // => ['h', 'i']\n\t */\n\tfunction values(object) {\n\t  return object == null ? [] : baseValues(object, keys(object));\n\t}\n\n\tmodule.exports = values;\n\n/***/ }),\n/* 281 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tvar originalObject = Object;\n\tvar originalDefProp = Object.defineProperty;\n\tvar originalCreate = Object.create;\n\n\tfunction defProp(obj, name, value) {\n\t  if (originalDefProp) try {\n\t    originalDefProp.call(originalObject, obj, name, { value: value });\n\t  } catch (definePropertyIsBrokenInIE8) {\n\t    obj[name] = value;\n\t  } else {\n\t    obj[name] = value;\n\t  }\n\t}\n\n\t// For functions that will be invoked using .call or .apply, we need to\n\t// define those methods on the function objects themselves, rather than\n\t// inheriting them from Function.prototype, so that a malicious or clumsy\n\t// third party cannot interfere with the functionality of this module by\n\t// redefining Function.prototype.call or .apply.\n\tfunction makeSafeToCall(fun) {\n\t  if (fun) {\n\t    defProp(fun, \"call\", fun.call);\n\t    defProp(fun, \"apply\", fun.apply);\n\t  }\n\t  return fun;\n\t}\n\n\tmakeSafeToCall(originalDefProp);\n\tmakeSafeToCall(originalCreate);\n\n\tvar hasOwn = makeSafeToCall(Object.prototype.hasOwnProperty);\n\tvar numToStr = makeSafeToCall(Number.prototype.toString);\n\tvar strSlice = makeSafeToCall(String.prototype.slice);\n\n\tvar cloner = function cloner() {};\n\tfunction create(prototype) {\n\t  if (originalCreate) {\n\t    return originalCreate.call(originalObject, prototype);\n\t  }\n\t  cloner.prototype = prototype || null;\n\t  return new cloner();\n\t}\n\n\tvar rand = Math.random;\n\tvar uniqueKeys = create(null);\n\n\tfunction makeUniqueKey() {\n\t  // Collisions are highly unlikely, but this module is in the business of\n\t  // making guarantees rather than safe bets.\n\t  do {\n\t    var uniqueKey = internString(strSlice.call(numToStr.call(rand(), 36), 2));\n\t  } while (hasOwn.call(uniqueKeys, uniqueKey));\n\t  return uniqueKeys[uniqueKey] = uniqueKey;\n\t}\n\n\tfunction internString(str) {\n\t  var obj = {};\n\t  obj[str] = true;\n\t  return Object.keys(obj)[0];\n\t}\n\n\t// External users might find this function useful, but it is not necessary\n\t// for the typical use of this module.\n\texports.makeUniqueKey = makeUniqueKey;\n\n\t// Object.getOwnPropertyNames is the only way to enumerate non-enumerable\n\t// properties, so if we wrap it to ignore our secret keys, there should be\n\t// no way (except guessing) to access those properties.\n\tvar originalGetOPNs = Object.getOwnPropertyNames;\n\tObject.getOwnPropertyNames = function getOwnPropertyNames(object) {\n\t  for (var names = originalGetOPNs(object), src = 0, dst = 0, len = names.length; src < len; ++src) {\n\t    if (!hasOwn.call(uniqueKeys, names[src])) {\n\t      if (src > dst) {\n\t        names[dst] = names[src];\n\t      }\n\t      ++dst;\n\t    }\n\t  }\n\t  names.length = dst;\n\t  return names;\n\t};\n\n\tfunction defaultCreatorFn(object) {\n\t  return create(null);\n\t}\n\n\tfunction makeAccessor(secretCreatorFn) {\n\t  var brand = makeUniqueKey();\n\t  var passkey = create(null);\n\n\t  secretCreatorFn = secretCreatorFn || defaultCreatorFn;\n\n\t  function register(object) {\n\t    var secret; // Created lazily.\n\n\t    function vault(key, forget) {\n\t      // Only code that has access to the passkey can retrieve (or forget)\n\t      // the secret object.\n\t      if (key === passkey) {\n\t        return forget ? secret = null : secret || (secret = secretCreatorFn(object));\n\t      }\n\t    }\n\n\t    defProp(object, brand, vault);\n\t  }\n\n\t  function accessor(object) {\n\t    if (!hasOwn.call(object, brand)) register(object);\n\t    return object[brand](passkey);\n\t  }\n\n\t  accessor.forget = function (object) {\n\t    if (hasOwn.call(object, brand)) object[brand](passkey, true);\n\t  };\n\n\t  return accessor;\n\t}\n\n\texports.makeAccessor = makeAccessor;\n\n/***/ }),\n/* 282 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module, global) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/*! https://mths.be/regenerate v1.3.2 by @mathias | MIT license */\n\t;(function (root) {\n\n\t\t// Detect free variables `exports`.\n\t\tvar freeExports = ( false ? 'undefined' : _typeof(exports)) == 'object' && exports;\n\n\t\t// Detect free variable `module`.\n\t\tvar freeModule = ( false ? 'undefined' : _typeof(module)) == 'object' && module && module.exports == freeExports && module;\n\n\t\t// Detect free variable `global`, from Node.js/io.js or Browserified code,\n\t\t// and use it as `root`.\n\t\tvar freeGlobal = (typeof global === 'undefined' ? 'undefined' : _typeof(global)) == 'object' && global;\n\t\tif (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal) {\n\t\t\troot = freeGlobal;\n\t\t}\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\tvar ERRORS = {\n\t\t\t'rangeOrder': 'A range\\u2019s `stop` value must be greater than or equal ' + 'to the `start` value.',\n\t\t\t'codePointRange': 'Invalid code point value. Code points range from ' + 'U+000000 to U+10FFFF.'\n\t\t};\n\n\t\t// https://mathiasbynens.be/notes/javascript-encoding#surrogate-pairs\n\t\tvar HIGH_SURROGATE_MIN = 0xD800;\n\t\tvar HIGH_SURROGATE_MAX = 0xDBFF;\n\t\tvar LOW_SURROGATE_MIN = 0xDC00;\n\t\tvar LOW_SURROGATE_MAX = 0xDFFF;\n\n\t\t// In Regenerate output, `\\0` is never preceded by `\\` because we sort by\n\t\t// code point value, so let’s keep this regular expression simple.\n\t\tvar regexNull = /\\\\x00([^0123456789]|$)/g;\n\n\t\tvar object = {};\n\t\tvar hasOwnProperty = object.hasOwnProperty;\n\t\tvar extend = function extend(destination, source) {\n\t\t\tvar key;\n\t\t\tfor (key in source) {\n\t\t\t\tif (hasOwnProperty.call(source, key)) {\n\t\t\t\t\tdestination[key] = source[key];\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn destination;\n\t\t};\n\n\t\tvar forEach = function forEach(array, callback) {\n\t\t\tvar index = -1;\n\t\t\tvar length = array.length;\n\t\t\twhile (++index < length) {\n\t\t\t\tcallback(array[index], index);\n\t\t\t}\n\t\t};\n\n\t\tvar toString = object.toString;\n\t\tvar isArray = function isArray(value) {\n\t\t\treturn toString.call(value) == '[object Array]';\n\t\t};\n\t\tvar isNumber = function isNumber(value) {\n\t\t\treturn typeof value == 'number' || toString.call(value) == '[object Number]';\n\t\t};\n\n\t\t// This assumes that `number` is a positive integer that `toString()`s nicely\n\t\t// (which is the case for all code point values).\n\t\tvar zeroes = '0000';\n\t\tvar pad = function pad(number, totalCharacters) {\n\t\t\tvar string = String(number);\n\t\t\treturn string.length < totalCharacters ? (zeroes + string).slice(-totalCharacters) : string;\n\t\t};\n\n\t\tvar hex = function hex(number) {\n\t\t\treturn Number(number).toString(16).toUpperCase();\n\t\t};\n\n\t\tvar slice = [].slice;\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\tvar dataFromCodePoints = function dataFromCodePoints(codePoints) {\n\t\t\tvar index = -1;\n\t\t\tvar length = codePoints.length;\n\t\t\tvar max = length - 1;\n\t\t\tvar result = [];\n\t\t\tvar isStart = true;\n\t\t\tvar tmp;\n\t\t\tvar previous = 0;\n\t\t\twhile (++index < length) {\n\t\t\t\ttmp = codePoints[index];\n\t\t\t\tif (isStart) {\n\t\t\t\t\tresult.push(tmp);\n\t\t\t\t\tprevious = tmp;\n\t\t\t\t\tisStart = false;\n\t\t\t\t} else {\n\t\t\t\t\tif (tmp == previous + 1) {\n\t\t\t\t\t\tif (index != max) {\n\t\t\t\t\t\t\tprevious = tmp;\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tisStart = true;\n\t\t\t\t\t\t\tresult.push(tmp + 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// End the previous range and start a new one.\n\t\t\t\t\t\tresult.push(previous + 1, tmp);\n\t\t\t\t\t\tprevious = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (!isStart) {\n\t\t\t\tresult.push(tmp + 1);\n\t\t\t}\n\t\t\treturn result;\n\t\t};\n\n\t\tvar dataRemove = function dataRemove(data, codePoint) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar length = data.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1];\n\t\t\t\tif (codePoint >= start && codePoint < end) {\n\t\t\t\t\t// Modify this pair.\n\t\t\t\t\tif (codePoint == start) {\n\t\t\t\t\t\tif (end == start + 1) {\n\t\t\t\t\t\t\t// Just remove `start` and `end`.\n\t\t\t\t\t\t\tdata.splice(index, 2);\n\t\t\t\t\t\t\treturn data;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Just replace `start` with a new value.\n\t\t\t\t\t\t\tdata[index] = codePoint + 1;\n\t\t\t\t\t\t\treturn data;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (codePoint == end - 1) {\n\t\t\t\t\t\t// Just replace `end` with a new value.\n\t\t\t\t\t\tdata[index + 1] = codePoint;\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Replace `[start, end]` with `[startA, endA, startB, endB]`.\n\t\t\t\t\t\tdata.splice(index, 2, start, codePoint, codePoint + 1, end);\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn data;\n\t\t};\n\n\t\tvar dataRemoveRange = function dataRemoveRange(data, rangeStart, rangeEnd) {\n\t\t\tif (rangeEnd < rangeStart) {\n\t\t\t\tthrow Error(ERRORS.rangeOrder);\n\t\t\t}\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\twhile (index < data.length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1] - 1; // Note: the `- 1` makes `end` inclusive.\n\n\t\t\t\t// Exit as soon as no more matching pairs can be found.\n\t\t\t\tif (start > rangeEnd) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Check if this range pair is equal to, or forms a subset of, the range\n\t\t\t\t// to be removed.\n\t\t\t\t// E.g. we have `[0, 11, 40, 51]` and want to remove 0-10 → `[40, 51]`.\n\t\t\t\t// E.g. we have `[40, 51]` and want to remove 0-100 → `[]`.\n\t\t\t\tif (rangeStart <= start && rangeEnd >= end) {\n\t\t\t\t\t// Remove this pair.\n\t\t\t\t\tdata.splice(index, 2);\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Check if both `rangeStart` and `rangeEnd` are within the bounds of\n\t\t\t\t// this pair.\n\t\t\t\t// E.g. we have `[0, 11]` and want to remove 4-6 → `[0, 4, 7, 11]`.\n\t\t\t\tif (rangeStart >= start && rangeEnd < end) {\n\t\t\t\t\tif (rangeStart == start) {\n\t\t\t\t\t\t// Replace `[start, end]` with `[startB, endB]`.\n\t\t\t\t\t\tdata[index] = rangeEnd + 1;\n\t\t\t\t\t\tdata[index + 1] = end + 1;\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t}\n\t\t\t\t\t// Replace `[start, end]` with `[startA, endA, startB, endB]`.\n\t\t\t\t\tdata.splice(index, 2, start, rangeStart, rangeEnd + 1, end + 1);\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Check if only `rangeStart` is within the bounds of this pair.\n\t\t\t\t// E.g. we have `[0, 11]` and want to remove 4-20 → `[0, 4]`.\n\t\t\t\tif (rangeStart >= start && rangeStart <= end) {\n\t\t\t\t\t// Replace `end` with `rangeStart`.\n\t\t\t\t\tdata[index + 1] = rangeStart;\n\t\t\t\t\t// Note: we cannot `return` just yet, in case any following pairs still\n\t\t\t\t\t// contain matching code points.\n\t\t\t\t\t// E.g. we have `[0, 11, 14, 31]` and want to remove 4-20\n\t\t\t\t\t// → `[0, 4, 21, 31]`.\n\t\t\t\t}\n\n\t\t\t\t// Check if only `rangeEnd` is within the bounds of this pair.\n\t\t\t\t// E.g. we have `[14, 31]` and want to remove 4-20 → `[21, 31]`.\n\t\t\t\telse if (rangeEnd >= start && rangeEnd <= end) {\n\t\t\t\t\t\t// Just replace `start`.\n\t\t\t\t\t\tdata[index] = rangeEnd + 1;\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t}\n\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn data;\n\t\t};\n\n\t\tvar dataAdd = function dataAdd(data, codePoint) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar lastIndex = null;\n\t\t\tvar length = data.length;\n\t\t\tif (codePoint < 0x0 || codePoint > 0x10FFFF) {\n\t\t\t\tthrow RangeError(ERRORS.codePointRange);\n\t\t\t}\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1];\n\n\t\t\t\t// Check if the code point is already in the set.\n\t\t\t\tif (codePoint >= start && codePoint < end) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\tif (codePoint == start - 1) {\n\t\t\t\t\t// Just replace `start` with a new value.\n\t\t\t\t\tdata[index] = codePoint;\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// At this point, if `start` is `greater` than `codePoint`, insert a new\n\t\t\t\t// `[start, end]` pair before the current pair, or after the current pair\n\t\t\t\t// if there is a known `lastIndex`.\n\t\t\t\tif (start > codePoint) {\n\t\t\t\t\tdata.splice(lastIndex != null ? lastIndex + 2 : 0, 0, codePoint, codePoint + 1);\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\tif (codePoint == end) {\n\t\t\t\t\t// Check if adding this code point causes two separate ranges to become\n\t\t\t\t\t// a single range, e.g. `dataAdd([0, 4, 5, 10], 4)` → `[0, 10]`.\n\t\t\t\t\tif (codePoint + 1 == data[index + 2]) {\n\t\t\t\t\t\tdata.splice(index, 4, start, data[index + 3]);\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t}\n\t\t\t\t\t// Else, just replace `end` with a new value.\n\t\t\t\t\tdata[index + 1] = codePoint + 1;\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\t\t\t\tlastIndex = index;\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\t// The loop has finished; add the new pair to the end of the data set.\n\t\t\tdata.push(codePoint, codePoint + 1);\n\t\t\treturn data;\n\t\t};\n\n\t\tvar dataAddData = function dataAddData(dataA, dataB) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar data = dataA.slice();\n\t\t\tvar length = dataB.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = dataB[index];\n\t\t\t\tend = dataB[index + 1] - 1;\n\t\t\t\tif (start == end) {\n\t\t\t\t\tdata = dataAdd(data, start);\n\t\t\t\t} else {\n\t\t\t\t\tdata = dataAddRange(data, start, end);\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn data;\n\t\t};\n\n\t\tvar dataRemoveData = function dataRemoveData(dataA, dataB) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar data = dataA.slice();\n\t\t\tvar length = dataB.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = dataB[index];\n\t\t\t\tend = dataB[index + 1] - 1;\n\t\t\t\tif (start == end) {\n\t\t\t\t\tdata = dataRemove(data, start);\n\t\t\t\t} else {\n\t\t\t\t\tdata = dataRemoveRange(data, start, end);\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn data;\n\t\t};\n\n\t\tvar dataAddRange = function dataAddRange(data, rangeStart, rangeEnd) {\n\t\t\tif (rangeEnd < rangeStart) {\n\t\t\t\tthrow Error(ERRORS.rangeOrder);\n\t\t\t}\n\t\t\tif (rangeStart < 0x0 || rangeStart > 0x10FFFF || rangeEnd < 0x0 || rangeEnd > 0x10FFFF) {\n\t\t\t\tthrow RangeError(ERRORS.codePointRange);\n\t\t\t}\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar added = false;\n\t\t\tvar length = data.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1];\n\n\t\t\t\tif (added) {\n\t\t\t\t\t// The range has already been added to the set; at this point, we just\n\t\t\t\t\t// need to get rid of the following ranges in case they overlap.\n\n\t\t\t\t\t// Check if this range can be combined with the previous range.\n\t\t\t\t\tif (start == rangeEnd + 1) {\n\t\t\t\t\t\tdata.splice(index - 1, 2);\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Exit as soon as no more possibly overlapping pairs can be found.\n\t\t\t\t\tif (start > rangeEnd) {\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t}\n\n\t\t\t\t\t// E.g. `[0, 11, 12, 16]` and we’ve added 5-15, so we now have\n\t\t\t\t\t// `[0, 16, 12, 16]`. Remove the `12,16` part, as it lies within the\n\t\t\t\t\t// `0,16` range that was previously added.\n\t\t\t\t\tif (start >= rangeStart && start <= rangeEnd) {\n\t\t\t\t\t\t// `start` lies within the range that was previously added.\n\n\t\t\t\t\t\tif (end > rangeStart && end - 1 <= rangeEnd) {\n\t\t\t\t\t\t\t// `end` lies within the range that was previously added as well,\n\t\t\t\t\t\t\t// so remove this pair.\n\t\t\t\t\t\t\tdata.splice(index, 2);\n\t\t\t\t\t\t\tindex -= 2;\n\t\t\t\t\t\t\t// Note: we cannot `return` just yet, as there may still be other\n\t\t\t\t\t\t\t// overlapping pairs.\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// `start` lies within the range that was previously added, but\n\t\t\t\t\t\t\t// `end` doesn’t. E.g. `[0, 11, 12, 31]` and we’ve added 5-15, so\n\t\t\t\t\t\t\t// now we have `[0, 16, 12, 31]`. This must be written as `[0, 31]`.\n\t\t\t\t\t\t\t// Remove the previously added `end` and the current `start`.\n\t\t\t\t\t\t\tdata.splice(index - 1, 2);\n\t\t\t\t\t\t\tindex -= 2;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Note: we cannot return yet.\n\t\t\t\t\t}\n\t\t\t\t} else if (start == rangeEnd + 1) {\n\t\t\t\t\tdata[index] = rangeStart;\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Check if a new pair must be inserted *before* the current one.\n\t\t\t\telse if (start > rangeEnd) {\n\t\t\t\t\t\tdata.splice(index, 0, rangeStart, rangeEnd + 1);\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t} else if (rangeStart >= start && rangeStart < end && rangeEnd + 1 <= end) {\n\t\t\t\t\t\t// The new range lies entirely within an existing range pair. No action\n\t\t\t\t\t\t// needed.\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t} else if (\n\t\t\t\t\t// E.g. `[0, 11]` and you add 5-15 → `[0, 16]`.\n\t\t\t\t\trangeStart >= start && rangeStart < end ||\n\t\t\t\t\t// E.g. `[0, 3]` and you add 3-6 → `[0, 7]`.\n\t\t\t\t\tend == rangeStart) {\n\t\t\t\t\t\t// Replace `end` with the new value.\n\t\t\t\t\t\tdata[index + 1] = rangeEnd + 1;\n\t\t\t\t\t\t// Make sure the next range pair doesn’t overlap, e.g. `[0, 11, 12, 14]`\n\t\t\t\t\t\t// and you add 5-15 → `[0, 16]`, i.e. remove the `12,14` part.\n\t\t\t\t\t\tadded = true;\n\t\t\t\t\t\t// Note: we cannot `return` just yet.\n\t\t\t\t\t} else if (rangeStart <= start && rangeEnd + 1 >= end) {\n\t\t\t\t\t\t// The new range is a superset of the old range.\n\t\t\t\t\t\tdata[index] = rangeStart;\n\t\t\t\t\t\tdata[index + 1] = rangeEnd + 1;\n\t\t\t\t\t\tadded = true;\n\t\t\t\t\t}\n\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\t// The loop has finished without doing anything; add the new pair to the end\n\t\t\t// of the data set.\n\t\t\tif (!added) {\n\t\t\t\tdata.push(rangeStart, rangeEnd + 1);\n\t\t\t}\n\t\t\treturn data;\n\t\t};\n\n\t\tvar dataContains = function dataContains(data, codePoint) {\n\t\t\tvar index = 0;\n\t\t\tvar length = data.length;\n\t\t\t// Exit early if `codePoint` is not within `data`’s overall range.\n\t\t\tvar start = data[index];\n\t\t\tvar end = data[length - 1];\n\t\t\tif (length >= 2) {\n\t\t\t\tif (codePoint < start || codePoint > end) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1];\n\t\t\t\tif (codePoint >= start && codePoint < end) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t\tvar dataIntersection = function dataIntersection(data, codePoints) {\n\t\t\tvar index = 0;\n\t\t\tvar length = codePoints.length;\n\t\t\tvar codePoint;\n\t\t\tvar result = [];\n\t\t\twhile (index < length) {\n\t\t\t\tcodePoint = codePoints[index];\n\t\t\t\tif (dataContains(data, codePoint)) {\n\t\t\t\t\tresult.push(codePoint);\n\t\t\t\t}\n\t\t\t\t++index;\n\t\t\t}\n\t\t\treturn dataFromCodePoints(result);\n\t\t};\n\n\t\tvar dataIsEmpty = function dataIsEmpty(data) {\n\t\t\treturn !data.length;\n\t\t};\n\n\t\tvar dataIsSingleton = function dataIsSingleton(data) {\n\t\t\t// Check if the set only represents a single code point.\n\t\t\treturn data.length == 2 && data[0] + 1 == data[1];\n\t\t};\n\n\t\tvar dataToArray = function dataToArray(data) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar result = [];\n\t\t\tvar length = data.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1];\n\t\t\t\twhile (start < end) {\n\t\t\t\t\tresult.push(start);\n\t\t\t\t\t++start;\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn result;\n\t\t};\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\t// https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n\t\tvar floor = Math.floor;\n\t\tvar highSurrogate = function highSurrogate(codePoint) {\n\t\t\treturn parseInt(floor((codePoint - 0x10000) / 0x400) + HIGH_SURROGATE_MIN, 10);\n\t\t};\n\n\t\tvar lowSurrogate = function lowSurrogate(codePoint) {\n\t\t\treturn parseInt((codePoint - 0x10000) % 0x400 + LOW_SURROGATE_MIN, 10);\n\t\t};\n\n\t\tvar stringFromCharCode = String.fromCharCode;\n\t\tvar codePointToString = function codePointToString(codePoint) {\n\t\t\tvar string;\n\t\t\t// https://mathiasbynens.be/notes/javascript-escapes#single\n\t\t\t// Note: the `\\b` escape sequence for U+0008 BACKSPACE in strings has a\n\t\t\t// different meaning in regular expressions (word boundary), so it cannot\n\t\t\t// be used here.\n\t\t\tif (codePoint == 0x09) {\n\t\t\t\tstring = '\\\\t';\n\t\t\t}\n\t\t\t// Note: IE < 9 treats `'\\v'` as `'v'`, so avoid using it.\n\t\t\t// else if (codePoint == 0x0B) {\n\t\t\t// \tstring = '\\\\v';\n\t\t\t// }\n\t\t\telse if (codePoint == 0x0A) {\n\t\t\t\t\tstring = '\\\\n';\n\t\t\t\t} else if (codePoint == 0x0C) {\n\t\t\t\t\tstring = '\\\\f';\n\t\t\t\t} else if (codePoint == 0x0D) {\n\t\t\t\t\tstring = '\\\\r';\n\t\t\t\t} else if (codePoint == 0x5C) {\n\t\t\t\t\tstring = '\\\\\\\\';\n\t\t\t\t} else if (codePoint == 0x24 || codePoint >= 0x28 && codePoint <= 0x2B || codePoint == 0x2D || codePoint == 0x2E || codePoint == 0x3F || codePoint >= 0x5B && codePoint <= 0x5E || codePoint >= 0x7B && codePoint <= 0x7D) {\n\t\t\t\t\t// The code point maps to an unsafe printable ASCII character;\n\t\t\t\t\t// backslash-escape it. Here’s the list of those symbols:\n\t\t\t\t\t//\n\t\t\t\t\t//     $()*+-.?[\\]^{|}\n\t\t\t\t\t//\n\t\t\t\t\t// See #7 for more info.\n\t\t\t\t\tstring = '\\\\' + stringFromCharCode(codePoint);\n\t\t\t\t} else if (codePoint >= 0x20 && codePoint <= 0x7E) {\n\t\t\t\t\t// The code point maps to one of these printable ASCII symbols\n\t\t\t\t\t// (including the space character):\n\t\t\t\t\t//\n\t\t\t\t\t//      !\"#%&',/0123456789:;<=>@ABCDEFGHIJKLMNO\n\t\t\t\t\t//     PQRSTUVWXYZ_`abcdefghijklmnopqrstuvwxyz~\n\t\t\t\t\t//\n\t\t\t\t\t// These can safely be used directly.\n\t\t\t\t\tstring = stringFromCharCode(codePoint);\n\t\t\t\t} else if (codePoint <= 0xFF) {\n\t\t\t\t\t// https://mathiasbynens.be/notes/javascript-escapes#hexadecimal\n\t\t\t\t\tstring = '\\\\x' + pad(hex(codePoint), 2);\n\t\t\t\t} else {\n\t\t\t\t\t// `codePoint <= 0xFFFF` holds true.\n\t\t\t\t\t// https://mathiasbynens.be/notes/javascript-escapes#unicode\n\t\t\t\t\tstring = '\\\\u' + pad(hex(codePoint), 4);\n\t\t\t\t}\n\n\t\t\t// There’s no need to account for astral symbols / surrogate pairs here,\n\t\t\t// since `codePointToString` is private and only used for BMP code points.\n\t\t\t// But if that’s what you need, just add an `else` block with this code:\n\t\t\t//\n\t\t\t//     string = '\\\\u' + pad(hex(highSurrogate(codePoint)), 4)\n\t\t\t//     \t+ '\\\\u' + pad(hex(lowSurrogate(codePoint)), 4);\n\n\t\t\treturn string;\n\t\t};\n\n\t\tvar codePointToStringUnicode = function codePointToStringUnicode(codePoint) {\n\t\t\tif (codePoint <= 0xFFFF) {\n\t\t\t\treturn codePointToString(codePoint);\n\t\t\t}\n\t\t\treturn '\\\\u{' + codePoint.toString(16).toUpperCase() + '}';\n\t\t};\n\n\t\tvar symbolToCodePoint = function symbolToCodePoint(symbol) {\n\t\t\tvar length = symbol.length;\n\t\t\tvar first = symbol.charCodeAt(0);\n\t\t\tvar second;\n\t\t\tif (first >= HIGH_SURROGATE_MIN && first <= HIGH_SURROGATE_MAX && length > 1 // There is a next code unit.\n\t\t\t) {\n\t\t\t\t\t// `first` is a high surrogate, and there is a next character. Assume\n\t\t\t\t\t// it’s a low surrogate (else it’s invalid usage of Regenerate anyway).\n\t\t\t\t\tsecond = symbol.charCodeAt(1);\n\t\t\t\t\t// https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n\t\t\t\t\treturn (first - HIGH_SURROGATE_MIN) * 0x400 + second - LOW_SURROGATE_MIN + 0x10000;\n\t\t\t\t}\n\t\t\treturn first;\n\t\t};\n\n\t\tvar createBMPCharacterClasses = function createBMPCharacterClasses(data) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar result = '';\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar length = data.length;\n\t\t\tif (dataIsSingleton(data)) {\n\t\t\t\treturn codePointToString(data[0]);\n\t\t\t}\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1] - 1; // Note: the `- 1` makes `end` inclusive.\n\t\t\t\tif (start == end) {\n\t\t\t\t\tresult += codePointToString(start);\n\t\t\t\t} else if (start + 1 == end) {\n\t\t\t\t\tresult += codePointToString(start) + codePointToString(end);\n\t\t\t\t} else {\n\t\t\t\t\tresult += codePointToString(start) + '-' + codePointToString(end);\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn '[' + result + ']';\n\t\t};\n\n\t\tvar createUnicodeCharacterClasses = function createUnicodeCharacterClasses(data) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar result = '';\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar length = data.length;\n\t\t\tif (dataIsSingleton(data)) {\n\t\t\t\treturn codePointToStringUnicode(data[0]);\n\t\t\t}\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1] - 1; // Note: the `- 1` makes `end` inclusive.\n\t\t\t\tif (start == end) {\n\t\t\t\t\tresult += codePointToStringUnicode(start);\n\t\t\t\t} else if (start + 1 == end) {\n\t\t\t\t\tresult += codePointToStringUnicode(start) + codePointToStringUnicode(end);\n\t\t\t\t} else {\n\t\t\t\t\tresult += codePointToStringUnicode(start) + '-' + codePointToStringUnicode(end);\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn '[' + result + ']';\n\t\t};\n\n\t\tvar splitAtBMP = function splitAtBMP(data) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar loneHighSurrogates = [];\n\t\t\tvar loneLowSurrogates = [];\n\t\t\tvar bmp = [];\n\t\t\tvar astral = [];\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar length = data.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1] - 1; // Note: the `- 1` makes `end` inclusive.\n\n\t\t\t\tif (start < HIGH_SURROGATE_MIN) {\n\n\t\t\t\t\t// The range starts and ends before the high surrogate range.\n\t\t\t\t\t// E.g. (0, 0x10).\n\t\t\t\t\tif (end < HIGH_SURROGATE_MIN) {\n\t\t\t\t\t\tbmp.push(start, end + 1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The range starts before the high surrogate range and ends within it.\n\t\t\t\t\t// E.g. (0, 0xD855).\n\t\t\t\t\tif (end >= HIGH_SURROGATE_MIN && end <= HIGH_SURROGATE_MAX) {\n\t\t\t\t\t\tbmp.push(start, HIGH_SURROGATE_MIN);\n\t\t\t\t\t\tloneHighSurrogates.push(HIGH_SURROGATE_MIN, end + 1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The range starts before the high surrogate range and ends in the low\n\t\t\t\t\t// surrogate range. E.g. (0, 0xDCFF).\n\t\t\t\t\tif (end >= LOW_SURROGATE_MIN && end <= LOW_SURROGATE_MAX) {\n\t\t\t\t\t\tbmp.push(start, HIGH_SURROGATE_MIN);\n\t\t\t\t\t\tloneHighSurrogates.push(HIGH_SURROGATE_MIN, HIGH_SURROGATE_MAX + 1);\n\t\t\t\t\t\tloneLowSurrogates.push(LOW_SURROGATE_MIN, end + 1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The range starts before the high surrogate range and ends after the\n\t\t\t\t\t// low surrogate range. E.g. (0, 0x10FFFF).\n\t\t\t\t\tif (end > LOW_SURROGATE_MAX) {\n\t\t\t\t\t\tbmp.push(start, HIGH_SURROGATE_MIN);\n\t\t\t\t\t\tloneHighSurrogates.push(HIGH_SURROGATE_MIN, HIGH_SURROGATE_MAX + 1);\n\t\t\t\t\t\tloneLowSurrogates.push(LOW_SURROGATE_MIN, LOW_SURROGATE_MAX + 1);\n\t\t\t\t\t\tif (end <= 0xFFFF) {\n\t\t\t\t\t\t\tbmp.push(LOW_SURROGATE_MAX + 1, end + 1);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tbmp.push(LOW_SURROGATE_MAX + 1, 0xFFFF + 1);\n\t\t\t\t\t\t\tastral.push(0xFFFF + 1, end + 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else if (start >= HIGH_SURROGATE_MIN && start <= HIGH_SURROGATE_MAX) {\n\n\t\t\t\t\t// The range starts and ends in the high surrogate range.\n\t\t\t\t\t// E.g. (0xD855, 0xD866).\n\t\t\t\t\tif (end >= HIGH_SURROGATE_MIN && end <= HIGH_SURROGATE_MAX) {\n\t\t\t\t\t\tloneHighSurrogates.push(start, end + 1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The range starts in the high surrogate range and ends in the low\n\t\t\t\t\t// surrogate range. E.g. (0xD855, 0xDCFF).\n\t\t\t\t\tif (end >= LOW_SURROGATE_MIN && end <= LOW_SURROGATE_MAX) {\n\t\t\t\t\t\tloneHighSurrogates.push(start, HIGH_SURROGATE_MAX + 1);\n\t\t\t\t\t\tloneLowSurrogates.push(LOW_SURROGATE_MIN, end + 1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The range starts in the high surrogate range and ends after the low\n\t\t\t\t\t// surrogate range. E.g. (0xD855, 0x10FFFF).\n\t\t\t\t\tif (end > LOW_SURROGATE_MAX) {\n\t\t\t\t\t\tloneHighSurrogates.push(start, HIGH_SURROGATE_MAX + 1);\n\t\t\t\t\t\tloneLowSurrogates.push(LOW_SURROGATE_MIN, LOW_SURROGATE_MAX + 1);\n\t\t\t\t\t\tif (end <= 0xFFFF) {\n\t\t\t\t\t\t\tbmp.push(LOW_SURROGATE_MAX + 1, end + 1);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tbmp.push(LOW_SURROGATE_MAX + 1, 0xFFFF + 1);\n\t\t\t\t\t\t\tastral.push(0xFFFF + 1, end + 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else if (start >= LOW_SURROGATE_MIN && start <= LOW_SURROGATE_MAX) {\n\n\t\t\t\t\t// The range starts and ends in the low surrogate range.\n\t\t\t\t\t// E.g. (0xDCFF, 0xDDFF).\n\t\t\t\t\tif (end >= LOW_SURROGATE_MIN && end <= LOW_SURROGATE_MAX) {\n\t\t\t\t\t\tloneLowSurrogates.push(start, end + 1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The range starts in the low surrogate range and ends after the low\n\t\t\t\t\t// surrogate range. E.g. (0xDCFF, 0x10FFFF).\n\t\t\t\t\tif (end > LOW_SURROGATE_MAX) {\n\t\t\t\t\t\tloneLowSurrogates.push(start, LOW_SURROGATE_MAX + 1);\n\t\t\t\t\t\tif (end <= 0xFFFF) {\n\t\t\t\t\t\t\tbmp.push(LOW_SURROGATE_MAX + 1, end + 1);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tbmp.push(LOW_SURROGATE_MAX + 1, 0xFFFF + 1);\n\t\t\t\t\t\t\tastral.push(0xFFFF + 1, end + 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else if (start > LOW_SURROGATE_MAX && start <= 0xFFFF) {\n\n\t\t\t\t\t// The range starts and ends after the low surrogate range.\n\t\t\t\t\t// E.g. (0xFFAA, 0x10FFFF).\n\t\t\t\t\tif (end <= 0xFFFF) {\n\t\t\t\t\t\tbmp.push(start, end + 1);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tbmp.push(start, 0xFFFF + 1);\n\t\t\t\t\t\tastral.push(0xFFFF + 1, end + 1);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\n\t\t\t\t\t// The range starts and ends in the astral range.\n\t\t\t\t\tastral.push(start, end + 1);\n\t\t\t\t}\n\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn {\n\t\t\t\t'loneHighSurrogates': loneHighSurrogates,\n\t\t\t\t'loneLowSurrogates': loneLowSurrogates,\n\t\t\t\t'bmp': bmp,\n\t\t\t\t'astral': astral\n\t\t\t};\n\t\t};\n\n\t\tvar optimizeSurrogateMappings = function optimizeSurrogateMappings(surrogateMappings) {\n\t\t\tvar result = [];\n\t\t\tvar tmpLow = [];\n\t\t\tvar addLow = false;\n\t\t\tvar mapping;\n\t\t\tvar nextMapping;\n\t\t\tvar highSurrogates;\n\t\t\tvar lowSurrogates;\n\t\t\tvar nextHighSurrogates;\n\t\t\tvar nextLowSurrogates;\n\t\t\tvar index = -1;\n\t\t\tvar length = surrogateMappings.length;\n\t\t\twhile (++index < length) {\n\t\t\t\tmapping = surrogateMappings[index];\n\t\t\t\tnextMapping = surrogateMappings[index + 1];\n\t\t\t\tif (!nextMapping) {\n\t\t\t\t\tresult.push(mapping);\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\thighSurrogates = mapping[0];\n\t\t\t\tlowSurrogates = mapping[1];\n\t\t\t\tnextHighSurrogates = nextMapping[0];\n\t\t\t\tnextLowSurrogates = nextMapping[1];\n\n\t\t\t\t// Check for identical high surrogate ranges.\n\t\t\t\ttmpLow = lowSurrogates;\n\t\t\t\twhile (nextHighSurrogates && highSurrogates[0] == nextHighSurrogates[0] && highSurrogates[1] == nextHighSurrogates[1]) {\n\t\t\t\t\t// Merge with the next item.\n\t\t\t\t\tif (dataIsSingleton(nextLowSurrogates)) {\n\t\t\t\t\t\ttmpLow = dataAdd(tmpLow, nextLowSurrogates[0]);\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmpLow = dataAddRange(tmpLow, nextLowSurrogates[0], nextLowSurrogates[1] - 1);\n\t\t\t\t\t}\n\t\t\t\t\t++index;\n\t\t\t\t\tmapping = surrogateMappings[index];\n\t\t\t\t\thighSurrogates = mapping[0];\n\t\t\t\t\tlowSurrogates = mapping[1];\n\t\t\t\t\tnextMapping = surrogateMappings[index + 1];\n\t\t\t\t\tnextHighSurrogates = nextMapping && nextMapping[0];\n\t\t\t\t\tnextLowSurrogates = nextMapping && nextMapping[1];\n\t\t\t\t\taddLow = true;\n\t\t\t\t}\n\t\t\t\tresult.push([highSurrogates, addLow ? tmpLow : lowSurrogates]);\n\t\t\t\taddLow = false;\n\t\t\t}\n\t\t\treturn optimizeByLowSurrogates(result);\n\t\t};\n\n\t\tvar optimizeByLowSurrogates = function optimizeByLowSurrogates(surrogateMappings) {\n\t\t\tif (surrogateMappings.length == 1) {\n\t\t\t\treturn surrogateMappings;\n\t\t\t}\n\t\t\tvar index = -1;\n\t\t\tvar innerIndex = -1;\n\t\t\twhile (++index < surrogateMappings.length) {\n\t\t\t\tvar mapping = surrogateMappings[index];\n\t\t\t\tvar lowSurrogates = mapping[1];\n\t\t\t\tvar lowSurrogateStart = lowSurrogates[0];\n\t\t\t\tvar lowSurrogateEnd = lowSurrogates[1];\n\t\t\t\tinnerIndex = index; // Note: the loop starts at the next index.\n\t\t\t\twhile (++innerIndex < surrogateMappings.length) {\n\t\t\t\t\tvar otherMapping = surrogateMappings[innerIndex];\n\t\t\t\t\tvar otherLowSurrogates = otherMapping[1];\n\t\t\t\t\tvar otherLowSurrogateStart = otherLowSurrogates[0];\n\t\t\t\t\tvar otherLowSurrogateEnd = otherLowSurrogates[1];\n\t\t\t\t\tif (lowSurrogateStart == otherLowSurrogateStart && lowSurrogateEnd == otherLowSurrogateEnd) {\n\t\t\t\t\t\t// Add the code points in the other item to this one.\n\t\t\t\t\t\tif (dataIsSingleton(otherMapping[0])) {\n\t\t\t\t\t\t\tmapping[0] = dataAdd(mapping[0], otherMapping[0][0]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tmapping[0] = dataAddRange(mapping[0], otherMapping[0][0], otherMapping[0][1] - 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Remove the other, now redundant, item.\n\t\t\t\t\t\tsurrogateMappings.splice(innerIndex, 1);\n\t\t\t\t\t\t--innerIndex;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn surrogateMappings;\n\t\t};\n\n\t\tvar surrogateSet = function surrogateSet(data) {\n\t\t\t// Exit early if `data` is an empty set.\n\t\t\tif (!data.length) {\n\t\t\t\treturn [];\n\t\t\t}\n\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar startHigh;\n\t\t\tvar startLow;\n\t\t\tvar endHigh;\n\t\t\tvar endLow;\n\t\t\tvar surrogateMappings = [];\n\t\t\tvar length = data.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1] - 1;\n\n\t\t\t\tstartHigh = highSurrogate(start);\n\t\t\t\tstartLow = lowSurrogate(start);\n\t\t\t\tendHigh = highSurrogate(end);\n\t\t\t\tendLow = lowSurrogate(end);\n\n\t\t\t\tvar startsWithLowestLowSurrogate = startLow == LOW_SURROGATE_MIN;\n\t\t\t\tvar endsWithHighestLowSurrogate = endLow == LOW_SURROGATE_MAX;\n\t\t\t\tvar complete = false;\n\n\t\t\t\t// Append the previous high-surrogate-to-low-surrogate mappings.\n\t\t\t\t// Step 1: `(startHigh, startLow)` to `(startHigh, LOW_SURROGATE_MAX)`.\n\t\t\t\tif (startHigh == endHigh || startsWithLowestLowSurrogate && endsWithHighestLowSurrogate) {\n\t\t\t\t\tsurrogateMappings.push([[startHigh, endHigh + 1], [startLow, endLow + 1]]);\n\t\t\t\t\tcomplete = true;\n\t\t\t\t} else {\n\t\t\t\t\tsurrogateMappings.push([[startHigh, startHigh + 1], [startLow, LOW_SURROGATE_MAX + 1]]);\n\t\t\t\t}\n\n\t\t\t\t// Step 2: `(startHigh + 1, LOW_SURROGATE_MIN)` to\n\t\t\t\t// `(endHigh - 1, LOW_SURROGATE_MAX)`.\n\t\t\t\tif (!complete && startHigh + 1 < endHigh) {\n\t\t\t\t\tif (endsWithHighestLowSurrogate) {\n\t\t\t\t\t\t// Combine step 2 and step 3.\n\t\t\t\t\t\tsurrogateMappings.push([[startHigh + 1, endHigh + 1], [LOW_SURROGATE_MIN, endLow + 1]]);\n\t\t\t\t\t\tcomplete = true;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsurrogateMappings.push([[startHigh + 1, endHigh], [LOW_SURROGATE_MIN, LOW_SURROGATE_MAX + 1]]);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Step 3. `(endHigh, LOW_SURROGATE_MIN)` to `(endHigh, endLow)`.\n\t\t\t\tif (!complete) {\n\t\t\t\t\tsurrogateMappings.push([[endHigh, endHigh + 1], [LOW_SURROGATE_MIN, endLow + 1]]);\n\t\t\t\t}\n\n\t\t\t\tindex += 2;\n\t\t\t}\n\n\t\t\t// The format of `surrogateMappings` is as follows:\n\t\t\t//\n\t\t\t//     [ surrogateMapping1, surrogateMapping2 ]\n\t\t\t//\n\t\t\t// i.e.:\n\t\t\t//\n\t\t\t//     [\n\t\t\t//       [ highSurrogates1, lowSurrogates1 ],\n\t\t\t//       [ highSurrogates2, lowSurrogates2 ]\n\t\t\t//     ]\n\t\t\treturn optimizeSurrogateMappings(surrogateMappings);\n\t\t};\n\n\t\tvar createSurrogateCharacterClasses = function createSurrogateCharacterClasses(surrogateMappings) {\n\t\t\tvar result = [];\n\t\t\tforEach(surrogateMappings, function (surrogateMapping) {\n\t\t\t\tvar highSurrogates = surrogateMapping[0];\n\t\t\t\tvar lowSurrogates = surrogateMapping[1];\n\t\t\t\tresult.push(createBMPCharacterClasses(highSurrogates) + createBMPCharacterClasses(lowSurrogates));\n\t\t\t});\n\t\t\treturn result.join('|');\n\t\t};\n\n\t\tvar createCharacterClassesFromData = function createCharacterClassesFromData(data, bmpOnly, hasUnicodeFlag) {\n\t\t\tif (hasUnicodeFlag) {\n\t\t\t\treturn createUnicodeCharacterClasses(data);\n\t\t\t}\n\t\t\tvar result = [];\n\n\t\t\tvar parts = splitAtBMP(data);\n\t\t\tvar loneHighSurrogates = parts.loneHighSurrogates;\n\t\t\tvar loneLowSurrogates = parts.loneLowSurrogates;\n\t\t\tvar bmp = parts.bmp;\n\t\t\tvar astral = parts.astral;\n\t\t\tvar hasLoneHighSurrogates = !dataIsEmpty(loneHighSurrogates);\n\t\t\tvar hasLoneLowSurrogates = !dataIsEmpty(loneLowSurrogates);\n\n\t\t\tvar surrogateMappings = surrogateSet(astral);\n\n\t\t\tif (bmpOnly) {\n\t\t\t\tbmp = dataAddData(bmp, loneHighSurrogates);\n\t\t\t\thasLoneHighSurrogates = false;\n\t\t\t\tbmp = dataAddData(bmp, loneLowSurrogates);\n\t\t\t\thasLoneLowSurrogates = false;\n\t\t\t}\n\n\t\t\tif (!dataIsEmpty(bmp)) {\n\t\t\t\t// The data set contains BMP code points that are not high surrogates\n\t\t\t\t// needed for astral code points in the set.\n\t\t\t\tresult.push(createBMPCharacterClasses(bmp));\n\t\t\t}\n\t\t\tif (surrogateMappings.length) {\n\t\t\t\t// The data set contains astral code points; append character classes\n\t\t\t\t// based on their surrogate pairs.\n\t\t\t\tresult.push(createSurrogateCharacterClasses(surrogateMappings));\n\t\t\t}\n\t\t\t// https://gist.github.com/mathiasbynens/bbe7f870208abcfec860\n\t\t\tif (hasLoneHighSurrogates) {\n\t\t\t\tresult.push(createBMPCharacterClasses(loneHighSurrogates) +\n\t\t\t\t// Make sure the high surrogates aren’t part of a surrogate pair.\n\t\t\t\t'(?![\\\\uDC00-\\\\uDFFF])');\n\t\t\t}\n\t\t\tif (hasLoneLowSurrogates) {\n\t\t\t\tresult.push(\n\t\t\t\t// It is not possible to accurately assert the low surrogates aren’t\n\t\t\t\t// part of a surrogate pair, since JavaScript regular expressions do\n\t\t\t\t// not support lookbehind.\n\t\t\t\t'(?:[^\\\\uD800-\\\\uDBFF]|^)' + createBMPCharacterClasses(loneLowSurrogates));\n\t\t\t}\n\t\t\treturn result.join('|');\n\t\t};\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\t// `regenerate` can be used as a constructor (and new methods can be added to\n\t\t// its prototype) but also as a regular function, the latter of which is the\n\t\t// documented and most common usage. For that reason, it’s not capitalized.\n\t\tvar regenerate = function regenerate(value) {\n\t\t\tif (arguments.length > 1) {\n\t\t\t\tvalue = slice.call(arguments);\n\t\t\t}\n\t\t\tif (this instanceof regenerate) {\n\t\t\t\tthis.data = [];\n\t\t\t\treturn value ? this.add(value) : this;\n\t\t\t}\n\t\t\treturn new regenerate().add(value);\n\t\t};\n\n\t\tregenerate.version = '1.3.2';\n\n\t\tvar proto = regenerate.prototype;\n\t\textend(proto, {\n\t\t\t'add': function add(value) {\n\t\t\t\tvar $this = this;\n\t\t\t\tif (value == null) {\n\t\t\t\t\treturn $this;\n\t\t\t\t}\n\t\t\t\tif (value instanceof regenerate) {\n\t\t\t\t\t// Allow passing other Regenerate instances.\n\t\t\t\t\t$this.data = dataAddData($this.data, value.data);\n\t\t\t\t\treturn $this;\n\t\t\t\t}\n\t\t\t\tif (arguments.length > 1) {\n\t\t\t\t\tvalue = slice.call(arguments);\n\t\t\t\t}\n\t\t\t\tif (isArray(value)) {\n\t\t\t\t\tforEach(value, function (item) {\n\t\t\t\t\t\t$this.add(item);\n\t\t\t\t\t});\n\t\t\t\t\treturn $this;\n\t\t\t\t}\n\t\t\t\t$this.data = dataAdd($this.data, isNumber(value) ? value : symbolToCodePoint(value));\n\t\t\t\treturn $this;\n\t\t\t},\n\t\t\t'remove': function remove(value) {\n\t\t\t\tvar $this = this;\n\t\t\t\tif (value == null) {\n\t\t\t\t\treturn $this;\n\t\t\t\t}\n\t\t\t\tif (value instanceof regenerate) {\n\t\t\t\t\t// Allow passing other Regenerate instances.\n\t\t\t\t\t$this.data = dataRemoveData($this.data, value.data);\n\t\t\t\t\treturn $this;\n\t\t\t\t}\n\t\t\t\tif (arguments.length > 1) {\n\t\t\t\t\tvalue = slice.call(arguments);\n\t\t\t\t}\n\t\t\t\tif (isArray(value)) {\n\t\t\t\t\tforEach(value, function (item) {\n\t\t\t\t\t\t$this.remove(item);\n\t\t\t\t\t});\n\t\t\t\t\treturn $this;\n\t\t\t\t}\n\t\t\t\t$this.data = dataRemove($this.data, isNumber(value) ? value : symbolToCodePoint(value));\n\t\t\t\treturn $this;\n\t\t\t},\n\t\t\t'addRange': function addRange(start, end) {\n\t\t\t\tvar $this = this;\n\t\t\t\t$this.data = dataAddRange($this.data, isNumber(start) ? start : symbolToCodePoint(start), isNumber(end) ? end : symbolToCodePoint(end));\n\t\t\t\treturn $this;\n\t\t\t},\n\t\t\t'removeRange': function removeRange(start, end) {\n\t\t\t\tvar $this = this;\n\t\t\t\tvar startCodePoint = isNumber(start) ? start : symbolToCodePoint(start);\n\t\t\t\tvar endCodePoint = isNumber(end) ? end : symbolToCodePoint(end);\n\t\t\t\t$this.data = dataRemoveRange($this.data, startCodePoint, endCodePoint);\n\t\t\t\treturn $this;\n\t\t\t},\n\t\t\t'intersection': function intersection(argument) {\n\t\t\t\tvar $this = this;\n\t\t\t\t// Allow passing other Regenerate instances.\n\t\t\t\t// TODO: Optimize this by writing and using `dataIntersectionData()`.\n\t\t\t\tvar array = argument instanceof regenerate ? dataToArray(argument.data) : argument;\n\t\t\t\t$this.data = dataIntersection($this.data, array);\n\t\t\t\treturn $this;\n\t\t\t},\n\t\t\t'contains': function contains(codePoint) {\n\t\t\t\treturn dataContains(this.data, isNumber(codePoint) ? codePoint : symbolToCodePoint(codePoint));\n\t\t\t},\n\t\t\t'clone': function clone() {\n\t\t\t\tvar set = new regenerate();\n\t\t\t\tset.data = this.data.slice(0);\n\t\t\t\treturn set;\n\t\t\t},\n\t\t\t'toString': function toString(options) {\n\t\t\t\tvar result = createCharacterClassesFromData(this.data, options ? options.bmpOnly : false, options ? options.hasUnicodeFlag : false);\n\t\t\t\tif (!result) {\n\t\t\t\t\t// For an empty set, return something that can be inserted `/here/` to\n\t\t\t\t\t// form a valid regular expression. Avoid `(?:)` since that matches the\n\t\t\t\t\t// empty string.\n\t\t\t\t\treturn '[]';\n\t\t\t\t}\n\t\t\t\t// Use `\\0` instead of `\\x00` where possible.\n\t\t\t\treturn result.replace(regexNull, '\\\\0$1');\n\t\t\t},\n\t\t\t'toRegExp': function toRegExp(flags) {\n\t\t\t\tvar pattern = this.toString(flags && flags.indexOf('u') != -1 ? { 'hasUnicodeFlag': true } : null);\n\t\t\t\treturn RegExp(pattern, flags || '');\n\t\t\t},\n\t\t\t'valueOf': function valueOf() {\n\t\t\t\t// Note: `valueOf` is aliased as `toArray`.\n\t\t\t\treturn dataToArray(this.data);\n\t\t\t}\n\t\t});\n\n\t\tproto.toArray = proto.valueOf;\n\n\t\t// Some AMD build optimizers, like r.js, check for specific condition patterns\n\t\t// like the following:\n\t\tif (\"function\" == 'function' && _typeof(__webpack_require__(49)) == 'object' && __webpack_require__(49)) {\n\t\t\t!(__WEBPACK_AMD_DEFINE_RESULT__ = function () {\n\t\t\t\treturn regenerate;\n\t\t\t}.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n\t\t} else if (freeExports && !freeExports.nodeType) {\n\t\t\tif (freeModule) {\n\t\t\t\t// in Node.js, io.js, or RingoJS v0.8.0+\n\t\t\t\tfreeModule.exports = regenerate;\n\t\t\t} else {\n\t\t\t\t// in Narwhal or RingoJS v0.7.0-\n\t\t\t\tfreeExports.regenerate = regenerate;\n\t\t\t}\n\t\t} else {\n\t\t\t// in Rhino or a web browser\n\t\t\troot.regenerate = regenerate;\n\t\t}\n\t})(undefined);\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module), (function() { return this; }())))\n\n/***/ }),\n/* 283 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\tvar _assert = __webpack_require__(64);\n\n\tvar _assert2 = _interopRequireDefault(_assert);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _leap = __webpack_require__(607);\n\n\tvar leap = _interopRequireWildcard(_leap);\n\n\tvar _meta = __webpack_require__(608);\n\n\tvar meta = _interopRequireWildcard(_meta);\n\n\tvar _util = __webpack_require__(116);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar hasOwn = Object.prototype.hasOwnProperty; /**\n\t                                               * Copyright (c) 2014, Facebook, Inc.\n\t                                               * All rights reserved.\n\t                                               *\n\t                                               * This source code is licensed under the BSD-style license found in the\n\t                                               * https://raw.github.com/facebook/regenerator/master/LICENSE file. An\n\t                                               * additional grant of patent rights can be found in the PATENTS file in\n\t                                               * the same directory.\n\t                                               */\n\n\tfunction Emitter(contextId) {\n\t  _assert2.default.ok(this instanceof Emitter);\n\t  t.assertIdentifier(contextId);\n\n\t  // Used to generate unique temporary names.\n\t  this.nextTempId = 0;\n\n\t  // In order to make sure the context object does not collide with\n\t  // anything in the local scope, we might have to rename it, so we\n\t  // refer to it symbolically instead of just assuming that it will be\n\t  // called \"context\".\n\t  this.contextId = contextId;\n\n\t  // An append-only list of Statements that grows each time this.emit is\n\t  // called.\n\t  this.listing = [];\n\n\t  // A sparse array whose keys correspond to locations in this.listing\n\t  // that have been marked as branch/jump targets.\n\t  this.marked = [true];\n\n\t  // The last location will be marked when this.getDispatchLoop is\n\t  // called.\n\t  this.finalLoc = loc();\n\n\t  // A list of all leap.TryEntry statements emitted.\n\t  this.tryEntries = [];\n\n\t  // Each time we evaluate the body of a loop, we tell this.leapManager\n\t  // to enter a nested loop context that determines the meaning of break\n\t  // and continue statements therein.\n\t  this.leapManager = new leap.LeapManager(this);\n\t}\n\n\tvar Ep = Emitter.prototype;\n\texports.Emitter = Emitter;\n\n\t// Offsets into this.listing that could be used as targets for branches or\n\t// jumps are represented as numeric Literal nodes. This representation has\n\t// the amazingly convenient benefit of allowing the exact value of the\n\t// location to be determined at any time, even after generating code that\n\t// refers to the location.\n\tfunction loc() {\n\t  return t.numericLiteral(-1);\n\t}\n\n\t// Sets the exact value of the given location to the offset of the next\n\t// Statement emitted.\n\tEp.mark = function (loc) {\n\t  t.assertLiteral(loc);\n\t  var index = this.listing.length;\n\t  if (loc.value === -1) {\n\t    loc.value = index;\n\t  } else {\n\t    // Locations can be marked redundantly, but their values cannot change\n\t    // once set the first time.\n\t    _assert2.default.strictEqual(loc.value, index);\n\t  }\n\t  this.marked[index] = true;\n\t  return loc;\n\t};\n\n\tEp.emit = function (node) {\n\t  if (t.isExpression(node)) {\n\t    node = t.expressionStatement(node);\n\t  }\n\n\t  t.assertStatement(node);\n\t  this.listing.push(node);\n\t};\n\n\t// Shorthand for emitting assignment statements. This will come in handy\n\t// for assignments to temporary variables.\n\tEp.emitAssign = function (lhs, rhs) {\n\t  this.emit(this.assign(lhs, rhs));\n\t  return lhs;\n\t};\n\n\t// Shorthand for an assignment statement.\n\tEp.assign = function (lhs, rhs) {\n\t  return t.expressionStatement(t.assignmentExpression(\"=\", lhs, rhs));\n\t};\n\n\t// Convenience function for generating expressions like context.next,\n\t// context.sent, and context.rval.\n\tEp.contextProperty = function (name, computed) {\n\t  return t.memberExpression(this.contextId, computed ? t.stringLiteral(name) : t.identifier(name), !!computed);\n\t};\n\n\t// Shorthand for setting context.rval and jumping to `context.stop()`.\n\tEp.stop = function (rval) {\n\t  if (rval) {\n\t    this.setReturnValue(rval);\n\t  }\n\n\t  this.jump(this.finalLoc);\n\t};\n\n\tEp.setReturnValue = function (valuePath) {\n\t  t.assertExpression(valuePath.value);\n\n\t  this.emitAssign(this.contextProperty(\"rval\"), this.explodeExpression(valuePath));\n\t};\n\n\tEp.clearPendingException = function (tryLoc, assignee) {\n\t  t.assertLiteral(tryLoc);\n\n\t  var catchCall = t.callExpression(this.contextProperty(\"catch\", true), [tryLoc]);\n\n\t  if (assignee) {\n\t    this.emitAssign(assignee, catchCall);\n\t  } else {\n\t    this.emit(catchCall);\n\t  }\n\t};\n\n\t// Emits code for an unconditional jump to the given location, even if the\n\t// exact value of the location is not yet known.\n\tEp.jump = function (toLoc) {\n\t  this.emitAssign(this.contextProperty(\"next\"), toLoc);\n\t  this.emit(t.breakStatement());\n\t};\n\n\t// Conditional jump.\n\tEp.jumpIf = function (test, toLoc) {\n\t  t.assertExpression(test);\n\t  t.assertLiteral(toLoc);\n\n\t  this.emit(t.ifStatement(test, t.blockStatement([this.assign(this.contextProperty(\"next\"), toLoc), t.breakStatement()])));\n\t};\n\n\t// Conditional jump, with the condition negated.\n\tEp.jumpIfNot = function (test, toLoc) {\n\t  t.assertExpression(test);\n\t  t.assertLiteral(toLoc);\n\n\t  var negatedTest = void 0;\n\t  if (t.isUnaryExpression(test) && test.operator === \"!\") {\n\t    // Avoid double negation.\n\t    negatedTest = test.argument;\n\t  } else {\n\t    negatedTest = t.unaryExpression(\"!\", test);\n\t  }\n\n\t  this.emit(t.ifStatement(negatedTest, t.blockStatement([this.assign(this.contextProperty(\"next\"), toLoc), t.breakStatement()])));\n\t};\n\n\t// Returns a unique MemberExpression that can be used to store and\n\t// retrieve temporary values. Since the object of the member expression is\n\t// the context object, which is presumed to coexist peacefully with all\n\t// other local variables, and since we just increment `nextTempId`\n\t// monotonically, uniqueness is assured.\n\tEp.makeTempVar = function () {\n\t  return this.contextProperty(\"t\" + this.nextTempId++);\n\t};\n\n\tEp.getContextFunction = function (id) {\n\t  return t.functionExpression(id || null /*Anonymous*/\n\t  , [this.contextId], t.blockStatement([this.getDispatchLoop()]), false, // Not a generator anymore!\n\t  false // Nor an expression.\n\t  );\n\t};\n\n\t// Turns this.listing into a loop of the form\n\t//\n\t//   while (1) switch (context.next) {\n\t//   case 0:\n\t//   ...\n\t//   case n:\n\t//     return context.stop();\n\t//   }\n\t//\n\t// Each marked location in this.listing will correspond to one generated\n\t// case statement.\n\tEp.getDispatchLoop = function () {\n\t  var self = this;\n\t  var cases = [];\n\t  var current = void 0;\n\n\t  // If we encounter a break, continue, or return statement in a switch\n\t  // case, we can skip the rest of the statements until the next case.\n\t  var alreadyEnded = false;\n\n\t  self.listing.forEach(function (stmt, i) {\n\t    if (self.marked.hasOwnProperty(i)) {\n\t      cases.push(t.switchCase(t.numericLiteral(i), current = []));\n\t      alreadyEnded = false;\n\t    }\n\n\t    if (!alreadyEnded) {\n\t      current.push(stmt);\n\t      if (t.isCompletionStatement(stmt)) alreadyEnded = true;\n\t    }\n\t  });\n\n\t  // Now that we know how many statements there will be in this.listing,\n\t  // we can finally resolve this.finalLoc.value.\n\t  this.finalLoc.value = this.listing.length;\n\n\t  cases.push(t.switchCase(this.finalLoc, [\n\t    // Intentionally fall through to the \"end\" case...\n\t  ]),\n\n\t  // So that the runtime can jump to the final location without having\n\t  // to know its offset, we provide the \"end\" case as a synonym.\n\t  t.switchCase(t.stringLiteral(\"end\"), [\n\t  // This will check/clear both context.thrown and context.rval.\n\t  t.returnStatement(t.callExpression(this.contextProperty(\"stop\"), []))]));\n\n\t  return t.whileStatement(t.numericLiteral(1), t.switchStatement(t.assignmentExpression(\"=\", this.contextProperty(\"prev\"), this.contextProperty(\"next\")), cases));\n\t};\n\n\tEp.getTryLocsList = function () {\n\t  if (this.tryEntries.length === 0) {\n\t    // To avoid adding a needless [] to the majority of runtime.wrap\n\t    // argument lists, force the caller to handle this case specially.\n\t    return null;\n\t  }\n\n\t  var lastLocValue = 0;\n\n\t  return t.arrayExpression(this.tryEntries.map(function (tryEntry) {\n\t    var thisLocValue = tryEntry.firstLoc.value;\n\t    _assert2.default.ok(thisLocValue >= lastLocValue, \"try entries out of order\");\n\t    lastLocValue = thisLocValue;\n\n\t    var ce = tryEntry.catchEntry;\n\t    var fe = tryEntry.finallyEntry;\n\n\t    var locs = [tryEntry.firstLoc,\n\t    // The null here makes a hole in the array.\n\t    ce ? ce.firstLoc : null];\n\n\t    if (fe) {\n\t      locs[2] = fe.firstLoc;\n\t      locs[3] = fe.afterLoc;\n\t    }\n\n\t    return t.arrayExpression(locs);\n\t  }));\n\t};\n\n\t// All side effects must be realized in order.\n\n\t// If any subexpression harbors a leap, all subexpressions must be\n\t// neutered of side effects.\n\n\t// No destructive modification of AST nodes.\n\n\tEp.explode = function (path, ignoreResult) {\n\t  var node = path.node;\n\t  var self = this;\n\n\t  t.assertNode(node);\n\n\t  if (t.isDeclaration(node)) throw getDeclError(node);\n\n\t  if (t.isStatement(node)) return self.explodeStatement(path);\n\n\t  if (t.isExpression(node)) return self.explodeExpression(path, ignoreResult);\n\n\t  switch (node.type) {\n\t    case \"Program\":\n\t      return path.get(\"body\").map(self.explodeStatement, self);\n\n\t    case \"VariableDeclarator\":\n\t      throw getDeclError(node);\n\n\t    // These node types should be handled by their parent nodes\n\t    // (ObjectExpression, SwitchStatement, and TryStatement, respectively).\n\t    case \"Property\":\n\t    case \"SwitchCase\":\n\t    case \"CatchClause\":\n\t      throw new Error(node.type + \" nodes should be handled by their parents\");\n\n\t    default:\n\t      throw new Error(\"unknown Node of type \" + (0, _stringify2.default)(node.type));\n\t  }\n\t};\n\n\tfunction getDeclError(node) {\n\t  return new Error(\"all declarations should have been transformed into \" + \"assignments before the Exploder began its work: \" + (0, _stringify2.default)(node));\n\t}\n\n\tEp.explodeStatement = function (path, labelId) {\n\t  var stmt = path.node;\n\t  var self = this;\n\t  var before = void 0,\n\t      after = void 0,\n\t      head = void 0;\n\n\t  t.assertStatement(stmt);\n\n\t  if (labelId) {\n\t    t.assertIdentifier(labelId);\n\t  } else {\n\t    labelId = null;\n\t  }\n\n\t  // Explode BlockStatement nodes even if they do not contain a yield,\n\t  // because we don't want or need the curly braces.\n\t  if (t.isBlockStatement(stmt)) {\n\t    path.get(\"body\").forEach(function (path) {\n\t      self.explodeStatement(path);\n\t    });\n\t    return;\n\t  }\n\n\t  if (!meta.containsLeap(stmt)) {\n\t    // Technically we should be able to avoid emitting the statement\n\t    // altogether if !meta.hasSideEffects(stmt), but that leads to\n\t    // confusing generated code (for instance, `while (true) {}` just\n\t    // disappears) and is probably a more appropriate job for a dedicated\n\t    // dead code elimination pass.\n\t    self.emit(stmt);\n\t    return;\n\t  }\n\n\t  switch (stmt.type) {\n\t    case \"ExpressionStatement\":\n\t      self.explodeExpression(path.get(\"expression\"), true);\n\t      break;\n\n\t    case \"LabeledStatement\":\n\t      after = loc();\n\n\t      // Did you know you can break from any labeled block statement or\n\t      // control structure? Well, you can! Note: when a labeled loop is\n\t      // encountered, the leap.LabeledEntry created here will immediately\n\t      // enclose a leap.LoopEntry on the leap manager's stack, and both\n\t      // entries will have the same label. Though this works just fine, it\n\t      // may seem a bit redundant. In theory, we could check here to\n\t      // determine if stmt knows how to handle its own label; for example,\n\t      // stmt happens to be a WhileStatement and so we know it's going to\n\t      // establish its own LoopEntry when we explode it (below). Then this\n\t      // LabeledEntry would be unnecessary. Alternatively, we might be\n\t      // tempted not to pass stmt.label down into self.explodeStatement,\n\t      // because we've handled the label here, but that's a mistake because\n\t      // labeled loops may contain labeled continue statements, which is not\n\t      // something we can handle in this generic case. All in all, I think a\n\t      // little redundancy greatly simplifies the logic of this case, since\n\t      // it's clear that we handle all possible LabeledStatements correctly\n\t      // here, regardless of whether they interact with the leap manager\n\t      // themselves. Also remember that labels and break/continue-to-label\n\t      // statements are rare, and all of this logic happens at transform\n\t      // time, so it has no additional runtime cost.\n\t      self.leapManager.withEntry(new leap.LabeledEntry(after, stmt.label), function () {\n\t        self.explodeStatement(path.get(\"body\"), stmt.label);\n\t      });\n\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"WhileStatement\":\n\t      before = loc();\n\t      after = loc();\n\n\t      self.mark(before);\n\t      self.jumpIfNot(self.explodeExpression(path.get(\"test\")), after);\n\t      self.leapManager.withEntry(new leap.LoopEntry(after, before, labelId), function () {\n\t        self.explodeStatement(path.get(\"body\"));\n\t      });\n\t      self.jump(before);\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"DoWhileStatement\":\n\t      var first = loc();\n\t      var test = loc();\n\t      after = loc();\n\n\t      self.mark(first);\n\t      self.leapManager.withEntry(new leap.LoopEntry(after, test, labelId), function () {\n\t        self.explode(path.get(\"body\"));\n\t      });\n\t      self.mark(test);\n\t      self.jumpIf(self.explodeExpression(path.get(\"test\")), first);\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"ForStatement\":\n\t      head = loc();\n\t      var update = loc();\n\t      after = loc();\n\n\t      if (stmt.init) {\n\t        // We pass true here to indicate that if stmt.init is an expression\n\t        // then we do not care about its result.\n\t        self.explode(path.get(\"init\"), true);\n\t      }\n\n\t      self.mark(head);\n\n\t      if (stmt.test) {\n\t        self.jumpIfNot(self.explodeExpression(path.get(\"test\")), after);\n\t      } else {\n\t        // No test means continue unconditionally.\n\t      }\n\n\t      self.leapManager.withEntry(new leap.LoopEntry(after, update, labelId), function () {\n\t        self.explodeStatement(path.get(\"body\"));\n\t      });\n\n\t      self.mark(update);\n\n\t      if (stmt.update) {\n\t        // We pass true here to indicate that if stmt.update is an\n\t        // expression then we do not care about its result.\n\t        self.explode(path.get(\"update\"), true);\n\t      }\n\n\t      self.jump(head);\n\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"TypeCastExpression\":\n\t      return self.explodeExpression(path.get(\"expression\"));\n\n\t    case \"ForInStatement\":\n\t      head = loc();\n\t      after = loc();\n\n\t      var keyIterNextFn = self.makeTempVar();\n\t      self.emitAssign(keyIterNextFn, t.callExpression(util.runtimeProperty(\"keys\"), [self.explodeExpression(path.get(\"right\"))]));\n\n\t      self.mark(head);\n\n\t      var keyInfoTmpVar = self.makeTempVar();\n\t      self.jumpIf(t.memberExpression(t.assignmentExpression(\"=\", keyInfoTmpVar, t.callExpression(keyIterNextFn, [])), t.identifier(\"done\"), false), after);\n\n\t      self.emitAssign(stmt.left, t.memberExpression(keyInfoTmpVar, t.identifier(\"value\"), false));\n\n\t      self.leapManager.withEntry(new leap.LoopEntry(after, head, labelId), function () {\n\t        self.explodeStatement(path.get(\"body\"));\n\t      });\n\n\t      self.jump(head);\n\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"BreakStatement\":\n\t      self.emitAbruptCompletion({\n\t        type: \"break\",\n\t        target: self.leapManager.getBreakLoc(stmt.label)\n\t      });\n\n\t      break;\n\n\t    case \"ContinueStatement\":\n\t      self.emitAbruptCompletion({\n\t        type: \"continue\",\n\t        target: self.leapManager.getContinueLoc(stmt.label)\n\t      });\n\n\t      break;\n\n\t    case \"SwitchStatement\":\n\t      // Always save the discriminant into a temporary variable in case the\n\t      // test expressions overwrite values like context.sent.\n\t      var disc = self.emitAssign(self.makeTempVar(), self.explodeExpression(path.get(\"discriminant\")));\n\n\t      after = loc();\n\t      var defaultLoc = loc();\n\t      var condition = defaultLoc;\n\t      var caseLocs = [];\n\n\t      // If there are no cases, .cases might be undefined.\n\t      var cases = stmt.cases || [];\n\n\t      for (var i = cases.length - 1; i >= 0; --i) {\n\t        var c = cases[i];\n\t        t.assertSwitchCase(c);\n\n\t        if (c.test) {\n\t          condition = t.conditionalExpression(t.binaryExpression(\"===\", disc, c.test), caseLocs[i] = loc(), condition);\n\t        } else {\n\t          caseLocs[i] = defaultLoc;\n\t        }\n\t      }\n\n\t      var discriminant = path.get(\"discriminant\");\n\t      util.replaceWithOrRemove(discriminant, condition);\n\t      self.jump(self.explodeExpression(discriminant));\n\n\t      self.leapManager.withEntry(new leap.SwitchEntry(after), function () {\n\t        path.get(\"cases\").forEach(function (casePath) {\n\t          var i = casePath.key;\n\t          self.mark(caseLocs[i]);\n\n\t          casePath.get(\"consequent\").forEach(function (path) {\n\t            self.explodeStatement(path);\n\t          });\n\t        });\n\t      });\n\n\t      self.mark(after);\n\t      if (defaultLoc.value === -1) {\n\t        self.mark(defaultLoc);\n\t        _assert2.default.strictEqual(after.value, defaultLoc.value);\n\t      }\n\n\t      break;\n\n\t    case \"IfStatement\":\n\t      var elseLoc = stmt.alternate && loc();\n\t      after = loc();\n\n\t      self.jumpIfNot(self.explodeExpression(path.get(\"test\")), elseLoc || after);\n\n\t      self.explodeStatement(path.get(\"consequent\"));\n\n\t      if (elseLoc) {\n\t        self.jump(after);\n\t        self.mark(elseLoc);\n\t        self.explodeStatement(path.get(\"alternate\"));\n\t      }\n\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"ReturnStatement\":\n\t      self.emitAbruptCompletion({\n\t        type: \"return\",\n\t        value: self.explodeExpression(path.get(\"argument\"))\n\t      });\n\n\t      break;\n\n\t    case \"WithStatement\":\n\t      throw new Error(\"WithStatement not supported in generator functions.\");\n\n\t    case \"TryStatement\":\n\t      after = loc();\n\n\t      var handler = stmt.handler;\n\n\t      var catchLoc = handler && loc();\n\t      var catchEntry = catchLoc && new leap.CatchEntry(catchLoc, handler.param);\n\n\t      var finallyLoc = stmt.finalizer && loc();\n\t      var finallyEntry = finallyLoc && new leap.FinallyEntry(finallyLoc, after);\n\n\t      var tryEntry = new leap.TryEntry(self.getUnmarkedCurrentLoc(), catchEntry, finallyEntry);\n\n\t      self.tryEntries.push(tryEntry);\n\t      self.updateContextPrevLoc(tryEntry.firstLoc);\n\n\t      self.leapManager.withEntry(tryEntry, function () {\n\t        self.explodeStatement(path.get(\"block\"));\n\n\t        if (catchLoc) {\n\t          if (finallyLoc) {\n\t            // If we have both a catch block and a finally block, then\n\t            // because we emit the catch block first, we need to jump over\n\t            // it to the finally block.\n\t            self.jump(finallyLoc);\n\t          } else {\n\t            // If there is no finally block, then we need to jump over the\n\t            // catch block to the fall-through location.\n\t            self.jump(after);\n\t          }\n\n\t          self.updateContextPrevLoc(self.mark(catchLoc));\n\n\t          var bodyPath = path.get(\"handler.body\");\n\t          var safeParam = self.makeTempVar();\n\t          self.clearPendingException(tryEntry.firstLoc, safeParam);\n\n\t          bodyPath.traverse(catchParamVisitor, {\n\t            safeParam: safeParam,\n\t            catchParamName: handler.param.name\n\t          });\n\n\t          self.leapManager.withEntry(catchEntry, function () {\n\t            self.explodeStatement(bodyPath);\n\t          });\n\t        }\n\n\t        if (finallyLoc) {\n\t          self.updateContextPrevLoc(self.mark(finallyLoc));\n\n\t          self.leapManager.withEntry(finallyEntry, function () {\n\t            self.explodeStatement(path.get(\"finalizer\"));\n\t          });\n\n\t          self.emit(t.returnStatement(t.callExpression(self.contextProperty(\"finish\"), [finallyEntry.firstLoc])));\n\t        }\n\t      });\n\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"ThrowStatement\":\n\t      self.emit(t.throwStatement(self.explodeExpression(path.get(\"argument\"))));\n\n\t      break;\n\n\t    default:\n\t      throw new Error(\"unknown Statement of type \" + (0, _stringify2.default)(stmt.type));\n\t  }\n\t};\n\n\tvar catchParamVisitor = {\n\t  Identifier: function Identifier(path, state) {\n\t    if (path.node.name === state.catchParamName && util.isReference(path)) {\n\t      util.replaceWithOrRemove(path, state.safeParam);\n\t    }\n\t  },\n\n\t  Scope: function Scope(path, state) {\n\t    if (path.scope.hasOwnBinding(state.catchParamName)) {\n\t      // Don't descend into nested scopes that shadow the catch\n\t      // parameter with their own declarations.\n\t      path.skip();\n\t    }\n\t  }\n\t};\n\n\tEp.emitAbruptCompletion = function (record) {\n\t  if (!isValidCompletion(record)) {\n\t    _assert2.default.ok(false, \"invalid completion record: \" + (0, _stringify2.default)(record));\n\t  }\n\n\t  _assert2.default.notStrictEqual(record.type, \"normal\", \"normal completions are not abrupt\");\n\n\t  var abruptArgs = [t.stringLiteral(record.type)];\n\n\t  if (record.type === \"break\" || record.type === \"continue\") {\n\t    t.assertLiteral(record.target);\n\t    abruptArgs[1] = record.target;\n\t  } else if (record.type === \"return\" || record.type === \"throw\") {\n\t    if (record.value) {\n\t      t.assertExpression(record.value);\n\t      abruptArgs[1] = record.value;\n\t    }\n\t  }\n\n\t  this.emit(t.returnStatement(t.callExpression(this.contextProperty(\"abrupt\"), abruptArgs)));\n\t};\n\n\tfunction isValidCompletion(record) {\n\t  var type = record.type;\n\n\t  if (type === \"normal\") {\n\t    return !hasOwn.call(record, \"target\");\n\t  }\n\n\t  if (type === \"break\" || type === \"continue\") {\n\t    return !hasOwn.call(record, \"value\") && t.isLiteral(record.target);\n\t  }\n\n\t  if (type === \"return\" || type === \"throw\") {\n\t    return hasOwn.call(record, \"value\") && !hasOwn.call(record, \"target\");\n\t  }\n\n\t  return false;\n\t}\n\n\t// Not all offsets into emitter.listing are potential jump targets. For\n\t// example, execution typically falls into the beginning of a try block\n\t// without jumping directly there. This method returns the current offset\n\t// without marking it, so that a switch case will not necessarily be\n\t// generated for this offset (I say \"not necessarily\" because the same\n\t// location might end up being marked in the process of emitting other\n\t// statements). There's no logical harm in marking such locations as jump\n\t// targets, but minimizing the number of switch cases keeps the generated\n\t// code shorter.\n\tEp.getUnmarkedCurrentLoc = function () {\n\t  return t.numericLiteral(this.listing.length);\n\t};\n\n\t// The context.prev property takes the value of context.next whenever we\n\t// evaluate the switch statement discriminant, which is generally good\n\t// enough for tracking the last location we jumped to, but sometimes\n\t// context.prev needs to be more precise, such as when we fall\n\t// successfully out of a try block and into a finally block without\n\t// jumping. This method exists to update context.prev to the freshest\n\t// available location. If we were implementing a full interpreter, we\n\t// would know the location of the current instruction with complete\n\t// precision at all times, but we don't have that luxury here, as it would\n\t// be costly and verbose to set context.prev before every statement.\n\tEp.updateContextPrevLoc = function (loc) {\n\t  if (loc) {\n\t    t.assertLiteral(loc);\n\n\t    if (loc.value === -1) {\n\t      // If an uninitialized location literal was passed in, set its value\n\t      // to the current this.listing.length.\n\t      loc.value = this.listing.length;\n\t    } else {\n\t      // Otherwise assert that the location matches the current offset.\n\t      _assert2.default.strictEqual(loc.value, this.listing.length);\n\t    }\n\t  } else {\n\t    loc = this.getUnmarkedCurrentLoc();\n\t  }\n\n\t  // Make sure context.prev is up to date in case we fell into this try\n\t  // statement without jumping to it. TODO Consider avoiding this\n\t  // assignment when we know control must have jumped here.\n\t  this.emitAssign(this.contextProperty(\"prev\"), loc);\n\t};\n\n\tEp.explodeExpression = function (path, ignoreResult) {\n\t  var expr = path.node;\n\t  if (expr) {\n\t    t.assertExpression(expr);\n\t  } else {\n\t    return expr;\n\t  }\n\n\t  var self = this;\n\t  var result = void 0; // Used optionally by several cases below.\n\t  var after = void 0;\n\n\t  function finish(expr) {\n\t    t.assertExpression(expr);\n\t    if (ignoreResult) {\n\t      self.emit(expr);\n\t    } else {\n\t      return expr;\n\t    }\n\t  }\n\n\t  // If the expression does not contain a leap, then we either emit the\n\t  // expression as a standalone statement or return it whole.\n\t  if (!meta.containsLeap(expr)) {\n\t    return finish(expr);\n\t  }\n\n\t  // If any child contains a leap (such as a yield or labeled continue or\n\t  // break statement), then any sibling subexpressions will almost\n\t  // certainly have to be exploded in order to maintain the order of their\n\t  // side effects relative to the leaping child(ren).\n\t  var hasLeapingChildren = meta.containsLeap.onlyChildren(expr);\n\n\t  // In order to save the rest of explodeExpression from a combinatorial\n\t  // trainwreck of special cases, explodeViaTempVar is responsible for\n\t  // deciding when a subexpression needs to be \"exploded,\" which is my\n\t  // very technical term for emitting the subexpression as an assignment\n\t  // to a temporary variable and the substituting the temporary variable\n\t  // for the original subexpression. Think of exploded view diagrams, not\n\t  // Michael Bay movies. The point of exploding subexpressions is to\n\t  // control the precise order in which the generated code realizes the\n\t  // side effects of those subexpressions.\n\t  function explodeViaTempVar(tempVar, childPath, ignoreChildResult) {\n\t    _assert2.default.ok(!ignoreChildResult || !tempVar, \"Ignoring the result of a child expression but forcing it to \" + \"be assigned to a temporary variable?\");\n\n\t    var result = self.explodeExpression(childPath, ignoreChildResult);\n\n\t    if (ignoreChildResult) {\n\t      // Side effects already emitted above.\n\n\t    } else if (tempVar || hasLeapingChildren && !t.isLiteral(result)) {\n\t      // If tempVar was provided, then the result will always be assigned\n\t      // to it, even if the result does not otherwise need to be assigned\n\t      // to a temporary variable.  When no tempVar is provided, we have\n\t      // the flexibility to decide whether a temporary variable is really\n\t      // necessary.  Unfortunately, in general, a temporary variable is\n\t      // required whenever any child contains a yield expression, since it\n\t      // is difficult to prove (at all, let alone efficiently) whether\n\t      // this result would evaluate to the same value before and after the\n\t      // yield (see #206).  One narrow case where we can prove it doesn't\n\t      // matter (and thus we do not need a temporary variable) is when the\n\t      // result in question is a Literal value.\n\t      result = self.emitAssign(tempVar || self.makeTempVar(), result);\n\t    }\n\t    return result;\n\t  }\n\n\t  // If ignoreResult is true, then we must take full responsibility for\n\t  // emitting the expression with all its side effects, and we should not\n\t  // return a result.\n\n\t  switch (expr.type) {\n\t    case \"MemberExpression\":\n\t      return finish(t.memberExpression(self.explodeExpression(path.get(\"object\")), expr.computed ? explodeViaTempVar(null, path.get(\"property\")) : expr.property, expr.computed));\n\n\t    case \"CallExpression\":\n\t      var calleePath = path.get(\"callee\");\n\t      var argsPath = path.get(\"arguments\");\n\n\t      var newCallee = void 0;\n\t      var newArgs = [];\n\n\t      var hasLeapingArgs = false;\n\t      argsPath.forEach(function (argPath) {\n\t        hasLeapingArgs = hasLeapingArgs || meta.containsLeap(argPath.node);\n\t      });\n\n\t      if (t.isMemberExpression(calleePath.node)) {\n\t        if (hasLeapingArgs) {\n\t          // If the arguments of the CallExpression contained any yield\n\t          // expressions, then we need to be sure to evaluate the callee\n\t          // before evaluating the arguments, but if the callee was a member\n\t          // expression, then we must be careful that the object of the\n\t          // member expression still gets bound to `this` for the call.\n\n\t          var newObject = explodeViaTempVar(\n\t          // Assign the exploded callee.object expression to a temporary\n\t          // variable so that we can use it twice without reevaluating it.\n\t          self.makeTempVar(), calleePath.get(\"object\"));\n\n\t          var newProperty = calleePath.node.computed ? explodeViaTempVar(null, calleePath.get(\"property\")) : calleePath.node.property;\n\n\t          newArgs.unshift(newObject);\n\n\t          newCallee = t.memberExpression(t.memberExpression(newObject, newProperty, calleePath.node.computed), t.identifier(\"call\"), false);\n\t        } else {\n\t          newCallee = self.explodeExpression(calleePath);\n\t        }\n\t      } else {\n\t        newCallee = explodeViaTempVar(null, calleePath);\n\n\t        if (t.isMemberExpression(newCallee)) {\n\t          // If the callee was not previously a MemberExpression, then the\n\t          // CallExpression was \"unqualified,\" meaning its `this` object\n\t          // should be the global object. If the exploded expression has\n\t          // become a MemberExpression (e.g. a context property, probably a\n\t          // temporary variable), then we need to force it to be unqualified\n\t          // by using the (0, object.property)(...) trick; otherwise, it\n\t          // will receive the object of the MemberExpression as its `this`\n\t          // object.\n\t          newCallee = t.sequenceExpression([t.numericLiteral(0), newCallee]);\n\t        }\n\t      }\n\n\t      argsPath.forEach(function (argPath) {\n\t        newArgs.push(explodeViaTempVar(null, argPath));\n\t      });\n\n\t      return finish(t.callExpression(newCallee, newArgs));\n\n\t    case \"NewExpression\":\n\t      return finish(t.newExpression(explodeViaTempVar(null, path.get(\"callee\")), path.get(\"arguments\").map(function (argPath) {\n\t        return explodeViaTempVar(null, argPath);\n\t      })));\n\n\t    case \"ObjectExpression\":\n\t      return finish(t.objectExpression(path.get(\"properties\").map(function (propPath) {\n\t        if (propPath.isObjectProperty()) {\n\t          return t.objectProperty(propPath.node.key, explodeViaTempVar(null, propPath.get(\"value\")), propPath.node.computed);\n\t        } else {\n\t          return propPath.node;\n\t        }\n\t      })));\n\n\t    case \"ArrayExpression\":\n\t      return finish(t.arrayExpression(path.get(\"elements\").map(function (elemPath) {\n\t        return explodeViaTempVar(null, elemPath);\n\t      })));\n\n\t    case \"SequenceExpression\":\n\t      var lastIndex = expr.expressions.length - 1;\n\n\t      path.get(\"expressions\").forEach(function (exprPath) {\n\t        if (exprPath.key === lastIndex) {\n\t          result = self.explodeExpression(exprPath, ignoreResult);\n\t        } else {\n\t          self.explodeExpression(exprPath, true);\n\t        }\n\t      });\n\n\t      return result;\n\n\t    case \"LogicalExpression\":\n\t      after = loc();\n\n\t      if (!ignoreResult) {\n\t        result = self.makeTempVar();\n\t      }\n\n\t      var left = explodeViaTempVar(result, path.get(\"left\"));\n\n\t      if (expr.operator === \"&&\") {\n\t        self.jumpIfNot(left, after);\n\t      } else {\n\t        _assert2.default.strictEqual(expr.operator, \"||\");\n\t        self.jumpIf(left, after);\n\t      }\n\n\t      explodeViaTempVar(result, path.get(\"right\"), ignoreResult);\n\n\t      self.mark(after);\n\n\t      return result;\n\n\t    case \"ConditionalExpression\":\n\t      var elseLoc = loc();\n\t      after = loc();\n\t      var test = self.explodeExpression(path.get(\"test\"));\n\n\t      self.jumpIfNot(test, elseLoc);\n\n\t      if (!ignoreResult) {\n\t        result = self.makeTempVar();\n\t      }\n\n\t      explodeViaTempVar(result, path.get(\"consequent\"), ignoreResult);\n\t      self.jump(after);\n\n\t      self.mark(elseLoc);\n\t      explodeViaTempVar(result, path.get(\"alternate\"), ignoreResult);\n\n\t      self.mark(after);\n\n\t      return result;\n\n\t    case \"UnaryExpression\":\n\t      return finish(t.unaryExpression(expr.operator,\n\t      // Can't (and don't need to) break up the syntax of the argument.\n\t      // Think about delete a[b].\n\t      self.explodeExpression(path.get(\"argument\")), !!expr.prefix));\n\n\t    case \"BinaryExpression\":\n\t      return finish(t.binaryExpression(expr.operator, explodeViaTempVar(null, path.get(\"left\")), explodeViaTempVar(null, path.get(\"right\"))));\n\n\t    case \"AssignmentExpression\":\n\t      return finish(t.assignmentExpression(expr.operator, self.explodeExpression(path.get(\"left\")), self.explodeExpression(path.get(\"right\"))));\n\n\t    case \"UpdateExpression\":\n\t      return finish(t.updateExpression(expr.operator, self.explodeExpression(path.get(\"argument\")), expr.prefix));\n\n\t    case \"YieldExpression\":\n\t      after = loc();\n\t      var arg = expr.argument && self.explodeExpression(path.get(\"argument\"));\n\n\t      if (arg && expr.delegate) {\n\t        var _result = self.makeTempVar();\n\n\t        self.emit(t.returnStatement(t.callExpression(self.contextProperty(\"delegateYield\"), [arg, t.stringLiteral(_result.property.name), after])));\n\n\t        self.mark(after);\n\n\t        return _result;\n\t      }\n\n\t      self.emitAssign(self.contextProperty(\"next\"), after);\n\t      self.emit(t.returnStatement(arg || null));\n\t      self.mark(after);\n\n\t      return self.contextProperty(\"sent\");\n\n\t    default:\n\t      throw new Error(\"unknown Expression of type \" + (0, _stringify2.default)(expr.type));\n\t  }\n\t};\n\n/***/ }),\n/* 284 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function (str) {\n\t\tvar isExtendedLengthPath = /^\\\\\\\\\\?\\\\/.test(str);\n\t\tvar hasNonAscii = /[^\\x00-\\x80]+/.test(str);\n\n\t\tif (isExtendedLengthPath || hasNonAscii) {\n\t\t\treturn str;\n\t\t}\n\n\t\treturn str.replace(/\\\\/g, '/');\n\t};\n\n/***/ }),\n/* 285 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\tvar util = __webpack_require__(63);\n\tvar has = Object.prototype.hasOwnProperty;\n\n\t/**\n\t * A data structure which is a combination of an array and a set. Adding a new\n\t * member is O(1), testing for membership is O(1), and finding the index of an\n\t * element is O(1). Removing elements from the set is not supported. Only\n\t * strings are supported for membership.\n\t */\n\tfunction ArraySet() {\n\t  this._array = [];\n\t  this._set = Object.create(null);\n\t}\n\n\t/**\n\t * Static method for creating ArraySet instances from an existing array.\n\t */\n\tArraySet.fromArray = function ArraySet_fromArray(aArray, aAllowDuplicates) {\n\t  var set = new ArraySet();\n\t  for (var i = 0, len = aArray.length; i < len; i++) {\n\t    set.add(aArray[i], aAllowDuplicates);\n\t  }\n\t  return set;\n\t};\n\n\t/**\n\t * Return how many unique items are in this ArraySet. If duplicates have been\n\t * added, than those do not count towards the size.\n\t *\n\t * @returns Number\n\t */\n\tArraySet.prototype.size = function ArraySet_size() {\n\t  return Object.getOwnPropertyNames(this._set).length;\n\t};\n\n\t/**\n\t * Add the given string to this set.\n\t *\n\t * @param String aStr\n\t */\n\tArraySet.prototype.add = function ArraySet_add(aStr, aAllowDuplicates) {\n\t  var sStr = util.toSetString(aStr);\n\t  var isDuplicate = has.call(this._set, sStr);\n\t  var idx = this._array.length;\n\t  if (!isDuplicate || aAllowDuplicates) {\n\t    this._array.push(aStr);\n\t  }\n\t  if (!isDuplicate) {\n\t    this._set[sStr] = idx;\n\t  }\n\t};\n\n\t/**\n\t * Is the given string a member of this set?\n\t *\n\t * @param String aStr\n\t */\n\tArraySet.prototype.has = function ArraySet_has(aStr) {\n\t  var sStr = util.toSetString(aStr);\n\t  return has.call(this._set, sStr);\n\t};\n\n\t/**\n\t * What is the index of the given string in the array?\n\t *\n\t * @param String aStr\n\t */\n\tArraySet.prototype.indexOf = function ArraySet_indexOf(aStr) {\n\t  var sStr = util.toSetString(aStr);\n\t  if (has.call(this._set, sStr)) {\n\t    return this._set[sStr];\n\t  }\n\t  throw new Error('\"' + aStr + '\" is not in the set.');\n\t};\n\n\t/**\n\t * What is the element at the given index?\n\t *\n\t * @param Number aIdx\n\t */\n\tArraySet.prototype.at = function ArraySet_at(aIdx) {\n\t  if (aIdx >= 0 && aIdx < this._array.length) {\n\t    return this._array[aIdx];\n\t  }\n\t  throw new Error('No element indexed by ' + aIdx);\n\t};\n\n\t/**\n\t * Returns the array representation of this set (which has the proper indices\n\t * indicated by indexOf). Note that this is a copy of the internal array used\n\t * for storing the members so that no one can mess with internal state.\n\t */\n\tArraySet.prototype.toArray = function ArraySet_toArray() {\n\t  return this._array.slice();\n\t};\n\n\texports.ArraySet = ArraySet;\n\n/***/ }),\n/* 286 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t *\n\t * Based on the Base 64 VLQ implementation in Closure Compiler:\n\t * https://code.google.com/p/closure-compiler/source/browse/trunk/src/com/google/debugging/sourcemap/Base64VLQ.java\n\t *\n\t * Copyright 2011 The Closure Compiler Authors. All rights reserved.\n\t * Redistribution and use in source and binary forms, with or without\n\t * modification, are permitted provided that the following conditions are\n\t * met:\n\t *\n\t *  * Redistributions of source code must retain the above copyright\n\t *    notice, this list of conditions and the following disclaimer.\n\t *  * Redistributions in binary form must reproduce the above\n\t *    copyright notice, this list of conditions and the following\n\t *    disclaimer in the documentation and/or other materials provided\n\t *    with the distribution.\n\t *  * Neither the name of Google Inc. nor the names of its\n\t *    contributors may be used to endorse or promote products derived\n\t *    from this software without specific prior written permission.\n\t *\n\t * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\t * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\t * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\t * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\t * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\t * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\t * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\t * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\t * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\t * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t */\n\n\tvar base64 = __webpack_require__(616);\n\n\t// A single base 64 digit can contain 6 bits of data. For the base 64 variable\n\t// length quantities we use in the source map spec, the first bit is the sign,\n\t// the next four bits are the actual value, and the 6th bit is the\n\t// continuation bit. The continuation bit tells us whether there are more\n\t// digits in this value following this digit.\n\t//\n\t//   Continuation\n\t//   |    Sign\n\t//   |    |\n\t//   V    V\n\t//   101011\n\n\tvar VLQ_BASE_SHIFT = 5;\n\n\t// binary: 100000\n\tvar VLQ_BASE = 1 << VLQ_BASE_SHIFT;\n\n\t// binary: 011111\n\tvar VLQ_BASE_MASK = VLQ_BASE - 1;\n\n\t// binary: 100000\n\tvar VLQ_CONTINUATION_BIT = VLQ_BASE;\n\n\t/**\n\t * Converts from a two-complement value to a value where the sign bit is\n\t * placed in the least significant bit.  For example, as decimals:\n\t *   1 becomes 2 (10 binary), -1 becomes 3 (11 binary)\n\t *   2 becomes 4 (100 binary), -2 becomes 5 (101 binary)\n\t */\n\tfunction toVLQSigned(aValue) {\n\t  return aValue < 0 ? (-aValue << 1) + 1 : (aValue << 1) + 0;\n\t}\n\n\t/**\n\t * Converts to a two-complement value from a value where the sign bit is\n\t * placed in the least significant bit.  For example, as decimals:\n\t *   2 (10 binary) becomes 1, 3 (11 binary) becomes -1\n\t *   4 (100 binary) becomes 2, 5 (101 binary) becomes -2\n\t */\n\tfunction fromVLQSigned(aValue) {\n\t  var isNegative = (aValue & 1) === 1;\n\t  var shifted = aValue >> 1;\n\t  return isNegative ? -shifted : shifted;\n\t}\n\n\t/**\n\t * Returns the base 64 VLQ encoded value.\n\t */\n\texports.encode = function base64VLQ_encode(aValue) {\n\t  var encoded = \"\";\n\t  var digit;\n\n\t  var vlq = toVLQSigned(aValue);\n\n\t  do {\n\t    digit = vlq & VLQ_BASE_MASK;\n\t    vlq >>>= VLQ_BASE_SHIFT;\n\t    if (vlq > 0) {\n\t      // There are still more digits in this value, so we must make sure the\n\t      // continuation bit is marked.\n\t      digit |= VLQ_CONTINUATION_BIT;\n\t    }\n\t    encoded += base64.encode(digit);\n\t  } while (vlq > 0);\n\n\t  return encoded;\n\t};\n\n\t/**\n\t * Decodes the next base 64 VLQ value from the given string and returns the\n\t * value and the rest of the string via the out parameter.\n\t */\n\texports.decode = function base64VLQ_decode(aStr, aIndex, aOutParam) {\n\t  var strLen = aStr.length;\n\t  var result = 0;\n\t  var shift = 0;\n\t  var continuation, digit;\n\n\t  do {\n\t    if (aIndex >= strLen) {\n\t      throw new Error(\"Expected more digits in base 64 VLQ value.\");\n\t    }\n\n\t    digit = base64.decode(aStr.charCodeAt(aIndex++));\n\t    if (digit === -1) {\n\t      throw new Error(\"Invalid base64 digit: \" + aStr.charAt(aIndex - 1));\n\t    }\n\n\t    continuation = !!(digit & VLQ_CONTINUATION_BIT);\n\t    digit &= VLQ_BASE_MASK;\n\t    result = result + (digit << shift);\n\t    shift += VLQ_BASE_SHIFT;\n\t  } while (continuation);\n\n\t  aOutParam.value = fromVLQSigned(result);\n\t  aOutParam.rest = aIndex;\n\t};\n\n/***/ }),\n/* 287 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\tvar base64VLQ = __webpack_require__(286);\n\tvar util = __webpack_require__(63);\n\tvar ArraySet = __webpack_require__(285).ArraySet;\n\tvar MappingList = __webpack_require__(618).MappingList;\n\n\t/**\n\t * An instance of the SourceMapGenerator represents a source map which is\n\t * being built incrementally. You may pass an object with the following\n\t * properties:\n\t *\n\t *   - file: The filename of the generated source.\n\t *   - sourceRoot: A root for all relative URLs in this source map.\n\t */\n\tfunction SourceMapGenerator(aArgs) {\n\t  if (!aArgs) {\n\t    aArgs = {};\n\t  }\n\t  this._file = util.getArg(aArgs, 'file', null);\n\t  this._sourceRoot = util.getArg(aArgs, 'sourceRoot', null);\n\t  this._skipValidation = util.getArg(aArgs, 'skipValidation', false);\n\t  this._sources = new ArraySet();\n\t  this._names = new ArraySet();\n\t  this._mappings = new MappingList();\n\t  this._sourcesContents = null;\n\t}\n\n\tSourceMapGenerator.prototype._version = 3;\n\n\t/**\n\t * Creates a new SourceMapGenerator based on a SourceMapConsumer\n\t *\n\t * @param aSourceMapConsumer The SourceMap.\n\t */\n\tSourceMapGenerator.fromSourceMap = function SourceMapGenerator_fromSourceMap(aSourceMapConsumer) {\n\t  var sourceRoot = aSourceMapConsumer.sourceRoot;\n\t  var generator = new SourceMapGenerator({\n\t    file: aSourceMapConsumer.file,\n\t    sourceRoot: sourceRoot\n\t  });\n\t  aSourceMapConsumer.eachMapping(function (mapping) {\n\t    var newMapping = {\n\t      generated: {\n\t        line: mapping.generatedLine,\n\t        column: mapping.generatedColumn\n\t      }\n\t    };\n\n\t    if (mapping.source != null) {\n\t      newMapping.source = mapping.source;\n\t      if (sourceRoot != null) {\n\t        newMapping.source = util.relative(sourceRoot, newMapping.source);\n\t      }\n\n\t      newMapping.original = {\n\t        line: mapping.originalLine,\n\t        column: mapping.originalColumn\n\t      };\n\n\t      if (mapping.name != null) {\n\t        newMapping.name = mapping.name;\n\t      }\n\t    }\n\n\t    generator.addMapping(newMapping);\n\t  });\n\t  aSourceMapConsumer.sources.forEach(function (sourceFile) {\n\t    var content = aSourceMapConsumer.sourceContentFor(sourceFile);\n\t    if (content != null) {\n\t      generator.setSourceContent(sourceFile, content);\n\t    }\n\t  });\n\t  return generator;\n\t};\n\n\t/**\n\t * Add a single mapping from original source line and column to the generated\n\t * source's line and column for this source map being created. The mapping\n\t * object should have the following properties:\n\t *\n\t *   - generated: An object with the generated line and column positions.\n\t *   - original: An object with the original line and column positions.\n\t *   - source: The original source file (relative to the sourceRoot).\n\t *   - name: An optional original token name for this mapping.\n\t */\n\tSourceMapGenerator.prototype.addMapping = function SourceMapGenerator_addMapping(aArgs) {\n\t  var generated = util.getArg(aArgs, 'generated');\n\t  var original = util.getArg(aArgs, 'original', null);\n\t  var source = util.getArg(aArgs, 'source', null);\n\t  var name = util.getArg(aArgs, 'name', null);\n\n\t  if (!this._skipValidation) {\n\t    this._validateMapping(generated, original, source, name);\n\t  }\n\n\t  if (source != null) {\n\t    source = String(source);\n\t    if (!this._sources.has(source)) {\n\t      this._sources.add(source);\n\t    }\n\t  }\n\n\t  if (name != null) {\n\t    name = String(name);\n\t    if (!this._names.has(name)) {\n\t      this._names.add(name);\n\t    }\n\t  }\n\n\t  this._mappings.add({\n\t    generatedLine: generated.line,\n\t    generatedColumn: generated.column,\n\t    originalLine: original != null && original.line,\n\t    originalColumn: original != null && original.column,\n\t    source: source,\n\t    name: name\n\t  });\n\t};\n\n\t/**\n\t * Set the source content for a source file.\n\t */\n\tSourceMapGenerator.prototype.setSourceContent = function SourceMapGenerator_setSourceContent(aSourceFile, aSourceContent) {\n\t  var source = aSourceFile;\n\t  if (this._sourceRoot != null) {\n\t    source = util.relative(this._sourceRoot, source);\n\t  }\n\n\t  if (aSourceContent != null) {\n\t    // Add the source content to the _sourcesContents map.\n\t    // Create a new _sourcesContents map if the property is null.\n\t    if (!this._sourcesContents) {\n\t      this._sourcesContents = Object.create(null);\n\t    }\n\t    this._sourcesContents[util.toSetString(source)] = aSourceContent;\n\t  } else if (this._sourcesContents) {\n\t    // Remove the source file from the _sourcesContents map.\n\t    // If the _sourcesContents map is empty, set the property to null.\n\t    delete this._sourcesContents[util.toSetString(source)];\n\t    if (Object.keys(this._sourcesContents).length === 0) {\n\t      this._sourcesContents = null;\n\t    }\n\t  }\n\t};\n\n\t/**\n\t * Applies the mappings of a sub-source-map for a specific source file to the\n\t * source map being generated. Each mapping to the supplied source file is\n\t * rewritten using the supplied source map. Note: The resolution for the\n\t * resulting mappings is the minimium of this map and the supplied map.\n\t *\n\t * @param aSourceMapConsumer The source map to be applied.\n\t * @param aSourceFile Optional. The filename of the source file.\n\t *        If omitted, SourceMapConsumer's file property will be used.\n\t * @param aSourceMapPath Optional. The dirname of the path to the source map\n\t *        to be applied. If relative, it is relative to the SourceMapConsumer.\n\t *        This parameter is needed when the two source maps aren't in the same\n\t *        directory, and the source map to be applied contains relative source\n\t *        paths. If so, those relative source paths need to be rewritten\n\t *        relative to the SourceMapGenerator.\n\t */\n\tSourceMapGenerator.prototype.applySourceMap = function SourceMapGenerator_applySourceMap(aSourceMapConsumer, aSourceFile, aSourceMapPath) {\n\t  var sourceFile = aSourceFile;\n\t  // If aSourceFile is omitted, we will use the file property of the SourceMap\n\t  if (aSourceFile == null) {\n\t    if (aSourceMapConsumer.file == null) {\n\t      throw new Error('SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, ' + 'or the source map\\'s \"file\" property. Both were omitted.');\n\t    }\n\t    sourceFile = aSourceMapConsumer.file;\n\t  }\n\t  var sourceRoot = this._sourceRoot;\n\t  // Make \"sourceFile\" relative if an absolute Url is passed.\n\t  if (sourceRoot != null) {\n\t    sourceFile = util.relative(sourceRoot, sourceFile);\n\t  }\n\t  // Applying the SourceMap can add and remove items from the sources and\n\t  // the names array.\n\t  var newSources = new ArraySet();\n\t  var newNames = new ArraySet();\n\n\t  // Find mappings for the \"sourceFile\"\n\t  this._mappings.unsortedForEach(function (mapping) {\n\t    if (mapping.source === sourceFile && mapping.originalLine != null) {\n\t      // Check if it can be mapped by the source map, then update the mapping.\n\t      var original = aSourceMapConsumer.originalPositionFor({\n\t        line: mapping.originalLine,\n\t        column: mapping.originalColumn\n\t      });\n\t      if (original.source != null) {\n\t        // Copy mapping\n\t        mapping.source = original.source;\n\t        if (aSourceMapPath != null) {\n\t          mapping.source = util.join(aSourceMapPath, mapping.source);\n\t        }\n\t        if (sourceRoot != null) {\n\t          mapping.source = util.relative(sourceRoot, mapping.source);\n\t        }\n\t        mapping.originalLine = original.line;\n\t        mapping.originalColumn = original.column;\n\t        if (original.name != null) {\n\t          mapping.name = original.name;\n\t        }\n\t      }\n\t    }\n\n\t    var source = mapping.source;\n\t    if (source != null && !newSources.has(source)) {\n\t      newSources.add(source);\n\t    }\n\n\t    var name = mapping.name;\n\t    if (name != null && !newNames.has(name)) {\n\t      newNames.add(name);\n\t    }\n\t  }, this);\n\t  this._sources = newSources;\n\t  this._names = newNames;\n\n\t  // Copy sourcesContents of applied map.\n\t  aSourceMapConsumer.sources.forEach(function (sourceFile) {\n\t    var content = aSourceMapConsumer.sourceContentFor(sourceFile);\n\t    if (content != null) {\n\t      if (aSourceMapPath != null) {\n\t        sourceFile = util.join(aSourceMapPath, sourceFile);\n\t      }\n\t      if (sourceRoot != null) {\n\t        sourceFile = util.relative(sourceRoot, sourceFile);\n\t      }\n\t      this.setSourceContent(sourceFile, content);\n\t    }\n\t  }, this);\n\t};\n\n\t/**\n\t * A mapping can have one of the three levels of data:\n\t *\n\t *   1. Just the generated position.\n\t *   2. The Generated position, original position, and original source.\n\t *   3. Generated and original position, original source, as well as a name\n\t *      token.\n\t *\n\t * To maintain consistency, we validate that any new mapping being added falls\n\t * in to one of these categories.\n\t */\n\tSourceMapGenerator.prototype._validateMapping = function SourceMapGenerator_validateMapping(aGenerated, aOriginal, aSource, aName) {\n\t  if (aGenerated && 'line' in aGenerated && 'column' in aGenerated && aGenerated.line > 0 && aGenerated.column >= 0 && !aOriginal && !aSource && !aName) {\n\t    // Case 1.\n\t    return;\n\t  } else if (aGenerated && 'line' in aGenerated && 'column' in aGenerated && aOriginal && 'line' in aOriginal && 'column' in aOriginal && aGenerated.line > 0 && aGenerated.column >= 0 && aOriginal.line > 0 && aOriginal.column >= 0 && aSource) {\n\t    // Cases 2 and 3.\n\t    return;\n\t  } else {\n\t    throw new Error('Invalid mapping: ' + JSON.stringify({\n\t      generated: aGenerated,\n\t      source: aSource,\n\t      original: aOriginal,\n\t      name: aName\n\t    }));\n\t  }\n\t};\n\n\t/**\n\t * Serialize the accumulated mappings in to the stream of base 64 VLQs\n\t * specified by the source map format.\n\t */\n\tSourceMapGenerator.prototype._serializeMappings = function SourceMapGenerator_serializeMappings() {\n\t  var previousGeneratedColumn = 0;\n\t  var previousGeneratedLine = 1;\n\t  var previousOriginalColumn = 0;\n\t  var previousOriginalLine = 0;\n\t  var previousName = 0;\n\t  var previousSource = 0;\n\t  var result = '';\n\t  var next;\n\t  var mapping;\n\t  var nameIdx;\n\t  var sourceIdx;\n\n\t  var mappings = this._mappings.toArray();\n\t  for (var i = 0, len = mappings.length; i < len; i++) {\n\t    mapping = mappings[i];\n\t    next = '';\n\n\t    if (mapping.generatedLine !== previousGeneratedLine) {\n\t      previousGeneratedColumn = 0;\n\t      while (mapping.generatedLine !== previousGeneratedLine) {\n\t        next += ';';\n\t        previousGeneratedLine++;\n\t      }\n\t    } else {\n\t      if (i > 0) {\n\t        if (!util.compareByGeneratedPositionsInflated(mapping, mappings[i - 1])) {\n\t          continue;\n\t        }\n\t        next += ',';\n\t      }\n\t    }\n\n\t    next += base64VLQ.encode(mapping.generatedColumn - previousGeneratedColumn);\n\t    previousGeneratedColumn = mapping.generatedColumn;\n\n\t    if (mapping.source != null) {\n\t      sourceIdx = this._sources.indexOf(mapping.source);\n\t      next += base64VLQ.encode(sourceIdx - previousSource);\n\t      previousSource = sourceIdx;\n\n\t      // lines are stored 0-based in SourceMap spec version 3\n\t      next += base64VLQ.encode(mapping.originalLine - 1 - previousOriginalLine);\n\t      previousOriginalLine = mapping.originalLine - 1;\n\n\t      next += base64VLQ.encode(mapping.originalColumn - previousOriginalColumn);\n\t      previousOriginalColumn = mapping.originalColumn;\n\n\t      if (mapping.name != null) {\n\t        nameIdx = this._names.indexOf(mapping.name);\n\t        next += base64VLQ.encode(nameIdx - previousName);\n\t        previousName = nameIdx;\n\t      }\n\t    }\n\n\t    result += next;\n\t  }\n\n\t  return result;\n\t};\n\n\tSourceMapGenerator.prototype._generateSourcesContent = function SourceMapGenerator_generateSourcesContent(aSources, aSourceRoot) {\n\t  return aSources.map(function (source) {\n\t    if (!this._sourcesContents) {\n\t      return null;\n\t    }\n\t    if (aSourceRoot != null) {\n\t      source = util.relative(aSourceRoot, source);\n\t    }\n\t    var key = util.toSetString(source);\n\t    return Object.prototype.hasOwnProperty.call(this._sourcesContents, key) ? this._sourcesContents[key] : null;\n\t  }, this);\n\t};\n\n\t/**\n\t * Externalize the source map.\n\t */\n\tSourceMapGenerator.prototype.toJSON = function SourceMapGenerator_toJSON() {\n\t  var map = {\n\t    version: this._version,\n\t    sources: this._sources.toArray(),\n\t    names: this._names.toArray(),\n\t    mappings: this._serializeMappings()\n\t  };\n\t  if (this._file != null) {\n\t    map.file = this._file;\n\t  }\n\t  if (this._sourceRoot != null) {\n\t    map.sourceRoot = this._sourceRoot;\n\t  }\n\t  if (this._sourcesContents) {\n\t    map.sourcesContent = this._generateSourcesContent(map.sources, map.sourceRoot);\n\t  }\n\n\t  return map;\n\t};\n\n\t/**\n\t * Render the source map being generated to a string.\n\t */\n\tSourceMapGenerator.prototype.toString = function SourceMapGenerator_toString() {\n\t  return JSON.stringify(this.toJSON());\n\t};\n\n\texports.SourceMapGenerator = SourceMapGenerator;\n\n/***/ }),\n/* 288 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/*\n\t * Copyright 2009-2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE.txt or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\texports.SourceMapGenerator = __webpack_require__(287).SourceMapGenerator;\n\texports.SourceMapConsumer = __webpack_require__(620).SourceMapConsumer;\n\texports.SourceNode = __webpack_require__(621).SourceNode;\n\n/***/ }),\n/* 289 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(module) {'use strict';\n\n\tfunction assembleStyles() {\n\t\tvar styles = {\n\t\t\tmodifiers: {\n\t\t\t\treset: [0, 0],\n\t\t\t\tbold: [1, 22], // 21 isn't widely supported and 22 does the same thing\n\t\t\t\tdim: [2, 22],\n\t\t\t\titalic: [3, 23],\n\t\t\t\tunderline: [4, 24],\n\t\t\t\tinverse: [7, 27],\n\t\t\t\thidden: [8, 28],\n\t\t\t\tstrikethrough: [9, 29]\n\t\t\t},\n\t\t\tcolors: {\n\t\t\t\tblack: [30, 39],\n\t\t\t\tred: [31, 39],\n\t\t\t\tgreen: [32, 39],\n\t\t\t\tyellow: [33, 39],\n\t\t\t\tblue: [34, 39],\n\t\t\t\tmagenta: [35, 39],\n\t\t\t\tcyan: [36, 39],\n\t\t\t\twhite: [37, 39],\n\t\t\t\tgray: [90, 39]\n\t\t\t},\n\t\t\tbgColors: {\n\t\t\t\tbgBlack: [40, 49],\n\t\t\t\tbgRed: [41, 49],\n\t\t\t\tbgGreen: [42, 49],\n\t\t\t\tbgYellow: [43, 49],\n\t\t\t\tbgBlue: [44, 49],\n\t\t\t\tbgMagenta: [45, 49],\n\t\t\t\tbgCyan: [46, 49],\n\t\t\t\tbgWhite: [47, 49]\n\t\t\t}\n\t\t};\n\n\t\t// fix humans\n\t\tstyles.colors.grey = styles.colors.gray;\n\n\t\tObject.keys(styles).forEach(function (groupName) {\n\t\t\tvar group = styles[groupName];\n\n\t\t\tObject.keys(group).forEach(function (styleName) {\n\t\t\t\tvar style = group[styleName];\n\n\t\t\t\tstyles[styleName] = group[styleName] = {\n\t\t\t\t\topen: '\\x1B[' + style[0] + 'm',\n\t\t\t\t\tclose: '\\x1B[' + style[1] + 'm'\n\t\t\t\t};\n\t\t\t});\n\n\t\t\tObject.defineProperty(styles, groupName, {\n\t\t\t\tvalue: group,\n\t\t\t\tenumerable: false\n\t\t\t});\n\t\t});\n\n\t\treturn styles;\n\t}\n\n\tObject.defineProperty(module, 'exports', {\n\t\tenumerable: true,\n\t\tget: assembleStyles\n\t});\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module)))\n\n/***/ }),\n/* 290 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = __webpack_require__(182);\n\n/***/ }),\n/* 291 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.default = getPossiblePluginNames;\n\tfunction getPossiblePluginNames(pluginName) {\n\t  return [\"babel-plugin-\" + pluginName, pluginName];\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 292 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.default = getPossiblePresetNames;\n\tfunction getPossiblePresetNames(presetName) {\n\t  var possibleNames = [\"babel-preset-\" + presetName, presetName];\n\n\t  var matches = presetName.match(/^(@[^/]+)\\/(.+)$/);\n\t  if (matches) {\n\t    var orgName = matches[1],\n\t        presetPath = matches[2];\n\n\t    possibleNames.push(orgName + \"/babel-preset-\" + presetPath);\n\t  }\n\n\t  return possibleNames;\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 293 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (dest, src) {\n\t  if (!dest || !src) return;\n\n\t  return (0, _mergeWith2.default)(dest, src, function (a, b) {\n\t    if (b && Array.isArray(a)) {\n\t      var newArray = b.slice(0);\n\n\t      for (var _iterator = a, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref = _i.value;\n\t        }\n\n\t        var item = _ref;\n\n\t        if (newArray.indexOf(item) < 0) {\n\t          newArray.push(item);\n\t        }\n\t      }\n\n\t      return newArray;\n\t    }\n\t  });\n\t};\n\n\tvar _mergeWith = __webpack_require__(590);\n\n\tvar _mergeWith2 = _interopRequireDefault(_mergeWith);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 294 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (ast, comments, tokens) {\n\t  if (ast) {\n\t    if (ast.type === \"Program\") {\n\t      return t.file(ast, comments || [], tokens || []);\n\t    } else if (ast.type === \"File\") {\n\t      return ast;\n\t    }\n\t  }\n\n\t  throw new Error(\"Not a valid ast?\");\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 295 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (whitelist) {\n\t  var outputType = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : \"global\";\n\n\t  var namespace = t.identifier(\"babelHelpers\");\n\n\t  var builder = function builder(body) {\n\t    return buildHelpers(body, namespace, whitelist);\n\t  };\n\n\t  var tree = void 0;\n\n\t  var build = {\n\t    global: buildGlobal,\n\t    umd: buildUmd,\n\t    var: buildVar\n\t  }[outputType];\n\n\t  if (build) {\n\t    tree = build(namespace, builder);\n\t  } else {\n\t    throw new Error(messages.get(\"unsupportedOutputType\", outputType));\n\t  }\n\n\t  return (0, _babelGenerator2.default)(tree).code;\n\t};\n\n\tvar _babelHelpers = __webpack_require__(194);\n\n\tvar helpers = _interopRequireWildcard(_babelHelpers);\n\n\tvar _babelGenerator = __webpack_require__(186);\n\n\tvar _babelGenerator2 = _interopRequireDefault(_babelGenerator);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tvar buildUmdWrapper = (0, _babelTemplate2.default)(\"\\n  (function (root, factory) {\\n    if (typeof define === \\\"function\\\" && define.amd) {\\n      define(AMD_ARGUMENTS, factory);\\n    } else if (typeof exports === \\\"object\\\") {\\n      factory(COMMON_ARGUMENTS);\\n    } else {\\n      factory(BROWSER_ARGUMENTS);\\n    }\\n  })(UMD_ROOT, function (FACTORY_PARAMETERS) {\\n    FACTORY_BODY\\n  });\\n\");\n\n\tfunction buildGlobal(namespace, builder) {\n\t  var body = [];\n\t  var container = t.functionExpression(null, [t.identifier(\"global\")], t.blockStatement(body));\n\t  var tree = t.program([t.expressionStatement(t.callExpression(container, [helpers.get(\"selfGlobal\")]))]);\n\n\t  body.push(t.variableDeclaration(\"var\", [t.variableDeclarator(namespace, t.assignmentExpression(\"=\", t.memberExpression(t.identifier(\"global\"), namespace), t.objectExpression([])))]));\n\n\t  builder(body);\n\n\t  return tree;\n\t}\n\n\tfunction buildUmd(namespace, builder) {\n\t  var body = [];\n\t  body.push(t.variableDeclaration(\"var\", [t.variableDeclarator(namespace, t.identifier(\"global\"))]));\n\n\t  builder(body);\n\n\t  return t.program([buildUmdWrapper({\n\t    FACTORY_PARAMETERS: t.identifier(\"global\"),\n\t    BROWSER_ARGUMENTS: t.assignmentExpression(\"=\", t.memberExpression(t.identifier(\"root\"), namespace), t.objectExpression([])),\n\t    COMMON_ARGUMENTS: t.identifier(\"exports\"),\n\t    AMD_ARGUMENTS: t.arrayExpression([t.stringLiteral(\"exports\")]),\n\t    FACTORY_BODY: body,\n\t    UMD_ROOT: t.identifier(\"this\")\n\t  })]);\n\t}\n\n\tfunction buildVar(namespace, builder) {\n\t  var body = [];\n\t  body.push(t.variableDeclaration(\"var\", [t.variableDeclarator(namespace, t.objectExpression([]))]));\n\t  builder(body);\n\t  body.push(t.expressionStatement(namespace));\n\t  return t.program(body);\n\t}\n\n\tfunction buildHelpers(body, namespace, whitelist) {\n\t  helpers.list.forEach(function (name) {\n\t    if (whitelist && whitelist.indexOf(name) < 0) return;\n\n\t    var key = t.identifier(name);\n\t    body.push(t.expressionStatement(t.assignmentExpression(\"=\", t.memberExpression(namespace, key), helpers.get(name))));\n\t  });\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 296 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _plugin = __webpack_require__(65);\n\n\tvar _plugin2 = _interopRequireDefault(_plugin);\n\n\tvar _sortBy = __webpack_require__(594);\n\n\tvar _sortBy2 = _interopRequireDefault(_sortBy);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = new _plugin2.default({\n\n\t  name: \"internal.blockHoist\",\n\n\t  visitor: {\n\t    Block: {\n\t      exit: function exit(_ref) {\n\t        var node = _ref.node;\n\n\t        var hasChange = false;\n\t        for (var i = 0; i < node.body.length; i++) {\n\t          var bodyNode = node.body[i];\n\t          if (bodyNode && bodyNode._blockHoist != null) {\n\t            hasChange = true;\n\t            break;\n\t          }\n\t        }\n\t        if (!hasChange) return;\n\n\t        node.body = (0, _sortBy2.default)(node.body, function (bodyNode) {\n\t          var priority = bodyNode && bodyNode._blockHoist;\n\t          if (priority == null) priority = 1;\n\t          if (priority === true) priority = 2;\n\n\t          return -1 * priority;\n\t        });\n\t      }\n\t    }\n\t  }\n\t});\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 297 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\tvar _plugin = __webpack_require__(65);\n\n\tvar _plugin2 = _interopRequireDefault(_plugin);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar SUPER_THIS_BOUND = (0, _symbol2.default)(\"super this bound\");\n\n\tvar superVisitor = {\n\t  CallExpression: function CallExpression(path) {\n\t    if (!path.get(\"callee\").isSuper()) return;\n\n\t    var node = path.node;\n\n\t    if (node[SUPER_THIS_BOUND]) return;\n\t    node[SUPER_THIS_BOUND] = true;\n\n\t    path.replaceWith(t.assignmentExpression(\"=\", this.id, node));\n\t  }\n\t};\n\n\texports.default = new _plugin2.default({\n\t  name: \"internal.shadowFunctions\",\n\n\t  visitor: {\n\t    ThisExpression: function ThisExpression(path) {\n\t      remap(path, \"this\");\n\t    },\n\t    ReferencedIdentifier: function ReferencedIdentifier(path) {\n\t      if (path.node.name === \"arguments\") {\n\t        remap(path, \"arguments\");\n\t      }\n\t    }\n\t  }\n\t});\n\n\tfunction shouldShadow(path, shadowPath) {\n\t  if (path.is(\"_forceShadow\")) {\n\t    return true;\n\t  } else {\n\t    return shadowPath;\n\t  }\n\t}\n\n\tfunction remap(path, key) {\n\t  var shadowPath = path.inShadow(key);\n\t  if (!shouldShadow(path, shadowPath)) return;\n\n\t  var shadowFunction = path.node._shadowedFunctionLiteral;\n\n\t  var currentFunction = void 0;\n\t  var passedShadowFunction = false;\n\n\t  var fnPath = path.find(function (innerPath) {\n\t    if (innerPath.parentPath && innerPath.parentPath.isClassProperty() && innerPath.key === \"value\") {\n\t      return true;\n\t    }\n\t    if (path === innerPath) return false;\n\t    if (innerPath.isProgram() || innerPath.isFunction()) {\n\t      currentFunction = currentFunction || innerPath;\n\t    }\n\n\t    if (innerPath.isProgram()) {\n\t      passedShadowFunction = true;\n\n\t      return true;\n\t    } else if (innerPath.isFunction() && !innerPath.isArrowFunctionExpression()) {\n\t      if (shadowFunction) {\n\t        if (innerPath === shadowFunction || innerPath.node === shadowFunction.node) return true;\n\t      } else {\n\t        if (!innerPath.is(\"shadow\")) return true;\n\t      }\n\n\t      passedShadowFunction = true;\n\t      return false;\n\t    }\n\n\t    return false;\n\t  });\n\n\t  if (shadowFunction && fnPath.isProgram() && !shadowFunction.isProgram()) {\n\t    fnPath = path.findParent(function (p) {\n\t      return p.isProgram() || p.isFunction();\n\t    });\n\t  }\n\n\t  if (fnPath === currentFunction) return;\n\n\t  if (!passedShadowFunction) return;\n\n\t  var cached = fnPath.getData(key);\n\t  if (cached) return path.replaceWith(cached);\n\n\t  var id = path.scope.generateUidIdentifier(key);\n\n\t  fnPath.setData(key, id);\n\n\t  var classPath = fnPath.findParent(function (p) {\n\t    return p.isClass();\n\t  });\n\t  var hasSuperClass = !!(classPath && classPath.node && classPath.node.superClass);\n\n\t  if (key === \"this\" && fnPath.isMethod({ kind: \"constructor\" }) && hasSuperClass) {\n\t    fnPath.scope.push({ id: id });\n\n\t    fnPath.traverse(superVisitor, { id: id });\n\t  } else {\n\t    var init = key === \"this\" ? t.thisExpression() : t.identifier(key);\n\n\t    if (shadowFunction) init._shadowedFunctionLiteral = shadowFunction;\n\n\t    fnPath.scope.push({ id: id, init: init });\n\t  }\n\n\t  return path.replaceWith(id);\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 298 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _normalizeAst = __webpack_require__(294);\n\n\tvar _normalizeAst2 = _interopRequireDefault(_normalizeAst);\n\n\tvar _plugin = __webpack_require__(65);\n\n\tvar _plugin2 = _interopRequireDefault(_plugin);\n\n\tvar _file = __webpack_require__(50);\n\n\tvar _file2 = _interopRequireDefault(_file);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar Pipeline = function () {\n\t  function Pipeline() {\n\t    (0, _classCallCheck3.default)(this, Pipeline);\n\t  }\n\n\t  Pipeline.prototype.lint = function lint(code) {\n\t    var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t    opts.code = false;\n\t    opts.mode = \"lint\";\n\t    return this.transform(code, opts);\n\t  };\n\n\t  Pipeline.prototype.pretransform = function pretransform(code, opts) {\n\t    var file = new _file2.default(opts, this);\n\t    return file.wrap(code, function () {\n\t      file.addCode(code);\n\t      file.parseCode(code);\n\t      return file;\n\t    });\n\t  };\n\n\t  Pipeline.prototype.transform = function transform(code, opts) {\n\t    var file = new _file2.default(opts, this);\n\t    return file.wrap(code, function () {\n\t      file.addCode(code);\n\t      file.parseCode(code);\n\t      return file.transform();\n\t    });\n\t  };\n\n\t  Pipeline.prototype.analyse = function analyse(code) {\n\t    var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t    var visitor = arguments[2];\n\n\t    opts.code = false;\n\t    if (visitor) {\n\t      opts.plugins = opts.plugins || [];\n\t      opts.plugins.push(new _plugin2.default({ visitor: visitor }));\n\t    }\n\t    return this.transform(code, opts).metadata;\n\t  };\n\n\t  Pipeline.prototype.transformFromAst = function transformFromAst(ast, code, opts) {\n\t    ast = (0, _normalizeAst2.default)(ast);\n\n\t    var file = new _file2.default(opts, this);\n\t    return file.wrap(code, function () {\n\t      file.addCode(code);\n\t      file.addAst(ast);\n\t      return file.transform();\n\t    });\n\t  };\n\n\t  return Pipeline;\n\t}();\n\n\texports.default = Pipeline;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 299 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _possibleConstructorReturn2 = __webpack_require__(42);\n\n\tvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\n\tvar _inherits2 = __webpack_require__(41);\n\n\tvar _inherits3 = _interopRequireDefault(_inherits2);\n\n\tvar _store = __webpack_require__(119);\n\n\tvar _store2 = _interopRequireDefault(_store);\n\n\tvar _file5 = __webpack_require__(50);\n\n\tvar _file6 = _interopRequireDefault(_file5);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar PluginPass = function (_Store) {\n\t  (0, _inherits3.default)(PluginPass, _Store);\n\n\t  function PluginPass(file, plugin) {\n\t    var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\t    (0, _classCallCheck3.default)(this, PluginPass);\n\n\t    var _this = (0, _possibleConstructorReturn3.default)(this, _Store.call(this));\n\n\t    _this.plugin = plugin;\n\t    _this.key = plugin.key;\n\t    _this.file = file;\n\t    _this.opts = options;\n\t    return _this;\n\t  }\n\n\t  PluginPass.prototype.addHelper = function addHelper() {\n\t    var _file;\n\n\t    return (_file = this.file).addHelper.apply(_file, arguments);\n\t  };\n\n\t  PluginPass.prototype.addImport = function addImport() {\n\t    var _file2;\n\n\t    return (_file2 = this.file).addImport.apply(_file2, arguments);\n\t  };\n\n\t  PluginPass.prototype.getModuleName = function getModuleName() {\n\t    var _file3;\n\n\t    return (_file3 = this.file).getModuleName.apply(_file3, arguments);\n\t  };\n\n\t  PluginPass.prototype.buildCodeFrameError = function buildCodeFrameError() {\n\t    var _file4;\n\n\t    return (_file4 = this.file).buildCodeFrameError.apply(_file4, arguments);\n\t  };\n\n\t  return PluginPass;\n\t}(_store2.default);\n\n\texports.default = PluginPass;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 300 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _trimRight = __webpack_require__(625);\n\n\tvar _trimRight2 = _interopRequireDefault(_trimRight);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar SPACES_RE = /^[ \\t]+$/;\n\n\tvar Buffer = function () {\n\t  function Buffer(map) {\n\t    (0, _classCallCheck3.default)(this, Buffer);\n\t    this._map = null;\n\t    this._buf = [];\n\t    this._last = \"\";\n\t    this._queue = [];\n\t    this._position = {\n\t      line: 1,\n\t      column: 0\n\t    };\n\t    this._sourcePosition = {\n\t      identifierName: null,\n\t      line: null,\n\t      column: null,\n\t      filename: null\n\t    };\n\n\t    this._map = map;\n\t  }\n\n\t  Buffer.prototype.get = function get() {\n\t    this._flush();\n\n\t    var map = this._map;\n\t    var result = {\n\t      code: (0, _trimRight2.default)(this._buf.join(\"\")),\n\t      map: null,\n\t      rawMappings: map && map.getRawMappings()\n\t    };\n\n\t    if (map) {\n\t      Object.defineProperty(result, \"map\", {\n\t        configurable: true,\n\t        enumerable: true,\n\t        get: function get() {\n\t          return this.map = map.get();\n\t        },\n\t        set: function set(value) {\n\t          Object.defineProperty(this, \"map\", { value: value, writable: true });\n\t        }\n\t      });\n\t    }\n\n\t    return result;\n\t  };\n\n\t  Buffer.prototype.append = function append(str) {\n\t    this._flush();\n\t    var _sourcePosition = this._sourcePosition,\n\t        line = _sourcePosition.line,\n\t        column = _sourcePosition.column,\n\t        filename = _sourcePosition.filename,\n\t        identifierName = _sourcePosition.identifierName;\n\n\t    this._append(str, line, column, identifierName, filename);\n\t  };\n\n\t  Buffer.prototype.queue = function queue(str) {\n\t    if (str === \"\\n\") while (this._queue.length > 0 && SPACES_RE.test(this._queue[0][0])) {\n\t      this._queue.shift();\n\t    }var _sourcePosition2 = this._sourcePosition,\n\t        line = _sourcePosition2.line,\n\t        column = _sourcePosition2.column,\n\t        filename = _sourcePosition2.filename,\n\t        identifierName = _sourcePosition2.identifierName;\n\n\t    this._queue.unshift([str, line, column, identifierName, filename]);\n\t  };\n\n\t  Buffer.prototype._flush = function _flush() {\n\t    var item = void 0;\n\t    while (item = this._queue.pop()) {\n\t      this._append.apply(this, item);\n\t    }\n\t  };\n\n\t  Buffer.prototype._append = function _append(str, line, column, identifierName, filename) {\n\t    if (this._map && str[0] !== \"\\n\") {\n\t      this._map.mark(this._position.line, this._position.column, line, column, identifierName, filename);\n\t    }\n\n\t    this._buf.push(str);\n\t    this._last = str[str.length - 1];\n\n\t    for (var i = 0; i < str.length; i++) {\n\t      if (str[i] === \"\\n\") {\n\t        this._position.line++;\n\t        this._position.column = 0;\n\t      } else {\n\t        this._position.column++;\n\t      }\n\t    }\n\t  };\n\n\t  Buffer.prototype.removeTrailingNewline = function removeTrailingNewline() {\n\t    if (this._queue.length > 0 && this._queue[0][0] === \"\\n\") this._queue.shift();\n\t  };\n\n\t  Buffer.prototype.removeLastSemicolon = function removeLastSemicolon() {\n\t    if (this._queue.length > 0 && this._queue[0][0] === \";\") this._queue.shift();\n\t  };\n\n\t  Buffer.prototype.endsWith = function endsWith(suffix) {\n\t    if (suffix.length === 1) {\n\t      var last = void 0;\n\t      if (this._queue.length > 0) {\n\t        var str = this._queue[0][0];\n\t        last = str[str.length - 1];\n\t      } else {\n\t        last = this._last;\n\t      }\n\n\t      return last === suffix;\n\t    }\n\n\t    var end = this._last + this._queue.reduce(function (acc, item) {\n\t      return item[0] + acc;\n\t    }, \"\");\n\t    if (suffix.length <= end.length) {\n\t      return end.slice(-suffix.length) === suffix;\n\t    }\n\n\t    return false;\n\t  };\n\n\t  Buffer.prototype.hasContent = function hasContent() {\n\t    return this._queue.length > 0 || !!this._last;\n\t  };\n\n\t  Buffer.prototype.source = function source(prop, loc) {\n\t    if (prop && !loc) return;\n\n\t    var pos = loc ? loc[prop] : null;\n\n\t    this._sourcePosition.identifierName = loc && loc.identifierName || null;\n\t    this._sourcePosition.line = pos ? pos.line : null;\n\t    this._sourcePosition.column = pos ? pos.column : null;\n\t    this._sourcePosition.filename = loc && loc.filename || null;\n\t  };\n\n\t  Buffer.prototype.withSource = function withSource(prop, loc, cb) {\n\t    if (!this._map) return cb();\n\n\t    var originalLine = this._sourcePosition.line;\n\t    var originalColumn = this._sourcePosition.column;\n\t    var originalFilename = this._sourcePosition.filename;\n\t    var originalIdentifierName = this._sourcePosition.identifierName;\n\n\t    this.source(prop, loc);\n\n\t    cb();\n\n\t    this._sourcePosition.line = originalLine;\n\t    this._sourcePosition.column = originalColumn;\n\t    this._sourcePosition.filename = originalFilename;\n\t    this._sourcePosition.identifierName = originalIdentifierName;\n\t  };\n\n\t  Buffer.prototype.getCurrentColumn = function getCurrentColumn() {\n\t    var extra = this._queue.reduce(function (acc, item) {\n\t      return item[0] + acc;\n\t    }, \"\");\n\t    var lastIndex = extra.lastIndexOf(\"\\n\");\n\n\t    return lastIndex === -1 ? this._position.column + extra.length : extra.length - 1 - lastIndex;\n\t  };\n\n\t  Buffer.prototype.getCurrentLine = function getCurrentLine() {\n\t    var extra = this._queue.reduce(function (acc, item) {\n\t      return item[0] + acc;\n\t    }, \"\");\n\n\t    var count = 0;\n\t    for (var i = 0; i < extra.length; i++) {\n\t      if (extra[i] === \"\\n\") count++;\n\t    }\n\n\t    return this._position.line + count;\n\t  };\n\n\t  return Buffer;\n\t}();\n\n\texports.default = Buffer;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 301 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.File = File;\n\texports.Program = Program;\n\texports.BlockStatement = BlockStatement;\n\texports.Noop = Noop;\n\texports.Directive = Directive;\n\n\tvar _types = __webpack_require__(123);\n\n\tObject.defineProperty(exports, \"DirectiveLiteral\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _types.StringLiteral;\n\t  }\n\t});\n\tfunction File(node) {\n\t  this.print(node.program, node);\n\t}\n\n\tfunction Program(node) {\n\t  this.printInnerComments(node, false);\n\n\t  this.printSequence(node.directives, node);\n\t  if (node.directives && node.directives.length) this.newline();\n\n\t  this.printSequence(node.body, node);\n\t}\n\n\tfunction BlockStatement(node) {\n\t  this.token(\"{\");\n\t  this.printInnerComments(node);\n\n\t  var hasDirectives = node.directives && node.directives.length;\n\n\t  if (node.body.length || hasDirectives) {\n\t    this.newline();\n\n\t    this.printSequence(node.directives, node, { indent: true });\n\t    if (hasDirectives) this.newline();\n\n\t    this.printSequence(node.body, node, { indent: true });\n\t    this.removeTrailingNewline();\n\n\t    this.source(\"end\", node.loc);\n\n\t    if (!this.endsWith(\"\\n\")) this.newline();\n\n\t    this.rightBrace();\n\t  } else {\n\t    this.source(\"end\", node.loc);\n\t    this.token(\"}\");\n\t  }\n\t}\n\n\tfunction Noop() {}\n\n\tfunction Directive(node) {\n\t  this.print(node.value, node);\n\t  this.semicolon();\n\t}\n\n/***/ }),\n/* 302 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.ClassDeclaration = ClassDeclaration;\n\texports.ClassBody = ClassBody;\n\texports.ClassProperty = ClassProperty;\n\texports.ClassMethod = ClassMethod;\n\tfunction ClassDeclaration(node) {\n\t  this.printJoin(node.decorators, node);\n\t  this.word(\"class\");\n\n\t  if (node.id) {\n\t    this.space();\n\t    this.print(node.id, node);\n\t  }\n\n\t  this.print(node.typeParameters, node);\n\n\t  if (node.superClass) {\n\t    this.space();\n\t    this.word(\"extends\");\n\t    this.space();\n\t    this.print(node.superClass, node);\n\t    this.print(node.superTypeParameters, node);\n\t  }\n\n\t  if (node.implements) {\n\t    this.space();\n\t    this.word(\"implements\");\n\t    this.space();\n\t    this.printList(node.implements, node);\n\t  }\n\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\texports.ClassExpression = ClassDeclaration;\n\tfunction ClassBody(node) {\n\t  this.token(\"{\");\n\t  this.printInnerComments(node);\n\t  if (node.body.length === 0) {\n\t    this.token(\"}\");\n\t  } else {\n\t    this.newline();\n\n\t    this.indent();\n\t    this.printSequence(node.body, node);\n\t    this.dedent();\n\n\t    if (!this.endsWith(\"\\n\")) this.newline();\n\n\t    this.rightBrace();\n\t  }\n\t}\n\n\tfunction ClassProperty(node) {\n\t  this.printJoin(node.decorators, node);\n\n\t  if (node.static) {\n\t    this.word(\"static\");\n\t    this.space();\n\t  }\n\t  if (node.computed) {\n\t    this.token(\"[\");\n\t    this.print(node.key, node);\n\t    this.token(\"]\");\n\t  } else {\n\t    this._variance(node);\n\t    this.print(node.key, node);\n\t  }\n\t  this.print(node.typeAnnotation, node);\n\t  if (node.value) {\n\t    this.space();\n\t    this.token(\"=\");\n\t    this.space();\n\t    this.print(node.value, node);\n\t  }\n\t  this.semicolon();\n\t}\n\n\tfunction ClassMethod(node) {\n\t  this.printJoin(node.decorators, node);\n\n\t  if (node.static) {\n\t    this.word(\"static\");\n\t    this.space();\n\t  }\n\n\t  if (node.kind === \"constructorCall\") {\n\t    this.word(\"call\");\n\t    this.space();\n\t  }\n\n\t  this._method(node);\n\t}\n\n/***/ }),\n/* 303 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.LogicalExpression = exports.BinaryExpression = exports.AwaitExpression = exports.YieldExpression = undefined;\n\texports.UnaryExpression = UnaryExpression;\n\texports.DoExpression = DoExpression;\n\texports.ParenthesizedExpression = ParenthesizedExpression;\n\texports.UpdateExpression = UpdateExpression;\n\texports.ConditionalExpression = ConditionalExpression;\n\texports.NewExpression = NewExpression;\n\texports.SequenceExpression = SequenceExpression;\n\texports.ThisExpression = ThisExpression;\n\texports.Super = Super;\n\texports.Decorator = Decorator;\n\texports.CallExpression = CallExpression;\n\texports.Import = Import;\n\texports.EmptyStatement = EmptyStatement;\n\texports.ExpressionStatement = ExpressionStatement;\n\texports.AssignmentPattern = AssignmentPattern;\n\texports.AssignmentExpression = AssignmentExpression;\n\texports.BindExpression = BindExpression;\n\texports.MemberExpression = MemberExpression;\n\texports.MetaProperty = MetaProperty;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _node = __webpack_require__(187);\n\n\tvar n = _interopRequireWildcard(_node);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction UnaryExpression(node) {\n\t  if (node.operator === \"void\" || node.operator === \"delete\" || node.operator === \"typeof\") {\n\t    this.word(node.operator);\n\t    this.space();\n\t  } else {\n\t    this.token(node.operator);\n\t  }\n\n\t  this.print(node.argument, node);\n\t}\n\n\tfunction DoExpression(node) {\n\t  this.word(\"do\");\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\tfunction ParenthesizedExpression(node) {\n\t  this.token(\"(\");\n\t  this.print(node.expression, node);\n\t  this.token(\")\");\n\t}\n\n\tfunction UpdateExpression(node) {\n\t  if (node.prefix) {\n\t    this.token(node.operator);\n\t    this.print(node.argument, node);\n\t  } else {\n\t    this.print(node.argument, node);\n\t    this.token(node.operator);\n\t  }\n\t}\n\n\tfunction ConditionalExpression(node) {\n\t  this.print(node.test, node);\n\t  this.space();\n\t  this.token(\"?\");\n\t  this.space();\n\t  this.print(node.consequent, node);\n\t  this.space();\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.alternate, node);\n\t}\n\n\tfunction NewExpression(node, parent) {\n\t  this.word(\"new\");\n\t  this.space();\n\t  this.print(node.callee, node);\n\t  if (node.arguments.length === 0 && this.format.minified && !t.isCallExpression(parent, { callee: node }) && !t.isMemberExpression(parent) && !t.isNewExpression(parent)) return;\n\n\t  this.token(\"(\");\n\t  this.printList(node.arguments, node);\n\t  this.token(\")\");\n\t}\n\n\tfunction SequenceExpression(node) {\n\t  this.printList(node.expressions, node);\n\t}\n\n\tfunction ThisExpression() {\n\t  this.word(\"this\");\n\t}\n\n\tfunction Super() {\n\t  this.word(\"super\");\n\t}\n\n\tfunction Decorator(node) {\n\t  this.token(\"@\");\n\t  this.print(node.expression, node);\n\t  this.newline();\n\t}\n\n\tfunction commaSeparatorNewline() {\n\t  this.token(\",\");\n\t  this.newline();\n\n\t  if (!this.endsWith(\"\\n\")) this.space();\n\t}\n\n\tfunction CallExpression(node) {\n\t  this.print(node.callee, node);\n\n\t  this.token(\"(\");\n\n\t  var isPrettyCall = node._prettyCall;\n\n\t  var separator = void 0;\n\t  if (isPrettyCall) {\n\t    separator = commaSeparatorNewline;\n\t    this.newline();\n\t    this.indent();\n\t  }\n\n\t  this.printList(node.arguments, node, { separator: separator });\n\n\t  if (isPrettyCall) {\n\t    this.newline();\n\t    this.dedent();\n\t  }\n\n\t  this.token(\")\");\n\t}\n\n\tfunction Import() {\n\t  this.word(\"import\");\n\t}\n\n\tfunction buildYieldAwait(keyword) {\n\t  return function (node) {\n\t    this.word(keyword);\n\n\t    if (node.delegate) {\n\t      this.token(\"*\");\n\t    }\n\n\t    if (node.argument) {\n\t      this.space();\n\t      var terminatorState = this.startTerminatorless();\n\t      this.print(node.argument, node);\n\t      this.endTerminatorless(terminatorState);\n\t    }\n\t  };\n\t}\n\n\tvar YieldExpression = exports.YieldExpression = buildYieldAwait(\"yield\");\n\tvar AwaitExpression = exports.AwaitExpression = buildYieldAwait(\"await\");\n\n\tfunction EmptyStatement() {\n\t  this.semicolon(true);\n\t}\n\n\tfunction ExpressionStatement(node) {\n\t  this.print(node.expression, node);\n\t  this.semicolon();\n\t}\n\n\tfunction AssignmentPattern(node) {\n\t  this.print(node.left, node);\n\t  if (node.left.optional) this.token(\"?\");\n\t  this.print(node.left.typeAnnotation, node);\n\t  this.space();\n\t  this.token(\"=\");\n\t  this.space();\n\t  this.print(node.right, node);\n\t}\n\n\tfunction AssignmentExpression(node, parent) {\n\t  var parens = this.inForStatementInitCounter && node.operator === \"in\" && !n.needsParens(node, parent);\n\n\t  if (parens) {\n\t    this.token(\"(\");\n\t  }\n\n\t  this.print(node.left, node);\n\n\t  this.space();\n\t  if (node.operator === \"in\" || node.operator === \"instanceof\") {\n\t    this.word(node.operator);\n\t  } else {\n\t    this.token(node.operator);\n\t  }\n\t  this.space();\n\n\t  this.print(node.right, node);\n\n\t  if (parens) {\n\t    this.token(\")\");\n\t  }\n\t}\n\n\tfunction BindExpression(node) {\n\t  this.print(node.object, node);\n\t  this.token(\"::\");\n\t  this.print(node.callee, node);\n\t}\n\n\texports.BinaryExpression = AssignmentExpression;\n\texports.LogicalExpression = AssignmentExpression;\n\tfunction MemberExpression(node) {\n\t  this.print(node.object, node);\n\n\t  if (!node.computed && t.isMemberExpression(node.property)) {\n\t    throw new TypeError(\"Got a MemberExpression for MemberExpression property\");\n\t  }\n\n\t  var computed = node.computed;\n\t  if (t.isLiteral(node.property) && typeof node.property.value === \"number\") {\n\t    computed = true;\n\t  }\n\n\t  if (computed) {\n\t    this.token(\"[\");\n\t    this.print(node.property, node);\n\t    this.token(\"]\");\n\t  } else {\n\t    this.token(\".\");\n\t    this.print(node.property, node);\n\t  }\n\t}\n\n\tfunction MetaProperty(node) {\n\t  this.print(node.meta, node);\n\t  this.token(\".\");\n\t  this.print(node.property, node);\n\t}\n\n/***/ }),\n/* 304 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.TypeParameterDeclaration = exports.StringLiteralTypeAnnotation = exports.NumericLiteralTypeAnnotation = exports.GenericTypeAnnotation = exports.ClassImplements = undefined;\n\texports.AnyTypeAnnotation = AnyTypeAnnotation;\n\texports.ArrayTypeAnnotation = ArrayTypeAnnotation;\n\texports.BooleanTypeAnnotation = BooleanTypeAnnotation;\n\texports.BooleanLiteralTypeAnnotation = BooleanLiteralTypeAnnotation;\n\texports.NullLiteralTypeAnnotation = NullLiteralTypeAnnotation;\n\texports.DeclareClass = DeclareClass;\n\texports.DeclareFunction = DeclareFunction;\n\texports.DeclareInterface = DeclareInterface;\n\texports.DeclareModule = DeclareModule;\n\texports.DeclareModuleExports = DeclareModuleExports;\n\texports.DeclareTypeAlias = DeclareTypeAlias;\n\texports.DeclareOpaqueType = DeclareOpaqueType;\n\texports.DeclareVariable = DeclareVariable;\n\texports.DeclareExportDeclaration = DeclareExportDeclaration;\n\texports.ExistentialTypeParam = ExistentialTypeParam;\n\texports.FunctionTypeAnnotation = FunctionTypeAnnotation;\n\texports.FunctionTypeParam = FunctionTypeParam;\n\texports.InterfaceExtends = InterfaceExtends;\n\texports._interfaceish = _interfaceish;\n\texports._variance = _variance;\n\texports.InterfaceDeclaration = InterfaceDeclaration;\n\texports.IntersectionTypeAnnotation = IntersectionTypeAnnotation;\n\texports.MixedTypeAnnotation = MixedTypeAnnotation;\n\texports.EmptyTypeAnnotation = EmptyTypeAnnotation;\n\texports.NullableTypeAnnotation = NullableTypeAnnotation;\n\n\tvar _types = __webpack_require__(123);\n\n\tObject.defineProperty(exports, \"NumericLiteralTypeAnnotation\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _types.NumericLiteral;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"StringLiteralTypeAnnotation\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _types.StringLiteral;\n\t  }\n\t});\n\texports.NumberTypeAnnotation = NumberTypeAnnotation;\n\texports.StringTypeAnnotation = StringTypeAnnotation;\n\texports.ThisTypeAnnotation = ThisTypeAnnotation;\n\texports.TupleTypeAnnotation = TupleTypeAnnotation;\n\texports.TypeofTypeAnnotation = TypeofTypeAnnotation;\n\texports.TypeAlias = TypeAlias;\n\texports.OpaqueType = OpaqueType;\n\texports.TypeAnnotation = TypeAnnotation;\n\texports.TypeParameter = TypeParameter;\n\texports.TypeParameterInstantiation = TypeParameterInstantiation;\n\texports.ObjectTypeAnnotation = ObjectTypeAnnotation;\n\texports.ObjectTypeCallProperty = ObjectTypeCallProperty;\n\texports.ObjectTypeIndexer = ObjectTypeIndexer;\n\texports.ObjectTypeProperty = ObjectTypeProperty;\n\texports.ObjectTypeSpreadProperty = ObjectTypeSpreadProperty;\n\texports.QualifiedTypeIdentifier = QualifiedTypeIdentifier;\n\texports.UnionTypeAnnotation = UnionTypeAnnotation;\n\texports.TypeCastExpression = TypeCastExpression;\n\texports.VoidTypeAnnotation = VoidTypeAnnotation;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction AnyTypeAnnotation() {\n\t  this.word(\"any\");\n\t}\n\n\tfunction ArrayTypeAnnotation(node) {\n\t  this.print(node.elementType, node);\n\t  this.token(\"[\");\n\t  this.token(\"]\");\n\t}\n\n\tfunction BooleanTypeAnnotation() {\n\t  this.word(\"boolean\");\n\t}\n\n\tfunction BooleanLiteralTypeAnnotation(node) {\n\t  this.word(node.value ? \"true\" : \"false\");\n\t}\n\n\tfunction NullLiteralTypeAnnotation() {\n\t  this.word(\"null\");\n\t}\n\n\tfunction DeclareClass(node, parent) {\n\t  if (!t.isDeclareExportDeclaration(parent)) {\n\t    this.word(\"declare\");\n\t    this.space();\n\t  }\n\t  this.word(\"class\");\n\t  this.space();\n\t  this._interfaceish(node);\n\t}\n\n\tfunction DeclareFunction(node, parent) {\n\t  if (!t.isDeclareExportDeclaration(parent)) {\n\t    this.word(\"declare\");\n\t    this.space();\n\t  }\n\t  this.word(\"function\");\n\t  this.space();\n\t  this.print(node.id, node);\n\t  this.print(node.id.typeAnnotation.typeAnnotation, node);\n\t  this.semicolon();\n\t}\n\n\tfunction DeclareInterface(node) {\n\t  this.word(\"declare\");\n\t  this.space();\n\t  this.InterfaceDeclaration(node);\n\t}\n\n\tfunction DeclareModule(node) {\n\t  this.word(\"declare\");\n\t  this.space();\n\t  this.word(\"module\");\n\t  this.space();\n\t  this.print(node.id, node);\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\tfunction DeclareModuleExports(node) {\n\t  this.word(\"declare\");\n\t  this.space();\n\t  this.word(\"module\");\n\t  this.token(\".\");\n\t  this.word(\"exports\");\n\t  this.print(node.typeAnnotation, node);\n\t}\n\n\tfunction DeclareTypeAlias(node) {\n\t  this.word(\"declare\");\n\t  this.space();\n\t  this.TypeAlias(node);\n\t}\n\n\tfunction DeclareOpaqueType(node, parent) {\n\t  if (!t.isDeclareExportDeclaration(parent)) {\n\t    this.word(\"declare\");\n\t    this.space();\n\t  }\n\t  this.OpaqueType(node);\n\t}\n\n\tfunction DeclareVariable(node, parent) {\n\t  if (!t.isDeclareExportDeclaration(parent)) {\n\t    this.word(\"declare\");\n\t    this.space();\n\t  }\n\t  this.word(\"var\");\n\t  this.space();\n\t  this.print(node.id, node);\n\t  this.print(node.id.typeAnnotation, node);\n\t  this.semicolon();\n\t}\n\n\tfunction DeclareExportDeclaration(node) {\n\t  this.word(\"declare\");\n\t  this.space();\n\t  this.word(\"export\");\n\t  this.space();\n\t  if (node.default) {\n\t    this.word(\"default\");\n\t    this.space();\n\t  }\n\n\t  FlowExportDeclaration.apply(this, arguments);\n\t}\n\n\tfunction FlowExportDeclaration(node) {\n\t  if (node.declaration) {\n\t    var declar = node.declaration;\n\t    this.print(declar, node);\n\t    if (!t.isStatement(declar)) this.semicolon();\n\t  } else {\n\t    this.token(\"{\");\n\t    if (node.specifiers.length) {\n\t      this.space();\n\t      this.printList(node.specifiers, node);\n\t      this.space();\n\t    }\n\t    this.token(\"}\");\n\n\t    if (node.source) {\n\t      this.space();\n\t      this.word(\"from\");\n\t      this.space();\n\t      this.print(node.source, node);\n\t    }\n\n\t    this.semicolon();\n\t  }\n\t}\n\n\tfunction ExistentialTypeParam() {\n\t  this.token(\"*\");\n\t}\n\n\tfunction FunctionTypeAnnotation(node, parent) {\n\t  this.print(node.typeParameters, node);\n\t  this.token(\"(\");\n\t  this.printList(node.params, node);\n\n\t  if (node.rest) {\n\t    if (node.params.length) {\n\t      this.token(\",\");\n\t      this.space();\n\t    }\n\t    this.token(\"...\");\n\t    this.print(node.rest, node);\n\t  }\n\n\t  this.token(\")\");\n\n\t  if (parent.type === \"ObjectTypeCallProperty\" || parent.type === \"DeclareFunction\") {\n\t    this.token(\":\");\n\t  } else {\n\t    this.space();\n\t    this.token(\"=>\");\n\t  }\n\n\t  this.space();\n\t  this.print(node.returnType, node);\n\t}\n\n\tfunction FunctionTypeParam(node) {\n\t  this.print(node.name, node);\n\t  if (node.optional) this.token(\"?\");\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.typeAnnotation, node);\n\t}\n\n\tfunction InterfaceExtends(node) {\n\t  this.print(node.id, node);\n\t  this.print(node.typeParameters, node);\n\t}\n\n\texports.ClassImplements = InterfaceExtends;\n\texports.GenericTypeAnnotation = InterfaceExtends;\n\tfunction _interfaceish(node) {\n\t  this.print(node.id, node);\n\t  this.print(node.typeParameters, node);\n\t  if (node.extends.length) {\n\t    this.space();\n\t    this.word(\"extends\");\n\t    this.space();\n\t    this.printList(node.extends, node);\n\t  }\n\t  if (node.mixins && node.mixins.length) {\n\t    this.space();\n\t    this.word(\"mixins\");\n\t    this.space();\n\t    this.printList(node.mixins, node);\n\t  }\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\tfunction _variance(node) {\n\t  if (node.variance === \"plus\") {\n\t    this.token(\"+\");\n\t  } else if (node.variance === \"minus\") {\n\t    this.token(\"-\");\n\t  }\n\t}\n\n\tfunction InterfaceDeclaration(node) {\n\t  this.word(\"interface\");\n\t  this.space();\n\t  this._interfaceish(node);\n\t}\n\n\tfunction andSeparator() {\n\t  this.space();\n\t  this.token(\"&\");\n\t  this.space();\n\t}\n\n\tfunction IntersectionTypeAnnotation(node) {\n\t  this.printJoin(node.types, node, { separator: andSeparator });\n\t}\n\n\tfunction MixedTypeAnnotation() {\n\t  this.word(\"mixed\");\n\t}\n\n\tfunction EmptyTypeAnnotation() {\n\t  this.word(\"empty\");\n\t}\n\n\tfunction NullableTypeAnnotation(node) {\n\t  this.token(\"?\");\n\t  this.print(node.typeAnnotation, node);\n\t}\n\n\tfunction NumberTypeAnnotation() {\n\t  this.word(\"number\");\n\t}\n\n\tfunction StringTypeAnnotation() {\n\t  this.word(\"string\");\n\t}\n\n\tfunction ThisTypeAnnotation() {\n\t  this.word(\"this\");\n\t}\n\n\tfunction TupleTypeAnnotation(node) {\n\t  this.token(\"[\");\n\t  this.printList(node.types, node);\n\t  this.token(\"]\");\n\t}\n\n\tfunction TypeofTypeAnnotation(node) {\n\t  this.word(\"typeof\");\n\t  this.space();\n\t  this.print(node.argument, node);\n\t}\n\n\tfunction TypeAlias(node) {\n\t  this.word(\"type\");\n\t  this.space();\n\t  this.print(node.id, node);\n\t  this.print(node.typeParameters, node);\n\t  this.space();\n\t  this.token(\"=\");\n\t  this.space();\n\t  this.print(node.right, node);\n\t  this.semicolon();\n\t}\n\tfunction OpaqueType(node) {\n\t  this.word(\"opaque\");\n\t  this.space();\n\t  this.word(\"type\");\n\t  this.space();\n\t  this.print(node.id, node);\n\t  this.print(node.typeParameters, node);\n\t  if (node.supertype) {\n\t    this.token(\":\");\n\t    this.space();\n\t    this.print(node.supertype, node);\n\t  }\n\t  if (node.impltype) {\n\t    this.space();\n\t    this.token(\"=\");\n\t    this.space();\n\t    this.print(node.impltype, node);\n\t  }\n\t  this.semicolon();\n\t}\n\n\tfunction TypeAnnotation(node) {\n\t  this.token(\":\");\n\t  this.space();\n\t  if (node.optional) this.token(\"?\");\n\t  this.print(node.typeAnnotation, node);\n\t}\n\n\tfunction TypeParameter(node) {\n\t  this._variance(node);\n\n\t  this.word(node.name);\n\n\t  if (node.bound) {\n\t    this.print(node.bound, node);\n\t  }\n\n\t  if (node.default) {\n\t    this.space();\n\t    this.token(\"=\");\n\t    this.space();\n\t    this.print(node.default, node);\n\t  }\n\t}\n\n\tfunction TypeParameterInstantiation(node) {\n\t  this.token(\"<\");\n\t  this.printList(node.params, node, {});\n\t  this.token(\">\");\n\t}\n\n\texports.TypeParameterDeclaration = TypeParameterInstantiation;\n\tfunction ObjectTypeAnnotation(node) {\n\t  var _this = this;\n\n\t  if (node.exact) {\n\t    this.token(\"{|\");\n\t  } else {\n\t    this.token(\"{\");\n\t  }\n\n\t  var props = node.properties.concat(node.callProperties, node.indexers);\n\n\t  if (props.length) {\n\t    this.space();\n\n\t    this.printJoin(props, node, {\n\t      addNewlines: function addNewlines(leading) {\n\t        if (leading && !props[0]) return 1;\n\t      },\n\n\t      indent: true,\n\t      statement: true,\n\t      iterator: function iterator() {\n\t        if (props.length !== 1) {\n\t          if (_this.format.flowCommaSeparator) {\n\t            _this.token(\",\");\n\t          } else {\n\t            _this.semicolon();\n\t          }\n\t          _this.space();\n\t        }\n\t      }\n\t    });\n\n\t    this.space();\n\t  }\n\n\t  if (node.exact) {\n\t    this.token(\"|}\");\n\t  } else {\n\t    this.token(\"}\");\n\t  }\n\t}\n\n\tfunction ObjectTypeCallProperty(node) {\n\t  if (node.static) {\n\t    this.word(\"static\");\n\t    this.space();\n\t  }\n\t  this.print(node.value, node);\n\t}\n\n\tfunction ObjectTypeIndexer(node) {\n\t  if (node.static) {\n\t    this.word(\"static\");\n\t    this.space();\n\t  }\n\t  this._variance(node);\n\t  this.token(\"[\");\n\t  this.print(node.id, node);\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.key, node);\n\t  this.token(\"]\");\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.value, node);\n\t}\n\n\tfunction ObjectTypeProperty(node) {\n\t  if (node.static) {\n\t    this.word(\"static\");\n\t    this.space();\n\t  }\n\t  this._variance(node);\n\t  this.print(node.key, node);\n\t  if (node.optional) this.token(\"?\");\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.value, node);\n\t}\n\n\tfunction ObjectTypeSpreadProperty(node) {\n\t  this.token(\"...\");\n\t  this.print(node.argument, node);\n\t}\n\n\tfunction QualifiedTypeIdentifier(node) {\n\t  this.print(node.qualification, node);\n\t  this.token(\".\");\n\t  this.print(node.id, node);\n\t}\n\n\tfunction orSeparator() {\n\t  this.space();\n\t  this.token(\"|\");\n\t  this.space();\n\t}\n\n\tfunction UnionTypeAnnotation(node) {\n\t  this.printJoin(node.types, node, { separator: orSeparator });\n\t}\n\n\tfunction TypeCastExpression(node) {\n\t  this.token(\"(\");\n\t  this.print(node.expression, node);\n\t  this.print(node.typeAnnotation, node);\n\t  this.token(\")\");\n\t}\n\n\tfunction VoidTypeAnnotation() {\n\t  this.word(\"void\");\n\t}\n\n/***/ }),\n/* 305 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.JSXAttribute = JSXAttribute;\n\texports.JSXIdentifier = JSXIdentifier;\n\texports.JSXNamespacedName = JSXNamespacedName;\n\texports.JSXMemberExpression = JSXMemberExpression;\n\texports.JSXSpreadAttribute = JSXSpreadAttribute;\n\texports.JSXExpressionContainer = JSXExpressionContainer;\n\texports.JSXSpreadChild = JSXSpreadChild;\n\texports.JSXText = JSXText;\n\texports.JSXElement = JSXElement;\n\texports.JSXOpeningElement = JSXOpeningElement;\n\texports.JSXClosingElement = JSXClosingElement;\n\texports.JSXEmptyExpression = JSXEmptyExpression;\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction JSXAttribute(node) {\n\t  this.print(node.name, node);\n\t  if (node.value) {\n\t    this.token(\"=\");\n\t    this.print(node.value, node);\n\t  }\n\t}\n\n\tfunction JSXIdentifier(node) {\n\t  this.word(node.name);\n\t}\n\n\tfunction JSXNamespacedName(node) {\n\t  this.print(node.namespace, node);\n\t  this.token(\":\");\n\t  this.print(node.name, node);\n\t}\n\n\tfunction JSXMemberExpression(node) {\n\t  this.print(node.object, node);\n\t  this.token(\".\");\n\t  this.print(node.property, node);\n\t}\n\n\tfunction JSXSpreadAttribute(node) {\n\t  this.token(\"{\");\n\t  this.token(\"...\");\n\t  this.print(node.argument, node);\n\t  this.token(\"}\");\n\t}\n\n\tfunction JSXExpressionContainer(node) {\n\t  this.token(\"{\");\n\t  this.print(node.expression, node);\n\t  this.token(\"}\");\n\t}\n\n\tfunction JSXSpreadChild(node) {\n\t  this.token(\"{\");\n\t  this.token(\"...\");\n\t  this.print(node.expression, node);\n\t  this.token(\"}\");\n\t}\n\n\tfunction JSXText(node) {\n\t  this.token(node.value);\n\t}\n\n\tfunction JSXElement(node) {\n\t  var open = node.openingElement;\n\t  this.print(open, node);\n\t  if (open.selfClosing) return;\n\n\t  this.indent();\n\t  for (var _iterator = node.children, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var child = _ref;\n\n\t    this.print(child, node);\n\t  }\n\t  this.dedent();\n\n\t  this.print(node.closingElement, node);\n\t}\n\n\tfunction spaceSeparator() {\n\t  this.space();\n\t}\n\n\tfunction JSXOpeningElement(node) {\n\t  this.token(\"<\");\n\t  this.print(node.name, node);\n\t  if (node.attributes.length > 0) {\n\t    this.space();\n\t    this.printJoin(node.attributes, node, { separator: spaceSeparator });\n\t  }\n\t  if (node.selfClosing) {\n\t    this.space();\n\t    this.token(\"/>\");\n\t  } else {\n\t    this.token(\">\");\n\t  }\n\t}\n\n\tfunction JSXClosingElement(node) {\n\t  this.token(\"</\");\n\t  this.print(node.name, node);\n\t  this.token(\">\");\n\t}\n\n\tfunction JSXEmptyExpression() {}\n\n/***/ }),\n/* 306 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.FunctionDeclaration = undefined;\n\texports._params = _params;\n\texports._method = _method;\n\texports.FunctionExpression = FunctionExpression;\n\texports.ArrowFunctionExpression = ArrowFunctionExpression;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _params(node) {\n\t  var _this = this;\n\n\t  this.print(node.typeParameters, node);\n\t  this.token(\"(\");\n\t  this.printList(node.params, node, {\n\t    iterator: function iterator(node) {\n\t      if (node.optional) _this.token(\"?\");\n\t      _this.print(node.typeAnnotation, node);\n\t    }\n\t  });\n\t  this.token(\")\");\n\n\t  if (node.returnType) {\n\t    this.print(node.returnType, node);\n\t  }\n\t}\n\n\tfunction _method(node) {\n\t  var kind = node.kind;\n\t  var key = node.key;\n\n\t  if (kind === \"method\" || kind === \"init\") {\n\t    if (node.generator) {\n\t      this.token(\"*\");\n\t    }\n\t  }\n\n\t  if (kind === \"get\" || kind === \"set\") {\n\t    this.word(kind);\n\t    this.space();\n\t  }\n\n\t  if (node.async) {\n\t    this.word(\"async\");\n\t    this.space();\n\t  }\n\n\t  if (node.computed) {\n\t    this.token(\"[\");\n\t    this.print(key, node);\n\t    this.token(\"]\");\n\t  } else {\n\t    this.print(key, node);\n\t  }\n\n\t  this._params(node);\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\tfunction FunctionExpression(node) {\n\t  if (node.async) {\n\t    this.word(\"async\");\n\t    this.space();\n\t  }\n\t  this.word(\"function\");\n\t  if (node.generator) this.token(\"*\");\n\n\t  if (node.id) {\n\t    this.space();\n\t    this.print(node.id, node);\n\t  } else {\n\t    this.space();\n\t  }\n\n\t  this._params(node);\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\texports.FunctionDeclaration = FunctionExpression;\n\tfunction ArrowFunctionExpression(node) {\n\t  if (node.async) {\n\t    this.word(\"async\");\n\t    this.space();\n\t  }\n\n\t  var firstParam = node.params[0];\n\n\t  if (node.params.length === 1 && t.isIdentifier(firstParam) && !hasTypes(node, firstParam)) {\n\t    this.print(firstParam, node);\n\t  } else {\n\t    this._params(node);\n\t  }\n\n\t  this.space();\n\t  this.token(\"=>\");\n\t  this.space();\n\n\t  this.print(node.body, node);\n\t}\n\n\tfunction hasTypes(node, param) {\n\t  return node.typeParameters || node.returnType || param.typeAnnotation || param.optional || param.trailingComments;\n\t}\n\n/***/ }),\n/* 307 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.ImportSpecifier = ImportSpecifier;\n\texports.ImportDefaultSpecifier = ImportDefaultSpecifier;\n\texports.ExportDefaultSpecifier = ExportDefaultSpecifier;\n\texports.ExportSpecifier = ExportSpecifier;\n\texports.ExportNamespaceSpecifier = ExportNamespaceSpecifier;\n\texports.ExportAllDeclaration = ExportAllDeclaration;\n\texports.ExportNamedDeclaration = ExportNamedDeclaration;\n\texports.ExportDefaultDeclaration = ExportDefaultDeclaration;\n\texports.ImportDeclaration = ImportDeclaration;\n\texports.ImportNamespaceSpecifier = ImportNamespaceSpecifier;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction ImportSpecifier(node) {\n\t  if (node.importKind === \"type\" || node.importKind === \"typeof\") {\n\t    this.word(node.importKind);\n\t    this.space();\n\t  }\n\n\t  this.print(node.imported, node);\n\t  if (node.local && node.local.name !== node.imported.name) {\n\t    this.space();\n\t    this.word(\"as\");\n\t    this.space();\n\t    this.print(node.local, node);\n\t  }\n\t}\n\n\tfunction ImportDefaultSpecifier(node) {\n\t  this.print(node.local, node);\n\t}\n\n\tfunction ExportDefaultSpecifier(node) {\n\t  this.print(node.exported, node);\n\t}\n\n\tfunction ExportSpecifier(node) {\n\t  this.print(node.local, node);\n\t  if (node.exported && node.local.name !== node.exported.name) {\n\t    this.space();\n\t    this.word(\"as\");\n\t    this.space();\n\t    this.print(node.exported, node);\n\t  }\n\t}\n\n\tfunction ExportNamespaceSpecifier(node) {\n\t  this.token(\"*\");\n\t  this.space();\n\t  this.word(\"as\");\n\t  this.space();\n\t  this.print(node.exported, node);\n\t}\n\n\tfunction ExportAllDeclaration(node) {\n\t  this.word(\"export\");\n\t  this.space();\n\t  this.token(\"*\");\n\t  this.space();\n\t  this.word(\"from\");\n\t  this.space();\n\t  this.print(node.source, node);\n\t  this.semicolon();\n\t}\n\n\tfunction ExportNamedDeclaration() {\n\t  this.word(\"export\");\n\t  this.space();\n\t  ExportDeclaration.apply(this, arguments);\n\t}\n\n\tfunction ExportDefaultDeclaration() {\n\t  this.word(\"export\");\n\t  this.space();\n\t  this.word(\"default\");\n\t  this.space();\n\t  ExportDeclaration.apply(this, arguments);\n\t}\n\n\tfunction ExportDeclaration(node) {\n\t  if (node.declaration) {\n\t    var declar = node.declaration;\n\t    this.print(declar, node);\n\t    if (!t.isStatement(declar)) this.semicolon();\n\t  } else {\n\t    if (node.exportKind === \"type\") {\n\t      this.word(\"type\");\n\t      this.space();\n\t    }\n\n\t    var specifiers = node.specifiers.slice(0);\n\n\t    var hasSpecial = false;\n\t    while (true) {\n\t      var first = specifiers[0];\n\t      if (t.isExportDefaultSpecifier(first) || t.isExportNamespaceSpecifier(first)) {\n\t        hasSpecial = true;\n\t        this.print(specifiers.shift(), node);\n\t        if (specifiers.length) {\n\t          this.token(\",\");\n\t          this.space();\n\t        }\n\t      } else {\n\t        break;\n\t      }\n\t    }\n\n\t    if (specifiers.length || !specifiers.length && !hasSpecial) {\n\t      this.token(\"{\");\n\t      if (specifiers.length) {\n\t        this.space();\n\t        this.printList(specifiers, node);\n\t        this.space();\n\t      }\n\t      this.token(\"}\");\n\t    }\n\n\t    if (node.source) {\n\t      this.space();\n\t      this.word(\"from\");\n\t      this.space();\n\t      this.print(node.source, node);\n\t    }\n\n\t    this.semicolon();\n\t  }\n\t}\n\n\tfunction ImportDeclaration(node) {\n\t  this.word(\"import\");\n\t  this.space();\n\n\t  if (node.importKind === \"type\" || node.importKind === \"typeof\") {\n\t    this.word(node.importKind);\n\t    this.space();\n\t  }\n\n\t  var specifiers = node.specifiers.slice(0);\n\t  if (specifiers && specifiers.length) {\n\t    while (true) {\n\t      var first = specifiers[0];\n\t      if (t.isImportDefaultSpecifier(first) || t.isImportNamespaceSpecifier(first)) {\n\t        this.print(specifiers.shift(), node);\n\t        if (specifiers.length) {\n\t          this.token(\",\");\n\t          this.space();\n\t        }\n\t      } else {\n\t        break;\n\t      }\n\t    }\n\n\t    if (specifiers.length) {\n\t      this.token(\"{\");\n\t      this.space();\n\t      this.printList(specifiers, node);\n\t      this.space();\n\t      this.token(\"}\");\n\t    }\n\n\t    this.space();\n\t    this.word(\"from\");\n\t    this.space();\n\t  }\n\n\t  this.print(node.source, node);\n\t  this.semicolon();\n\t}\n\n\tfunction ImportNamespaceSpecifier(node) {\n\t  this.token(\"*\");\n\t  this.space();\n\t  this.word(\"as\");\n\t  this.space();\n\t  this.print(node.local, node);\n\t}\n\n/***/ }),\n/* 308 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.ThrowStatement = exports.BreakStatement = exports.ReturnStatement = exports.ContinueStatement = exports.ForAwaitStatement = exports.ForOfStatement = exports.ForInStatement = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.WithStatement = WithStatement;\n\texports.IfStatement = IfStatement;\n\texports.ForStatement = ForStatement;\n\texports.WhileStatement = WhileStatement;\n\texports.DoWhileStatement = DoWhileStatement;\n\texports.LabeledStatement = LabeledStatement;\n\texports.TryStatement = TryStatement;\n\texports.CatchClause = CatchClause;\n\texports.SwitchStatement = SwitchStatement;\n\texports.SwitchCase = SwitchCase;\n\texports.DebuggerStatement = DebuggerStatement;\n\texports.VariableDeclaration = VariableDeclaration;\n\texports.VariableDeclarator = VariableDeclarator;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction WithStatement(node) {\n\t  this.word(\"with\");\n\t  this.space();\n\t  this.token(\"(\");\n\t  this.print(node.object, node);\n\t  this.token(\")\");\n\t  this.printBlock(node);\n\t}\n\n\tfunction IfStatement(node) {\n\t  this.word(\"if\");\n\t  this.space();\n\t  this.token(\"(\");\n\t  this.print(node.test, node);\n\t  this.token(\")\");\n\t  this.space();\n\n\t  var needsBlock = node.alternate && t.isIfStatement(getLastStatement(node.consequent));\n\t  if (needsBlock) {\n\t    this.token(\"{\");\n\t    this.newline();\n\t    this.indent();\n\t  }\n\n\t  this.printAndIndentOnComments(node.consequent, node);\n\n\t  if (needsBlock) {\n\t    this.dedent();\n\t    this.newline();\n\t    this.token(\"}\");\n\t  }\n\n\t  if (node.alternate) {\n\t    if (this.endsWith(\"}\")) this.space();\n\t    this.word(\"else\");\n\t    this.space();\n\t    this.printAndIndentOnComments(node.alternate, node);\n\t  }\n\t}\n\n\tfunction getLastStatement(statement) {\n\t  if (!t.isStatement(statement.body)) return statement;\n\t  return getLastStatement(statement.body);\n\t}\n\n\tfunction ForStatement(node) {\n\t  this.word(\"for\");\n\t  this.space();\n\t  this.token(\"(\");\n\n\t  this.inForStatementInitCounter++;\n\t  this.print(node.init, node);\n\t  this.inForStatementInitCounter--;\n\t  this.token(\";\");\n\n\t  if (node.test) {\n\t    this.space();\n\t    this.print(node.test, node);\n\t  }\n\t  this.token(\";\");\n\n\t  if (node.update) {\n\t    this.space();\n\t    this.print(node.update, node);\n\t  }\n\n\t  this.token(\")\");\n\t  this.printBlock(node);\n\t}\n\n\tfunction WhileStatement(node) {\n\t  this.word(\"while\");\n\t  this.space();\n\t  this.token(\"(\");\n\t  this.print(node.test, node);\n\t  this.token(\")\");\n\t  this.printBlock(node);\n\t}\n\n\tvar buildForXStatement = function buildForXStatement(op) {\n\t  return function (node) {\n\t    this.word(\"for\");\n\t    this.space();\n\t    if (op === \"await\") {\n\t      this.word(\"await\");\n\t      this.space();\n\t    }\n\t    this.token(\"(\");\n\n\t    this.print(node.left, node);\n\t    this.space();\n\t    this.word(op === \"await\" ? \"of\" : op);\n\t    this.space();\n\t    this.print(node.right, node);\n\t    this.token(\")\");\n\t    this.printBlock(node);\n\t  };\n\t};\n\n\tvar ForInStatement = exports.ForInStatement = buildForXStatement(\"in\");\n\tvar ForOfStatement = exports.ForOfStatement = buildForXStatement(\"of\");\n\tvar ForAwaitStatement = exports.ForAwaitStatement = buildForXStatement(\"await\");\n\n\tfunction DoWhileStatement(node) {\n\t  this.word(\"do\");\n\t  this.space();\n\t  this.print(node.body, node);\n\t  this.space();\n\t  this.word(\"while\");\n\t  this.space();\n\t  this.token(\"(\");\n\t  this.print(node.test, node);\n\t  this.token(\")\");\n\t  this.semicolon();\n\t}\n\n\tfunction buildLabelStatement(prefix) {\n\t  var key = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : \"label\";\n\n\t  return function (node) {\n\t    this.word(prefix);\n\n\t    var label = node[key];\n\t    if (label) {\n\t      this.space();\n\n\t      var terminatorState = this.startTerminatorless();\n\t      this.print(label, node);\n\t      this.endTerminatorless(terminatorState);\n\t    }\n\n\t    this.semicolon();\n\t  };\n\t}\n\n\tvar ContinueStatement = exports.ContinueStatement = buildLabelStatement(\"continue\");\n\tvar ReturnStatement = exports.ReturnStatement = buildLabelStatement(\"return\", \"argument\");\n\tvar BreakStatement = exports.BreakStatement = buildLabelStatement(\"break\");\n\tvar ThrowStatement = exports.ThrowStatement = buildLabelStatement(\"throw\", \"argument\");\n\n\tfunction LabeledStatement(node) {\n\t  this.print(node.label, node);\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\tfunction TryStatement(node) {\n\t  this.word(\"try\");\n\t  this.space();\n\t  this.print(node.block, node);\n\t  this.space();\n\n\t  if (node.handlers) {\n\t    this.print(node.handlers[0], node);\n\t  } else {\n\t    this.print(node.handler, node);\n\t  }\n\n\t  if (node.finalizer) {\n\t    this.space();\n\t    this.word(\"finally\");\n\t    this.space();\n\t    this.print(node.finalizer, node);\n\t  }\n\t}\n\n\tfunction CatchClause(node) {\n\t  this.word(\"catch\");\n\t  this.space();\n\t  this.token(\"(\");\n\t  this.print(node.param, node);\n\t  this.token(\")\");\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\tfunction SwitchStatement(node) {\n\t  this.word(\"switch\");\n\t  this.space();\n\t  this.token(\"(\");\n\t  this.print(node.discriminant, node);\n\t  this.token(\")\");\n\t  this.space();\n\t  this.token(\"{\");\n\n\t  this.printSequence(node.cases, node, {\n\t    indent: true,\n\t    addNewlines: function addNewlines(leading, cas) {\n\t      if (!leading && node.cases[node.cases.length - 1] === cas) return -1;\n\t    }\n\t  });\n\n\t  this.token(\"}\");\n\t}\n\n\tfunction SwitchCase(node) {\n\t  if (node.test) {\n\t    this.word(\"case\");\n\t    this.space();\n\t    this.print(node.test, node);\n\t    this.token(\":\");\n\t  } else {\n\t    this.word(\"default\");\n\t    this.token(\":\");\n\t  }\n\n\t  if (node.consequent.length) {\n\t    this.newline();\n\t    this.printSequence(node.consequent, node, { indent: true });\n\t  }\n\t}\n\n\tfunction DebuggerStatement() {\n\t  this.word(\"debugger\");\n\t  this.semicolon();\n\t}\n\n\tfunction variableDeclarationIdent() {\n\t  this.token(\",\");\n\t  this.newline();\n\t  if (this.endsWith(\"\\n\")) for (var i = 0; i < 4; i++) {\n\t    this.space(true);\n\t  }\n\t}\n\n\tfunction constDeclarationIdent() {\n\t  this.token(\",\");\n\t  this.newline();\n\t  if (this.endsWith(\"\\n\")) for (var i = 0; i < 6; i++) {\n\t    this.space(true);\n\t  }\n\t}\n\n\tfunction VariableDeclaration(node, parent) {\n\t  this.word(node.kind);\n\t  this.space();\n\n\t  var hasInits = false;\n\n\t  if (!t.isFor(parent)) {\n\t    for (var _iterator = node.declarations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var declar = _ref;\n\n\t      if (declar.init) {\n\t        hasInits = true;\n\t      }\n\t    }\n\t  }\n\n\t  var separator = void 0;\n\t  if (hasInits) {\n\t    separator = node.kind === \"const\" ? constDeclarationIdent : variableDeclarationIdent;\n\t  }\n\n\t  this.printList(node.declarations, node, { separator: separator });\n\n\t  if (t.isFor(parent)) {\n\t    if (parent.left === node || parent.init === node) return;\n\t  }\n\n\t  this.semicolon();\n\t}\n\n\tfunction VariableDeclarator(node) {\n\t  this.print(node.id, node);\n\t  this.print(node.id.typeAnnotation, node);\n\t  if (node.init) {\n\t    this.space();\n\t    this.token(\"=\");\n\t    this.space();\n\t    this.print(node.init, node);\n\t  }\n\t}\n\n/***/ }),\n/* 309 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.TaggedTemplateExpression = TaggedTemplateExpression;\n\texports.TemplateElement = TemplateElement;\n\texports.TemplateLiteral = TemplateLiteral;\n\tfunction TaggedTemplateExpression(node) {\n\t  this.print(node.tag, node);\n\t  this.print(node.quasi, node);\n\t}\n\n\tfunction TemplateElement(node, parent) {\n\t  var isFirst = parent.quasis[0] === node;\n\t  var isLast = parent.quasis[parent.quasis.length - 1] === node;\n\n\t  var value = (isFirst ? \"`\" : \"}\") + node.value.raw + (isLast ? \"`\" : \"${\");\n\n\t  this.token(value);\n\t}\n\n\tfunction TemplateLiteral(node) {\n\t  var quasis = node.quasis;\n\n\t  for (var i = 0; i < quasis.length; i++) {\n\t    this.print(quasis[i], node);\n\n\t    if (i + 1 < quasis.length) {\n\t      this.print(node.expressions[i], node);\n\t    }\n\t  }\n\t}\n\n/***/ }),\n/* 310 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.AwaitExpression = exports.FunctionTypeAnnotation = undefined;\n\texports.NullableTypeAnnotation = NullableTypeAnnotation;\n\texports.UpdateExpression = UpdateExpression;\n\texports.ObjectExpression = ObjectExpression;\n\texports.DoExpression = DoExpression;\n\texports.Binary = Binary;\n\texports.BinaryExpression = BinaryExpression;\n\texports.SequenceExpression = SequenceExpression;\n\texports.YieldExpression = YieldExpression;\n\texports.ClassExpression = ClassExpression;\n\texports.UnaryLike = UnaryLike;\n\texports.FunctionExpression = FunctionExpression;\n\texports.ArrowFunctionExpression = ArrowFunctionExpression;\n\texports.ConditionalExpression = ConditionalExpression;\n\texports.AssignmentExpression = AssignmentExpression;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tvar PRECEDENCE = {\n\t  \"||\": 0,\n\t  \"&&\": 1,\n\t  \"|\": 2,\n\t  \"^\": 3,\n\t  \"&\": 4,\n\t  \"==\": 5,\n\t  \"===\": 5,\n\t  \"!=\": 5,\n\t  \"!==\": 5,\n\t  \"<\": 6,\n\t  \">\": 6,\n\t  \"<=\": 6,\n\t  \">=\": 6,\n\t  in: 6,\n\t  instanceof: 6,\n\t  \">>\": 7,\n\t  \"<<\": 7,\n\t  \">>>\": 7,\n\t  \"+\": 8,\n\t  \"-\": 8,\n\t  \"*\": 9,\n\t  \"/\": 9,\n\t  \"%\": 9,\n\t  \"**\": 10\n\t};\n\n\tfunction NullableTypeAnnotation(node, parent) {\n\t  return t.isArrayTypeAnnotation(parent);\n\t}\n\n\texports.FunctionTypeAnnotation = NullableTypeAnnotation;\n\tfunction UpdateExpression(node, parent) {\n\t  return t.isMemberExpression(parent) && parent.object === node;\n\t}\n\n\tfunction ObjectExpression(node, parent, printStack) {\n\t  return isFirstInStatement(printStack, { considerArrow: true });\n\t}\n\n\tfunction DoExpression(node, parent, printStack) {\n\t  return isFirstInStatement(printStack);\n\t}\n\n\tfunction Binary(node, parent) {\n\t  if ((t.isCallExpression(parent) || t.isNewExpression(parent)) && parent.callee === node || t.isUnaryLike(parent) || t.isMemberExpression(parent) && parent.object === node || t.isAwaitExpression(parent)) {\n\t    return true;\n\t  }\n\n\t  if (t.isBinary(parent)) {\n\t    var parentOp = parent.operator;\n\t    var parentPos = PRECEDENCE[parentOp];\n\n\t    var nodeOp = node.operator;\n\t    var nodePos = PRECEDENCE[nodeOp];\n\n\t    if (parentPos === nodePos && parent.right === node && !t.isLogicalExpression(parent) || parentPos > nodePos) {\n\t      return true;\n\t    }\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction BinaryExpression(node, parent) {\n\t  return node.operator === \"in\" && (t.isVariableDeclarator(parent) || t.isFor(parent));\n\t}\n\n\tfunction SequenceExpression(node, parent) {\n\n\t  if (t.isForStatement(parent) || t.isThrowStatement(parent) || t.isReturnStatement(parent) || t.isIfStatement(parent) && parent.test === node || t.isWhileStatement(parent) && parent.test === node || t.isForInStatement(parent) && parent.right === node || t.isSwitchStatement(parent) && parent.discriminant === node || t.isExpressionStatement(parent) && parent.expression === node) {\n\t    return false;\n\t  }\n\n\t  return true;\n\t}\n\n\tfunction YieldExpression(node, parent) {\n\t  return t.isBinary(parent) || t.isUnaryLike(parent) || t.isCallExpression(parent) || t.isMemberExpression(parent) || t.isNewExpression(parent) || t.isConditionalExpression(parent) && node === parent.test;\n\t}\n\n\texports.AwaitExpression = YieldExpression;\n\tfunction ClassExpression(node, parent, printStack) {\n\t  return isFirstInStatement(printStack, { considerDefaultExports: true });\n\t}\n\n\tfunction UnaryLike(node, parent) {\n\t  return t.isMemberExpression(parent, { object: node }) || t.isCallExpression(parent, { callee: node }) || t.isNewExpression(parent, { callee: node });\n\t}\n\n\tfunction FunctionExpression(node, parent, printStack) {\n\t  return isFirstInStatement(printStack, { considerDefaultExports: true });\n\t}\n\n\tfunction ArrowFunctionExpression(node, parent) {\n\t  if (t.isExportDeclaration(parent) || t.isBinaryExpression(parent) || t.isLogicalExpression(parent) || t.isUnaryExpression(parent) || t.isTaggedTemplateExpression(parent)) {\n\t    return true;\n\t  }\n\n\t  return UnaryLike(node, parent);\n\t}\n\n\tfunction ConditionalExpression(node, parent) {\n\t  if (t.isUnaryLike(parent) || t.isBinary(parent) || t.isConditionalExpression(parent, { test: node }) || t.isAwaitExpression(parent)) {\n\t    return true;\n\t  }\n\n\t  return UnaryLike(node, parent);\n\t}\n\n\tfunction AssignmentExpression(node) {\n\t  if (t.isObjectPattern(node.left)) {\n\t    return true;\n\t  } else {\n\t    return ConditionalExpression.apply(undefined, arguments);\n\t  }\n\t}\n\n\tfunction isFirstInStatement(printStack) {\n\t  var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},\n\t      _ref$considerArrow = _ref.considerArrow,\n\t      considerArrow = _ref$considerArrow === undefined ? false : _ref$considerArrow,\n\t      _ref$considerDefaultE = _ref.considerDefaultExports,\n\t      considerDefaultExports = _ref$considerDefaultE === undefined ? false : _ref$considerDefaultE;\n\n\t  var i = printStack.length - 1;\n\t  var node = printStack[i];\n\t  i--;\n\t  var parent = printStack[i];\n\t  while (i > 0) {\n\t    if (t.isExpressionStatement(parent, { expression: node }) || t.isTaggedTemplateExpression(parent) || considerDefaultExports && t.isExportDefaultDeclaration(parent, { declaration: node }) || considerArrow && t.isArrowFunctionExpression(parent, { body: node })) {\n\t      return true;\n\t    }\n\n\t    if (t.isCallExpression(parent, { callee: node }) || t.isSequenceExpression(parent) && parent.expressions[0] === node || t.isMemberExpression(parent, { object: node }) || t.isConditional(parent, { test: node }) || t.isBinary(parent, { left: node }) || t.isAssignmentExpression(parent, { left: node })) {\n\t      node = parent;\n\t      i--;\n\t      parent = printStack[i];\n\t    } else {\n\t      return false;\n\t    }\n\t  }\n\n\t  return false;\n\t}\n\n/***/ }),\n/* 311 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _map = __webpack_require__(588);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction crawl(node) {\n\t  var state = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t  if (t.isMemberExpression(node)) {\n\t    crawl(node.object, state);\n\t    if (node.computed) crawl(node.property, state);\n\t  } else if (t.isBinary(node) || t.isAssignmentExpression(node)) {\n\t    crawl(node.left, state);\n\t    crawl(node.right, state);\n\t  } else if (t.isCallExpression(node)) {\n\t    state.hasCall = true;\n\t    crawl(node.callee, state);\n\t  } else if (t.isFunction(node)) {\n\t    state.hasFunction = true;\n\t  } else if (t.isIdentifier(node)) {\n\t    state.hasHelper = state.hasHelper || isHelper(node.callee);\n\t  }\n\n\t  return state;\n\t}\n\n\tfunction isHelper(node) {\n\t  if (t.isMemberExpression(node)) {\n\t    return isHelper(node.object) || isHelper(node.property);\n\t  } else if (t.isIdentifier(node)) {\n\t    return node.name === \"require\" || node.name[0] === \"_\";\n\t  } else if (t.isCallExpression(node)) {\n\t    return isHelper(node.callee);\n\t  } else if (t.isBinary(node) || t.isAssignmentExpression(node)) {\n\t    return t.isIdentifier(node.left) && isHelper(node.left) || isHelper(node.right);\n\t  } else {\n\t    return false;\n\t  }\n\t}\n\n\tfunction isType(node) {\n\t  return t.isLiteral(node) || t.isObjectExpression(node) || t.isArrayExpression(node) || t.isIdentifier(node) || t.isMemberExpression(node);\n\t}\n\n\texports.nodes = {\n\t  AssignmentExpression: function AssignmentExpression(node) {\n\t    var state = crawl(node.right);\n\t    if (state.hasCall && state.hasHelper || state.hasFunction) {\n\t      return {\n\t        before: state.hasFunction,\n\t        after: true\n\t      };\n\t    }\n\t  },\n\t  SwitchCase: function SwitchCase(node, parent) {\n\t    return {\n\t      before: node.consequent.length || parent.cases[0] === node\n\t    };\n\t  },\n\t  LogicalExpression: function LogicalExpression(node) {\n\t    if (t.isFunction(node.left) || t.isFunction(node.right)) {\n\t      return {\n\t        after: true\n\t      };\n\t    }\n\t  },\n\t  Literal: function Literal(node) {\n\t    if (node.value === \"use strict\") {\n\t      return {\n\t        after: true\n\t      };\n\t    }\n\t  },\n\t  CallExpression: function CallExpression(node) {\n\t    if (t.isFunction(node.callee) || isHelper(node)) {\n\t      return {\n\t        before: true,\n\t        after: true\n\t      };\n\t    }\n\t  },\n\t  VariableDeclaration: function VariableDeclaration(node) {\n\t    for (var i = 0; i < node.declarations.length; i++) {\n\t      var declar = node.declarations[i];\n\n\t      var enabled = isHelper(declar.id) && !isType(declar.init);\n\t      if (!enabled) {\n\t        var state = crawl(declar.init);\n\t        enabled = isHelper(declar.init) && state.hasCall || state.hasFunction;\n\t      }\n\n\t      if (enabled) {\n\t        return {\n\t          before: true,\n\t          after: true\n\t        };\n\t      }\n\t    }\n\t  },\n\t  IfStatement: function IfStatement(node) {\n\t    if (t.isBlockStatement(node.consequent)) {\n\t      return {\n\t        before: true,\n\t        after: true\n\t      };\n\t    }\n\t  }\n\t};\n\n\texports.nodes.ObjectProperty = exports.nodes.ObjectTypeProperty = exports.nodes.ObjectMethod = exports.nodes.SpreadProperty = function (node, parent) {\n\t  if (parent.properties[0] === node) {\n\t    return {\n\t      before: true\n\t    };\n\t  }\n\t};\n\n\texports.list = {\n\t  VariableDeclaration: function VariableDeclaration(node) {\n\t    return (0, _map2.default)(node.declarations, \"init\");\n\t  },\n\t  ArrayExpression: function ArrayExpression(node) {\n\t    return node.elements;\n\t  },\n\t  ObjectExpression: function ObjectExpression(node) {\n\t    return node.properties;\n\t  }\n\t};\n\n\t[[\"Function\", true], [\"Class\", true], [\"Loop\", true], [\"LabeledStatement\", true], [\"SwitchStatement\", true], [\"TryStatement\", true]].forEach(function (_ref) {\n\t  var type = _ref[0],\n\t      amounts = _ref[1];\n\n\t  if (typeof amounts === \"boolean\") {\n\t    amounts = { after: amounts, before: amounts };\n\t  }\n\t  [type].concat(t.FLIPPED_ALIAS_KEYS[type] || []).forEach(function (type) {\n\t    exports.nodes[type] = function () {\n\t      return amounts;\n\t    };\n\t  });\n\t});\n\n/***/ }),\n/* 312 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _assign = __webpack_require__(87);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\tvar _weakSet = __webpack_require__(365);\n\n\tvar _weakSet2 = _interopRequireDefault(_weakSet);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _find = __webpack_require__(579);\n\n\tvar _find2 = _interopRequireDefault(_find);\n\n\tvar _findLast = __webpack_require__(581);\n\n\tvar _findLast2 = _interopRequireDefault(_findLast);\n\n\tvar _isInteger = __webpack_require__(586);\n\n\tvar _isInteger2 = _interopRequireDefault(_isInteger);\n\n\tvar _repeat = __webpack_require__(278);\n\n\tvar _repeat2 = _interopRequireDefault(_repeat);\n\n\tvar _buffer = __webpack_require__(300);\n\n\tvar _buffer2 = _interopRequireDefault(_buffer);\n\n\tvar _node = __webpack_require__(187);\n\n\tvar n = _interopRequireWildcard(_node);\n\n\tvar _whitespace = __webpack_require__(314);\n\n\tvar _whitespace2 = _interopRequireDefault(_whitespace);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar SCIENTIFIC_NOTATION = /e/i;\n\tvar ZERO_DECIMAL_INTEGER = /\\.0+$/;\n\tvar NON_DECIMAL_LITERAL = /^0[box]/;\n\n\tvar Printer = function () {\n\t  function Printer(format, map, tokens) {\n\t    (0, _classCallCheck3.default)(this, Printer);\n\t    this.inForStatementInitCounter = 0;\n\t    this._printStack = [];\n\t    this._indent = 0;\n\t    this._insideAux = false;\n\t    this._printedCommentStarts = {};\n\t    this._parenPushNewlineState = null;\n\t    this._printAuxAfterOnNextUserNode = false;\n\t    this._printedComments = new _weakSet2.default();\n\t    this._endsWithInteger = false;\n\t    this._endsWithWord = false;\n\n\t    this.format = format || {};\n\t    this._buf = new _buffer2.default(map);\n\t    this._whitespace = tokens.length > 0 ? new _whitespace2.default(tokens) : null;\n\t  }\n\n\t  Printer.prototype.generate = function generate(ast) {\n\t    this.print(ast);\n\t    this._maybeAddAuxComment();\n\n\t    return this._buf.get();\n\t  };\n\n\t  Printer.prototype.indent = function indent() {\n\t    if (this.format.compact || this.format.concise) return;\n\n\t    this._indent++;\n\t  };\n\n\t  Printer.prototype.dedent = function dedent() {\n\t    if (this.format.compact || this.format.concise) return;\n\n\t    this._indent--;\n\t  };\n\n\t  Printer.prototype.semicolon = function semicolon() {\n\t    var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;\n\n\t    this._maybeAddAuxComment();\n\t    this._append(\";\", !force);\n\t  };\n\n\t  Printer.prototype.rightBrace = function rightBrace() {\n\t    if (this.format.minified) {\n\t      this._buf.removeLastSemicolon();\n\t    }\n\t    this.token(\"}\");\n\t  };\n\n\t  Printer.prototype.space = function space() {\n\t    var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;\n\n\t    if (this.format.compact) return;\n\n\t    if (this._buf.hasContent() && !this.endsWith(\" \") && !this.endsWith(\"\\n\") || force) {\n\t      this._space();\n\t    }\n\t  };\n\n\t  Printer.prototype.word = function word(str) {\n\t    if (this._endsWithWord) this._space();\n\n\t    this._maybeAddAuxComment();\n\t    this._append(str);\n\n\t    this._endsWithWord = true;\n\t  };\n\n\t  Printer.prototype.number = function number(str) {\n\t    this.word(str);\n\n\t    this._endsWithInteger = (0, _isInteger2.default)(+str) && !NON_DECIMAL_LITERAL.test(str) && !SCIENTIFIC_NOTATION.test(str) && !ZERO_DECIMAL_INTEGER.test(str) && str[str.length - 1] !== \".\";\n\t  };\n\n\t  Printer.prototype.token = function token(str) {\n\t    if (str === \"--\" && this.endsWith(\"!\") || str[0] === \"+\" && this.endsWith(\"+\") || str[0] === \"-\" && this.endsWith(\"-\") || str[0] === \".\" && this._endsWithInteger) {\n\t      this._space();\n\t    }\n\n\t    this._maybeAddAuxComment();\n\t    this._append(str);\n\t  };\n\n\t  Printer.prototype.newline = function newline(i) {\n\t    if (this.format.retainLines || this.format.compact) return;\n\n\t    if (this.format.concise) {\n\t      this.space();\n\t      return;\n\t    }\n\n\t    if (this.endsWith(\"\\n\\n\")) return;\n\n\t    if (typeof i !== \"number\") i = 1;\n\n\t    i = Math.min(2, i);\n\t    if (this.endsWith(\"{\\n\") || this.endsWith(\":\\n\")) i--;\n\t    if (i <= 0) return;\n\n\t    for (var j = 0; j < i; j++) {\n\t      this._newline();\n\t    }\n\t  };\n\n\t  Printer.prototype.endsWith = function endsWith(str) {\n\t    return this._buf.endsWith(str);\n\t  };\n\n\t  Printer.prototype.removeTrailingNewline = function removeTrailingNewline() {\n\t    this._buf.removeTrailingNewline();\n\t  };\n\n\t  Printer.prototype.source = function source(prop, loc) {\n\t    this._catchUp(prop, loc);\n\n\t    this._buf.source(prop, loc);\n\t  };\n\n\t  Printer.prototype.withSource = function withSource(prop, loc, cb) {\n\t    this._catchUp(prop, loc);\n\n\t    this._buf.withSource(prop, loc, cb);\n\t  };\n\n\t  Printer.prototype._space = function _space() {\n\t    this._append(\" \", true);\n\t  };\n\n\t  Printer.prototype._newline = function _newline() {\n\t    this._append(\"\\n\", true);\n\t  };\n\n\t  Printer.prototype._append = function _append(str) {\n\t    var queue = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t    this._maybeAddParen(str);\n\t    this._maybeIndent(str);\n\n\t    if (queue) this._buf.queue(str);else this._buf.append(str);\n\n\t    this._endsWithWord = false;\n\t    this._endsWithInteger = false;\n\t  };\n\n\t  Printer.prototype._maybeIndent = function _maybeIndent(str) {\n\t    if (this._indent && this.endsWith(\"\\n\") && str[0] !== \"\\n\") {\n\t      this._buf.queue(this._getIndent());\n\t    }\n\t  };\n\n\t  Printer.prototype._maybeAddParen = function _maybeAddParen(str) {\n\t    var parenPushNewlineState = this._parenPushNewlineState;\n\t    if (!parenPushNewlineState) return;\n\t    this._parenPushNewlineState = null;\n\n\t    var i = void 0;\n\t    for (i = 0; i < str.length && str[i] === \" \"; i++) {\n\t      continue;\n\t    }if (i === str.length) return;\n\n\t    var cha = str[i];\n\t    if (cha === \"\\n\" || cha === \"/\") {\n\t      this.token(\"(\");\n\t      this.indent();\n\t      parenPushNewlineState.printed = true;\n\t    }\n\t  };\n\n\t  Printer.prototype._catchUp = function _catchUp(prop, loc) {\n\t    if (!this.format.retainLines) return;\n\n\t    var pos = loc ? loc[prop] : null;\n\t    if (pos && pos.line !== null) {\n\t      var count = pos.line - this._buf.getCurrentLine();\n\n\t      for (var i = 0; i < count; i++) {\n\t        this._newline();\n\t      }\n\t    }\n\t  };\n\n\t  Printer.prototype._getIndent = function _getIndent() {\n\t    return (0, _repeat2.default)(this.format.indent.style, this._indent);\n\t  };\n\n\t  Printer.prototype.startTerminatorless = function startTerminatorless() {\n\t    return this._parenPushNewlineState = {\n\t      printed: false\n\t    };\n\t  };\n\n\t  Printer.prototype.endTerminatorless = function endTerminatorless(state) {\n\t    if (state.printed) {\n\t      this.dedent();\n\t      this.newline();\n\t      this.token(\")\");\n\t    }\n\t  };\n\n\t  Printer.prototype.print = function print(node, parent) {\n\t    var _this = this;\n\n\t    if (!node) return;\n\n\t    var oldConcise = this.format.concise;\n\t    if (node._compact) {\n\t      this.format.concise = true;\n\t    }\n\n\t    var printMethod = this[node.type];\n\t    if (!printMethod) {\n\t      throw new ReferenceError(\"unknown node of type \" + (0, _stringify2.default)(node.type) + \" with constructor \" + (0, _stringify2.default)(node && node.constructor.name));\n\t    }\n\n\t    this._printStack.push(node);\n\n\t    var oldInAux = this._insideAux;\n\t    this._insideAux = !node.loc;\n\t    this._maybeAddAuxComment(this._insideAux && !oldInAux);\n\n\t    var needsParens = n.needsParens(node, parent, this._printStack);\n\t    if (this.format.retainFunctionParens && node.type === \"FunctionExpression\" && node.extra && node.extra.parenthesized) {\n\t      needsParens = true;\n\t    }\n\t    if (needsParens) this.token(\"(\");\n\n\t    this._printLeadingComments(node, parent);\n\n\t    var loc = t.isProgram(node) || t.isFile(node) ? null : node.loc;\n\t    this.withSource(\"start\", loc, function () {\n\t      _this[node.type](node, parent);\n\t    });\n\n\t    this._printTrailingComments(node, parent);\n\n\t    if (needsParens) this.token(\")\");\n\n\t    this._printStack.pop();\n\n\t    this.format.concise = oldConcise;\n\t    this._insideAux = oldInAux;\n\t  };\n\n\t  Printer.prototype._maybeAddAuxComment = function _maybeAddAuxComment(enteredPositionlessNode) {\n\t    if (enteredPositionlessNode) this._printAuxBeforeComment();\n\t    if (!this._insideAux) this._printAuxAfterComment();\n\t  };\n\n\t  Printer.prototype._printAuxBeforeComment = function _printAuxBeforeComment() {\n\t    if (this._printAuxAfterOnNextUserNode) return;\n\t    this._printAuxAfterOnNextUserNode = true;\n\n\t    var comment = this.format.auxiliaryCommentBefore;\n\t    if (comment) {\n\t      this._printComment({\n\t        type: \"CommentBlock\",\n\t        value: comment\n\t      });\n\t    }\n\t  };\n\n\t  Printer.prototype._printAuxAfterComment = function _printAuxAfterComment() {\n\t    if (!this._printAuxAfterOnNextUserNode) return;\n\t    this._printAuxAfterOnNextUserNode = false;\n\n\t    var comment = this.format.auxiliaryCommentAfter;\n\t    if (comment) {\n\t      this._printComment({\n\t        type: \"CommentBlock\",\n\t        value: comment\n\t      });\n\t    }\n\t  };\n\n\t  Printer.prototype.getPossibleRaw = function getPossibleRaw(node) {\n\t    var extra = node.extra;\n\t    if (extra && extra.raw != null && extra.rawValue != null && node.value === extra.rawValue) {\n\t      return extra.raw;\n\t    }\n\t  };\n\n\t  Printer.prototype.printJoin = function printJoin(nodes, parent) {\n\t    var opts = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n\t    if (!nodes || !nodes.length) return;\n\n\t    if (opts.indent) this.indent();\n\n\t    var newlineOpts = {\n\t      addNewlines: opts.addNewlines\n\t    };\n\n\t    for (var i = 0; i < nodes.length; i++) {\n\t      var node = nodes[i];\n\t      if (!node) continue;\n\n\t      if (opts.statement) this._printNewline(true, node, parent, newlineOpts);\n\n\t      this.print(node, parent);\n\n\t      if (opts.iterator) {\n\t        opts.iterator(node, i);\n\t      }\n\n\t      if (opts.separator && i < nodes.length - 1) {\n\t        opts.separator.call(this);\n\t      }\n\n\t      if (opts.statement) this._printNewline(false, node, parent, newlineOpts);\n\t    }\n\n\t    if (opts.indent) this.dedent();\n\t  };\n\n\t  Printer.prototype.printAndIndentOnComments = function printAndIndentOnComments(node, parent) {\n\t    var indent = !!node.leadingComments;\n\t    if (indent) this.indent();\n\t    this.print(node, parent);\n\t    if (indent) this.dedent();\n\t  };\n\n\t  Printer.prototype.printBlock = function printBlock(parent) {\n\t    var node = parent.body;\n\n\t    if (!t.isEmptyStatement(node)) {\n\t      this.space();\n\t    }\n\n\t    this.print(node, parent);\n\t  };\n\n\t  Printer.prototype._printTrailingComments = function _printTrailingComments(node, parent) {\n\t    this._printComments(this._getComments(false, node, parent));\n\t  };\n\n\t  Printer.prototype._printLeadingComments = function _printLeadingComments(node, parent) {\n\t    this._printComments(this._getComments(true, node, parent));\n\t  };\n\n\t  Printer.prototype.printInnerComments = function printInnerComments(node) {\n\t    var indent = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;\n\n\t    if (!node.innerComments) return;\n\t    if (indent) this.indent();\n\t    this._printComments(node.innerComments);\n\t    if (indent) this.dedent();\n\t  };\n\n\t  Printer.prototype.printSequence = function printSequence(nodes, parent) {\n\t    var opts = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n\t    opts.statement = true;\n\t    return this.printJoin(nodes, parent, opts);\n\t  };\n\n\t  Printer.prototype.printList = function printList(items, parent) {\n\t    var opts = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n\t    if (opts.separator == null) {\n\t      opts.separator = commaSeparator;\n\t    }\n\n\t    return this.printJoin(items, parent, opts);\n\t  };\n\n\t  Printer.prototype._printNewline = function _printNewline(leading, node, parent, opts) {\n\t    var _this2 = this;\n\n\t    if (this.format.retainLines || this.format.compact) return;\n\n\t    if (this.format.concise) {\n\t      this.space();\n\t      return;\n\t    }\n\n\t    var lines = 0;\n\n\t    if (node.start != null && !node._ignoreUserWhitespace && this._whitespace) {\n\t      if (leading) {\n\t        var _comments = node.leadingComments;\n\t        var _comment = _comments && (0, _find2.default)(_comments, function (comment) {\n\t          return !!comment.loc && _this2.format.shouldPrintComment(comment.value);\n\t        });\n\n\t        lines = this._whitespace.getNewlinesBefore(_comment || node);\n\t      } else {\n\t        var _comments2 = node.trailingComments;\n\t        var _comment2 = _comments2 && (0, _findLast2.default)(_comments2, function (comment) {\n\t          return !!comment.loc && _this2.format.shouldPrintComment(comment.value);\n\t        });\n\n\t        lines = this._whitespace.getNewlinesAfter(_comment2 || node);\n\t      }\n\t    } else {\n\t      if (!leading) lines++;\n\t      if (opts.addNewlines) lines += opts.addNewlines(leading, node) || 0;\n\n\t      var needs = n.needsWhitespaceAfter;\n\t      if (leading) needs = n.needsWhitespaceBefore;\n\t      if (needs(node, parent)) lines++;\n\n\t      if (!this._buf.hasContent()) lines = 0;\n\t    }\n\n\t    this.newline(lines);\n\t  };\n\n\t  Printer.prototype._getComments = function _getComments(leading, node) {\n\t    return node && (leading ? node.leadingComments : node.trailingComments) || [];\n\t  };\n\n\t  Printer.prototype._printComment = function _printComment(comment) {\n\t    var _this3 = this;\n\n\t    if (!this.format.shouldPrintComment(comment.value)) return;\n\n\t    if (comment.ignore) return;\n\n\t    if (this._printedComments.has(comment)) return;\n\t    this._printedComments.add(comment);\n\n\t    if (comment.start != null) {\n\t      if (this._printedCommentStarts[comment.start]) return;\n\t      this._printedCommentStarts[comment.start] = true;\n\t    }\n\n\t    this.newline(this._whitespace ? this._whitespace.getNewlinesBefore(comment) : 0);\n\n\t    if (!this.endsWith(\"[\") && !this.endsWith(\"{\")) this.space();\n\n\t    var val = comment.type === \"CommentLine\" ? \"//\" + comment.value + \"\\n\" : \"/*\" + comment.value + \"*/\";\n\n\t    if (comment.type === \"CommentBlock\" && this.format.indent.adjustMultilineComment) {\n\t      var offset = comment.loc && comment.loc.start.column;\n\t      if (offset) {\n\t        var newlineRegex = new RegExp(\"\\\\n\\\\s{1,\" + offset + \"}\", \"g\");\n\t        val = val.replace(newlineRegex, \"\\n\");\n\t      }\n\n\t      var indentSize = Math.max(this._getIndent().length, this._buf.getCurrentColumn());\n\t      val = val.replace(/\\n(?!$)/g, \"\\n\" + (0, _repeat2.default)(\" \", indentSize));\n\t    }\n\n\t    this.withSource(\"start\", comment.loc, function () {\n\t      _this3._append(val);\n\t    });\n\n\t    this.newline((this._whitespace ? this._whitespace.getNewlinesAfter(comment) : 0) + (comment.type === \"CommentLine\" ? -1 : 0));\n\t  };\n\n\t  Printer.prototype._printComments = function _printComments(comments) {\n\t    if (!comments || !comments.length) return;\n\n\t    for (var _iterator = comments, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var _comment3 = _ref;\n\n\t      this._printComment(_comment3);\n\t    }\n\t  };\n\n\t  return Printer;\n\t}();\n\n\texports.default = Printer;\n\n\tfunction commaSeparator() {\n\t  this.token(\",\");\n\t  this.space();\n\t}\n\n\tvar _arr = [__webpack_require__(309), __webpack_require__(303), __webpack_require__(308), __webpack_require__(302), __webpack_require__(306), __webpack_require__(307), __webpack_require__(123), __webpack_require__(304), __webpack_require__(301), __webpack_require__(305)];\n\tfor (var _i2 = 0; _i2 < _arr.length; _i2++) {\n\t  var generator = _arr[_i2];\n\t  (0, _assign2.default)(Printer.prototype, generator);\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 313 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _sourceMap = __webpack_require__(288);\n\n\tvar _sourceMap2 = _interopRequireDefault(_sourceMap);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar SourceMap = function () {\n\t  function SourceMap(opts, code) {\n\t    (0, _classCallCheck3.default)(this, SourceMap);\n\n\t    this._cachedMap = null;\n\t    this._code = code;\n\t    this._opts = opts;\n\t    this._rawMappings = [];\n\t  }\n\n\t  SourceMap.prototype.get = function get() {\n\t    if (!this._cachedMap) {\n\t      var map = this._cachedMap = new _sourceMap2.default.SourceMapGenerator({\n\t        file: this._opts.sourceMapTarget,\n\t        sourceRoot: this._opts.sourceRoot\n\t      });\n\n\t      var code = this._code;\n\t      if (typeof code === \"string\") {\n\t        map.setSourceContent(this._opts.sourceFileName, code);\n\t      } else if ((typeof code === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(code)) === \"object\") {\n\t        (0, _keys2.default)(code).forEach(function (sourceFileName) {\n\t          map.setSourceContent(sourceFileName, code[sourceFileName]);\n\t        });\n\t      }\n\n\t      this._rawMappings.forEach(map.addMapping, map);\n\t    }\n\n\t    return this._cachedMap.toJSON();\n\t  };\n\n\t  SourceMap.prototype.getRawMappings = function getRawMappings() {\n\t    return this._rawMappings.slice();\n\t  };\n\n\t  SourceMap.prototype.mark = function mark(generatedLine, generatedColumn, line, column, identifierName, filename) {\n\t    if (this._lastGenLine !== generatedLine && line === null) return;\n\n\t    if (this._lastGenLine === generatedLine && this._lastSourceLine === line && this._lastSourceColumn === column) {\n\t      return;\n\t    }\n\n\t    this._cachedMap = null;\n\t    this._lastGenLine = generatedLine;\n\t    this._lastSourceLine = line;\n\t    this._lastSourceColumn = column;\n\n\t    this._rawMappings.push({\n\t      name: identifierName || undefined,\n\t      generated: {\n\t        line: generatedLine,\n\t        column: generatedColumn\n\t      },\n\t      source: line == null ? undefined : filename || this._opts.sourceFileName,\n\t      original: line == null ? undefined : {\n\t        line: line,\n\t        column: column\n\t      }\n\t    });\n\t  };\n\n\t  return SourceMap;\n\t}();\n\n\texports.default = SourceMap;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 314 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar Whitespace = function () {\n\t  function Whitespace(tokens) {\n\t    (0, _classCallCheck3.default)(this, Whitespace);\n\n\t    this.tokens = tokens;\n\t    this.used = {};\n\t  }\n\n\t  Whitespace.prototype.getNewlinesBefore = function getNewlinesBefore(node) {\n\t    var startToken = void 0;\n\t    var endToken = void 0;\n\t    var tokens = this.tokens;\n\n\t    var index = this._findToken(function (token) {\n\t      return token.start - node.start;\n\t    }, 0, tokens.length);\n\t    if (index >= 0) {\n\t      while (index && node.start === tokens[index - 1].start) {\n\t        --index;\n\t      }startToken = tokens[index - 1];\n\t      endToken = tokens[index];\n\t    }\n\n\t    return this._getNewlinesBetween(startToken, endToken);\n\t  };\n\n\t  Whitespace.prototype.getNewlinesAfter = function getNewlinesAfter(node) {\n\t    var startToken = void 0;\n\t    var endToken = void 0;\n\t    var tokens = this.tokens;\n\n\t    var index = this._findToken(function (token) {\n\t      return token.end - node.end;\n\t    }, 0, tokens.length);\n\t    if (index >= 0) {\n\t      while (index && node.end === tokens[index - 1].end) {\n\t        --index;\n\t      }startToken = tokens[index];\n\t      endToken = tokens[index + 1];\n\t      if (endToken.type.label === \",\") endToken = tokens[index + 2];\n\t    }\n\n\t    if (endToken && endToken.type.label === \"eof\") {\n\t      return 1;\n\t    } else {\n\t      return this._getNewlinesBetween(startToken, endToken);\n\t    }\n\t  };\n\n\t  Whitespace.prototype._getNewlinesBetween = function _getNewlinesBetween(startToken, endToken) {\n\t    if (!endToken || !endToken.loc) return 0;\n\n\t    var start = startToken ? startToken.loc.end.line : 1;\n\t    var end = endToken.loc.start.line;\n\t    var lines = 0;\n\n\t    for (var line = start; line < end; line++) {\n\t      if (typeof this.used[line] === \"undefined\") {\n\t        this.used[line] = true;\n\t        lines++;\n\t      }\n\t    }\n\n\t    return lines;\n\t  };\n\n\t  Whitespace.prototype._findToken = function _findToken(test, start, end) {\n\t    if (start >= end) return -1;\n\t    var middle = start + end >>> 1;\n\t    var match = test(this.tokens[middle]);\n\t    if (match < 0) {\n\t      return this._findToken(test, middle + 1, end);\n\t    } else if (match > 0) {\n\t      return this._findToken(test, start, middle);\n\t    } else if (match === 0) {\n\t      return middle;\n\t    }\n\t    return -1;\n\t  };\n\n\t  return Whitespace;\n\t}();\n\n\texports.default = Whitespace;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 315 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = bindifyDecorators;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction bindifyDecorators(decorators) {\n\t  for (var _iterator = decorators, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var decoratorPath = _ref;\n\n\t    var decorator = decoratorPath.node;\n\t    var expression = decorator.expression;\n\t    if (!t.isMemberExpression(expression)) continue;\n\n\t    var temp = decoratorPath.scope.maybeGenerateMemoised(expression.object);\n\t    var ref = void 0;\n\n\t    var nodes = [];\n\n\t    if (temp) {\n\t      ref = temp;\n\t      nodes.push(t.assignmentExpression(\"=\", temp, expression.object));\n\t    } else {\n\t      ref = expression.object;\n\t    }\n\n\t    nodes.push(t.callExpression(t.memberExpression(t.memberExpression(ref, expression.property, expression.computed), t.identifier(\"bind\")), [ref]));\n\n\t    if (nodes.length === 1) {\n\t      decorator.expression = nodes[0];\n\t    } else {\n\t      decorator.expression = t.sequenceExpression(nodes);\n\t    }\n\t  }\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 316 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (opts) {\n\t  var visitor = {};\n\n\t  function isAssignment(node) {\n\t    return node && node.operator === opts.operator + \"=\";\n\t  }\n\n\t  function buildAssignment(left, right) {\n\t    return t.assignmentExpression(\"=\", left, right);\n\t  }\n\n\t  visitor.ExpressionStatement = function (path, file) {\n\t    if (path.isCompletionRecord()) return;\n\n\t    var expr = path.node.expression;\n\t    if (!isAssignment(expr)) return;\n\n\t    var nodes = [];\n\t    var exploded = (0, _babelHelperExplodeAssignableExpression2.default)(expr.left, nodes, file, path.scope, true);\n\n\t    nodes.push(t.expressionStatement(buildAssignment(exploded.ref, opts.build(exploded.uid, expr.right))));\n\n\t    path.replaceWithMultiple(nodes);\n\t  };\n\n\t  visitor.AssignmentExpression = function (path, file) {\n\t    var node = path.node,\n\t        scope = path.scope;\n\n\t    if (!isAssignment(node)) return;\n\n\t    var nodes = [];\n\t    var exploded = (0, _babelHelperExplodeAssignableExpression2.default)(node.left, nodes, file, scope);\n\t    nodes.push(buildAssignment(exploded.ref, opts.build(exploded.uid, node.right)));\n\t    path.replaceWithMultiple(nodes);\n\t  };\n\n\t  visitor.BinaryExpression = function (path) {\n\t    var node = path.node;\n\n\t    if (node.operator === opts.operator) {\n\t      path.replaceWith(opts.build(node.left, node.right));\n\t    }\n\t  };\n\n\t  return visitor;\n\t};\n\n\tvar _babelHelperExplodeAssignableExpression = __webpack_require__(318);\n\n\tvar _babelHelperExplodeAssignableExpression2 = _interopRequireDefault(_babelHelperExplodeAssignableExpression);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 317 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (path) {\n\t  var scope = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : path.scope;\n\t  var node = path.node;\n\n\t  var container = t.functionExpression(null, [], node.body, node.generator, node.async);\n\n\t  var callee = container;\n\t  var args = [];\n\n\t  (0, _babelHelperHoistVariables2.default)(path, function (id) {\n\t    return scope.push({ id: id });\n\t  });\n\n\t  var state = {\n\t    foundThis: false,\n\t    foundArguments: false\n\t  };\n\n\t  path.traverse(visitor, state);\n\n\t  if (state.foundArguments) {\n\t    callee = t.memberExpression(container, t.identifier(\"apply\"));\n\t    args = [];\n\n\t    if (state.foundThis) {\n\t      args.push(t.thisExpression());\n\t    }\n\n\t    if (state.foundArguments) {\n\t      if (!state.foundThis) args.push(t.nullLiteral());\n\t      args.push(t.identifier(\"arguments\"));\n\t    }\n\t  }\n\n\t  var call = t.callExpression(callee, args);\n\t  if (node.generator) call = t.yieldExpression(call, true);\n\n\t  return t.returnStatement(call);\n\t};\n\n\tvar _babelHelperHoistVariables = __webpack_require__(190);\n\n\tvar _babelHelperHoistVariables2 = _interopRequireDefault(_babelHelperHoistVariables);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar visitor = {\n\t  enter: function enter(path, state) {\n\t    if (path.isThisExpression()) {\n\t      state.foundThis = true;\n\t    }\n\n\t    if (path.isReferencedIdentifier({ name: \"arguments\" })) {\n\t      state.foundArguments = true;\n\t    }\n\t  },\n\t  Function: function Function(path) {\n\t    path.skip();\n\t  }\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 318 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (node, nodes, file, scope, allowedSingleIdent) {\n\t  var obj = void 0;\n\t  if (t.isIdentifier(node) && allowedSingleIdent) {\n\t    obj = node;\n\t  } else {\n\t    obj = getObjRef(node, nodes, file, scope);\n\t  }\n\n\t  var ref = void 0,\n\t      uid = void 0;\n\n\t  if (t.isIdentifier(node)) {\n\t    ref = node;\n\t    uid = obj;\n\t  } else {\n\t    var prop = getPropRef(node, nodes, file, scope);\n\t    var computed = node.computed || t.isLiteral(prop);\n\t    uid = ref = t.memberExpression(obj, prop, computed);\n\t  }\n\n\t  return {\n\t    uid: uid,\n\t    ref: ref\n\t  };\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction getObjRef(node, nodes, file, scope) {\n\t  var ref = void 0;\n\t  if (t.isSuper(node)) {\n\t    return node;\n\t  } else if (t.isIdentifier(node)) {\n\t    if (scope.hasBinding(node.name)) {\n\t      return node;\n\t    } else {\n\t      ref = node;\n\t    }\n\t  } else if (t.isMemberExpression(node)) {\n\t    ref = node.object;\n\n\t    if (t.isSuper(ref) || t.isIdentifier(ref) && scope.hasBinding(ref.name)) {\n\t      return ref;\n\t    }\n\t  } else {\n\t    throw new Error(\"We can't explode this node type \" + node.type);\n\t  }\n\n\t  var temp = scope.generateUidIdentifierBasedOnNode(ref);\n\t  nodes.push(t.variableDeclaration(\"var\", [t.variableDeclarator(temp, ref)]));\n\t  return temp;\n\t}\n\n\tfunction getPropRef(node, nodes, file, scope) {\n\t  var prop = node.property;\n\t  var key = t.toComputedKey(node, prop);\n\t  if (t.isLiteral(key) && t.isPureish(key)) return key;\n\n\t  var temp = scope.generateUidIdentifierBasedOnNode(prop);\n\t  nodes.push(t.variableDeclaration(\"var\", [t.variableDeclarator(temp, prop)]));\n\t  return temp;\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 319 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (classPath) {\n\t  classPath.assertClass();\n\n\t  var memoisedExpressions = [];\n\n\t  function maybeMemoise(path) {\n\t    if (!path.node || path.isPure()) return;\n\n\t    var uid = classPath.scope.generateDeclaredUidIdentifier();\n\t    memoisedExpressions.push(t.assignmentExpression(\"=\", uid, path.node));\n\t    path.replaceWith(uid);\n\t  }\n\n\t  function memoiseDecorators(paths) {\n\t    if (!Array.isArray(paths) || !paths.length) return;\n\n\t    paths = paths.reverse();\n\n\t    (0, _babelHelperBindifyDecorators2.default)(paths);\n\n\t    for (var _iterator = paths, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var path = _ref;\n\n\t      maybeMemoise(path);\n\t    }\n\t  }\n\n\t  maybeMemoise(classPath.get(\"superClass\"));\n\t  memoiseDecorators(classPath.get(\"decorators\"), true);\n\n\t  var methods = classPath.get(\"body.body\");\n\t  for (var _iterator2 = methods, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t    var _ref2;\n\n\t    if (_isArray2) {\n\t      if (_i2 >= _iterator2.length) break;\n\t      _ref2 = _iterator2[_i2++];\n\t    } else {\n\t      _i2 = _iterator2.next();\n\t      if (_i2.done) break;\n\t      _ref2 = _i2.value;\n\t    }\n\n\t    var methodPath = _ref2;\n\n\t    if (methodPath.is(\"computed\")) {\n\t      maybeMemoise(methodPath.get(\"key\"));\n\t    }\n\n\t    if (methodPath.has(\"decorators\")) {\n\t      memoiseDecorators(classPath.get(\"decorators\"));\n\t    }\n\t  }\n\n\t  if (memoisedExpressions) {\n\t    classPath.insertBefore(memoisedExpressions.map(function (expr) {\n\t      return t.expressionStatement(expr);\n\t    }));\n\t  }\n\t};\n\n\tvar _babelHelperBindifyDecorators = __webpack_require__(315);\n\n\tvar _babelHelperBindifyDecorators2 = _interopRequireDefault(_babelHelperBindifyDecorators);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 320 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (path, helpers) {\n\t  var node = path.node,\n\t      scope = path.scope,\n\t      parent = path.parent;\n\n\t  var stepKey = scope.generateUidIdentifier(\"step\");\n\t  var stepValue = scope.generateUidIdentifier(\"value\");\n\t  var left = node.left;\n\t  var declar = void 0;\n\n\t  if (t.isIdentifier(left) || t.isPattern(left) || t.isMemberExpression(left)) {\n\t    declar = t.expressionStatement(t.assignmentExpression(\"=\", left, stepValue));\n\t  } else if (t.isVariableDeclaration(left)) {\n\t    declar = t.variableDeclaration(left.kind, [t.variableDeclarator(left.declarations[0].id, stepValue)]);\n\t  }\n\n\t  var template = buildForAwait();\n\n\t  (0, _babelTraverse2.default)(template, forAwaitVisitor, null, {\n\t    ITERATOR_HAD_ERROR_KEY: scope.generateUidIdentifier(\"didIteratorError\"),\n\t    ITERATOR_COMPLETION: scope.generateUidIdentifier(\"iteratorNormalCompletion\"),\n\t    ITERATOR_ERROR_KEY: scope.generateUidIdentifier(\"iteratorError\"),\n\t    ITERATOR_KEY: scope.generateUidIdentifier(\"iterator\"),\n\t    GET_ITERATOR: helpers.getAsyncIterator,\n\t    OBJECT: node.right,\n\t    STEP_VALUE: stepValue,\n\t    STEP_KEY: stepKey,\n\t    AWAIT: helpers.wrapAwait\n\t  });\n\n\t  template = template.body.body;\n\n\t  var isLabeledParent = t.isLabeledStatement(parent);\n\t  var tryBody = template[3].block.body;\n\t  var loop = tryBody[0];\n\n\t  if (isLabeledParent) {\n\t    tryBody[0] = t.labeledStatement(parent.label, loop);\n\t  }\n\n\t  return {\n\t    replaceParent: isLabeledParent,\n\t    node: template,\n\t    declar: declar,\n\t    loop: loop\n\t  };\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelTraverse2 = _interopRequireDefault(_babelTraverse);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tvar buildForAwait = (0, _babelTemplate2.default)(\"\\n  function* wrapper() {\\n    var ITERATOR_COMPLETION = true;\\n    var ITERATOR_HAD_ERROR_KEY = false;\\n    var ITERATOR_ERROR_KEY = undefined;\\n    try {\\n      for (\\n        var ITERATOR_KEY = GET_ITERATOR(OBJECT), STEP_KEY, STEP_VALUE;\\n        (\\n          STEP_KEY = yield AWAIT(ITERATOR_KEY.next()),\\n          ITERATOR_COMPLETION = STEP_KEY.done,\\n          STEP_VALUE = yield AWAIT(STEP_KEY.value),\\n          !ITERATOR_COMPLETION\\n        );\\n        ITERATOR_COMPLETION = true) {\\n      }\\n    } catch (err) {\\n      ITERATOR_HAD_ERROR_KEY = true;\\n      ITERATOR_ERROR_KEY = err;\\n    } finally {\\n      try {\\n        if (!ITERATOR_COMPLETION && ITERATOR_KEY.return) {\\n          yield AWAIT(ITERATOR_KEY.return());\\n        }\\n      } finally {\\n        if (ITERATOR_HAD_ERROR_KEY) {\\n          throw ITERATOR_ERROR_KEY;\\n        }\\n      }\\n    }\\n  }\\n\");\n\n\tvar forAwaitVisitor = {\n\t  noScope: true,\n\n\t  Identifier: function Identifier(path, replacements) {\n\t    if (path.node.name in replacements) {\n\t      path.replaceInline(replacements[path.node.name]);\n\t    }\n\t  },\n\t  CallExpression: function CallExpression(path, replacements) {\n\t    var callee = path.node.callee;\n\n\t    if (t.isIdentifier(callee) && callee.name === \"AWAIT\" && !replacements.AWAIT) {\n\t      path.replaceWith(path.node.arguments[0]);\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 321 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar helpers = {};\n\texports.default = helpers;\n\n\thelpers.typeof = (0, _babelTemplate2.default)(\"\\n  (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\")\\n    ? function (obj) { return typeof obj; }\\n    : function (obj) {\\n        return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype\\n          ? \\\"symbol\\\"\\n          : typeof obj;\\n      };\\n\");\n\n\thelpers.jsx = (0, _babelTemplate2.default)(\"\\n  (function () {\\n    var REACT_ELEMENT_TYPE = (typeof Symbol === \\\"function\\\" && Symbol.for && Symbol.for(\\\"react.element\\\")) || 0xeac7;\\n\\n    return function createRawReactElement (type, props, key, children) {\\n      var defaultProps = type && type.defaultProps;\\n      var childrenLength = arguments.length - 3;\\n\\n      if (!props && childrenLength !== 0) {\\n        // If we're going to assign props.children, we create a new object now\\n        // to avoid mutating defaultProps.\\n        props = {};\\n      }\\n      if (props && defaultProps) {\\n        for (var propName in defaultProps) {\\n          if (props[propName] === void 0) {\\n            props[propName] = defaultProps[propName];\\n          }\\n        }\\n      } else if (!props) {\\n        props = defaultProps || {};\\n      }\\n\\n      if (childrenLength === 1) {\\n        props.children = children;\\n      } else if (childrenLength > 1) {\\n        var childArray = Array(childrenLength);\\n        for (var i = 0; i < childrenLength; i++) {\\n          childArray[i] = arguments[i + 3];\\n        }\\n        props.children = childArray;\\n      }\\n\\n      return {\\n        $$typeof: REACT_ELEMENT_TYPE,\\n        type: type,\\n        key: key === undefined ? null : '' + key,\\n        ref: null,\\n        props: props,\\n        _owner: null,\\n      };\\n    };\\n\\n  })()\\n\");\n\n\thelpers.asyncIterator = (0, _babelTemplate2.default)(\"\\n  (function (iterable) {\\n    if (typeof Symbol === \\\"function\\\") {\\n      if (Symbol.asyncIterator) {\\n        var method = iterable[Symbol.asyncIterator];\\n        if (method != null) return method.call(iterable);\\n      }\\n      if (Symbol.iterator) {\\n        return iterable[Symbol.iterator]();\\n      }\\n    }\\n    throw new TypeError(\\\"Object is not async iterable\\\");\\n  })\\n\");\n\n\thelpers.asyncGenerator = (0, _babelTemplate2.default)(\"\\n  (function () {\\n    function AwaitValue(value) {\\n      this.value = value;\\n    }\\n\\n    function AsyncGenerator(gen) {\\n      var front, back;\\n\\n      function send(key, arg) {\\n        return new Promise(function (resolve, reject) {\\n          var request = {\\n            key: key,\\n            arg: arg,\\n            resolve: resolve,\\n            reject: reject,\\n            next: null\\n          };\\n\\n          if (back) {\\n            back = back.next = request;\\n          } else {\\n            front = back = request;\\n            resume(key, arg);\\n          }\\n        });\\n      }\\n\\n      function resume(key, arg) {\\n        try {\\n          var result = gen[key](arg)\\n          var value = result.value;\\n          if (value instanceof AwaitValue) {\\n            Promise.resolve(value.value).then(\\n              function (arg) { resume(\\\"next\\\", arg); },\\n              function (arg) { resume(\\\"throw\\\", arg); });\\n          } else {\\n            settle(result.done ? \\\"return\\\" : \\\"normal\\\", result.value);\\n          }\\n        } catch (err) {\\n          settle(\\\"throw\\\", err);\\n        }\\n      }\\n\\n      function settle(type, value) {\\n        switch (type) {\\n          case \\\"return\\\":\\n            front.resolve({ value: value, done: true });\\n            break;\\n          case \\\"throw\\\":\\n            front.reject(value);\\n            break;\\n          default:\\n            front.resolve({ value: value, done: false });\\n            break;\\n        }\\n\\n        front = front.next;\\n        if (front) {\\n          resume(front.key, front.arg);\\n        } else {\\n          back = null;\\n        }\\n      }\\n\\n      this._invoke = send;\\n\\n      // Hide \\\"return\\\" method if generator return is not supported\\n      if (typeof gen.return !== \\\"function\\\") {\\n        this.return = undefined;\\n      }\\n    }\\n\\n    if (typeof Symbol === \\\"function\\\" && Symbol.asyncIterator) {\\n      AsyncGenerator.prototype[Symbol.asyncIterator] = function () { return this; };\\n    }\\n\\n    AsyncGenerator.prototype.next = function (arg) { return this._invoke(\\\"next\\\", arg); };\\n    AsyncGenerator.prototype.throw = function (arg) { return this._invoke(\\\"throw\\\", arg); };\\n    AsyncGenerator.prototype.return = function (arg) { return this._invoke(\\\"return\\\", arg); };\\n\\n    return {\\n      wrap: function (fn) {\\n        return function () {\\n          return new AsyncGenerator(fn.apply(this, arguments));\\n        };\\n      },\\n      await: function (value) {\\n        return new AwaitValue(value);\\n      }\\n    };\\n\\n  })()\\n\");\n\n\thelpers.asyncGeneratorDelegate = (0, _babelTemplate2.default)(\"\\n  (function (inner, awaitWrap) {\\n    var iter = {}, waiting = false;\\n\\n    function pump(key, value) {\\n      waiting = true;\\n      value = new Promise(function (resolve) { resolve(inner[key](value)); });\\n      return { done: false, value: awaitWrap(value) };\\n    };\\n\\n    if (typeof Symbol === \\\"function\\\" && Symbol.iterator) {\\n      iter[Symbol.iterator] = function () { return this; };\\n    }\\n\\n    iter.next = function (value) {\\n      if (waiting) {\\n        waiting = false;\\n        return value;\\n      }\\n      return pump(\\\"next\\\", value);\\n    };\\n\\n    if (typeof inner.throw === \\\"function\\\") {\\n      iter.throw = function (value) {\\n        if (waiting) {\\n          waiting = false;\\n          throw value;\\n        }\\n        return pump(\\\"throw\\\", value);\\n      };\\n    }\\n\\n    if (typeof inner.return === \\\"function\\\") {\\n      iter.return = function (value) {\\n        return pump(\\\"return\\\", value);\\n      };\\n    }\\n\\n    return iter;\\n  })\\n\");\n\n\thelpers.asyncToGenerator = (0, _babelTemplate2.default)(\"\\n  (function (fn) {\\n    return function () {\\n      var gen = fn.apply(this, arguments);\\n      return new Promise(function (resolve, reject) {\\n        function step(key, arg) {\\n          try {\\n            var info = gen[key](arg);\\n            var value = info.value;\\n          } catch (error) {\\n            reject(error);\\n            return;\\n          }\\n\\n          if (info.done) {\\n            resolve(value);\\n          } else {\\n            return Promise.resolve(value).then(function (value) {\\n              step(\\\"next\\\", value);\\n            }, function (err) {\\n              step(\\\"throw\\\", err);\\n            });\\n          }\\n        }\\n\\n        return step(\\\"next\\\");\\n      });\\n    };\\n  })\\n\");\n\n\thelpers.classCallCheck = (0, _babelTemplate2.default)(\"\\n  (function (instance, Constructor) {\\n    if (!(instance instanceof Constructor)) {\\n      throw new TypeError(\\\"Cannot call a class as a function\\\");\\n    }\\n  });\\n\");\n\n\thelpers.createClass = (0, _babelTemplate2.default)(\"\\n  (function() {\\n    function defineProperties(target, props) {\\n      for (var i = 0; i < props.length; i ++) {\\n        var descriptor = props[i];\\n        descriptor.enumerable = descriptor.enumerable || false;\\n        descriptor.configurable = true;\\n        if (\\\"value\\\" in descriptor) descriptor.writable = true;\\n        Object.defineProperty(target, descriptor.key, descriptor);\\n      }\\n    }\\n\\n    return function (Constructor, protoProps, staticProps) {\\n      if (protoProps) defineProperties(Constructor.prototype, protoProps);\\n      if (staticProps) defineProperties(Constructor, staticProps);\\n      return Constructor;\\n    };\\n  })()\\n\");\n\n\thelpers.defineEnumerableProperties = (0, _babelTemplate2.default)(\"\\n  (function (obj, descs) {\\n    for (var key in descs) {\\n      var desc = descs[key];\\n      desc.configurable = desc.enumerable = true;\\n      if (\\\"value\\\" in desc) desc.writable = true;\\n      Object.defineProperty(obj, key, desc);\\n    }\\n    return obj;\\n  })\\n\");\n\n\thelpers.defaults = (0, _babelTemplate2.default)(\"\\n  (function (obj, defaults) {\\n    var keys = Object.getOwnPropertyNames(defaults);\\n    for (var i = 0; i < keys.length; i++) {\\n      var key = keys[i];\\n      var value = Object.getOwnPropertyDescriptor(defaults, key);\\n      if (value && value.configurable && obj[key] === undefined) {\\n        Object.defineProperty(obj, key, value);\\n      }\\n    }\\n    return obj;\\n  })\\n\");\n\n\thelpers.defineProperty = (0, _babelTemplate2.default)(\"\\n  (function (obj, key, value) {\\n    // Shortcircuit the slow defineProperty path when possible.\\n    // We are trying to avoid issues where setters defined on the\\n    // prototype cause side effects under the fast path of simple\\n    // assignment. By checking for existence of the property with\\n    // the in operator, we can optimize most of this overhead away.\\n    if (key in obj) {\\n      Object.defineProperty(obj, key, {\\n        value: value,\\n        enumerable: true,\\n        configurable: true,\\n        writable: true\\n      });\\n    } else {\\n      obj[key] = value;\\n    }\\n    return obj;\\n  });\\n\");\n\n\thelpers.extends = (0, _babelTemplate2.default)(\"\\n  Object.assign || (function (target) {\\n    for (var i = 1; i < arguments.length; i++) {\\n      var source = arguments[i];\\n      for (var key in source) {\\n        if (Object.prototype.hasOwnProperty.call(source, key)) {\\n          target[key] = source[key];\\n        }\\n      }\\n    }\\n    return target;\\n  })\\n\");\n\n\thelpers.get = (0, _babelTemplate2.default)(\"\\n  (function get(object, property, receiver) {\\n    if (object === null) object = Function.prototype;\\n\\n    var desc = Object.getOwnPropertyDescriptor(object, property);\\n\\n    if (desc === undefined) {\\n      var parent = Object.getPrototypeOf(object);\\n\\n      if (parent === null) {\\n        return undefined;\\n      } else {\\n        return get(parent, property, receiver);\\n      }\\n    } else if (\\\"value\\\" in desc) {\\n      return desc.value;\\n    } else {\\n      var getter = desc.get;\\n\\n      if (getter === undefined) {\\n        return undefined;\\n      }\\n\\n      return getter.call(receiver);\\n    }\\n  });\\n\");\n\n\thelpers.inherits = (0, _babelTemplate2.default)(\"\\n  (function (subClass, superClass) {\\n    if (typeof superClass !== \\\"function\\\" && superClass !== null) {\\n      throw new TypeError(\\\"Super expression must either be null or a function, not \\\" + typeof superClass);\\n    }\\n    subClass.prototype = Object.create(superClass && superClass.prototype, {\\n      constructor: {\\n        value: subClass,\\n        enumerable: false,\\n        writable: true,\\n        configurable: true\\n      }\\n    });\\n    if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;\\n  })\\n\");\n\n\thelpers.instanceof = (0, _babelTemplate2.default)(\"\\n  (function (left, right) {\\n    if (right != null && typeof Symbol !== \\\"undefined\\\" && right[Symbol.hasInstance]) {\\n      return right[Symbol.hasInstance](left);\\n    } else {\\n      return left instanceof right;\\n    }\\n  });\\n\");\n\n\thelpers.interopRequireDefault = (0, _babelTemplate2.default)(\"\\n  (function (obj) {\\n    return obj && obj.__esModule ? obj : { default: obj };\\n  })\\n\");\n\n\thelpers.interopRequireWildcard = (0, _babelTemplate2.default)(\"\\n  (function (obj) {\\n    if (obj && obj.__esModule) {\\n      return obj;\\n    } else {\\n      var newObj = {};\\n      if (obj != null) {\\n        for (var key in obj) {\\n          if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\\n        }\\n      }\\n      newObj.default = obj;\\n      return newObj;\\n    }\\n  })\\n\");\n\n\thelpers.newArrowCheck = (0, _babelTemplate2.default)(\"\\n  (function (innerThis, boundThis) {\\n    if (innerThis !== boundThis) {\\n      throw new TypeError(\\\"Cannot instantiate an arrow function\\\");\\n    }\\n  });\\n\");\n\n\thelpers.objectDestructuringEmpty = (0, _babelTemplate2.default)(\"\\n  (function (obj) {\\n    if (obj == null) throw new TypeError(\\\"Cannot destructure undefined\\\");\\n  });\\n\");\n\n\thelpers.objectWithoutProperties = (0, _babelTemplate2.default)(\"\\n  (function (obj, keys) {\\n    var target = {};\\n    for (var i in obj) {\\n      if (keys.indexOf(i) >= 0) continue;\\n      if (!Object.prototype.hasOwnProperty.call(obj, i)) continue;\\n      target[i] = obj[i];\\n    }\\n    return target;\\n  })\\n\");\n\n\thelpers.possibleConstructorReturn = (0, _babelTemplate2.default)(\"\\n  (function (self, call) {\\n    if (!self) {\\n      throw new ReferenceError(\\\"this hasn't been initialised - super() hasn't been called\\\");\\n    }\\n    return call && (typeof call === \\\"object\\\" || typeof call === \\\"function\\\") ? call : self;\\n  });\\n\");\n\n\thelpers.selfGlobal = (0, _babelTemplate2.default)(\"\\n  typeof global === \\\"undefined\\\" ? self : global\\n\");\n\n\thelpers.set = (0, _babelTemplate2.default)(\"\\n  (function set(object, property, value, receiver) {\\n    var desc = Object.getOwnPropertyDescriptor(object, property);\\n\\n    if (desc === undefined) {\\n      var parent = Object.getPrototypeOf(object);\\n\\n      if (parent !== null) {\\n        set(parent, property, value, receiver);\\n      }\\n    } else if (\\\"value\\\" in desc && desc.writable) {\\n      desc.value = value;\\n    } else {\\n      var setter = desc.set;\\n\\n      if (setter !== undefined) {\\n        setter.call(receiver, value);\\n      }\\n    }\\n\\n    return value;\\n  });\\n\");\n\n\thelpers.slicedToArray = (0, _babelTemplate2.default)(\"\\n  (function () {\\n    // Broken out into a separate function to avoid deoptimizations due to the try/catch for the\\n    // array iterator case.\\n    function sliceIterator(arr, i) {\\n      // this is an expanded form of `for...of` that properly supports abrupt completions of\\n      // iterators etc. variable names have been minimised to reduce the size of this massive\\n      // helper. sometimes spec compliancy is annoying :(\\n      //\\n      // _n = _iteratorNormalCompletion\\n      // _d = _didIteratorError\\n      // _e = _iteratorError\\n      // _i = _iterator\\n      // _s = _step\\n\\n      var _arr = [];\\n      var _n = true;\\n      var _d = false;\\n      var _e = undefined;\\n      try {\\n        for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {\\n          _arr.push(_s.value);\\n          if (i && _arr.length === i) break;\\n        }\\n      } catch (err) {\\n        _d = true;\\n        _e = err;\\n      } finally {\\n        try {\\n          if (!_n && _i[\\\"return\\\"]) _i[\\\"return\\\"]();\\n        } finally {\\n          if (_d) throw _e;\\n        }\\n      }\\n      return _arr;\\n    }\\n\\n    return function (arr, i) {\\n      if (Array.isArray(arr)) {\\n        return arr;\\n      } else if (Symbol.iterator in Object(arr)) {\\n        return sliceIterator(arr, i);\\n      } else {\\n        throw new TypeError(\\\"Invalid attempt to destructure non-iterable instance\\\");\\n      }\\n    };\\n  })();\\n\");\n\n\thelpers.slicedToArrayLoose = (0, _babelTemplate2.default)(\"\\n  (function (arr, i) {\\n    if (Array.isArray(arr)) {\\n      return arr;\\n    } else if (Symbol.iterator in Object(arr)) {\\n      var _arr = [];\\n      for (var _iterator = arr[Symbol.iterator](), _step; !(_step = _iterator.next()).done;) {\\n        _arr.push(_step.value);\\n        if (i && _arr.length === i) break;\\n      }\\n      return _arr;\\n    } else {\\n      throw new TypeError(\\\"Invalid attempt to destructure non-iterable instance\\\");\\n    }\\n  });\\n\");\n\n\thelpers.taggedTemplateLiteral = (0, _babelTemplate2.default)(\"\\n  (function (strings, raw) {\\n    return Object.freeze(Object.defineProperties(strings, {\\n        raw: { value: Object.freeze(raw) }\\n    }));\\n  });\\n\");\n\n\thelpers.taggedTemplateLiteralLoose = (0, _babelTemplate2.default)(\"\\n  (function (strings, raw) {\\n    strings.raw = raw;\\n    return strings;\\n  });\\n\");\n\n\thelpers.temporalRef = (0, _babelTemplate2.default)(\"\\n  (function (val, name, undef) {\\n    if (val === undef) {\\n      throw new ReferenceError(name + \\\" is not defined - temporal dead zone\\\");\\n    } else {\\n      return val;\\n    }\\n  })\\n\");\n\n\thelpers.temporalUndefined = (0, _babelTemplate2.default)(\"\\n  ({})\\n\");\n\n\thelpers.toArray = (0, _babelTemplate2.default)(\"\\n  (function (arr) {\\n    return Array.isArray(arr) ? arr : Array.from(arr);\\n  });\\n\");\n\n\thelpers.toConsumableArray = (0, _babelTemplate2.default)(\"\\n  (function (arr) {\\n    if (Array.isArray(arr)) {\\n      for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i];\\n      return arr2;\\n    } else {\\n      return Array.from(arr);\\n    }\\n  });\\n\");\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 322 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    pre: function pre(file) {\n\t      file.set(\"helpersNamespace\", t.identifier(\"babelHelpers\"));\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 323 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Created at 16/5/18.\n\t * @Author Ling.\n\t * @Email i@zeroling.com\n\t */\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar babylon = __webpack_require__(89);\n\n\tmodule.exports = function (babel) {\n\t  var t = babel.types;\n\t  // cache for performance\n\t  var parseMap = {};\n\n\t  return {\n\t    visitor: {\n\t      Identifier: function Identifier(path, state) {\n\t        if (path.parent.type === 'MemberExpression') {\n\t          return;\n\t        }\n\t        if (path.parent.type === 'ClassMethod') {\n\t          return;\n\t        }\n\t        if (path.isPure()) {\n\t          return;\n\t        }\n\t        if (!state.opts.hasOwnProperty(path.node.name)) {\n\t          return;\n\t        }\n\t        var replacementDescriptor = state.opts[path.node.name];\n\t        if (replacementDescriptor === undefined || replacementDescriptor === null) {\n\t          replacementDescriptor = t.identifier(String(replacementDescriptor));\n\t        }\n\n\t        var type = typeof replacementDescriptor === 'undefined' ? 'undefined' : _typeof(replacementDescriptor);\n\t        if (type === 'string' || type === 'boolean') {\n\t          replacementDescriptor = {\n\t            type: type,\n\t            replacement: replacementDescriptor\n\t          };\n\t        } else if (t.isNode(replacementDescriptor)) {\n\t          replacementDescriptor = {\n\t            type: 'node',\n\t            replacement: replacementDescriptor\n\t          };\n\t        } else if (type === 'object' && replacementDescriptor.type === 'node' && typeof replacementDescriptor.replacement === 'string') {\n\t          replacementDescriptor.replacement = parseMap[replacementDescriptor.replacement] ? parseMap[replacementDescriptor.replacement] : babylon.parseExpression(replacementDescriptor.replacement);\n\t        }\n\n\t        var replacement = replacementDescriptor.replacement;\n\t        switch (replacementDescriptor.type) {\n\t          case 'boolean':\n\t            path.replaceWith(t.booleanLiteral(replacement));\n\t            break;\n\t          case 'node':\n\t            if (t.isNode(replacement)) {\n\t              path.replaceWith(replacement);\n\t            }\n\t            break;\n\t          default:\n\t            // treat as string\n\t            var str = String(replacement);\n\t            path.replaceWith(t.stringLiteral(str));\n\t            break;\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n/***/ }),\n/* 324 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"dynamicImport\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 325 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"functionSent\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 326 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    inherits: __webpack_require__(67)\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 327 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var yieldStarVisitor = {\n\t    Function: function Function(path) {\n\t      path.skip();\n\t    },\n\t    YieldExpression: function YieldExpression(_ref2, state) {\n\t      var node = _ref2.node;\n\n\t      if (!node.delegate) return;\n\t      var callee = state.addHelper(\"asyncGeneratorDelegate\");\n\t      node.argument = t.callExpression(callee, [t.callExpression(state.addHelper(\"asyncIterator\"), [node.argument]), t.memberExpression(state.addHelper(\"asyncGenerator\"), t.identifier(\"await\"))]);\n\t    }\n\t  };\n\n\t  return {\n\t    inherits: __webpack_require__(195),\n\t    visitor: {\n\t      Function: function Function(path, state) {\n\t        if (!path.node.async || !path.node.generator) return;\n\n\t        path.traverse(yieldStarVisitor, state);\n\n\t        (0, _babelHelperRemapAsyncToGenerator2.default)(path, state.file, {\n\t          wrapAsync: t.memberExpression(state.addHelper(\"asyncGenerator\"), t.identifier(\"wrap\")),\n\t          wrapAwait: t.memberExpression(state.addHelper(\"asyncGenerator\"), t.identifier(\"await\"))\n\t        });\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperRemapAsyncToGenerator = __webpack_require__(124);\n\n\tvar _babelHelperRemapAsyncToGenerator2 = _interopRequireDefault(_babelHelperRemapAsyncToGenerator);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 328 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    inherits: __webpack_require__(67),\n\n\t    visitor: {\n\t      Function: function Function(path, state) {\n\t        if (!path.node.async || path.node.generator) return;\n\n\t        (0, _babelHelperRemapAsyncToGenerator2.default)(path, state.file, {\n\t          wrapAsync: state.addImport(state.opts.module, state.opts.method)\n\t        });\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperRemapAsyncToGenerator = __webpack_require__(124);\n\n\tvar _babelHelperRemapAsyncToGenerator2 = _interopRequireDefault(_babelHelperRemapAsyncToGenerator);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 329 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t    value: true\n\t});\n\n\texports.default = function (_ref) {\n\t    var t = _ref.types;\n\n\t    /**\n\t     * Add a helper to take an initial descriptor, apply some decorators to it, and optionally\n\t     * define the property.\n\t     */\n\t    function ensureApplyDecoratedDescriptorHelper(path, state) {\n\t        if (!state.applyDecoratedDescriptor) {\n\t            state.applyDecoratedDescriptor = path.scope.generateUidIdentifier('applyDecoratedDescriptor');\n\t            var helper = buildApplyDecoratedDescriptor({\n\t                NAME: state.applyDecoratedDescriptor\n\t            });\n\t            path.scope.getProgramParent().path.unshiftContainer('body', helper);\n\t        }\n\n\t        return state.applyDecoratedDescriptor;\n\t    }\n\n\t    /**\n\t     * Add a helper to call as a replacement for class property definition.\n\t     */\n\t    function ensureInitializerDefineProp(path, state) {\n\t        if (!state.initializerDefineProp) {\n\t            state.initializerDefineProp = path.scope.generateUidIdentifier('initDefineProp');\n\t            var helper = buildInitializerDefineProperty({\n\t                NAME: state.initializerDefineProp\n\t            });\n\t            path.scope.getProgramParent().path.unshiftContainer('body', helper);\n\t        }\n\n\t        return state.initializerDefineProp;\n\t    }\n\n\t    /**\n\t     * Add a helper that will throw a useful error if the transform fails to detect the class\n\t     * property assignment, so users know something failed.\n\t     */\n\t    function ensureInitializerWarning(path, state) {\n\t        if (!state.initializerWarningHelper) {\n\t            state.initializerWarningHelper = path.scope.generateUidIdentifier('initializerWarningHelper');\n\t            var helper = buildInitializerWarningHelper({\n\t                NAME: state.initializerWarningHelper\n\t            });\n\t            path.scope.getProgramParent().path.unshiftContainer('body', helper);\n\t        }\n\n\t        return state.initializerWarningHelper;\n\t    }\n\n\t    /**\n\t     * If the decorator expressions are non-identifiers, hoist them to before the class so we can be sure\n\t     * that they are evaluated in order.\n\t     */\n\t    function applyEnsureOrdering(path) {\n\t        // TODO: This should probably also hoist computed properties.\n\t        var decorators = (path.isClass() ? [path].concat(path.get('body.body')) : path.get('properties')).reduce(function (acc, prop) {\n\t            return acc.concat(prop.node.decorators || []);\n\t        }, []);\n\n\t        var identDecorators = decorators.filter(function (decorator) {\n\t            return !t.isIdentifier(decorator.expression);\n\t        });\n\t        if (identDecorators.length === 0) return;\n\n\t        return t.sequenceExpression(identDecorators.map(function (decorator) {\n\t            var expression = decorator.expression;\n\t            var id = decorator.expression = path.scope.generateDeclaredUidIdentifier('dec');\n\t            return t.assignmentExpression('=', id, expression);\n\t        }).concat([path.node]));\n\t    }\n\n\t    /**\n\t     * Given a class expression with class-level decorators, create a new expression\n\t     * with the proper decorated behavior.\n\t     */\n\t    function applyClassDecorators(classPath, state) {\n\t        var decorators = classPath.node.decorators || [];\n\t        classPath.node.decorators = null;\n\n\t        if (decorators.length === 0) return;\n\n\t        var name = classPath.scope.generateDeclaredUidIdentifier('class');\n\n\t        return decorators.map(function (dec) {\n\t            return dec.expression;\n\t        }).reverse().reduce(function (acc, decorator) {\n\t            return buildClassDecorator({\n\t                CLASS_REF: name,\n\t                DECORATOR: decorator,\n\t                INNER: acc\n\t            }).expression;\n\t        }, classPath.node);\n\t    }\n\n\t    /**\n\t     * Given a class expression with method-level decorators, create a new expression\n\t     * with the proper decorated behavior.\n\t     */\n\t    function applyMethodDecorators(path, state) {\n\t        var hasMethodDecorators = path.node.body.body.some(function (node) {\n\t            return (node.decorators || []).length > 0;\n\t        });\n\n\t        if (!hasMethodDecorators) return;\n\n\t        return applyTargetDecorators(path, state, path.node.body.body);\n\t    }\n\n\t    /**\n\t     * Given an object expression with property decorators, create a new expression\n\t     * with the proper decorated behavior.\n\t     */\n\t    function applyObjectDecorators(path, state) {\n\t        var hasMethodDecorators = path.node.properties.some(function (node) {\n\t            return (node.decorators || []).length > 0;\n\t        });\n\n\t        if (!hasMethodDecorators) return;\n\n\t        return applyTargetDecorators(path, state, path.node.properties);\n\t    }\n\n\t    /**\n\t     * A helper to pull out property decorators into a sequence expression.\n\t     */\n\t    function applyTargetDecorators(path, state, decoratedProps) {\n\t        var descName = path.scope.generateDeclaredUidIdentifier('desc');\n\t        var valueTemp = path.scope.generateDeclaredUidIdentifier('value');\n\n\t        var name = path.scope.generateDeclaredUidIdentifier(path.isClass() ? 'class' : 'obj');\n\n\t        var exprs = decoratedProps.reduce(function (acc, node) {\n\t            var decorators = node.decorators || [];\n\t            node.decorators = null;\n\n\t            if (decorators.length === 0) return acc;\n\n\t            if (node.computed) {\n\t                throw path.buildCodeFrameError('Computed method/property decorators are not yet supported.');\n\t            }\n\n\t            var property = t.isLiteral(node.key) ? node.key : t.stringLiteral(node.key.name);\n\n\t            var target = path.isClass() && !node.static ? buildClassPrototype({\n\t                CLASS_REF: name\n\t            }).expression : name;\n\n\t            if (t.isClassProperty(node, { static: false })) {\n\t                var descriptor = path.scope.generateDeclaredUidIdentifier('descriptor');\n\n\t                var initializer = node.value ? t.functionExpression(null, [], t.blockStatement([t.returnStatement(node.value)])) : t.nullLiteral();\n\t                node.value = t.callExpression(ensureInitializerWarning(path, state), [descriptor, t.thisExpression()]);\n\n\t                acc = acc.concat([t.assignmentExpression('=', descriptor, t.callExpression(ensureApplyDecoratedDescriptorHelper(path, state), [target, property, t.arrayExpression(decorators.map(function (dec) {\n\t                    return dec.expression;\n\t                })), t.objectExpression([t.objectProperty(t.identifier('enumerable'), t.booleanLiteral(true)), t.objectProperty(t.identifier('initializer'), initializer)])]))]);\n\t            } else {\n\t                acc = acc.concat(t.callExpression(ensureApplyDecoratedDescriptorHelper(path, state), [target, property, t.arrayExpression(decorators.map(function (dec) {\n\t                    return dec.expression;\n\t                })), t.isObjectProperty(node) || t.isClassProperty(node, { static: true }) ? buildGetObjectInitializer({\n\t                    TEMP: path.scope.generateDeclaredUidIdentifier('init'),\n\t                    TARGET: target,\n\t                    PROPERTY: property\n\t                }).expression : buildGetDescriptor({\n\t                    TARGET: target,\n\t                    PROPERTY: property\n\t                }).expression, target]));\n\t            }\n\n\t            return acc;\n\t        }, []);\n\n\t        return t.sequenceExpression([t.assignmentExpression('=', name, path.node), t.sequenceExpression(exprs), name]);\n\t    }\n\n\t    return {\n\t        inherits: __webpack_require__(125),\n\n\t        visitor: {\n\t            ExportDefaultDeclaration: function ExportDefaultDeclaration(path) {\n\t                if (!path.get(\"declaration\").isClassDeclaration()) return;\n\n\t                var node = path.node;\n\n\t                var ref = node.declaration.id || path.scope.generateUidIdentifier(\"default\");\n\t                node.declaration.id = ref;\n\n\t                // Split the class declaration and the export into two separate statements.\n\t                path.replaceWith(node.declaration);\n\t                path.insertAfter(t.exportNamedDeclaration(null, [t.exportSpecifier(ref, t.identifier('default'))]));\n\t            },\n\t            ClassDeclaration: function ClassDeclaration(path) {\n\t                var node = path.node;\n\n\t                var ref = node.id || path.scope.generateUidIdentifier(\"class\");\n\n\t                path.replaceWith(t.variableDeclaration(\"let\", [t.variableDeclarator(ref, t.toExpression(node))]));\n\t            },\n\t            ClassExpression: function ClassExpression(path, state) {\n\t                // Create a replacement for the class node if there is one. We do one pass to replace classes with\n\t                // class decorators, and a second pass to process method decorators.\n\t                var decoratedClass = applyEnsureOrdering(path) || applyClassDecorators(path, state) || applyMethodDecorators(path, state);\n\n\t                if (decoratedClass) path.replaceWith(decoratedClass);\n\t            },\n\t            ObjectExpression: function ObjectExpression(path, state) {\n\t                var decoratedObject = applyEnsureOrdering(path) || applyObjectDecorators(path, state);\n\n\t                if (decoratedObject) path.replaceWith(decoratedObject);\n\t            },\n\t            AssignmentExpression: function AssignmentExpression(path, state) {\n\t                if (!state.initializerWarningHelper) return;\n\n\t                if (!path.get('left').isMemberExpression()) return;\n\t                if (!path.get('left.property').isIdentifier()) return;\n\t                if (!path.get('right').isCallExpression()) return;\n\t                if (!path.get('right.callee').isIdentifier({ name: state.initializerWarningHelper.name })) return;\n\n\t                path.replaceWith(t.callExpression(ensureInitializerDefineProp(path, state), [path.get('left.object').node, t.stringLiteral(path.get('left.property').node.name), path.get('right.arguments')[0].node, path.get('right.arguments')[1].node]));\n\t            }\n\t        }\n\t    };\n\t};\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t    return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildClassDecorator = (0, _babelTemplate2.default)('\\n  DECORATOR(CLASS_REF = INNER) || CLASS_REF;\\n');\n\n\tvar buildClassPrototype = (0, _babelTemplate2.default)('\\n  CLASS_REF.prototype;\\n');\n\n\tvar buildGetDescriptor = (0, _babelTemplate2.default)('\\n    Object.getOwnPropertyDescriptor(TARGET, PROPERTY);\\n');\n\n\tvar buildGetObjectInitializer = (0, _babelTemplate2.default)('\\n    (TEMP = Object.getOwnPropertyDescriptor(TARGET, PROPERTY), (TEMP = TEMP ? TEMP.value : undefined), {\\n        enumerable: true,\\n        configurable: true,\\n        writable: true,\\n        initializer: function(){\\n            return TEMP;\\n        }\\n    })\\n');\n\n\tvar buildInitializerWarningHelper = (0, _babelTemplate2.default)('\\n    function NAME(descriptor, context){\\n        throw new Error(\\'Decorating class property failed. Please ensure that transform-class-properties is enabled.\\');\\n    }\\n');\n\n\tvar buildInitializerDefineProperty = (0, _babelTemplate2.default)('\\n    function NAME(target, property, descriptor, context){\\n        if (!descriptor) return;\\n\\n        Object.defineProperty(target, property, {\\n            enumerable: descriptor.enumerable,\\n            configurable: descriptor.configurable,\\n            writable: descriptor.writable,\\n            value: descriptor.initializer ? descriptor.initializer.call(context) : void 0,\\n        });\\n    }\\n');\n\n\tvar buildApplyDecoratedDescriptor = (0, _babelTemplate2.default)('\\n    function NAME(target, property, decorators, descriptor, context){\\n        var desc = {};\\n        Object[\\'ke\\' + \\'ys\\'](descriptor).forEach(function(key){\\n            desc[key] = descriptor[key];\\n        });\\n        desc.enumerable = !!desc.enumerable;\\n        desc.configurable = !!desc.configurable;\\n        if (\\'value\\' in desc || desc.initializer){\\n            desc.writable = true;\\n        }\\n\\n        desc = decorators.slice().reverse().reduce(function(desc, decorator){\\n            return decorator(target, property, desc) || desc;\\n        }, desc);\\n\\n        if (context && desc.initializer !== void 0){\\n            desc.value = desc.initializer ? desc.initializer.call(context) : void 0;\\n            desc.initializer = undefined;\\n        }\\n\\n        if (desc.initializer === void 0){\\n            // This is a hack to avoid this being processed by \\'transform-runtime\\'.\\n            // See issue #9.\\n            Object[\\'define\\' + \\'Property\\'](target, property, desc);\\n            desc = null;\\n        }\\n\\n        return desc;\\n    }\\n');\n\n\t;\n\n/***/ }),\n/* 330 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.visitor = undefined;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction getTDZStatus(refPath, bindingPath) {\n\t  var executionStatus = bindingPath._guessExecutionStatusRelativeTo(refPath);\n\n\t  if (executionStatus === \"before\") {\n\t    return \"inside\";\n\t  } else if (executionStatus === \"after\") {\n\t    return \"outside\";\n\t  } else {\n\t    return \"maybe\";\n\t  }\n\t}\n\n\tfunction buildTDZAssert(node, file) {\n\t  return t.callExpression(file.addHelper(\"temporalRef\"), [node, t.stringLiteral(node.name), file.addHelper(\"temporalUndefined\")]);\n\t}\n\n\tfunction isReference(node, scope, state) {\n\t  var declared = state.letReferences[node.name];\n\t  if (!declared) return false;\n\n\t  return scope.getBindingIdentifier(node.name) === declared;\n\t}\n\n\tvar visitor = exports.visitor = {\n\t  ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t    if (!this.file.opts.tdz) return;\n\n\t    var node = path.node,\n\t        parent = path.parent,\n\t        scope = path.scope;\n\n\t    if (path.parentPath.isFor({ left: node })) return;\n\t    if (!isReference(node, scope, state)) return;\n\n\t    var bindingPath = scope.getBinding(node.name).path;\n\n\t    var status = getTDZStatus(path, bindingPath);\n\t    if (status === \"inside\") return;\n\n\t    if (status === \"maybe\") {\n\t      var assert = buildTDZAssert(node, state.file);\n\n\t      bindingPath.parent._tdzThis = true;\n\n\t      path.skip();\n\n\t      if (path.parentPath.isUpdateExpression()) {\n\t        if (parent._ignoreBlockScopingTDZ) return;\n\t        path.parentPath.replaceWith(t.sequenceExpression([assert, parent]));\n\t      } else {\n\t        path.replaceWith(assert);\n\t      }\n\t    } else if (status === \"outside\") {\n\t      path.replaceWith(t.throwStatement(t.inherits(t.newExpression(t.identifier(\"ReferenceError\"), [t.stringLiteral(node.name + \" is not defined - temporal dead zone\")]), node)));\n\t    }\n\t  },\n\n\t  AssignmentExpression: {\n\t    exit: function exit(path, state) {\n\t      if (!this.file.opts.tdz) return;\n\n\t      var node = path.node;\n\n\t      if (node._ignoreBlockScopingTDZ) return;\n\n\t      var nodes = [];\n\t      var ids = path.getBindingIdentifiers();\n\n\t      for (var name in ids) {\n\t        var id = ids[name];\n\n\t        if (isReference(id, path.scope, state)) {\n\t          nodes.push(buildTDZAssert(id, state.file));\n\t        }\n\t      }\n\n\t      if (nodes.length) {\n\t        node._ignoreBlockScopingTDZ = true;\n\t        nodes.push(node);\n\t        path.replaceWithMultiple(nodes.map(t.expressionStatement));\n\t      }\n\t    }\n\t  }\n\t};\n\n/***/ }),\n/* 331 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _possibleConstructorReturn2 = __webpack_require__(42);\n\n\tvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\n\tvar _inherits2 = __webpack_require__(41);\n\n\tvar _inherits3 = _interopRequireDefault(_inherits2);\n\n\tvar _babelHelperFunctionName = __webpack_require__(40);\n\n\tvar _babelHelperFunctionName2 = _interopRequireDefault(_babelHelperFunctionName);\n\n\tvar _vanilla = __webpack_require__(207);\n\n\tvar _vanilla2 = _interopRequireDefault(_vanilla);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar LooseClassTransformer = function (_VanillaTransformer) {\n\t  (0, _inherits3.default)(LooseClassTransformer, _VanillaTransformer);\n\n\t  function LooseClassTransformer() {\n\t    (0, _classCallCheck3.default)(this, LooseClassTransformer);\n\n\t    var _this = (0, _possibleConstructorReturn3.default)(this, _VanillaTransformer.apply(this, arguments));\n\n\t    _this.isLoose = true;\n\t    return _this;\n\t  }\n\n\t  LooseClassTransformer.prototype._processMethod = function _processMethod(node, scope) {\n\t    if (!node.decorators) {\n\n\t      var classRef = this.classRef;\n\t      if (!node.static) classRef = t.memberExpression(classRef, t.identifier(\"prototype\"));\n\t      var methodName = t.memberExpression(classRef, node.key, node.computed || t.isLiteral(node.key));\n\n\t      var func = t.functionExpression(null, node.params, node.body, node.generator, node.async);\n\t      func.returnType = node.returnType;\n\t      var key = t.toComputedKey(node, node.key);\n\t      if (t.isStringLiteral(key)) {\n\t        func = (0, _babelHelperFunctionName2.default)({\n\t          node: func,\n\t          id: key,\n\t          scope: scope\n\t        });\n\t      }\n\n\t      var expr = t.expressionStatement(t.assignmentExpression(\"=\", methodName, func));\n\t      t.inheritsComments(expr, node);\n\t      this.body.push(expr);\n\t      return true;\n\t    }\n\t  };\n\n\t  return LooseClassTransformer;\n\t}(_vanilla2.default);\n\n\texports.default = LooseClassTransformer;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 332 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    visitor: {\n\t      BinaryExpression: function BinaryExpression(path) {\n\t        var node = path.node;\n\n\t        if (node.operator === \"instanceof\") {\n\t          path.replaceWith(t.callExpression(this.addHelper(\"instanceof\"), [node.left, node.right]));\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 333 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.visitor = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _babelHelperGetFunctionArity = __webpack_require__(189);\n\n\tvar _babelHelperGetFunctionArity2 = _interopRequireDefault(_babelHelperGetFunctionArity);\n\n\tvar _babelHelperCallDelegate = __webpack_require__(317);\n\n\tvar _babelHelperCallDelegate2 = _interopRequireDefault(_babelHelperCallDelegate);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildDefaultParam = (0, _babelTemplate2.default)(\"\\n  let VARIABLE_NAME =\\n    ARGUMENTS.length > ARGUMENT_KEY && ARGUMENTS[ARGUMENT_KEY] !== undefined ?\\n      ARGUMENTS[ARGUMENT_KEY]\\n    :\\n      DEFAULT_VALUE;\\n\");\n\n\tvar buildCutOff = (0, _babelTemplate2.default)(\"\\n  let $0 = $1[$2];\\n\");\n\n\tfunction hasDefaults(node) {\n\t  for (var _iterator = node.params, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var param = _ref;\n\n\t    if (!t.isIdentifier(param)) return true;\n\t  }\n\t  return false;\n\t}\n\n\tfunction isSafeBinding(scope, node) {\n\t  if (!scope.hasOwnBinding(node.name)) return true;\n\n\t  var _scope$getOwnBinding = scope.getOwnBinding(node.name),\n\t      kind = _scope$getOwnBinding.kind;\n\n\t  return kind === \"param\" || kind === \"local\";\n\t}\n\n\tvar iifeVisitor = {\n\t  ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t    var scope = path.scope,\n\t        node = path.node;\n\n\t    if (node.name === \"eval\" || !isSafeBinding(scope, node)) {\n\t      state.iife = true;\n\t      path.stop();\n\t    }\n\t  },\n\t  Scope: function Scope(path) {\n\t    path.skip();\n\t  }\n\t};\n\n\tvar visitor = exports.visitor = {\n\t  Function: function Function(path) {\n\t    var node = path.node,\n\t        scope = path.scope;\n\n\t    if (!hasDefaults(node)) return;\n\n\t    path.ensureBlock();\n\n\t    var state = {\n\t      iife: false,\n\t      scope: scope\n\t    };\n\n\t    var body = [];\n\n\t    var argsIdentifier = t.identifier(\"arguments\");\n\t    argsIdentifier._shadowedFunctionLiteral = path;\n\n\t    function pushDefNode(left, right, i) {\n\t      var defNode = buildDefaultParam({\n\t        VARIABLE_NAME: left,\n\t        DEFAULT_VALUE: right,\n\t        ARGUMENT_KEY: t.numericLiteral(i),\n\t        ARGUMENTS: argsIdentifier\n\t      });\n\t      defNode._blockHoist = node.params.length - i;\n\t      body.push(defNode);\n\t    }\n\n\t    var lastNonDefaultParam = (0, _babelHelperGetFunctionArity2.default)(node);\n\n\t    var params = path.get(\"params\");\n\t    for (var i = 0; i < params.length; i++) {\n\t      var param = params[i];\n\n\t      if (!param.isAssignmentPattern()) {\n\t        if (!state.iife && !param.isIdentifier()) {\n\t          param.traverse(iifeVisitor, state);\n\t        }\n\n\t        continue;\n\t      }\n\n\t      var left = param.get(\"left\");\n\t      var right = param.get(\"right\");\n\n\t      if (i >= lastNonDefaultParam || left.isPattern()) {\n\t        var placeholder = scope.generateUidIdentifier(\"x\");\n\t        placeholder._isDefaultPlaceholder = true;\n\t        node.params[i] = placeholder;\n\t      } else {\n\t        node.params[i] = left.node;\n\t      }\n\n\t      if (!state.iife) {\n\t        if (right.isIdentifier() && !isSafeBinding(scope, right.node)) {\n\t          state.iife = true;\n\t        } else {\n\t          right.traverse(iifeVisitor, state);\n\t        }\n\t      }\n\n\t      pushDefNode(left.node, right.node, i);\n\t    }\n\n\t    for (var _i2 = lastNonDefaultParam + 1; _i2 < node.params.length; _i2++) {\n\t      var _param = node.params[_i2];\n\t      if (_param._isDefaultPlaceholder) continue;\n\n\t      var declar = buildCutOff(_param, argsIdentifier, t.numericLiteral(_i2));\n\t      declar._blockHoist = node.params.length - _i2;\n\t      body.push(declar);\n\t    }\n\n\t    node.params = node.params.slice(0, lastNonDefaultParam);\n\n\t    if (state.iife) {\n\t      body.push((0, _babelHelperCallDelegate2.default)(path, scope));\n\t      path.set(\"body\", t.blockStatement(body));\n\t    } else {\n\t      path.get(\"body\").unshiftContainer(\"body\", body);\n\t    }\n\t  }\n\t};\n\n/***/ }),\n/* 334 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.visitor = undefined;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tvar visitor = exports.visitor = {\n\t  Function: function Function(path) {\n\t    var params = path.get(\"params\");\n\n\t    var hoistTweak = t.isRestElement(params[params.length - 1]) ? 1 : 0;\n\t    var outputParamsLength = params.length - hoistTweak;\n\n\t    for (var i = 0; i < outputParamsLength; i++) {\n\t      var param = params[i];\n\t      if (param.isArrayPattern() || param.isObjectPattern()) {\n\t        var uid = path.scope.generateUidIdentifier(\"ref\");\n\n\t        var declar = t.variableDeclaration(\"let\", [t.variableDeclarator(param.node, uid)]);\n\t        declar._blockHoist = outputParamsLength - i;\n\n\t        path.ensureBlock();\n\t        path.get(\"body\").unshiftContainer(\"body\", declar);\n\n\t        param.replaceWith(uid);\n\t      }\n\t    }\n\t  }\n\t};\n\n/***/ }),\n/* 335 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.visitor = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildRest = (0, _babelTemplate2.default)(\"\\n  for (var LEN = ARGUMENTS.length,\\n           ARRAY = Array(ARRAY_LEN),\\n           KEY = START;\\n       KEY < LEN;\\n       KEY++) {\\n    ARRAY[ARRAY_KEY] = ARGUMENTS[KEY];\\n  }\\n\");\n\n\tvar restIndex = (0, _babelTemplate2.default)(\"\\n  ARGUMENTS.length <= INDEX ? undefined : ARGUMENTS[INDEX]\\n\");\n\n\tvar restIndexImpure = (0, _babelTemplate2.default)(\"\\n  REF = INDEX, ARGUMENTS.length <= REF ? undefined : ARGUMENTS[REF]\\n\");\n\n\tvar restLength = (0, _babelTemplate2.default)(\"\\n  ARGUMENTS.length <= OFFSET ? 0 : ARGUMENTS.length - OFFSET\\n\");\n\n\tvar memberExpressionOptimisationVisitor = {\n\t  Scope: function Scope(path, state) {\n\t    if (!path.scope.bindingIdentifierEquals(state.name, state.outerBinding)) {\n\t      path.skip();\n\t    }\n\t  },\n\t  Flow: function Flow(path) {\n\t    if (path.isTypeCastExpression()) return;\n\n\t    path.skip();\n\t  },\n\n\t  \"Function|ClassProperty\": function FunctionClassProperty(path, state) {\n\t    var oldNoOptimise = state.noOptimise;\n\t    state.noOptimise = true;\n\t    path.traverse(memberExpressionOptimisationVisitor, state);\n\t    state.noOptimise = oldNoOptimise;\n\n\t    path.skip();\n\t  },\n\n\t  ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t    var node = path.node;\n\n\t    if (node.name === \"arguments\") {\n\t      state.deopted = true;\n\t    }\n\n\t    if (node.name !== state.name) return;\n\n\t    if (state.noOptimise) {\n\t      state.deopted = true;\n\t    } else {\n\t      var parentPath = path.parentPath;\n\n\t      if (parentPath.listKey === \"params\" && parentPath.key < state.offset) {\n\t        return;\n\t      }\n\n\t      if (parentPath.isMemberExpression({ object: node })) {\n\t        var grandparentPath = parentPath.parentPath;\n\n\t        var argsOptEligible = !state.deopted && !(grandparentPath.isAssignmentExpression() && parentPath.node === grandparentPath.node.left || grandparentPath.isLVal() || grandparentPath.isForXStatement() || grandparentPath.isUpdateExpression() || grandparentPath.isUnaryExpression({ operator: \"delete\" }) || (grandparentPath.isCallExpression() || grandparentPath.isNewExpression()) && parentPath.node === grandparentPath.node.callee);\n\n\t        if (argsOptEligible) {\n\t          if (parentPath.node.computed) {\n\t            if (parentPath.get(\"property\").isBaseType(\"number\")) {\n\t              state.candidates.push({ cause: \"indexGetter\", path: path });\n\t              return;\n\t            }\n\t          } else if (parentPath.node.property.name === \"length\") {\n\t            state.candidates.push({ cause: \"lengthGetter\", path: path });\n\t            return;\n\t          }\n\t        }\n\t      }\n\n\t      if (state.offset === 0 && parentPath.isSpreadElement()) {\n\t        var call = parentPath.parentPath;\n\t        if (call.isCallExpression() && call.node.arguments.length === 1) {\n\t          state.candidates.push({ cause: \"argSpread\", path: path });\n\t          return;\n\t        }\n\t      }\n\n\t      state.references.push(path);\n\t    }\n\t  },\n\t  BindingIdentifier: function BindingIdentifier(_ref, state) {\n\t    var node = _ref.node;\n\n\t    if (node.name === state.name) {\n\t      state.deopted = true;\n\t    }\n\t  }\n\t};\n\tfunction hasRest(node) {\n\t  return t.isRestElement(node.params[node.params.length - 1]);\n\t}\n\n\tfunction optimiseIndexGetter(path, argsId, offset) {\n\t  var index = void 0;\n\n\t  if (t.isNumericLiteral(path.parent.property)) {\n\t    index = t.numericLiteral(path.parent.property.value + offset);\n\t  } else if (offset === 0) {\n\t    index = path.parent.property;\n\t  } else {\n\t    index = t.binaryExpression(\"+\", path.parent.property, t.numericLiteral(offset));\n\t  }\n\n\t  var scope = path.scope;\n\n\t  if (!scope.isPure(index)) {\n\t    var temp = scope.generateUidIdentifierBasedOnNode(index);\n\t    scope.push({ id: temp, kind: \"var\" });\n\t    path.parentPath.replaceWith(restIndexImpure({\n\t      ARGUMENTS: argsId,\n\t      INDEX: index,\n\t      REF: temp\n\t    }));\n\t  } else {\n\t    path.parentPath.replaceWith(restIndex({\n\t      ARGUMENTS: argsId,\n\t      INDEX: index\n\t    }));\n\t  }\n\t}\n\n\tfunction optimiseLengthGetter(path, argsId, offset) {\n\t  if (offset) {\n\t    path.parentPath.replaceWith(restLength({\n\t      ARGUMENTS: argsId,\n\t      OFFSET: t.numericLiteral(offset)\n\t    }));\n\t  } else {\n\t    path.replaceWith(argsId);\n\t  }\n\t}\n\n\tvar visitor = exports.visitor = {\n\t  Function: function Function(path) {\n\t    var node = path.node,\n\t        scope = path.scope;\n\n\t    if (!hasRest(node)) return;\n\n\t    var rest = node.params.pop().argument;\n\n\t    var argsId = t.identifier(\"arguments\");\n\n\t    argsId._shadowedFunctionLiteral = path;\n\n\t    var state = {\n\t      references: [],\n\t      offset: node.params.length,\n\n\t      argumentsNode: argsId,\n\t      outerBinding: scope.getBindingIdentifier(rest.name),\n\n\t      candidates: [],\n\n\t      name: rest.name,\n\n\t      deopted: false\n\t    };\n\n\t    path.traverse(memberExpressionOptimisationVisitor, state);\n\n\t    if (!state.deopted && !state.references.length) {\n\t      for (var _iterator = state.candidates, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref3;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref3 = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref3 = _i.value;\n\t        }\n\n\t        var _ref4 = _ref3;\n\t        var _path = _ref4.path,\n\t            cause = _ref4.cause;\n\n\t        switch (cause) {\n\t          case \"indexGetter\":\n\t            optimiseIndexGetter(_path, argsId, state.offset);\n\t            break;\n\t          case \"lengthGetter\":\n\t            optimiseLengthGetter(_path, argsId, state.offset);\n\t            break;\n\t          default:\n\t            _path.replaceWith(argsId);\n\t        }\n\t      }\n\t      return;\n\t    }\n\n\t    state.references = state.references.concat(state.candidates.map(function (_ref5) {\n\t      var path = _ref5.path;\n\t      return path;\n\t    }));\n\n\t    state.deopted = state.deopted || !!node.shadow;\n\n\t    var start = t.numericLiteral(node.params.length);\n\t    var key = scope.generateUidIdentifier(\"key\");\n\t    var len = scope.generateUidIdentifier(\"len\");\n\n\t    var arrKey = key;\n\t    var arrLen = len;\n\t    if (node.params.length) {\n\t      arrKey = t.binaryExpression(\"-\", key, start);\n\n\t      arrLen = t.conditionalExpression(t.binaryExpression(\">\", len, start), t.binaryExpression(\"-\", len, start), t.numericLiteral(0));\n\t    }\n\n\t    var loop = buildRest({\n\t      ARGUMENTS: argsId,\n\t      ARRAY_KEY: arrKey,\n\t      ARRAY_LEN: arrLen,\n\t      START: start,\n\t      ARRAY: rest,\n\t      KEY: key,\n\t      LEN: len\n\t    });\n\n\t    if (state.deopted) {\n\t      loop._blockHoist = node.params.length + 1;\n\t      node.body.body.unshift(loop);\n\t    } else {\n\t      loop._blockHoist = 1;\n\n\t      var target = path.getEarliestCommonAncestorFrom(state.references).getStatementParent();\n\n\t      target.findParent(function (path) {\n\t        if (path.isLoop()) {\n\t          target = path;\n\t        } else {\n\t          return path.isFunction();\n\t        }\n\t      });\n\n\t      target.insertBefore(loop);\n\t    }\n\t  }\n\t};\n\n/***/ }),\n/* 336 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    visitor: {\n\t      MemberExpression: {\n\t        exit: function exit(_ref2) {\n\t          var node = _ref2.node;\n\n\t          var prop = node.property;\n\t          if (!node.computed && t.isIdentifier(prop) && !t.isValidIdentifier(prop.name)) {\n\t            node.property = t.stringLiteral(prop.name);\n\t            node.computed = true;\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 337 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    visitor: {\n\t      ObjectProperty: {\n\t        exit: function exit(_ref2) {\n\t          var node = _ref2.node;\n\n\t          var key = node.key;\n\t          if (!node.computed && t.isIdentifier(key) && !t.isValidIdentifier(key.name)) {\n\t            node.key = t.stringLiteral(key.name);\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 338 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    visitor: {\n\t      ObjectExpression: function ObjectExpression(path, file) {\n\t        var node = path.node;\n\n\t        var hasAny = false;\n\t        for (var _iterator = node.properties, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref2;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref2 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref2 = _i.value;\n\t          }\n\n\t          var prop = _ref2;\n\n\t          if (prop.kind === \"get\" || prop.kind === \"set\") {\n\t            hasAny = true;\n\t            break;\n\t          }\n\t        }\n\t        if (!hasAny) return;\n\n\t        var mutatorMap = {};\n\n\t        node.properties = node.properties.filter(function (prop) {\n\t          if (!prop.computed && (prop.kind === \"get\" || prop.kind === \"set\")) {\n\t            defineMap.push(mutatorMap, prop, null, file);\n\t            return false;\n\t          } else {\n\t            return true;\n\t          }\n\t        });\n\n\t        path.replaceWith(t.callExpression(t.memberExpression(t.identifier(\"Object\"), t.identifier(\"defineProperties\")), [node, defineMap.toDefineObject(mutatorMap)]));\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperDefineMap = __webpack_require__(188);\n\n\tvar defineMap = _interopRequireWildcard(_babelHelperDefineMap);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 339 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var parse = _ref.parse,\n\t      traverse = _ref.traverse;\n\n\t  return {\n\t    visitor: {\n\t      CallExpression: function CallExpression(path) {\n\t        if (path.get(\"callee\").isIdentifier({ name: \"eval\" }) && path.node.arguments.length === 1) {\n\t          var evaluate = path.get(\"arguments\")[0].evaluate();\n\t          if (!evaluate.confident) return;\n\n\t          var code = evaluate.value;\n\t          if (typeof code !== \"string\") return;\n\n\t          var ast = parse(code);\n\t          traverse.removeProperties(ast);\n\t          return ast.program;\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 340 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function wrapInFlowComment(path, parent) {\n\t    path.addComment(\"trailing\", generateComment(path, parent));\n\t    path.replaceWith(t.noop());\n\t  }\n\n\t  function generateComment(path, parent) {\n\t    var comment = path.getSource().replace(/\\*-\\//g, \"*-ESCAPED/\").replace(/\\*\\//g, \"*-/\");\n\t    if (parent && parent.optional) comment = \"?\" + comment;\n\t    if (comment[0] !== \":\") comment = \":: \" + comment;\n\t    return comment;\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(126),\n\n\t    visitor: {\n\t      TypeCastExpression: function TypeCastExpression(path) {\n\t        var node = path.node;\n\n\t        path.get(\"expression\").addComment(\"trailing\", generateComment(path.get(\"typeAnnotation\")));\n\t        path.replaceWith(t.parenthesizedExpression(node.expression));\n\t      },\n\t      Identifier: function Identifier(path) {\n\t        var node = path.node;\n\n\t        if (!node.optional || node.typeAnnotation) {\n\t          return;\n\t        }\n\t        path.addComment(\"trailing\", \":: ?\");\n\t      },\n\n\t      AssignmentPattern: {\n\t        exit: function exit(_ref2) {\n\t          var node = _ref2.node;\n\n\t          node.left.optional = false;\n\t        }\n\t      },\n\n\t      Function: {\n\t        exit: function exit(_ref3) {\n\t          var node = _ref3.node;\n\n\t          node.params.forEach(function (param) {\n\t            return param.optional = false;\n\t          });\n\t        }\n\t      },\n\n\t      ClassProperty: function ClassProperty(path) {\n\t        var node = path.node,\n\t            parent = path.parent;\n\n\t        if (!node.value) wrapInFlowComment(path, parent);\n\t      },\n\t      \"ExportNamedDeclaration|Flow\": function ExportNamedDeclarationFlow(path) {\n\t        var node = path.node,\n\t            parent = path.parent;\n\n\t        if (t.isExportNamedDeclaration(node) && !t.isFlow(node.declaration)) {\n\t          return;\n\t        }\n\t        wrapInFlowComment(path, parent);\n\t      },\n\t      ImportDeclaration: function ImportDeclaration(path) {\n\t        var node = path.node,\n\t            parent = path.parent;\n\n\t        if (t.isImportDeclaration(node) && node.importKind !== \"type\" && node.importKind !== \"typeof\") {\n\t          return;\n\t        }\n\t        wrapInFlowComment(path, parent);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 341 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    visitor: {\n\t      FunctionExpression: {\n\t        exit: function exit(path) {\n\t          var node = path.node;\n\n\t          if (!node.id) return;\n\t          node._ignoreUserWhitespace = true;\n\n\t          path.replaceWith(t.callExpression(t.functionExpression(null, [], t.blockStatement([t.toStatement(node), t.returnStatement(node.id)])), []));\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 342 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      CallExpression: function CallExpression(path, file) {\n\t        if (path.get(\"callee\").matchesPattern(\"Object.assign\")) {\n\t          path.node.callee = file.addHelper(\"extends\");\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 343 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      CallExpression: function CallExpression(path, file) {\n\t        if (path.get(\"callee\").matchesPattern(\"Object.setPrototypeOf\")) {\n\t          path.node.callee = file.addHelper(\"defaults\");\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 344 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function isProtoKey(node) {\n\t    return t.isLiteral(t.toComputedKey(node, node.key), { value: \"__proto__\" });\n\t  }\n\n\t  function isProtoAssignmentExpression(node) {\n\t    var left = node.left;\n\t    return t.isMemberExpression(left) && t.isLiteral(t.toComputedKey(left, left.property), { value: \"__proto__\" });\n\t  }\n\n\t  function buildDefaultsCallExpression(expr, ref, file) {\n\t    return t.expressionStatement(t.callExpression(file.addHelper(\"defaults\"), [ref, expr.right]));\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      AssignmentExpression: function AssignmentExpression(path, file) {\n\t        if (!isProtoAssignmentExpression(path.node)) return;\n\n\t        var nodes = [];\n\t        var left = path.node.left.object;\n\t        var temp = path.scope.maybeGenerateMemoised(left);\n\n\t        if (temp) nodes.push(t.expressionStatement(t.assignmentExpression(\"=\", temp, left)));\n\t        nodes.push(buildDefaultsCallExpression(path.node, temp || left, file));\n\t        if (temp) nodes.push(temp);\n\n\t        path.replaceWithMultiple(nodes);\n\t      },\n\t      ExpressionStatement: function ExpressionStatement(path, file) {\n\t        var expr = path.node.expression;\n\t        if (!t.isAssignmentExpression(expr, { operator: \"=\" })) return;\n\n\t        if (isProtoAssignmentExpression(expr)) {\n\t          path.replaceWith(buildDefaultsCallExpression(expr, expr.left.object, file));\n\t        }\n\t      },\n\t      ObjectExpression: function ObjectExpression(path, file) {\n\t        var proto = void 0;\n\t        var node = path.node;\n\n\t        for (var _iterator = node.properties, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref2;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref2 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref2 = _i.value;\n\t          }\n\n\t          var prop = _ref2;\n\n\t          if (isProtoKey(prop)) {\n\t            proto = prop.value;\n\t            (0, _pull2.default)(node.properties, prop);\n\t          }\n\t        }\n\n\t        if (proto) {\n\t          var args = [t.objectExpression([]), proto];\n\t          if (node.properties.length) args.push(node);\n\t          path.replaceWith(t.callExpression(file.addHelper(\"extends\"), args));\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _pull = __webpack_require__(277);\n\n\tvar _pull2 = _interopRequireDefault(_pull);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 345 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var immutabilityVisitor = {\n\t    enter: function enter(path, state) {\n\t      var stop = function stop() {\n\t        state.isImmutable = false;\n\t        path.stop();\n\t      };\n\n\t      if (path.isJSXClosingElement()) {\n\t        path.skip();\n\t        return;\n\t      }\n\n\t      if (path.isJSXIdentifier({ name: \"ref\" }) && path.parentPath.isJSXAttribute({ name: path.node })) {\n\t        return stop();\n\t      }\n\n\t      if (path.isJSXIdentifier() || path.isIdentifier() || path.isJSXMemberExpression()) {\n\t        return;\n\t      }\n\n\t      if (!path.isImmutable()) {\n\t        if (path.isPure()) {\n\t          var expressionResult = path.evaluate();\n\t          if (expressionResult.confident) {\n\t            var value = expressionResult.value;\n\n\t            var isMutable = value && (typeof value === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(value)) === \"object\" || typeof value === \"function\";\n\t            if (!isMutable) {\n\t              return;\n\t            }\n\t          } else if (t.isIdentifier(expressionResult.deopt)) {\n\t            return;\n\t          }\n\t        }\n\t        stop();\n\t      }\n\t    }\n\t  };\n\n\t  return {\n\t    visitor: {\n\t      JSXElement: function JSXElement(path) {\n\t        if (path.node._hoisted) return;\n\n\t        var state = { isImmutable: true };\n\t        path.traverse(immutabilityVisitor, state);\n\n\t        if (state.isImmutable) {\n\t          path.hoist();\n\t        } else {\n\t          path.node._hoisted = true;\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 346 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function hasRefOrSpread(attrs) {\n\t    for (var i = 0; i < attrs.length; i++) {\n\t      var attr = attrs[i];\n\t      if (t.isJSXSpreadAttribute(attr)) return true;\n\t      if (isJSXAttributeOfName(attr, \"ref\")) return true;\n\t    }\n\t    return false;\n\t  }\n\n\t  function isJSXAttributeOfName(attr, name) {\n\t    return t.isJSXAttribute(attr) && t.isJSXIdentifier(attr.name, { name: name });\n\t  }\n\n\t  function getAttributeValue(attr) {\n\t    var value = attr.value;\n\t    if (!value) return t.identifier(\"true\");\n\t    if (t.isJSXExpressionContainer(value)) value = value.expression;\n\t    return value;\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      JSXElement: function JSXElement(path, file) {\n\t        var node = path.node;\n\n\t        var open = node.openingElement;\n\t        if (hasRefOrSpread(open.attributes)) return;\n\n\t        var props = t.objectExpression([]);\n\t        var key = null;\n\t        var type = open.name;\n\n\t        if (t.isJSXIdentifier(type) && t.react.isCompatTag(type.name)) {\n\t          type = t.stringLiteral(type.name);\n\t        }\n\n\t        function pushProp(objProps, key, value) {\n\t          objProps.push(t.objectProperty(key, value));\n\t        }\n\n\t        for (var _iterator = open.attributes, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref2;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref2 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref2 = _i.value;\n\t          }\n\n\t          var attr = _ref2;\n\n\t          if (isJSXAttributeOfName(attr, \"key\")) {\n\t            key = getAttributeValue(attr);\n\t          } else {\n\t            var name = attr.name.name;\n\t            var propertyKey = t.isValidIdentifier(name) ? t.identifier(name) : t.stringLiteral(name);\n\t            pushProp(props.properties, propertyKey, getAttributeValue(attr));\n\t          }\n\t        }\n\n\t        var args = [type, props];\n\t        if (key || node.children.length) {\n\t          var children = t.react.buildChildren(node);\n\t          args.push.apply(args, [key || t.unaryExpression(\"void\", t.numericLiteral(0), true)].concat(children));\n\t        }\n\n\t        var el = t.callExpression(file.addHelper(\"jsx\"), args);\n\t        path.replaceWith(el);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 347 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"jsx\");\n\t    },\n\n\t    visitor: (0, _babelHelperBuilderReactJsx2.default)({\n\t      pre: function pre(state) {\n\t        state.callee = state.tagExpr;\n\t      },\n\t      post: function post(state) {\n\t        if (t.react.isCompatTag(state.tagName)) {\n\t          state.call = t.callExpression(t.memberExpression(t.memberExpression(t.identifier(\"React\"), t.identifier(\"DOM\")), state.tagExpr, t.isLiteral(state.tagExpr)), state.args);\n\t        }\n\t      }\n\t    })\n\t  };\n\t};\n\n\tvar _babelHelperBuilderReactJsx = __webpack_require__(348);\n\n\tvar _babelHelperBuilderReactJsx2 = _interopRequireDefault(_babelHelperBuilderReactJsx);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 348 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (opts) {\n\t  var visitor = {};\n\n\t  visitor.JSXNamespacedName = function (path) {\n\t    throw path.buildCodeFrameError(\"Namespace tags are not supported. ReactJSX is not XML.\");\n\t  };\n\n\t  visitor.JSXElement = {\n\t    exit: function exit(path, file) {\n\t      var callExpr = buildElementCall(path.get(\"openingElement\"), file);\n\n\t      callExpr.arguments = callExpr.arguments.concat(path.node.children);\n\n\t      if (callExpr.arguments.length >= 3) {\n\t        callExpr._prettyCall = true;\n\t      }\n\n\t      path.replaceWith(t.inherits(callExpr, path.node));\n\t    }\n\t  };\n\n\t  return visitor;\n\n\t  function convertJSXIdentifier(node, parent) {\n\t    if (t.isJSXIdentifier(node)) {\n\t      if (node.name === \"this\" && t.isReferenced(node, parent)) {\n\t        return t.thisExpression();\n\t      } else if (_esutils2.default.keyword.isIdentifierNameES6(node.name)) {\n\t        node.type = \"Identifier\";\n\t      } else {\n\t        return t.stringLiteral(node.name);\n\t      }\n\t    } else if (t.isJSXMemberExpression(node)) {\n\t      return t.memberExpression(convertJSXIdentifier(node.object, node), convertJSXIdentifier(node.property, node));\n\t    }\n\n\t    return node;\n\t  }\n\n\t  function convertAttributeValue(node) {\n\t    if (t.isJSXExpressionContainer(node)) {\n\t      return node.expression;\n\t    } else {\n\t      return node;\n\t    }\n\t  }\n\n\t  function convertAttribute(node) {\n\t    var value = convertAttributeValue(node.value || t.booleanLiteral(true));\n\n\t    if (t.isStringLiteral(value) && !t.isJSXExpressionContainer(node.value)) {\n\t      value.value = value.value.replace(/\\n\\s+/g, \" \");\n\t    }\n\n\t    if (t.isValidIdentifier(node.name.name)) {\n\t      node.name.type = \"Identifier\";\n\t    } else {\n\t      node.name = t.stringLiteral(node.name.name);\n\t    }\n\n\t    return t.inherits(t.objectProperty(node.name, value), node);\n\t  }\n\n\t  function buildElementCall(path, file) {\n\t    path.parent.children = t.react.buildChildren(path.parent);\n\n\t    var tagExpr = convertJSXIdentifier(path.node.name, path.node);\n\t    var args = [];\n\n\t    var tagName = void 0;\n\t    if (t.isIdentifier(tagExpr)) {\n\t      tagName = tagExpr.name;\n\t    } else if (t.isLiteral(tagExpr)) {\n\t      tagName = tagExpr.value;\n\t    }\n\n\t    var state = {\n\t      tagExpr: tagExpr,\n\t      tagName: tagName,\n\t      args: args\n\t    };\n\n\t    if (opts.pre) {\n\t      opts.pre(state, file);\n\t    }\n\n\t    var attribs = path.node.attributes;\n\t    if (attribs.length) {\n\t      attribs = buildOpeningElementAttributes(attribs, file);\n\t    } else {\n\t      attribs = t.nullLiteral();\n\t    }\n\n\t    args.push(attribs);\n\n\t    if (opts.post) {\n\t      opts.post(state, file);\n\t    }\n\n\t    return state.call || t.callExpression(state.callee, args);\n\t  }\n\n\t  function buildOpeningElementAttributes(attribs, file) {\n\t    var _props = [];\n\t    var objs = [];\n\n\t    var useBuiltIns = file.opts.useBuiltIns || false;\n\t    if (typeof useBuiltIns !== \"boolean\") {\n\t      throw new Error(\"transform-react-jsx currently only accepts a boolean option for \" + \"useBuiltIns (defaults to false)\");\n\t    }\n\n\t    function pushProps() {\n\t      if (!_props.length) return;\n\n\t      objs.push(t.objectExpression(_props));\n\t      _props = [];\n\t    }\n\n\t    while (attribs.length) {\n\t      var prop = attribs.shift();\n\t      if (t.isJSXSpreadAttribute(prop)) {\n\t        pushProps();\n\t        objs.push(prop.argument);\n\t      } else {\n\t        _props.push(convertAttribute(prop));\n\t      }\n\t    }\n\n\t    pushProps();\n\n\t    if (objs.length === 1) {\n\t      attribs = objs[0];\n\t    } else {\n\t      if (!t.isObjectExpression(objs[0])) {\n\t        objs.unshift(t.objectExpression([]));\n\t      }\n\n\t      var helper = useBuiltIns ? t.memberExpression(t.identifier(\"Object\"), t.identifier(\"assign\")) : file.addHelper(\"extends\");\n\n\t      attribs = t.callExpression(helper, objs);\n\t    }\n\n\t    return attribs;\n\t  }\n\t};\n\n\tvar _esutils = __webpack_require__(97);\n\n\tvar _esutils2 = _interopRequireDefault(_esutils);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 349 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var visitor = {\n\t    JSXOpeningElement: function JSXOpeningElement(_ref2) {\n\t      var node = _ref2.node;\n\n\t      var id = t.jSXIdentifier(TRACE_ID);\n\t      var trace = t.thisExpression();\n\n\t      node.attributes.push(t.jSXAttribute(id, t.jSXExpressionContainer(trace)));\n\t    }\n\t  };\n\n\t  return {\n\t    visitor: visitor\n\t  };\n\t};\n\n\tvar TRACE_ID = \"__self\";\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 350 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function makeTrace(fileNameIdentifier, lineNumber) {\n\t    var fileLineLiteral = lineNumber != null ? t.numericLiteral(lineNumber) : t.nullLiteral();\n\t    var fileNameProperty = t.objectProperty(t.identifier(\"fileName\"), fileNameIdentifier);\n\t    var lineNumberProperty = t.objectProperty(t.identifier(\"lineNumber\"), fileLineLiteral);\n\t    return t.objectExpression([fileNameProperty, lineNumberProperty]);\n\t  }\n\n\t  var visitor = {\n\t    JSXOpeningElement: function JSXOpeningElement(path, state) {\n\t      var id = t.jSXIdentifier(TRACE_ID);\n\t      var location = path.container.openingElement.loc;\n\t      if (!location) {\n\t        return;\n\t      }\n\n\t      var attributes = path.container.openingElement.attributes;\n\t      for (var i = 0; i < attributes.length; i++) {\n\t        var name = attributes[i].name;\n\t        if (name && name.name === TRACE_ID) {\n\t          return;\n\t        }\n\t      }\n\n\t      if (!state.fileNameIdentifier) {\n\t        var fileName = state.file.log.filename !== \"unknown\" ? state.file.log.filename : null;\n\n\t        var fileNameIdentifier = path.scope.generateUidIdentifier(FILE_NAME_VAR);\n\t        path.hub.file.scope.push({ id: fileNameIdentifier, init: t.stringLiteral(fileName) });\n\t        state.fileNameIdentifier = fileNameIdentifier;\n\t      }\n\n\t      var trace = makeTrace(state.fileNameIdentifier, location.start.line);\n\t      attributes.push(t.jSXAttribute(id, t.jSXExpressionContainer(trace)));\n\t    }\n\t  };\n\n\t  return {\n\t    visitor: visitor\n\t  };\n\t};\n\n\tvar TRACE_ID = \"__source\";\n\tvar FILE_NAME_VAR = \"_jsxFileName\";\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 351 */\n348,\n/* 352 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = {\n\t  builtins: {\n\t    Symbol: \"symbol\",\n\t    Promise: \"promise\",\n\t    Map: \"map\",\n\t    WeakMap: \"weak-map\",\n\t    Set: \"set\",\n\t    WeakSet: \"weak-set\",\n\t    Observable: \"observable\",\n\t    setImmediate: \"set-immediate\",\n\t    clearImmediate: \"clear-immediate\",\n\t    asap: \"asap\"\n\t  },\n\n\t  methods: {\n\t    Array: {\n\t      concat: \"array/concat\",\n\t      copyWithin: \"array/copy-within\",\n\t      entries: \"array/entries\",\n\t      every: \"array/every\",\n\t      fill: \"array/fill\",\n\t      filter: \"array/filter\",\n\t      findIndex: \"array/find-index\",\n\t      find: \"array/find\",\n\t      forEach: \"array/for-each\",\n\t      from: \"array/from\",\n\t      includes: \"array/includes\",\n\t      indexOf: \"array/index-of\",\n\n\t      join: \"array/join\",\n\t      keys: \"array/keys\",\n\t      lastIndexOf: \"array/last-index-of\",\n\t      map: \"array/map\",\n\t      of: \"array/of\",\n\t      pop: \"array/pop\",\n\t      push: \"array/push\",\n\t      reduceRight: \"array/reduce-right\",\n\t      reduce: \"array/reduce\",\n\t      reverse: \"array/reverse\",\n\t      shift: \"array/shift\",\n\t      slice: \"array/slice\",\n\t      some: \"array/some\",\n\t      sort: \"array/sort\",\n\t      splice: \"array/splice\",\n\t      unshift: \"array/unshift\",\n\t      values: \"array/values\"\n\t    },\n\n\t    JSON: {\n\t      stringify: \"json/stringify\"\n\t    },\n\n\t    Object: {\n\t      assign: \"object/assign\",\n\t      create: \"object/create\",\n\t      defineProperties: \"object/define-properties\",\n\t      defineProperty: \"object/define-property\",\n\t      entries: \"object/entries\",\n\t      freeze: \"object/freeze\",\n\t      getOwnPropertyDescriptor: \"object/get-own-property-descriptor\",\n\t      getOwnPropertyDescriptors: \"object/get-own-property-descriptors\",\n\t      getOwnPropertyNames: \"object/get-own-property-names\",\n\t      getOwnPropertySymbols: \"object/get-own-property-symbols\",\n\t      getPrototypeOf: \"object/get-prototype-of\",\n\t      isExtensible: \"object/is-extensible\",\n\t      isFrozen: \"object/is-frozen\",\n\t      isSealed: \"object/is-sealed\",\n\t      is: \"object/is\",\n\t      keys: \"object/keys\",\n\t      preventExtensions: \"object/prevent-extensions\",\n\t      seal: \"object/seal\",\n\t      setPrototypeOf: \"object/set-prototype-of\",\n\t      values: \"object/values\"\n\t    },\n\n\t    RegExp: {\n\t      escape: \"regexp/escape\" },\n\n\t    Math: {\n\t      acosh: \"math/acosh\",\n\t      asinh: \"math/asinh\",\n\t      atanh: \"math/atanh\",\n\t      cbrt: \"math/cbrt\",\n\t      clz32: \"math/clz32\",\n\t      cosh: \"math/cosh\",\n\t      expm1: \"math/expm1\",\n\t      fround: \"math/fround\",\n\t      hypot: \"math/hypot\",\n\t      imul: \"math/imul\",\n\t      log10: \"math/log10\",\n\t      log1p: \"math/log1p\",\n\t      log2: \"math/log2\",\n\t      sign: \"math/sign\",\n\t      sinh: \"math/sinh\",\n\t      tanh: \"math/tanh\",\n\t      trunc: \"math/trunc\",\n\t      iaddh: \"math/iaddh\",\n\t      isubh: \"math/isubh\",\n\t      imulh: \"math/imulh\",\n\t      umulh: \"math/umulh\"\n\t    },\n\n\t    Symbol: {\n\t      for: \"symbol/for\",\n\t      hasInstance: \"symbol/has-instance\",\n\t      isConcatSpreadable: \"symbol/is-concat-spreadable\",\n\t      iterator: \"symbol/iterator\",\n\t      keyFor: \"symbol/key-for\",\n\t      match: \"symbol/match\",\n\t      replace: \"symbol/replace\",\n\t      search: \"symbol/search\",\n\t      species: \"symbol/species\",\n\t      split: \"symbol/split\",\n\t      toPrimitive: \"symbol/to-primitive\",\n\t      toStringTag: \"symbol/to-string-tag\",\n\t      unscopables: \"symbol/unscopables\"\n\t    },\n\n\t    String: {\n\t      at: \"string/at\",\n\t      codePointAt: \"string/code-point-at\",\n\t      endsWith: \"string/ends-with\",\n\t      fromCodePoint: \"string/from-code-point\",\n\t      includes: \"string/includes\",\n\t      matchAll: \"string/match-all\",\n\t      padLeft: \"string/pad-left\",\n\t      padRight: \"string/pad-right\",\n\t      padStart: \"string/pad-start\",\n\t      padEnd: \"string/pad-end\",\n\t      raw: \"string/raw\",\n\t      repeat: \"string/repeat\",\n\t      startsWith: \"string/starts-with\",\n\t      trim: \"string/trim\",\n\t      trimLeft: \"string/trim-left\",\n\t      trimRight: \"string/trim-right\",\n\t      trimStart: \"string/trim-start\",\n\t      trimEnd: \"string/trim-end\"\n\t    },\n\n\t    Number: {\n\t      EPSILON: \"number/epsilon\",\n\t      isFinite: \"number/is-finite\",\n\t      isInteger: \"number/is-integer\",\n\t      isNaN: \"number/is-nan\",\n\t      isSafeInteger: \"number/is-safe-integer\",\n\t      MAX_SAFE_INTEGER: \"number/max-safe-integer\",\n\t      MIN_SAFE_INTEGER: \"number/min-safe-integer\",\n\t      parseFloat: \"number/parse-float\",\n\t      parseInt: \"number/parse-int\"\n\t    },\n\n\t    Reflect: {\n\t      apply: \"reflect/apply\",\n\t      construct: \"reflect/construct\",\n\t      defineProperty: \"reflect/define-property\",\n\t      deleteProperty: \"reflect/delete-property\",\n\t      enumerate: \"reflect/enumerate\",\n\t      getOwnPropertyDescriptor: \"reflect/get-own-property-descriptor\",\n\t      getPrototypeOf: \"reflect/get-prototype-of\",\n\t      get: \"reflect/get\",\n\t      has: \"reflect/has\",\n\t      isExtensible: \"reflect/is-extensible\",\n\t      ownKeys: \"reflect/own-keys\",\n\t      preventExtensions: \"reflect/prevent-extensions\",\n\t      setPrototypeOf: \"reflect/set-prototype-of\",\n\t      set: \"reflect/set\",\n\t      defineMetadata: \"reflect/define-metadata\",\n\t      deleteMetadata: \"reflect/delete-metadata\",\n\t      getMetadata: \"reflect/get-metadata\",\n\t      getMetadataKeys: \"reflect/get-metadata-keys\",\n\t      getOwnMetadata: \"reflect/get-own-metadata\",\n\t      getOwnMetadataKeys: \"reflect/get-own-metadata-keys\",\n\t      hasMetadata: \"reflect/has-metadata\",\n\t      hasOwnMetadata: \"reflect/has-own-metadata\",\n\t      metadata: \"reflect/metadata\"\n\t    },\n\n\t    System: {\n\t      global: \"system/global\"\n\t    },\n\n\t    Error: {\n\t      isError: \"error/is-error\" },\n\n\t    Date: {},\n\n\t    Function: {}\n\t  }\n\t};\n\n/***/ }),\n/* 353 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.definitions = undefined;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function getRuntimeModuleName(opts) {\n\t    return opts.moduleName || \"babel-runtime\";\n\t  }\n\n\t  function has(obj, key) {\n\t    return Object.prototype.hasOwnProperty.call(obj, key);\n\t  }\n\n\t  var HELPER_BLACKLIST = [\"interopRequireWildcard\", \"interopRequireDefault\"];\n\n\t  return {\n\t    pre: function pre(file) {\n\t      var moduleName = getRuntimeModuleName(this.opts);\n\n\t      if (this.opts.helpers !== false) {\n\t        file.set(\"helperGenerator\", function (name) {\n\t          if (HELPER_BLACKLIST.indexOf(name) < 0) {\n\t            return file.addImport(moduleName + \"/helpers/\" + name, \"default\", name);\n\t          }\n\t        });\n\t      }\n\n\t      this.setDynamic(\"regeneratorIdentifier\", function () {\n\t        return file.addImport(moduleName + \"/regenerator\", \"default\", \"regeneratorRuntime\");\n\t      });\n\t    },\n\n\t    visitor: {\n\t      ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t        var node = path.node,\n\t            parent = path.parent,\n\t            scope = path.scope;\n\n\t        if (node.name === \"regeneratorRuntime\" && state.opts.regenerator !== false) {\n\t          path.replaceWith(state.get(\"regeneratorIdentifier\"));\n\t          return;\n\t        }\n\n\t        if (state.opts.polyfill === false) return;\n\n\t        if (t.isMemberExpression(parent)) return;\n\t        if (!has(_definitions2.default.builtins, node.name)) return;\n\t        if (scope.getBindingIdentifier(node.name)) return;\n\n\t        var moduleName = getRuntimeModuleName(state.opts);\n\t        path.replaceWith(state.addImport(moduleName + \"/core-js/\" + _definitions2.default.builtins[node.name], \"default\", node.name));\n\t      },\n\t      CallExpression: function CallExpression(path, state) {\n\t        if (state.opts.polyfill === false) return;\n\n\t        if (path.node.arguments.length) return;\n\n\t        var callee = path.node.callee;\n\t        if (!t.isMemberExpression(callee)) return;\n\t        if (!callee.computed) return;\n\t        if (!path.get(\"callee.property\").matchesPattern(\"Symbol.iterator\")) return;\n\n\t        var moduleName = getRuntimeModuleName(state.opts);\n\t        path.replaceWith(t.callExpression(state.addImport(moduleName + \"/core-js/get-iterator\", \"default\", \"getIterator\"), [callee.object]));\n\t      },\n\t      BinaryExpression: function BinaryExpression(path, state) {\n\t        if (state.opts.polyfill === false) return;\n\n\t        if (path.node.operator !== \"in\") return;\n\t        if (!path.get(\"left\").matchesPattern(\"Symbol.iterator\")) return;\n\n\t        var moduleName = getRuntimeModuleName(state.opts);\n\t        path.replaceWith(t.callExpression(state.addImport(moduleName + \"/core-js/is-iterable\", \"default\", \"isIterable\"), [path.node.right]));\n\t      },\n\n\t      MemberExpression: {\n\t        enter: function enter(path, state) {\n\t          if (state.opts.polyfill === false) return;\n\t          if (!path.isReferenced()) return;\n\n\t          var node = path.node;\n\n\t          var obj = node.object;\n\t          var prop = node.property;\n\n\t          if (!t.isReferenced(obj, node)) return;\n\t          if (node.computed) return;\n\t          if (!has(_definitions2.default.methods, obj.name)) return;\n\n\t          var methods = _definitions2.default.methods[obj.name];\n\t          if (!has(methods, prop.name)) return;\n\n\t          if (path.scope.getBindingIdentifier(obj.name)) return;\n\n\t          if (obj.name === \"Object\" && prop.name === \"defineProperty\" && path.parentPath.isCallExpression()) {\n\t            var call = path.parentPath.node;\n\t            if (call.arguments.length === 3 && t.isLiteral(call.arguments[1])) return;\n\t          }\n\n\t          var moduleName = getRuntimeModuleName(state.opts);\n\t          path.replaceWith(state.addImport(moduleName + \"/core-js/\" + methods[prop.name], \"default\", obj.name + \"$\" + prop.name));\n\t        },\n\t        exit: function exit(path, state) {\n\t          if (state.opts.polyfill === false) return;\n\t          if (!path.isReferenced()) return;\n\n\t          var node = path.node;\n\n\t          var obj = node.object;\n\n\t          if (!has(_definitions2.default.builtins, obj.name)) return;\n\t          if (path.scope.getBindingIdentifier(obj.name)) return;\n\n\t          var moduleName = getRuntimeModuleName(state.opts);\n\t          path.replaceWith(t.memberExpression(state.addImport(moduleName + \"/core-js/\" + _definitions2.default.builtins[obj.name], \"default\", obj.name), node.property, node.computed));\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _definitions = __webpack_require__(352);\n\n\tvar _definitions2 = _interopRequireDefault(_definitions);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.definitions = _definitions2.default;\n\n/***/ }),\n/* 354 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var messages = _ref.messages;\n\n\t  return {\n\t    visitor: {\n\t      ReferencedIdentifier: function ReferencedIdentifier(path) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var binding = scope.getBinding(node.name);\n\t        if (binding && binding.kind === \"type\" && !path.parentPath.isFlow()) {\n\t          throw path.buildCodeFrameError(messages.get(\"undeclaredVariableType\", node.name), ReferenceError);\n\t        }\n\n\t        if (scope.hasBinding(node.name)) return;\n\n\t        var bindings = scope.getAllBindings();\n\n\t        var closest = void 0;\n\t        var shortest = -1;\n\n\t        for (var name in bindings) {\n\t          var distance = (0, _leven2.default)(node.name, name);\n\t          if (distance <= 0 || distance > 3) continue;\n\t          if (distance <= shortest) continue;\n\n\t          closest = name;\n\t          shortest = distance;\n\t        }\n\n\t        var msg = void 0;\n\t        if (closest) {\n\t          msg = messages.get(\"undeclaredVariableSuggestion\", node.name, closest);\n\t        } else {\n\t          msg = messages.get(\"undeclaredVariable\", node.name);\n\t        }\n\n\t        throw path.buildCodeFrameError(msg, ReferenceError);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _leven = __webpack_require__(471);\n\n\tvar _leven2 = _interopRequireDefault(_leven);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 355 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPluginTransformFlowStripTypes = __webpack_require__(211);\n\n\tvar _babelPluginTransformFlowStripTypes2 = _interopRequireDefault(_babelPluginTransformFlowStripTypes);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  plugins: [_babelPluginTransformFlowStripTypes2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 356 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (context) {\n\t  var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t  return {\n\t    presets: [opts.es2015 !== false && [_babelPresetEs2.default.buildPreset, opts.es2015], opts.es2016 !== false && _babelPresetEs4.default, opts.es2017 !== false && _babelPresetEs6.default].filter(Boolean) };\n\t};\n\n\tvar _babelPresetEs = __webpack_require__(217);\n\n\tvar _babelPresetEs2 = _interopRequireDefault(_babelPresetEs);\n\n\tvar _babelPresetEs3 = __webpack_require__(218);\n\n\tvar _babelPresetEs4 = _interopRequireDefault(_babelPresetEs3);\n\n\tvar _babelPresetEs5 = __webpack_require__(219);\n\n\tvar _babelPresetEs6 = _interopRequireDefault(_babelPresetEs5);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 357 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPresetFlow = __webpack_require__(355);\n\n\tvar _babelPresetFlow2 = _interopRequireDefault(_babelPresetFlow);\n\n\tvar _babelPluginTransformReactJsx = __webpack_require__(215);\n\n\tvar _babelPluginTransformReactJsx2 = _interopRequireDefault(_babelPluginTransformReactJsx);\n\n\tvar _babelPluginSyntaxJsx = __webpack_require__(127);\n\n\tvar _babelPluginSyntaxJsx2 = _interopRequireDefault(_babelPluginSyntaxJsx);\n\n\tvar _babelPluginTransformReactDisplayName = __webpack_require__(214);\n\n\tvar _babelPluginTransformReactDisplayName2 = _interopRequireDefault(_babelPluginTransformReactDisplayName);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  presets: [_babelPresetFlow2.default],\n\t  plugins: [_babelPluginTransformReactJsx2.default, _babelPluginSyntaxJsx2.default, _babelPluginTransformReactDisplayName2.default],\n\t  env: {\n\t    development: {\n\t      plugins: []\n\t    }\n\t  }\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 358 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPresetStage = __webpack_require__(220);\n\n\tvar _babelPresetStage2 = _interopRequireDefault(_babelPresetStage);\n\n\tvar _babelPluginTransformDoExpressions = __webpack_require__(206);\n\n\tvar _babelPluginTransformDoExpressions2 = _interopRequireDefault(_babelPluginTransformDoExpressions);\n\n\tvar _babelPluginTransformFunctionBind = __webpack_require__(212);\n\n\tvar _babelPluginTransformFunctionBind2 = _interopRequireDefault(_babelPluginTransformFunctionBind);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  presets: [_babelPresetStage2.default],\n\t  plugins: [_babelPluginTransformDoExpressions2.default, _babelPluginTransformFunctionBind2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 359 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(407), __esModule: true };\n\n/***/ }),\n/* 360 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(410), __esModule: true };\n\n/***/ }),\n/* 361 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(412), __esModule: true };\n\n/***/ }),\n/* 362 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(413), __esModule: true };\n\n/***/ }),\n/* 363 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(415), __esModule: true };\n\n/***/ }),\n/* 364 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(416), __esModule: true };\n\n/***/ }),\n/* 365 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(417), __esModule: true };\n\n/***/ }),\n/* 366 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (obj, keys) {\n\t  var target = {};\n\n\t  for (var i in obj) {\n\t    if (keys.indexOf(i) >= 0) continue;\n\t    if (!Object.prototype.hasOwnProperty.call(obj, i)) continue;\n\t    target[i] = obj[i];\n\t  }\n\n\t  return target;\n\t};\n\n/***/ }),\n/* 367 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _path2 = __webpack_require__(36);\n\n\tvar _path3 = _interopRequireDefault(_path2);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar testing = (\"production\") === \"test\";\n\n\tvar TraversalContext = function () {\n\t  function TraversalContext(scope, opts, state, parentPath) {\n\t    (0, _classCallCheck3.default)(this, TraversalContext);\n\t    this.queue = null;\n\n\t    this.parentPath = parentPath;\n\t    this.scope = scope;\n\t    this.state = state;\n\t    this.opts = opts;\n\t  }\n\n\t  TraversalContext.prototype.shouldVisit = function shouldVisit(node) {\n\t    var opts = this.opts;\n\t    if (opts.enter || opts.exit) return true;\n\n\t    if (opts[node.type]) return true;\n\n\t    var keys = t.VISITOR_KEYS[node.type];\n\t    if (!keys || !keys.length) return false;\n\n\t    for (var _iterator = keys, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var key = _ref;\n\n\t      if (node[key]) return true;\n\t    }\n\n\t    return false;\n\t  };\n\n\t  TraversalContext.prototype.create = function create(node, obj, key, listKey) {\n\t    return _path3.default.get({\n\t      parentPath: this.parentPath,\n\t      parent: node,\n\t      container: obj,\n\t      key: key,\n\t      listKey: listKey\n\t    });\n\t  };\n\n\t  TraversalContext.prototype.maybeQueue = function maybeQueue(path, notPriority) {\n\t    if (this.trap) {\n\t      throw new Error(\"Infinite cycle detected\");\n\t    }\n\n\t    if (this.queue) {\n\t      if (notPriority) {\n\t        this.queue.push(path);\n\t      } else {\n\t        this.priorityQueue.push(path);\n\t      }\n\t    }\n\t  };\n\n\t  TraversalContext.prototype.visitMultiple = function visitMultiple(container, parent, listKey) {\n\t    if (container.length === 0) return false;\n\n\t    var queue = [];\n\n\t    for (var key = 0; key < container.length; key++) {\n\t      var node = container[key];\n\t      if (node && this.shouldVisit(node)) {\n\t        queue.push(this.create(parent, container, key, listKey));\n\t      }\n\t    }\n\n\t    return this.visitQueue(queue);\n\t  };\n\n\t  TraversalContext.prototype.visitSingle = function visitSingle(node, key) {\n\t    if (this.shouldVisit(node[key])) {\n\t      return this.visitQueue([this.create(node, node, key)]);\n\t    } else {\n\t      return false;\n\t    }\n\t  };\n\n\t  TraversalContext.prototype.visitQueue = function visitQueue(queue) {\n\t    this.queue = queue;\n\t    this.priorityQueue = [];\n\n\t    var visited = [];\n\t    var stop = false;\n\n\t    for (var _iterator2 = queue, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var path = _ref2;\n\n\t      path.resync();\n\n\t      if (path.contexts.length === 0 || path.contexts[path.contexts.length - 1] !== this) {\n\t        path.pushContext(this);\n\t      }\n\n\t      if (path.key === null) continue;\n\n\t      if (testing && queue.length >= 10000) {\n\t        this.trap = true;\n\t      }\n\n\t      if (visited.indexOf(path.node) >= 0) continue;\n\t      visited.push(path.node);\n\n\t      if (path.visit()) {\n\t        stop = true;\n\t        break;\n\t      }\n\n\t      if (this.priorityQueue.length) {\n\t        stop = this.visitQueue(this.priorityQueue);\n\t        this.priorityQueue = [];\n\t        this.queue = queue;\n\t        if (stop) break;\n\t      }\n\t    }\n\n\t    for (var _iterator3 = queue, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var _path = _ref3;\n\n\t      _path.popContext();\n\t    }\n\n\t    this.queue = null;\n\n\t    return stop;\n\t  };\n\n\t  TraversalContext.prototype.visit = function visit(node, key) {\n\t    var nodes = node[key];\n\t    if (!nodes) return false;\n\n\t    if (Array.isArray(nodes)) {\n\t      return this.visitMultiple(nodes, node, key);\n\t    } else {\n\t      return this.visitSingle(node, key);\n\t    }\n\t  };\n\n\t  return TraversalContext;\n\t}();\n\n\texports.default = TraversalContext;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 368 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.findParent = findParent;\n\texports.find = find;\n\texports.getFunctionParent = getFunctionParent;\n\texports.getStatementParent = getStatementParent;\n\texports.getEarliestCommonAncestorFrom = getEarliestCommonAncestorFrom;\n\texports.getDeepestCommonAncestorFrom = getDeepestCommonAncestorFrom;\n\texports.getAncestry = getAncestry;\n\texports.isAncestor = isAncestor;\n\texports.isDescendant = isDescendant;\n\texports.inType = inType;\n\texports.inShadow = inShadow;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _index = __webpack_require__(36);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction findParent(callback) {\n\t  var path = this;\n\t  while (path = path.parentPath) {\n\t    if (callback(path)) return path;\n\t  }\n\t  return null;\n\t}\n\n\tfunction find(callback) {\n\t  var path = this;\n\t  do {\n\t    if (callback(path)) return path;\n\t  } while (path = path.parentPath);\n\t  return null;\n\t}\n\n\tfunction getFunctionParent() {\n\t  return this.findParent(function (path) {\n\t    return path.isFunction() || path.isProgram();\n\t  });\n\t}\n\n\tfunction getStatementParent() {\n\t  var path = this;\n\t  do {\n\t    if (Array.isArray(path.container)) {\n\t      return path;\n\t    }\n\t  } while (path = path.parentPath);\n\t}\n\n\tfunction getEarliestCommonAncestorFrom(paths) {\n\t  return this.getDeepestCommonAncestorFrom(paths, function (deepest, i, ancestries) {\n\t    var earliest = void 0;\n\t    var keys = t.VISITOR_KEYS[deepest.type];\n\n\t    for (var _iterator = ancestries, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var ancestry = _ref;\n\n\t      var path = ancestry[i + 1];\n\n\t      if (!earliest) {\n\t        earliest = path;\n\t        continue;\n\t      }\n\n\t      if (path.listKey && earliest.listKey === path.listKey) {\n\t        if (path.key < earliest.key) {\n\t          earliest = path;\n\t          continue;\n\t        }\n\t      }\n\n\t      var earliestKeyIndex = keys.indexOf(earliest.parentKey);\n\t      var currentKeyIndex = keys.indexOf(path.parentKey);\n\t      if (earliestKeyIndex > currentKeyIndex) {\n\t        earliest = path;\n\t      }\n\t    }\n\n\t    return earliest;\n\t  });\n\t}\n\n\tfunction getDeepestCommonAncestorFrom(paths, filter) {\n\t  var _this = this;\n\n\t  if (!paths.length) {\n\t    return this;\n\t  }\n\n\t  if (paths.length === 1) {\n\t    return paths[0];\n\t  }\n\n\t  var minDepth = Infinity;\n\n\t  var lastCommonIndex = void 0,\n\t      lastCommon = void 0;\n\n\t  var ancestries = paths.map(function (path) {\n\t    var ancestry = [];\n\n\t    do {\n\t      ancestry.unshift(path);\n\t    } while ((path = path.parentPath) && path !== _this);\n\n\t    if (ancestry.length < minDepth) {\n\t      minDepth = ancestry.length;\n\t    }\n\n\t    return ancestry;\n\t  });\n\n\t  var first = ancestries[0];\n\n\t  depthLoop: for (var i = 0; i < minDepth; i++) {\n\t    var shouldMatch = first[i];\n\n\t    for (var _iterator2 = ancestries, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var ancestry = _ref2;\n\n\t      if (ancestry[i] !== shouldMatch) {\n\t        break depthLoop;\n\t      }\n\t    }\n\n\t    lastCommonIndex = i;\n\t    lastCommon = shouldMatch;\n\t  }\n\n\t  if (lastCommon) {\n\t    if (filter) {\n\t      return filter(lastCommon, lastCommonIndex, ancestries);\n\t    } else {\n\t      return lastCommon;\n\t    }\n\t  } else {\n\t    throw new Error(\"Couldn't find intersection\");\n\t  }\n\t}\n\n\tfunction getAncestry() {\n\t  var path = this;\n\t  var paths = [];\n\t  do {\n\t    paths.push(path);\n\t  } while (path = path.parentPath);\n\t  return paths;\n\t}\n\n\tfunction isAncestor(maybeDescendant) {\n\t  return maybeDescendant.isDescendant(this);\n\t}\n\n\tfunction isDescendant(maybeAncestor) {\n\t  return !!this.findParent(function (parent) {\n\t    return parent === maybeAncestor;\n\t  });\n\t}\n\n\tfunction inType() {\n\t  var path = this;\n\t  while (path) {\n\t    for (var _iterator3 = arguments, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var type = _ref3;\n\n\t      if (path.node.type === type) return true;\n\t    }\n\t    path = path.parentPath;\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction inShadow(key) {\n\t  var parentFn = this.isFunction() ? this : this.findParent(function (p) {\n\t    return p.isFunction();\n\t  });\n\t  if (!parentFn) return;\n\n\t  if (parentFn.isFunctionExpression() || parentFn.isFunctionDeclaration()) {\n\t    var shadow = parentFn.node.shadow;\n\n\t    if (shadow && (!key || shadow[key] !== false)) {\n\t      return parentFn;\n\t    }\n\t  } else if (parentFn.isArrowFunctionExpression()) {\n\t    return parentFn;\n\t  }\n\n\t  return null;\n\t}\n\n/***/ }),\n/* 369 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.shareCommentsWithSiblings = shareCommentsWithSiblings;\n\texports.addComment = addComment;\n\texports.addComments = addComments;\n\tfunction shareCommentsWithSiblings() {\n\t  if (typeof this.key === \"string\") return;\n\n\t  var node = this.node;\n\t  if (!node) return;\n\n\t  var trailing = node.trailingComments;\n\t  var leading = node.leadingComments;\n\t  if (!trailing && !leading) return;\n\n\t  var prev = this.getSibling(this.key - 1);\n\t  var next = this.getSibling(this.key + 1);\n\n\t  if (!prev.node) prev = next;\n\t  if (!next.node) next = prev;\n\n\t  prev.addComments(\"trailing\", leading);\n\t  next.addComments(\"leading\", trailing);\n\t}\n\n\tfunction addComment(type, content, line) {\n\t  this.addComments(type, [{\n\t    type: line ? \"CommentLine\" : \"CommentBlock\",\n\t    value: content\n\t  }]);\n\t}\n\n\tfunction addComments(type, comments) {\n\t  if (!comments) return;\n\n\t  var node = this.node;\n\t  if (!node) return;\n\n\t  var key = type + \"Comments\";\n\n\t  if (node[key]) {\n\t    node[key] = node[key].concat(comments);\n\t  } else {\n\t    node[key] = comments;\n\t  }\n\t}\n\n/***/ }),\n/* 370 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.call = call;\n\texports._call = _call;\n\texports.isBlacklisted = isBlacklisted;\n\texports.visit = visit;\n\texports.skip = skip;\n\texports.skipKey = skipKey;\n\texports.stop = stop;\n\texports.setScope = setScope;\n\texports.setContext = setContext;\n\texports.resync = resync;\n\texports._resyncParent = _resyncParent;\n\texports._resyncKey = _resyncKey;\n\texports._resyncList = _resyncList;\n\texports._resyncRemoved = _resyncRemoved;\n\texports.popContext = popContext;\n\texports.pushContext = pushContext;\n\texports.setup = setup;\n\texports.setKey = setKey;\n\texports.requeue = requeue;\n\texports._getQueueContexts = _getQueueContexts;\n\n\tvar _index = __webpack_require__(7);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction call(key) {\n\t  var opts = this.opts;\n\n\t  this.debug(function () {\n\t    return key;\n\t  });\n\n\t  if (this.node) {\n\t    if (this._call(opts[key])) return true;\n\t  }\n\n\t  if (this.node) {\n\t    return this._call(opts[this.node.type] && opts[this.node.type][key]);\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction _call(fns) {\n\t  if (!fns) return false;\n\n\t  for (var _iterator = fns, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var fn = _ref;\n\n\t    if (!fn) continue;\n\n\t    var node = this.node;\n\t    if (!node) return true;\n\n\t    var ret = fn.call(this.state, this, this.state);\n\t    if (ret) throw new Error(\"Unexpected return value from visitor method \" + fn);\n\n\t    if (this.node !== node) return true;\n\n\t    if (this.shouldStop || this.shouldSkip || this.removed) return true;\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction isBlacklisted() {\n\t  var blacklist = this.opts.blacklist;\n\t  return blacklist && blacklist.indexOf(this.node.type) > -1;\n\t}\n\n\tfunction visit() {\n\t  if (!this.node) {\n\t    return false;\n\t  }\n\n\t  if (this.isBlacklisted()) {\n\t    return false;\n\t  }\n\n\t  if (this.opts.shouldSkip && this.opts.shouldSkip(this)) {\n\t    return false;\n\t  }\n\n\t  if (this.call(\"enter\") || this.shouldSkip) {\n\t    this.debug(function () {\n\t      return \"Skip...\";\n\t    });\n\t    return this.shouldStop;\n\t  }\n\n\t  this.debug(function () {\n\t    return \"Recursing into...\";\n\t  });\n\t  _index2.default.node(this.node, this.opts, this.scope, this.state, this, this.skipKeys);\n\n\t  this.call(\"exit\");\n\n\t  return this.shouldStop;\n\t}\n\n\tfunction skip() {\n\t  this.shouldSkip = true;\n\t}\n\n\tfunction skipKey(key) {\n\t  this.skipKeys[key] = true;\n\t}\n\n\tfunction stop() {\n\t  this.shouldStop = true;\n\t  this.shouldSkip = true;\n\t}\n\n\tfunction setScope() {\n\t  if (this.opts && this.opts.noScope) return;\n\n\t  var target = this.context && this.context.scope;\n\n\t  if (!target) {\n\t    var path = this.parentPath;\n\t    while (path && !target) {\n\t      if (path.opts && path.opts.noScope) return;\n\n\t      target = path.scope;\n\t      path = path.parentPath;\n\t    }\n\t  }\n\n\t  this.scope = this.getScope(target);\n\t  if (this.scope) this.scope.init();\n\t}\n\n\tfunction setContext(context) {\n\t  this.shouldSkip = false;\n\t  this.shouldStop = false;\n\t  this.removed = false;\n\t  this.skipKeys = {};\n\n\t  if (context) {\n\t    this.context = context;\n\t    this.state = context.state;\n\t    this.opts = context.opts;\n\t  }\n\n\t  this.setScope();\n\n\t  return this;\n\t}\n\n\tfunction resync() {\n\t  if (this.removed) return;\n\n\t  this._resyncParent();\n\t  this._resyncList();\n\t  this._resyncKey();\n\t}\n\n\tfunction _resyncParent() {\n\t  if (this.parentPath) {\n\t    this.parent = this.parentPath.node;\n\t  }\n\t}\n\n\tfunction _resyncKey() {\n\t  if (!this.container) return;\n\n\t  if (this.node === this.container[this.key]) return;\n\n\t  if (Array.isArray(this.container)) {\n\t    for (var i = 0; i < this.container.length; i++) {\n\t      if (this.container[i] === this.node) {\n\t        return this.setKey(i);\n\t      }\n\t    }\n\t  } else {\n\t    for (var key in this.container) {\n\t      if (this.container[key] === this.node) {\n\t        return this.setKey(key);\n\t      }\n\t    }\n\t  }\n\n\t  this.key = null;\n\t}\n\n\tfunction _resyncList() {\n\t  if (!this.parent || !this.inList) return;\n\n\t  var newContainer = this.parent[this.listKey];\n\t  if (this.container === newContainer) return;\n\n\t  this.container = newContainer || null;\n\t}\n\n\tfunction _resyncRemoved() {\n\t  if (this.key == null || !this.container || this.container[this.key] !== this.node) {\n\t    this._markRemoved();\n\t  }\n\t}\n\n\tfunction popContext() {\n\t  this.contexts.pop();\n\t  this.setContext(this.contexts[this.contexts.length - 1]);\n\t}\n\n\tfunction pushContext(context) {\n\t  this.contexts.push(context);\n\t  this.setContext(context);\n\t}\n\n\tfunction setup(parentPath, container, listKey, key) {\n\t  this.inList = !!listKey;\n\t  this.listKey = listKey;\n\t  this.parentKey = listKey || key;\n\t  this.container = container;\n\n\t  this.parentPath = parentPath || this.parentPath;\n\t  this.setKey(key);\n\t}\n\n\tfunction setKey(key) {\n\t  this.key = key;\n\t  this.node = this.container[this.key];\n\t  this.type = this.node && this.node.type;\n\t}\n\n\tfunction requeue() {\n\t  var pathToQueue = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this;\n\n\t  if (pathToQueue.removed) return;\n\n\t  var contexts = this.contexts;\n\n\t  for (var _iterator2 = contexts, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t    var _ref2;\n\n\t    if (_isArray2) {\n\t      if (_i2 >= _iterator2.length) break;\n\t      _ref2 = _iterator2[_i2++];\n\t    } else {\n\t      _i2 = _iterator2.next();\n\t      if (_i2.done) break;\n\t      _ref2 = _i2.value;\n\t    }\n\n\t    var context = _ref2;\n\n\t    context.maybeQueue(pathToQueue);\n\t  }\n\t}\n\n\tfunction _getQueueContexts() {\n\t  var path = this;\n\t  var contexts = this.contexts;\n\t  while (!contexts.length) {\n\t    path = path.parentPath;\n\t    contexts = path.contexts;\n\t  }\n\t  return contexts;\n\t}\n\n/***/ }),\n/* 371 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.toComputedKey = toComputedKey;\n\texports.ensureBlock = ensureBlock;\n\texports.arrowFunctionToShadowed = arrowFunctionToShadowed;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction toComputedKey() {\n\t  var node = this.node;\n\n\t  var key = void 0;\n\t  if (this.isMemberExpression()) {\n\t    key = node.property;\n\t  } else if (this.isProperty() || this.isMethod()) {\n\t    key = node.key;\n\t  } else {\n\t    throw new ReferenceError(\"todo\");\n\t  }\n\n\t  if (!node.computed) {\n\t    if (t.isIdentifier(key)) key = t.stringLiteral(key.name);\n\t  }\n\n\t  return key;\n\t}\n\n\tfunction ensureBlock() {\n\t  return t.ensureBlock(this.node);\n\t}\n\n\tfunction arrowFunctionToShadowed() {\n\t  if (!this.isArrowFunctionExpression()) return;\n\n\t  this.ensureBlock();\n\n\t  var node = this.node;\n\n\t  node.expression = false;\n\t  node.type = \"FunctionExpression\";\n\t  node.shadow = node.shadow || true;\n\t}\n\n/***/ }),\n/* 372 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(global) {\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _map = __webpack_require__(133);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\texports.evaluateTruthy = evaluateTruthy;\n\texports.evaluate = evaluate;\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar VALID_CALLEES = [\"String\", \"Number\", \"Math\"];\n\tvar INVALID_METHODS = [\"random\"];\n\n\tfunction evaluateTruthy() {\n\t  var res = this.evaluate();\n\t  if (res.confident) return !!res.value;\n\t}\n\n\tfunction evaluate() {\n\t  var confident = true;\n\t  var deoptPath = void 0;\n\t  var seen = new _map2.default();\n\n\t  function deopt(path) {\n\t    if (!confident) return;\n\t    deoptPath = path;\n\t    confident = false;\n\t  }\n\n\t  var value = evaluate(this);\n\t  if (!confident) value = undefined;\n\t  return {\n\t    confident: confident,\n\t    deopt: deoptPath,\n\t    value: value\n\t  };\n\n\t  function evaluate(path) {\n\t    var node = path.node;\n\n\t    if (seen.has(node)) {\n\t      var existing = seen.get(node);\n\t      if (existing.resolved) {\n\t        return existing.value;\n\t      } else {\n\t        deopt(path);\n\t        return;\n\t      }\n\t    } else {\n\t      var item = { resolved: false };\n\t      seen.set(node, item);\n\n\t      var val = _evaluate(path);\n\t      if (confident) {\n\t        item.resolved = true;\n\t        item.value = val;\n\t      }\n\t      return val;\n\t    }\n\t  }\n\n\t  function _evaluate(path) {\n\t    if (!confident) return;\n\n\t    var node = path.node;\n\n\t    if (path.isSequenceExpression()) {\n\t      var exprs = path.get(\"expressions\");\n\t      return evaluate(exprs[exprs.length - 1]);\n\t    }\n\n\t    if (path.isStringLiteral() || path.isNumericLiteral() || path.isBooleanLiteral()) {\n\t      return node.value;\n\t    }\n\n\t    if (path.isNullLiteral()) {\n\t      return null;\n\t    }\n\n\t    if (path.isTemplateLiteral()) {\n\t      var str = \"\";\n\n\t      var i = 0;\n\t      var _exprs = path.get(\"expressions\");\n\n\t      for (var _iterator = node.quasis, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref = _i.value;\n\t        }\n\n\t        var elem = _ref;\n\n\t        if (!confident) break;\n\n\t        str += elem.value.cooked;\n\n\t        var expr = _exprs[i++];\n\t        if (expr) str += String(evaluate(expr));\n\t      }\n\n\t      if (!confident) return;\n\t      return str;\n\t    }\n\n\t    if (path.isConditionalExpression()) {\n\t      var testResult = evaluate(path.get(\"test\"));\n\t      if (!confident) return;\n\t      if (testResult) {\n\t        return evaluate(path.get(\"consequent\"));\n\t      } else {\n\t        return evaluate(path.get(\"alternate\"));\n\t      }\n\t    }\n\n\t    if (path.isExpressionWrapper()) {\n\t      return evaluate(path.get(\"expression\"));\n\t    }\n\n\t    if (path.isMemberExpression() && !path.parentPath.isCallExpression({ callee: node })) {\n\t      var property = path.get(\"property\");\n\t      var object = path.get(\"object\");\n\n\t      if (object.isLiteral() && property.isIdentifier()) {\n\t        var _value = object.node.value;\n\t        var type = typeof _value === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(_value);\n\t        if (type === \"number\" || type === \"string\") {\n\t          return _value[property.node.name];\n\t        }\n\t      }\n\t    }\n\n\t    if (path.isReferencedIdentifier()) {\n\t      var binding = path.scope.getBinding(node.name);\n\n\t      if (binding && binding.constantViolations.length > 0) {\n\t        return deopt(binding.path);\n\t      }\n\n\t      if (binding && path.node.start < binding.path.node.end) {\n\t        return deopt(binding.path);\n\t      }\n\n\t      if (binding && binding.hasValue) {\n\t        return binding.value;\n\t      } else {\n\t        if (node.name === \"undefined\") {\n\t          return binding ? deopt(binding.path) : undefined;\n\t        } else if (node.name === \"Infinity\") {\n\t          return binding ? deopt(binding.path) : Infinity;\n\t        } else if (node.name === \"NaN\") {\n\t          return binding ? deopt(binding.path) : NaN;\n\t        }\n\n\t        var resolved = path.resolve();\n\t        if (resolved === path) {\n\t          return deopt(path);\n\t        } else {\n\t          return evaluate(resolved);\n\t        }\n\t      }\n\t    }\n\n\t    if (path.isUnaryExpression({ prefix: true })) {\n\t      if (node.operator === \"void\") {\n\t        return undefined;\n\t      }\n\n\t      var argument = path.get(\"argument\");\n\t      if (node.operator === \"typeof\" && (argument.isFunction() || argument.isClass())) {\n\t        return \"function\";\n\t      }\n\n\t      var arg = evaluate(argument);\n\t      if (!confident) return;\n\t      switch (node.operator) {\n\t        case \"!\":\n\t          return !arg;\n\t        case \"+\":\n\t          return +arg;\n\t        case \"-\":\n\t          return -arg;\n\t        case \"~\":\n\t          return ~arg;\n\t        case \"typeof\":\n\t          return typeof arg === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(arg);\n\t      }\n\t    }\n\n\t    if (path.isArrayExpression()) {\n\t      var arr = [];\n\t      var elems = path.get(\"elements\");\n\t      for (var _iterator2 = elems, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t        var _ref2;\n\n\t        if (_isArray2) {\n\t          if (_i2 >= _iterator2.length) break;\n\t          _ref2 = _iterator2[_i2++];\n\t        } else {\n\t          _i2 = _iterator2.next();\n\t          if (_i2.done) break;\n\t          _ref2 = _i2.value;\n\t        }\n\n\t        var _elem = _ref2;\n\n\t        _elem = _elem.evaluate();\n\n\t        if (_elem.confident) {\n\t          arr.push(_elem.value);\n\t        } else {\n\t          return deopt(_elem);\n\t        }\n\t      }\n\t      return arr;\n\t    }\n\n\t    if (path.isObjectExpression()) {\n\t      var obj = {};\n\t      var props = path.get(\"properties\");\n\t      for (var _iterator3 = props, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t        var _ref3;\n\n\t        if (_isArray3) {\n\t          if (_i3 >= _iterator3.length) break;\n\t          _ref3 = _iterator3[_i3++];\n\t        } else {\n\t          _i3 = _iterator3.next();\n\t          if (_i3.done) break;\n\t          _ref3 = _i3.value;\n\t        }\n\n\t        var prop = _ref3;\n\n\t        if (prop.isObjectMethod() || prop.isSpreadProperty()) {\n\t          return deopt(prop);\n\t        }\n\t        var keyPath = prop.get(\"key\");\n\t        var key = keyPath;\n\t        if (prop.node.computed) {\n\t          key = key.evaluate();\n\t          if (!key.confident) {\n\t            return deopt(keyPath);\n\t          }\n\t          key = key.value;\n\t        } else if (key.isIdentifier()) {\n\t          key = key.node.name;\n\t        } else {\n\t          key = key.node.value;\n\t        }\n\t        var valuePath = prop.get(\"value\");\n\t        var _value2 = valuePath.evaluate();\n\t        if (!_value2.confident) {\n\t          return deopt(valuePath);\n\t        }\n\t        _value2 = _value2.value;\n\t        obj[key] = _value2;\n\t      }\n\t      return obj;\n\t    }\n\n\t    if (path.isLogicalExpression()) {\n\t      var wasConfident = confident;\n\t      var left = evaluate(path.get(\"left\"));\n\t      var leftConfident = confident;\n\t      confident = wasConfident;\n\t      var right = evaluate(path.get(\"right\"));\n\t      var rightConfident = confident;\n\t      confident = leftConfident && rightConfident;\n\n\t      switch (node.operator) {\n\t        case \"||\":\n\t          if (left && leftConfident) {\n\t            confident = true;\n\t            return left;\n\t          }\n\n\t          if (!confident) return;\n\n\t          return left || right;\n\t        case \"&&\":\n\t          if (!left && leftConfident || !right && rightConfident) {\n\t            confident = true;\n\t          }\n\n\t          if (!confident) return;\n\n\t          return left && right;\n\t      }\n\t    }\n\n\t    if (path.isBinaryExpression()) {\n\t      var _left = evaluate(path.get(\"left\"));\n\t      if (!confident) return;\n\t      var _right = evaluate(path.get(\"right\"));\n\t      if (!confident) return;\n\n\t      switch (node.operator) {\n\t        case \"-\":\n\t          return _left - _right;\n\t        case \"+\":\n\t          return _left + _right;\n\t        case \"/\":\n\t          return _left / _right;\n\t        case \"*\":\n\t          return _left * _right;\n\t        case \"%\":\n\t          return _left % _right;\n\t        case \"**\":\n\t          return Math.pow(_left, _right);\n\t        case \"<\":\n\t          return _left < _right;\n\t        case \">\":\n\t          return _left > _right;\n\t        case \"<=\":\n\t          return _left <= _right;\n\t        case \">=\":\n\t          return _left >= _right;\n\t        case \"==\":\n\t          return _left == _right;\n\t        case \"!=\":\n\t          return _left != _right;\n\t        case \"===\":\n\t          return _left === _right;\n\t        case \"!==\":\n\t          return _left !== _right;\n\t        case \"|\":\n\t          return _left | _right;\n\t        case \"&\":\n\t          return _left & _right;\n\t        case \"^\":\n\t          return _left ^ _right;\n\t        case \"<<\":\n\t          return _left << _right;\n\t        case \">>\":\n\t          return _left >> _right;\n\t        case \">>>\":\n\t          return _left >>> _right;\n\t      }\n\t    }\n\n\t    if (path.isCallExpression()) {\n\t      var callee = path.get(\"callee\");\n\t      var context = void 0;\n\t      var func = void 0;\n\n\t      if (callee.isIdentifier() && !path.scope.getBinding(callee.node.name, true) && VALID_CALLEES.indexOf(callee.node.name) >= 0) {\n\t        func = global[node.callee.name];\n\t      }\n\n\t      if (callee.isMemberExpression()) {\n\t        var _object = callee.get(\"object\");\n\t        var _property = callee.get(\"property\");\n\n\t        if (_object.isIdentifier() && _property.isIdentifier() && VALID_CALLEES.indexOf(_object.node.name) >= 0 && INVALID_METHODS.indexOf(_property.node.name) < 0) {\n\t          context = global[_object.node.name];\n\t          func = context[_property.node.name];\n\t        }\n\n\t        if (_object.isLiteral() && _property.isIdentifier()) {\n\t          var _type = (0, _typeof3.default)(_object.node.value);\n\t          if (_type === \"string\" || _type === \"number\") {\n\t            context = _object.node.value;\n\t            func = context[_property.node.name];\n\t          }\n\t        }\n\t      }\n\n\t      if (func) {\n\t        var args = path.get(\"arguments\").map(evaluate);\n\t        if (!confident) return;\n\n\t        return func.apply(context, args);\n\t      }\n\t    }\n\n\t    deopt(path);\n\t  }\n\t}\n\t/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))\n\n/***/ }),\n/* 373 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.getStatementParent = getStatementParent;\n\texports.getOpposite = getOpposite;\n\texports.getCompletionRecords = getCompletionRecords;\n\texports.getSibling = getSibling;\n\texports.getPrevSibling = getPrevSibling;\n\texports.getNextSibling = getNextSibling;\n\texports.getAllNextSiblings = getAllNextSiblings;\n\texports.getAllPrevSiblings = getAllPrevSiblings;\n\texports.get = get;\n\texports._getKey = _getKey;\n\texports._getPattern = _getPattern;\n\texports.getBindingIdentifiers = getBindingIdentifiers;\n\texports.getOuterBindingIdentifiers = getOuterBindingIdentifiers;\n\texports.getBindingIdentifierPaths = getBindingIdentifierPaths;\n\texports.getOuterBindingIdentifierPaths = getOuterBindingIdentifierPaths;\n\n\tvar _index = __webpack_require__(36);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction getStatementParent() {\n\t  var path = this;\n\n\t  do {\n\t    if (!path.parentPath || Array.isArray(path.container) && path.isStatement()) {\n\t      break;\n\t    } else {\n\t      path = path.parentPath;\n\t    }\n\t  } while (path);\n\n\t  if (path && (path.isProgram() || path.isFile())) {\n\t    throw new Error(\"File/Program node, we can't possibly find a statement parent to this\");\n\t  }\n\n\t  return path;\n\t}\n\n\tfunction getOpposite() {\n\t  if (this.key === \"left\") {\n\t    return this.getSibling(\"right\");\n\t  } else if (this.key === \"right\") {\n\t    return this.getSibling(\"left\");\n\t  }\n\t}\n\n\tfunction getCompletionRecords() {\n\t  var paths = [];\n\n\t  var add = function add(path) {\n\t    if (path) paths = paths.concat(path.getCompletionRecords());\n\t  };\n\n\t  if (this.isIfStatement()) {\n\t    add(this.get(\"consequent\"));\n\t    add(this.get(\"alternate\"));\n\t  } else if (this.isDoExpression() || this.isFor() || this.isWhile()) {\n\t    add(this.get(\"body\"));\n\t  } else if (this.isProgram() || this.isBlockStatement()) {\n\t    add(this.get(\"body\").pop());\n\t  } else if (this.isFunction()) {\n\t    return this.get(\"body\").getCompletionRecords();\n\t  } else if (this.isTryStatement()) {\n\t    add(this.get(\"block\"));\n\t    add(this.get(\"handler\"));\n\t    add(this.get(\"finalizer\"));\n\t  } else {\n\t    paths.push(this);\n\t  }\n\n\t  return paths;\n\t}\n\n\tfunction getSibling(key) {\n\t  return _index2.default.get({\n\t    parentPath: this.parentPath,\n\t    parent: this.parent,\n\t    container: this.container,\n\t    listKey: this.listKey,\n\t    key: key\n\t  });\n\t}\n\n\tfunction getPrevSibling() {\n\t  return this.getSibling(this.key - 1);\n\t}\n\n\tfunction getNextSibling() {\n\t  return this.getSibling(this.key + 1);\n\t}\n\n\tfunction getAllNextSiblings() {\n\t  var _key = this.key;\n\t  var sibling = this.getSibling(++_key);\n\t  var siblings = [];\n\t  while (sibling.node) {\n\t    siblings.push(sibling);\n\t    sibling = this.getSibling(++_key);\n\t  }\n\t  return siblings;\n\t}\n\n\tfunction getAllPrevSiblings() {\n\t  var _key = this.key;\n\t  var sibling = this.getSibling(--_key);\n\t  var siblings = [];\n\t  while (sibling.node) {\n\t    siblings.push(sibling);\n\t    sibling = this.getSibling(--_key);\n\t  }\n\t  return siblings;\n\t}\n\n\tfunction get(key, context) {\n\t  if (context === true) context = this.context;\n\t  var parts = key.split(\".\");\n\t  if (parts.length === 1) {\n\t    return this._getKey(key, context);\n\t  } else {\n\t    return this._getPattern(parts, context);\n\t  }\n\t}\n\n\tfunction _getKey(key, context) {\n\t  var _this = this;\n\n\t  var node = this.node;\n\t  var container = node[key];\n\n\t  if (Array.isArray(container)) {\n\t    return container.map(function (_, i) {\n\t      return _index2.default.get({\n\t        listKey: key,\n\t        parentPath: _this,\n\t        parent: node,\n\t        container: container,\n\t        key: i\n\t      }).setContext(context);\n\t    });\n\t  } else {\n\t    return _index2.default.get({\n\t      parentPath: this,\n\t      parent: node,\n\t      container: node,\n\t      key: key\n\t    }).setContext(context);\n\t  }\n\t}\n\n\tfunction _getPattern(parts, context) {\n\t  var path = this;\n\t  for (var _iterator = parts, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var part = _ref;\n\n\t    if (part === \".\") {\n\t      path = path.parentPath;\n\t    } else {\n\t      if (Array.isArray(path)) {\n\t        path = path[part];\n\t      } else {\n\t        path = path.get(part, context);\n\t      }\n\t    }\n\t  }\n\t  return path;\n\t}\n\n\tfunction getBindingIdentifiers(duplicates) {\n\t  return t.getBindingIdentifiers(this.node, duplicates);\n\t}\n\n\tfunction getOuterBindingIdentifiers(duplicates) {\n\t  return t.getOuterBindingIdentifiers(this.node, duplicates);\n\t}\n\n\tfunction getBindingIdentifierPaths() {\n\t  var duplicates = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;\n\t  var outerOnly = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t  var path = this;\n\t  var search = [].concat(path);\n\t  var ids = (0, _create2.default)(null);\n\n\t  while (search.length) {\n\t    var id = search.shift();\n\t    if (!id) continue;\n\t    if (!id.node) continue;\n\n\t    var keys = t.getBindingIdentifiers.keys[id.node.type];\n\n\t    if (id.isIdentifier()) {\n\t      if (duplicates) {\n\t        var _ids = ids[id.node.name] = ids[id.node.name] || [];\n\t        _ids.push(id);\n\t      } else {\n\t        ids[id.node.name] = id;\n\t      }\n\t      continue;\n\t    }\n\n\t    if (id.isExportDeclaration()) {\n\t      var declaration = id.get(\"declaration\");\n\t      if (declaration.isDeclaration()) {\n\t        search.push(declaration);\n\t      }\n\t      continue;\n\t    }\n\n\t    if (outerOnly) {\n\t      if (id.isFunctionDeclaration()) {\n\t        search.push(id.get(\"id\"));\n\t        continue;\n\t      }\n\t      if (id.isFunctionExpression()) {\n\t        continue;\n\t      }\n\t    }\n\n\t    if (keys) {\n\t      for (var i = 0; i < keys.length; i++) {\n\t        var key = keys[i];\n\t        var child = id.get(key);\n\t        if (Array.isArray(child) || child.node) {\n\t          search = search.concat(child);\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  return ids;\n\t}\n\n\tfunction getOuterBindingIdentifierPaths(duplicates) {\n\t  return this.getBindingIdentifierPaths(duplicates, true);\n\t}\n\n/***/ }),\n/* 374 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.getTypeAnnotation = getTypeAnnotation;\n\texports._getTypeAnnotation = _getTypeAnnotation;\n\texports.isBaseType = isBaseType;\n\texports.couldBeBaseType = couldBeBaseType;\n\texports.baseTypeStrictlyMatches = baseTypeStrictlyMatches;\n\texports.isGenericType = isGenericType;\n\n\tvar _inferers = __webpack_require__(376);\n\n\tvar inferers = _interopRequireWildcard(_inferers);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction getTypeAnnotation() {\n\t  if (this.typeAnnotation) return this.typeAnnotation;\n\n\t  var type = this._getTypeAnnotation() || t.anyTypeAnnotation();\n\t  if (t.isTypeAnnotation(type)) type = type.typeAnnotation;\n\t  return this.typeAnnotation = type;\n\t}\n\n\tfunction _getTypeAnnotation() {\n\t  var node = this.node;\n\n\t  if (!node) {\n\t    if (this.key === \"init\" && this.parentPath.isVariableDeclarator()) {\n\t      var declar = this.parentPath.parentPath;\n\t      var declarParent = declar.parentPath;\n\n\t      if (declar.key === \"left\" && declarParent.isForInStatement()) {\n\t        return t.stringTypeAnnotation();\n\t      }\n\n\t      if (declar.key === \"left\" && declarParent.isForOfStatement()) {\n\t        return t.anyTypeAnnotation();\n\t      }\n\n\t      return t.voidTypeAnnotation();\n\t    } else {\n\t      return;\n\t    }\n\t  }\n\n\t  if (node.typeAnnotation) {\n\t    return node.typeAnnotation;\n\t  }\n\n\t  var inferer = inferers[node.type];\n\t  if (inferer) {\n\t    return inferer.call(this, node);\n\t  }\n\n\t  inferer = inferers[this.parentPath.type];\n\t  if (inferer && inferer.validParent) {\n\t    return this.parentPath.getTypeAnnotation();\n\t  }\n\t}\n\n\tfunction isBaseType(baseName, soft) {\n\t  return _isBaseType(baseName, this.getTypeAnnotation(), soft);\n\t}\n\n\tfunction _isBaseType(baseName, type, soft) {\n\t  if (baseName === \"string\") {\n\t    return t.isStringTypeAnnotation(type);\n\t  } else if (baseName === \"number\") {\n\t    return t.isNumberTypeAnnotation(type);\n\t  } else if (baseName === \"boolean\") {\n\t    return t.isBooleanTypeAnnotation(type);\n\t  } else if (baseName === \"any\") {\n\t    return t.isAnyTypeAnnotation(type);\n\t  } else if (baseName === \"mixed\") {\n\t    return t.isMixedTypeAnnotation(type);\n\t  } else if (baseName === \"empty\") {\n\t    return t.isEmptyTypeAnnotation(type);\n\t  } else if (baseName === \"void\") {\n\t    return t.isVoidTypeAnnotation(type);\n\t  } else {\n\t    if (soft) {\n\t      return false;\n\t    } else {\n\t      throw new Error(\"Unknown base type \" + baseName);\n\t    }\n\t  }\n\t}\n\n\tfunction couldBeBaseType(name) {\n\t  var type = this.getTypeAnnotation();\n\t  if (t.isAnyTypeAnnotation(type)) return true;\n\n\t  if (t.isUnionTypeAnnotation(type)) {\n\t    for (var _iterator = type.types, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var type2 = _ref;\n\n\t      if (t.isAnyTypeAnnotation(type2) || _isBaseType(name, type2, true)) {\n\t        return true;\n\t      }\n\t    }\n\t    return false;\n\t  } else {\n\t    return _isBaseType(name, type, true);\n\t  }\n\t}\n\n\tfunction baseTypeStrictlyMatches(right) {\n\t  var left = this.getTypeAnnotation();\n\t  right = right.getTypeAnnotation();\n\n\t  if (!t.isAnyTypeAnnotation(left) && t.isFlowBaseAnnotation(left)) {\n\t    return right.type === left.type;\n\t  }\n\t}\n\n\tfunction isGenericType(genericName) {\n\t  var type = this.getTypeAnnotation();\n\t  return t.isGenericTypeAnnotation(type) && t.isIdentifier(type.id, { name: genericName });\n\t}\n\n/***/ }),\n/* 375 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (node) {\n\t  if (!this.isReferenced()) return;\n\n\t  var binding = this.scope.getBinding(node.name);\n\t  if (binding) {\n\t    if (binding.identifier.typeAnnotation) {\n\t      return binding.identifier.typeAnnotation;\n\t    } else {\n\t      return getTypeAnnotationBindingConstantViolations(this, node.name);\n\t    }\n\t  }\n\n\t  if (node.name === \"undefined\") {\n\t    return t.voidTypeAnnotation();\n\t  } else if (node.name === \"NaN\" || node.name === \"Infinity\") {\n\t    return t.numberTypeAnnotation();\n\t  } else if (node.name === \"arguments\") {}\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction getTypeAnnotationBindingConstantViolations(path, name) {\n\t  var binding = path.scope.getBinding(name);\n\n\t  var types = [];\n\t  path.typeAnnotation = t.unionTypeAnnotation(types);\n\n\t  var functionConstantViolations = [];\n\t  var constantViolations = getConstantViolationsBefore(binding, path, functionConstantViolations);\n\n\t  var testType = getConditionalAnnotation(path, name);\n\t  if (testType) {\n\t    var testConstantViolations = getConstantViolationsBefore(binding, testType.ifStatement);\n\n\t    constantViolations = constantViolations.filter(function (path) {\n\t      return testConstantViolations.indexOf(path) < 0;\n\t    });\n\n\t    types.push(testType.typeAnnotation);\n\t  }\n\n\t  if (constantViolations.length) {\n\t    constantViolations = constantViolations.concat(functionConstantViolations);\n\n\t    for (var _iterator = constantViolations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var violation = _ref;\n\n\t      types.push(violation.getTypeAnnotation());\n\t    }\n\t  }\n\n\t  if (types.length) {\n\t    return t.createUnionTypeAnnotation(types);\n\t  }\n\t}\n\n\tfunction getConstantViolationsBefore(binding, path, functions) {\n\t  var violations = binding.constantViolations.slice();\n\t  violations.unshift(binding.path);\n\t  return violations.filter(function (violation) {\n\t    violation = violation.resolve();\n\t    var status = violation._guessExecutionStatusRelativeTo(path);\n\t    if (functions && status === \"function\") functions.push(violation);\n\t    return status === \"before\";\n\t  });\n\t}\n\n\tfunction inferAnnotationFromBinaryExpression(name, path) {\n\t  var operator = path.node.operator;\n\n\t  var right = path.get(\"right\").resolve();\n\t  var left = path.get(\"left\").resolve();\n\n\t  var target = void 0;\n\t  if (left.isIdentifier({ name: name })) {\n\t    target = right;\n\t  } else if (right.isIdentifier({ name: name })) {\n\t    target = left;\n\t  }\n\t  if (target) {\n\t    if (operator === \"===\") {\n\t      return target.getTypeAnnotation();\n\t    } else if (t.BOOLEAN_NUMBER_BINARY_OPERATORS.indexOf(operator) >= 0) {\n\t      return t.numberTypeAnnotation();\n\t    } else {\n\t      return;\n\t    }\n\t  } else {\n\t    if (operator !== \"===\") return;\n\t  }\n\n\t  var typeofPath = void 0;\n\t  var typePath = void 0;\n\t  if (left.isUnaryExpression({ operator: \"typeof\" })) {\n\t    typeofPath = left;\n\t    typePath = right;\n\t  } else if (right.isUnaryExpression({ operator: \"typeof\" })) {\n\t    typeofPath = right;\n\t    typePath = left;\n\t  }\n\t  if (!typePath && !typeofPath) return;\n\n\t  typePath = typePath.resolve();\n\t  if (!typePath.isLiteral()) return;\n\n\t  var typeValue = typePath.node.value;\n\t  if (typeof typeValue !== \"string\") return;\n\n\t  if (!typeofPath.get(\"argument\").isIdentifier({ name: name })) return;\n\n\t  return t.createTypeAnnotationBasedOnTypeof(typePath.node.value);\n\t}\n\n\tfunction getParentConditionalPath(path) {\n\t  var parentPath = void 0;\n\t  while (parentPath = path.parentPath) {\n\t    if (parentPath.isIfStatement() || parentPath.isConditionalExpression()) {\n\t      if (path.key === \"test\") {\n\t        return;\n\t      } else {\n\t        return parentPath;\n\t      }\n\t    } else {\n\t      path = parentPath;\n\t    }\n\t  }\n\t}\n\n\tfunction getConditionalAnnotation(path, name) {\n\t  var ifStatement = getParentConditionalPath(path);\n\t  if (!ifStatement) return;\n\n\t  var test = ifStatement.get(\"test\");\n\t  var paths = [test];\n\t  var types = [];\n\n\t  do {\n\t    var _path = paths.shift().resolve();\n\n\t    if (_path.isLogicalExpression()) {\n\t      paths.push(_path.get(\"left\"));\n\t      paths.push(_path.get(\"right\"));\n\t    }\n\n\t    if (_path.isBinaryExpression()) {\n\t      var type = inferAnnotationFromBinaryExpression(name, _path);\n\t      if (type) types.push(type);\n\t    }\n\t  } while (paths.length);\n\n\t  if (types.length) {\n\t    return {\n\t      typeAnnotation: t.createUnionTypeAnnotation(types),\n\t      ifStatement: ifStatement\n\t    };\n\t  } else {\n\t    return getConditionalAnnotation(ifStatement, name);\n\t  }\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 376 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.ClassDeclaration = exports.ClassExpression = exports.FunctionDeclaration = exports.ArrowFunctionExpression = exports.FunctionExpression = exports.Identifier = undefined;\n\n\tvar _infererReference = __webpack_require__(375);\n\n\tObject.defineProperty(exports, \"Identifier\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_infererReference).default;\n\t  }\n\t});\n\texports.VariableDeclarator = VariableDeclarator;\n\texports.TypeCastExpression = TypeCastExpression;\n\texports.NewExpression = NewExpression;\n\texports.TemplateLiteral = TemplateLiteral;\n\texports.UnaryExpression = UnaryExpression;\n\texports.BinaryExpression = BinaryExpression;\n\texports.LogicalExpression = LogicalExpression;\n\texports.ConditionalExpression = ConditionalExpression;\n\texports.SequenceExpression = SequenceExpression;\n\texports.AssignmentExpression = AssignmentExpression;\n\texports.UpdateExpression = UpdateExpression;\n\texports.StringLiteral = StringLiteral;\n\texports.NumericLiteral = NumericLiteral;\n\texports.BooleanLiteral = BooleanLiteral;\n\texports.NullLiteral = NullLiteral;\n\texports.RegExpLiteral = RegExpLiteral;\n\texports.ObjectExpression = ObjectExpression;\n\texports.ArrayExpression = ArrayExpression;\n\texports.RestElement = RestElement;\n\texports.CallExpression = CallExpression;\n\texports.TaggedTemplateExpression = TaggedTemplateExpression;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction VariableDeclarator() {\n\t  var id = this.get(\"id\");\n\n\t  if (id.isIdentifier()) {\n\t    return this.get(\"init\").getTypeAnnotation();\n\t  } else {\n\t    return;\n\t  }\n\t}\n\n\tfunction TypeCastExpression(node) {\n\t  return node.typeAnnotation;\n\t}\n\n\tTypeCastExpression.validParent = true;\n\n\tfunction NewExpression(node) {\n\t  if (this.get(\"callee\").isIdentifier()) {\n\t    return t.genericTypeAnnotation(node.callee);\n\t  }\n\t}\n\n\tfunction TemplateLiteral() {\n\t  return t.stringTypeAnnotation();\n\t}\n\n\tfunction UnaryExpression(node) {\n\t  var operator = node.operator;\n\n\t  if (operator === \"void\") {\n\t    return t.voidTypeAnnotation();\n\t  } else if (t.NUMBER_UNARY_OPERATORS.indexOf(operator) >= 0) {\n\t    return t.numberTypeAnnotation();\n\t  } else if (t.STRING_UNARY_OPERATORS.indexOf(operator) >= 0) {\n\t    return t.stringTypeAnnotation();\n\t  } else if (t.BOOLEAN_UNARY_OPERATORS.indexOf(operator) >= 0) {\n\t    return t.booleanTypeAnnotation();\n\t  }\n\t}\n\n\tfunction BinaryExpression(node) {\n\t  var operator = node.operator;\n\n\t  if (t.NUMBER_BINARY_OPERATORS.indexOf(operator) >= 0) {\n\t    return t.numberTypeAnnotation();\n\t  } else if (t.BOOLEAN_BINARY_OPERATORS.indexOf(operator) >= 0) {\n\t    return t.booleanTypeAnnotation();\n\t  } else if (operator === \"+\") {\n\t    var right = this.get(\"right\");\n\t    var left = this.get(\"left\");\n\n\t    if (left.isBaseType(\"number\") && right.isBaseType(\"number\")) {\n\t      return t.numberTypeAnnotation();\n\t    } else if (left.isBaseType(\"string\") || right.isBaseType(\"string\")) {\n\t      return t.stringTypeAnnotation();\n\t    }\n\n\t    return t.unionTypeAnnotation([t.stringTypeAnnotation(), t.numberTypeAnnotation()]);\n\t  }\n\t}\n\n\tfunction LogicalExpression() {\n\t  return t.createUnionTypeAnnotation([this.get(\"left\").getTypeAnnotation(), this.get(\"right\").getTypeAnnotation()]);\n\t}\n\n\tfunction ConditionalExpression() {\n\t  return t.createUnionTypeAnnotation([this.get(\"consequent\").getTypeAnnotation(), this.get(\"alternate\").getTypeAnnotation()]);\n\t}\n\n\tfunction SequenceExpression() {\n\t  return this.get(\"expressions\").pop().getTypeAnnotation();\n\t}\n\n\tfunction AssignmentExpression() {\n\t  return this.get(\"right\").getTypeAnnotation();\n\t}\n\n\tfunction UpdateExpression(node) {\n\t  var operator = node.operator;\n\t  if (operator === \"++\" || operator === \"--\") {\n\t    return t.numberTypeAnnotation();\n\t  }\n\t}\n\n\tfunction StringLiteral() {\n\t  return t.stringTypeAnnotation();\n\t}\n\n\tfunction NumericLiteral() {\n\t  return t.numberTypeAnnotation();\n\t}\n\n\tfunction BooleanLiteral() {\n\t  return t.booleanTypeAnnotation();\n\t}\n\n\tfunction NullLiteral() {\n\t  return t.nullLiteralTypeAnnotation();\n\t}\n\n\tfunction RegExpLiteral() {\n\t  return t.genericTypeAnnotation(t.identifier(\"RegExp\"));\n\t}\n\n\tfunction ObjectExpression() {\n\t  return t.genericTypeAnnotation(t.identifier(\"Object\"));\n\t}\n\n\tfunction ArrayExpression() {\n\t  return t.genericTypeAnnotation(t.identifier(\"Array\"));\n\t}\n\n\tfunction RestElement() {\n\t  return ArrayExpression();\n\t}\n\n\tRestElement.validParent = true;\n\n\tfunction Func() {\n\t  return t.genericTypeAnnotation(t.identifier(\"Function\"));\n\t}\n\n\texports.FunctionExpression = Func;\n\texports.ArrowFunctionExpression = Func;\n\texports.FunctionDeclaration = Func;\n\texports.ClassExpression = Func;\n\texports.ClassDeclaration = Func;\n\tfunction CallExpression() {\n\t  return resolveCall(this.get(\"callee\"));\n\t}\n\n\tfunction TaggedTemplateExpression() {\n\t  return resolveCall(this.get(\"tag\"));\n\t}\n\n\tfunction resolveCall(callee) {\n\t  callee = callee.resolve();\n\n\t  if (callee.isFunction()) {\n\t    if (callee.is(\"async\")) {\n\t      if (callee.is(\"generator\")) {\n\t        return t.genericTypeAnnotation(t.identifier(\"AsyncIterator\"));\n\t      } else {\n\t        return t.genericTypeAnnotation(t.identifier(\"Promise\"));\n\t      }\n\t    } else {\n\t      if (callee.node.returnType) {\n\t        return callee.node.returnType;\n\t      } else {}\n\t    }\n\t  }\n\t}\n\n/***/ }),\n/* 377 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.is = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.matchesPattern = matchesPattern;\n\texports.has = has;\n\texports.isStatic = isStatic;\n\texports.isnt = isnt;\n\texports.equals = equals;\n\texports.isNodeType = isNodeType;\n\texports.canHaveVariableDeclarationOrExpression = canHaveVariableDeclarationOrExpression;\n\texports.canSwapBetweenExpressionAndStatement = canSwapBetweenExpressionAndStatement;\n\texports.isCompletionRecord = isCompletionRecord;\n\texports.isStatementOrBlock = isStatementOrBlock;\n\texports.referencesImport = referencesImport;\n\texports.getSource = getSource;\n\texports.willIMaybeExecuteBefore = willIMaybeExecuteBefore;\n\texports._guessExecutionStatusRelativeTo = _guessExecutionStatusRelativeTo;\n\texports._guessExecutionStatusRelativeToDifferentFunctions = _guessExecutionStatusRelativeToDifferentFunctions;\n\texports.resolve = resolve;\n\texports._resolve = _resolve;\n\n\tvar _includes = __webpack_require__(111);\n\n\tvar _includes2 = _interopRequireDefault(_includes);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction matchesPattern(pattern, allowPartial) {\n\t  if (!this.isMemberExpression()) return false;\n\n\t  var parts = pattern.split(\".\");\n\t  var search = [this.node];\n\t  var i = 0;\n\n\t  function matches(name) {\n\t    var part = parts[i];\n\t    return part === \"*\" || name === part;\n\t  }\n\n\t  while (search.length) {\n\t    var node = search.shift();\n\n\t    if (allowPartial && i === parts.length) {\n\t      return true;\n\t    }\n\n\t    if (t.isIdentifier(node)) {\n\t      if (!matches(node.name)) return false;\n\t    } else if (t.isLiteral(node)) {\n\t      if (!matches(node.value)) return false;\n\t    } else if (t.isMemberExpression(node)) {\n\t      if (node.computed && !t.isLiteral(node.property)) {\n\t        return false;\n\t      } else {\n\t        search.unshift(node.property);\n\t        search.unshift(node.object);\n\t        continue;\n\t      }\n\t    } else if (t.isThisExpression(node)) {\n\t      if (!matches(\"this\")) return false;\n\t    } else {\n\t      return false;\n\t    }\n\n\t    if (++i > parts.length) {\n\t      return false;\n\t    }\n\t  }\n\n\t  return i === parts.length;\n\t}\n\n\tfunction has(key) {\n\t  var val = this.node && this.node[key];\n\t  if (val && Array.isArray(val)) {\n\t    return !!val.length;\n\t  } else {\n\t    return !!val;\n\t  }\n\t}\n\n\tfunction isStatic() {\n\t  return this.scope.isStatic(this.node);\n\t}\n\n\tvar is = exports.is = has;\n\n\tfunction isnt(key) {\n\t  return !this.has(key);\n\t}\n\n\tfunction equals(key, value) {\n\t  return this.node[key] === value;\n\t}\n\n\tfunction isNodeType(type) {\n\t  return t.isType(this.type, type);\n\t}\n\n\tfunction canHaveVariableDeclarationOrExpression() {\n\t  return (this.key === \"init\" || this.key === \"left\") && this.parentPath.isFor();\n\t}\n\n\tfunction canSwapBetweenExpressionAndStatement(replacement) {\n\t  if (this.key !== \"body\" || !this.parentPath.isArrowFunctionExpression()) {\n\t    return false;\n\t  }\n\n\t  if (this.isExpression()) {\n\t    return t.isBlockStatement(replacement);\n\t  } else if (this.isBlockStatement()) {\n\t    return t.isExpression(replacement);\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction isCompletionRecord(allowInsideFunction) {\n\t  var path = this;\n\t  var first = true;\n\n\t  do {\n\t    var container = path.container;\n\n\t    if (path.isFunction() && !first) {\n\t      return !!allowInsideFunction;\n\t    }\n\n\t    first = false;\n\n\t    if (Array.isArray(container) && path.key !== container.length - 1) {\n\t      return false;\n\t    }\n\t  } while ((path = path.parentPath) && !path.isProgram());\n\n\t  return true;\n\t}\n\n\tfunction isStatementOrBlock() {\n\t  if (this.parentPath.isLabeledStatement() || t.isBlockStatement(this.container)) {\n\t    return false;\n\t  } else {\n\t    return (0, _includes2.default)(t.STATEMENT_OR_BLOCK_KEYS, this.key);\n\t  }\n\t}\n\n\tfunction referencesImport(moduleSource, importName) {\n\t  if (!this.isReferencedIdentifier()) return false;\n\n\t  var binding = this.scope.getBinding(this.node.name);\n\t  if (!binding || binding.kind !== \"module\") return false;\n\n\t  var path = binding.path;\n\t  var parent = path.parentPath;\n\t  if (!parent.isImportDeclaration()) return false;\n\n\t  if (parent.node.source.value === moduleSource) {\n\t    if (!importName) return true;\n\t  } else {\n\t    return false;\n\t  }\n\n\t  if (path.isImportDefaultSpecifier() && importName === \"default\") {\n\t    return true;\n\t  }\n\n\t  if (path.isImportNamespaceSpecifier() && importName === \"*\") {\n\t    return true;\n\t  }\n\n\t  if (path.isImportSpecifier() && path.node.imported.name === importName) {\n\t    return true;\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction getSource() {\n\t  var node = this.node;\n\t  if (node.end) {\n\t    return this.hub.file.code.slice(node.start, node.end);\n\t  } else {\n\t    return \"\";\n\t  }\n\t}\n\n\tfunction willIMaybeExecuteBefore(target) {\n\t  return this._guessExecutionStatusRelativeTo(target) !== \"after\";\n\t}\n\n\tfunction _guessExecutionStatusRelativeTo(target) {\n\t  var targetFuncParent = target.scope.getFunctionParent();\n\t  var selfFuncParent = this.scope.getFunctionParent();\n\n\t  if (targetFuncParent.node !== selfFuncParent.node) {\n\t    var status = this._guessExecutionStatusRelativeToDifferentFunctions(targetFuncParent);\n\t    if (status) {\n\t      return status;\n\t    } else {\n\t      target = targetFuncParent.path;\n\t    }\n\t  }\n\n\t  var targetPaths = target.getAncestry();\n\t  if (targetPaths.indexOf(this) >= 0) return \"after\";\n\n\t  var selfPaths = this.getAncestry();\n\n\t  var commonPath = void 0;\n\t  var targetIndex = void 0;\n\t  var selfIndex = void 0;\n\t  for (selfIndex = 0; selfIndex < selfPaths.length; selfIndex++) {\n\t    var selfPath = selfPaths[selfIndex];\n\t    targetIndex = targetPaths.indexOf(selfPath);\n\t    if (targetIndex >= 0) {\n\t      commonPath = selfPath;\n\t      break;\n\t    }\n\t  }\n\t  if (!commonPath) {\n\t    return \"before\";\n\t  }\n\n\t  var targetRelationship = targetPaths[targetIndex - 1];\n\t  var selfRelationship = selfPaths[selfIndex - 1];\n\t  if (!targetRelationship || !selfRelationship) {\n\t    return \"before\";\n\t  }\n\n\t  if (targetRelationship.listKey && targetRelationship.container === selfRelationship.container) {\n\t    return targetRelationship.key > selfRelationship.key ? \"before\" : \"after\";\n\t  }\n\n\t  var targetKeyPosition = t.VISITOR_KEYS[targetRelationship.type].indexOf(targetRelationship.key);\n\t  var selfKeyPosition = t.VISITOR_KEYS[selfRelationship.type].indexOf(selfRelationship.key);\n\t  return targetKeyPosition > selfKeyPosition ? \"before\" : \"after\";\n\t}\n\n\tfunction _guessExecutionStatusRelativeToDifferentFunctions(targetFuncParent) {\n\t  var targetFuncPath = targetFuncParent.path;\n\t  if (!targetFuncPath.isFunctionDeclaration()) return;\n\n\t  var binding = targetFuncPath.scope.getBinding(targetFuncPath.node.id.name);\n\n\t  if (!binding.references) return \"before\";\n\n\t  var referencePaths = binding.referencePaths;\n\n\t  for (var _iterator = referencePaths, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var path = _ref;\n\n\t    if (path.key !== \"callee\" || !path.parentPath.isCallExpression()) {\n\t      return;\n\t    }\n\t  }\n\n\t  var allStatus = void 0;\n\n\t  for (var _iterator2 = referencePaths, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t    var _ref2;\n\n\t    if (_isArray2) {\n\t      if (_i2 >= _iterator2.length) break;\n\t      _ref2 = _iterator2[_i2++];\n\t    } else {\n\t      _i2 = _iterator2.next();\n\t      if (_i2.done) break;\n\t      _ref2 = _i2.value;\n\t    }\n\n\t    var _path = _ref2;\n\n\t    var childOfFunction = !!_path.find(function (path) {\n\t      return path.node === targetFuncPath.node;\n\t    });\n\t    if (childOfFunction) continue;\n\n\t    var status = this._guessExecutionStatusRelativeTo(_path);\n\n\t    if (allStatus) {\n\t      if (allStatus !== status) return;\n\t    } else {\n\t      allStatus = status;\n\t    }\n\t  }\n\n\t  return allStatus;\n\t}\n\n\tfunction resolve(dangerous, resolved) {\n\t  return this._resolve(dangerous, resolved) || this;\n\t}\n\n\tfunction _resolve(dangerous, resolved) {\n\t  if (resolved && resolved.indexOf(this) >= 0) return;\n\n\t  resolved = resolved || [];\n\t  resolved.push(this);\n\n\t  if (this.isVariableDeclarator()) {\n\t    if (this.get(\"id\").isIdentifier()) {\n\t      return this.get(\"init\").resolve(dangerous, resolved);\n\t    } else {}\n\t  } else if (this.isReferencedIdentifier()) {\n\t    var binding = this.scope.getBinding(this.node.name);\n\t    if (!binding) return;\n\n\t    if (!binding.constant) return;\n\n\t    if (binding.kind === \"module\") return;\n\n\t    if (binding.path !== this) {\n\t      var ret = binding.path.resolve(dangerous, resolved);\n\n\t      if (this.find(function (parent) {\n\t        return parent.node === ret.node;\n\t      })) return;\n\t      return ret;\n\t    }\n\t  } else if (this.isTypeCastExpression()) {\n\t    return this.get(\"expression\").resolve(dangerous, resolved);\n\t  } else if (dangerous && this.isMemberExpression()) {\n\n\t    var targetKey = this.toComputedKey();\n\t    if (!t.isLiteral(targetKey)) return;\n\n\t    var targetName = targetKey.value;\n\n\t    var target = this.get(\"object\").resolve(dangerous, resolved);\n\n\t    if (target.isObjectExpression()) {\n\t      var props = target.get(\"properties\");\n\t      for (var _iterator3 = props, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t        var _ref3;\n\n\t        if (_isArray3) {\n\t          if (_i3 >= _iterator3.length) break;\n\t          _ref3 = _iterator3[_i3++];\n\t        } else {\n\t          _i3 = _iterator3.next();\n\t          if (_i3.done) break;\n\t          _ref3 = _i3.value;\n\t        }\n\n\t        var prop = _ref3;\n\n\t        if (!prop.isProperty()) continue;\n\n\t        var key = prop.get(\"key\");\n\n\t        var match = prop.isnt(\"computed\") && key.isIdentifier({ name: targetName });\n\n\t        match = match || key.isLiteral({ value: targetName });\n\n\t        if (match) return prop.get(\"value\").resolve(dangerous, resolved);\n\t      }\n\t    } else if (target.isArrayExpression() && !isNaN(+targetName)) {\n\t      var elems = target.get(\"elements\");\n\t      var elem = elems[targetName];\n\t      if (elem) return elem.resolve(dangerous, resolved);\n\t    }\n\t  }\n\t}\n\n/***/ }),\n/* 378 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar referenceVisitor = {\n\t  ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t    if (path.isJSXIdentifier() && _babelTypes.react.isCompatTag(path.node.name) && !path.parentPath.isJSXMemberExpression()) {\n\t      return;\n\t    }\n\n\t    if (path.node.name === \"this\") {\n\t      var scope = path.scope;\n\t      do {\n\t        if (scope.path.isFunction() && !scope.path.isArrowFunctionExpression()) break;\n\t      } while (scope = scope.parent);\n\t      if (scope) state.breakOnScopePaths.push(scope.path);\n\t    }\n\n\t    var binding = path.scope.getBinding(path.node.name);\n\t    if (!binding) return;\n\n\t    if (binding !== state.scope.getBinding(path.node.name)) return;\n\n\t    state.bindings[path.node.name] = binding;\n\t  }\n\t};\n\n\tvar PathHoister = function () {\n\t  function PathHoister(path, scope) {\n\t    (0, _classCallCheck3.default)(this, PathHoister);\n\n\t    this.breakOnScopePaths = [];\n\n\t    this.bindings = {};\n\n\t    this.scopes = [];\n\n\t    this.scope = scope;\n\t    this.path = path;\n\n\t    this.attachAfter = false;\n\t  }\n\n\t  PathHoister.prototype.isCompatibleScope = function isCompatibleScope(scope) {\n\t    for (var key in this.bindings) {\n\t      var binding = this.bindings[key];\n\t      if (!scope.bindingIdentifierEquals(key, binding.identifier)) {\n\t        return false;\n\t      }\n\t    }\n\n\t    return true;\n\t  };\n\n\t  PathHoister.prototype.getCompatibleScopes = function getCompatibleScopes() {\n\t    var scope = this.path.scope;\n\t    do {\n\t      if (this.isCompatibleScope(scope)) {\n\t        this.scopes.push(scope);\n\t      } else {\n\t        break;\n\t      }\n\n\t      if (this.breakOnScopePaths.indexOf(scope.path) >= 0) {\n\t        break;\n\t      }\n\t    } while (scope = scope.parent);\n\t  };\n\n\t  PathHoister.prototype.getAttachmentPath = function getAttachmentPath() {\n\t    var path = this._getAttachmentPath();\n\t    if (!path) return;\n\n\t    var targetScope = path.scope;\n\n\t    if (targetScope.path === path) {\n\t      targetScope = path.scope.parent;\n\t    }\n\n\t    if (targetScope.path.isProgram() || targetScope.path.isFunction()) {\n\t      for (var name in this.bindings) {\n\t        if (!targetScope.hasOwnBinding(name)) continue;\n\n\t        var binding = this.bindings[name];\n\n\t        if (binding.kind === \"param\") continue;\n\n\t        if (this.getAttachmentParentForPath(binding.path).key > path.key) {\n\t          this.attachAfter = true;\n\t          path = binding.path;\n\n\t          for (var _iterator = binding.constantViolations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t            var _ref;\n\n\t            if (_isArray) {\n\t              if (_i >= _iterator.length) break;\n\t              _ref = _iterator[_i++];\n\t            } else {\n\t              _i = _iterator.next();\n\t              if (_i.done) break;\n\t              _ref = _i.value;\n\t            }\n\n\t            var violationPath = _ref;\n\n\t            if (this.getAttachmentParentForPath(violationPath).key > path.key) {\n\t              path = violationPath;\n\t            }\n\t          }\n\t        }\n\t      }\n\t    }\n\n\t    if (path.parentPath.isExportDeclaration()) {\n\t      path = path.parentPath;\n\t    }\n\n\t    return path;\n\t  };\n\n\t  PathHoister.prototype._getAttachmentPath = function _getAttachmentPath() {\n\t    var scopes = this.scopes;\n\n\t    var scope = scopes.pop();\n\n\t    if (!scope) return;\n\n\t    if (scope.path.isFunction()) {\n\t      if (this.hasOwnParamBindings(scope)) {\n\t        if (this.scope === scope) return;\n\n\t        return scope.path.get(\"body\").get(\"body\")[0];\n\t      } else {\n\t        return this.getNextScopeAttachmentParent();\n\t      }\n\t    } else if (scope.path.isProgram()) {\n\t      return this.getNextScopeAttachmentParent();\n\t    }\n\t  };\n\n\t  PathHoister.prototype.getNextScopeAttachmentParent = function getNextScopeAttachmentParent() {\n\t    var scope = this.scopes.pop();\n\t    if (scope) return this.getAttachmentParentForPath(scope.path);\n\t  };\n\n\t  PathHoister.prototype.getAttachmentParentForPath = function getAttachmentParentForPath(path) {\n\t    do {\n\t      if (!path.parentPath || Array.isArray(path.container) && path.isStatement() || path.isVariableDeclarator() && path.parentPath.node !== null && path.parentPath.node.declarations.length > 1) return path;\n\t    } while (path = path.parentPath);\n\t  };\n\n\t  PathHoister.prototype.hasOwnParamBindings = function hasOwnParamBindings(scope) {\n\t    for (var name in this.bindings) {\n\t      if (!scope.hasOwnBinding(name)) continue;\n\n\t      var binding = this.bindings[name];\n\n\t      if (binding.kind === \"param\" && binding.constant) return true;\n\t    }\n\t    return false;\n\t  };\n\n\t  PathHoister.prototype.run = function run() {\n\t    var node = this.path.node;\n\t    if (node._hoisted) return;\n\t    node._hoisted = true;\n\n\t    this.path.traverse(referenceVisitor, this);\n\n\t    this.getCompatibleScopes();\n\n\t    var attachTo = this.getAttachmentPath();\n\t    if (!attachTo) return;\n\n\t    if (attachTo.getFunctionParent() === this.path.getFunctionParent()) return;\n\n\t    var uid = attachTo.scope.generateUidIdentifier(\"ref\");\n\t    var declarator = t.variableDeclarator(uid, this.path.node);\n\n\t    var insertFn = this.attachAfter ? \"insertAfter\" : \"insertBefore\";\n\t    attachTo[insertFn]([attachTo.isVariableDeclarator() ? declarator : t.variableDeclaration(\"var\", [declarator])]);\n\n\t    var parent = this.path.parentPath;\n\t    if (parent.isJSXElement() && this.path.container === parent.node.children) {\n\t      uid = t.JSXExpressionContainer(uid);\n\t    }\n\n\t    this.path.replaceWith(uid);\n\t  };\n\n\t  return PathHoister;\n\t}();\n\n\texports.default = PathHoister;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 379 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\tvar hooks = exports.hooks = [function (self, parent) {\n\t  var removeParent = self.key === \"test\" && (parent.isWhile() || parent.isSwitchCase()) || self.key === \"declaration\" && parent.isExportDeclaration() || self.key === \"body\" && parent.isLabeledStatement() || self.listKey === \"declarations\" && parent.isVariableDeclaration() && parent.node.declarations.length === 1 || self.key === \"expression\" && parent.isExpressionStatement();\n\n\t  if (removeParent) {\n\t    parent.remove();\n\t    return true;\n\t  }\n\t}, function (self, parent) {\n\t  if (parent.isSequenceExpression() && parent.node.expressions.length === 1) {\n\t    parent.replaceWith(parent.node.expressions[0]);\n\t    return true;\n\t  }\n\t}, function (self, parent) {\n\t  if (parent.isBinary()) {\n\t    if (self.key === \"left\") {\n\t      parent.replaceWith(parent.node.right);\n\t    } else {\n\t      parent.replaceWith(parent.node.left);\n\t    }\n\t    return true;\n\t  }\n\t}, function (self, parent) {\n\t  if (parent.isIfStatement() && (self.key === \"consequent\" || self.key === \"alternate\") || self.key === \"body\" && (parent.isLoop() || parent.isArrowFunctionExpression())) {\n\t    self.replaceWith({\n\t      type: \"BlockStatement\",\n\t      body: []\n\t    });\n\t    return true;\n\t  }\n\t}];\n\n/***/ }),\n/* 380 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.insertBefore = insertBefore;\n\texports._containerInsert = _containerInsert;\n\texports._containerInsertBefore = _containerInsertBefore;\n\texports._containerInsertAfter = _containerInsertAfter;\n\texports._maybePopFromStatements = _maybePopFromStatements;\n\texports.insertAfter = insertAfter;\n\texports.updateSiblingKeys = updateSiblingKeys;\n\texports._verifyNodeList = _verifyNodeList;\n\texports.unshiftContainer = unshiftContainer;\n\texports.pushContainer = pushContainer;\n\texports.hoist = hoist;\n\n\tvar _cache = __webpack_require__(88);\n\n\tvar _hoister = __webpack_require__(378);\n\n\tvar _hoister2 = _interopRequireDefault(_hoister);\n\n\tvar _index = __webpack_require__(36);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction insertBefore(nodes) {\n\t  this._assertUnremoved();\n\n\t  nodes = this._verifyNodeList(nodes);\n\n\t  if (this.parentPath.isExpressionStatement() || this.parentPath.isLabeledStatement()) {\n\t    return this.parentPath.insertBefore(nodes);\n\t  } else if (this.isNodeType(\"Expression\") || this.parentPath.isForStatement() && this.key === \"init\") {\n\t    if (this.node) nodes.push(this.node);\n\t    this.replaceExpressionWithStatements(nodes);\n\t  } else {\n\t    this._maybePopFromStatements(nodes);\n\t    if (Array.isArray(this.container)) {\n\t      return this._containerInsertBefore(nodes);\n\t    } else if (this.isStatementOrBlock()) {\n\t      if (this.node) nodes.push(this.node);\n\t      this._replaceWith(t.blockStatement(nodes));\n\t    } else {\n\t      throw new Error(\"We don't know what to do with this node type. \" + \"We were previously a Statement but we can't fit in here?\");\n\t    }\n\t  }\n\n\t  return [this];\n\t}\n\n\tfunction _containerInsert(from, nodes) {\n\t  this.updateSiblingKeys(from, nodes.length);\n\n\t  var paths = [];\n\n\t  for (var i = 0; i < nodes.length; i++) {\n\t    var to = from + i;\n\t    var node = nodes[i];\n\t    this.container.splice(to, 0, node);\n\n\t    if (this.context) {\n\t      var path = this.context.create(this.parent, this.container, to, this.listKey);\n\n\t      if (this.context.queue) path.pushContext(this.context);\n\t      paths.push(path);\n\t    } else {\n\t      paths.push(_index2.default.get({\n\t        parentPath: this.parentPath,\n\t        parent: this.parent,\n\t        container: this.container,\n\t        listKey: this.listKey,\n\t        key: to\n\t      }));\n\t    }\n\t  }\n\n\t  var contexts = this._getQueueContexts();\n\n\t  for (var _iterator = paths, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var _path = _ref;\n\n\t    _path.setScope();\n\t    _path.debug(function () {\n\t      return \"Inserted.\";\n\t    });\n\n\t    for (var _iterator2 = contexts, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var context = _ref2;\n\n\t      context.maybeQueue(_path, true);\n\t    }\n\t  }\n\n\t  return paths;\n\t}\n\n\tfunction _containerInsertBefore(nodes) {\n\t  return this._containerInsert(this.key, nodes);\n\t}\n\n\tfunction _containerInsertAfter(nodes) {\n\t  return this._containerInsert(this.key + 1, nodes);\n\t}\n\n\tfunction _maybePopFromStatements(nodes) {\n\t  var last = nodes[nodes.length - 1];\n\t  var isIdentifier = t.isIdentifier(last) || t.isExpressionStatement(last) && t.isIdentifier(last.expression);\n\n\t  if (isIdentifier && !this.isCompletionRecord()) {\n\t    nodes.pop();\n\t  }\n\t}\n\n\tfunction insertAfter(nodes) {\n\t  this._assertUnremoved();\n\n\t  nodes = this._verifyNodeList(nodes);\n\n\t  if (this.parentPath.isExpressionStatement() || this.parentPath.isLabeledStatement()) {\n\t    return this.parentPath.insertAfter(nodes);\n\t  } else if (this.isNodeType(\"Expression\") || this.parentPath.isForStatement() && this.key === \"init\") {\n\t    if (this.node) {\n\t      var temp = this.scope.generateDeclaredUidIdentifier();\n\t      nodes.unshift(t.expressionStatement(t.assignmentExpression(\"=\", temp, this.node)));\n\t      nodes.push(t.expressionStatement(temp));\n\t    }\n\t    this.replaceExpressionWithStatements(nodes);\n\t  } else {\n\t    this._maybePopFromStatements(nodes);\n\t    if (Array.isArray(this.container)) {\n\t      return this._containerInsertAfter(nodes);\n\t    } else if (this.isStatementOrBlock()) {\n\t      if (this.node) nodes.unshift(this.node);\n\t      this._replaceWith(t.blockStatement(nodes));\n\t    } else {\n\t      throw new Error(\"We don't know what to do with this node type. \" + \"We were previously a Statement but we can't fit in here?\");\n\t    }\n\t  }\n\n\t  return [this];\n\t}\n\n\tfunction updateSiblingKeys(fromIndex, incrementBy) {\n\t  if (!this.parent) return;\n\n\t  var paths = _cache.path.get(this.parent);\n\t  for (var i = 0; i < paths.length; i++) {\n\t    var path = paths[i];\n\t    if (path.key >= fromIndex) {\n\t      path.key += incrementBy;\n\t    }\n\t  }\n\t}\n\n\tfunction _verifyNodeList(nodes) {\n\t  if (!nodes) {\n\t    return [];\n\t  }\n\n\t  if (nodes.constructor !== Array) {\n\t    nodes = [nodes];\n\t  }\n\n\t  for (var i = 0; i < nodes.length; i++) {\n\t    var node = nodes[i];\n\t    var msg = void 0;\n\n\t    if (!node) {\n\t      msg = \"has falsy node\";\n\t    } else if ((typeof node === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(node)) !== \"object\") {\n\t      msg = \"contains a non-object node\";\n\t    } else if (!node.type) {\n\t      msg = \"without a type\";\n\t    } else if (node instanceof _index2.default) {\n\t      msg = \"has a NodePath when it expected a raw object\";\n\t    }\n\n\t    if (msg) {\n\t      var type = Array.isArray(node) ? \"array\" : typeof node === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(node);\n\t      throw new Error(\"Node list \" + msg + \" with the index of \" + i + \" and type of \" + type);\n\t    }\n\t  }\n\n\t  return nodes;\n\t}\n\n\tfunction unshiftContainer(listKey, nodes) {\n\t  this._assertUnremoved();\n\n\t  nodes = this._verifyNodeList(nodes);\n\n\t  var path = _index2.default.get({\n\t    parentPath: this,\n\t    parent: this.node,\n\t    container: this.node[listKey],\n\t    listKey: listKey,\n\t    key: 0\n\t  });\n\n\t  return path.insertBefore(nodes);\n\t}\n\n\tfunction pushContainer(listKey, nodes) {\n\t  this._assertUnremoved();\n\n\t  nodes = this._verifyNodeList(nodes);\n\n\t  var container = this.node[listKey];\n\t  var path = _index2.default.get({\n\t    parentPath: this,\n\t    parent: this.node,\n\t    container: container,\n\t    listKey: listKey,\n\t    key: container.length\n\t  });\n\n\t  return path.replaceWithMultiple(nodes);\n\t}\n\n\tfunction hoist() {\n\t  var scope = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this.scope;\n\n\t  var hoister = new _hoister2.default(this, scope);\n\t  return hoister.run();\n\t}\n\n/***/ }),\n/* 381 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.remove = remove;\n\texports._callRemovalHooks = _callRemovalHooks;\n\texports._remove = _remove;\n\texports._markRemoved = _markRemoved;\n\texports._assertUnremoved = _assertUnremoved;\n\n\tvar _removalHooks = __webpack_require__(379);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction remove() {\n\t  this._assertUnremoved();\n\n\t  this.resync();\n\n\t  if (this._callRemovalHooks()) {\n\t    this._markRemoved();\n\t    return;\n\t  }\n\n\t  this.shareCommentsWithSiblings();\n\t  this._remove();\n\t  this._markRemoved();\n\t}\n\n\tfunction _callRemovalHooks() {\n\t  for (var _iterator = _removalHooks.hooks, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var fn = _ref;\n\n\t    if (fn(this, this.parentPath)) return true;\n\t  }\n\t}\n\n\tfunction _remove() {\n\t  if (Array.isArray(this.container)) {\n\t    this.container.splice(this.key, 1);\n\t    this.updateSiblingKeys(this.key, -1);\n\t  } else {\n\t    this._replaceWith(null);\n\t  }\n\t}\n\n\tfunction _markRemoved() {\n\t  this.shouldSkip = true;\n\t  this.removed = true;\n\t  this.node = null;\n\t}\n\n\tfunction _assertUnremoved() {\n\t  if (this.removed) {\n\t    throw this.buildCodeFrameError(\"NodePath has been removed so is read-only.\");\n\t  }\n\t}\n\n/***/ }),\n/* 382 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.replaceWithMultiple = replaceWithMultiple;\n\texports.replaceWithSourceString = replaceWithSourceString;\n\texports.replaceWith = replaceWith;\n\texports._replaceWith = _replaceWith;\n\texports.replaceExpressionWithStatements = replaceExpressionWithStatements;\n\texports.replaceInline = replaceInline;\n\n\tvar _babelCodeFrame = __webpack_require__(181);\n\n\tvar _babelCodeFrame2 = _interopRequireDefault(_babelCodeFrame);\n\n\tvar _index = __webpack_require__(7);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tvar _index3 = __webpack_require__(36);\n\n\tvar _index4 = _interopRequireDefault(_index3);\n\n\tvar _babylon = __webpack_require__(89);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar hoistVariablesVisitor = {\n\t  Function: function Function(path) {\n\t    path.skip();\n\t  },\n\t  VariableDeclaration: function VariableDeclaration(path) {\n\t    if (path.node.kind !== \"var\") return;\n\n\t    var bindings = path.getBindingIdentifiers();\n\t    for (var key in bindings) {\n\t      path.scope.push({ id: bindings[key] });\n\t    }\n\n\t    var exprs = [];\n\n\t    for (var _iterator = path.node.declarations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var declar = _ref;\n\n\t      if (declar.init) {\n\t        exprs.push(t.expressionStatement(t.assignmentExpression(\"=\", declar.id, declar.init)));\n\t      }\n\t    }\n\n\t    path.replaceWithMultiple(exprs);\n\t  }\n\t};\n\n\tfunction replaceWithMultiple(nodes) {\n\t  this.resync();\n\n\t  nodes = this._verifyNodeList(nodes);\n\t  t.inheritLeadingComments(nodes[0], this.node);\n\t  t.inheritTrailingComments(nodes[nodes.length - 1], this.node);\n\t  this.node = this.container[this.key] = null;\n\t  this.insertAfter(nodes);\n\n\t  if (this.node) {\n\t    this.requeue();\n\t  } else {\n\t    this.remove();\n\t  }\n\t}\n\n\tfunction replaceWithSourceString(replacement) {\n\t  this.resync();\n\n\t  try {\n\t    replacement = \"(\" + replacement + \")\";\n\t    replacement = (0, _babylon.parse)(replacement);\n\t  } catch (err) {\n\t    var loc = err.loc;\n\t    if (loc) {\n\t      err.message += \" - make sure this is an expression.\";\n\t      err.message += \"\\n\" + (0, _babelCodeFrame2.default)(replacement, loc.line, loc.column + 1);\n\t    }\n\t    throw err;\n\t  }\n\n\t  replacement = replacement.program.body[0].expression;\n\t  _index2.default.removeProperties(replacement);\n\t  return this.replaceWith(replacement);\n\t}\n\n\tfunction replaceWith(replacement) {\n\t  this.resync();\n\n\t  if (this.removed) {\n\t    throw new Error(\"You can't replace this node, we've already removed it\");\n\t  }\n\n\t  if (replacement instanceof _index4.default) {\n\t    replacement = replacement.node;\n\t  }\n\n\t  if (!replacement) {\n\t    throw new Error(\"You passed `path.replaceWith()` a falsy node, use `path.remove()` instead\");\n\t  }\n\n\t  if (this.node === replacement) {\n\t    return;\n\t  }\n\n\t  if (this.isProgram() && !t.isProgram(replacement)) {\n\t    throw new Error(\"You can only replace a Program root node with another Program node\");\n\t  }\n\n\t  if (Array.isArray(replacement)) {\n\t    throw new Error(\"Don't use `path.replaceWith()` with an array of nodes, use `path.replaceWithMultiple()`\");\n\t  }\n\n\t  if (typeof replacement === \"string\") {\n\t    throw new Error(\"Don't use `path.replaceWith()` with a source string, use `path.replaceWithSourceString()`\");\n\t  }\n\n\t  if (this.isNodeType(\"Statement\") && t.isExpression(replacement)) {\n\t    if (!this.canHaveVariableDeclarationOrExpression() && !this.canSwapBetweenExpressionAndStatement(replacement) && !this.parentPath.isExportDefaultDeclaration()) {\n\t      replacement = t.expressionStatement(replacement);\n\t    }\n\t  }\n\n\t  if (this.isNodeType(\"Expression\") && t.isStatement(replacement)) {\n\t    if (!this.canHaveVariableDeclarationOrExpression() && !this.canSwapBetweenExpressionAndStatement(replacement)) {\n\t      return this.replaceExpressionWithStatements([replacement]);\n\t    }\n\t  }\n\n\t  var oldNode = this.node;\n\t  if (oldNode) {\n\t    t.inheritsComments(replacement, oldNode);\n\t    t.removeComments(oldNode);\n\t  }\n\n\t  this._replaceWith(replacement);\n\t  this.type = replacement.type;\n\n\t  this.setScope();\n\n\t  this.requeue();\n\t}\n\n\tfunction _replaceWith(node) {\n\t  if (!this.container) {\n\t    throw new ReferenceError(\"Container is falsy\");\n\t  }\n\n\t  if (this.inList) {\n\t    t.validate(this.parent, this.key, [node]);\n\t  } else {\n\t    t.validate(this.parent, this.key, node);\n\t  }\n\n\t  this.debug(function () {\n\t    return \"Replace with \" + (node && node.type);\n\t  });\n\n\t  this.node = this.container[this.key] = node;\n\t}\n\n\tfunction replaceExpressionWithStatements(nodes) {\n\t  this.resync();\n\n\t  var toSequenceExpression = t.toSequenceExpression(nodes, this.scope);\n\n\t  if (t.isSequenceExpression(toSequenceExpression)) {\n\t    var exprs = toSequenceExpression.expressions;\n\n\t    if (exprs.length >= 2 && this.parentPath.isExpressionStatement()) {\n\t      this._maybePopFromStatements(exprs);\n\t    }\n\n\t    if (exprs.length === 1) {\n\t      this.replaceWith(exprs[0]);\n\t    } else {\n\t      this.replaceWith(toSequenceExpression);\n\t    }\n\t  } else if (toSequenceExpression) {\n\t    this.replaceWith(toSequenceExpression);\n\t  } else {\n\t    var container = t.functionExpression(null, [], t.blockStatement(nodes));\n\t    container.shadow = true;\n\n\t    this.replaceWith(t.callExpression(container, []));\n\t    this.traverse(hoistVariablesVisitor);\n\n\t    var completionRecords = this.get(\"callee\").getCompletionRecords();\n\t    for (var _iterator2 = completionRecords, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var path = _ref2;\n\n\t      if (!path.isExpressionStatement()) continue;\n\n\t      var loop = path.findParent(function (path) {\n\t        return path.isLoop();\n\t      });\n\t      if (loop) {\n\t        var uid = loop.getData(\"expressionReplacementReturnUid\");\n\n\t        if (!uid) {\n\t          var callee = this.get(\"callee\");\n\t          uid = callee.scope.generateDeclaredUidIdentifier(\"ret\");\n\t          callee.get(\"body\").pushContainer(\"body\", t.returnStatement(uid));\n\t          loop.setData(\"expressionReplacementReturnUid\", uid);\n\t        } else {\n\t          uid = t.identifier(uid.name);\n\t        }\n\n\t        path.get(\"expression\").replaceWith(t.assignmentExpression(\"=\", uid, path.node.expression));\n\t      } else {\n\t        path.replaceWith(t.returnStatement(path.node.expression));\n\t      }\n\t    }\n\n\t    return this.node;\n\t  }\n\t}\n\n\tfunction replaceInline(nodes) {\n\t  this.resync();\n\n\t  if (Array.isArray(nodes)) {\n\t    if (Array.isArray(this.container)) {\n\t      nodes = this._verifyNodeList(nodes);\n\t      this._containerInsertAfter(nodes);\n\t      return this.remove();\n\t    } else {\n\t      return this.replaceWithMultiple(nodes);\n\t    }\n\t  } else {\n\t    return this.replaceWith(nodes);\n\t  }\n\t}\n\n/***/ }),\n/* 383 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _binding = __webpack_require__(225);\n\n\tvar _binding2 = _interopRequireDefault(_binding);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar renameVisitor = {\n\t  ReferencedIdentifier: function ReferencedIdentifier(_ref, state) {\n\t    var node = _ref.node;\n\n\t    if (node.name === state.oldName) {\n\t      node.name = state.newName;\n\t    }\n\t  },\n\t  Scope: function Scope(path, state) {\n\t    if (!path.scope.bindingIdentifierEquals(state.oldName, state.binding.identifier)) {\n\t      path.skip();\n\t    }\n\t  },\n\t  \"AssignmentExpression|Declaration\": function AssignmentExpressionDeclaration(path, state) {\n\t    var ids = path.getOuterBindingIdentifiers();\n\n\t    for (var name in ids) {\n\t      if (name === state.oldName) ids[name].name = state.newName;\n\t    }\n\t  }\n\t};\n\n\tvar Renamer = function () {\n\t  function Renamer(binding, oldName, newName) {\n\t    (0, _classCallCheck3.default)(this, Renamer);\n\n\t    this.newName = newName;\n\t    this.oldName = oldName;\n\t    this.binding = binding;\n\t  }\n\n\t  Renamer.prototype.maybeConvertFromExportDeclaration = function maybeConvertFromExportDeclaration(parentDeclar) {\n\t    var exportDeclar = parentDeclar.parentPath.isExportDeclaration() && parentDeclar.parentPath;\n\t    if (!exportDeclar) return;\n\n\t    var isDefault = exportDeclar.isExportDefaultDeclaration();\n\n\t    if (isDefault && (parentDeclar.isFunctionDeclaration() || parentDeclar.isClassDeclaration()) && !parentDeclar.node.id) {\n\t      parentDeclar.node.id = parentDeclar.scope.generateUidIdentifier(\"default\");\n\t    }\n\n\t    var bindingIdentifiers = parentDeclar.getOuterBindingIdentifiers();\n\t    var specifiers = [];\n\n\t    for (var name in bindingIdentifiers) {\n\t      var localName = name === this.oldName ? this.newName : name;\n\t      var exportedName = isDefault ? \"default\" : name;\n\t      specifiers.push(t.exportSpecifier(t.identifier(localName), t.identifier(exportedName)));\n\t    }\n\n\t    if (specifiers.length) {\n\t      var aliasDeclar = t.exportNamedDeclaration(null, specifiers);\n\n\t      if (parentDeclar.isFunctionDeclaration()) {\n\t        aliasDeclar._blockHoist = 3;\n\t      }\n\n\t      exportDeclar.insertAfter(aliasDeclar);\n\t      exportDeclar.replaceWith(parentDeclar.node);\n\t    }\n\t  };\n\n\t  Renamer.prototype.rename = function rename(block) {\n\t    var binding = this.binding,\n\t        oldName = this.oldName,\n\t        newName = this.newName;\n\t    var scope = binding.scope,\n\t        path = binding.path;\n\n\t    var parentDeclar = path.find(function (path) {\n\t      return path.isDeclaration() || path.isFunctionExpression();\n\t    });\n\t    if (parentDeclar) {\n\t      this.maybeConvertFromExportDeclaration(parentDeclar);\n\t    }\n\n\t    scope.traverse(block || scope.block, renameVisitor, this);\n\n\t    if (!block) {\n\t      scope.removeOwnBinding(oldName);\n\t      scope.bindings[newName] = binding;\n\t      this.binding.identifier.name = newName;\n\t    }\n\n\t    if (binding.type === \"hoisted\") {}\n\t  };\n\n\t  return Renamer;\n\t}();\n\n\texports.default = Renamer;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 384 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.explode = explode;\n\texports.verify = verify;\n\texports.merge = merge;\n\n\tvar _virtualTypes = __webpack_require__(224);\n\n\tvar virtualTypes = _interopRequireWildcard(_virtualTypes);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _clone = __webpack_require__(109);\n\n\tvar _clone2 = _interopRequireDefault(_clone);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction explode(visitor) {\n\t  if (visitor._exploded) return visitor;\n\t  visitor._exploded = true;\n\n\t  for (var nodeType in visitor) {\n\t    if (shouldIgnoreKey(nodeType)) continue;\n\n\t    var parts = nodeType.split(\"|\");\n\t    if (parts.length === 1) continue;\n\n\t    var fns = visitor[nodeType];\n\t    delete visitor[nodeType];\n\n\t    for (var _iterator = parts, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var part = _ref;\n\n\t      visitor[part] = fns;\n\t    }\n\t  }\n\n\t  verify(visitor);\n\n\t  delete visitor.__esModule;\n\n\t  ensureEntranceObjects(visitor);\n\n\t  ensureCallbackArrays(visitor);\n\n\t  for (var _iterator2 = (0, _keys2.default)(visitor), _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t    var _ref2;\n\n\t    if (_isArray2) {\n\t      if (_i2 >= _iterator2.length) break;\n\t      _ref2 = _iterator2[_i2++];\n\t    } else {\n\t      _i2 = _iterator2.next();\n\t      if (_i2.done) break;\n\t      _ref2 = _i2.value;\n\t    }\n\n\t    var _nodeType3 = _ref2;\n\n\t    if (shouldIgnoreKey(_nodeType3)) continue;\n\n\t    var wrapper = virtualTypes[_nodeType3];\n\t    if (!wrapper) continue;\n\n\t    var _fns2 = visitor[_nodeType3];\n\t    for (var type in _fns2) {\n\t      _fns2[type] = wrapCheck(wrapper, _fns2[type]);\n\t    }\n\n\t    delete visitor[_nodeType3];\n\n\t    if (wrapper.types) {\n\t      for (var _iterator4 = wrapper.types, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t        var _ref4;\n\n\t        if (_isArray4) {\n\t          if (_i4 >= _iterator4.length) break;\n\t          _ref4 = _iterator4[_i4++];\n\t        } else {\n\t          _i4 = _iterator4.next();\n\t          if (_i4.done) break;\n\t          _ref4 = _i4.value;\n\t        }\n\n\t        var _type = _ref4;\n\n\t        if (visitor[_type]) {\n\t          mergePair(visitor[_type], _fns2);\n\t        } else {\n\t          visitor[_type] = _fns2;\n\t        }\n\t      }\n\t    } else {\n\t      mergePair(visitor, _fns2);\n\t    }\n\t  }\n\n\t  for (var _nodeType in visitor) {\n\t    if (shouldIgnoreKey(_nodeType)) continue;\n\n\t    var _fns = visitor[_nodeType];\n\n\t    var aliases = t.FLIPPED_ALIAS_KEYS[_nodeType];\n\n\t    var deprecratedKey = t.DEPRECATED_KEYS[_nodeType];\n\t    if (deprecratedKey) {\n\t      console.trace(\"Visitor defined for \" + _nodeType + \" but it has been renamed to \" + deprecratedKey);\n\t      aliases = [deprecratedKey];\n\t    }\n\n\t    if (!aliases) continue;\n\n\t    delete visitor[_nodeType];\n\n\t    for (var _iterator3 = aliases, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var alias = _ref3;\n\n\t      var existing = visitor[alias];\n\t      if (existing) {\n\t        mergePair(existing, _fns);\n\t      } else {\n\t        visitor[alias] = (0, _clone2.default)(_fns);\n\t      }\n\t    }\n\t  }\n\n\t  for (var _nodeType2 in visitor) {\n\t    if (shouldIgnoreKey(_nodeType2)) continue;\n\n\t    ensureCallbackArrays(visitor[_nodeType2]);\n\t  }\n\n\t  return visitor;\n\t}\n\n\tfunction verify(visitor) {\n\t  if (visitor._verified) return;\n\n\t  if (typeof visitor === \"function\") {\n\t    throw new Error(messages.get(\"traverseVerifyRootFunction\"));\n\t  }\n\n\t  for (var nodeType in visitor) {\n\t    if (nodeType === \"enter\" || nodeType === \"exit\") {\n\t      validateVisitorMethods(nodeType, visitor[nodeType]);\n\t    }\n\n\t    if (shouldIgnoreKey(nodeType)) continue;\n\n\t    if (t.TYPES.indexOf(nodeType) < 0) {\n\t      throw new Error(messages.get(\"traverseVerifyNodeType\", nodeType));\n\t    }\n\n\t    var visitors = visitor[nodeType];\n\t    if ((typeof visitors === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(visitors)) === \"object\") {\n\t      for (var visitorKey in visitors) {\n\t        if (visitorKey === \"enter\" || visitorKey === \"exit\") {\n\t          validateVisitorMethods(nodeType + \".\" + visitorKey, visitors[visitorKey]);\n\t        } else {\n\t          throw new Error(messages.get(\"traverseVerifyVisitorProperty\", nodeType, visitorKey));\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  visitor._verified = true;\n\t}\n\n\tfunction validateVisitorMethods(path, val) {\n\t  var fns = [].concat(val);\n\t  for (var _iterator5 = fns, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t    var _ref5;\n\n\t    if (_isArray5) {\n\t      if (_i5 >= _iterator5.length) break;\n\t      _ref5 = _iterator5[_i5++];\n\t    } else {\n\t      _i5 = _iterator5.next();\n\t      if (_i5.done) break;\n\t      _ref5 = _i5.value;\n\t    }\n\n\t    var fn = _ref5;\n\n\t    if (typeof fn !== \"function\") {\n\t      throw new TypeError(\"Non-function found defined in \" + path + \" with type \" + (typeof fn === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(fn)));\n\t    }\n\t  }\n\t}\n\n\tfunction merge(visitors) {\n\t  var states = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];\n\t  var wrapper = arguments[2];\n\n\t  var rootVisitor = {};\n\n\t  for (var i = 0; i < visitors.length; i++) {\n\t    var visitor = visitors[i];\n\t    var state = states[i];\n\n\t    explode(visitor);\n\n\t    for (var type in visitor) {\n\t      var visitorType = visitor[type];\n\n\t      if (state || wrapper) {\n\t        visitorType = wrapWithStateOrWrapper(visitorType, state, wrapper);\n\t      }\n\n\t      var nodeVisitor = rootVisitor[type] = rootVisitor[type] || {};\n\t      mergePair(nodeVisitor, visitorType);\n\t    }\n\t  }\n\n\t  return rootVisitor;\n\t}\n\n\tfunction wrapWithStateOrWrapper(oldVisitor, state, wrapper) {\n\t  var newVisitor = {};\n\n\t  var _loop = function _loop(key) {\n\t    var fns = oldVisitor[key];\n\n\t    if (!Array.isArray(fns)) return \"continue\";\n\n\t    fns = fns.map(function (fn) {\n\t      var newFn = fn;\n\n\t      if (state) {\n\t        newFn = function newFn(path) {\n\t          return fn.call(state, path, state);\n\t        };\n\t      }\n\n\t      if (wrapper) {\n\t        newFn = wrapper(state.key, key, newFn);\n\t      }\n\n\t      return newFn;\n\t    });\n\n\t    newVisitor[key] = fns;\n\t  };\n\n\t  for (var key in oldVisitor) {\n\t    var _ret = _loop(key);\n\n\t    if (_ret === \"continue\") continue;\n\t  }\n\n\t  return newVisitor;\n\t}\n\n\tfunction ensureEntranceObjects(obj) {\n\t  for (var key in obj) {\n\t    if (shouldIgnoreKey(key)) continue;\n\n\t    var fns = obj[key];\n\t    if (typeof fns === \"function\") {\n\t      obj[key] = { enter: fns };\n\t    }\n\t  }\n\t}\n\n\tfunction ensureCallbackArrays(obj) {\n\t  if (obj.enter && !Array.isArray(obj.enter)) obj.enter = [obj.enter];\n\t  if (obj.exit && !Array.isArray(obj.exit)) obj.exit = [obj.exit];\n\t}\n\n\tfunction wrapCheck(wrapper, fn) {\n\t  var newFn = function newFn(path) {\n\t    if (wrapper.checkPath(path)) {\n\t      return fn.apply(this, arguments);\n\t    }\n\t  };\n\t  newFn.toString = function () {\n\t    return fn.toString();\n\t  };\n\t  return newFn;\n\t}\n\n\tfunction shouldIgnoreKey(key) {\n\t  if (key[0] === \"_\") return true;\n\n\t  if (key === \"enter\" || key === \"exit\" || key === \"shouldSkip\") return true;\n\n\t  if (key === \"blacklist\" || key === \"noScope\" || key === \"skipKeys\") return true;\n\n\t  return false;\n\t}\n\n\tfunction mergePair(dest, src) {\n\t  for (var key in src) {\n\t    dest[key] = [].concat(dest[key] || [], src[key]);\n\t  }\n\t}\n\n/***/ }),\n/* 385 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _maxSafeInteger = __webpack_require__(359);\n\n\tvar _maxSafeInteger2 = _interopRequireDefault(_maxSafeInteger);\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.toComputedKey = toComputedKey;\n\texports.toSequenceExpression = toSequenceExpression;\n\texports.toKeyAlias = toKeyAlias;\n\texports.toIdentifier = toIdentifier;\n\texports.toBindingIdentifierName = toBindingIdentifierName;\n\texports.toStatement = toStatement;\n\texports.toExpression = toExpression;\n\texports.toBlock = toBlock;\n\texports.valueToNode = valueToNode;\n\n\tvar _isPlainObject = __webpack_require__(275);\n\n\tvar _isPlainObject2 = _interopRequireDefault(_isPlainObject);\n\n\tvar _isRegExp = __webpack_require__(276);\n\n\tvar _isRegExp2 = _interopRequireDefault(_isRegExp);\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction toComputedKey(node) {\n\t  var key = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : node.key || node.property;\n\n\t  if (!node.computed) {\n\t    if (t.isIdentifier(key)) key = t.stringLiteral(key.name);\n\t  }\n\t  return key;\n\t}\n\n\tfunction gatherSequenceExpressions(nodes, scope, declars) {\n\t  var exprs = [];\n\t  var ensureLastUndefined = true;\n\n\t  for (var _iterator = nodes, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var node = _ref;\n\n\t    ensureLastUndefined = false;\n\n\t    if (t.isExpression(node)) {\n\t      exprs.push(node);\n\t    } else if (t.isExpressionStatement(node)) {\n\t      exprs.push(node.expression);\n\t    } else if (t.isVariableDeclaration(node)) {\n\t      if (node.kind !== \"var\") return;\n\n\t      for (var _iterator2 = node.declarations, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t        var _ref2;\n\n\t        if (_isArray2) {\n\t          if (_i2 >= _iterator2.length) break;\n\t          _ref2 = _iterator2[_i2++];\n\t        } else {\n\t          _i2 = _iterator2.next();\n\t          if (_i2.done) break;\n\t          _ref2 = _i2.value;\n\t        }\n\n\t        var declar = _ref2;\n\n\t        var bindings = t.getBindingIdentifiers(declar);\n\t        for (var key in bindings) {\n\t          declars.push({\n\t            kind: node.kind,\n\t            id: bindings[key]\n\t          });\n\t        }\n\n\t        if (declar.init) {\n\t          exprs.push(t.assignmentExpression(\"=\", declar.id, declar.init));\n\t        }\n\t      }\n\n\t      ensureLastUndefined = true;\n\t    } else if (t.isIfStatement(node)) {\n\t      var consequent = node.consequent ? gatherSequenceExpressions([node.consequent], scope, declars) : scope.buildUndefinedNode();\n\t      var alternate = node.alternate ? gatherSequenceExpressions([node.alternate], scope, declars) : scope.buildUndefinedNode();\n\t      if (!consequent || !alternate) return;\n\n\t      exprs.push(t.conditionalExpression(node.test, consequent, alternate));\n\t    } else if (t.isBlockStatement(node)) {\n\t      var body = gatherSequenceExpressions(node.body, scope, declars);\n\t      if (!body) return;\n\n\t      exprs.push(body);\n\t    } else if (t.isEmptyStatement(node)) {\n\t      ensureLastUndefined = true;\n\t    } else {\n\t      return;\n\t    }\n\t  }\n\n\t  if (ensureLastUndefined) {\n\t    exprs.push(scope.buildUndefinedNode());\n\t  }\n\n\t  if (exprs.length === 1) {\n\t    return exprs[0];\n\t  } else {\n\t    return t.sequenceExpression(exprs);\n\t  }\n\t}\n\n\tfunction toSequenceExpression(nodes, scope) {\n\t  if (!nodes || !nodes.length) return;\n\n\t  var declars = [];\n\t  var result = gatherSequenceExpressions(nodes, scope, declars);\n\t  if (!result) return;\n\n\t  for (var _iterator3 = declars, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t    var _ref3;\n\n\t    if (_isArray3) {\n\t      if (_i3 >= _iterator3.length) break;\n\t      _ref3 = _iterator3[_i3++];\n\t    } else {\n\t      _i3 = _iterator3.next();\n\t      if (_i3.done) break;\n\t      _ref3 = _i3.value;\n\t    }\n\n\t    var declar = _ref3;\n\n\t    scope.push(declar);\n\t  }\n\n\t  return result;\n\t}\n\n\tfunction toKeyAlias(node) {\n\t  var key = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : node.key;\n\n\t  var alias = void 0;\n\n\t  if (node.kind === \"method\") {\n\t    return toKeyAlias.increment() + \"\";\n\t  } else if (t.isIdentifier(key)) {\n\t    alias = key.name;\n\t  } else if (t.isStringLiteral(key)) {\n\t    alias = (0, _stringify2.default)(key.value);\n\t  } else {\n\t    alias = (0, _stringify2.default)(t.removePropertiesDeep(t.cloneDeep(key)));\n\t  }\n\n\t  if (node.computed) {\n\t    alias = \"[\" + alias + \"]\";\n\t  }\n\n\t  if (node.static) {\n\t    alias = \"static:\" + alias;\n\t  }\n\n\t  return alias;\n\t}\n\n\ttoKeyAlias.uid = 0;\n\n\ttoKeyAlias.increment = function () {\n\t  if (toKeyAlias.uid >= _maxSafeInteger2.default) {\n\t    return toKeyAlias.uid = 0;\n\t  } else {\n\t    return toKeyAlias.uid++;\n\t  }\n\t};\n\n\tfunction toIdentifier(name) {\n\t  name = name + \"\";\n\n\t  name = name.replace(/[^a-zA-Z0-9$_]/g, \"-\");\n\n\t  name = name.replace(/^[-0-9]+/, \"\");\n\n\t  name = name.replace(/[-\\s]+(.)?/g, function (match, c) {\n\t    return c ? c.toUpperCase() : \"\";\n\t  });\n\n\t  if (!t.isValidIdentifier(name)) {\n\t    name = \"_\" + name;\n\t  }\n\n\t  return name || \"_\";\n\t}\n\n\tfunction toBindingIdentifierName(name) {\n\t  name = toIdentifier(name);\n\t  if (name === \"eval\" || name === \"arguments\") name = \"_\" + name;\n\t  return name;\n\t}\n\n\tfunction toStatement(node, ignore) {\n\t  if (t.isStatement(node)) {\n\t    return node;\n\t  }\n\n\t  var mustHaveId = false;\n\t  var newType = void 0;\n\n\t  if (t.isClass(node)) {\n\t    mustHaveId = true;\n\t    newType = \"ClassDeclaration\";\n\t  } else if (t.isFunction(node)) {\n\t    mustHaveId = true;\n\t    newType = \"FunctionDeclaration\";\n\t  } else if (t.isAssignmentExpression(node)) {\n\t    return t.expressionStatement(node);\n\t  }\n\n\t  if (mustHaveId && !node.id) {\n\t    newType = false;\n\t  }\n\n\t  if (!newType) {\n\t    if (ignore) {\n\t      return false;\n\t    } else {\n\t      throw new Error(\"cannot turn \" + node.type + \" to a statement\");\n\t    }\n\t  }\n\n\t  node.type = newType;\n\n\t  return node;\n\t}\n\n\tfunction toExpression(node) {\n\t  if (t.isExpressionStatement(node)) {\n\t    node = node.expression;\n\t  }\n\n\t  if (t.isExpression(node)) {\n\t    return node;\n\t  }\n\n\t  if (t.isClass(node)) {\n\t    node.type = \"ClassExpression\";\n\t  } else if (t.isFunction(node)) {\n\t    node.type = \"FunctionExpression\";\n\t  }\n\n\t  if (!t.isExpression(node)) {\n\t    throw new Error(\"cannot turn \" + node.type + \" to an expression\");\n\t  }\n\n\t  return node;\n\t}\n\n\tfunction toBlock(node, parent) {\n\t  if (t.isBlockStatement(node)) {\n\t    return node;\n\t  }\n\n\t  if (t.isEmptyStatement(node)) {\n\t    node = [];\n\t  }\n\n\t  if (!Array.isArray(node)) {\n\t    if (!t.isStatement(node)) {\n\t      if (t.isFunction(parent)) {\n\t        node = t.returnStatement(node);\n\t      } else {\n\t        node = t.expressionStatement(node);\n\t      }\n\t    }\n\n\t    node = [node];\n\t  }\n\n\t  return t.blockStatement(node);\n\t}\n\n\tfunction valueToNode(value) {\n\t  if (value === undefined) {\n\t    return t.identifier(\"undefined\");\n\t  }\n\n\t  if (value === true || value === false) {\n\t    return t.booleanLiteral(value);\n\t  }\n\n\t  if (value === null) {\n\t    return t.nullLiteral();\n\t  }\n\n\t  if (typeof value === \"string\") {\n\t    return t.stringLiteral(value);\n\t  }\n\n\t  if (typeof value === \"number\") {\n\t    return t.numericLiteral(value);\n\t  }\n\n\t  if ((0, _isRegExp2.default)(value)) {\n\t    var pattern = value.source;\n\t    var flags = value.toString().match(/\\/([a-z]+|)$/)[1];\n\t    return t.regExpLiteral(pattern, flags);\n\t  }\n\n\t  if (Array.isArray(value)) {\n\t    return t.arrayExpression(value.map(t.valueToNode));\n\t  }\n\n\t  if ((0, _isPlainObject2.default)(value)) {\n\t    var props = [];\n\t    for (var key in value) {\n\t      var nodeKey = void 0;\n\t      if (t.isValidIdentifier(key)) {\n\t        nodeKey = t.identifier(key);\n\t      } else {\n\t        nodeKey = t.stringLiteral(key);\n\t      }\n\t      props.push(t.objectProperty(nodeKey, t.valueToNode(value[key])));\n\t    }\n\t    return t.objectExpression(props);\n\t  }\n\n\t  throw new Error(\"don't know how to turn this value into a node\");\n\t}\n\n/***/ }),\n/* 386 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tvar _constants = __webpack_require__(135);\n\n\tvar _index2 = __webpack_require__(26);\n\n\tvar _index3 = _interopRequireDefault(_index2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\t(0, _index3.default)(\"ArrayExpression\", {\n\t  fields: {\n\t    elements: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeOrValueType)(\"null\", \"Expression\", \"SpreadElement\"))),\n\t      default: []\n\t    }\n\t  },\n\t  visitor: [\"elements\"],\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"AssignmentExpression\", {\n\t  fields: {\n\t    operator: {\n\t      validate: (0, _index2.assertValueType)(\"string\")\n\t    },\n\t    left: {\n\t      validate: (0, _index2.assertNodeType)(\"LVal\")\n\t    },\n\t    right: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  },\n\t  builder: [\"operator\", \"left\", \"right\"],\n\t  visitor: [\"left\", \"right\"],\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"BinaryExpression\", {\n\t  builder: [\"operator\", \"left\", \"right\"],\n\t  fields: {\n\t    operator: {\n\t      validate: _index2.assertOneOf.apply(undefined, _constants.BINARY_OPERATORS)\n\t    },\n\t    left: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    right: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  },\n\t  visitor: [\"left\", \"right\"],\n\t  aliases: [\"Binary\", \"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"Directive\", {\n\t  visitor: [\"value\"],\n\t  fields: {\n\t    value: {\n\t      validate: (0, _index2.assertNodeType)(\"DirectiveLiteral\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"DirectiveLiteral\", {\n\t  builder: [\"value\"],\n\t  fields: {\n\t    value: {\n\t      validate: (0, _index2.assertValueType)(\"string\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"BlockStatement\", {\n\t  builder: [\"body\", \"directives\"],\n\t  visitor: [\"directives\", \"body\"],\n\t  fields: {\n\t    directives: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Directive\"))),\n\t      default: []\n\t    },\n\t    body: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Statement\")))\n\t    }\n\t  },\n\t  aliases: [\"Scopable\", \"BlockParent\", \"Block\", \"Statement\"]\n\t});\n\n\t(0, _index3.default)(\"BreakStatement\", {\n\t  visitor: [\"label\"],\n\t  fields: {\n\t    label: {\n\t      validate: (0, _index2.assertNodeType)(\"Identifier\"),\n\t      optional: true\n\t    }\n\t  },\n\t  aliases: [\"Statement\", \"Terminatorless\", \"CompletionStatement\"]\n\t});\n\n\t(0, _index3.default)(\"CallExpression\", {\n\t  visitor: [\"callee\", \"arguments\"],\n\t  fields: {\n\t    callee: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    arguments: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Expression\", \"SpreadElement\")))\n\t    }\n\t  },\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"CatchClause\", {\n\t  visitor: [\"param\", \"body\"],\n\t  fields: {\n\t    param: {\n\t      validate: (0, _index2.assertNodeType)(\"Identifier\")\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    }\n\t  },\n\t  aliases: [\"Scopable\"]\n\t});\n\n\t(0, _index3.default)(\"ConditionalExpression\", {\n\t  visitor: [\"test\", \"consequent\", \"alternate\"],\n\t  fields: {\n\t    test: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    consequent: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    alternate: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  },\n\t  aliases: [\"Expression\", \"Conditional\"]\n\t});\n\n\t(0, _index3.default)(\"ContinueStatement\", {\n\t  visitor: [\"label\"],\n\t  fields: {\n\t    label: {\n\t      validate: (0, _index2.assertNodeType)(\"Identifier\"),\n\t      optional: true\n\t    }\n\t  },\n\t  aliases: [\"Statement\", \"Terminatorless\", \"CompletionStatement\"]\n\t});\n\n\t(0, _index3.default)(\"DebuggerStatement\", {\n\t  aliases: [\"Statement\"]\n\t});\n\n\t(0, _index3.default)(\"DoWhileStatement\", {\n\t  visitor: [\"test\", \"body\"],\n\t  fields: {\n\t    test: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"Statement\")\n\t    }\n\t  },\n\t  aliases: [\"Statement\", \"BlockParent\", \"Loop\", \"While\", \"Scopable\"]\n\t});\n\n\t(0, _index3.default)(\"EmptyStatement\", {\n\t  aliases: [\"Statement\"]\n\t});\n\n\t(0, _index3.default)(\"ExpressionStatement\", {\n\t  visitor: [\"expression\"],\n\t  fields: {\n\t    expression: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  },\n\t  aliases: [\"Statement\", \"ExpressionWrapper\"]\n\t});\n\n\t(0, _index3.default)(\"File\", {\n\t  builder: [\"program\", \"comments\", \"tokens\"],\n\t  visitor: [\"program\"],\n\t  fields: {\n\t    program: {\n\t      validate: (0, _index2.assertNodeType)(\"Program\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"ForInStatement\", {\n\t  visitor: [\"left\", \"right\", \"body\"],\n\t  aliases: [\"Scopable\", \"Statement\", \"For\", \"BlockParent\", \"Loop\", \"ForXStatement\"],\n\t  fields: {\n\t    left: {\n\t      validate: (0, _index2.assertNodeType)(\"VariableDeclaration\", \"LVal\")\n\t    },\n\t    right: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"ForStatement\", {\n\t  visitor: [\"init\", \"test\", \"update\", \"body\"],\n\t  aliases: [\"Scopable\", \"Statement\", \"For\", \"BlockParent\", \"Loop\"],\n\t  fields: {\n\t    init: {\n\t      validate: (0, _index2.assertNodeType)(\"VariableDeclaration\", \"Expression\"),\n\t      optional: true\n\t    },\n\t    test: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\"),\n\t      optional: true\n\t    },\n\t    update: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\"),\n\t      optional: true\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"FunctionDeclaration\", {\n\t  builder: [\"id\", \"params\", \"body\", \"generator\", \"async\"],\n\t  visitor: [\"id\", \"params\", \"body\", \"returnType\", \"typeParameters\"],\n\t  fields: {\n\t    id: {\n\t      validate: (0, _index2.assertNodeType)(\"Identifier\")\n\t    },\n\t    params: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"LVal\")))\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    },\n\t    generator: {\n\t      default: false,\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    },\n\t    async: {\n\t      default: false,\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    }\n\t  },\n\t  aliases: [\"Scopable\", \"Function\", \"BlockParent\", \"FunctionParent\", \"Statement\", \"Pureish\", \"Declaration\"]\n\t});\n\n\t(0, _index3.default)(\"FunctionExpression\", {\n\t  inherits: \"FunctionDeclaration\",\n\t  aliases: [\"Scopable\", \"Function\", \"BlockParent\", \"FunctionParent\", \"Expression\", \"Pureish\"],\n\t  fields: {\n\t    id: {\n\t      validate: (0, _index2.assertNodeType)(\"Identifier\"),\n\t      optional: true\n\t    },\n\t    params: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"LVal\")))\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    },\n\t    generator: {\n\t      default: false,\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    },\n\t    async: {\n\t      default: false,\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"Identifier\", {\n\t  builder: [\"name\"],\n\t  visitor: [\"typeAnnotation\"],\n\t  aliases: [\"Expression\", \"LVal\"],\n\t  fields: {\n\t    name: {\n\t      validate: function validate(node, key, val) {\n\t        if (!t.isValidIdentifier(val)) {}\n\t      }\n\t    },\n\t    decorators: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"IfStatement\", {\n\t  visitor: [\"test\", \"consequent\", \"alternate\"],\n\t  aliases: [\"Statement\", \"Conditional\"],\n\t  fields: {\n\t    test: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    consequent: {\n\t      validate: (0, _index2.assertNodeType)(\"Statement\")\n\t    },\n\t    alternate: {\n\t      optional: true,\n\t      validate: (0, _index2.assertNodeType)(\"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"LabeledStatement\", {\n\t  visitor: [\"label\", \"body\"],\n\t  aliases: [\"Statement\"],\n\t  fields: {\n\t    label: {\n\t      validate: (0, _index2.assertNodeType)(\"Identifier\")\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"StringLiteral\", {\n\t  builder: [\"value\"],\n\t  fields: {\n\t    value: {\n\t      validate: (0, _index2.assertValueType)(\"string\")\n\t    }\n\t  },\n\t  aliases: [\"Expression\", \"Pureish\", \"Literal\", \"Immutable\"]\n\t});\n\n\t(0, _index3.default)(\"NumericLiteral\", {\n\t  builder: [\"value\"],\n\t  deprecatedAlias: \"NumberLiteral\",\n\t  fields: {\n\t    value: {\n\t      validate: (0, _index2.assertValueType)(\"number\")\n\t    }\n\t  },\n\t  aliases: [\"Expression\", \"Pureish\", \"Literal\", \"Immutable\"]\n\t});\n\n\t(0, _index3.default)(\"NullLiteral\", {\n\t  aliases: [\"Expression\", \"Pureish\", \"Literal\", \"Immutable\"]\n\t});\n\n\t(0, _index3.default)(\"BooleanLiteral\", {\n\t  builder: [\"value\"],\n\t  fields: {\n\t    value: {\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    }\n\t  },\n\t  aliases: [\"Expression\", \"Pureish\", \"Literal\", \"Immutable\"]\n\t});\n\n\t(0, _index3.default)(\"RegExpLiteral\", {\n\t  builder: [\"pattern\", \"flags\"],\n\t  deprecatedAlias: \"RegexLiteral\",\n\t  aliases: [\"Expression\", \"Literal\"],\n\t  fields: {\n\t    pattern: {\n\t      validate: (0, _index2.assertValueType)(\"string\")\n\t    },\n\t    flags: {\n\t      validate: (0, _index2.assertValueType)(\"string\"),\n\t      default: \"\"\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"LogicalExpression\", {\n\t  builder: [\"operator\", \"left\", \"right\"],\n\t  visitor: [\"left\", \"right\"],\n\t  aliases: [\"Binary\", \"Expression\"],\n\t  fields: {\n\t    operator: {\n\t      validate: _index2.assertOneOf.apply(undefined, _constants.LOGICAL_OPERATORS)\n\t    },\n\t    left: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    right: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"MemberExpression\", {\n\t  builder: [\"object\", \"property\", \"computed\"],\n\t  visitor: [\"object\", \"property\"],\n\t  aliases: [\"Expression\", \"LVal\"],\n\t  fields: {\n\t    object: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    property: {\n\t      validate: function validate(node, key, val) {\n\t        var expectedType = node.computed ? \"Expression\" : \"Identifier\";\n\t        (0, _index2.assertNodeType)(expectedType)(node, key, val);\n\t      }\n\t    },\n\t    computed: {\n\t      default: false\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"NewExpression\", {\n\t  visitor: [\"callee\", \"arguments\"],\n\t  aliases: [\"Expression\"],\n\t  fields: {\n\t    callee: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    arguments: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Expression\", \"SpreadElement\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"Program\", {\n\t  visitor: [\"directives\", \"body\"],\n\t  builder: [\"body\", \"directives\"],\n\t  fields: {\n\t    directives: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Directive\"))),\n\t      default: []\n\t    },\n\t    body: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Statement\")))\n\t    }\n\t  },\n\t  aliases: [\"Scopable\", \"BlockParent\", \"Block\", \"FunctionParent\"]\n\t});\n\n\t(0, _index3.default)(\"ObjectExpression\", {\n\t  visitor: [\"properties\"],\n\t  aliases: [\"Expression\"],\n\t  fields: {\n\t    properties: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"ObjectMethod\", \"ObjectProperty\", \"SpreadProperty\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"ObjectMethod\", {\n\t  builder: [\"kind\", \"key\", \"params\", \"body\", \"computed\"],\n\t  fields: {\n\t    kind: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"string\"), (0, _index2.assertOneOf)(\"method\", \"get\", \"set\")),\n\t      default: \"method\"\n\t    },\n\t    computed: {\n\t      validate: (0, _index2.assertValueType)(\"boolean\"),\n\t      default: false\n\t    },\n\t    key: {\n\t      validate: function validate(node, key, val) {\n\t        var expectedTypes = node.computed ? [\"Expression\"] : [\"Identifier\", \"StringLiteral\", \"NumericLiteral\"];\n\t        _index2.assertNodeType.apply(undefined, expectedTypes)(node, key, val);\n\t      }\n\t    },\n\t    decorators: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Decorator\")))\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    },\n\t    generator: {\n\t      default: false,\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    },\n\t    async: {\n\t      default: false,\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    }\n\t  },\n\t  visitor: [\"key\", \"params\", \"body\", \"decorators\", \"returnType\", \"typeParameters\"],\n\t  aliases: [\"UserWhitespacable\", \"Function\", \"Scopable\", \"BlockParent\", \"FunctionParent\", \"Method\", \"ObjectMember\"]\n\t});\n\n\t(0, _index3.default)(\"ObjectProperty\", {\n\t  builder: [\"key\", \"value\", \"computed\", \"shorthand\", \"decorators\"],\n\t  fields: {\n\t    computed: {\n\t      validate: (0, _index2.assertValueType)(\"boolean\"),\n\t      default: false\n\t    },\n\t    key: {\n\t      validate: function validate(node, key, val) {\n\t        var expectedTypes = node.computed ? [\"Expression\"] : [\"Identifier\", \"StringLiteral\", \"NumericLiteral\"];\n\t        _index2.assertNodeType.apply(undefined, expectedTypes)(node, key, val);\n\t      }\n\t    },\n\t    value: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\", \"Pattern\", \"RestElement\")\n\t    },\n\t    shorthand: {\n\t      validate: (0, _index2.assertValueType)(\"boolean\"),\n\t      default: false\n\t    },\n\t    decorators: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Decorator\"))),\n\t      optional: true\n\t    }\n\t  },\n\t  visitor: [\"key\", \"value\", \"decorators\"],\n\t  aliases: [\"UserWhitespacable\", \"Property\", \"ObjectMember\"]\n\t});\n\n\t(0, _index3.default)(\"RestElement\", {\n\t  visitor: [\"argument\", \"typeAnnotation\"],\n\t  aliases: [\"LVal\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index2.assertNodeType)(\"LVal\")\n\t    },\n\t    decorators: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"ReturnStatement\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Statement\", \"Terminatorless\", \"CompletionStatement\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\"),\n\t      optional: true\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"SequenceExpression\", {\n\t  visitor: [\"expressions\"],\n\t  fields: {\n\t    expressions: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Expression\")))\n\t    }\n\t  },\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"SwitchCase\", {\n\t  visitor: [\"test\", \"consequent\"],\n\t  fields: {\n\t    test: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\"),\n\t      optional: true\n\t    },\n\t    consequent: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Statement\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"SwitchStatement\", {\n\t  visitor: [\"discriminant\", \"cases\"],\n\t  aliases: [\"Statement\", \"BlockParent\", \"Scopable\"],\n\t  fields: {\n\t    discriminant: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    cases: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"SwitchCase\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"ThisExpression\", {\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"ThrowStatement\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Statement\", \"Terminatorless\", \"CompletionStatement\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"TryStatement\", {\n\t  visitor: [\"block\", \"handler\", \"finalizer\"],\n\t  aliases: [\"Statement\"],\n\t  fields: {\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    },\n\t    handler: {\n\t      optional: true,\n\t      handler: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    },\n\t    finalizer: {\n\t      optional: true,\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"UnaryExpression\", {\n\t  builder: [\"operator\", \"argument\", \"prefix\"],\n\t  fields: {\n\t    prefix: {\n\t      default: true\n\t    },\n\t    argument: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    operator: {\n\t      validate: _index2.assertOneOf.apply(undefined, _constants.UNARY_OPERATORS)\n\t    }\n\t  },\n\t  visitor: [\"argument\"],\n\t  aliases: [\"UnaryLike\", \"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"UpdateExpression\", {\n\t  builder: [\"operator\", \"argument\", \"prefix\"],\n\t  fields: {\n\t    prefix: {\n\t      default: false\n\t    },\n\t    argument: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    operator: {\n\t      validate: _index2.assertOneOf.apply(undefined, _constants.UPDATE_OPERATORS)\n\t    }\n\t  },\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"VariableDeclaration\", {\n\t  builder: [\"kind\", \"declarations\"],\n\t  visitor: [\"declarations\"],\n\t  aliases: [\"Statement\", \"Declaration\"],\n\t  fields: {\n\t    kind: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"string\"), (0, _index2.assertOneOf)(\"var\", \"let\", \"const\"))\n\t    },\n\t    declarations: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"VariableDeclarator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"VariableDeclarator\", {\n\t  visitor: [\"id\", \"init\"],\n\t  fields: {\n\t    id: {\n\t      validate: (0, _index2.assertNodeType)(\"LVal\")\n\t    },\n\t    init: {\n\t      optional: true,\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"WhileStatement\", {\n\t  visitor: [\"test\", \"body\"],\n\t  aliases: [\"Statement\", \"BlockParent\", \"Loop\", \"While\", \"Scopable\"],\n\t  fields: {\n\t    test: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\", \"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"WithStatement\", {\n\t  visitor: [\"object\", \"body\"],\n\t  aliases: [\"Statement\"],\n\t  fields: {\n\t    object: {\n\t      object: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\", \"Statement\")\n\t    }\n\t  }\n\t});\n\n/***/ }),\n/* 387 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _index = __webpack_require__(26);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\t(0, _index2.default)(\"AssignmentPattern\", {\n\t  visitor: [\"left\", \"right\"],\n\t  aliases: [\"Pattern\", \"LVal\"],\n\t  fields: {\n\t    left: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    },\n\t    right: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    },\n\t    decorators: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ArrayPattern\", {\n\t  visitor: [\"elements\", \"typeAnnotation\"],\n\t  aliases: [\"Pattern\", \"LVal\"],\n\t  fields: {\n\t    elements: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Identifier\", \"Pattern\", \"RestElement\")))\n\t    },\n\t    decorators: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ArrowFunctionExpression\", {\n\t  builder: [\"params\", \"body\", \"async\"],\n\t  visitor: [\"params\", \"body\", \"returnType\", \"typeParameters\"],\n\t  aliases: [\"Scopable\", \"Function\", \"BlockParent\", \"FunctionParent\", \"Expression\", \"Pureish\"],\n\t  fields: {\n\t    params: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"LVal\")))\n\t    },\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"BlockStatement\", \"Expression\")\n\t    },\n\t    async: {\n\t      validate: (0, _index.assertValueType)(\"boolean\"),\n\t      default: false\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ClassBody\", {\n\t  visitor: [\"body\"],\n\t  fields: {\n\t    body: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"ClassMethod\", \"ClassProperty\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ClassDeclaration\", {\n\t  builder: [\"id\", \"superClass\", \"body\", \"decorators\"],\n\t  visitor: [\"id\", \"body\", \"superClass\", \"mixins\", \"typeParameters\", \"superTypeParameters\", \"implements\", \"decorators\"],\n\t  aliases: [\"Scopable\", \"Class\", \"Statement\", \"Declaration\", \"Pureish\"],\n\t  fields: {\n\t    id: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    },\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"ClassBody\")\n\t    },\n\t    superClass: {\n\t      optional: true,\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    },\n\t    decorators: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ClassExpression\", {\n\t  inherits: \"ClassDeclaration\",\n\t  aliases: [\"Scopable\", \"Class\", \"Expression\", \"Pureish\"],\n\t  fields: {\n\t    id: {\n\t      optional: true,\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    },\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"ClassBody\")\n\t    },\n\t    superClass: {\n\t      optional: true,\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    },\n\t    decorators: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ExportAllDeclaration\", {\n\t  visitor: [\"source\"],\n\t  aliases: [\"Statement\", \"Declaration\", \"ModuleDeclaration\", \"ExportDeclaration\"],\n\t  fields: {\n\t    source: {\n\t      validate: (0, _index.assertNodeType)(\"StringLiteral\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ExportDefaultDeclaration\", {\n\t  visitor: [\"declaration\"],\n\t  aliases: [\"Statement\", \"Declaration\", \"ModuleDeclaration\", \"ExportDeclaration\"],\n\t  fields: {\n\t    declaration: {\n\t      validate: (0, _index.assertNodeType)(\"FunctionDeclaration\", \"ClassDeclaration\", \"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ExportNamedDeclaration\", {\n\t  visitor: [\"declaration\", \"specifiers\", \"source\"],\n\t  aliases: [\"Statement\", \"Declaration\", \"ModuleDeclaration\", \"ExportDeclaration\"],\n\t  fields: {\n\t    declaration: {\n\t      validate: (0, _index.assertNodeType)(\"Declaration\"),\n\t      optional: true\n\t    },\n\t    specifiers: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"ExportSpecifier\")))\n\t    },\n\t    source: {\n\t      validate: (0, _index.assertNodeType)(\"StringLiteral\"),\n\t      optional: true\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ExportSpecifier\", {\n\t  visitor: [\"local\", \"exported\"],\n\t  aliases: [\"ModuleSpecifier\"],\n\t  fields: {\n\t    local: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    },\n\t    exported: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ForOfStatement\", {\n\t  visitor: [\"left\", \"right\", \"body\"],\n\t  aliases: [\"Scopable\", \"Statement\", \"For\", \"BlockParent\", \"Loop\", \"ForXStatement\"],\n\t  fields: {\n\t    left: {\n\t      validate: (0, _index.assertNodeType)(\"VariableDeclaration\", \"LVal\")\n\t    },\n\t    right: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    },\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ImportDeclaration\", {\n\t  visitor: [\"specifiers\", \"source\"],\n\t  aliases: [\"Statement\", \"Declaration\", \"ModuleDeclaration\"],\n\t  fields: {\n\t    specifiers: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"ImportSpecifier\", \"ImportDefaultSpecifier\", \"ImportNamespaceSpecifier\")))\n\t    },\n\t    source: {\n\t      validate: (0, _index.assertNodeType)(\"StringLiteral\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ImportDefaultSpecifier\", {\n\t  visitor: [\"local\"],\n\t  aliases: [\"ModuleSpecifier\"],\n\t  fields: {\n\t    local: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ImportNamespaceSpecifier\", {\n\t  visitor: [\"local\"],\n\t  aliases: [\"ModuleSpecifier\"],\n\t  fields: {\n\t    local: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ImportSpecifier\", {\n\t  visitor: [\"local\", \"imported\"],\n\t  aliases: [\"ModuleSpecifier\"],\n\t  fields: {\n\t    local: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    },\n\t    imported: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    },\n\t    importKind: {\n\t      validate: (0, _index.assertOneOf)(null, \"type\", \"typeof\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"MetaProperty\", {\n\t  visitor: [\"meta\", \"property\"],\n\t  aliases: [\"Expression\"],\n\t  fields: {\n\t    meta: {\n\t      validate: (0, _index.assertValueType)(\"string\")\n\t    },\n\t    property: {\n\t      validate: (0, _index.assertValueType)(\"string\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ClassMethod\", {\n\t  aliases: [\"Function\", \"Scopable\", \"BlockParent\", \"FunctionParent\", \"Method\"],\n\t  builder: [\"kind\", \"key\", \"params\", \"body\", \"computed\", \"static\"],\n\t  visitor: [\"key\", \"params\", \"body\", \"decorators\", \"returnType\", \"typeParameters\"],\n\t  fields: {\n\t    kind: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"string\"), (0, _index.assertOneOf)(\"get\", \"set\", \"method\", \"constructor\")),\n\t      default: \"method\"\n\t    },\n\t    computed: {\n\t      default: false,\n\t      validate: (0, _index.assertValueType)(\"boolean\")\n\t    },\n\t    static: {\n\t      default: false,\n\t      validate: (0, _index.assertValueType)(\"boolean\")\n\t    },\n\t    key: {\n\t      validate: function validate(node, key, val) {\n\t        var expectedTypes = node.computed ? [\"Expression\"] : [\"Identifier\", \"StringLiteral\", \"NumericLiteral\"];\n\t        _index.assertNodeType.apply(undefined, expectedTypes)(node, key, val);\n\t      }\n\t    },\n\t    params: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"LVal\")))\n\t    },\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"BlockStatement\")\n\t    },\n\t    generator: {\n\t      default: false,\n\t      validate: (0, _index.assertValueType)(\"boolean\")\n\t    },\n\t    async: {\n\t      default: false,\n\t      validate: (0, _index.assertValueType)(\"boolean\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ObjectPattern\", {\n\t  visitor: [\"properties\", \"typeAnnotation\"],\n\t  aliases: [\"Pattern\", \"LVal\"],\n\t  fields: {\n\t    properties: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"RestProperty\", \"Property\")))\n\t    },\n\t    decorators: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"SpreadElement\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"UnaryLike\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"Super\", {\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index2.default)(\"TaggedTemplateExpression\", {\n\t  visitor: [\"tag\", \"quasi\"],\n\t  aliases: [\"Expression\"],\n\t  fields: {\n\t    tag: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    },\n\t    quasi: {\n\t      validate: (0, _index.assertNodeType)(\"TemplateLiteral\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"TemplateElement\", {\n\t  builder: [\"value\", \"tail\"],\n\t  fields: {\n\t    value: {},\n\t    tail: {\n\t      validate: (0, _index.assertValueType)(\"boolean\"),\n\t      default: false\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"TemplateLiteral\", {\n\t  visitor: [\"quasis\", \"expressions\"],\n\t  aliases: [\"Expression\", \"Literal\"],\n\t  fields: {\n\t    quasis: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"TemplateElement\")))\n\t    },\n\t    expressions: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Expression\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"YieldExpression\", {\n\t  builder: [\"argument\", \"delegate\"],\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Expression\", \"Terminatorless\"],\n\t  fields: {\n\t    delegate: {\n\t      validate: (0, _index.assertValueType)(\"boolean\"),\n\t      default: false\n\t    },\n\t    argument: {\n\t      optional: true,\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n/***/ }),\n/* 388 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _index = __webpack_require__(26);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\t(0, _index2.default)(\"AwaitExpression\", {\n\t  builder: [\"argument\"],\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Expression\", \"Terminatorless\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ForAwaitStatement\", {\n\t  visitor: [\"left\", \"right\", \"body\"],\n\t  aliases: [\"Scopable\", \"Statement\", \"For\", \"BlockParent\", \"Loop\", \"ForXStatement\"],\n\t  fields: {\n\t    left: {\n\t      validate: (0, _index.assertNodeType)(\"VariableDeclaration\", \"LVal\")\n\t    },\n\t    right: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    },\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"BindExpression\", {\n\t  visitor: [\"object\", \"callee\"],\n\t  aliases: [\"Expression\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"Import\", {\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index2.default)(\"Decorator\", {\n\t  visitor: [\"expression\"],\n\t  fields: {\n\t    expression: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"DoExpression\", {\n\t  visitor: [\"body\"],\n\t  aliases: [\"Expression\"],\n\t  fields: {\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"BlockStatement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ExportDefaultSpecifier\", {\n\t  visitor: [\"exported\"],\n\t  aliases: [\"ModuleSpecifier\"],\n\t  fields: {\n\t    exported: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ExportNamespaceSpecifier\", {\n\t  visitor: [\"exported\"],\n\t  aliases: [\"ModuleSpecifier\"],\n\t  fields: {\n\t    exported: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"RestProperty\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"UnaryLike\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index.assertNodeType)(\"LVal\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"SpreadProperty\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"UnaryLike\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n/***/ }),\n/* 389 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _index = __webpack_require__(26);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\t(0, _index2.default)(\"AnyTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ArrayTypeAnnotation\", {\n\t  visitor: [\"elementType\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"BooleanTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"BooleanLiteralTypeAnnotation\", {\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"NullLiteralTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ClassImplements\", {\n\t  visitor: [\"id\", \"typeParameters\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ClassProperty\", {\n\t  visitor: [\"key\", \"value\", \"typeAnnotation\", \"decorators\"],\n\t  builder: [\"key\", \"value\", \"typeAnnotation\", \"decorators\", \"computed\"],\n\t  aliases: [\"Property\"],\n\t  fields: {\n\t    computed: {\n\t      validate: (0, _index.assertValueType)(\"boolean\"),\n\t      default: false\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"DeclareClass\", {\n\t  visitor: [\"id\", \"typeParameters\", \"extends\", \"body\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareFunction\", {\n\t  visitor: [\"id\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareInterface\", {\n\t  visitor: [\"id\", \"typeParameters\", \"extends\", \"body\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareModule\", {\n\t  visitor: [\"id\", \"body\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareModuleExports\", {\n\t  visitor: [\"typeAnnotation\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareTypeAlias\", {\n\t  visitor: [\"id\", \"typeParameters\", \"right\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareOpaqueType\", {\n\t  visitor: [\"id\", \"typeParameters\", \"supertype\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareVariable\", {\n\t  visitor: [\"id\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareExportDeclaration\", {\n\t  visitor: [\"declaration\", \"specifiers\", \"source\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ExistentialTypeParam\", {\n\t  aliases: [\"Flow\"]\n\t});\n\n\t(0, _index2.default)(\"FunctionTypeAnnotation\", {\n\t  visitor: [\"typeParameters\", \"params\", \"rest\", \"returnType\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"FunctionTypeParam\", {\n\t  visitor: [\"name\", \"typeAnnotation\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"GenericTypeAnnotation\", {\n\t  visitor: [\"id\", \"typeParameters\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"InterfaceExtends\", {\n\t  visitor: [\"id\", \"typeParameters\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"InterfaceDeclaration\", {\n\t  visitor: [\"id\", \"typeParameters\", \"extends\", \"body\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"IntersectionTypeAnnotation\", {\n\t  visitor: [\"types\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"MixedTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"]\n\t});\n\n\t(0, _index2.default)(\"EmptyTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"]\n\t});\n\n\t(0, _index2.default)(\"NullableTypeAnnotation\", {\n\t  visitor: [\"typeAnnotation\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"NumericLiteralTypeAnnotation\", {\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"NumberTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"StringLiteralTypeAnnotation\", {\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"StringTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ThisTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TupleTypeAnnotation\", {\n\t  visitor: [\"types\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeofTypeAnnotation\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeAlias\", {\n\t  visitor: [\"id\", \"typeParameters\", \"right\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"OpaqueType\", {\n\t  visitor: [\"id\", \"typeParameters\", \"impltype\", \"supertype\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeAnnotation\", {\n\t  visitor: [\"typeAnnotation\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeCastExpression\", {\n\t  visitor: [\"expression\", \"typeAnnotation\"],\n\t  aliases: [\"Flow\", \"ExpressionWrapper\", \"Expression\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeParameter\", {\n\t  visitor: [\"bound\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeParameterDeclaration\", {\n\t  visitor: [\"params\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeParameterInstantiation\", {\n\t  visitor: [\"params\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ObjectTypeAnnotation\", {\n\t  visitor: [\"properties\", \"indexers\", \"callProperties\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ObjectTypeCallProperty\", {\n\t  visitor: [\"value\"],\n\t  aliases: [\"Flow\", \"UserWhitespacable\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ObjectTypeIndexer\", {\n\t  visitor: [\"id\", \"key\", \"value\"],\n\t  aliases: [\"Flow\", \"UserWhitespacable\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ObjectTypeProperty\", {\n\t  visitor: [\"key\", \"value\"],\n\t  aliases: [\"Flow\", \"UserWhitespacable\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ObjectTypeSpreadProperty\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Flow\", \"UserWhitespacable\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"QualifiedTypeIdentifier\", {\n\t  visitor: [\"id\", \"qualification\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"UnionTypeAnnotation\", {\n\t  visitor: [\"types\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"VoidTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n/***/ }),\n/* 390 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\t__webpack_require__(26);\n\n\t__webpack_require__(386);\n\n\t__webpack_require__(387);\n\n\t__webpack_require__(389);\n\n\t__webpack_require__(391);\n\n\t__webpack_require__(392);\n\n\t__webpack_require__(388);\n\n/***/ }),\n/* 391 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _index = __webpack_require__(26);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\t(0, _index2.default)(\"JSXAttribute\", {\n\t  visitor: [\"name\", \"value\"],\n\t  aliases: [\"JSX\", \"Immutable\"],\n\t  fields: {\n\t    name: {\n\t      validate: (0, _index.assertNodeType)(\"JSXIdentifier\", \"JSXNamespacedName\")\n\t    },\n\t    value: {\n\t      optional: true,\n\t      validate: (0, _index.assertNodeType)(\"JSXElement\", \"StringLiteral\", \"JSXExpressionContainer\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXClosingElement\", {\n\t  visitor: [\"name\"],\n\t  aliases: [\"JSX\", \"Immutable\"],\n\t  fields: {\n\t    name: {\n\t      validate: (0, _index.assertNodeType)(\"JSXIdentifier\", \"JSXMemberExpression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXElement\", {\n\t  builder: [\"openingElement\", \"closingElement\", \"children\", \"selfClosing\"],\n\t  visitor: [\"openingElement\", \"children\", \"closingElement\"],\n\t  aliases: [\"JSX\", \"Immutable\", \"Expression\"],\n\t  fields: {\n\t    openingElement: {\n\t      validate: (0, _index.assertNodeType)(\"JSXOpeningElement\")\n\t    },\n\t    closingElement: {\n\t      optional: true,\n\t      validate: (0, _index.assertNodeType)(\"JSXClosingElement\")\n\t    },\n\t    children: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"JSXText\", \"JSXExpressionContainer\", \"JSXSpreadChild\", \"JSXElement\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXEmptyExpression\", {\n\t  aliases: [\"JSX\", \"Expression\"]\n\t});\n\n\t(0, _index2.default)(\"JSXExpressionContainer\", {\n\t  visitor: [\"expression\"],\n\t  aliases: [\"JSX\", \"Immutable\"],\n\t  fields: {\n\t    expression: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXSpreadChild\", {\n\t  visitor: [\"expression\"],\n\t  aliases: [\"JSX\", \"Immutable\"],\n\t  fields: {\n\t    expression: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXIdentifier\", {\n\t  builder: [\"name\"],\n\t  aliases: [\"JSX\", \"Expression\"],\n\t  fields: {\n\t    name: {\n\t      validate: (0, _index.assertValueType)(\"string\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXMemberExpression\", {\n\t  visitor: [\"object\", \"property\"],\n\t  aliases: [\"JSX\", \"Expression\"],\n\t  fields: {\n\t    object: {\n\t      validate: (0, _index.assertNodeType)(\"JSXMemberExpression\", \"JSXIdentifier\")\n\t    },\n\t    property: {\n\t      validate: (0, _index.assertNodeType)(\"JSXIdentifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXNamespacedName\", {\n\t  visitor: [\"namespace\", \"name\"],\n\t  aliases: [\"JSX\"],\n\t  fields: {\n\t    namespace: {\n\t      validate: (0, _index.assertNodeType)(\"JSXIdentifier\")\n\t    },\n\t    name: {\n\t      validate: (0, _index.assertNodeType)(\"JSXIdentifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXOpeningElement\", {\n\t  builder: [\"name\", \"attributes\", \"selfClosing\"],\n\t  visitor: [\"name\", \"attributes\"],\n\t  aliases: [\"JSX\", \"Immutable\"],\n\t  fields: {\n\t    name: {\n\t      validate: (0, _index.assertNodeType)(\"JSXIdentifier\", \"JSXMemberExpression\")\n\t    },\n\t    selfClosing: {\n\t      default: false,\n\t      validate: (0, _index.assertValueType)(\"boolean\")\n\t    },\n\t    attributes: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"JSXAttribute\", \"JSXSpreadAttribute\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXSpreadAttribute\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"JSX\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXText\", {\n\t  aliases: [\"JSX\", \"Immutable\"],\n\t  builder: [\"value\"],\n\t  fields: {\n\t    value: {\n\t      validate: (0, _index.assertValueType)(\"string\")\n\t    }\n\t  }\n\t});\n\n/***/ }),\n/* 392 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _index = __webpack_require__(26);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\t(0, _index2.default)(\"Noop\", {\n\t  visitor: []\n\t});\n\n\t(0, _index2.default)(\"ParenthesizedExpression\", {\n\t  visitor: [\"expression\"],\n\t  aliases: [\"Expression\", \"ExpressionWrapper\"],\n\t  fields: {\n\t    expression: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n/***/ }),\n/* 393 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.createUnionTypeAnnotation = createUnionTypeAnnotation;\n\texports.removeTypeDuplicates = removeTypeDuplicates;\n\texports.createTypeAnnotationBasedOnTypeof = createTypeAnnotationBasedOnTypeof;\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction createUnionTypeAnnotation(types) {\n\t  var flattened = removeTypeDuplicates(types);\n\n\t  if (flattened.length === 1) {\n\t    return flattened[0];\n\t  } else {\n\t    return t.unionTypeAnnotation(flattened);\n\t  }\n\t}\n\n\tfunction removeTypeDuplicates(nodes) {\n\t  var generics = {};\n\t  var bases = {};\n\n\t  var typeGroups = [];\n\n\t  var types = [];\n\n\t  for (var i = 0; i < nodes.length; i++) {\n\t    var node = nodes[i];\n\t    if (!node) continue;\n\n\t    if (types.indexOf(node) >= 0) {\n\t      continue;\n\t    }\n\n\t    if (t.isAnyTypeAnnotation(node)) {\n\t      return [node];\n\t    }\n\n\t    if (t.isFlowBaseAnnotation(node)) {\n\t      bases[node.type] = node;\n\t      continue;\n\t    }\n\n\t    if (t.isUnionTypeAnnotation(node)) {\n\t      if (typeGroups.indexOf(node.types) < 0) {\n\t        nodes = nodes.concat(node.types);\n\t        typeGroups.push(node.types);\n\t      }\n\t      continue;\n\t    }\n\n\t    if (t.isGenericTypeAnnotation(node)) {\n\t      var name = node.id.name;\n\n\t      if (generics[name]) {\n\t        var existing = generics[name];\n\t        if (existing.typeParameters) {\n\t          if (node.typeParameters) {\n\t            existing.typeParameters.params = removeTypeDuplicates(existing.typeParameters.params.concat(node.typeParameters.params));\n\t          }\n\t        } else {\n\t          existing = node.typeParameters;\n\t        }\n\t      } else {\n\t        generics[name] = node;\n\t      }\n\n\t      continue;\n\t    }\n\n\t    types.push(node);\n\t  }\n\n\t  for (var type in bases) {\n\t    types.push(bases[type]);\n\t  }\n\n\t  for (var _name in generics) {\n\t    types.push(generics[_name]);\n\t  }\n\n\t  return types;\n\t}\n\n\tfunction createTypeAnnotationBasedOnTypeof(type) {\n\t  if (type === \"string\") {\n\t    return t.stringTypeAnnotation();\n\t  } else if (type === \"number\") {\n\t    return t.numberTypeAnnotation();\n\t  } else if (type === \"undefined\") {\n\t    return t.voidTypeAnnotation();\n\t  } else if (type === \"boolean\") {\n\t    return t.booleanTypeAnnotation();\n\t  } else if (type === \"function\") {\n\t    return t.genericTypeAnnotation(t.identifier(\"Function\"));\n\t  } else if (type === \"object\") {\n\t    return t.genericTypeAnnotation(t.identifier(\"Object\"));\n\t  } else if (type === \"symbol\") {\n\t    return t.genericTypeAnnotation(t.identifier(\"Symbol\"));\n\t  } else {\n\t    throw new Error(\"Invalid typeof value\");\n\t  }\n\t}\n\n/***/ }),\n/* 394 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.isReactComponent = undefined;\n\texports.isCompatTag = isCompatTag;\n\texports.buildChildren = buildChildren;\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tvar isReactComponent = exports.isReactComponent = t.buildMatchMemberExpression(\"React.Component\");\n\n\tfunction isCompatTag(tagName) {\n\t  return !!tagName && /^[a-z]|\\-/.test(tagName);\n\t}\n\n\tfunction cleanJSXElementLiteralChild(child, args) {\n\t  var lines = child.value.split(/\\r\\n|\\n|\\r/);\n\n\t  var lastNonEmptyLine = 0;\n\n\t  for (var i = 0; i < lines.length; i++) {\n\t    if (lines[i].match(/[^ \\t]/)) {\n\t      lastNonEmptyLine = i;\n\t    }\n\t  }\n\n\t  var str = \"\";\n\n\t  for (var _i = 0; _i < lines.length; _i++) {\n\t    var line = lines[_i];\n\n\t    var isFirstLine = _i === 0;\n\t    var isLastLine = _i === lines.length - 1;\n\t    var isLastNonEmptyLine = _i === lastNonEmptyLine;\n\n\t    var trimmedLine = line.replace(/\\t/g, \" \");\n\n\t    if (!isFirstLine) {\n\t      trimmedLine = trimmedLine.replace(/^[ ]+/, \"\");\n\t    }\n\n\t    if (!isLastLine) {\n\t      trimmedLine = trimmedLine.replace(/[ ]+$/, \"\");\n\t    }\n\n\t    if (trimmedLine) {\n\t      if (!isLastNonEmptyLine) {\n\t        trimmedLine += \" \";\n\t      }\n\n\t      str += trimmedLine;\n\t    }\n\t  }\n\n\t  if (str) args.push(t.stringLiteral(str));\n\t}\n\n\tfunction buildChildren(node) {\n\t  var elems = [];\n\n\t  for (var i = 0; i < node.children.length; i++) {\n\t    var child = node.children[i];\n\n\t    if (t.isJSXText(child)) {\n\t      cleanJSXElementLiteralChild(child, elems);\n\t      continue;\n\t    }\n\n\t    if (t.isJSXExpressionContainer(child)) child = child.expression;\n\t    if (t.isJSXEmptyExpression(child)) continue;\n\n\t    elems.push(child);\n\t  }\n\n\t  return elems;\n\t}\n\n/***/ }),\n/* 395 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.isBinding = isBinding;\n\texports.isReferenced = isReferenced;\n\texports.isValidIdentifier = isValidIdentifier;\n\texports.isLet = isLet;\n\texports.isBlockScoped = isBlockScoped;\n\texports.isVar = isVar;\n\texports.isSpecifierDefault = isSpecifierDefault;\n\texports.isScope = isScope;\n\texports.isImmutable = isImmutable;\n\texports.isNodesEquivalent = isNodesEquivalent;\n\n\tvar _retrievers = __webpack_require__(226);\n\n\tvar _esutils = __webpack_require__(97);\n\n\tvar _esutils2 = _interopRequireDefault(_esutils);\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tvar _constants = __webpack_require__(135);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction isBinding(node, parent) {\n\t  var keys = _retrievers.getBindingIdentifiers.keys[parent.type];\n\t  if (keys) {\n\t    for (var i = 0; i < keys.length; i++) {\n\t      var key = keys[i];\n\t      var val = parent[key];\n\t      if (Array.isArray(val)) {\n\t        if (val.indexOf(node) >= 0) return true;\n\t      } else {\n\t        if (val === node) return true;\n\t      }\n\t    }\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction isReferenced(node, parent) {\n\t  switch (parent.type) {\n\t    case \"BindExpression\":\n\t      return parent.object === node || parent.callee === node;\n\n\t    case \"MemberExpression\":\n\t    case \"JSXMemberExpression\":\n\t      if (parent.property === node && parent.computed) {\n\t        return true;\n\t      } else if (parent.object === node) {\n\t        return true;\n\t      } else {\n\t        return false;\n\t      }\n\n\t    case \"MetaProperty\":\n\t      return false;\n\n\t    case \"ObjectProperty\":\n\t      if (parent.key === node) {\n\t        return parent.computed;\n\t      }\n\n\t    case \"VariableDeclarator\":\n\t      return parent.id !== node;\n\n\t    case \"ArrowFunctionExpression\":\n\t    case \"FunctionDeclaration\":\n\t    case \"FunctionExpression\":\n\t      for (var _iterator = parent.params, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref = _i.value;\n\t        }\n\n\t        var param = _ref;\n\n\t        if (param === node) return false;\n\t      }\n\n\t      return parent.id !== node;\n\n\t    case \"ExportSpecifier\":\n\t      if (parent.source) {\n\t        return false;\n\t      } else {\n\t        return parent.local === node;\n\t      }\n\n\t    case \"ExportNamespaceSpecifier\":\n\t    case \"ExportDefaultSpecifier\":\n\t      return false;\n\n\t    case \"JSXAttribute\":\n\t      return parent.name !== node;\n\n\t    case \"ClassProperty\":\n\t      if (parent.key === node) {\n\t        return parent.computed;\n\t      } else {\n\t        return parent.value === node;\n\t      }\n\n\t    case \"ImportDefaultSpecifier\":\n\t    case \"ImportNamespaceSpecifier\":\n\t    case \"ImportSpecifier\":\n\t      return false;\n\n\t    case \"ClassDeclaration\":\n\t    case \"ClassExpression\":\n\t      return parent.id !== node;\n\n\t    case \"ClassMethod\":\n\t    case \"ObjectMethod\":\n\t      return parent.key === node && parent.computed;\n\n\t    case \"LabeledStatement\":\n\t      return false;\n\n\t    case \"CatchClause\":\n\t      return parent.param !== node;\n\n\t    case \"RestElement\":\n\t      return false;\n\n\t    case \"AssignmentExpression\":\n\t      return parent.right === node;\n\n\t    case \"AssignmentPattern\":\n\t      return parent.right === node;\n\n\t    case \"ObjectPattern\":\n\t    case \"ArrayPattern\":\n\t      return false;\n\t  }\n\n\t  return true;\n\t}\n\n\tfunction isValidIdentifier(name) {\n\t  if (typeof name !== \"string\" || _esutils2.default.keyword.isReservedWordES6(name, true)) {\n\t    return false;\n\t  } else if (name === \"await\") {\n\t    return false;\n\t  } else {\n\t    return _esutils2.default.keyword.isIdentifierNameES6(name);\n\t  }\n\t}\n\n\tfunction isLet(node) {\n\t  return t.isVariableDeclaration(node) && (node.kind !== \"var\" || node[_constants.BLOCK_SCOPED_SYMBOL]);\n\t}\n\n\tfunction isBlockScoped(node) {\n\t  return t.isFunctionDeclaration(node) || t.isClassDeclaration(node) || t.isLet(node);\n\t}\n\n\tfunction isVar(node) {\n\t  return t.isVariableDeclaration(node, { kind: \"var\" }) && !node[_constants.BLOCK_SCOPED_SYMBOL];\n\t}\n\n\tfunction isSpecifierDefault(specifier) {\n\t  return t.isImportDefaultSpecifier(specifier) || t.isIdentifier(specifier.imported || specifier.exported, { name: \"default\" });\n\t}\n\n\tfunction isScope(node, parent) {\n\t  if (t.isBlockStatement(node) && t.isFunction(parent, { body: node })) {\n\t    return false;\n\t  }\n\n\t  return t.isScopable(node);\n\t}\n\n\tfunction isImmutable(node) {\n\t  if (t.isType(node.type, \"Immutable\")) return true;\n\n\t  if (t.isIdentifier(node)) {\n\t    if (node.name === \"undefined\") {\n\t      return true;\n\t    } else {\n\t      return false;\n\t    }\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction isNodesEquivalent(a, b) {\n\t  if ((typeof a === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(a)) !== \"object\" || (typeof a === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(a)) !== \"object\" || a == null || b == null) {\n\t    return a === b;\n\t  }\n\n\t  if (a.type !== b.type) {\n\t    return false;\n\t  }\n\n\t  var fields = (0, _keys2.default)(t.NODE_FIELDS[a.type] || a.type);\n\n\t  for (var _iterator2 = fields, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t    var _ref2;\n\n\t    if (_isArray2) {\n\t      if (_i2 >= _iterator2.length) break;\n\t      _ref2 = _iterator2[_i2++];\n\t    } else {\n\t      _i2 = _iterator2.next();\n\t      if (_i2.done) break;\n\t      _ref2 = _i2.value;\n\t    }\n\n\t    var field = _ref2;\n\n\t    if ((0, _typeof3.default)(a[field]) !== (0, _typeof3.default)(b[field])) {\n\t      return false;\n\t    }\n\n\t    if (Array.isArray(a[field])) {\n\t      if (!Array.isArray(b[field])) {\n\t        return false;\n\t      }\n\t      if (a[field].length !== b[field].length) {\n\t        return false;\n\t      }\n\n\t      for (var i = 0; i < a[field].length; i++) {\n\t        if (!isNodesEquivalent(a[field][i], b[field][i])) {\n\t          return false;\n\t        }\n\t      }\n\t      continue;\n\t    }\n\n\t    if (!isNodesEquivalent(a[field], b[field])) {\n\t      return false;\n\t    }\n\t  }\n\n\t  return true;\n\t}\n\n/***/ }),\n/* 396 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = balanced;\n\tfunction balanced(a, b, str) {\n\t  if (a instanceof RegExp) a = maybeMatch(a, str);\n\t  if (b instanceof RegExp) b = maybeMatch(b, str);\n\n\t  var r = range(a, b, str);\n\n\t  return r && {\n\t    start: r[0],\n\t    end: r[1],\n\t    pre: str.slice(0, r[0]),\n\t    body: str.slice(r[0] + a.length, r[1]),\n\t    post: str.slice(r[1] + b.length)\n\t  };\n\t}\n\n\tfunction maybeMatch(reg, str) {\n\t  var m = str.match(reg);\n\t  return m ? m[0] : null;\n\t}\n\n\tbalanced.range = range;\n\tfunction range(a, b, str) {\n\t  var begs, beg, left, right, result;\n\t  var ai = str.indexOf(a);\n\t  var bi = str.indexOf(b, ai + 1);\n\t  var i = ai;\n\n\t  if (ai >= 0 && bi > 0) {\n\t    begs = [];\n\t    left = str.length;\n\n\t    while (i >= 0 && !result) {\n\t      if (i == ai) {\n\t        begs.push(i);\n\t        ai = str.indexOf(a, i + 1);\n\t      } else if (begs.length == 1) {\n\t        result = [begs.pop(), bi];\n\t      } else {\n\t        beg = begs.pop();\n\t        if (beg < left) {\n\t          left = beg;\n\t          right = bi;\n\t        }\n\n\t        bi = str.indexOf(b, i + 1);\n\t      }\n\n\t      i = ai < bi && ai >= 0 ? ai : bi;\n\t    }\n\n\t    if (begs.length) {\n\t      result = [left, right];\n\t    }\n\t  }\n\n\t  return result;\n\t}\n\n/***/ }),\n/* 397 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\texports.byteLength = byteLength;\n\texports.toByteArray = toByteArray;\n\texports.fromByteArray = fromByteArray;\n\n\tvar lookup = [];\n\tvar revLookup = [];\n\tvar Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array;\n\n\tvar code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\n\tfor (var i = 0, len = code.length; i < len; ++i) {\n\t  lookup[i] = code[i];\n\t  revLookup[code.charCodeAt(i)] = i;\n\t}\n\n\trevLookup['-'.charCodeAt(0)] = 62;\n\trevLookup['_'.charCodeAt(0)] = 63;\n\n\tfunction placeHoldersCount(b64) {\n\t  var len = b64.length;\n\t  if (len % 4 > 0) {\n\t    throw new Error('Invalid string. Length must be a multiple of 4');\n\t  }\n\n\t  // the number of equal signs (place holders)\n\t  // if there are two placeholders, than the two characters before it\n\t  // represent one byte\n\t  // if there is only one, then the three characters before it represent 2 bytes\n\t  // this is just a cheap hack to not do indexOf twice\n\t  return b64[len - 2] === '=' ? 2 : b64[len - 1] === '=' ? 1 : 0;\n\t}\n\n\tfunction byteLength(b64) {\n\t  // base64 is 4/3 + up to two characters of the original data\n\t  return b64.length * 3 / 4 - placeHoldersCount(b64);\n\t}\n\n\tfunction toByteArray(b64) {\n\t  var i, l, tmp, placeHolders, arr;\n\t  var len = b64.length;\n\t  placeHolders = placeHoldersCount(b64);\n\n\t  arr = new Arr(len * 3 / 4 - placeHolders);\n\n\t  // if there are placeholders, only get up to the last complete 4 chars\n\t  l = placeHolders > 0 ? len - 4 : len;\n\n\t  var L = 0;\n\n\t  for (i = 0; i < l; i += 4) {\n\t    tmp = revLookup[b64.charCodeAt(i)] << 18 | revLookup[b64.charCodeAt(i + 1)] << 12 | revLookup[b64.charCodeAt(i + 2)] << 6 | revLookup[b64.charCodeAt(i + 3)];\n\t    arr[L++] = tmp >> 16 & 0xFF;\n\t    arr[L++] = tmp >> 8 & 0xFF;\n\t    arr[L++] = tmp & 0xFF;\n\t  }\n\n\t  if (placeHolders === 2) {\n\t    tmp = revLookup[b64.charCodeAt(i)] << 2 | revLookup[b64.charCodeAt(i + 1)] >> 4;\n\t    arr[L++] = tmp & 0xFF;\n\t  } else if (placeHolders === 1) {\n\t    tmp = revLookup[b64.charCodeAt(i)] << 10 | revLookup[b64.charCodeAt(i + 1)] << 4 | revLookup[b64.charCodeAt(i + 2)] >> 2;\n\t    arr[L++] = tmp >> 8 & 0xFF;\n\t    arr[L++] = tmp & 0xFF;\n\t  }\n\n\t  return arr;\n\t}\n\n\tfunction tripletToBase64(num) {\n\t  return lookup[num >> 18 & 0x3F] + lookup[num >> 12 & 0x3F] + lookup[num >> 6 & 0x3F] + lookup[num & 0x3F];\n\t}\n\n\tfunction encodeChunk(uint8, start, end) {\n\t  var tmp;\n\t  var output = [];\n\t  for (var i = start; i < end; i += 3) {\n\t    tmp = (uint8[i] << 16) + (uint8[i + 1] << 8) + uint8[i + 2];\n\t    output.push(tripletToBase64(tmp));\n\t  }\n\t  return output.join('');\n\t}\n\n\tfunction fromByteArray(uint8) {\n\t  var tmp;\n\t  var len = uint8.length;\n\t  var extraBytes = len % 3; // if we have 1 byte left, pad 2 bytes\n\t  var output = '';\n\t  var parts = [];\n\t  var maxChunkLength = 16383; // must be multiple of 3\n\n\t  // go through the array every three bytes, we'll deal with trailing stuff later\n\t  for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {\n\t    parts.push(encodeChunk(uint8, i, i + maxChunkLength > len2 ? len2 : i + maxChunkLength));\n\t  }\n\n\t  // pad the end with zeros, but make sure to not forget the extra bytes\n\t  if (extraBytes === 1) {\n\t    tmp = uint8[len - 1];\n\t    output += lookup[tmp >> 2];\n\t    output += lookup[tmp << 4 & 0x3F];\n\t    output += '==';\n\t  } else if (extraBytes === 2) {\n\t    tmp = (uint8[len - 2] << 8) + uint8[len - 1];\n\t    output += lookup[tmp >> 10];\n\t    output += lookup[tmp >> 4 & 0x3F];\n\t    output += lookup[tmp << 2 & 0x3F];\n\t    output += '=';\n\t  }\n\n\t  parts.push(output);\n\n\t  return parts.join('');\n\t}\n\n/***/ }),\n/* 398 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar concatMap = __webpack_require__(402);\n\tvar balanced = __webpack_require__(396);\n\n\tmodule.exports = expandTop;\n\n\tvar escSlash = '\\0SLASH' + Math.random() + '\\0';\n\tvar escOpen = '\\0OPEN' + Math.random() + '\\0';\n\tvar escClose = '\\0CLOSE' + Math.random() + '\\0';\n\tvar escComma = '\\0COMMA' + Math.random() + '\\0';\n\tvar escPeriod = '\\0PERIOD' + Math.random() + '\\0';\n\n\tfunction numeric(str) {\n\t  return parseInt(str, 10) == str ? parseInt(str, 10) : str.charCodeAt(0);\n\t}\n\n\tfunction escapeBraces(str) {\n\t  return str.split('\\\\\\\\').join(escSlash).split('\\\\{').join(escOpen).split('\\\\}').join(escClose).split('\\\\,').join(escComma).split('\\\\.').join(escPeriod);\n\t}\n\n\tfunction unescapeBraces(str) {\n\t  return str.split(escSlash).join('\\\\').split(escOpen).join('{').split(escClose).join('}').split(escComma).join(',').split(escPeriod).join('.');\n\t}\n\n\t// Basically just str.split(\",\"), but handling cases\n\t// where we have nested braced sections, which should be\n\t// treated as individual members, like {a,{b,c},d}\n\tfunction parseCommaParts(str) {\n\t  if (!str) return [''];\n\n\t  var parts = [];\n\t  var m = balanced('{', '}', str);\n\n\t  if (!m) return str.split(',');\n\n\t  var pre = m.pre;\n\t  var body = m.body;\n\t  var post = m.post;\n\t  var p = pre.split(',');\n\n\t  p[p.length - 1] += '{' + body + '}';\n\t  var postParts = parseCommaParts(post);\n\t  if (post.length) {\n\t    p[p.length - 1] += postParts.shift();\n\t    p.push.apply(p, postParts);\n\t  }\n\n\t  parts.push.apply(parts, p);\n\n\t  return parts;\n\t}\n\n\tfunction expandTop(str) {\n\t  if (!str) return [];\n\n\t  // I don't know why Bash 4.3 does this, but it does.\n\t  // Anything starting with {} will have the first two bytes preserved\n\t  // but *only* at the top level, so {},a}b will not expand to anything,\n\t  // but a{},b}c will be expanded to [a}c,abc].\n\t  // One could argue that this is a bug in Bash, but since the goal of\n\t  // this module is to match Bash's rules, we escape a leading {}\n\t  if (str.substr(0, 2) === '{}') {\n\t    str = '\\\\{\\\\}' + str.substr(2);\n\t  }\n\n\t  return expand(escapeBraces(str), true).map(unescapeBraces);\n\t}\n\n\tfunction identity(e) {\n\t  return e;\n\t}\n\n\tfunction embrace(str) {\n\t  return '{' + str + '}';\n\t}\n\tfunction isPadded(el) {\n\t  return (/^-?0\\d/.test(el)\n\t  );\n\t}\n\n\tfunction lte(i, y) {\n\t  return i <= y;\n\t}\n\tfunction gte(i, y) {\n\t  return i >= y;\n\t}\n\n\tfunction expand(str, isTop) {\n\t  var expansions = [];\n\n\t  var m = balanced('{', '}', str);\n\t  if (!m || /\\$$/.test(m.pre)) return [str];\n\n\t  var isNumericSequence = /^-?\\d+\\.\\.-?\\d+(?:\\.\\.-?\\d+)?$/.test(m.body);\n\t  var isAlphaSequence = /^[a-zA-Z]\\.\\.[a-zA-Z](?:\\.\\.-?\\d+)?$/.test(m.body);\n\t  var isSequence = isNumericSequence || isAlphaSequence;\n\t  var isOptions = m.body.indexOf(',') >= 0;\n\t  if (!isSequence && !isOptions) {\n\t    // {a},b}\n\t    if (m.post.match(/,.*\\}/)) {\n\t      str = m.pre + '{' + m.body + escClose + m.post;\n\t      return expand(str);\n\t    }\n\t    return [str];\n\t  }\n\n\t  var n;\n\t  if (isSequence) {\n\t    n = m.body.split(/\\.\\./);\n\t  } else {\n\t    n = parseCommaParts(m.body);\n\t    if (n.length === 1) {\n\t      // x{{a,b}}y ==> x{a}y x{b}y\n\t      n = expand(n[0], false).map(embrace);\n\t      if (n.length === 1) {\n\t        var post = m.post.length ? expand(m.post, false) : [''];\n\t        return post.map(function (p) {\n\t          return m.pre + n[0] + p;\n\t        });\n\t      }\n\t    }\n\t  }\n\n\t  // at this point, n is the parts, and we know it's not a comma set\n\t  // with a single entry.\n\n\t  // no need to expand pre, since it is guaranteed to be free of brace-sets\n\t  var pre = m.pre;\n\t  var post = m.post.length ? expand(m.post, false) : [''];\n\n\t  var N;\n\n\t  if (isSequence) {\n\t    var x = numeric(n[0]);\n\t    var y = numeric(n[1]);\n\t    var width = Math.max(n[0].length, n[1].length);\n\t    var incr = n.length == 3 ? Math.abs(numeric(n[2])) : 1;\n\t    var test = lte;\n\t    var reverse = y < x;\n\t    if (reverse) {\n\t      incr *= -1;\n\t      test = gte;\n\t    }\n\t    var pad = n.some(isPadded);\n\n\t    N = [];\n\n\t    for (var i = x; test(i, y); i += incr) {\n\t      var c;\n\t      if (isAlphaSequence) {\n\t        c = String.fromCharCode(i);\n\t        if (c === '\\\\') c = '';\n\t      } else {\n\t        c = String(i);\n\t        if (pad) {\n\t          var need = width - c.length;\n\t          if (need > 0) {\n\t            var z = new Array(need + 1).join('0');\n\t            if (i < 0) c = '-' + z + c.slice(1);else c = z + c;\n\t          }\n\t        }\n\t      }\n\t      N.push(c);\n\t    }\n\t  } else {\n\t    N = concatMap(n, function (el) {\n\t      return expand(el, false);\n\t    });\n\t  }\n\n\t  for (var j = 0; j < N.length; j++) {\n\t    for (var k = 0; k < post.length; k++) {\n\t      var expansion = pre + N[j] + post[k];\n\t      if (!isTop || isSequence || expansion) expansions.push(expansion);\n\t    }\n\t  }\n\n\t  return expansions;\n\t}\n\n/***/ }),\n/* 399 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(global) {/*!\n\t * The buffer module from node.js, for the browser.\n\t *\n\t * @author   Feross Aboukhadijeh <feross@feross.org> <http://feross.org>\n\t * @license  MIT\n\t */\n\t/* eslint-disable no-proto */\n\n\t'use strict';\n\n\tvar base64 = __webpack_require__(397);\n\tvar ieee754 = __webpack_require__(465);\n\tvar isArray = __webpack_require__(400);\n\n\texports.Buffer = Buffer;\n\texports.SlowBuffer = SlowBuffer;\n\texports.INSPECT_MAX_BYTES = 50;\n\n\t/**\n\t * If `Buffer.TYPED_ARRAY_SUPPORT`:\n\t *   === true    Use Uint8Array implementation (fastest)\n\t *   === false   Use Object implementation (most compatible, even IE6)\n\t *\n\t * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+,\n\t * Opera 11.6+, iOS 4.2+.\n\t *\n\t * Due to various browser bugs, sometimes the Object implementation will be used even\n\t * when the browser supports typed arrays.\n\t *\n\t * Note:\n\t *\n\t *   - Firefox 4-29 lacks support for adding new properties to `Uint8Array` instances,\n\t *     See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438.\n\t *\n\t *   - Chrome 9-10 is missing the `TypedArray.prototype.subarray` function.\n\t *\n\t *   - IE10 has a broken `TypedArray.prototype.subarray` function which returns arrays of\n\t *     incorrect length in some situations.\n\n\t * We detect these buggy browsers and set `Buffer.TYPED_ARRAY_SUPPORT` to `false` so they\n\t * get the Object implementation, which is slower but behaves correctly.\n\t */\n\tBuffer.TYPED_ARRAY_SUPPORT = global.TYPED_ARRAY_SUPPORT !== undefined ? global.TYPED_ARRAY_SUPPORT : typedArraySupport();\n\n\t/*\n\t * Export kMaxLength after typed array support is determined.\n\t */\n\texports.kMaxLength = kMaxLength();\n\n\tfunction typedArraySupport() {\n\t  try {\n\t    var arr = new Uint8Array(1);\n\t    arr.__proto__ = { __proto__: Uint8Array.prototype, foo: function foo() {\n\t        return 42;\n\t      } };\n\t    return arr.foo() === 42 && // typed array instances can be augmented\n\t    typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray`\n\t    arr.subarray(1, 1).byteLength === 0; // ie10 has broken `subarray`\n\t  } catch (e) {\n\t    return false;\n\t  }\n\t}\n\n\tfunction kMaxLength() {\n\t  return Buffer.TYPED_ARRAY_SUPPORT ? 0x7fffffff : 0x3fffffff;\n\t}\n\n\tfunction createBuffer(that, length) {\n\t  if (kMaxLength() < length) {\n\t    throw new RangeError('Invalid typed array length');\n\t  }\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    // Return an augmented `Uint8Array` instance, for best performance\n\t    that = new Uint8Array(length);\n\t    that.__proto__ = Buffer.prototype;\n\t  } else {\n\t    // Fallback: Return an object instance of the Buffer class\n\t    if (that === null) {\n\t      that = new Buffer(length);\n\t    }\n\t    that.length = length;\n\t  }\n\n\t  return that;\n\t}\n\n\t/**\n\t * The Buffer constructor returns instances of `Uint8Array` that have their\n\t * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of\n\t * `Uint8Array`, so the returned instances will have all the node `Buffer` methods\n\t * and the `Uint8Array` methods. Square bracket notation works as expected -- it\n\t * returns a single octet.\n\t *\n\t * The `Uint8Array` prototype remains unmodified.\n\t */\n\n\tfunction Buffer(arg, encodingOrOffset, length) {\n\t  if (!Buffer.TYPED_ARRAY_SUPPORT && !(this instanceof Buffer)) {\n\t    return new Buffer(arg, encodingOrOffset, length);\n\t  }\n\n\t  // Common case.\n\t  if (typeof arg === 'number') {\n\t    if (typeof encodingOrOffset === 'string') {\n\t      throw new Error('If encoding is specified then the first argument must be a string');\n\t    }\n\t    return allocUnsafe(this, arg);\n\t  }\n\t  return from(this, arg, encodingOrOffset, length);\n\t}\n\n\tBuffer.poolSize = 8192; // not used by this implementation\n\n\t// TODO: Legacy, not needed anymore. Remove in next major version.\n\tBuffer._augment = function (arr) {\n\t  arr.__proto__ = Buffer.prototype;\n\t  return arr;\n\t};\n\n\tfunction from(that, value, encodingOrOffset, length) {\n\t  if (typeof value === 'number') {\n\t    throw new TypeError('\"value\" argument must not be a number');\n\t  }\n\n\t  if (typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer) {\n\t    return fromArrayBuffer(that, value, encodingOrOffset, length);\n\t  }\n\n\t  if (typeof value === 'string') {\n\t    return fromString(that, value, encodingOrOffset);\n\t  }\n\n\t  return fromObject(that, value);\n\t}\n\n\t/**\n\t * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError\n\t * if value is a number.\n\t * Buffer.from(str[, encoding])\n\t * Buffer.from(array)\n\t * Buffer.from(buffer)\n\t * Buffer.from(arrayBuffer[, byteOffset[, length]])\n\t **/\n\tBuffer.from = function (value, encodingOrOffset, length) {\n\t  return from(null, value, encodingOrOffset, length);\n\t};\n\n\tif (Buffer.TYPED_ARRAY_SUPPORT) {\n\t  Buffer.prototype.__proto__ = Uint8Array.prototype;\n\t  Buffer.__proto__ = Uint8Array;\n\t  if (typeof Symbol !== 'undefined' && Symbol.species && Buffer[Symbol.species] === Buffer) {\n\t    // Fix subarray() in ES2016. See: https://github.com/feross/buffer/pull/97\n\t    Object.defineProperty(Buffer, Symbol.species, {\n\t      value: null,\n\t      configurable: true\n\t    });\n\t  }\n\t}\n\n\tfunction assertSize(size) {\n\t  if (typeof size !== 'number') {\n\t    throw new TypeError('\"size\" argument must be a number');\n\t  } else if (size < 0) {\n\t    throw new RangeError('\"size\" argument must not be negative');\n\t  }\n\t}\n\n\tfunction alloc(that, size, fill, encoding) {\n\t  assertSize(size);\n\t  if (size <= 0) {\n\t    return createBuffer(that, size);\n\t  }\n\t  if (fill !== undefined) {\n\t    // Only pay attention to encoding if it's a string. This\n\t    // prevents accidentally sending in a number that would\n\t    // be interpretted as a start offset.\n\t    return typeof encoding === 'string' ? createBuffer(that, size).fill(fill, encoding) : createBuffer(that, size).fill(fill);\n\t  }\n\t  return createBuffer(that, size);\n\t}\n\n\t/**\n\t * Creates a new filled Buffer instance.\n\t * alloc(size[, fill[, encoding]])\n\t **/\n\tBuffer.alloc = function (size, fill, encoding) {\n\t  return alloc(null, size, fill, encoding);\n\t};\n\n\tfunction allocUnsafe(that, size) {\n\t  assertSize(size);\n\t  that = createBuffer(that, size < 0 ? 0 : checked(size) | 0);\n\t  if (!Buffer.TYPED_ARRAY_SUPPORT) {\n\t    for (var i = 0; i < size; ++i) {\n\t      that[i] = 0;\n\t    }\n\t  }\n\t  return that;\n\t}\n\n\t/**\n\t * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance.\n\t * */\n\tBuffer.allocUnsafe = function (size) {\n\t  return allocUnsafe(null, size);\n\t};\n\t/**\n\t * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance.\n\t */\n\tBuffer.allocUnsafeSlow = function (size) {\n\t  return allocUnsafe(null, size);\n\t};\n\n\tfunction fromString(that, string, encoding) {\n\t  if (typeof encoding !== 'string' || encoding === '') {\n\t    encoding = 'utf8';\n\t  }\n\n\t  if (!Buffer.isEncoding(encoding)) {\n\t    throw new TypeError('\"encoding\" must be a valid string encoding');\n\t  }\n\n\t  var length = byteLength(string, encoding) | 0;\n\t  that = createBuffer(that, length);\n\n\t  var actual = that.write(string, encoding);\n\n\t  if (actual !== length) {\n\t    // Writing a hex string, for example, that contains invalid characters will\n\t    // cause everything after the first invalid character to be ignored. (e.g.\n\t    // 'abxxcd' will be treated as 'ab')\n\t    that = that.slice(0, actual);\n\t  }\n\n\t  return that;\n\t}\n\n\tfunction fromArrayLike(that, array) {\n\t  var length = array.length < 0 ? 0 : checked(array.length) | 0;\n\t  that = createBuffer(that, length);\n\t  for (var i = 0; i < length; i += 1) {\n\t    that[i] = array[i] & 255;\n\t  }\n\t  return that;\n\t}\n\n\tfunction fromArrayBuffer(that, array, byteOffset, length) {\n\t  array.byteLength; // this throws if `array` is not a valid ArrayBuffer\n\n\t  if (byteOffset < 0 || array.byteLength < byteOffset) {\n\t    throw new RangeError('\\'offset\\' is out of bounds');\n\t  }\n\n\t  if (array.byteLength < byteOffset + (length || 0)) {\n\t    throw new RangeError('\\'length\\' is out of bounds');\n\t  }\n\n\t  if (byteOffset === undefined && length === undefined) {\n\t    array = new Uint8Array(array);\n\t  } else if (length === undefined) {\n\t    array = new Uint8Array(array, byteOffset);\n\t  } else {\n\t    array = new Uint8Array(array, byteOffset, length);\n\t  }\n\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    // Return an augmented `Uint8Array` instance, for best performance\n\t    that = array;\n\t    that.__proto__ = Buffer.prototype;\n\t  } else {\n\t    // Fallback: Return an object instance of the Buffer class\n\t    that = fromArrayLike(that, array);\n\t  }\n\t  return that;\n\t}\n\n\tfunction fromObject(that, obj) {\n\t  if (Buffer.isBuffer(obj)) {\n\t    var len = checked(obj.length) | 0;\n\t    that = createBuffer(that, len);\n\n\t    if (that.length === 0) {\n\t      return that;\n\t    }\n\n\t    obj.copy(that, 0, 0, len);\n\t    return that;\n\t  }\n\n\t  if (obj) {\n\t    if (typeof ArrayBuffer !== 'undefined' && obj.buffer instanceof ArrayBuffer || 'length' in obj) {\n\t      if (typeof obj.length !== 'number' || isnan(obj.length)) {\n\t        return createBuffer(that, 0);\n\t      }\n\t      return fromArrayLike(that, obj);\n\t    }\n\n\t    if (obj.type === 'Buffer' && isArray(obj.data)) {\n\t      return fromArrayLike(that, obj.data);\n\t    }\n\t  }\n\n\t  throw new TypeError('First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.');\n\t}\n\n\tfunction checked(length) {\n\t  // Note: cannot use `length < kMaxLength()` here because that fails when\n\t  // length is NaN (which is otherwise coerced to zero.)\n\t  if (length >= kMaxLength()) {\n\t    throw new RangeError('Attempt to allocate Buffer larger than maximum ' + 'size: 0x' + kMaxLength().toString(16) + ' bytes');\n\t  }\n\t  return length | 0;\n\t}\n\n\tfunction SlowBuffer(length) {\n\t  if (+length != length) {\n\t    // eslint-disable-line eqeqeq\n\t    length = 0;\n\t  }\n\t  return Buffer.alloc(+length);\n\t}\n\n\tBuffer.isBuffer = function isBuffer(b) {\n\t  return !!(b != null && b._isBuffer);\n\t};\n\n\tBuffer.compare = function compare(a, b) {\n\t  if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) {\n\t    throw new TypeError('Arguments must be Buffers');\n\t  }\n\n\t  if (a === b) return 0;\n\n\t  var x = a.length;\n\t  var y = b.length;\n\n\t  for (var i = 0, len = Math.min(x, y); i < len; ++i) {\n\t    if (a[i] !== b[i]) {\n\t      x = a[i];\n\t      y = b[i];\n\t      break;\n\t    }\n\t  }\n\n\t  if (x < y) return -1;\n\t  if (y < x) return 1;\n\t  return 0;\n\t};\n\n\tBuffer.isEncoding = function isEncoding(encoding) {\n\t  switch (String(encoding).toLowerCase()) {\n\t    case 'hex':\n\t    case 'utf8':\n\t    case 'utf-8':\n\t    case 'ascii':\n\t    case 'latin1':\n\t    case 'binary':\n\t    case 'base64':\n\t    case 'ucs2':\n\t    case 'ucs-2':\n\t    case 'utf16le':\n\t    case 'utf-16le':\n\t      return true;\n\t    default:\n\t      return false;\n\t  }\n\t};\n\n\tBuffer.concat = function concat(list, length) {\n\t  if (!isArray(list)) {\n\t    throw new TypeError('\"list\" argument must be an Array of Buffers');\n\t  }\n\n\t  if (list.length === 0) {\n\t    return Buffer.alloc(0);\n\t  }\n\n\t  var i;\n\t  if (length === undefined) {\n\t    length = 0;\n\t    for (i = 0; i < list.length; ++i) {\n\t      length += list[i].length;\n\t    }\n\t  }\n\n\t  var buffer = Buffer.allocUnsafe(length);\n\t  var pos = 0;\n\t  for (i = 0; i < list.length; ++i) {\n\t    var buf = list[i];\n\t    if (!Buffer.isBuffer(buf)) {\n\t      throw new TypeError('\"list\" argument must be an Array of Buffers');\n\t    }\n\t    buf.copy(buffer, pos);\n\t    pos += buf.length;\n\t  }\n\t  return buffer;\n\t};\n\n\tfunction byteLength(string, encoding) {\n\t  if (Buffer.isBuffer(string)) {\n\t    return string.length;\n\t  }\n\t  if (typeof ArrayBuffer !== 'undefined' && typeof ArrayBuffer.isView === 'function' && (ArrayBuffer.isView(string) || string instanceof ArrayBuffer)) {\n\t    return string.byteLength;\n\t  }\n\t  if (typeof string !== 'string') {\n\t    string = '' + string;\n\t  }\n\n\t  var len = string.length;\n\t  if (len === 0) return 0;\n\n\t  // Use a for loop to avoid recursion\n\t  var loweredCase = false;\n\t  for (;;) {\n\t    switch (encoding) {\n\t      case 'ascii':\n\t      case 'latin1':\n\t      case 'binary':\n\t        return len;\n\t      case 'utf8':\n\t      case 'utf-8':\n\t      case undefined:\n\t        return utf8ToBytes(string).length;\n\t      case 'ucs2':\n\t      case 'ucs-2':\n\t      case 'utf16le':\n\t      case 'utf-16le':\n\t        return len * 2;\n\t      case 'hex':\n\t        return len >>> 1;\n\t      case 'base64':\n\t        return base64ToBytes(string).length;\n\t      default:\n\t        if (loweredCase) return utf8ToBytes(string).length; // assume utf8\n\t        encoding = ('' + encoding).toLowerCase();\n\t        loweredCase = true;\n\t    }\n\t  }\n\t}\n\tBuffer.byteLength = byteLength;\n\n\tfunction slowToString(encoding, start, end) {\n\t  var loweredCase = false;\n\n\t  // No need to verify that \"this.length <= MAX_UINT32\" since it's a read-only\n\t  // property of a typed array.\n\n\t  // This behaves neither like String nor Uint8Array in that we set start/end\n\t  // to their upper/lower bounds if the value passed is out of range.\n\t  // undefined is handled specially as per ECMA-262 6th Edition,\n\t  // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization.\n\t  if (start === undefined || start < 0) {\n\t    start = 0;\n\t  }\n\t  // Return early if start > this.length. Done here to prevent potential uint32\n\t  // coercion fail below.\n\t  if (start > this.length) {\n\t    return '';\n\t  }\n\n\t  if (end === undefined || end > this.length) {\n\t    end = this.length;\n\t  }\n\n\t  if (end <= 0) {\n\t    return '';\n\t  }\n\n\t  // Force coersion to uint32. This will also coerce falsey/NaN values to 0.\n\t  end >>>= 0;\n\t  start >>>= 0;\n\n\t  if (end <= start) {\n\t    return '';\n\t  }\n\n\t  if (!encoding) encoding = 'utf8';\n\n\t  while (true) {\n\t    switch (encoding) {\n\t      case 'hex':\n\t        return hexSlice(this, start, end);\n\n\t      case 'utf8':\n\t      case 'utf-8':\n\t        return utf8Slice(this, start, end);\n\n\t      case 'ascii':\n\t        return asciiSlice(this, start, end);\n\n\t      case 'latin1':\n\t      case 'binary':\n\t        return latin1Slice(this, start, end);\n\n\t      case 'base64':\n\t        return base64Slice(this, start, end);\n\n\t      case 'ucs2':\n\t      case 'ucs-2':\n\t      case 'utf16le':\n\t      case 'utf-16le':\n\t        return utf16leSlice(this, start, end);\n\n\t      default:\n\t        if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding);\n\t        encoding = (encoding + '').toLowerCase();\n\t        loweredCase = true;\n\t    }\n\t  }\n\t}\n\n\t// The property is used by `Buffer.isBuffer` and `is-buffer` (in Safari 5-7) to detect\n\t// Buffer instances.\n\tBuffer.prototype._isBuffer = true;\n\n\tfunction swap(b, n, m) {\n\t  var i = b[n];\n\t  b[n] = b[m];\n\t  b[m] = i;\n\t}\n\n\tBuffer.prototype.swap16 = function swap16() {\n\t  var len = this.length;\n\t  if (len % 2 !== 0) {\n\t    throw new RangeError('Buffer size must be a multiple of 16-bits');\n\t  }\n\t  for (var i = 0; i < len; i += 2) {\n\t    swap(this, i, i + 1);\n\t  }\n\t  return this;\n\t};\n\n\tBuffer.prototype.swap32 = function swap32() {\n\t  var len = this.length;\n\t  if (len % 4 !== 0) {\n\t    throw new RangeError('Buffer size must be a multiple of 32-bits');\n\t  }\n\t  for (var i = 0; i < len; i += 4) {\n\t    swap(this, i, i + 3);\n\t    swap(this, i + 1, i + 2);\n\t  }\n\t  return this;\n\t};\n\n\tBuffer.prototype.swap64 = function swap64() {\n\t  var len = this.length;\n\t  if (len % 8 !== 0) {\n\t    throw new RangeError('Buffer size must be a multiple of 64-bits');\n\t  }\n\t  for (var i = 0; i < len; i += 8) {\n\t    swap(this, i, i + 7);\n\t    swap(this, i + 1, i + 6);\n\t    swap(this, i + 2, i + 5);\n\t    swap(this, i + 3, i + 4);\n\t  }\n\t  return this;\n\t};\n\n\tBuffer.prototype.toString = function toString() {\n\t  var length = this.length | 0;\n\t  if (length === 0) return '';\n\t  if (arguments.length === 0) return utf8Slice(this, 0, length);\n\t  return slowToString.apply(this, arguments);\n\t};\n\n\tBuffer.prototype.equals = function equals(b) {\n\t  if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer');\n\t  if (this === b) return true;\n\t  return Buffer.compare(this, b) === 0;\n\t};\n\n\tBuffer.prototype.inspect = function inspect() {\n\t  var str = '';\n\t  var max = exports.INSPECT_MAX_BYTES;\n\t  if (this.length > 0) {\n\t    str = this.toString('hex', 0, max).match(/.{2}/g).join(' ');\n\t    if (this.length > max) str += ' ... ';\n\t  }\n\t  return '<Buffer ' + str + '>';\n\t};\n\n\tBuffer.prototype.compare = function compare(target, start, end, thisStart, thisEnd) {\n\t  if (!Buffer.isBuffer(target)) {\n\t    throw new TypeError('Argument must be a Buffer');\n\t  }\n\n\t  if (start === undefined) {\n\t    start = 0;\n\t  }\n\t  if (end === undefined) {\n\t    end = target ? target.length : 0;\n\t  }\n\t  if (thisStart === undefined) {\n\t    thisStart = 0;\n\t  }\n\t  if (thisEnd === undefined) {\n\t    thisEnd = this.length;\n\t  }\n\n\t  if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) {\n\t    throw new RangeError('out of range index');\n\t  }\n\n\t  if (thisStart >= thisEnd && start >= end) {\n\t    return 0;\n\t  }\n\t  if (thisStart >= thisEnd) {\n\t    return -1;\n\t  }\n\t  if (start >= end) {\n\t    return 1;\n\t  }\n\n\t  start >>>= 0;\n\t  end >>>= 0;\n\t  thisStart >>>= 0;\n\t  thisEnd >>>= 0;\n\n\t  if (this === target) return 0;\n\n\t  var x = thisEnd - thisStart;\n\t  var y = end - start;\n\t  var len = Math.min(x, y);\n\n\t  var thisCopy = this.slice(thisStart, thisEnd);\n\t  var targetCopy = target.slice(start, end);\n\n\t  for (var i = 0; i < len; ++i) {\n\t    if (thisCopy[i] !== targetCopy[i]) {\n\t      x = thisCopy[i];\n\t      y = targetCopy[i];\n\t      break;\n\t    }\n\t  }\n\n\t  if (x < y) return -1;\n\t  if (y < x) return 1;\n\t  return 0;\n\t};\n\n\t// Finds either the first index of `val` in `buffer` at offset >= `byteOffset`,\n\t// OR the last index of `val` in `buffer` at offset <= `byteOffset`.\n\t//\n\t// Arguments:\n\t// - buffer - a Buffer to search\n\t// - val - a string, Buffer, or number\n\t// - byteOffset - an index into `buffer`; will be clamped to an int32\n\t// - encoding - an optional encoding, relevant is val is a string\n\t// - dir - true for indexOf, false for lastIndexOf\n\tfunction bidirectionalIndexOf(buffer, val, byteOffset, encoding, dir) {\n\t  // Empty buffer means no match\n\t  if (buffer.length === 0) return -1;\n\n\t  // Normalize byteOffset\n\t  if (typeof byteOffset === 'string') {\n\t    encoding = byteOffset;\n\t    byteOffset = 0;\n\t  } else if (byteOffset > 0x7fffffff) {\n\t    byteOffset = 0x7fffffff;\n\t  } else if (byteOffset < -0x80000000) {\n\t    byteOffset = -0x80000000;\n\t  }\n\t  byteOffset = +byteOffset; // Coerce to Number.\n\t  if (isNaN(byteOffset)) {\n\t    // byteOffset: it it's undefined, null, NaN, \"foo\", etc, search whole buffer\n\t    byteOffset = dir ? 0 : buffer.length - 1;\n\t  }\n\n\t  // Normalize byteOffset: negative offsets start from the end of the buffer\n\t  if (byteOffset < 0) byteOffset = buffer.length + byteOffset;\n\t  if (byteOffset >= buffer.length) {\n\t    if (dir) return -1;else byteOffset = buffer.length - 1;\n\t  } else if (byteOffset < 0) {\n\t    if (dir) byteOffset = 0;else return -1;\n\t  }\n\n\t  // Normalize val\n\t  if (typeof val === 'string') {\n\t    val = Buffer.from(val, encoding);\n\t  }\n\n\t  // Finally, search either indexOf (if dir is true) or lastIndexOf\n\t  if (Buffer.isBuffer(val)) {\n\t    // Special case: looking for empty string/buffer always fails\n\t    if (val.length === 0) {\n\t      return -1;\n\t    }\n\t    return arrayIndexOf(buffer, val, byteOffset, encoding, dir);\n\t  } else if (typeof val === 'number') {\n\t    val = val & 0xFF; // Search for a byte value [0-255]\n\t    if (Buffer.TYPED_ARRAY_SUPPORT && typeof Uint8Array.prototype.indexOf === 'function') {\n\t      if (dir) {\n\t        return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset);\n\t      } else {\n\t        return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset);\n\t      }\n\t    }\n\t    return arrayIndexOf(buffer, [val], byteOffset, encoding, dir);\n\t  }\n\n\t  throw new TypeError('val must be string, number or Buffer');\n\t}\n\n\tfunction arrayIndexOf(arr, val, byteOffset, encoding, dir) {\n\t  var indexSize = 1;\n\t  var arrLength = arr.length;\n\t  var valLength = val.length;\n\n\t  if (encoding !== undefined) {\n\t    encoding = String(encoding).toLowerCase();\n\t    if (encoding === 'ucs2' || encoding === 'ucs-2' || encoding === 'utf16le' || encoding === 'utf-16le') {\n\t      if (arr.length < 2 || val.length < 2) {\n\t        return -1;\n\t      }\n\t      indexSize = 2;\n\t      arrLength /= 2;\n\t      valLength /= 2;\n\t      byteOffset /= 2;\n\t    }\n\t  }\n\n\t  function read(buf, i) {\n\t    if (indexSize === 1) {\n\t      return buf[i];\n\t    } else {\n\t      return buf.readUInt16BE(i * indexSize);\n\t    }\n\t  }\n\n\t  var i;\n\t  if (dir) {\n\t    var foundIndex = -1;\n\t    for (i = byteOffset; i < arrLength; i++) {\n\t      if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) {\n\t        if (foundIndex === -1) foundIndex = i;\n\t        if (i - foundIndex + 1 === valLength) return foundIndex * indexSize;\n\t      } else {\n\t        if (foundIndex !== -1) i -= i - foundIndex;\n\t        foundIndex = -1;\n\t      }\n\t    }\n\t  } else {\n\t    if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength;\n\t    for (i = byteOffset; i >= 0; i--) {\n\t      var found = true;\n\t      for (var j = 0; j < valLength; j++) {\n\t        if (read(arr, i + j) !== read(val, j)) {\n\t          found = false;\n\t          break;\n\t        }\n\t      }\n\t      if (found) return i;\n\t    }\n\t  }\n\n\t  return -1;\n\t}\n\n\tBuffer.prototype.includes = function includes(val, byteOffset, encoding) {\n\t  return this.indexOf(val, byteOffset, encoding) !== -1;\n\t};\n\n\tBuffer.prototype.indexOf = function indexOf(val, byteOffset, encoding) {\n\t  return bidirectionalIndexOf(this, val, byteOffset, encoding, true);\n\t};\n\n\tBuffer.prototype.lastIndexOf = function lastIndexOf(val, byteOffset, encoding) {\n\t  return bidirectionalIndexOf(this, val, byteOffset, encoding, false);\n\t};\n\n\tfunction hexWrite(buf, string, offset, length) {\n\t  offset = Number(offset) || 0;\n\t  var remaining = buf.length - offset;\n\t  if (!length) {\n\t    length = remaining;\n\t  } else {\n\t    length = Number(length);\n\t    if (length > remaining) {\n\t      length = remaining;\n\t    }\n\t  }\n\n\t  // must be an even number of digits\n\t  var strLen = string.length;\n\t  if (strLen % 2 !== 0) throw new TypeError('Invalid hex string');\n\n\t  if (length > strLen / 2) {\n\t    length = strLen / 2;\n\t  }\n\t  for (var i = 0; i < length; ++i) {\n\t    var parsed = parseInt(string.substr(i * 2, 2), 16);\n\t    if (isNaN(parsed)) return i;\n\t    buf[offset + i] = parsed;\n\t  }\n\t  return i;\n\t}\n\n\tfunction utf8Write(buf, string, offset, length) {\n\t  return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length);\n\t}\n\n\tfunction asciiWrite(buf, string, offset, length) {\n\t  return blitBuffer(asciiToBytes(string), buf, offset, length);\n\t}\n\n\tfunction latin1Write(buf, string, offset, length) {\n\t  return asciiWrite(buf, string, offset, length);\n\t}\n\n\tfunction base64Write(buf, string, offset, length) {\n\t  return blitBuffer(base64ToBytes(string), buf, offset, length);\n\t}\n\n\tfunction ucs2Write(buf, string, offset, length) {\n\t  return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length);\n\t}\n\n\tBuffer.prototype.write = function write(string, offset, length, encoding) {\n\t  // Buffer#write(string)\n\t  if (offset === undefined) {\n\t    encoding = 'utf8';\n\t    length = this.length;\n\t    offset = 0;\n\t    // Buffer#write(string, encoding)\n\t  } else if (length === undefined && typeof offset === 'string') {\n\t    encoding = offset;\n\t    length = this.length;\n\t    offset = 0;\n\t    // Buffer#write(string, offset[, length][, encoding])\n\t  } else if (isFinite(offset)) {\n\t    offset = offset | 0;\n\t    if (isFinite(length)) {\n\t      length = length | 0;\n\t      if (encoding === undefined) encoding = 'utf8';\n\t    } else {\n\t      encoding = length;\n\t      length = undefined;\n\t    }\n\t    // legacy write(string, encoding, offset, length) - remove in v0.13\n\t  } else {\n\t    throw new Error('Buffer.write(string, encoding, offset[, length]) is no longer supported');\n\t  }\n\n\t  var remaining = this.length - offset;\n\t  if (length === undefined || length > remaining) length = remaining;\n\n\t  if (string.length > 0 && (length < 0 || offset < 0) || offset > this.length) {\n\t    throw new RangeError('Attempt to write outside buffer bounds');\n\t  }\n\n\t  if (!encoding) encoding = 'utf8';\n\n\t  var loweredCase = false;\n\t  for (;;) {\n\t    switch (encoding) {\n\t      case 'hex':\n\t        return hexWrite(this, string, offset, length);\n\n\t      case 'utf8':\n\t      case 'utf-8':\n\t        return utf8Write(this, string, offset, length);\n\n\t      case 'ascii':\n\t        return asciiWrite(this, string, offset, length);\n\n\t      case 'latin1':\n\t      case 'binary':\n\t        return latin1Write(this, string, offset, length);\n\n\t      case 'base64':\n\t        // Warning: maxLength not taken into account in base64Write\n\t        return base64Write(this, string, offset, length);\n\n\t      case 'ucs2':\n\t      case 'ucs-2':\n\t      case 'utf16le':\n\t      case 'utf-16le':\n\t        return ucs2Write(this, string, offset, length);\n\n\t      default:\n\t        if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding);\n\t        encoding = ('' + encoding).toLowerCase();\n\t        loweredCase = true;\n\t    }\n\t  }\n\t};\n\n\tBuffer.prototype.toJSON = function toJSON() {\n\t  return {\n\t    type: 'Buffer',\n\t    data: Array.prototype.slice.call(this._arr || this, 0)\n\t  };\n\t};\n\n\tfunction base64Slice(buf, start, end) {\n\t  if (start === 0 && end === buf.length) {\n\t    return base64.fromByteArray(buf);\n\t  } else {\n\t    return base64.fromByteArray(buf.slice(start, end));\n\t  }\n\t}\n\n\tfunction utf8Slice(buf, start, end) {\n\t  end = Math.min(buf.length, end);\n\t  var res = [];\n\n\t  var i = start;\n\t  while (i < end) {\n\t    var firstByte = buf[i];\n\t    var codePoint = null;\n\t    var bytesPerSequence = firstByte > 0xEF ? 4 : firstByte > 0xDF ? 3 : firstByte > 0xBF ? 2 : 1;\n\n\t    if (i + bytesPerSequence <= end) {\n\t      var secondByte, thirdByte, fourthByte, tempCodePoint;\n\n\t      switch (bytesPerSequence) {\n\t        case 1:\n\t          if (firstByte < 0x80) {\n\t            codePoint = firstByte;\n\t          }\n\t          break;\n\t        case 2:\n\t          secondByte = buf[i + 1];\n\t          if ((secondByte & 0xC0) === 0x80) {\n\t            tempCodePoint = (firstByte & 0x1F) << 0x6 | secondByte & 0x3F;\n\t            if (tempCodePoint > 0x7F) {\n\t              codePoint = tempCodePoint;\n\t            }\n\t          }\n\t          break;\n\t        case 3:\n\t          secondByte = buf[i + 1];\n\t          thirdByte = buf[i + 2];\n\t          if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) {\n\t            tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | thirdByte & 0x3F;\n\t            if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) {\n\t              codePoint = tempCodePoint;\n\t            }\n\t          }\n\t          break;\n\t        case 4:\n\t          secondByte = buf[i + 1];\n\t          thirdByte = buf[i + 2];\n\t          fourthByte = buf[i + 3];\n\t          if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) {\n\t            tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | fourthByte & 0x3F;\n\t            if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) {\n\t              codePoint = tempCodePoint;\n\t            }\n\t          }\n\t      }\n\t    }\n\n\t    if (codePoint === null) {\n\t      // we did not generate a valid codePoint so insert a\n\t      // replacement char (U+FFFD) and advance only 1 byte\n\t      codePoint = 0xFFFD;\n\t      bytesPerSequence = 1;\n\t    } else if (codePoint > 0xFFFF) {\n\t      // encode to utf16 (surrogate pair dance)\n\t      codePoint -= 0x10000;\n\t      res.push(codePoint >>> 10 & 0x3FF | 0xD800);\n\t      codePoint = 0xDC00 | codePoint & 0x3FF;\n\t    }\n\n\t    res.push(codePoint);\n\t    i += bytesPerSequence;\n\t  }\n\n\t  return decodeCodePointsArray(res);\n\t}\n\n\t// Based on http://stackoverflow.com/a/22747272/680742, the browser with\n\t// the lowest limit is Chrome, with 0x10000 args.\n\t// We go 1 magnitude less, for safety\n\tvar MAX_ARGUMENTS_LENGTH = 0x1000;\n\n\tfunction decodeCodePointsArray(codePoints) {\n\t  var len = codePoints.length;\n\t  if (len <= MAX_ARGUMENTS_LENGTH) {\n\t    return String.fromCharCode.apply(String, codePoints); // avoid extra slice()\n\t  }\n\n\t  // Decode in chunks to avoid \"call stack size exceeded\".\n\t  var res = '';\n\t  var i = 0;\n\t  while (i < len) {\n\t    res += String.fromCharCode.apply(String, codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH));\n\t  }\n\t  return res;\n\t}\n\n\tfunction asciiSlice(buf, start, end) {\n\t  var ret = '';\n\t  end = Math.min(buf.length, end);\n\n\t  for (var i = start; i < end; ++i) {\n\t    ret += String.fromCharCode(buf[i] & 0x7F);\n\t  }\n\t  return ret;\n\t}\n\n\tfunction latin1Slice(buf, start, end) {\n\t  var ret = '';\n\t  end = Math.min(buf.length, end);\n\n\t  for (var i = start; i < end; ++i) {\n\t    ret += String.fromCharCode(buf[i]);\n\t  }\n\t  return ret;\n\t}\n\n\tfunction hexSlice(buf, start, end) {\n\t  var len = buf.length;\n\n\t  if (!start || start < 0) start = 0;\n\t  if (!end || end < 0 || end > len) end = len;\n\n\t  var out = '';\n\t  for (var i = start; i < end; ++i) {\n\t    out += toHex(buf[i]);\n\t  }\n\t  return out;\n\t}\n\n\tfunction utf16leSlice(buf, start, end) {\n\t  var bytes = buf.slice(start, end);\n\t  var res = '';\n\t  for (var i = 0; i < bytes.length; i += 2) {\n\t    res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256);\n\t  }\n\t  return res;\n\t}\n\n\tBuffer.prototype.slice = function slice(start, end) {\n\t  var len = this.length;\n\t  start = ~~start;\n\t  end = end === undefined ? len : ~~end;\n\n\t  if (start < 0) {\n\t    start += len;\n\t    if (start < 0) start = 0;\n\t  } else if (start > len) {\n\t    start = len;\n\t  }\n\n\t  if (end < 0) {\n\t    end += len;\n\t    if (end < 0) end = 0;\n\t  } else if (end > len) {\n\t    end = len;\n\t  }\n\n\t  if (end < start) end = start;\n\n\t  var newBuf;\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    newBuf = this.subarray(start, end);\n\t    newBuf.__proto__ = Buffer.prototype;\n\t  } else {\n\t    var sliceLen = end - start;\n\t    newBuf = new Buffer(sliceLen, undefined);\n\t    for (var i = 0; i < sliceLen; ++i) {\n\t      newBuf[i] = this[i + start];\n\t    }\n\t  }\n\n\t  return newBuf;\n\t};\n\n\t/*\n\t * Need to make sure that buffer isn't trying to write out of bounds.\n\t */\n\tfunction checkOffset(offset, ext, length) {\n\t  if (offset % 1 !== 0 || offset < 0) throw new RangeError('offset is not uint');\n\t  if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length');\n\t}\n\n\tBuffer.prototype.readUIntLE = function readUIntLE(offset, byteLength, noAssert) {\n\t  offset = offset | 0;\n\t  byteLength = byteLength | 0;\n\t  if (!noAssert) checkOffset(offset, byteLength, this.length);\n\n\t  var val = this[offset];\n\t  var mul = 1;\n\t  var i = 0;\n\t  while (++i < byteLength && (mul *= 0x100)) {\n\t    val += this[offset + i] * mul;\n\t  }\n\n\t  return val;\n\t};\n\n\tBuffer.prototype.readUIntBE = function readUIntBE(offset, byteLength, noAssert) {\n\t  offset = offset | 0;\n\t  byteLength = byteLength | 0;\n\t  if (!noAssert) {\n\t    checkOffset(offset, byteLength, this.length);\n\t  }\n\n\t  var val = this[offset + --byteLength];\n\t  var mul = 1;\n\t  while (byteLength > 0 && (mul *= 0x100)) {\n\t    val += this[offset + --byteLength] * mul;\n\t  }\n\n\t  return val;\n\t};\n\n\tBuffer.prototype.readUInt8 = function readUInt8(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 1, this.length);\n\t  return this[offset];\n\t};\n\n\tBuffer.prototype.readUInt16LE = function readUInt16LE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 2, this.length);\n\t  return this[offset] | this[offset + 1] << 8;\n\t};\n\n\tBuffer.prototype.readUInt16BE = function readUInt16BE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 2, this.length);\n\t  return this[offset] << 8 | this[offset + 1];\n\t};\n\n\tBuffer.prototype.readUInt32LE = function readUInt32LE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 4, this.length);\n\n\t  return (this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16) + this[offset + 3] * 0x1000000;\n\t};\n\n\tBuffer.prototype.readUInt32BE = function readUInt32BE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 4, this.length);\n\n\t  return this[offset] * 0x1000000 + (this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]);\n\t};\n\n\tBuffer.prototype.readIntLE = function readIntLE(offset, byteLength, noAssert) {\n\t  offset = offset | 0;\n\t  byteLength = byteLength | 0;\n\t  if (!noAssert) checkOffset(offset, byteLength, this.length);\n\n\t  var val = this[offset];\n\t  var mul = 1;\n\t  var i = 0;\n\t  while (++i < byteLength && (mul *= 0x100)) {\n\t    val += this[offset + i] * mul;\n\t  }\n\t  mul *= 0x80;\n\n\t  if (val >= mul) val -= Math.pow(2, 8 * byteLength);\n\n\t  return val;\n\t};\n\n\tBuffer.prototype.readIntBE = function readIntBE(offset, byteLength, noAssert) {\n\t  offset = offset | 0;\n\t  byteLength = byteLength | 0;\n\t  if (!noAssert) checkOffset(offset, byteLength, this.length);\n\n\t  var i = byteLength;\n\t  var mul = 1;\n\t  var val = this[offset + --i];\n\t  while (i > 0 && (mul *= 0x100)) {\n\t    val += this[offset + --i] * mul;\n\t  }\n\t  mul *= 0x80;\n\n\t  if (val >= mul) val -= Math.pow(2, 8 * byteLength);\n\n\t  return val;\n\t};\n\n\tBuffer.prototype.readInt8 = function readInt8(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 1, this.length);\n\t  if (!(this[offset] & 0x80)) return this[offset];\n\t  return (0xff - this[offset] + 1) * -1;\n\t};\n\n\tBuffer.prototype.readInt16LE = function readInt16LE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 2, this.length);\n\t  var val = this[offset] | this[offset + 1] << 8;\n\t  return val & 0x8000 ? val | 0xFFFF0000 : val;\n\t};\n\n\tBuffer.prototype.readInt16BE = function readInt16BE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 2, this.length);\n\t  var val = this[offset + 1] | this[offset] << 8;\n\t  return val & 0x8000 ? val | 0xFFFF0000 : val;\n\t};\n\n\tBuffer.prototype.readInt32LE = function readInt32LE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 4, this.length);\n\n\t  return this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16 | this[offset + 3] << 24;\n\t};\n\n\tBuffer.prototype.readInt32BE = function readInt32BE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 4, this.length);\n\n\t  return this[offset] << 24 | this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3];\n\t};\n\n\tBuffer.prototype.readFloatLE = function readFloatLE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 4, this.length);\n\t  return ieee754.read(this, offset, true, 23, 4);\n\t};\n\n\tBuffer.prototype.readFloatBE = function readFloatBE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 4, this.length);\n\t  return ieee754.read(this, offset, false, 23, 4);\n\t};\n\n\tBuffer.prototype.readDoubleLE = function readDoubleLE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 8, this.length);\n\t  return ieee754.read(this, offset, true, 52, 8);\n\t};\n\n\tBuffer.prototype.readDoubleBE = function readDoubleBE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 8, this.length);\n\t  return ieee754.read(this, offset, false, 52, 8);\n\t};\n\n\tfunction checkInt(buf, value, offset, ext, max, min) {\n\t  if (!Buffer.isBuffer(buf)) throw new TypeError('\"buffer\" argument must be a Buffer instance');\n\t  if (value > max || value < min) throw new RangeError('\"value\" argument is out of bounds');\n\t  if (offset + ext > buf.length) throw new RangeError('Index out of range');\n\t}\n\n\tBuffer.prototype.writeUIntLE = function writeUIntLE(value, offset, byteLength, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  byteLength = byteLength | 0;\n\t  if (!noAssert) {\n\t    var maxBytes = Math.pow(2, 8 * byteLength) - 1;\n\t    checkInt(this, value, offset, byteLength, maxBytes, 0);\n\t  }\n\n\t  var mul = 1;\n\t  var i = 0;\n\t  this[offset] = value & 0xFF;\n\t  while (++i < byteLength && (mul *= 0x100)) {\n\t    this[offset + i] = value / mul & 0xFF;\n\t  }\n\n\t  return offset + byteLength;\n\t};\n\n\tBuffer.prototype.writeUIntBE = function writeUIntBE(value, offset, byteLength, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  byteLength = byteLength | 0;\n\t  if (!noAssert) {\n\t    var maxBytes = Math.pow(2, 8 * byteLength) - 1;\n\t    checkInt(this, value, offset, byteLength, maxBytes, 0);\n\t  }\n\n\t  var i = byteLength - 1;\n\t  var mul = 1;\n\t  this[offset + i] = value & 0xFF;\n\t  while (--i >= 0 && (mul *= 0x100)) {\n\t    this[offset + i] = value / mul & 0xFF;\n\t  }\n\n\t  return offset + byteLength;\n\t};\n\n\tBuffer.prototype.writeUInt8 = function writeUInt8(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0);\n\t  if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value);\n\t  this[offset] = value & 0xff;\n\t  return offset + 1;\n\t};\n\n\tfunction objectWriteUInt16(buf, value, offset, littleEndian) {\n\t  if (value < 0) value = 0xffff + value + 1;\n\t  for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; ++i) {\n\t    buf[offset + i] = (value & 0xff << 8 * (littleEndian ? i : 1 - i)) >>> (littleEndian ? i : 1 - i) * 8;\n\t  }\n\t}\n\n\tBuffer.prototype.writeUInt16LE = function writeUInt16LE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value & 0xff;\n\t    this[offset + 1] = value >>> 8;\n\t  } else {\n\t    objectWriteUInt16(this, value, offset, true);\n\t  }\n\t  return offset + 2;\n\t};\n\n\tBuffer.prototype.writeUInt16BE = function writeUInt16BE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value >>> 8;\n\t    this[offset + 1] = value & 0xff;\n\t  } else {\n\t    objectWriteUInt16(this, value, offset, false);\n\t  }\n\t  return offset + 2;\n\t};\n\n\tfunction objectWriteUInt32(buf, value, offset, littleEndian) {\n\t  if (value < 0) value = 0xffffffff + value + 1;\n\t  for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; ++i) {\n\t    buf[offset + i] = value >>> (littleEndian ? i : 3 - i) * 8 & 0xff;\n\t  }\n\t}\n\n\tBuffer.prototype.writeUInt32LE = function writeUInt32LE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset + 3] = value >>> 24;\n\t    this[offset + 2] = value >>> 16;\n\t    this[offset + 1] = value >>> 8;\n\t    this[offset] = value & 0xff;\n\t  } else {\n\t    objectWriteUInt32(this, value, offset, true);\n\t  }\n\t  return offset + 4;\n\t};\n\n\tBuffer.prototype.writeUInt32BE = function writeUInt32BE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value >>> 24;\n\t    this[offset + 1] = value >>> 16;\n\t    this[offset + 2] = value >>> 8;\n\t    this[offset + 3] = value & 0xff;\n\t  } else {\n\t    objectWriteUInt32(this, value, offset, false);\n\t  }\n\t  return offset + 4;\n\t};\n\n\tBuffer.prototype.writeIntLE = function writeIntLE(value, offset, byteLength, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) {\n\t    var limit = Math.pow(2, 8 * byteLength - 1);\n\n\t    checkInt(this, value, offset, byteLength, limit - 1, -limit);\n\t  }\n\n\t  var i = 0;\n\t  var mul = 1;\n\t  var sub = 0;\n\t  this[offset] = value & 0xFF;\n\t  while (++i < byteLength && (mul *= 0x100)) {\n\t    if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) {\n\t      sub = 1;\n\t    }\n\t    this[offset + i] = (value / mul >> 0) - sub & 0xFF;\n\t  }\n\n\t  return offset + byteLength;\n\t};\n\n\tBuffer.prototype.writeIntBE = function writeIntBE(value, offset, byteLength, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) {\n\t    var limit = Math.pow(2, 8 * byteLength - 1);\n\n\t    checkInt(this, value, offset, byteLength, limit - 1, -limit);\n\t  }\n\n\t  var i = byteLength - 1;\n\t  var mul = 1;\n\t  var sub = 0;\n\t  this[offset + i] = value & 0xFF;\n\t  while (--i >= 0 && (mul *= 0x100)) {\n\t    if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) {\n\t      sub = 1;\n\t    }\n\t    this[offset + i] = (value / mul >> 0) - sub & 0xFF;\n\t  }\n\n\t  return offset + byteLength;\n\t};\n\n\tBuffer.prototype.writeInt8 = function writeInt8(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80);\n\t  if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value);\n\t  if (value < 0) value = 0xff + value + 1;\n\t  this[offset] = value & 0xff;\n\t  return offset + 1;\n\t};\n\n\tBuffer.prototype.writeInt16LE = function writeInt16LE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value & 0xff;\n\t    this[offset + 1] = value >>> 8;\n\t  } else {\n\t    objectWriteUInt16(this, value, offset, true);\n\t  }\n\t  return offset + 2;\n\t};\n\n\tBuffer.prototype.writeInt16BE = function writeInt16BE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value >>> 8;\n\t    this[offset + 1] = value & 0xff;\n\t  } else {\n\t    objectWriteUInt16(this, value, offset, false);\n\t  }\n\t  return offset + 2;\n\t};\n\n\tBuffer.prototype.writeInt32LE = function writeInt32LE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value & 0xff;\n\t    this[offset + 1] = value >>> 8;\n\t    this[offset + 2] = value >>> 16;\n\t    this[offset + 3] = value >>> 24;\n\t  } else {\n\t    objectWriteUInt32(this, value, offset, true);\n\t  }\n\t  return offset + 4;\n\t};\n\n\tBuffer.prototype.writeInt32BE = function writeInt32BE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000);\n\t  if (value < 0) value = 0xffffffff + value + 1;\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value >>> 24;\n\t    this[offset + 1] = value >>> 16;\n\t    this[offset + 2] = value >>> 8;\n\t    this[offset + 3] = value & 0xff;\n\t  } else {\n\t    objectWriteUInt32(this, value, offset, false);\n\t  }\n\t  return offset + 4;\n\t};\n\n\tfunction checkIEEE754(buf, value, offset, ext, max, min) {\n\t  if (offset + ext > buf.length) throw new RangeError('Index out of range');\n\t  if (offset < 0) throw new RangeError('Index out of range');\n\t}\n\n\tfunction writeFloat(buf, value, offset, littleEndian, noAssert) {\n\t  if (!noAssert) {\n\t    checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38);\n\t  }\n\t  ieee754.write(buf, value, offset, littleEndian, 23, 4);\n\t  return offset + 4;\n\t}\n\n\tBuffer.prototype.writeFloatLE = function writeFloatLE(value, offset, noAssert) {\n\t  return writeFloat(this, value, offset, true, noAssert);\n\t};\n\n\tBuffer.prototype.writeFloatBE = function writeFloatBE(value, offset, noAssert) {\n\t  return writeFloat(this, value, offset, false, noAssert);\n\t};\n\n\tfunction writeDouble(buf, value, offset, littleEndian, noAssert) {\n\t  if (!noAssert) {\n\t    checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308);\n\t  }\n\t  ieee754.write(buf, value, offset, littleEndian, 52, 8);\n\t  return offset + 8;\n\t}\n\n\tBuffer.prototype.writeDoubleLE = function writeDoubleLE(value, offset, noAssert) {\n\t  return writeDouble(this, value, offset, true, noAssert);\n\t};\n\n\tBuffer.prototype.writeDoubleBE = function writeDoubleBE(value, offset, noAssert) {\n\t  return writeDouble(this, value, offset, false, noAssert);\n\t};\n\n\t// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)\n\tBuffer.prototype.copy = function copy(target, targetStart, start, end) {\n\t  if (!start) start = 0;\n\t  if (!end && end !== 0) end = this.length;\n\t  if (targetStart >= target.length) targetStart = target.length;\n\t  if (!targetStart) targetStart = 0;\n\t  if (end > 0 && end < start) end = start;\n\n\t  // Copy 0 bytes; we're done\n\t  if (end === start) return 0;\n\t  if (target.length === 0 || this.length === 0) return 0;\n\n\t  // Fatal error conditions\n\t  if (targetStart < 0) {\n\t    throw new RangeError('targetStart out of bounds');\n\t  }\n\t  if (start < 0 || start >= this.length) throw new RangeError('sourceStart out of bounds');\n\t  if (end < 0) throw new RangeError('sourceEnd out of bounds');\n\n\t  // Are we oob?\n\t  if (end > this.length) end = this.length;\n\t  if (target.length - targetStart < end - start) {\n\t    end = target.length - targetStart + start;\n\t  }\n\n\t  var len = end - start;\n\t  var i;\n\n\t  if (this === target && start < targetStart && targetStart < end) {\n\t    // descending copy from end\n\t    for (i = len - 1; i >= 0; --i) {\n\t      target[i + targetStart] = this[i + start];\n\t    }\n\t  } else if (len < 1000 || !Buffer.TYPED_ARRAY_SUPPORT) {\n\t    // ascending copy from start\n\t    for (i = 0; i < len; ++i) {\n\t      target[i + targetStart] = this[i + start];\n\t    }\n\t  } else {\n\t    Uint8Array.prototype.set.call(target, this.subarray(start, start + len), targetStart);\n\t  }\n\n\t  return len;\n\t};\n\n\t// Usage:\n\t//    buffer.fill(number[, offset[, end]])\n\t//    buffer.fill(buffer[, offset[, end]])\n\t//    buffer.fill(string[, offset[, end]][, encoding])\n\tBuffer.prototype.fill = function fill(val, start, end, encoding) {\n\t  // Handle string cases:\n\t  if (typeof val === 'string') {\n\t    if (typeof start === 'string') {\n\t      encoding = start;\n\t      start = 0;\n\t      end = this.length;\n\t    } else if (typeof end === 'string') {\n\t      encoding = end;\n\t      end = this.length;\n\t    }\n\t    if (val.length === 1) {\n\t      var code = val.charCodeAt(0);\n\t      if (code < 256) {\n\t        val = code;\n\t      }\n\t    }\n\t    if (encoding !== undefined && typeof encoding !== 'string') {\n\t      throw new TypeError('encoding must be a string');\n\t    }\n\t    if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) {\n\t      throw new TypeError('Unknown encoding: ' + encoding);\n\t    }\n\t  } else if (typeof val === 'number') {\n\t    val = val & 255;\n\t  }\n\n\t  // Invalid ranges are not set to a default, so can range check early.\n\t  if (start < 0 || this.length < start || this.length < end) {\n\t    throw new RangeError('Out of range index');\n\t  }\n\n\t  if (end <= start) {\n\t    return this;\n\t  }\n\n\t  start = start >>> 0;\n\t  end = end === undefined ? this.length : end >>> 0;\n\n\t  if (!val) val = 0;\n\n\t  var i;\n\t  if (typeof val === 'number') {\n\t    for (i = start; i < end; ++i) {\n\t      this[i] = val;\n\t    }\n\t  } else {\n\t    var bytes = Buffer.isBuffer(val) ? val : utf8ToBytes(new Buffer(val, encoding).toString());\n\t    var len = bytes.length;\n\t    for (i = 0; i < end - start; ++i) {\n\t      this[i + start] = bytes[i % len];\n\t    }\n\t  }\n\n\t  return this;\n\t};\n\n\t// HELPER FUNCTIONS\n\t// ================\n\n\tvar INVALID_BASE64_RE = /[^+\\/0-9A-Za-z-_]/g;\n\n\tfunction base64clean(str) {\n\t  // Node strips out invalid characters like \\n and \\t from the string, base64-js does not\n\t  str = stringtrim(str).replace(INVALID_BASE64_RE, '');\n\t  // Node converts strings with length < 2 to ''\n\t  if (str.length < 2) return '';\n\t  // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not\n\t  while (str.length % 4 !== 0) {\n\t    str = str + '=';\n\t  }\n\t  return str;\n\t}\n\n\tfunction stringtrim(str) {\n\t  if (str.trim) return str.trim();\n\t  return str.replace(/^\\s+|\\s+$/g, '');\n\t}\n\n\tfunction toHex(n) {\n\t  if (n < 16) return '0' + n.toString(16);\n\t  return n.toString(16);\n\t}\n\n\tfunction utf8ToBytes(string, units) {\n\t  units = units || Infinity;\n\t  var codePoint;\n\t  var length = string.length;\n\t  var leadSurrogate = null;\n\t  var bytes = [];\n\n\t  for (var i = 0; i < length; ++i) {\n\t    codePoint = string.charCodeAt(i);\n\n\t    // is surrogate component\n\t    if (codePoint > 0xD7FF && codePoint < 0xE000) {\n\t      // last char was a lead\n\t      if (!leadSurrogate) {\n\t        // no lead yet\n\t        if (codePoint > 0xDBFF) {\n\t          // unexpected trail\n\t          if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);\n\t          continue;\n\t        } else if (i + 1 === length) {\n\t          // unpaired lead\n\t          if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);\n\t          continue;\n\t        }\n\n\t        // valid lead\n\t        leadSurrogate = codePoint;\n\n\t        continue;\n\t      }\n\n\t      // 2 leads in a row\n\t      if (codePoint < 0xDC00) {\n\t        if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);\n\t        leadSurrogate = codePoint;\n\t        continue;\n\t      }\n\n\t      // valid surrogate pair\n\t      codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000;\n\t    } else if (leadSurrogate) {\n\t      // valid bmp char, but last char was a lead\n\t      if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);\n\t    }\n\n\t    leadSurrogate = null;\n\n\t    // encode utf8\n\t    if (codePoint < 0x80) {\n\t      if ((units -= 1) < 0) break;\n\t      bytes.push(codePoint);\n\t    } else if (codePoint < 0x800) {\n\t      if ((units -= 2) < 0) break;\n\t      bytes.push(codePoint >> 0x6 | 0xC0, codePoint & 0x3F | 0x80);\n\t    } else if (codePoint < 0x10000) {\n\t      if ((units -= 3) < 0) break;\n\t      bytes.push(codePoint >> 0xC | 0xE0, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80);\n\t    } else if (codePoint < 0x110000) {\n\t      if ((units -= 4) < 0) break;\n\t      bytes.push(codePoint >> 0x12 | 0xF0, codePoint >> 0xC & 0x3F | 0x80, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80);\n\t    } else {\n\t      throw new Error('Invalid code point');\n\t    }\n\t  }\n\n\t  return bytes;\n\t}\n\n\tfunction asciiToBytes(str) {\n\t  var byteArray = [];\n\t  for (var i = 0; i < str.length; ++i) {\n\t    // Node's code seems to be doing this and not & 0x7F..\n\t    byteArray.push(str.charCodeAt(i) & 0xFF);\n\t  }\n\t  return byteArray;\n\t}\n\n\tfunction utf16leToBytes(str, units) {\n\t  var c, hi, lo;\n\t  var byteArray = [];\n\t  for (var i = 0; i < str.length; ++i) {\n\t    if ((units -= 2) < 0) break;\n\n\t    c = str.charCodeAt(i);\n\t    hi = c >> 8;\n\t    lo = c % 256;\n\t    byteArray.push(lo);\n\t    byteArray.push(hi);\n\t  }\n\n\t  return byteArray;\n\t}\n\n\tfunction base64ToBytes(str) {\n\t  return base64.toByteArray(base64clean(str));\n\t}\n\n\tfunction blitBuffer(src, dst, offset, length) {\n\t  for (var i = 0; i < length; ++i) {\n\t    if (i + offset >= dst.length || i >= src.length) break;\n\t    dst[i + offset] = src[i];\n\t  }\n\t  return i;\n\t}\n\n\tfunction isnan(val) {\n\t  return val !== val; // eslint-disable-line no-self-compare\n\t}\n\t/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))\n\n/***/ }),\n/* 400 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar toString = {}.toString;\n\n\tmodule.exports = Array.isArray || function (arr) {\n\t  return toString.call(arr) == '[object Array]';\n\t};\n\n/***/ }),\n/* 401 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {'use strict';\n\n\tvar escapeStringRegexp = __webpack_require__(460);\n\tvar ansiStyles = __webpack_require__(289);\n\tvar stripAnsi = __webpack_require__(622);\n\tvar hasAnsi = __webpack_require__(464);\n\tvar supportsColor = __webpack_require__(623);\n\tvar defineProps = Object.defineProperties;\n\tvar isSimpleWindowsTerm = process.platform === 'win32' && !/^xterm/i.test(process.env.TERM);\n\n\tfunction Chalk(options) {\n\t\t// detect mode if not set manually\n\t\tthis.enabled = !options || options.enabled === undefined ? supportsColor : options.enabled;\n\t}\n\n\t// use bright blue on Windows as the normal blue color is illegible\n\tif (isSimpleWindowsTerm) {\n\t\tansiStyles.blue.open = '\\x1B[94m';\n\t}\n\n\tvar styles = function () {\n\t\tvar ret = {};\n\n\t\tObject.keys(ansiStyles).forEach(function (key) {\n\t\t\tansiStyles[key].closeRe = new RegExp(escapeStringRegexp(ansiStyles[key].close), 'g');\n\n\t\t\tret[key] = {\n\t\t\t\tget: function get() {\n\t\t\t\t\treturn build.call(this, this._styles.concat(key));\n\t\t\t\t}\n\t\t\t};\n\t\t});\n\n\t\treturn ret;\n\t}();\n\n\tvar proto = defineProps(function chalk() {}, styles);\n\n\tfunction build(_styles) {\n\t\tvar builder = function builder() {\n\t\t\treturn applyStyle.apply(builder, arguments);\n\t\t};\n\n\t\tbuilder._styles = _styles;\n\t\tbuilder.enabled = this.enabled;\n\t\t// __proto__ is used because we must return a function, but there is\n\t\t// no way to create a function with a different prototype.\n\t\t/* eslint-disable no-proto */\n\t\tbuilder.__proto__ = proto;\n\n\t\treturn builder;\n\t}\n\n\tfunction applyStyle() {\n\t\t// support varags, but simply cast to string in case there's only one arg\n\t\tvar args = arguments;\n\t\tvar argsLen = args.length;\n\t\tvar str = argsLen !== 0 && String(arguments[0]);\n\n\t\tif (argsLen > 1) {\n\t\t\t// don't slice `arguments`, it prevents v8 optimizations\n\t\t\tfor (var a = 1; a < argsLen; a++) {\n\t\t\t\tstr += ' ' + args[a];\n\t\t\t}\n\t\t}\n\n\t\tif (!this.enabled || !str) {\n\t\t\treturn str;\n\t\t}\n\n\t\tvar nestedStyles = this._styles;\n\t\tvar i = nestedStyles.length;\n\n\t\t// Turns out that on Windows dimmed gray text becomes invisible in cmd.exe,\n\t\t// see https://github.com/chalk/chalk/issues/58\n\t\t// If we're on Windows and we're dealing with a gray color, temporarily make 'dim' a noop.\n\t\tvar originalDim = ansiStyles.dim.open;\n\t\tif (isSimpleWindowsTerm && (nestedStyles.indexOf('gray') !== -1 || nestedStyles.indexOf('grey') !== -1)) {\n\t\t\tansiStyles.dim.open = '';\n\t\t}\n\n\t\twhile (i--) {\n\t\t\tvar code = ansiStyles[nestedStyles[i]];\n\n\t\t\t// Replace any instances already present with a re-opening code\n\t\t\t// otherwise only the part of the string until said closing code\n\t\t\t// will be colored, and the rest will simply be 'plain'.\n\t\t\tstr = code.open + str.replace(code.closeRe, code.open) + code.close;\n\t\t}\n\n\t\t// Reset the original 'dim' if we changed it to work around the Windows dimmed gray issue.\n\t\tansiStyles.dim.open = originalDim;\n\n\t\treturn str;\n\t}\n\n\tfunction init() {\n\t\tvar ret = {};\n\n\t\tObject.keys(styles).forEach(function (name) {\n\t\t\tret[name] = {\n\t\t\t\tget: function get() {\n\t\t\t\t\treturn build.call(this, [name]);\n\t\t\t\t}\n\t\t\t};\n\t\t});\n\n\t\treturn ret;\n\t}\n\n\tdefineProps(Chalk.prototype, init());\n\n\tmodule.exports = new Chalk();\n\tmodule.exports.styles = ansiStyles;\n\tmodule.exports.hasColor = hasAnsi;\n\tmodule.exports.stripColor = stripAnsi;\n\tmodule.exports.supportsColor = supportsColor;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 402 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function (xs, fn) {\n\t    var res = [];\n\t    for (var i = 0; i < xs.length; i++) {\n\t        var x = fn(xs[i], i);\n\t        if (isArray(x)) res.push.apply(res, x);else res.push(x);\n\t    }\n\t    return res;\n\t};\n\n\tvar isArray = Array.isArray || function (xs) {\n\t    return Object.prototype.toString.call(xs) === '[object Array]';\n\t};\n\n/***/ }),\n/* 403 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(Buffer) {'use strict';\n\n\tvar fs = __webpack_require__(115);\n\tvar path = __webpack_require__(19);\n\n\tObject.defineProperty(exports, 'commentRegex', {\n\t  get: function getCommentRegex() {\n\t    return (/^\\s*\\/(?:\\/|\\*)[@#]\\s+sourceMappingURL=data:(?:application|text)\\/json;(?:charset[:=]\\S+?;)?base64,(?:.*)$/mg\n\t    );\n\t  }\n\t});\n\n\tObject.defineProperty(exports, 'mapFileCommentRegex', {\n\t  get: function getMapFileCommentRegex() {\n\t    //Example (Extra space between slashes added to solve Safari bug. Exclude space in production):\n\t    //     / /# sourceMappingURL=foo.js.map           \n\t    return (/(?:\\/\\/[@#][ \\t]+sourceMappingURL=([^\\s'\"]+?)[ \\t]*$)|(?:\\/\\*[@#][ \\t]+sourceMappingURL=([^\\*]+?)[ \\t]*(?:\\*\\/){1}[ \\t]*$)/mg\n\t    );\n\t  }\n\t});\n\n\tfunction decodeBase64(base64) {\n\t  return new Buffer(base64, 'base64').toString();\n\t}\n\n\tfunction stripComment(sm) {\n\t  return sm.split(',').pop();\n\t}\n\n\tfunction readFromFileMap(sm, dir) {\n\t  // NOTE: this will only work on the server since it attempts to read the map file\n\n\t  var r = exports.mapFileCommentRegex.exec(sm);\n\n\t  // for some odd reason //# .. captures in 1 and /* .. */ in 2\n\t  var filename = r[1] || r[2];\n\t  var filepath = path.resolve(dir, filename);\n\n\t  try {\n\t    return fs.readFileSync(filepath, 'utf8');\n\t  } catch (e) {\n\t    throw new Error('An error occurred while trying to read the map file at ' + filepath + '\\n' + e);\n\t  }\n\t}\n\n\tfunction Converter(sm, opts) {\n\t  opts = opts || {};\n\n\t  if (opts.isFileComment) sm = readFromFileMap(sm, opts.commentFileDir);\n\t  if (opts.hasComment) sm = stripComment(sm);\n\t  if (opts.isEncoded) sm = decodeBase64(sm);\n\t  if (opts.isJSON || opts.isEncoded) sm = JSON.parse(sm);\n\n\t  this.sourcemap = sm;\n\t}\n\n\tConverter.prototype.toJSON = function (space) {\n\t  return JSON.stringify(this.sourcemap, null, space);\n\t};\n\n\tConverter.prototype.toBase64 = function () {\n\t  var json = this.toJSON();\n\t  return new Buffer(json).toString('base64');\n\t};\n\n\tConverter.prototype.toComment = function (options) {\n\t  var base64 = this.toBase64();\n\t  var data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64;\n\t  return options && options.multiline ? '/*# ' + data + ' */' : '//# ' + data;\n\t};\n\n\t// returns copy instead of original\n\tConverter.prototype.toObject = function () {\n\t  return JSON.parse(this.toJSON());\n\t};\n\n\tConverter.prototype.addProperty = function (key, value) {\n\t  if (this.sourcemap.hasOwnProperty(key)) throw new Error('property %s already exists on the sourcemap, use set property instead');\n\t  return this.setProperty(key, value);\n\t};\n\n\tConverter.prototype.setProperty = function (key, value) {\n\t  this.sourcemap[key] = value;\n\t  return this;\n\t};\n\n\tConverter.prototype.getProperty = function (key) {\n\t  return this.sourcemap[key];\n\t};\n\n\texports.fromObject = function (obj) {\n\t  return new Converter(obj);\n\t};\n\n\texports.fromJSON = function (json) {\n\t  return new Converter(json, { isJSON: true });\n\t};\n\n\texports.fromBase64 = function (base64) {\n\t  return new Converter(base64, { isEncoded: true });\n\t};\n\n\texports.fromComment = function (comment) {\n\t  comment = comment.replace(/^\\/\\*/g, '//').replace(/\\*\\/$/g, '');\n\n\t  return new Converter(comment, { isEncoded: true, hasComment: true });\n\t};\n\n\texports.fromMapFileComment = function (comment, dir) {\n\t  return new Converter(comment, { commentFileDir: dir, isFileComment: true, isJSON: true });\n\t};\n\n\t// Finds last sourcemap comment in file or returns null if none was found\n\texports.fromSource = function (content) {\n\t  var m = content.match(exports.commentRegex);\n\t  return m ? exports.fromComment(m.pop()) : null;\n\t};\n\n\t// Finds last sourcemap comment in file or returns null if none was found\n\texports.fromMapFileSource = function (content, dir) {\n\t  var m = content.match(exports.mapFileCommentRegex);\n\t  return m ? exports.fromMapFileComment(m.pop(), dir) : null;\n\t};\n\n\texports.removeComments = function (src) {\n\t  return src.replace(exports.commentRegex, '');\n\t};\n\n\texports.removeMapFileComments = function (src) {\n\t  return src.replace(exports.mapFileCommentRegex, '');\n\t};\n\n\texports.generateMapFileComment = function (file, options) {\n\t  var data = 'sourceMappingURL=' + file;\n\t  return options && options.multiline ? '/*# ' + data + ' */' : '//# ' + data;\n\t};\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(399).Buffer))\n\n/***/ }),\n/* 404 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(59);\n\t__webpack_require__(157);\n\tmodule.exports = __webpack_require__(439);\n\n/***/ }),\n/* 405 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar core = __webpack_require__(5);\n\tvar $JSON = core.JSON || (core.JSON = { stringify: JSON.stringify });\n\tmodule.exports = function stringify(it) {\n\t  // eslint-disable-line no-unused-vars\n\t  return $JSON.stringify.apply($JSON, arguments);\n\t};\n\n/***/ }),\n/* 406 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(96);\n\t__webpack_require__(157);\n\t__webpack_require__(59);\n\t__webpack_require__(441);\n\t__webpack_require__(451);\n\t__webpack_require__(450);\n\t__webpack_require__(449);\n\tmodule.exports = __webpack_require__(5).Map;\n\n/***/ }),\n/* 407 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(442);\n\tmodule.exports = 0x1fffffffffffff;\n\n/***/ }),\n/* 408 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(443);\n\tmodule.exports = __webpack_require__(5).Object.assign;\n\n/***/ }),\n/* 409 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(444);\n\tvar $Object = __webpack_require__(5).Object;\n\tmodule.exports = function create(P, D) {\n\t  return $Object.create(P, D);\n\t};\n\n/***/ }),\n/* 410 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(158);\n\tmodule.exports = __webpack_require__(5).Object.getOwnPropertySymbols;\n\n/***/ }),\n/* 411 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(445);\n\tmodule.exports = __webpack_require__(5).Object.keys;\n\n/***/ }),\n/* 412 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(446);\n\tmodule.exports = __webpack_require__(5).Object.setPrototypeOf;\n\n/***/ }),\n/* 413 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(158);\n\tmodule.exports = __webpack_require__(5).Symbol['for'];\n\n/***/ }),\n/* 414 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(158);\n\t__webpack_require__(96);\n\t__webpack_require__(452);\n\t__webpack_require__(453);\n\tmodule.exports = __webpack_require__(5).Symbol;\n\n/***/ }),\n/* 415 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(157);\n\t__webpack_require__(59);\n\tmodule.exports = __webpack_require__(156).f('iterator');\n\n/***/ }),\n/* 416 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(96);\n\t__webpack_require__(59);\n\t__webpack_require__(447);\n\t__webpack_require__(455);\n\t__webpack_require__(454);\n\tmodule.exports = __webpack_require__(5).WeakMap;\n\n/***/ }),\n/* 417 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(96);\n\t__webpack_require__(59);\n\t__webpack_require__(448);\n\t__webpack_require__(457);\n\t__webpack_require__(456);\n\tmodule.exports = __webpack_require__(5).WeakSet;\n\n/***/ }),\n/* 418 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = function () {/* empty */};\n\n/***/ }),\n/* 419 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar forOf = __webpack_require__(55);\n\n\tmodule.exports = function (iter, ITERATOR) {\n\t  var result = [];\n\t  forOf(iter, false, result.push, result, ITERATOR);\n\t  return result;\n\t};\n\n/***/ }),\n/* 420 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// false -> Array#indexOf\n\t// true  -> Array#includes\n\tvar toIObject = __webpack_require__(37);\n\tvar toLength = __webpack_require__(153);\n\tvar toAbsoluteIndex = __webpack_require__(438);\n\tmodule.exports = function (IS_INCLUDES) {\n\t  return function ($this, el, fromIndex) {\n\t    var O = toIObject($this);\n\t    var length = toLength(O.length);\n\t    var index = toAbsoluteIndex(fromIndex, length);\n\t    var value;\n\t    // Array#includes uses SameValueZero equality algorithm\n\t    // eslint-disable-next-line no-self-compare\n\t    if (IS_INCLUDES && el != el) while (length > index) {\n\t      value = O[index++];\n\t      // eslint-disable-next-line no-self-compare\n\t      if (value != value) return true;\n\t      // Array#indexOf ignores holes, Array#includes - not\n\t    } else for (; length > index; index++) {\n\t      if (IS_INCLUDES || index in O) {\n\t        if (O[index] === el) return IS_INCLUDES || index || 0;\n\t      }\n\t    }return !IS_INCLUDES && -1;\n\t  };\n\t};\n\n/***/ }),\n/* 421 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(16);\n\tvar isArray = __webpack_require__(232);\n\tvar SPECIES = __webpack_require__(13)('species');\n\n\tmodule.exports = function (original) {\n\t  var C;\n\t  if (isArray(original)) {\n\t    C = original.constructor;\n\t    // cross-realm fallback\n\t    if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n\t    if (isObject(C)) {\n\t      C = C[SPECIES];\n\t      if (C === null) C = undefined;\n\t    }\n\t  }return C === undefined ? Array : C;\n\t};\n\n/***/ }),\n/* 422 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 9.4.2.3 ArraySpeciesCreate(originalArray, length)\n\tvar speciesConstructor = __webpack_require__(421);\n\n\tmodule.exports = function (original, length) {\n\t  return new (speciesConstructor(original))(length);\n\t};\n\n/***/ }),\n/* 423 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar dP = __webpack_require__(23).f;\n\tvar create = __webpack_require__(90);\n\tvar redefineAll = __webpack_require__(146);\n\tvar ctx = __webpack_require__(43);\n\tvar anInstance = __webpack_require__(136);\n\tvar forOf = __webpack_require__(55);\n\tvar $iterDefine = __webpack_require__(143);\n\tvar step = __webpack_require__(233);\n\tvar setSpecies = __webpack_require__(436);\n\tvar DESCRIPTORS = __webpack_require__(22);\n\tvar fastKey = __webpack_require__(57).fastKey;\n\tvar validate = __webpack_require__(58);\n\tvar SIZE = DESCRIPTORS ? '_s' : 'size';\n\n\tvar getEntry = function getEntry(that, key) {\n\t  // fast case\n\t  var index = fastKey(key);\n\t  var entry;\n\t  if (index !== 'F') return that._i[index];\n\t  // frozen object case\n\t  for (entry = that._f; entry; entry = entry.n) {\n\t    if (entry.k == key) return entry;\n\t  }\n\t};\n\n\tmodule.exports = {\n\t  getConstructor: function getConstructor(wrapper, NAME, IS_MAP, ADDER) {\n\t    var C = wrapper(function (that, iterable) {\n\t      anInstance(that, C, NAME, '_i');\n\t      that._t = NAME; // collection type\n\t      that._i = create(null); // index\n\t      that._f = undefined; // first entry\n\t      that._l = undefined; // last entry\n\t      that[SIZE] = 0; // size\n\t      if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n\t    });\n\t    redefineAll(C.prototype, {\n\t      // 23.1.3.1 Map.prototype.clear()\n\t      // 23.2.3.2 Set.prototype.clear()\n\t      clear: function clear() {\n\t        for (var that = validate(this, NAME), data = that._i, entry = that._f; entry; entry = entry.n) {\n\t          entry.r = true;\n\t          if (entry.p) entry.p = entry.p.n = undefined;\n\t          delete data[entry.i];\n\t        }\n\t        that._f = that._l = undefined;\n\t        that[SIZE] = 0;\n\t      },\n\t      // 23.1.3.3 Map.prototype.delete(key)\n\t      // 23.2.3.4 Set.prototype.delete(value)\n\t      'delete': function _delete(key) {\n\t        var that = validate(this, NAME);\n\t        var entry = getEntry(that, key);\n\t        if (entry) {\n\t          var next = entry.n;\n\t          var prev = entry.p;\n\t          delete that._i[entry.i];\n\t          entry.r = true;\n\t          if (prev) prev.n = next;\n\t          if (next) next.p = prev;\n\t          if (that._f == entry) that._f = next;\n\t          if (that._l == entry) that._l = prev;\n\t          that[SIZE]--;\n\t        }return !!entry;\n\t      },\n\t      // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n\t      // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n\t      forEach: function forEach(callbackfn /* , that = undefined */) {\n\t        validate(this, NAME);\n\t        var f = ctx(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n\t        var entry;\n\t        while (entry = entry ? entry.n : this._f) {\n\t          f(entry.v, entry.k, this);\n\t          // revert to the last existing entry\n\t          while (entry && entry.r) {\n\t            entry = entry.p;\n\t          }\n\t        }\n\t      },\n\t      // 23.1.3.7 Map.prototype.has(key)\n\t      // 23.2.3.7 Set.prototype.has(value)\n\t      has: function has(key) {\n\t        return !!getEntry(validate(this, NAME), key);\n\t      }\n\t    });\n\t    if (DESCRIPTORS) dP(C.prototype, 'size', {\n\t      get: function get() {\n\t        return validate(this, NAME)[SIZE];\n\t      }\n\t    });\n\t    return C;\n\t  },\n\t  def: function def(that, key, value) {\n\t    var entry = getEntry(that, key);\n\t    var prev, index;\n\t    // change existing entry\n\t    if (entry) {\n\t      entry.v = value;\n\t      // create new entry\n\t    } else {\n\t      that._l = entry = {\n\t        i: index = fastKey(key, true), // <- index\n\t        k: key, // <- key\n\t        v: value, // <- value\n\t        p: prev = that._l, // <- previous entry\n\t        n: undefined, // <- next entry\n\t        r: false // <- removed\n\t      };\n\t      if (!that._f) that._f = entry;\n\t      if (prev) prev.n = entry;\n\t      that[SIZE]++;\n\t      // add to index\n\t      if (index !== 'F') that._i[index] = entry;\n\t    }return that;\n\t  },\n\t  getEntry: getEntry,\n\t  setStrong: function setStrong(C, NAME, IS_MAP) {\n\t    // add .keys, .values, .entries, [@@iterator]\n\t    // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n\t    $iterDefine(C, NAME, function (iterated, kind) {\n\t      this._t = validate(iterated, NAME); // target\n\t      this._k = kind; // kind\n\t      this._l = undefined; // previous\n\t    }, function () {\n\t      var that = this;\n\t      var kind = that._k;\n\t      var entry = that._l;\n\t      // revert to the last existing entry\n\t      while (entry && entry.r) {\n\t        entry = entry.p;\n\t      } // get next entry\n\t      if (!that._t || !(that._l = entry = entry ? entry.n : that._t._f)) {\n\t        // or finish the iteration\n\t        that._t = undefined;\n\t        return step(1);\n\t      }\n\t      // return step by kind\n\t      if (kind == 'keys') return step(0, entry.k);\n\t      if (kind == 'values') return step(0, entry.v);\n\t      return step(0, [entry.k, entry.v]);\n\t    }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n\t    // add [@@species], 23.1.2.2, 23.2.2.2\n\t    setSpecies(NAME);\n\t  }\n\t};\n\n/***/ }),\n/* 424 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://github.com/DavidBruant/Map-Set.prototype.toJSON\n\tvar classof = __webpack_require__(228);\n\tvar from = __webpack_require__(419);\n\tmodule.exports = function (NAME) {\n\t  return function toJSON() {\n\t    if (classof(this) != NAME) throw TypeError(NAME + \"#toJSON isn't generic\");\n\t    return from(this);\n\t  };\n\t};\n\n/***/ }),\n/* 425 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// all enumerable object keys, includes symbols\n\tvar getKeys = __webpack_require__(44);\n\tvar gOPS = __webpack_require__(145);\n\tvar pIE = __webpack_require__(91);\n\tmodule.exports = function (it) {\n\t  var result = getKeys(it);\n\t  var getSymbols = gOPS.f;\n\t  if (getSymbols) {\n\t    var symbols = getSymbols(it);\n\t    var isEnum = pIE.f;\n\t    var i = 0;\n\t    var key;\n\t    while (symbols.length > i) {\n\t      if (isEnum.call(it, key = symbols[i++])) result.push(key);\n\t    }\n\t  }return result;\n\t};\n\n/***/ }),\n/* 426 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar document = __webpack_require__(15).document;\n\tmodule.exports = document && document.documentElement;\n\n/***/ }),\n/* 427 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// check on default Array iterator\n\tvar Iterators = __webpack_require__(56);\n\tvar ITERATOR = __webpack_require__(13)('iterator');\n\tvar ArrayProto = Array.prototype;\n\n\tmodule.exports = function (it) {\n\t  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);\n\t};\n\n/***/ }),\n/* 428 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// call something on iterator step with safe closing on error\n\tvar anObject = __webpack_require__(21);\n\tmodule.exports = function (iterator, fn, value, entries) {\n\t  try {\n\t    return entries ? fn(anObject(value)[0], value[1]) : fn(value);\n\t    // 7.4.6 IteratorClose(iterator, completion)\n\t  } catch (e) {\n\t    var ret = iterator['return'];\n\t    if (ret !== undefined) anObject(ret.call(iterator));\n\t    throw e;\n\t  }\n\t};\n\n/***/ }),\n/* 429 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar create = __webpack_require__(90);\n\tvar descriptor = __webpack_require__(92);\n\tvar setToStringTag = __webpack_require__(93);\n\tvar IteratorPrototype = {};\n\n\t// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\n\t__webpack_require__(29)(IteratorPrototype, __webpack_require__(13)('iterator'), function () {\n\t  return this;\n\t});\n\n\tmodule.exports = function (Constructor, NAME, next) {\n\t  Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n\t  setToStringTag(Constructor, NAME + ' Iterator');\n\t};\n\n/***/ }),\n/* 430 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getKeys = __webpack_require__(44);\n\tvar toIObject = __webpack_require__(37);\n\tmodule.exports = function (object, el) {\n\t  var O = toIObject(object);\n\t  var keys = getKeys(O);\n\t  var length = keys.length;\n\t  var index = 0;\n\t  var key;\n\t  while (length > index) {\n\t    if (O[key = keys[index++]] === el) return key;\n\t  }\n\t};\n\n/***/ }),\n/* 431 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar dP = __webpack_require__(23);\n\tvar anObject = __webpack_require__(21);\n\tvar getKeys = __webpack_require__(44);\n\n\tmodule.exports = __webpack_require__(22) ? Object.defineProperties : function defineProperties(O, Properties) {\n\t  anObject(O);\n\t  var keys = getKeys(Properties);\n\t  var length = keys.length;\n\t  var i = 0;\n\t  var P;\n\t  while (length > i) {\n\t    dP.f(O, P = keys[i++], Properties[P]);\n\t  }return O;\n\t};\n\n/***/ }),\n/* 432 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window\n\tvar toIObject = __webpack_require__(37);\n\tvar gOPN = __webpack_require__(236).f;\n\tvar toString = {}.toString;\n\n\tvar windowNames = (typeof window === 'undefined' ? 'undefined' : _typeof(window)) == 'object' && window && Object.getOwnPropertyNames ? Object.getOwnPropertyNames(window) : [];\n\n\tvar getWindowNames = function getWindowNames(it) {\n\t  try {\n\t    return gOPN(it);\n\t  } catch (e) {\n\t    return windowNames.slice();\n\t  }\n\t};\n\n\tmodule.exports.f = function getOwnPropertyNames(it) {\n\t  return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));\n\t};\n\n/***/ }),\n/* 433 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)\n\tvar has = __webpack_require__(28);\n\tvar toObject = __webpack_require__(94);\n\tvar IE_PROTO = __webpack_require__(150)('IE_PROTO');\n\tvar ObjectProto = Object.prototype;\n\n\tmodule.exports = Object.getPrototypeOf || function (O) {\n\t  O = toObject(O);\n\t  if (has(O, IE_PROTO)) return O[IE_PROTO];\n\t  if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n\t    return O.constructor.prototype;\n\t  }return O instanceof Object ? ObjectProto : null;\n\t};\n\n/***/ }),\n/* 434 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// most Object methods by ES6 should accept primitives\n\tvar $export = __webpack_require__(12);\n\tvar core = __webpack_require__(5);\n\tvar fails = __webpack_require__(27);\n\tmodule.exports = function (KEY, exec) {\n\t  var fn = (core.Object || {})[KEY] || Object[KEY];\n\t  var exp = {};\n\t  exp[KEY] = exec(fn);\n\t  $export($export.S + $export.F * fails(function () {\n\t    fn(1);\n\t  }), 'Object', exp);\n\t};\n\n/***/ }),\n/* 435 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// Works with __proto__ only. Old v8 can't work with null proto objects.\n\t/* eslint-disable no-proto */\n\tvar isObject = __webpack_require__(16);\n\tvar anObject = __webpack_require__(21);\n\tvar check = function check(O, proto) {\n\t  anObject(O);\n\t  if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n\t};\n\tmodule.exports = {\n\t  set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n\t  function (test, buggy, set) {\n\t    try {\n\t      set = __webpack_require__(43)(Function.call, __webpack_require__(235).f(Object.prototype, '__proto__').set, 2);\n\t      set(test, []);\n\t      buggy = !(test instanceof Array);\n\t    } catch (e) {\n\t      buggy = true;\n\t    }\n\t    return function setPrototypeOf(O, proto) {\n\t      check(O, proto);\n\t      if (buggy) O.__proto__ = proto;else set(O, proto);\n\t      return O;\n\t    };\n\t  }({}, false) : undefined),\n\t  check: check\n\t};\n\n/***/ }),\n/* 436 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar global = __webpack_require__(15);\n\tvar core = __webpack_require__(5);\n\tvar dP = __webpack_require__(23);\n\tvar DESCRIPTORS = __webpack_require__(22);\n\tvar SPECIES = __webpack_require__(13)('species');\n\n\tmodule.exports = function (KEY) {\n\t  var C = typeof core[KEY] == 'function' ? core[KEY] : global[KEY];\n\t  if (DESCRIPTORS && C && !C[SPECIES]) dP.f(C, SPECIES, {\n\t    configurable: true,\n\t    get: function get() {\n\t      return this;\n\t    }\n\t  });\n\t};\n\n/***/ }),\n/* 437 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar toInteger = __webpack_require__(152);\n\tvar defined = __webpack_require__(140);\n\t// true  -> String#at\n\t// false -> String#codePointAt\n\tmodule.exports = function (TO_STRING) {\n\t  return function (that, pos) {\n\t    var s = String(defined(that));\n\t    var i = toInteger(pos);\n\t    var l = s.length;\n\t    var a, b;\n\t    if (i < 0 || i >= l) return TO_STRING ? '' : undefined;\n\t    a = s.charCodeAt(i);\n\t    return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff ? TO_STRING ? s.charAt(i) : a : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;\n\t  };\n\t};\n\n/***/ }),\n/* 438 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar toInteger = __webpack_require__(152);\n\tvar max = Math.max;\n\tvar min = Math.min;\n\tmodule.exports = function (index, length) {\n\t  index = toInteger(index);\n\t  return index < 0 ? max(index + length, 0) : min(index, length);\n\t};\n\n/***/ }),\n/* 439 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar anObject = __webpack_require__(21);\n\tvar get = __webpack_require__(238);\n\tmodule.exports = __webpack_require__(5).getIterator = function (it) {\n\t  var iterFn = get(it);\n\t  if (typeof iterFn != 'function') throw TypeError(it + ' is not iterable!');\n\t  return anObject(iterFn.call(it));\n\t};\n\n/***/ }),\n/* 440 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar addToUnscopables = __webpack_require__(418);\n\tvar step = __webpack_require__(233);\n\tvar Iterators = __webpack_require__(56);\n\tvar toIObject = __webpack_require__(37);\n\n\t// 22.1.3.4 Array.prototype.entries()\n\t// 22.1.3.13 Array.prototype.keys()\n\t// 22.1.3.29 Array.prototype.values()\n\t// 22.1.3.30 Array.prototype[@@iterator]()\n\tmodule.exports = __webpack_require__(143)(Array, 'Array', function (iterated, kind) {\n\t  this._t = toIObject(iterated); // target\n\t  this._i = 0; // next index\n\t  this._k = kind; // kind\n\t  // 22.1.5.2.1 %ArrayIteratorPrototype%.next()\n\t}, function () {\n\t  var O = this._t;\n\t  var kind = this._k;\n\t  var index = this._i++;\n\t  if (!O || index >= O.length) {\n\t    this._t = undefined;\n\t    return step(1);\n\t  }\n\t  if (kind == 'keys') return step(0, index);\n\t  if (kind == 'values') return step(0, O[index]);\n\t  return step(0, [index, O[index]]);\n\t}, 'values');\n\n\t// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)\n\tIterators.Arguments = Iterators.Array;\n\n\taddToUnscopables('keys');\n\taddToUnscopables('values');\n\taddToUnscopables('entries');\n\n/***/ }),\n/* 441 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar strong = __webpack_require__(423);\n\tvar validate = __webpack_require__(58);\n\tvar MAP = 'Map';\n\n\t// 23.1 Map Objects\n\tmodule.exports = __webpack_require__(139)(MAP, function (get) {\n\t  return function Map() {\n\t    return get(this, arguments.length > 0 ? arguments[0] : undefined);\n\t  };\n\t}, {\n\t  // 23.1.3.6 Map.prototype.get(key)\n\t  get: function get(key) {\n\t    var entry = strong.getEntry(validate(this, MAP), key);\n\t    return entry && entry.v;\n\t  },\n\t  // 23.1.3.9 Map.prototype.set(key, value)\n\t  set: function set(key, value) {\n\t    return strong.def(validate(this, MAP), key === 0 ? 0 : key, value);\n\t  }\n\t}, strong, true);\n\n/***/ }),\n/* 442 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 20.1.2.6 Number.MAX_SAFE_INTEGER\n\tvar $export = __webpack_require__(12);\n\n\t$export($export.S, 'Number', { MAX_SAFE_INTEGER: 0x1fffffffffffff });\n\n/***/ }),\n/* 443 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.3.1 Object.assign(target, source)\n\tvar $export = __webpack_require__(12);\n\n\t$export($export.S + $export.F, 'Object', { assign: __webpack_require__(234) });\n\n/***/ }),\n/* 444 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar $export = __webpack_require__(12);\n\t// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\n\t$export($export.S, 'Object', { create: __webpack_require__(90) });\n\n/***/ }),\n/* 445 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.2.14 Object.keys(O)\n\tvar toObject = __webpack_require__(94);\n\tvar $keys = __webpack_require__(44);\n\n\t__webpack_require__(434)('keys', function () {\n\t  return function keys(it) {\n\t    return $keys(toObject(it));\n\t  };\n\t});\n\n/***/ }),\n/* 446 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.3.19 Object.setPrototypeOf(O, proto)\n\tvar $export = __webpack_require__(12);\n\t$export($export.S, 'Object', { setPrototypeOf: __webpack_require__(435).set });\n\n/***/ }),\n/* 447 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar each = __webpack_require__(137)(0);\n\tvar redefine = __webpack_require__(147);\n\tvar meta = __webpack_require__(57);\n\tvar assign = __webpack_require__(234);\n\tvar weak = __webpack_require__(229);\n\tvar isObject = __webpack_require__(16);\n\tvar fails = __webpack_require__(27);\n\tvar validate = __webpack_require__(58);\n\tvar WEAK_MAP = 'WeakMap';\n\tvar getWeak = meta.getWeak;\n\tvar isExtensible = Object.isExtensible;\n\tvar uncaughtFrozenStore = weak.ufstore;\n\tvar tmp = {};\n\tvar InternalMap;\n\n\tvar wrapper = function wrapper(get) {\n\t  return function WeakMap() {\n\t    return get(this, arguments.length > 0 ? arguments[0] : undefined);\n\t  };\n\t};\n\n\tvar methods = {\n\t  // 23.3.3.3 WeakMap.prototype.get(key)\n\t  get: function get(key) {\n\t    if (isObject(key)) {\n\t      var data = getWeak(key);\n\t      if (data === true) return uncaughtFrozenStore(validate(this, WEAK_MAP)).get(key);\n\t      return data ? data[this._i] : undefined;\n\t    }\n\t  },\n\t  // 23.3.3.5 WeakMap.prototype.set(key, value)\n\t  set: function set(key, value) {\n\t    return weak.def(validate(this, WEAK_MAP), key, value);\n\t  }\n\t};\n\n\t// 23.3 WeakMap Objects\n\tvar $WeakMap = module.exports = __webpack_require__(139)(WEAK_MAP, wrapper, methods, weak, true, true);\n\n\t// IE11 WeakMap frozen keys fix\n\tif (fails(function () {\n\t  return new $WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7;\n\t})) {\n\t  InternalMap = weak.getConstructor(wrapper, WEAK_MAP);\n\t  assign(InternalMap.prototype, methods);\n\t  meta.NEED = true;\n\t  each(['delete', 'has', 'get', 'set'], function (key) {\n\t    var proto = $WeakMap.prototype;\n\t    var method = proto[key];\n\t    redefine(proto, key, function (a, b) {\n\t      // store frozen objects on internal weakmap shim\n\t      if (isObject(a) && !isExtensible(a)) {\n\t        if (!this._f) this._f = new InternalMap();\n\t        var result = this._f[key](a, b);\n\t        return key == 'set' ? this : result;\n\t        // store all the rest on native weakmap\n\t      }return method.call(this, a, b);\n\t    });\n\t  });\n\t}\n\n/***/ }),\n/* 448 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar weak = __webpack_require__(229);\n\tvar validate = __webpack_require__(58);\n\tvar WEAK_SET = 'WeakSet';\n\n\t// 23.4 WeakSet Objects\n\t__webpack_require__(139)(WEAK_SET, function (get) {\n\t  return function WeakSet() {\n\t    return get(this, arguments.length > 0 ? arguments[0] : undefined);\n\t  };\n\t}, {\n\t  // 23.4.3.1 WeakSet.prototype.add(value)\n\t  add: function add(value) {\n\t    return weak.def(validate(this, WEAK_SET), value, true);\n\t  }\n\t}, weak, false, true);\n\n/***/ }),\n/* 449 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://tc39.github.io/proposal-setmap-offrom/#sec-map.from\n\t__webpack_require__(148)('Map');\n\n/***/ }),\n/* 450 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://tc39.github.io/proposal-setmap-offrom/#sec-map.of\n\t__webpack_require__(149)('Map');\n\n/***/ }),\n/* 451 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://github.com/DavidBruant/Map-Set.prototype.toJSON\n\tvar $export = __webpack_require__(12);\n\n\t$export($export.P + $export.R, 'Map', { toJSON: __webpack_require__(424)('Map') });\n\n/***/ }),\n/* 452 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(155)('asyncIterator');\n\n/***/ }),\n/* 453 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(155)('observable');\n\n/***/ }),\n/* 454 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://tc39.github.io/proposal-setmap-offrom/#sec-weakmap.from\n\t__webpack_require__(148)('WeakMap');\n\n/***/ }),\n/* 455 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://tc39.github.io/proposal-setmap-offrom/#sec-weakmap.of\n\t__webpack_require__(149)('WeakMap');\n\n/***/ }),\n/* 456 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://tc39.github.io/proposal-setmap-offrom/#sec-weakset.from\n\t__webpack_require__(148)('WeakSet');\n\n/***/ }),\n/* 457 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://tc39.github.io/proposal-setmap-offrom/#sec-weakset.of\n\t__webpack_require__(149)('WeakSet');\n\n/***/ }),\n/* 458 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/**\n\t * This is the common logic for both the Node.js and web browser\n\t * implementations of `debug()`.\n\t *\n\t * Expose `debug()` as the module.\n\t */\n\n\texports = module.exports = createDebug.debug = createDebug['default'] = createDebug;\n\texports.coerce = coerce;\n\texports.disable = disable;\n\texports.enable = enable;\n\texports.enabled = enabled;\n\texports.humanize = __webpack_require__(602);\n\n\t/**\n\t * The currently active debug mode names, and names to skip.\n\t */\n\n\texports.names = [];\n\texports.skips = [];\n\n\t/**\n\t * Map of special \"%n\" handling functions, for the debug \"format\" argument.\n\t *\n\t * Valid key names are a single, lower or upper-case letter, i.e. \"n\" and \"N\".\n\t */\n\n\texports.formatters = {};\n\n\t/**\n\t * Previous log timestamp.\n\t */\n\n\tvar prevTime;\n\n\t/**\n\t * Select a color.\n\t * @param {String} namespace\n\t * @return {Number}\n\t * @api private\n\t */\n\n\tfunction selectColor(namespace) {\n\t  var hash = 0,\n\t      i;\n\n\t  for (i in namespace) {\n\t    hash = (hash << 5) - hash + namespace.charCodeAt(i);\n\t    hash |= 0; // Convert to 32bit integer\n\t  }\n\n\t  return exports.colors[Math.abs(hash) % exports.colors.length];\n\t}\n\n\t/**\n\t * Create a debugger with the given `namespace`.\n\t *\n\t * @param {String} namespace\n\t * @return {Function}\n\t * @api public\n\t */\n\n\tfunction createDebug(namespace) {\n\n\t  function debug() {\n\t    // disabled?\n\t    if (!debug.enabled) return;\n\n\t    var self = debug;\n\n\t    // set `diff` timestamp\n\t    var curr = +new Date();\n\t    var ms = curr - (prevTime || curr);\n\t    self.diff = ms;\n\t    self.prev = prevTime;\n\t    self.curr = curr;\n\t    prevTime = curr;\n\n\t    // turn the `arguments` into a proper Array\n\t    var args = new Array(arguments.length);\n\t    for (var i = 0; i < args.length; i++) {\n\t      args[i] = arguments[i];\n\t    }\n\n\t    args[0] = exports.coerce(args[0]);\n\n\t    if ('string' !== typeof args[0]) {\n\t      // anything else let's inspect with %O\n\t      args.unshift('%O');\n\t    }\n\n\t    // apply any `formatters` transformations\n\t    var index = 0;\n\t    args[0] = args[0].replace(/%([a-zA-Z%])/g, function (match, format) {\n\t      // if we encounter an escaped % then don't increase the array index\n\t      if (match === '%%') return match;\n\t      index++;\n\t      var formatter = exports.formatters[format];\n\t      if ('function' === typeof formatter) {\n\t        var val = args[index];\n\t        match = formatter.call(self, val);\n\n\t        // now we need to remove `args[index]` since it's inlined in the `format`\n\t        args.splice(index, 1);\n\t        index--;\n\t      }\n\t      return match;\n\t    });\n\n\t    // apply env-specific formatting (colors, etc.)\n\t    exports.formatArgs.call(self, args);\n\n\t    var logFn = debug.log || exports.log || console.log.bind(console);\n\t    logFn.apply(self, args);\n\t  }\n\n\t  debug.namespace = namespace;\n\t  debug.enabled = exports.enabled(namespace);\n\t  debug.useColors = exports.useColors();\n\t  debug.color = selectColor(namespace);\n\n\t  // env-specific initialization logic for debug instances\n\t  if ('function' === typeof exports.init) {\n\t    exports.init(debug);\n\t  }\n\n\t  return debug;\n\t}\n\n\t/**\n\t * Enables a debug mode by namespaces. This can include modes\n\t * separated by a colon and wildcards.\n\t *\n\t * @param {String} namespaces\n\t * @api public\n\t */\n\n\tfunction enable(namespaces) {\n\t  exports.save(namespaces);\n\n\t  exports.names = [];\n\t  exports.skips = [];\n\n\t  var split = (typeof namespaces === 'string' ? namespaces : '').split(/[\\s,]+/);\n\t  var len = split.length;\n\n\t  for (var i = 0; i < len; i++) {\n\t    if (!split[i]) continue; // ignore empty strings\n\t    namespaces = split[i].replace(/\\*/g, '.*?');\n\t    if (namespaces[0] === '-') {\n\t      exports.skips.push(new RegExp('^' + namespaces.substr(1) + '$'));\n\t    } else {\n\t      exports.names.push(new RegExp('^' + namespaces + '$'));\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * Disable debug output.\n\t *\n\t * @api public\n\t */\n\n\tfunction disable() {\n\t  exports.enable('');\n\t}\n\n\t/**\n\t * Returns true if the given mode name is enabled, false otherwise.\n\t *\n\t * @param {String} name\n\t * @return {Boolean}\n\t * @api public\n\t */\n\n\tfunction enabled(name) {\n\t  var i, len;\n\t  for (i = 0, len = exports.skips.length; i < len; i++) {\n\t    if (exports.skips[i].test(name)) {\n\t      return false;\n\t    }\n\t  }\n\t  for (i = 0, len = exports.names.length; i < len; i++) {\n\t    if (exports.names[i].test(name)) {\n\t      return true;\n\t    }\n\t  }\n\t  return false;\n\t}\n\n\t/**\n\t * Coerce `val`.\n\t *\n\t * @param {Mixed} val\n\t * @return {Mixed}\n\t * @api private\n\t */\n\n\tfunction coerce(val) {\n\t  if (val instanceof Error) return val.stack || val.message;\n\t  return val;\n\t}\n\n/***/ }),\n/* 459 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* eslint-disable guard-for-in */\n\t'use strict';\n\n\tvar repeating = __webpack_require__(615);\n\n\t// detect either spaces or tabs but not both to properly handle tabs\n\t// for indentation and spaces for alignment\n\tvar INDENT_RE = /^(?:( )+|\\t+)/;\n\n\tfunction getMostUsed(indents) {\n\t\tvar result = 0;\n\t\tvar maxUsed = 0;\n\t\tvar maxWeight = 0;\n\n\t\tfor (var n in indents) {\n\t\t\tvar indent = indents[n];\n\t\t\tvar u = indent[0];\n\t\t\tvar w = indent[1];\n\n\t\t\tif (u > maxUsed || u === maxUsed && w > maxWeight) {\n\t\t\t\tmaxUsed = u;\n\t\t\t\tmaxWeight = w;\n\t\t\t\tresult = Number(n);\n\t\t\t}\n\t\t}\n\n\t\treturn result;\n\t}\n\n\tmodule.exports = function (str) {\n\t\tif (typeof str !== 'string') {\n\t\t\tthrow new TypeError('Expected a string');\n\t\t}\n\n\t\t// used to see if tabs or spaces are the most used\n\t\tvar tabs = 0;\n\t\tvar spaces = 0;\n\n\t\t// remember the size of previous line's indentation\n\t\tvar prev = 0;\n\n\t\t// remember how many indents/unindents as occurred for a given size\n\t\t// and how much lines follow a given indentation\n\t\t//\n\t\t// indents = {\n\t\t//    3: [1, 0],\n\t\t//    4: [1, 5],\n\t\t//    5: [1, 0],\n\t\t//   12: [1, 0],\n\t\t// }\n\t\tvar indents = {};\n\n\t\t// pointer to the array of last used indent\n\t\tvar current;\n\n\t\t// whether the last action was an indent (opposed to an unindent)\n\t\tvar isIndent;\n\n\t\tstr.split(/\\n/g).forEach(function (line) {\n\t\t\tif (!line) {\n\t\t\t\t// ignore empty lines\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar indent;\n\t\t\tvar matches = line.match(INDENT_RE);\n\n\t\t\tif (!matches) {\n\t\t\t\tindent = 0;\n\t\t\t} else {\n\t\t\t\tindent = matches[0].length;\n\n\t\t\t\tif (matches[1]) {\n\t\t\t\t\tspaces++;\n\t\t\t\t} else {\n\t\t\t\t\ttabs++;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tvar diff = indent - prev;\n\t\t\tprev = indent;\n\n\t\t\tif (diff) {\n\t\t\t\t// an indent or unindent has been detected\n\n\t\t\t\tisIndent = diff > 0;\n\n\t\t\t\tcurrent = indents[isIndent ? diff : -diff];\n\n\t\t\t\tif (current) {\n\t\t\t\t\tcurrent[0]++;\n\t\t\t\t} else {\n\t\t\t\t\tcurrent = indents[diff] = [1, 0];\n\t\t\t\t}\n\t\t\t} else if (current) {\n\t\t\t\t// if the last action was an indent, increment the weight\n\t\t\t\tcurrent[1] += Number(isIndent);\n\t\t\t}\n\t\t});\n\n\t\tvar amount = getMostUsed(indents);\n\n\t\tvar type;\n\t\tvar actual;\n\t\tif (!amount) {\n\t\t\ttype = null;\n\t\t\tactual = '';\n\t\t} else if (spaces >= tabs) {\n\t\t\ttype = 'space';\n\t\t\tactual = repeating(' ', amount);\n\t\t} else {\n\t\t\ttype = 'tab';\n\t\t\tactual = repeating('\\t', amount);\n\t\t}\n\n\t\treturn {\n\t\t\tamount: amount,\n\t\t\ttype: type,\n\t\t\tindent: actual\n\t\t};\n\t};\n\n/***/ }),\n/* 460 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar matchOperatorsRe = /[|\\\\{}()[\\]^$+*?.]/g;\n\n\tmodule.exports = function (str) {\n\t\tif (typeof str !== 'string') {\n\t\t\tthrow new TypeError('Expected a string');\n\t\t}\n\n\t\treturn str.replace(matchOperatorsRe, '\\\\$&');\n\t};\n\n/***/ }),\n/* 461 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/*\n\t  Copyright (C) 2013 Yusuke Suzuki <utatane.tea@gmail.com>\n\n\t  Redistribution and use in source and binary forms, with or without\n\t  modification, are permitted provided that the following conditions are met:\n\n\t    * Redistributions of source code must retain the above copyright\n\t      notice, this list of conditions and the following disclaimer.\n\t    * Redistributions in binary form must reproduce the above copyright\n\t      notice, this list of conditions and the following disclaimer in the\n\t      documentation and/or other materials provided with the distribution.\n\n\t  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS'\n\t  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\t  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\t  ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\n\t  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n\t  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n\t  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n\t  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n\t  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t*/\n\n\t(function () {\n\t    'use strict';\n\n\t    function isExpression(node) {\n\t        if (node == null) {\n\t            return false;\n\t        }\n\t        switch (node.type) {\n\t            case 'ArrayExpression':\n\t            case 'AssignmentExpression':\n\t            case 'BinaryExpression':\n\t            case 'CallExpression':\n\t            case 'ConditionalExpression':\n\t            case 'FunctionExpression':\n\t            case 'Identifier':\n\t            case 'Literal':\n\t            case 'LogicalExpression':\n\t            case 'MemberExpression':\n\t            case 'NewExpression':\n\t            case 'ObjectExpression':\n\t            case 'SequenceExpression':\n\t            case 'ThisExpression':\n\t            case 'UnaryExpression':\n\t            case 'UpdateExpression':\n\t                return true;\n\t        }\n\t        return false;\n\t    }\n\n\t    function isIterationStatement(node) {\n\t        if (node == null) {\n\t            return false;\n\t        }\n\t        switch (node.type) {\n\t            case 'DoWhileStatement':\n\t            case 'ForInStatement':\n\t            case 'ForStatement':\n\t            case 'WhileStatement':\n\t                return true;\n\t        }\n\t        return false;\n\t    }\n\n\t    function isStatement(node) {\n\t        if (node == null) {\n\t            return false;\n\t        }\n\t        switch (node.type) {\n\t            case 'BlockStatement':\n\t            case 'BreakStatement':\n\t            case 'ContinueStatement':\n\t            case 'DebuggerStatement':\n\t            case 'DoWhileStatement':\n\t            case 'EmptyStatement':\n\t            case 'ExpressionStatement':\n\t            case 'ForInStatement':\n\t            case 'ForStatement':\n\t            case 'IfStatement':\n\t            case 'LabeledStatement':\n\t            case 'ReturnStatement':\n\t            case 'SwitchStatement':\n\t            case 'ThrowStatement':\n\t            case 'TryStatement':\n\t            case 'VariableDeclaration':\n\t            case 'WhileStatement':\n\t            case 'WithStatement':\n\t                return true;\n\t        }\n\t        return false;\n\t    }\n\n\t    function isSourceElement(node) {\n\t        return isStatement(node) || node != null && node.type === 'FunctionDeclaration';\n\t    }\n\n\t    function trailingStatement(node) {\n\t        switch (node.type) {\n\t            case 'IfStatement':\n\t                if (node.alternate != null) {\n\t                    return node.alternate;\n\t                }\n\t                return node.consequent;\n\n\t            case 'LabeledStatement':\n\t            case 'ForStatement':\n\t            case 'ForInStatement':\n\t            case 'WhileStatement':\n\t            case 'WithStatement':\n\t                return node.body;\n\t        }\n\t        return null;\n\t    }\n\n\t    function isProblematicIfStatement(node) {\n\t        var current;\n\n\t        if (node.type !== 'IfStatement') {\n\t            return false;\n\t        }\n\t        if (node.alternate == null) {\n\t            return false;\n\t        }\n\t        current = node.consequent;\n\t        do {\n\t            if (current.type === 'IfStatement') {\n\t                if (current.alternate == null) {\n\t                    return true;\n\t                }\n\t            }\n\t            current = trailingStatement(current);\n\t        } while (current);\n\n\t        return false;\n\t    }\n\n\t    module.exports = {\n\t        isExpression: isExpression,\n\t        isStatement: isStatement,\n\t        isIterationStatement: isIterationStatement,\n\t        isSourceElement: isSourceElement,\n\t        isProblematicIfStatement: isProblematicIfStatement,\n\n\t        trailingStatement: trailingStatement\n\t    };\n\t})();\n\t/* vim: set sw=4 ts=4 et tw=80 : */\n\n/***/ }),\n/* 462 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/*\n\t  Copyright (C) 2013 Yusuke Suzuki <utatane.tea@gmail.com>\n\n\t  Redistribution and use in source and binary forms, with or without\n\t  modification, are permitted provided that the following conditions are met:\n\n\t    * Redistributions of source code must retain the above copyright\n\t      notice, this list of conditions and the following disclaimer.\n\t    * Redistributions in binary form must reproduce the above copyright\n\t      notice, this list of conditions and the following disclaimer in the\n\t      documentation and/or other materials provided with the distribution.\n\n\t  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n\t  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\t  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\t  ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\n\t  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n\t  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n\t  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n\t  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n\t  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t*/\n\n\t(function () {\n\t    'use strict';\n\n\t    var code = __webpack_require__(240);\n\n\t    function isStrictModeReservedWordES6(id) {\n\t        switch (id) {\n\t            case 'implements':\n\t            case 'interface':\n\t            case 'package':\n\t            case 'private':\n\t            case 'protected':\n\t            case 'public':\n\t            case 'static':\n\t            case 'let':\n\t                return true;\n\t            default:\n\t                return false;\n\t        }\n\t    }\n\n\t    function isKeywordES5(id, strict) {\n\t        // yield should not be treated as keyword under non-strict mode.\n\t        if (!strict && id === 'yield') {\n\t            return false;\n\t        }\n\t        return isKeywordES6(id, strict);\n\t    }\n\n\t    function isKeywordES6(id, strict) {\n\t        if (strict && isStrictModeReservedWordES6(id)) {\n\t            return true;\n\t        }\n\n\t        switch (id.length) {\n\t            case 2:\n\t                return id === 'if' || id === 'in' || id === 'do';\n\t            case 3:\n\t                return id === 'var' || id === 'for' || id === 'new' || id === 'try';\n\t            case 4:\n\t                return id === 'this' || id === 'else' || id === 'case' || id === 'void' || id === 'with' || id === 'enum';\n\t            case 5:\n\t                return id === 'while' || id === 'break' || id === 'catch' || id === 'throw' || id === 'const' || id === 'yield' || id === 'class' || id === 'super';\n\t            case 6:\n\t                return id === 'return' || id === 'typeof' || id === 'delete' || id === 'switch' || id === 'export' || id === 'import';\n\t            case 7:\n\t                return id === 'default' || id === 'finally' || id === 'extends';\n\t            case 8:\n\t                return id === 'function' || id === 'continue' || id === 'debugger';\n\t            case 10:\n\t                return id === 'instanceof';\n\t            default:\n\t                return false;\n\t        }\n\t    }\n\n\t    function isReservedWordES5(id, strict) {\n\t        return id === 'null' || id === 'true' || id === 'false' || isKeywordES5(id, strict);\n\t    }\n\n\t    function isReservedWordES6(id, strict) {\n\t        return id === 'null' || id === 'true' || id === 'false' || isKeywordES6(id, strict);\n\t    }\n\n\t    function isRestrictedWord(id) {\n\t        return id === 'eval' || id === 'arguments';\n\t    }\n\n\t    function isIdentifierNameES5(id) {\n\t        var i, iz, ch;\n\n\t        if (id.length === 0) {\n\t            return false;\n\t        }\n\n\t        ch = id.charCodeAt(0);\n\t        if (!code.isIdentifierStartES5(ch)) {\n\t            return false;\n\t        }\n\n\t        for (i = 1, iz = id.length; i < iz; ++i) {\n\t            ch = id.charCodeAt(i);\n\t            if (!code.isIdentifierPartES5(ch)) {\n\t                return false;\n\t            }\n\t        }\n\t        return true;\n\t    }\n\n\t    function decodeUtf16(lead, trail) {\n\t        return (lead - 0xD800) * 0x400 + (trail - 0xDC00) + 0x10000;\n\t    }\n\n\t    function isIdentifierNameES6(id) {\n\t        var i, iz, ch, lowCh, check;\n\n\t        if (id.length === 0) {\n\t            return false;\n\t        }\n\n\t        check = code.isIdentifierStartES6;\n\t        for (i = 0, iz = id.length; i < iz; ++i) {\n\t            ch = id.charCodeAt(i);\n\t            if (0xD800 <= ch && ch <= 0xDBFF) {\n\t                ++i;\n\t                if (i >= iz) {\n\t                    return false;\n\t                }\n\t                lowCh = id.charCodeAt(i);\n\t                if (!(0xDC00 <= lowCh && lowCh <= 0xDFFF)) {\n\t                    return false;\n\t                }\n\t                ch = decodeUtf16(ch, lowCh);\n\t            }\n\t            if (!check(ch)) {\n\t                return false;\n\t            }\n\t            check = code.isIdentifierPartES6;\n\t        }\n\t        return true;\n\t    }\n\n\t    function isIdentifierES5(id, strict) {\n\t        return isIdentifierNameES5(id) && !isReservedWordES5(id, strict);\n\t    }\n\n\t    function isIdentifierES6(id, strict) {\n\t        return isIdentifierNameES6(id) && !isReservedWordES6(id, strict);\n\t    }\n\n\t    module.exports = {\n\t        isKeywordES5: isKeywordES5,\n\t        isKeywordES6: isKeywordES6,\n\t        isReservedWordES5: isReservedWordES5,\n\t        isReservedWordES6: isReservedWordES6,\n\t        isRestrictedWord: isRestrictedWord,\n\t        isIdentifierNameES5: isIdentifierNameES5,\n\t        isIdentifierNameES6: isIdentifierNameES6,\n\t        isIdentifierES5: isIdentifierES5,\n\t        isIdentifierES6: isIdentifierES6\n\t    };\n\t})();\n\t/* vim: set sw=4 ts=4 et tw=80 : */\n\n/***/ }),\n/* 463 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tmodule.exports = __webpack_require__(630);\n\n/***/ }),\n/* 464 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar ansiRegex = __webpack_require__(180);\n\tvar re = new RegExp(ansiRegex().source); // remove the `g` flag\n\tmodule.exports = re.test.bind(re);\n\n/***/ }),\n/* 465 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.read = function (buffer, offset, isLE, mLen, nBytes) {\n\t  var e, m;\n\t  var eLen = nBytes * 8 - mLen - 1;\n\t  var eMax = (1 << eLen) - 1;\n\t  var eBias = eMax >> 1;\n\t  var nBits = -7;\n\t  var i = isLE ? nBytes - 1 : 0;\n\t  var d = isLE ? -1 : 1;\n\t  var s = buffer[offset + i];\n\n\t  i += d;\n\n\t  e = s & (1 << -nBits) - 1;\n\t  s >>= -nBits;\n\t  nBits += eLen;\n\t  for (; nBits > 0; e = e * 256 + buffer[offset + i], i += d, nBits -= 8) {}\n\n\t  m = e & (1 << -nBits) - 1;\n\t  e >>= -nBits;\n\t  nBits += mLen;\n\t  for (; nBits > 0; m = m * 256 + buffer[offset + i], i += d, nBits -= 8) {}\n\n\t  if (e === 0) {\n\t    e = 1 - eBias;\n\t  } else if (e === eMax) {\n\t    return m ? NaN : (s ? -1 : 1) * Infinity;\n\t  } else {\n\t    m = m + Math.pow(2, mLen);\n\t    e = e - eBias;\n\t  }\n\t  return (s ? -1 : 1) * m * Math.pow(2, e - mLen);\n\t};\n\n\texports.write = function (buffer, value, offset, isLE, mLen, nBytes) {\n\t  var e, m, c;\n\t  var eLen = nBytes * 8 - mLen - 1;\n\t  var eMax = (1 << eLen) - 1;\n\t  var eBias = eMax >> 1;\n\t  var rt = mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0;\n\t  var i = isLE ? 0 : nBytes - 1;\n\t  var d = isLE ? 1 : -1;\n\t  var s = value < 0 || value === 0 && 1 / value < 0 ? 1 : 0;\n\n\t  value = Math.abs(value);\n\n\t  if (isNaN(value) || value === Infinity) {\n\t    m = isNaN(value) ? 1 : 0;\n\t    e = eMax;\n\t  } else {\n\t    e = Math.floor(Math.log(value) / Math.LN2);\n\t    if (value * (c = Math.pow(2, -e)) < 1) {\n\t      e--;\n\t      c *= 2;\n\t    }\n\t    if (e + eBias >= 1) {\n\t      value += rt / c;\n\t    } else {\n\t      value += rt * Math.pow(2, 1 - eBias);\n\t    }\n\t    if (value * c >= 2) {\n\t      e++;\n\t      c /= 2;\n\t    }\n\n\t    if (e + eBias >= eMax) {\n\t      m = 0;\n\t      e = eMax;\n\t    } else if (e + eBias >= 1) {\n\t      m = (value * c - 1) * Math.pow(2, mLen);\n\t      e = e + eBias;\n\t    } else {\n\t      m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen);\n\t      e = 0;\n\t    }\n\t  }\n\n\t  for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {}\n\n\t  e = e << mLen | m;\n\t  eLen += mLen;\n\t  for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {}\n\n\t  buffer[offset + i - d] |= s * 128;\n\t};\n\n/***/ }),\n/* 466 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-2015, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t */\n\n\t'use strict';\n\n\t/**\n\t * Use invariant() to assert state which your program assumes to be true.\n\t *\n\t * Provide sprintf-style format (only %s is supported) and arguments\n\t * to provide information about what broke and what you were\n\t * expecting.\n\t *\n\t * The invariant message will be stripped in production, but the invariant\n\t * will remain to ensure logic does not differ in production.\n\t */\n\n\tvar invariant = function invariant(condition, format, a, b, c, d, e, f) {\n\t  if (false) {\n\t    if (format === undefined) {\n\t      throw new Error('invariant requires an error message argument');\n\t    }\n\t  }\n\n\t  if (!condition) {\n\t    var error;\n\t    if (format === undefined) {\n\t      error = new Error('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.');\n\t    } else {\n\t      var args = [a, b, c, d, e, f];\n\t      var argIndex = 0;\n\t      error = new Error(format.replace(/%s/g, function () {\n\t        return args[argIndex++];\n\t      }));\n\t      error.name = 'Invariant Violation';\n\t    }\n\n\t    error.framesToPop = 1; // we don't care about invariant's own frame\n\t    throw error;\n\t  }\n\t};\n\n\tmodule.exports = invariant;\n\n/***/ }),\n/* 467 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar numberIsNan = __webpack_require__(603);\n\n\tmodule.exports = Number.isFinite || function (val) {\n\t\treturn !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity);\n\t};\n\n/***/ }),\n/* 468 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t// Copyright 2014, 2015, 2016, 2017 Simon Lydell\n\t// License: MIT. (See LICENSE.)\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\t// This regex comes from regex.coffee, and is inserted here by generate-index.js\n\t// (run `npm run build`).\n\texports.default = /((['\"])(?:(?!\\2|\\\\).|\\\\(?:\\r\\n|[\\s\\S]))*(\\2)?|`(?:[^`\\\\$]|\\\\[\\s\\S]|\\$(?!\\{)|\\$\\{(?:[^{}]|\\{[^}]*\\}?)*\\}?)*(`)?)|(\\/\\/.*)|(\\/\\*(?:[^*]|\\*(?!\\/))*(\\*\\/)?)|(\\/(?!\\*)(?:\\[(?:(?![\\]\\\\]).|\\\\.)*\\]|(?![\\/\\]\\\\]).|\\\\.)+\\/(?:(?!\\s*(?:\\b|[\\u0080-\\uFFFF$\\\\'\"~({]|[+\\-!](?!=)|\\.?\\d))|[gmiyu]{1,5}\\b(?![\\u0080-\\uFFFF$\\\\]|\\s*(?:[+\\-*%&|^<>!=?({]|\\/(?![\\/*])))))|(0[xX][\\da-fA-F]+|0[oO][0-7]+|0[bB][01]+|(?:\\d*\\.\\d+|\\d+\\.?)(?:[eE][+-]?\\d+)?)|((?!\\d)(?:(?!\\s)[$\\w\\u0080-\\uFFFF]|\\\\u[\\da-fA-F]{4}|\\\\u\\{[\\da-fA-F]+\\})+)|(--|\\+\\+|&&|\\|\\||=>|\\.{3}|(?:[+\\-\\/%&|^]|\\*{1,2}|<{1,2}|>{1,3}|!=?|={1,2})=?|[?~.,:;[\\](){}])|(\\s+)|(^$|[\\s\\S])/g;\n\n\texports.matchToToken = function (match) {\n\t  var token = { type: \"invalid\", value: match[0] };\n\t  if (match[1]) token.type = \"string\", token.closed = !!(match[3] || match[4]);else if (match[5]) token.type = \"comment\";else if (match[6]) token.type = \"comment\", token.closed = !!match[7];else if (match[8]) token.type = \"regex\";else if (match[9]) token.type = \"number\";else if (match[10]) token.type = \"name\";else if (match[11]) token.type = \"punctuator\";else if (match[12]) token.type = \"whitespace\";\n\t  return token;\n\t};\n\n/***/ }),\n/* 469 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module, global) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/*! https://mths.be/jsesc v1.3.0 by @mathias */\n\t;(function (root) {\n\n\t\t// Detect free variables `exports`\n\t\tvar freeExports = ( false ? 'undefined' : _typeof(exports)) == 'object' && exports;\n\n\t\t// Detect free variable `module`\n\t\tvar freeModule = ( false ? 'undefined' : _typeof(module)) == 'object' && module && module.exports == freeExports && module;\n\n\t\t// Detect free variable `global`, from Node.js or Browserified code,\n\t\t// and use it as `root`\n\t\tvar freeGlobal = (typeof global === 'undefined' ? 'undefined' : _typeof(global)) == 'object' && global;\n\t\tif (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal) {\n\t\t\troot = freeGlobal;\n\t\t}\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\tvar object = {};\n\t\tvar hasOwnProperty = object.hasOwnProperty;\n\t\tvar forOwn = function forOwn(object, callback) {\n\t\t\tvar key;\n\t\t\tfor (key in object) {\n\t\t\t\tif (hasOwnProperty.call(object, key)) {\n\t\t\t\t\tcallback(key, object[key]);\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\tvar extend = function extend(destination, source) {\n\t\t\tif (!source) {\n\t\t\t\treturn destination;\n\t\t\t}\n\t\t\tforOwn(source, function (key, value) {\n\t\t\t\tdestination[key] = value;\n\t\t\t});\n\t\t\treturn destination;\n\t\t};\n\n\t\tvar forEach = function forEach(array, callback) {\n\t\t\tvar length = array.length;\n\t\t\tvar index = -1;\n\t\t\twhile (++index < length) {\n\t\t\t\tcallback(array[index]);\n\t\t\t}\n\t\t};\n\n\t\tvar toString = object.toString;\n\t\tvar isArray = function isArray(value) {\n\t\t\treturn toString.call(value) == '[object Array]';\n\t\t};\n\t\tvar isObject = function isObject(value) {\n\t\t\t// This is a very simple check, but it’s good enough for what we need.\n\t\t\treturn toString.call(value) == '[object Object]';\n\t\t};\n\t\tvar isString = function isString(value) {\n\t\t\treturn typeof value == 'string' || toString.call(value) == '[object String]';\n\t\t};\n\t\tvar isNumber = function isNumber(value) {\n\t\t\treturn typeof value == 'number' || toString.call(value) == '[object Number]';\n\t\t};\n\t\tvar isFunction = function isFunction(value) {\n\t\t\t// In a perfect world, the `typeof` check would be sufficient. However,\n\t\t\t// in Chrome 1–12, `typeof /x/ == 'object'`, and in IE 6–8\n\t\t\t// `typeof alert == 'object'` and similar for other host objects.\n\t\t\treturn typeof value == 'function' || toString.call(value) == '[object Function]';\n\t\t};\n\t\tvar isMap = function isMap(value) {\n\t\t\treturn toString.call(value) == '[object Map]';\n\t\t};\n\t\tvar isSet = function isSet(value) {\n\t\t\treturn toString.call(value) == '[object Set]';\n\t\t};\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\t// https://mathiasbynens.be/notes/javascript-escapes#single\n\t\tvar singleEscapes = {\n\t\t\t'\"': '\\\\\"',\n\t\t\t'\\'': '\\\\\\'',\n\t\t\t'\\\\': '\\\\\\\\',\n\t\t\t'\\b': '\\\\b',\n\t\t\t'\\f': '\\\\f',\n\t\t\t'\\n': '\\\\n',\n\t\t\t'\\r': '\\\\r',\n\t\t\t'\\t': '\\\\t'\n\t\t\t// `\\v` is omitted intentionally, because in IE < 9, '\\v' == 'v'.\n\t\t\t// '\\v': '\\\\x0B'\n\t\t};\n\t\tvar regexSingleEscape = /[\"'\\\\\\b\\f\\n\\r\\t]/;\n\n\t\tvar regexDigit = /[0-9]/;\n\t\tvar regexWhitelist = /[ !#-&\\(-\\[\\]-~]/;\n\n\t\tvar jsesc = function jsesc(argument, options) {\n\t\t\t// Handle options\n\t\t\tvar defaults = {\n\t\t\t\t'escapeEverything': false,\n\t\t\t\t'escapeEtago': false,\n\t\t\t\t'quotes': 'single',\n\t\t\t\t'wrap': false,\n\t\t\t\t'es6': false,\n\t\t\t\t'json': false,\n\t\t\t\t'compact': true,\n\t\t\t\t'lowercaseHex': false,\n\t\t\t\t'numbers': 'decimal',\n\t\t\t\t'indent': '\\t',\n\t\t\t\t'__indent__': '',\n\t\t\t\t'__inline1__': false,\n\t\t\t\t'__inline2__': false\n\t\t\t};\n\t\t\tvar json = options && options.json;\n\t\t\tif (json) {\n\t\t\t\tdefaults.quotes = 'double';\n\t\t\t\tdefaults.wrap = true;\n\t\t\t}\n\t\t\toptions = extend(defaults, options);\n\t\t\tif (options.quotes != 'single' && options.quotes != 'double') {\n\t\t\t\toptions.quotes = 'single';\n\t\t\t}\n\t\t\tvar quote = options.quotes == 'double' ? '\"' : '\\'';\n\t\t\tvar compact = options.compact;\n\t\t\tvar indent = options.indent;\n\t\t\tvar lowercaseHex = options.lowercaseHex;\n\t\t\tvar oldIndent = '';\n\t\t\tvar inline1 = options.__inline1__;\n\t\t\tvar inline2 = options.__inline2__;\n\t\t\tvar newLine = compact ? '' : '\\n';\n\t\t\tvar result;\n\t\t\tvar isEmpty = true;\n\t\t\tvar useBinNumbers = options.numbers == 'binary';\n\t\t\tvar useOctNumbers = options.numbers == 'octal';\n\t\t\tvar useDecNumbers = options.numbers == 'decimal';\n\t\t\tvar useHexNumbers = options.numbers == 'hexadecimal';\n\n\t\t\tif (json && argument && isFunction(argument.toJSON)) {\n\t\t\t\targument = argument.toJSON();\n\t\t\t}\n\n\t\t\tif (!isString(argument)) {\n\t\t\t\tif (isMap(argument)) {\n\t\t\t\t\tif (argument.size == 0) {\n\t\t\t\t\t\treturn 'new Map()';\n\t\t\t\t\t}\n\t\t\t\t\tif (!compact) {\n\t\t\t\t\t\toptions.__inline1__ = true;\n\t\t\t\t\t}\n\t\t\t\t\treturn 'new Map(' + jsesc(Array.from(argument), options) + ')';\n\t\t\t\t}\n\t\t\t\tif (isSet(argument)) {\n\t\t\t\t\tif (argument.size == 0) {\n\t\t\t\t\t\treturn 'new Set()';\n\t\t\t\t\t}\n\t\t\t\t\treturn 'new Set(' + jsesc(Array.from(argument), options) + ')';\n\t\t\t\t}\n\t\t\t\tif (isArray(argument)) {\n\t\t\t\t\tresult = [];\n\t\t\t\t\toptions.wrap = true;\n\t\t\t\t\tif (inline1) {\n\t\t\t\t\t\toptions.__inline1__ = false;\n\t\t\t\t\t\toptions.__inline2__ = true;\n\t\t\t\t\t} else {\n\t\t\t\t\t\toldIndent = options.__indent__;\n\t\t\t\t\t\tindent += oldIndent;\n\t\t\t\t\t\toptions.__indent__ = indent;\n\t\t\t\t\t}\n\t\t\t\t\tforEach(argument, function (value) {\n\t\t\t\t\t\tisEmpty = false;\n\t\t\t\t\t\tif (inline2) {\n\t\t\t\t\t\t\toptions.__inline2__ = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tresult.push((compact || inline2 ? '' : indent) + jsesc(value, options));\n\t\t\t\t\t});\n\t\t\t\t\tif (isEmpty) {\n\t\t\t\t\t\treturn '[]';\n\t\t\t\t\t}\n\t\t\t\t\tif (inline2) {\n\t\t\t\t\t\treturn '[' + result.join(', ') + ']';\n\t\t\t\t\t}\n\t\t\t\t\treturn '[' + newLine + result.join(',' + newLine) + newLine + (compact ? '' : oldIndent) + ']';\n\t\t\t\t} else if (isNumber(argument)) {\n\t\t\t\t\tif (json) {\n\t\t\t\t\t\t// Some number values (e.g. `Infinity`) cannot be represented in JSON.\n\t\t\t\t\t\treturn JSON.stringify(argument);\n\t\t\t\t\t}\n\t\t\t\t\tif (useDecNumbers) {\n\t\t\t\t\t\treturn String(argument);\n\t\t\t\t\t}\n\t\t\t\t\tif (useHexNumbers) {\n\t\t\t\t\t\tvar tmp = argument.toString(16);\n\t\t\t\t\t\tif (!lowercaseHex) {\n\t\t\t\t\t\t\ttmp = tmp.toUpperCase();\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn '0x' + tmp;\n\t\t\t\t\t}\n\t\t\t\t\tif (useBinNumbers) {\n\t\t\t\t\t\treturn '0b' + argument.toString(2);\n\t\t\t\t\t}\n\t\t\t\t\tif (useOctNumbers) {\n\t\t\t\t\t\treturn '0o' + argument.toString(8);\n\t\t\t\t\t}\n\t\t\t\t} else if (!isObject(argument)) {\n\t\t\t\t\tif (json) {\n\t\t\t\t\t\t// For some values (e.g. `undefined`, `function` objects),\n\t\t\t\t\t\t// `JSON.stringify(value)` returns `undefined` (which isn’t valid\n\t\t\t\t\t\t// JSON) instead of `'null'`.\n\t\t\t\t\t\treturn JSON.stringify(argument) || 'null';\n\t\t\t\t\t}\n\t\t\t\t\treturn String(argument);\n\t\t\t\t} else {\n\t\t\t\t\t// it’s an object\n\t\t\t\t\tresult = [];\n\t\t\t\t\toptions.wrap = true;\n\t\t\t\t\toldIndent = options.__indent__;\n\t\t\t\t\tindent += oldIndent;\n\t\t\t\t\toptions.__indent__ = indent;\n\t\t\t\t\tforOwn(argument, function (key, value) {\n\t\t\t\t\t\tisEmpty = false;\n\t\t\t\t\t\tresult.push((compact ? '' : indent) + jsesc(key, options) + ':' + (compact ? '' : ' ') + jsesc(value, options));\n\t\t\t\t\t});\n\t\t\t\t\tif (isEmpty) {\n\t\t\t\t\t\treturn '{}';\n\t\t\t\t\t}\n\t\t\t\t\treturn '{' + newLine + result.join(',' + newLine) + newLine + (compact ? '' : oldIndent) + '}';\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tvar string = argument;\n\t\t\t// Loop over each code unit in the string and escape it\n\t\t\tvar index = -1;\n\t\t\tvar length = string.length;\n\t\t\tvar first;\n\t\t\tvar second;\n\t\t\tvar codePoint;\n\t\t\tresult = '';\n\t\t\twhile (++index < length) {\n\t\t\t\tvar character = string.charAt(index);\n\t\t\t\tif (options.es6) {\n\t\t\t\t\tfirst = string.charCodeAt(index);\n\t\t\t\t\tif ( // check if it’s the start of a surrogate pair\n\t\t\t\t\tfirst >= 0xD800 && first <= 0xDBFF && // high surrogate\n\t\t\t\t\tlength > index + 1 // there is a next code unit\n\t\t\t\t\t) {\n\t\t\t\t\t\t\tsecond = string.charCodeAt(index + 1);\n\t\t\t\t\t\t\tif (second >= 0xDC00 && second <= 0xDFFF) {\n\t\t\t\t\t\t\t\t// low surrogate\n\t\t\t\t\t\t\t\t// https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n\t\t\t\t\t\t\t\tcodePoint = (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000;\n\t\t\t\t\t\t\t\tvar hexadecimal = codePoint.toString(16);\n\t\t\t\t\t\t\t\tif (!lowercaseHex) {\n\t\t\t\t\t\t\t\t\thexadecimal = hexadecimal.toUpperCase();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tresult += '\\\\u{' + hexadecimal + '}';\n\t\t\t\t\t\t\t\tindex++;\n\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (!options.escapeEverything) {\n\t\t\t\t\tif (regexWhitelist.test(character)) {\n\t\t\t\t\t\t// It’s a printable ASCII character that is not `\"`, `'` or `\\`,\n\t\t\t\t\t\t// so don’t escape it.\n\t\t\t\t\t\tresult += character;\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\tif (character == '\"') {\n\t\t\t\t\t\tresult += quote == character ? '\\\\\"' : character;\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\tif (character == '\\'') {\n\t\t\t\t\t\tresult += quote == character ? '\\\\\\'' : character;\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (character == '\\0' && !json && !regexDigit.test(string.charAt(index + 1))) {\n\t\t\t\t\tresult += '\\\\0';\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tif (regexSingleEscape.test(character)) {\n\t\t\t\t\t// no need for a `hasOwnProperty` check here\n\t\t\t\t\tresult += singleEscapes[character];\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tvar charCode = character.charCodeAt(0);\n\t\t\t\tvar hexadecimal = charCode.toString(16);\n\t\t\t\tif (!lowercaseHex) {\n\t\t\t\t\thexadecimal = hexadecimal.toUpperCase();\n\t\t\t\t}\n\t\t\t\tvar longhand = hexadecimal.length > 2 || json;\n\t\t\t\tvar escaped = '\\\\' + (longhand ? 'u' : 'x') + ('0000' + hexadecimal).slice(longhand ? -4 : -2);\n\t\t\t\tresult += escaped;\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tif (options.wrap) {\n\t\t\t\tresult = quote + result + quote;\n\t\t\t}\n\t\t\tif (options.escapeEtago) {\n\t\t\t\t// https://mathiasbynens.be/notes/etago\n\t\t\t\treturn result.replace(/<\\/(script|style)/gi, '<\\\\/$1');\n\t\t\t}\n\t\t\treturn result;\n\t\t};\n\n\t\tjsesc.version = '1.3.0';\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\t// Some AMD build optimizers, like r.js, check for specific condition patterns\n\t\t// like the following:\n\t\tif (\"function\" == 'function' && _typeof(__webpack_require__(49)) == 'object' && __webpack_require__(49)) {\n\t\t\t!(__WEBPACK_AMD_DEFINE_RESULT__ = function () {\n\t\t\t\treturn jsesc;\n\t\t\t}.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n\t\t} else if (freeExports && !freeExports.nodeType) {\n\t\t\tif (freeModule) {\n\t\t\t\t// in Node.js or RingoJS v0.8.0+\n\t\t\t\tfreeModule.exports = jsesc;\n\t\t\t} else {\n\t\t\t\t// in Narwhal or RingoJS v0.7.0-\n\t\t\t\tfreeExports.jsesc = jsesc;\n\t\t\t}\n\t\t} else {\n\t\t\t// in Rhino or a web browser\n\t\t\troot.jsesc = jsesc;\n\t\t}\n\t})(undefined);\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module), (function() { return this; }())))\n\n/***/ }),\n/* 470 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t// json5.js\n\t// Modern JSON. See README.md for details.\n\t//\n\t// This file is based directly off of Douglas Crockford's json_parse.js:\n\t// https://github.com/douglascrockford/JSON-js/blob/master/json_parse.js\n\n\tvar JSON5 = ( false ? \"undefined\" : _typeof(exports)) === 'object' ? exports : {};\n\n\tJSON5.parse = function () {\n\t    \"use strict\";\n\n\t    // This is a function that can parse a JSON5 text, producing a JavaScript\n\t    // data structure. It is a simple, recursive descent parser. It does not use\n\t    // eval or regular expressions, so it can be used as a model for implementing\n\t    // a JSON5 parser in other languages.\n\n\t    // We are defining the function inside of another function to avoid creating\n\t    // global variables.\n\n\t    var at,\n\t        // The index of the current character\n\t    lineNumber,\n\t        // The current line number\n\t    columnNumber,\n\t        // The current column number\n\t    ch,\n\t        // The current character\n\t    escapee = {\n\t        \"'\": \"'\",\n\t        '\"': '\"',\n\t        '\\\\': '\\\\',\n\t        '/': '/',\n\t        '\\n': '', // Replace escaped newlines in strings w/ empty string\n\t        b: '\\b',\n\t        f: '\\f',\n\t        n: '\\n',\n\t        r: '\\r',\n\t        t: '\\t'\n\t    },\n\t        ws = [' ', '\\t', '\\r', '\\n', '\\v', '\\f', '\\xA0', \"\\uFEFF\"],\n\t        text,\n\t        renderChar = function renderChar(chr) {\n\t        return chr === '' ? 'EOF' : \"'\" + chr + \"'\";\n\t    },\n\t        error = function error(m) {\n\n\t        // Call error when something is wrong.\n\n\t        var error = new SyntaxError();\n\t        // beginning of message suffix to agree with that provided by Gecko - see https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse\n\t        error.message = m + \" at line \" + lineNumber + \" column \" + columnNumber + \" of the JSON5 data. Still to read: \" + JSON.stringify(text.substring(at - 1, at + 19));\n\t        error.at = at;\n\t        // These two property names have been chosen to agree with the ones in Gecko, the only popular\n\t        // environment which seems to supply this info on JSON.parse\n\t        error.lineNumber = lineNumber;\n\t        error.columnNumber = columnNumber;\n\t        throw error;\n\t    },\n\t        next = function next(c) {\n\n\t        // If a c parameter is provided, verify that it matches the current character.\n\n\t        if (c && c !== ch) {\n\t            error(\"Expected \" + renderChar(c) + \" instead of \" + renderChar(ch));\n\t        }\n\n\t        // Get the next character. When there are no more characters,\n\t        // return the empty string.\n\n\t        ch = text.charAt(at);\n\t        at++;\n\t        columnNumber++;\n\t        if (ch === '\\n' || ch === '\\r' && peek() !== '\\n') {\n\t            lineNumber++;\n\t            columnNumber = 0;\n\t        }\n\t        return ch;\n\t    },\n\t        peek = function peek() {\n\n\t        // Get the next character without consuming it or\n\t        // assigning it to the ch varaible.\n\n\t        return text.charAt(at);\n\t    },\n\t        identifier = function identifier() {\n\n\t        // Parse an identifier. Normally, reserved words are disallowed here, but we\n\t        // only use this for unquoted object keys, where reserved words are allowed,\n\t        // so we don't check for those here. References:\n\t        // - http://es5.github.com/#x7.6\n\t        // - https://developer.mozilla.org/en/Core_JavaScript_1.5_Guide/Core_Language_Features#Variables\n\t        // - http://docstore.mik.ua/orelly/webprog/jscript/ch02_07.htm\n\t        // TODO Identifiers can have Unicode \"letters\" in them; add support for those.\n\n\t        var key = ch;\n\n\t        // Identifiers must start with a letter, _ or $.\n\t        if (ch !== '_' && ch !== '$' && (ch < 'a' || ch > 'z') && (ch < 'A' || ch > 'Z')) {\n\t            error(\"Bad identifier as unquoted key\");\n\t        }\n\n\t        // Subsequent characters can contain digits.\n\t        while (next() && (ch === '_' || ch === '$' || ch >= 'a' && ch <= 'z' || ch >= 'A' && ch <= 'Z' || ch >= '0' && ch <= '9')) {\n\t            key += ch;\n\t        }\n\n\t        return key;\n\t    },\n\t        number = function number() {\n\n\t        // Parse a number value.\n\n\t        var number,\n\t            sign = '',\n\t            string = '',\n\t            base = 10;\n\n\t        if (ch === '-' || ch === '+') {\n\t            sign = ch;\n\t            next(ch);\n\t        }\n\n\t        // support for Infinity (could tweak to allow other words):\n\t        if (ch === 'I') {\n\t            number = word();\n\t            if (typeof number !== 'number' || isNaN(number)) {\n\t                error('Unexpected word for number');\n\t            }\n\t            return sign === '-' ? -number : number;\n\t        }\n\n\t        // support for NaN\n\t        if (ch === 'N') {\n\t            number = word();\n\t            if (!isNaN(number)) {\n\t                error('expected word to be NaN');\n\t            }\n\t            // ignore sign as -NaN also is NaN\n\t            return number;\n\t        }\n\n\t        if (ch === '0') {\n\t            string += ch;\n\t            next();\n\t            if (ch === 'x' || ch === 'X') {\n\t                string += ch;\n\t                next();\n\t                base = 16;\n\t            } else if (ch >= '0' && ch <= '9') {\n\t                error('Octal literal');\n\t            }\n\t        }\n\n\t        switch (base) {\n\t            case 10:\n\t                while (ch >= '0' && ch <= '9') {\n\t                    string += ch;\n\t                    next();\n\t                }\n\t                if (ch === '.') {\n\t                    string += '.';\n\t                    while (next() && ch >= '0' && ch <= '9') {\n\t                        string += ch;\n\t                    }\n\t                }\n\t                if (ch === 'e' || ch === 'E') {\n\t                    string += ch;\n\t                    next();\n\t                    if (ch === '-' || ch === '+') {\n\t                        string += ch;\n\t                        next();\n\t                    }\n\t                    while (ch >= '0' && ch <= '9') {\n\t                        string += ch;\n\t                        next();\n\t                    }\n\t                }\n\t                break;\n\t            case 16:\n\t                while (ch >= '0' && ch <= '9' || ch >= 'A' && ch <= 'F' || ch >= 'a' && ch <= 'f') {\n\t                    string += ch;\n\t                    next();\n\t                }\n\t                break;\n\t        }\n\n\t        if (sign === '-') {\n\t            number = -string;\n\t        } else {\n\t            number = +string;\n\t        }\n\n\t        if (!isFinite(number)) {\n\t            error(\"Bad number\");\n\t        } else {\n\t            return number;\n\t        }\n\t    },\n\t        string = function string() {\n\n\t        // Parse a string value.\n\n\t        var hex,\n\t            i,\n\t            string = '',\n\t            delim,\n\t            // double quote or single quote\n\t        uffff;\n\n\t        // When parsing for string values, we must look for ' or \" and \\ characters.\n\n\t        if (ch === '\"' || ch === \"'\") {\n\t            delim = ch;\n\t            while (next()) {\n\t                if (ch === delim) {\n\t                    next();\n\t                    return string;\n\t                } else if (ch === '\\\\') {\n\t                    next();\n\t                    if (ch === 'u') {\n\t                        uffff = 0;\n\t                        for (i = 0; i < 4; i += 1) {\n\t                            hex = parseInt(next(), 16);\n\t                            if (!isFinite(hex)) {\n\t                                break;\n\t                            }\n\t                            uffff = uffff * 16 + hex;\n\t                        }\n\t                        string += String.fromCharCode(uffff);\n\t                    } else if (ch === '\\r') {\n\t                        if (peek() === '\\n') {\n\t                            next();\n\t                        }\n\t                    } else if (typeof escapee[ch] === 'string') {\n\t                        string += escapee[ch];\n\t                    } else {\n\t                        break;\n\t                    }\n\t                } else if (ch === '\\n') {\n\t                    // unescaped newlines are invalid; see:\n\t                    // https://github.com/aseemk/json5/issues/24\n\t                    // TODO this feels special-cased; are there other\n\t                    // invalid unescaped chars?\n\t                    break;\n\t                } else {\n\t                    string += ch;\n\t                }\n\t            }\n\t        }\n\t        error(\"Bad string\");\n\t    },\n\t        inlineComment = function inlineComment() {\n\n\t        // Skip an inline comment, assuming this is one. The current character should\n\t        // be the second / character in the // pair that begins this inline comment.\n\t        // To finish the inline comment, we look for a newline or the end of the text.\n\n\t        if (ch !== '/') {\n\t            error(\"Not an inline comment\");\n\t        }\n\n\t        do {\n\t            next();\n\t            if (ch === '\\n' || ch === '\\r') {\n\t                next();\n\t                return;\n\t            }\n\t        } while (ch);\n\t    },\n\t        blockComment = function blockComment() {\n\n\t        // Skip a block comment, assuming this is one. The current character should be\n\t        // the * character in the /* pair that begins this block comment.\n\t        // To finish the block comment, we look for an ending */ pair of characters,\n\t        // but we also watch for the end of text before the comment is terminated.\n\n\t        if (ch !== '*') {\n\t            error(\"Not a block comment\");\n\t        }\n\n\t        do {\n\t            next();\n\t            while (ch === '*') {\n\t                next('*');\n\t                if (ch === '/') {\n\t                    next('/');\n\t                    return;\n\t                }\n\t            }\n\t        } while (ch);\n\n\t        error(\"Unterminated block comment\");\n\t    },\n\t        comment = function comment() {\n\n\t        // Skip a comment, whether inline or block-level, assuming this is one.\n\t        // Comments always begin with a / character.\n\n\t        if (ch !== '/') {\n\t            error(\"Not a comment\");\n\t        }\n\n\t        next('/');\n\n\t        if (ch === '/') {\n\t            inlineComment();\n\t        } else if (ch === '*') {\n\t            blockComment();\n\t        } else {\n\t            error(\"Unrecognized comment\");\n\t        }\n\t    },\n\t        white = function white() {\n\n\t        // Skip whitespace and comments.\n\t        // Note that we're detecting comments by only a single / character.\n\t        // This works since regular expressions are not valid JSON(5), but this will\n\t        // break if there are other valid values that begin with a / character!\n\n\t        while (ch) {\n\t            if (ch === '/') {\n\t                comment();\n\t            } else if (ws.indexOf(ch) >= 0) {\n\t                next();\n\t            } else {\n\t                return;\n\t            }\n\t        }\n\t    },\n\t        word = function word() {\n\n\t        // true, false, or null.\n\n\t        switch (ch) {\n\t            case 't':\n\t                next('t');\n\t                next('r');\n\t                next('u');\n\t                next('e');\n\t                return true;\n\t            case 'f':\n\t                next('f');\n\t                next('a');\n\t                next('l');\n\t                next('s');\n\t                next('e');\n\t                return false;\n\t            case 'n':\n\t                next('n');\n\t                next('u');\n\t                next('l');\n\t                next('l');\n\t                return null;\n\t            case 'I':\n\t                next('I');\n\t                next('n');\n\t                next('f');\n\t                next('i');\n\t                next('n');\n\t                next('i');\n\t                next('t');\n\t                next('y');\n\t                return Infinity;\n\t            case 'N':\n\t                next('N');\n\t                next('a');\n\t                next('N');\n\t                return NaN;\n\t        }\n\t        error(\"Unexpected \" + renderChar(ch));\n\t    },\n\t        value,\n\t        // Place holder for the value function.\n\n\t    array = function array() {\n\n\t        // Parse an array value.\n\n\t        var array = [];\n\n\t        if (ch === '[') {\n\t            next('[');\n\t            white();\n\t            while (ch) {\n\t                if (ch === ']') {\n\t                    next(']');\n\t                    return array; // Potentially empty array\n\t                }\n\t                // ES5 allows omitting elements in arrays, e.g. [,] and\n\t                // [,null]. We don't allow this in JSON5.\n\t                if (ch === ',') {\n\t                    error(\"Missing array element\");\n\t                } else {\n\t                    array.push(value());\n\t                }\n\t                white();\n\t                // If there's no comma after this value, this needs to\n\t                // be the end of the array.\n\t                if (ch !== ',') {\n\t                    next(']');\n\t                    return array;\n\t                }\n\t                next(',');\n\t                white();\n\t            }\n\t        }\n\t        error(\"Bad array\");\n\t    },\n\t        object = function object() {\n\n\t        // Parse an object value.\n\n\t        var key,\n\t            object = {};\n\n\t        if (ch === '{') {\n\t            next('{');\n\t            white();\n\t            while (ch) {\n\t                if (ch === '}') {\n\t                    next('}');\n\t                    return object; // Potentially empty object\n\t                }\n\n\t                // Keys can be unquoted. If they are, they need to be\n\t                // valid JS identifiers.\n\t                if (ch === '\"' || ch === \"'\") {\n\t                    key = string();\n\t                } else {\n\t                    key = identifier();\n\t                }\n\n\t                white();\n\t                next(':');\n\t                object[key] = value();\n\t                white();\n\t                // If there's no comma after this pair, this needs to be\n\t                // the end of the object.\n\t                if (ch !== ',') {\n\t                    next('}');\n\t                    return object;\n\t                }\n\t                next(',');\n\t                white();\n\t            }\n\t        }\n\t        error(\"Bad object\");\n\t    };\n\n\t    value = function value() {\n\n\t        // Parse a JSON value. It could be an object, an array, a string, a number,\n\t        // or a word.\n\n\t        white();\n\t        switch (ch) {\n\t            case '{':\n\t                return object();\n\t            case '[':\n\t                return array();\n\t            case '\"':\n\t            case \"'\":\n\t                return string();\n\t            case '-':\n\t            case '+':\n\t            case '.':\n\t                return number();\n\t            default:\n\t                return ch >= '0' && ch <= '9' ? number() : word();\n\t        }\n\t    };\n\n\t    // Return the json_parse function. It will have access to all of the above\n\t    // functions and variables.\n\n\t    return function (source, reviver) {\n\t        var result;\n\n\t        text = String(source);\n\t        at = 0;\n\t        lineNumber = 1;\n\t        columnNumber = 1;\n\t        ch = ' ';\n\t        result = value();\n\t        white();\n\t        if (ch) {\n\t            error(\"Syntax error\");\n\t        }\n\n\t        // If there is a reviver function, we recursively walk the new structure,\n\t        // passing each name/value pair to the reviver function for possible\n\t        // transformation, starting with a temporary root object that holds the result\n\t        // in an empty key. If there is not a reviver function, we simply return the\n\t        // result.\n\n\t        return typeof reviver === 'function' ? function walk(holder, key) {\n\t            var k,\n\t                v,\n\t                value = holder[key];\n\t            if (value && (typeof value === \"undefined\" ? \"undefined\" : _typeof(value)) === 'object') {\n\t                for (k in value) {\n\t                    if (Object.prototype.hasOwnProperty.call(value, k)) {\n\t                        v = walk(value, k);\n\t                        if (v !== undefined) {\n\t                            value[k] = v;\n\t                        } else {\n\t                            delete value[k];\n\t                        }\n\t                    }\n\t                }\n\t            }\n\t            return reviver.call(holder, key, value);\n\t        }({ '': result }, '') : result;\n\t    };\n\t}();\n\n\t// JSON5 stringify will not quote keys where appropriate\n\tJSON5.stringify = function (obj, replacer, space) {\n\t    if (replacer && typeof replacer !== \"function\" && !isArray(replacer)) {\n\t        throw new Error('Replacer must be a function or an array');\n\t    }\n\t    var getReplacedValueOrUndefined = function getReplacedValueOrUndefined(holder, key, isTopLevel) {\n\t        var value = holder[key];\n\n\t        // Replace the value with its toJSON value first, if possible\n\t        if (value && value.toJSON && typeof value.toJSON === \"function\") {\n\t            value = value.toJSON();\n\t        }\n\n\t        // If the user-supplied replacer if a function, call it. If it's an array, check objects' string keys for\n\t        // presence in the array (removing the key/value pair from the resulting JSON if the key is missing).\n\t        if (typeof replacer === \"function\") {\n\t            return replacer.call(holder, key, value);\n\t        } else if (replacer) {\n\t            if (isTopLevel || isArray(holder) || replacer.indexOf(key) >= 0) {\n\t                return value;\n\t            } else {\n\t                return undefined;\n\t            }\n\t        } else {\n\t            return value;\n\t        }\n\t    };\n\n\t    function isWordChar(c) {\n\t        return c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z' || c >= '0' && c <= '9' || c === '_' || c === '$';\n\t    }\n\n\t    function isWordStart(c) {\n\t        return c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z' || c === '_' || c === '$';\n\t    }\n\n\t    function isWord(key) {\n\t        if (typeof key !== 'string') {\n\t            return false;\n\t        }\n\t        if (!isWordStart(key[0])) {\n\t            return false;\n\t        }\n\t        var i = 1,\n\t            length = key.length;\n\t        while (i < length) {\n\t            if (!isWordChar(key[i])) {\n\t                return false;\n\t            }\n\t            i++;\n\t        }\n\t        return true;\n\t    }\n\n\t    // export for use in tests\n\t    JSON5.isWord = isWord;\n\n\t    // polyfills\n\t    function isArray(obj) {\n\t        if (Array.isArray) {\n\t            return Array.isArray(obj);\n\t        } else {\n\t            return Object.prototype.toString.call(obj) === '[object Array]';\n\t        }\n\t    }\n\n\t    function isDate(obj) {\n\t        return Object.prototype.toString.call(obj) === '[object Date]';\n\t    }\n\n\t    var objStack = [];\n\t    function checkForCircular(obj) {\n\t        for (var i = 0; i < objStack.length; i++) {\n\t            if (objStack[i] === obj) {\n\t                throw new TypeError(\"Converting circular structure to JSON\");\n\t            }\n\t        }\n\t    }\n\n\t    function makeIndent(str, num, noNewLine) {\n\t        if (!str) {\n\t            return \"\";\n\t        }\n\t        // indentation no more than 10 chars\n\t        if (str.length > 10) {\n\t            str = str.substring(0, 10);\n\t        }\n\n\t        var indent = noNewLine ? \"\" : \"\\n\";\n\t        for (var i = 0; i < num; i++) {\n\t            indent += str;\n\t        }\n\n\t        return indent;\n\t    }\n\n\t    var indentStr;\n\t    if (space) {\n\t        if (typeof space === \"string\") {\n\t            indentStr = space;\n\t        } else if (typeof space === \"number\" && space >= 0) {\n\t            indentStr = makeIndent(\" \", space, true);\n\t        } else {\n\t            // ignore space parameter\n\t        }\n\t    }\n\n\t    // Copied from Crokford's implementation of JSON\n\t    // See https://github.com/douglascrockford/JSON-js/blob/e39db4b7e6249f04a195e7dd0840e610cc9e941e/json2.js#L195\n\t    // Begin\n\t    var cx = /[\\u0000\\u00ad\\u0600-\\u0604\\u070f\\u17b4\\u17b5\\u200c-\\u200f\\u2028-\\u202f\\u2060-\\u206f\\ufeff\\ufff0-\\uffff]/g,\n\t        escapable = /[\\\\\\\"\\x00-\\x1f\\x7f-\\x9f\\u00ad\\u0600-\\u0604\\u070f\\u17b4\\u17b5\\u200c-\\u200f\\u2028-\\u202f\\u2060-\\u206f\\ufeff\\ufff0-\\uffff]/g,\n\t        meta = { // table of character substitutions\n\t        '\\b': '\\\\b',\n\t        '\\t': '\\\\t',\n\t        '\\n': '\\\\n',\n\t        '\\f': '\\\\f',\n\t        '\\r': '\\\\r',\n\t        '\"': '\\\\\"',\n\t        '\\\\': '\\\\\\\\'\n\t    };\n\t    function escapeString(string) {\n\n\t        // If the string contains no control characters, no quote characters, and no\n\t        // backslash characters, then we can safely slap some quotes around it.\n\t        // Otherwise we must also replace the offending characters with safe escape\n\t        // sequences.\n\t        escapable.lastIndex = 0;\n\t        return escapable.test(string) ? '\"' + string.replace(escapable, function (a) {\n\t            var c = meta[a];\n\t            return typeof c === 'string' ? c : \"\\\\u\" + ('0000' + a.charCodeAt(0).toString(16)).slice(-4);\n\t        }) + '\"' : '\"' + string + '\"';\n\t    }\n\t    // End\n\n\t    function internalStringify(holder, key, isTopLevel) {\n\t        var buffer, res;\n\n\t        // Replace the value, if necessary\n\t        var obj_part = getReplacedValueOrUndefined(holder, key, isTopLevel);\n\n\t        if (obj_part && !isDate(obj_part)) {\n\t            // unbox objects\n\t            // don't unbox dates, since will turn it into number\n\t            obj_part = obj_part.valueOf();\n\t        }\n\t        switch (typeof obj_part === \"undefined\" ? \"undefined\" : _typeof(obj_part)) {\n\t            case \"boolean\":\n\t                return obj_part.toString();\n\n\t            case \"number\":\n\t                if (isNaN(obj_part) || !isFinite(obj_part)) {\n\t                    return \"null\";\n\t                }\n\t                return obj_part.toString();\n\n\t            case \"string\":\n\t                return escapeString(obj_part.toString());\n\n\t            case \"object\":\n\t                if (obj_part === null) {\n\t                    return \"null\";\n\t                } else if (isArray(obj_part)) {\n\t                    checkForCircular(obj_part);\n\t                    buffer = \"[\";\n\t                    objStack.push(obj_part);\n\n\t                    for (var i = 0; i < obj_part.length; i++) {\n\t                        res = internalStringify(obj_part, i, false);\n\t                        buffer += makeIndent(indentStr, objStack.length);\n\t                        if (res === null || typeof res === \"undefined\") {\n\t                            buffer += \"null\";\n\t                        } else {\n\t                            buffer += res;\n\t                        }\n\t                        if (i < obj_part.length - 1) {\n\t                            buffer += \",\";\n\t                        } else if (indentStr) {\n\t                            buffer += \"\\n\";\n\t                        }\n\t                    }\n\t                    objStack.pop();\n\t                    if (obj_part.length) {\n\t                        buffer += makeIndent(indentStr, objStack.length, true);\n\t                    }\n\t                    buffer += \"]\";\n\t                } else {\n\t                    checkForCircular(obj_part);\n\t                    buffer = \"{\";\n\t                    var nonEmpty = false;\n\t                    objStack.push(obj_part);\n\t                    for (var prop in obj_part) {\n\t                        if (obj_part.hasOwnProperty(prop)) {\n\t                            var value = internalStringify(obj_part, prop, false);\n\t                            isTopLevel = false;\n\t                            if (typeof value !== \"undefined\" && value !== null) {\n\t                                buffer += makeIndent(indentStr, objStack.length);\n\t                                nonEmpty = true;\n\t                                key = isWord(prop) ? prop : escapeString(prop);\n\t                                buffer += key + \":\" + (indentStr ? ' ' : '') + value + \",\";\n\t                            }\n\t                        }\n\t                    }\n\t                    objStack.pop();\n\t                    if (nonEmpty) {\n\t                        buffer = buffer.substring(0, buffer.length - 1) + makeIndent(indentStr, objStack.length) + \"}\";\n\t                    } else {\n\t                        buffer = '{}';\n\t                    }\n\t                }\n\t                return buffer;\n\t            default:\n\t                // functions and undefined should be ignored\n\t                return undefined;\n\t        }\n\t    }\n\n\t    // special case...when undefined is used inside of\n\t    // a compound object/array, return null.\n\t    // but when top-level, return undefined\n\t    var topLevelHolder = { \"\": obj };\n\t    if (obj === undefined) {\n\t        return getReplacedValueOrUndefined(topLevelHolder, '', true);\n\t    }\n\t    return internalStringify(topLevelHolder, '', true);\n\t};\n\n/***/ }),\n/* 471 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar arr = [];\n\tvar charCodeCache = [];\n\n\tmodule.exports = function (a, b) {\n\t\tif (a === b) {\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar aLen = a.length;\n\t\tvar bLen = b.length;\n\n\t\tif (aLen === 0) {\n\t\t\treturn bLen;\n\t\t}\n\n\t\tif (bLen === 0) {\n\t\t\treturn aLen;\n\t\t}\n\n\t\tvar bCharCode;\n\t\tvar ret;\n\t\tvar tmp;\n\t\tvar tmp2;\n\t\tvar i = 0;\n\t\tvar j = 0;\n\n\t\twhile (i < aLen) {\n\t\t\tcharCodeCache[i] = a.charCodeAt(i);\n\t\t\tarr[i] = ++i;\n\t\t}\n\n\t\twhile (j < bLen) {\n\t\t\tbCharCode = b.charCodeAt(j);\n\t\t\ttmp = j++;\n\t\t\tret = j;\n\n\t\t\tfor (i = 0; i < aLen; i++) {\n\t\t\t\ttmp2 = bCharCode === charCodeCache[i] ? tmp : tmp + 1;\n\t\t\t\ttmp = arr[i];\n\t\t\t\tret = arr[i] = tmp > ret ? tmp2 > ret ? ret + 1 : tmp2 : tmp2 > tmp ? tmp + 1 : tmp2;\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t};\n\n/***/ }),\n/* 472 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38),\n\t    root = __webpack_require__(17);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar DataView = getNative(root, 'DataView');\n\n\tmodule.exports = DataView;\n\n/***/ }),\n/* 473 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar hashClear = __webpack_require__(536),\n\t    hashDelete = __webpack_require__(537),\n\t    hashGet = __webpack_require__(538),\n\t    hashHas = __webpack_require__(539),\n\t    hashSet = __webpack_require__(540);\n\n\t/**\n\t * Creates a hash object.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction Hash(entries) {\n\t    var index = -1,\n\t        length = entries == null ? 0 : entries.length;\n\n\t    this.clear();\n\t    while (++index < length) {\n\t        var entry = entries[index];\n\t        this.set(entry[0], entry[1]);\n\t    }\n\t}\n\n\t// Add methods to `Hash`.\n\tHash.prototype.clear = hashClear;\n\tHash.prototype['delete'] = hashDelete;\n\tHash.prototype.get = hashGet;\n\tHash.prototype.has = hashHas;\n\tHash.prototype.set = hashSet;\n\n\tmodule.exports = Hash;\n\n/***/ }),\n/* 474 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38),\n\t    root = __webpack_require__(17);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar Promise = getNative(root, 'Promise');\n\n\tmodule.exports = Promise;\n\n/***/ }),\n/* 475 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38),\n\t    root = __webpack_require__(17);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar WeakMap = getNative(root, 'WeakMap');\n\n\tmodule.exports = WeakMap;\n\n/***/ }),\n/* 476 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Adds the key-value `pair` to `map`.\n\t *\n\t * @private\n\t * @param {Object} map The map to modify.\n\t * @param {Array} pair The key-value pair to add.\n\t * @returns {Object} Returns `map`.\n\t */\n\tfunction addMapEntry(map, pair) {\n\t  // Don't return `map.set` because it's not chainable in IE 11.\n\t  map.set(pair[0], pair[1]);\n\t  return map;\n\t}\n\n\tmodule.exports = addMapEntry;\n\n/***/ }),\n/* 477 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Adds `value` to `set`.\n\t *\n\t * @private\n\t * @param {Object} set The set to modify.\n\t * @param {*} value The value to add.\n\t * @returns {Object} Returns `set`.\n\t */\n\tfunction addSetEntry(set, value) {\n\t  // Don't return `set.add` because it's not chainable in IE 11.\n\t  set.add(value);\n\t  return set;\n\t}\n\n\tmodule.exports = addSetEntry;\n\n/***/ }),\n/* 478 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `_.forEach` for arrays without support for\n\t * iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction arrayEach(array, iteratee) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length;\n\n\t  while (++index < length) {\n\t    if (iteratee(array[index], index, array) === false) {\n\t      break;\n\t    }\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = arrayEach;\n\n/***/ }),\n/* 479 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `_.filter` for arrays without support for\n\t * iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} predicate The function invoked per iteration.\n\t * @returns {Array} Returns the new filtered array.\n\t */\n\tfunction arrayFilter(array, predicate) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length,\n\t      resIndex = 0,\n\t      result = [];\n\n\t  while (++index < length) {\n\t    var value = array[index];\n\t    if (predicate(value, index, array)) {\n\t      result[resIndex++] = value;\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = arrayFilter;\n\n/***/ }),\n/* 480 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIndexOf = __webpack_require__(166);\n\n\t/**\n\t * A specialized version of `_.includes` for arrays without support for\n\t * specifying an index to search from.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to inspect.\n\t * @param {*} target The value to search for.\n\t * @returns {boolean} Returns `true` if `target` is found, else `false`.\n\t */\n\tfunction arrayIncludes(array, value) {\n\t  var length = array == null ? 0 : array.length;\n\t  return !!length && baseIndexOf(array, value, 0) > -1;\n\t}\n\n\tmodule.exports = arrayIncludes;\n\n/***/ }),\n/* 481 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This function is like `arrayIncludes` except that it accepts a comparator.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to inspect.\n\t * @param {*} target The value to search for.\n\t * @param {Function} comparator The comparator invoked per element.\n\t * @returns {boolean} Returns `true` if `target` is found, else `false`.\n\t */\n\tfunction arrayIncludesWith(array, value, comparator) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length;\n\n\t  while (++index < length) {\n\t    if (comparator(value, array[index])) {\n\t      return true;\n\t    }\n\t  }\n\t  return false;\n\t}\n\n\tmodule.exports = arrayIncludesWith;\n\n/***/ }),\n/* 482 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `_.some` for arrays without support for iteratee\n\t * shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} predicate The function invoked per iteration.\n\t * @returns {boolean} Returns `true` if any element passes the predicate check,\n\t *  else `false`.\n\t */\n\tfunction arraySome(array, predicate) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length;\n\n\t  while (++index < length) {\n\t    if (predicate(array[index], index, array)) {\n\t      return true;\n\t    }\n\t  }\n\t  return false;\n\t}\n\n\tmodule.exports = arraySome;\n\n/***/ }),\n/* 483 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    keys = __webpack_require__(32);\n\n\t/**\n\t * The base implementation of `_.assign` without support for multiple sources\n\t * or `customizer` functions.\n\t *\n\t * @private\n\t * @param {Object} object The destination object.\n\t * @param {Object} source The source object.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction baseAssign(object, source) {\n\t  return object && copyObject(source, keys(source), object);\n\t}\n\n\tmodule.exports = baseAssign;\n\n/***/ }),\n/* 484 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    keysIn = __webpack_require__(47);\n\n\t/**\n\t * The base implementation of `_.assignIn` without support for multiple sources\n\t * or `customizer` functions.\n\t *\n\t * @private\n\t * @param {Object} object The destination object.\n\t * @param {Object} source The source object.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction baseAssignIn(object, source) {\n\t  return object && copyObject(source, keysIn(source), object);\n\t}\n\n\tmodule.exports = baseAssignIn;\n\n/***/ }),\n/* 485 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.clamp` which doesn't coerce arguments.\n\t *\n\t * @private\n\t * @param {number} number The number to clamp.\n\t * @param {number} [lower] The lower bound.\n\t * @param {number} upper The upper bound.\n\t * @returns {number} Returns the clamped number.\n\t */\n\tfunction baseClamp(number, lower, upper) {\n\t  if (number === number) {\n\t    if (upper !== undefined) {\n\t      number = number <= upper ? number : upper;\n\t    }\n\t    if (lower !== undefined) {\n\t      number = number >= lower ? number : lower;\n\t    }\n\t  }\n\t  return number;\n\t}\n\n\tmodule.exports = baseClamp;\n\n/***/ }),\n/* 486 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(18);\n\n\t/** Built-in value references. */\n\tvar objectCreate = Object.create;\n\n\t/**\n\t * The base implementation of `_.create` without support for assigning\n\t * properties to the created object.\n\t *\n\t * @private\n\t * @param {Object} proto The object to inherit from.\n\t * @returns {Object} Returns the new object.\n\t */\n\tvar baseCreate = function () {\n\t  function object() {}\n\t  return function (proto) {\n\t    if (!isObject(proto)) {\n\t      return {};\n\t    }\n\t    if (objectCreate) {\n\t      return objectCreate(proto);\n\t    }\n\t    object.prototype = proto;\n\t    var result = new object();\n\t    object.prototype = undefined;\n\t    return result;\n\t  };\n\t}();\n\n\tmodule.exports = baseCreate;\n\n/***/ }),\n/* 487 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseForOwn = __webpack_require__(489),\n\t    createBaseEach = __webpack_require__(526);\n\n\t/**\n\t * The base implementation of `_.forEach` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array|Object} Returns `collection`.\n\t */\n\tvar baseEach = createBaseEach(baseForOwn);\n\n\tmodule.exports = baseEach;\n\n/***/ }),\n/* 488 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayPush = __webpack_require__(161),\n\t    isFlattenable = __webpack_require__(543);\n\n\t/**\n\t * The base implementation of `_.flatten` with support for restricting flattening.\n\t *\n\t * @private\n\t * @param {Array} array The array to flatten.\n\t * @param {number} depth The maximum recursion depth.\n\t * @param {boolean} [predicate=isFlattenable] The function invoked per iteration.\n\t * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks.\n\t * @param {Array} [result=[]] The initial result value.\n\t * @returns {Array} Returns the new flattened array.\n\t */\n\tfunction baseFlatten(array, depth, predicate, isStrict, result) {\n\t  var index = -1,\n\t      length = array.length;\n\n\t  predicate || (predicate = isFlattenable);\n\t  result || (result = []);\n\n\t  while (++index < length) {\n\t    var value = array[index];\n\t    if (depth > 0 && predicate(value)) {\n\t      if (depth > 1) {\n\t        // Recursively flatten arrays (susceptible to call stack limits).\n\t        baseFlatten(value, depth - 1, predicate, isStrict, result);\n\t      } else {\n\t        arrayPush(result, value);\n\t      }\n\t    } else if (!isStrict) {\n\t      result[result.length] = value;\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseFlatten;\n\n/***/ }),\n/* 489 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseFor = __webpack_require__(248),\n\t    keys = __webpack_require__(32);\n\n\t/**\n\t * The base implementation of `_.forOwn` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Object} object The object to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction baseForOwn(object, iteratee) {\n\t  return object && baseFor(object, iteratee, keys);\n\t}\n\n\tmodule.exports = baseForOwn;\n\n/***/ }),\n/* 490 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * The base implementation of `_.has` without support for deep paths.\n\t *\n\t * @private\n\t * @param {Object} [object] The object to query.\n\t * @param {Array|string} key The key to check.\n\t * @returns {boolean} Returns `true` if `key` exists, else `false`.\n\t */\n\tfunction baseHas(object, key) {\n\t  return object != null && hasOwnProperty.call(object, key);\n\t}\n\n\tmodule.exports = baseHas;\n\n/***/ }),\n/* 491 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.hasIn` without support for deep paths.\n\t *\n\t * @private\n\t * @param {Object} [object] The object to query.\n\t * @param {Array|string} key The key to check.\n\t * @returns {boolean} Returns `true` if `key` exists, else `false`.\n\t */\n\tfunction baseHasIn(object, key) {\n\t  return object != null && key in Object(object);\n\t}\n\n\tmodule.exports = baseHasIn;\n\n/***/ }),\n/* 492 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This function is like `baseIndexOf` except that it accepts a comparator.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {*} value The value to search for.\n\t * @param {number} fromIndex The index to search from.\n\t * @param {Function} comparator The comparator invoked per element.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction baseIndexOfWith(array, value, fromIndex, comparator) {\n\t  var index = fromIndex - 1,\n\t      length = array.length;\n\n\t  while (++index < length) {\n\t    if (comparator(array[index], value)) {\n\t      return index;\n\t    }\n\t  }\n\t  return -1;\n\t}\n\n\tmodule.exports = baseIndexOfWith;\n\n/***/ }),\n/* 493 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]';\n\n\t/**\n\t * The base implementation of `_.isArguments`.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n\t */\n\tfunction baseIsArguments(value) {\n\t  return isObjectLike(value) && baseGetTag(value) == argsTag;\n\t}\n\n\tmodule.exports = baseIsArguments;\n\n/***/ }),\n/* 494 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Stack = __webpack_require__(99),\n\t    equalArrays = __webpack_require__(260),\n\t    equalByTag = __webpack_require__(530),\n\t    equalObjects = __webpack_require__(531),\n\t    getTag = __webpack_require__(264),\n\t    isArray = __webpack_require__(6),\n\t    isBuffer = __webpack_require__(113),\n\t    isTypedArray = __webpack_require__(177);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1;\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]',\n\t    arrayTag = '[object Array]',\n\t    objectTag = '[object Object]';\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * A specialized version of `baseIsEqual` for arrays and objects which performs\n\t * deep comparisons and tracks traversed objects enabling objects with circular\n\t * references to be compared.\n\t *\n\t * @private\n\t * @param {Object} object The object to compare.\n\t * @param {Object} other The other object to compare.\n\t * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n\t * @param {Function} customizer The function to customize comparisons.\n\t * @param {Function} equalFunc The function to determine equivalents of values.\n\t * @param {Object} [stack] Tracks traversed `object` and `other` objects.\n\t * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n\t */\n\tfunction baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {\n\t  var objIsArr = isArray(object),\n\t      othIsArr = isArray(other),\n\t      objTag = objIsArr ? arrayTag : getTag(object),\n\t      othTag = othIsArr ? arrayTag : getTag(other);\n\n\t  objTag = objTag == argsTag ? objectTag : objTag;\n\t  othTag = othTag == argsTag ? objectTag : othTag;\n\n\t  var objIsObj = objTag == objectTag,\n\t      othIsObj = othTag == objectTag,\n\t      isSameTag = objTag == othTag;\n\n\t  if (isSameTag && isBuffer(object)) {\n\t    if (!isBuffer(other)) {\n\t      return false;\n\t    }\n\t    objIsArr = true;\n\t    objIsObj = false;\n\t  }\n\t  if (isSameTag && !objIsObj) {\n\t    stack || (stack = new Stack());\n\t    return objIsArr || isTypedArray(object) ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack);\n\t  }\n\t  if (!(bitmask & COMPARE_PARTIAL_FLAG)) {\n\t    var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),\n\t        othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__');\n\n\t    if (objIsWrapped || othIsWrapped) {\n\t      var objUnwrapped = objIsWrapped ? object.value() : object,\n\t          othUnwrapped = othIsWrapped ? other.value() : other;\n\n\t      stack || (stack = new Stack());\n\t      return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack);\n\t    }\n\t  }\n\t  if (!isSameTag) {\n\t    return false;\n\t  }\n\t  stack || (stack = new Stack());\n\t  return equalObjects(object, other, bitmask, customizer, equalFunc, stack);\n\t}\n\n\tmodule.exports = baseIsEqualDeep;\n\n/***/ }),\n/* 495 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Stack = __webpack_require__(99),\n\t    baseIsEqual = __webpack_require__(251);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1,\n\t    COMPARE_UNORDERED_FLAG = 2;\n\n\t/**\n\t * The base implementation of `_.isMatch` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Object} object The object to inspect.\n\t * @param {Object} source The object of property values to match.\n\t * @param {Array} matchData The property names, values, and compare flags to match.\n\t * @param {Function} [customizer] The function to customize comparisons.\n\t * @returns {boolean} Returns `true` if `object` is a match, else `false`.\n\t */\n\tfunction baseIsMatch(object, source, matchData, customizer) {\n\t  var index = matchData.length,\n\t      length = index,\n\t      noCustomizer = !customizer;\n\n\t  if (object == null) {\n\t    return !length;\n\t  }\n\t  object = Object(object);\n\t  while (index--) {\n\t    var data = matchData[index];\n\t    if (noCustomizer && data[2] ? data[1] !== object[data[0]] : !(data[0] in object)) {\n\t      return false;\n\t    }\n\t  }\n\t  while (++index < length) {\n\t    data = matchData[index];\n\t    var key = data[0],\n\t        objValue = object[key],\n\t        srcValue = data[1];\n\n\t    if (noCustomizer && data[2]) {\n\t      if (objValue === undefined && !(key in object)) {\n\t        return false;\n\t      }\n\t    } else {\n\t      var stack = new Stack();\n\t      if (customizer) {\n\t        var result = customizer(objValue, srcValue, key, object, source, stack);\n\t      }\n\t      if (!(result === undefined ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack) : result)) {\n\t        return false;\n\t      }\n\t    }\n\t  }\n\t  return true;\n\t}\n\n\tmodule.exports = baseIsMatch;\n\n/***/ }),\n/* 496 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.isNaN` without support for number objects.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.\n\t */\n\tfunction baseIsNaN(value) {\n\t  return value !== value;\n\t}\n\n\tmodule.exports = baseIsNaN;\n\n/***/ }),\n/* 497 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isFunction = __webpack_require__(175),\n\t    isMasked = __webpack_require__(545),\n\t    isObject = __webpack_require__(18),\n\t    toSource = __webpack_require__(272);\n\n\t/**\n\t * Used to match `RegExp`\n\t * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n\t */\n\tvar reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g;\n\n\t/** Used to detect host constructors (Safari). */\n\tvar reIsHostCtor = /^\\[object .+?Constructor\\]$/;\n\n\t/** Used for built-in method references. */\n\tvar funcProto = Function.prototype,\n\t    objectProto = Object.prototype;\n\n\t/** Used to resolve the decompiled source of functions. */\n\tvar funcToString = funcProto.toString;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/** Used to detect if a method is native. */\n\tvar reIsNative = RegExp('^' + funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\$&').replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$');\n\n\t/**\n\t * The base implementation of `_.isNative` without bad shim checks.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a native function,\n\t *  else `false`.\n\t */\n\tfunction baseIsNative(value) {\n\t  if (!isObject(value) || isMasked(value)) {\n\t    return false;\n\t  }\n\t  var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\n\t  return pattern.test(toSource(value));\n\t}\n\n\tmodule.exports = baseIsNative;\n\n/***/ }),\n/* 498 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** `Object#toString` result references. */\n\tvar regexpTag = '[object RegExp]';\n\n\t/**\n\t * The base implementation of `_.isRegExp` without Node.js optimizations.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a regexp, else `false`.\n\t */\n\tfunction baseIsRegExp(value) {\n\t  return isObjectLike(value) && baseGetTag(value) == regexpTag;\n\t}\n\n\tmodule.exports = baseIsRegExp;\n\n/***/ }),\n/* 499 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    isLength = __webpack_require__(176),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]',\n\t    arrayTag = '[object Array]',\n\t    boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    errorTag = '[object Error]',\n\t    funcTag = '[object Function]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    objectTag = '[object Object]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    weakMapTag = '[object WeakMap]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]',\n\t    float32Tag = '[object Float32Array]',\n\t    float64Tag = '[object Float64Array]',\n\t    int8Tag = '[object Int8Array]',\n\t    int16Tag = '[object Int16Array]',\n\t    int32Tag = '[object Int32Array]',\n\t    uint8Tag = '[object Uint8Array]',\n\t    uint8ClampedTag = '[object Uint8ClampedArray]',\n\t    uint16Tag = '[object Uint16Array]',\n\t    uint32Tag = '[object Uint32Array]';\n\n\t/** Used to identify `toStringTag` values of typed arrays. */\n\tvar typedArrayTags = {};\n\ttypedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true;\n\ttypedArrayTags[argsTag] = typedArrayTags[arrayTag] = typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = typedArrayTags[errorTag] = typedArrayTags[funcTag] = typedArrayTags[mapTag] = typedArrayTags[numberTag] = typedArrayTags[objectTag] = typedArrayTags[regexpTag] = typedArrayTags[setTag] = typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false;\n\n\t/**\n\t * The base implementation of `_.isTypedArray` without Node.js optimizations.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n\t */\n\tfunction baseIsTypedArray(value) {\n\t    return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[baseGetTag(value)];\n\t}\n\n\tmodule.exports = baseIsTypedArray;\n\n/***/ }),\n/* 500 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isPrototype = __webpack_require__(105),\n\t    nativeKeys = __webpack_require__(557);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction baseKeys(object) {\n\t  if (!isPrototype(object)) {\n\t    return nativeKeys(object);\n\t  }\n\t  var result = [];\n\t  for (var key in Object(object)) {\n\t    if (hasOwnProperty.call(object, key) && key != 'constructor') {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseKeys;\n\n/***/ }),\n/* 501 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(18),\n\t    isPrototype = __webpack_require__(105),\n\t    nativeKeysIn = __webpack_require__(558);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction baseKeysIn(object) {\n\t  if (!isObject(object)) {\n\t    return nativeKeysIn(object);\n\t  }\n\t  var isProto = isPrototype(object),\n\t      result = [];\n\n\t  for (var key in object) {\n\t    if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseKeysIn;\n\n/***/ }),\n/* 502 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsMatch = __webpack_require__(495),\n\t    getMatchData = __webpack_require__(533),\n\t    matchesStrictComparable = __webpack_require__(269);\n\n\t/**\n\t * The base implementation of `_.matches` which doesn't clone `source`.\n\t *\n\t * @private\n\t * @param {Object} source The object of property values to match.\n\t * @returns {Function} Returns the new spec function.\n\t */\n\tfunction baseMatches(source) {\n\t  var matchData = getMatchData(source);\n\t  if (matchData.length == 1 && matchData[0][2]) {\n\t    return matchesStrictComparable(matchData[0][0], matchData[0][1]);\n\t  }\n\t  return function (object) {\n\t    return object === source || baseIsMatch(object, source, matchData);\n\t  };\n\t}\n\n\tmodule.exports = baseMatches;\n\n/***/ }),\n/* 503 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsEqual = __webpack_require__(251),\n\t    get = __webpack_require__(583),\n\t    hasIn = __webpack_require__(584),\n\t    isKey = __webpack_require__(173),\n\t    isStrictComparable = __webpack_require__(267),\n\t    matchesStrictComparable = __webpack_require__(269),\n\t    toKey = __webpack_require__(108);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1,\n\t    COMPARE_UNORDERED_FLAG = 2;\n\n\t/**\n\t * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`.\n\t *\n\t * @private\n\t * @param {string} path The path of the property to get.\n\t * @param {*} srcValue The value to match.\n\t * @returns {Function} Returns the new spec function.\n\t */\n\tfunction baseMatchesProperty(path, srcValue) {\n\t  if (isKey(path) && isStrictComparable(srcValue)) {\n\t    return matchesStrictComparable(toKey(path), srcValue);\n\t  }\n\t  return function (object) {\n\t    var objValue = get(object, path);\n\t    return objValue === undefined && objValue === srcValue ? hasIn(object, path) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);\n\t  };\n\t}\n\n\tmodule.exports = baseMatchesProperty;\n\n/***/ }),\n/* 504 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Stack = __webpack_require__(99),\n\t    assignMergeValue = __webpack_require__(247),\n\t    baseFor = __webpack_require__(248),\n\t    baseMergeDeep = __webpack_require__(505),\n\t    isObject = __webpack_require__(18),\n\t    keysIn = __webpack_require__(47);\n\n\t/**\n\t * The base implementation of `_.merge` without support for multiple sources.\n\t *\n\t * @private\n\t * @param {Object} object The destination object.\n\t * @param {Object} source The source object.\n\t * @param {number} srcIndex The index of `source`.\n\t * @param {Function} [customizer] The function to customize merged values.\n\t * @param {Object} [stack] Tracks traversed source values and their merged\n\t *  counterparts.\n\t */\n\tfunction baseMerge(object, source, srcIndex, customizer, stack) {\n\t  if (object === source) {\n\t    return;\n\t  }\n\t  baseFor(source, function (srcValue, key) {\n\t    if (isObject(srcValue)) {\n\t      stack || (stack = new Stack());\n\t      baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);\n\t    } else {\n\t      var newValue = customizer ? customizer(object[key], srcValue, key + '', object, source, stack) : undefined;\n\n\t      if (newValue === undefined) {\n\t        newValue = srcValue;\n\t      }\n\t      assignMergeValue(object, key, newValue);\n\t    }\n\t  }, keysIn);\n\t}\n\n\tmodule.exports = baseMerge;\n\n/***/ }),\n/* 505 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assignMergeValue = __webpack_require__(247),\n\t    cloneBuffer = __webpack_require__(256),\n\t    cloneTypedArray = __webpack_require__(257),\n\t    copyArray = __webpack_require__(168),\n\t    initCloneObject = __webpack_require__(266),\n\t    isArguments = __webpack_require__(112),\n\t    isArray = __webpack_require__(6),\n\t    isArrayLikeObject = __webpack_require__(585),\n\t    isBuffer = __webpack_require__(113),\n\t    isFunction = __webpack_require__(175),\n\t    isObject = __webpack_require__(18),\n\t    isPlainObject = __webpack_require__(275),\n\t    isTypedArray = __webpack_require__(177),\n\t    toPlainObject = __webpack_require__(599);\n\n\t/**\n\t * A specialized version of `baseMerge` for arrays and objects which performs\n\t * deep merges and tracks traversed objects enabling objects with circular\n\t * references to be merged.\n\t *\n\t * @private\n\t * @param {Object} object The destination object.\n\t * @param {Object} source The source object.\n\t * @param {string} key The key of the value to merge.\n\t * @param {number} srcIndex The index of `source`.\n\t * @param {Function} mergeFunc The function to merge values.\n\t * @param {Function} [customizer] The function to customize assigned values.\n\t * @param {Object} [stack] Tracks traversed source values and their merged\n\t *  counterparts.\n\t */\n\tfunction baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {\n\t  var objValue = object[key],\n\t      srcValue = source[key],\n\t      stacked = stack.get(srcValue);\n\n\t  if (stacked) {\n\t    assignMergeValue(object, key, stacked);\n\t    return;\n\t  }\n\t  var newValue = customizer ? customizer(objValue, srcValue, key + '', object, source, stack) : undefined;\n\n\t  var isCommon = newValue === undefined;\n\n\t  if (isCommon) {\n\t    var isArr = isArray(srcValue),\n\t        isBuff = !isArr && isBuffer(srcValue),\n\t        isTyped = !isArr && !isBuff && isTypedArray(srcValue);\n\n\t    newValue = srcValue;\n\t    if (isArr || isBuff || isTyped) {\n\t      if (isArray(objValue)) {\n\t        newValue = objValue;\n\t      } else if (isArrayLikeObject(objValue)) {\n\t        newValue = copyArray(objValue);\n\t      } else if (isBuff) {\n\t        isCommon = false;\n\t        newValue = cloneBuffer(srcValue, true);\n\t      } else if (isTyped) {\n\t        isCommon = false;\n\t        newValue = cloneTypedArray(srcValue, true);\n\t      } else {\n\t        newValue = [];\n\t      }\n\t    } else if (isPlainObject(srcValue) || isArguments(srcValue)) {\n\t      newValue = objValue;\n\t      if (isArguments(objValue)) {\n\t        newValue = toPlainObject(objValue);\n\t      } else if (!isObject(objValue) || srcIndex && isFunction(objValue)) {\n\t        newValue = initCloneObject(srcValue);\n\t      }\n\t    } else {\n\t      isCommon = false;\n\t    }\n\t  }\n\t  if (isCommon) {\n\t    // Recursively merge objects and arrays (susceptible to call stack limits).\n\t    stack.set(srcValue, newValue);\n\t    mergeFunc(newValue, srcValue, srcIndex, customizer, stack);\n\t    stack['delete'](srcValue);\n\t  }\n\t  assignMergeValue(object, key, newValue);\n\t}\n\n\tmodule.exports = baseMergeDeep;\n\n/***/ }),\n/* 506 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayMap = __webpack_require__(60),\n\t    baseIteratee = __webpack_require__(61),\n\t    baseMap = __webpack_require__(252),\n\t    baseSortBy = __webpack_require__(512),\n\t    baseUnary = __webpack_require__(102),\n\t    compareMultiple = __webpack_require__(522),\n\t    identity = __webpack_require__(110);\n\n\t/**\n\t * The base implementation of `_.orderBy` without param guards.\n\t *\n\t * @private\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by.\n\t * @param {string[]} orders The sort orders of `iteratees`.\n\t * @returns {Array} Returns the new sorted array.\n\t */\n\tfunction baseOrderBy(collection, iteratees, orders) {\n\t  var index = -1;\n\t  iteratees = arrayMap(iteratees.length ? iteratees : [identity], baseUnary(baseIteratee));\n\n\t  var result = baseMap(collection, function (value, key, collection) {\n\t    var criteria = arrayMap(iteratees, function (iteratee) {\n\t      return iteratee(value);\n\t    });\n\t    return { 'criteria': criteria, 'index': ++index, 'value': value };\n\t  });\n\n\t  return baseSortBy(result, function (object, other) {\n\t    return compareMultiple(object, other, orders);\n\t  });\n\t}\n\n\tmodule.exports = baseOrderBy;\n\n/***/ }),\n/* 507 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.property` without support for deep paths.\n\t *\n\t * @private\n\t * @param {string} key The key of the property to get.\n\t * @returns {Function} Returns the new accessor function.\n\t */\n\tfunction baseProperty(key) {\n\t  return function (object) {\n\t    return object == null ? undefined : object[key];\n\t  };\n\t}\n\n\tmodule.exports = baseProperty;\n\n/***/ }),\n/* 508 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGet = __webpack_require__(249);\n\n\t/**\n\t * A specialized version of `baseProperty` which supports deep paths.\n\t *\n\t * @private\n\t * @param {Array|string} path The path of the property to get.\n\t * @returns {Function} Returns the new accessor function.\n\t */\n\tfunction basePropertyDeep(path) {\n\t  return function (object) {\n\t    return baseGet(object, path);\n\t  };\n\t}\n\n\tmodule.exports = basePropertyDeep;\n\n/***/ }),\n/* 509 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayMap = __webpack_require__(60),\n\t    baseIndexOf = __webpack_require__(166),\n\t    baseIndexOfWith = __webpack_require__(492),\n\t    baseUnary = __webpack_require__(102),\n\t    copyArray = __webpack_require__(168);\n\n\t/** Used for built-in method references. */\n\tvar arrayProto = Array.prototype;\n\n\t/** Built-in value references. */\n\tvar splice = arrayProto.splice;\n\n\t/**\n\t * The base implementation of `_.pullAllBy` without support for iteratee\n\t * shorthands.\n\t *\n\t * @private\n\t * @param {Array} array The array to modify.\n\t * @param {Array} values The values to remove.\n\t * @param {Function} [iteratee] The iteratee invoked per element.\n\t * @param {Function} [comparator] The comparator invoked per element.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction basePullAll(array, values, iteratee, comparator) {\n\t  var indexOf = comparator ? baseIndexOfWith : baseIndexOf,\n\t      index = -1,\n\t      length = values.length,\n\t      seen = array;\n\n\t  if (array === values) {\n\t    values = copyArray(values);\n\t  }\n\t  if (iteratee) {\n\t    seen = arrayMap(array, baseUnary(iteratee));\n\t  }\n\t  while (++index < length) {\n\t    var fromIndex = 0,\n\t        value = values[index],\n\t        computed = iteratee ? iteratee(value) : value;\n\n\t    while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) {\n\t      if (seen !== array) {\n\t        splice.call(seen, fromIndex, 1);\n\t      }\n\t      splice.call(array, fromIndex, 1);\n\t    }\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = basePullAll;\n\n/***/ }),\n/* 510 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used as references for various `Number` constants. */\n\tvar MAX_SAFE_INTEGER = 9007199254740991;\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeFloor = Math.floor;\n\n\t/**\n\t * The base implementation of `_.repeat` which doesn't coerce arguments.\n\t *\n\t * @private\n\t * @param {string} string The string to repeat.\n\t * @param {number} n The number of times to repeat the string.\n\t * @returns {string} Returns the repeated string.\n\t */\n\tfunction baseRepeat(string, n) {\n\t  var result = '';\n\t  if (!string || n < 1 || n > MAX_SAFE_INTEGER) {\n\t    return result;\n\t  }\n\t  // Leverage the exponentiation by squaring algorithm for a faster repeat.\n\t  // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details.\n\t  do {\n\t    if (n % 2) {\n\t      result += string;\n\t    }\n\t    n = nativeFloor(n / 2);\n\t    if (n) {\n\t      string += string;\n\t    }\n\t  } while (n);\n\n\t  return result;\n\t}\n\n\tmodule.exports = baseRepeat;\n\n/***/ }),\n/* 511 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar constant = __webpack_require__(576),\n\t    defineProperty = __webpack_require__(259),\n\t    identity = __webpack_require__(110);\n\n\t/**\n\t * The base implementation of `setToString` without support for hot loop shorting.\n\t *\n\t * @private\n\t * @param {Function} func The function to modify.\n\t * @param {Function} string The `toString` result.\n\t * @returns {Function} Returns `func`.\n\t */\n\tvar baseSetToString = !defineProperty ? identity : function (func, string) {\n\t  return defineProperty(func, 'toString', {\n\t    'configurable': true,\n\t    'enumerable': false,\n\t    'value': constant(string),\n\t    'writable': true\n\t  });\n\t};\n\n\tmodule.exports = baseSetToString;\n\n/***/ }),\n/* 512 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.sortBy` which uses `comparer` to define the\n\t * sort order of `array` and replaces criteria objects with their corresponding\n\t * values.\n\t *\n\t * @private\n\t * @param {Array} array The array to sort.\n\t * @param {Function} comparer The function to define sort order.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction baseSortBy(array, comparer) {\n\t  var length = array.length;\n\n\t  array.sort(comparer);\n\t  while (length--) {\n\t    array[length] = array[length].value;\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = baseSortBy;\n\n/***/ }),\n/* 513 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.times` without support for iteratee shorthands\n\t * or max array length checks.\n\t *\n\t * @private\n\t * @param {number} n The number of times to invoke `iteratee`.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array} Returns the array of results.\n\t */\n\tfunction baseTimes(n, iteratee) {\n\t  var index = -1,\n\t      result = Array(n);\n\n\t  while (++index < n) {\n\t    result[index] = iteratee(index);\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseTimes;\n\n/***/ }),\n/* 514 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar SetCache = __webpack_require__(242),\n\t    arrayIncludes = __webpack_require__(480),\n\t    arrayIncludesWith = __webpack_require__(481),\n\t    cacheHas = __webpack_require__(254),\n\t    createSet = __webpack_require__(528),\n\t    setToArray = __webpack_require__(107);\n\n\t/** Used as the size to enable large array optimizations. */\n\tvar LARGE_ARRAY_SIZE = 200;\n\n\t/**\n\t * The base implementation of `_.uniqBy` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {Function} [iteratee] The iteratee invoked per element.\n\t * @param {Function} [comparator] The comparator invoked per element.\n\t * @returns {Array} Returns the new duplicate free array.\n\t */\n\tfunction baseUniq(array, iteratee, comparator) {\n\t  var index = -1,\n\t      includes = arrayIncludes,\n\t      length = array.length,\n\t      isCommon = true,\n\t      result = [],\n\t      seen = result;\n\n\t  if (comparator) {\n\t    isCommon = false;\n\t    includes = arrayIncludesWith;\n\t  } else if (length >= LARGE_ARRAY_SIZE) {\n\t    var set = iteratee ? null : createSet(array);\n\t    if (set) {\n\t      return setToArray(set);\n\t    }\n\t    isCommon = false;\n\t    includes = cacheHas;\n\t    seen = new SetCache();\n\t  } else {\n\t    seen = iteratee ? [] : result;\n\t  }\n\t  outer: while (++index < length) {\n\t    var value = array[index],\n\t        computed = iteratee ? iteratee(value) : value;\n\n\t    value = comparator || value !== 0 ? value : 0;\n\t    if (isCommon && computed === computed) {\n\t      var seenIndex = seen.length;\n\t      while (seenIndex--) {\n\t        if (seen[seenIndex] === computed) {\n\t          continue outer;\n\t        }\n\t      }\n\t      if (iteratee) {\n\t        seen.push(computed);\n\t      }\n\t      result.push(value);\n\t    } else if (!includes(seen, computed, comparator)) {\n\t      if (seen !== result) {\n\t        seen.push(computed);\n\t      }\n\t      result.push(value);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseUniq;\n\n/***/ }),\n/* 515 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayMap = __webpack_require__(60);\n\n\t/**\n\t * The base implementation of `_.values` and `_.valuesIn` which creates an\n\t * array of `object` property values corresponding to the property names\n\t * of `props`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {Array} props The property names to get values for.\n\t * @returns {Object} Returns the array of property values.\n\t */\n\tfunction baseValues(object, props) {\n\t  return arrayMap(props, function (key) {\n\t    return object[key];\n\t  });\n\t}\n\n\tmodule.exports = baseValues;\n\n/***/ }),\n/* 516 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar cloneArrayBuffer = __webpack_require__(167);\n\n\t/**\n\t * Creates a clone of `dataView`.\n\t *\n\t * @private\n\t * @param {Object} dataView The data view to clone.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the cloned data view.\n\t */\n\tfunction cloneDataView(dataView, isDeep) {\n\t  var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer;\n\t  return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);\n\t}\n\n\tmodule.exports = cloneDataView;\n\n/***/ }),\n/* 517 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar addMapEntry = __webpack_require__(476),\n\t    arrayReduce = __webpack_require__(246),\n\t    mapToArray = __webpack_require__(268);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1;\n\n\t/**\n\t * Creates a clone of `map`.\n\t *\n\t * @private\n\t * @param {Object} map The map to clone.\n\t * @param {Function} cloneFunc The function to clone values.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the cloned map.\n\t */\n\tfunction cloneMap(map, isDeep, cloneFunc) {\n\t  var array = isDeep ? cloneFunc(mapToArray(map), CLONE_DEEP_FLAG) : mapToArray(map);\n\t  return arrayReduce(array, addMapEntry, new map.constructor());\n\t}\n\n\tmodule.exports = cloneMap;\n\n/***/ }),\n/* 518 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/** Used to match `RegExp` flags from their coerced string values. */\n\tvar reFlags = /\\w*$/;\n\n\t/**\n\t * Creates a clone of `regexp`.\n\t *\n\t * @private\n\t * @param {Object} regexp The regexp to clone.\n\t * @returns {Object} Returns the cloned regexp.\n\t */\n\tfunction cloneRegExp(regexp) {\n\t  var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));\n\t  result.lastIndex = regexp.lastIndex;\n\t  return result;\n\t}\n\n\tmodule.exports = cloneRegExp;\n\n/***/ }),\n/* 519 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar addSetEntry = __webpack_require__(477),\n\t    arrayReduce = __webpack_require__(246),\n\t    setToArray = __webpack_require__(107);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1;\n\n\t/**\n\t * Creates a clone of `set`.\n\t *\n\t * @private\n\t * @param {Object} set The set to clone.\n\t * @param {Function} cloneFunc The function to clone values.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the cloned set.\n\t */\n\tfunction cloneSet(set, isDeep, cloneFunc) {\n\t  var array = isDeep ? cloneFunc(setToArray(set), CLONE_DEEP_FLAG) : setToArray(set);\n\t  return arrayReduce(array, addSetEntry, new set.constructor());\n\t}\n\n\tmodule.exports = cloneSet;\n\n/***/ }),\n/* 520 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _Symbol = __webpack_require__(45);\n\n\t/** Used to convert symbols to primitives and strings. */\n\tvar symbolProto = _Symbol ? _Symbol.prototype : undefined,\n\t    symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;\n\n\t/**\n\t * Creates a clone of the `symbol` object.\n\t *\n\t * @private\n\t * @param {Object} symbol The symbol object to clone.\n\t * @returns {Object} Returns the cloned symbol object.\n\t */\n\tfunction cloneSymbol(symbol) {\n\t  return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};\n\t}\n\n\tmodule.exports = cloneSymbol;\n\n/***/ }),\n/* 521 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isSymbol = __webpack_require__(62);\n\n\t/**\n\t * Compares values to sort them in ascending order.\n\t *\n\t * @private\n\t * @param {*} value The value to compare.\n\t * @param {*} other The other value to compare.\n\t * @returns {number} Returns the sort order indicator for `value`.\n\t */\n\tfunction compareAscending(value, other) {\n\t  if (value !== other) {\n\t    var valIsDefined = value !== undefined,\n\t        valIsNull = value === null,\n\t        valIsReflexive = value === value,\n\t        valIsSymbol = isSymbol(value);\n\n\t    var othIsDefined = other !== undefined,\n\t        othIsNull = other === null,\n\t        othIsReflexive = other === other,\n\t        othIsSymbol = isSymbol(other);\n\n\t    if (!othIsNull && !othIsSymbol && !valIsSymbol && value > other || valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol || valIsNull && othIsDefined && othIsReflexive || !valIsDefined && othIsReflexive || !valIsReflexive) {\n\t      return 1;\n\t    }\n\t    if (!valIsNull && !valIsSymbol && !othIsSymbol && value < other || othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol || othIsNull && valIsDefined && valIsReflexive || !othIsDefined && valIsReflexive || !othIsReflexive) {\n\t      return -1;\n\t    }\n\t  }\n\t  return 0;\n\t}\n\n\tmodule.exports = compareAscending;\n\n/***/ }),\n/* 522 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar compareAscending = __webpack_require__(521);\n\n\t/**\n\t * Used by `_.orderBy` to compare multiple properties of a value to another\n\t * and stable sort them.\n\t *\n\t * If `orders` is unspecified, all values are sorted in ascending order. Otherwise,\n\t * specify an order of \"desc\" for descending or \"asc\" for ascending sort order\n\t * of corresponding values.\n\t *\n\t * @private\n\t * @param {Object} object The object to compare.\n\t * @param {Object} other The other object to compare.\n\t * @param {boolean[]|string[]} orders The order to sort by for each property.\n\t * @returns {number} Returns the sort order indicator for `object`.\n\t */\n\tfunction compareMultiple(object, other, orders) {\n\t  var index = -1,\n\t      objCriteria = object.criteria,\n\t      othCriteria = other.criteria,\n\t      length = objCriteria.length,\n\t      ordersLength = orders.length;\n\n\t  while (++index < length) {\n\t    var result = compareAscending(objCriteria[index], othCriteria[index]);\n\t    if (result) {\n\t      if (index >= ordersLength) {\n\t        return result;\n\t      }\n\t      var order = orders[index];\n\t      return result * (order == 'desc' ? -1 : 1);\n\t    }\n\t  }\n\t  // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications\n\t  // that causes it, under certain circumstances, to provide the same value for\n\t  // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247\n\t  // for more details.\n\t  //\n\t  // This also ensures a stable sort in V8 and other engines.\n\t  // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details.\n\t  return object.index - other.index;\n\t}\n\n\tmodule.exports = compareMultiple;\n\n/***/ }),\n/* 523 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    getSymbols = __webpack_require__(170);\n\n\t/**\n\t * Copies own symbols of `source` to `object`.\n\t *\n\t * @private\n\t * @param {Object} source The object to copy symbols from.\n\t * @param {Object} [object={}] The object to copy symbols to.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction copySymbols(source, object) {\n\t  return copyObject(source, getSymbols(source), object);\n\t}\n\n\tmodule.exports = copySymbols;\n\n/***/ }),\n/* 524 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    getSymbolsIn = __webpack_require__(263);\n\n\t/**\n\t * Copies own and inherited symbols of `source` to `object`.\n\t *\n\t * @private\n\t * @param {Object} source The object to copy symbols from.\n\t * @param {Object} [object={}] The object to copy symbols to.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction copySymbolsIn(source, object) {\n\t  return copyObject(source, getSymbolsIn(source), object);\n\t}\n\n\tmodule.exports = copySymbolsIn;\n\n/***/ }),\n/* 525 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar root = __webpack_require__(17);\n\n\t/** Used to detect overreaching core-js shims. */\n\tvar coreJsData = root['__core-js_shared__'];\n\n\tmodule.exports = coreJsData;\n\n/***/ }),\n/* 526 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isArrayLike = __webpack_require__(24);\n\n\t/**\n\t * Creates a `baseEach` or `baseEachRight` function.\n\t *\n\t * @private\n\t * @param {Function} eachFunc The function to iterate over a collection.\n\t * @param {boolean} [fromRight] Specify iterating from right to left.\n\t * @returns {Function} Returns the new base function.\n\t */\n\tfunction createBaseEach(eachFunc, fromRight) {\n\t  return function (collection, iteratee) {\n\t    if (collection == null) {\n\t      return collection;\n\t    }\n\t    if (!isArrayLike(collection)) {\n\t      return eachFunc(collection, iteratee);\n\t    }\n\t    var length = collection.length,\n\t        index = fromRight ? length : -1,\n\t        iterable = Object(collection);\n\n\t    while (fromRight ? index-- : ++index < length) {\n\t      if (iteratee(iterable[index], index, iterable) === false) {\n\t        break;\n\t      }\n\t    }\n\t    return collection;\n\t  };\n\t}\n\n\tmodule.exports = createBaseEach;\n\n/***/ }),\n/* 527 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Creates a base function for methods like `_.forIn` and `_.forOwn`.\n\t *\n\t * @private\n\t * @param {boolean} [fromRight] Specify iterating from right to left.\n\t * @returns {Function} Returns the new base function.\n\t */\n\tfunction createBaseFor(fromRight) {\n\t  return function (object, iteratee, keysFunc) {\n\t    var index = -1,\n\t        iterable = Object(object),\n\t        props = keysFunc(object),\n\t        length = props.length;\n\n\t    while (length--) {\n\t      var key = props[fromRight ? length : ++index];\n\t      if (iteratee(iterable[key], key, iterable) === false) {\n\t        break;\n\t      }\n\t    }\n\t    return object;\n\t  };\n\t}\n\n\tmodule.exports = createBaseFor;\n\n/***/ }),\n/* 528 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Set = __webpack_require__(241),\n\t    noop = __webpack_require__(591),\n\t    setToArray = __webpack_require__(107);\n\n\t/** Used as references for various `Number` constants. */\n\tvar INFINITY = 1 / 0;\n\n\t/**\n\t * Creates a set object of `values`.\n\t *\n\t * @private\n\t * @param {Array} values The values to add to the set.\n\t * @returns {Object} Returns the new set.\n\t */\n\tvar createSet = !(Set && 1 / setToArray(new Set([, -0]))[1] == INFINITY) ? noop : function (values) {\n\t  return new Set(values);\n\t};\n\n\tmodule.exports = createSet;\n\n/***/ }),\n/* 529 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar eq = __webpack_require__(46);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Used by `_.defaults` to customize its `_.assignIn` use to assign properties\n\t * of source objects to the destination object for all destination properties\n\t * that resolve to `undefined`.\n\t *\n\t * @private\n\t * @param {*} objValue The destination value.\n\t * @param {*} srcValue The source value.\n\t * @param {string} key The key of the property to assign.\n\t * @param {Object} object The parent object of `objValue`.\n\t * @returns {*} Returns the value to assign.\n\t */\n\tfunction customDefaultsAssignIn(objValue, srcValue, key, object) {\n\t  if (objValue === undefined || eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key)) {\n\t    return srcValue;\n\t  }\n\t  return objValue;\n\t}\n\n\tmodule.exports = customDefaultsAssignIn;\n\n/***/ }),\n/* 530 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _Symbol = __webpack_require__(45),\n\t    Uint8Array = __webpack_require__(243),\n\t    eq = __webpack_require__(46),\n\t    equalArrays = __webpack_require__(260),\n\t    mapToArray = __webpack_require__(268),\n\t    setToArray = __webpack_require__(107);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1,\n\t    COMPARE_UNORDERED_FLAG = 2;\n\n\t/** `Object#toString` result references. */\n\tvar boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    errorTag = '[object Error]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    symbolTag = '[object Symbol]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]';\n\n\t/** Used to convert symbols to primitives and strings. */\n\tvar symbolProto = _Symbol ? _Symbol.prototype : undefined,\n\t    symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;\n\n\t/**\n\t * A specialized version of `baseIsEqualDeep` for comparing objects of\n\t * the same `toStringTag`.\n\t *\n\t * **Note:** This function only supports comparing values with tags of\n\t * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.\n\t *\n\t * @private\n\t * @param {Object} object The object to compare.\n\t * @param {Object} other The other object to compare.\n\t * @param {string} tag The `toStringTag` of the objects to compare.\n\t * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n\t * @param {Function} customizer The function to customize comparisons.\n\t * @param {Function} equalFunc The function to determine equivalents of values.\n\t * @param {Object} stack Tracks traversed `object` and `other` objects.\n\t * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n\t */\n\tfunction equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {\n\t  switch (tag) {\n\t    case dataViewTag:\n\t      if (object.byteLength != other.byteLength || object.byteOffset != other.byteOffset) {\n\t        return false;\n\t      }\n\t      object = object.buffer;\n\t      other = other.buffer;\n\n\t    case arrayBufferTag:\n\t      if (object.byteLength != other.byteLength || !equalFunc(new Uint8Array(object), new Uint8Array(other))) {\n\t        return false;\n\t      }\n\t      return true;\n\n\t    case boolTag:\n\t    case dateTag:\n\t    case numberTag:\n\t      // Coerce booleans to `1` or `0` and dates to milliseconds.\n\t      // Invalid dates are coerced to `NaN`.\n\t      return eq(+object, +other);\n\n\t    case errorTag:\n\t      return object.name == other.name && object.message == other.message;\n\n\t    case regexpTag:\n\t    case stringTag:\n\t      // Coerce regexes to strings and treat strings, primitives and objects,\n\t      // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring\n\t      // for more details.\n\t      return object == other + '';\n\n\t    case mapTag:\n\t      var convert = mapToArray;\n\n\t    case setTag:\n\t      var isPartial = bitmask & COMPARE_PARTIAL_FLAG;\n\t      convert || (convert = setToArray);\n\n\t      if (object.size != other.size && !isPartial) {\n\t        return false;\n\t      }\n\t      // Assume cyclic values are equal.\n\t      var stacked = stack.get(object);\n\t      if (stacked) {\n\t        return stacked == other;\n\t      }\n\t      bitmask |= COMPARE_UNORDERED_FLAG;\n\n\t      // Recursively compare objects (susceptible to call stack limits).\n\t      stack.set(object, other);\n\t      var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);\n\t      stack['delete'](object);\n\t      return result;\n\n\t    case symbolTag:\n\t      if (symbolValueOf) {\n\t        return symbolValueOf.call(object) == symbolValueOf.call(other);\n\t      }\n\t  }\n\t  return false;\n\t}\n\n\tmodule.exports = equalByTag;\n\n/***/ }),\n/* 531 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getAllKeys = __webpack_require__(262);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1;\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * A specialized version of `baseIsEqualDeep` for objects with support for\n\t * partial deep comparisons.\n\t *\n\t * @private\n\t * @param {Object} object The object to compare.\n\t * @param {Object} other The other object to compare.\n\t * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n\t * @param {Function} customizer The function to customize comparisons.\n\t * @param {Function} equalFunc The function to determine equivalents of values.\n\t * @param {Object} stack Tracks traversed `object` and `other` objects.\n\t * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n\t */\n\tfunction equalObjects(object, other, bitmask, customizer, equalFunc, stack) {\n\t  var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\n\t      objProps = getAllKeys(object),\n\t      objLength = objProps.length,\n\t      othProps = getAllKeys(other),\n\t      othLength = othProps.length;\n\n\t  if (objLength != othLength && !isPartial) {\n\t    return false;\n\t  }\n\t  var index = objLength;\n\t  while (index--) {\n\t    var key = objProps[index];\n\t    if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {\n\t      return false;\n\t    }\n\t  }\n\t  // Assume cyclic values are equal.\n\t  var stacked = stack.get(object);\n\t  if (stacked && stack.get(other)) {\n\t    return stacked == other;\n\t  }\n\t  var result = true;\n\t  stack.set(object, other);\n\t  stack.set(other, object);\n\n\t  var skipCtor = isPartial;\n\t  while (++index < objLength) {\n\t    key = objProps[index];\n\t    var objValue = object[key],\n\t        othValue = other[key];\n\n\t    if (customizer) {\n\t      var compared = isPartial ? customizer(othValue, objValue, key, other, object, stack) : customizer(objValue, othValue, key, object, other, stack);\n\t    }\n\t    // Recursively compare objects (susceptible to call stack limits).\n\t    if (!(compared === undefined ? objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack) : compared)) {\n\t      result = false;\n\t      break;\n\t    }\n\t    skipCtor || (skipCtor = key == 'constructor');\n\t  }\n\t  if (result && !skipCtor) {\n\t    var objCtor = object.constructor,\n\t        othCtor = other.constructor;\n\n\t    // Non `Object` object instances with different constructors are not equal.\n\t    if (objCtor != othCtor && 'constructor' in object && 'constructor' in other && !(typeof objCtor == 'function' && objCtor instanceof objCtor && typeof othCtor == 'function' && othCtor instanceof othCtor)) {\n\t      result = false;\n\t    }\n\t  }\n\t  stack['delete'](object);\n\t  stack['delete'](other);\n\t  return result;\n\t}\n\n\tmodule.exports = equalObjects;\n\n/***/ }),\n/* 532 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetAllKeys = __webpack_require__(250),\n\t    getSymbolsIn = __webpack_require__(263),\n\t    keysIn = __webpack_require__(47);\n\n\t/**\n\t * Creates an array of own and inherited enumerable property names and\n\t * symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names and symbols.\n\t */\n\tfunction getAllKeysIn(object) {\n\t  return baseGetAllKeys(object, keysIn, getSymbolsIn);\n\t}\n\n\tmodule.exports = getAllKeysIn;\n\n/***/ }),\n/* 533 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isStrictComparable = __webpack_require__(267),\n\t    keys = __webpack_require__(32);\n\n\t/**\n\t * Gets the property names, values, and compare flags of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the match data of `object`.\n\t */\n\tfunction getMatchData(object) {\n\t    var result = keys(object),\n\t        length = result.length;\n\n\t    while (length--) {\n\t        var key = result[length],\n\t            value = object[key];\n\n\t        result[length] = [key, value, isStrictComparable(value)];\n\t    }\n\t    return result;\n\t}\n\n\tmodule.exports = getMatchData;\n\n/***/ }),\n/* 534 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _Symbol = __webpack_require__(45);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Used to resolve the\n\t * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n\t * of values.\n\t */\n\tvar nativeObjectToString = objectProto.toString;\n\n\t/** Built-in value references. */\n\tvar symToStringTag = _Symbol ? _Symbol.toStringTag : undefined;\n\n\t/**\n\t * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @returns {string} Returns the raw `toStringTag`.\n\t */\n\tfunction getRawTag(value) {\n\t  var isOwn = hasOwnProperty.call(value, symToStringTag),\n\t      tag = value[symToStringTag];\n\n\t  try {\n\t    value[symToStringTag] = undefined;\n\t    var unmasked = true;\n\t  } catch (e) {}\n\n\t  var result = nativeObjectToString.call(value);\n\t  if (unmasked) {\n\t    if (isOwn) {\n\t      value[symToStringTag] = tag;\n\t    } else {\n\t      delete value[symToStringTag];\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = getRawTag;\n\n/***/ }),\n/* 535 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Gets the value at `key` of `object`.\n\t *\n\t * @private\n\t * @param {Object} [object] The object to query.\n\t * @param {string} key The key of the property to get.\n\t * @returns {*} Returns the property value.\n\t */\n\tfunction getValue(object, key) {\n\t  return object == null ? undefined : object[key];\n\t}\n\n\tmodule.exports = getValue;\n\n/***/ }),\n/* 536 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar nativeCreate = __webpack_require__(106);\n\n\t/**\n\t * Removes all key-value entries from the hash.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf Hash\n\t */\n\tfunction hashClear() {\n\t  this.__data__ = nativeCreate ? nativeCreate(null) : {};\n\t  this.size = 0;\n\t}\n\n\tmodule.exports = hashClear;\n\n/***/ }),\n/* 537 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Removes `key` and its value from the hash.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf Hash\n\t * @param {Object} hash The hash to modify.\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction hashDelete(key) {\n\t  var result = this.has(key) && delete this.__data__[key];\n\t  this.size -= result ? 1 : 0;\n\t  return result;\n\t}\n\n\tmodule.exports = hashDelete;\n\n/***/ }),\n/* 538 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar nativeCreate = __webpack_require__(106);\n\n\t/** Used to stand-in for `undefined` hash values. */\n\tvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Gets the hash value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf Hash\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction hashGet(key) {\n\t  var data = this.__data__;\n\t  if (nativeCreate) {\n\t    var result = data[key];\n\t    return result === HASH_UNDEFINED ? undefined : result;\n\t  }\n\t  return hasOwnProperty.call(data, key) ? data[key] : undefined;\n\t}\n\n\tmodule.exports = hashGet;\n\n/***/ }),\n/* 539 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar nativeCreate = __webpack_require__(106);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Checks if a hash value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf Hash\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction hashHas(key) {\n\t  var data = this.__data__;\n\t  return nativeCreate ? data[key] !== undefined : hasOwnProperty.call(data, key);\n\t}\n\n\tmodule.exports = hashHas;\n\n/***/ }),\n/* 540 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar nativeCreate = __webpack_require__(106);\n\n\t/** Used to stand-in for `undefined` hash values. */\n\tvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n\t/**\n\t * Sets the hash `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf Hash\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the hash instance.\n\t */\n\tfunction hashSet(key, value) {\n\t  var data = this.__data__;\n\t  this.size += this.has(key) ? 0 : 1;\n\t  data[key] = nativeCreate && value === undefined ? HASH_UNDEFINED : value;\n\t  return this;\n\t}\n\n\tmodule.exports = hashSet;\n\n/***/ }),\n/* 541 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Initializes an array clone.\n\t *\n\t * @private\n\t * @param {Array} array The array to clone.\n\t * @returns {Array} Returns the initialized clone.\n\t */\n\tfunction initCloneArray(array) {\n\t  var length = array.length,\n\t      result = array.constructor(length);\n\n\t  // Add properties assigned by `RegExp#exec`.\n\t  if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) {\n\t    result.index = array.index;\n\t    result.input = array.input;\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = initCloneArray;\n\n/***/ }),\n/* 542 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar cloneArrayBuffer = __webpack_require__(167),\n\t    cloneDataView = __webpack_require__(516),\n\t    cloneMap = __webpack_require__(517),\n\t    cloneRegExp = __webpack_require__(518),\n\t    cloneSet = __webpack_require__(519),\n\t    cloneSymbol = __webpack_require__(520),\n\t    cloneTypedArray = __webpack_require__(257);\n\n\t/** `Object#toString` result references. */\n\tvar boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    symbolTag = '[object Symbol]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]',\n\t    float32Tag = '[object Float32Array]',\n\t    float64Tag = '[object Float64Array]',\n\t    int8Tag = '[object Int8Array]',\n\t    int16Tag = '[object Int16Array]',\n\t    int32Tag = '[object Int32Array]',\n\t    uint8Tag = '[object Uint8Array]',\n\t    uint8ClampedTag = '[object Uint8ClampedArray]',\n\t    uint16Tag = '[object Uint16Array]',\n\t    uint32Tag = '[object Uint32Array]';\n\n\t/**\n\t * Initializes an object clone based on its `toStringTag`.\n\t *\n\t * **Note:** This function only supports cloning values with tags of\n\t * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.\n\t *\n\t * @private\n\t * @param {Object} object The object to clone.\n\t * @param {string} tag The `toStringTag` of the object to clone.\n\t * @param {Function} cloneFunc The function to clone values.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the initialized clone.\n\t */\n\tfunction initCloneByTag(object, tag, cloneFunc, isDeep) {\n\t  var Ctor = object.constructor;\n\t  switch (tag) {\n\t    case arrayBufferTag:\n\t      return cloneArrayBuffer(object);\n\n\t    case boolTag:\n\t    case dateTag:\n\t      return new Ctor(+object);\n\n\t    case dataViewTag:\n\t      return cloneDataView(object, isDeep);\n\n\t    case float32Tag:case float64Tag:\n\t    case int8Tag:case int16Tag:case int32Tag:\n\t    case uint8Tag:case uint8ClampedTag:case uint16Tag:case uint32Tag:\n\t      return cloneTypedArray(object, isDeep);\n\n\t    case mapTag:\n\t      return cloneMap(object, isDeep, cloneFunc);\n\n\t    case numberTag:\n\t    case stringTag:\n\t      return new Ctor(object);\n\n\t    case regexpTag:\n\t      return cloneRegExp(object);\n\n\t    case setTag:\n\t      return cloneSet(object, isDeep, cloneFunc);\n\n\t    case symbolTag:\n\t      return cloneSymbol(object);\n\t  }\n\t}\n\n\tmodule.exports = initCloneByTag;\n\n/***/ }),\n/* 543 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _Symbol = __webpack_require__(45),\n\t    isArguments = __webpack_require__(112),\n\t    isArray = __webpack_require__(6);\n\n\t/** Built-in value references. */\n\tvar spreadableSymbol = _Symbol ? _Symbol.isConcatSpreadable : undefined;\n\n\t/**\n\t * Checks if `value` is a flattenable `arguments` object or array.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is flattenable, else `false`.\n\t */\n\tfunction isFlattenable(value) {\n\t    return isArray(value) || isArguments(value) || !!(spreadableSymbol && value && value[spreadableSymbol]);\n\t}\n\n\tmodule.exports = isFlattenable;\n\n/***/ }),\n/* 544 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/**\n\t * Checks if `value` is suitable for use as unique object key.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\n\t */\n\tfunction isKeyable(value) {\n\t  var type = typeof value === 'undefined' ? 'undefined' : _typeof(value);\n\t  return type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean' ? value !== '__proto__' : value === null;\n\t}\n\n\tmodule.exports = isKeyable;\n\n/***/ }),\n/* 545 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar coreJsData = __webpack_require__(525);\n\n\t/** Used to detect methods masquerading as native. */\n\tvar maskSrcKey = function () {\n\t  var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\n\t  return uid ? 'Symbol(src)_1.' + uid : '';\n\t}();\n\n\t/**\n\t * Checks if `func` has its source masked.\n\t *\n\t * @private\n\t * @param {Function} func The function to check.\n\t * @returns {boolean} Returns `true` if `func` is masked, else `false`.\n\t */\n\tfunction isMasked(func) {\n\t  return !!maskSrcKey && maskSrcKey in func;\n\t}\n\n\tmodule.exports = isMasked;\n\n/***/ }),\n/* 546 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Removes all key-value entries from the list cache.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf ListCache\n\t */\n\tfunction listCacheClear() {\n\t  this.__data__ = [];\n\t  this.size = 0;\n\t}\n\n\tmodule.exports = listCacheClear;\n\n/***/ }),\n/* 547 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assocIndexOf = __webpack_require__(100);\n\n\t/** Used for built-in method references. */\n\tvar arrayProto = Array.prototype;\n\n\t/** Built-in value references. */\n\tvar splice = arrayProto.splice;\n\n\t/**\n\t * Removes `key` and its value from the list cache.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf ListCache\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction listCacheDelete(key) {\n\t  var data = this.__data__,\n\t      index = assocIndexOf(data, key);\n\n\t  if (index < 0) {\n\t    return false;\n\t  }\n\t  var lastIndex = data.length - 1;\n\t  if (index == lastIndex) {\n\t    data.pop();\n\t  } else {\n\t    splice.call(data, index, 1);\n\t  }\n\t  --this.size;\n\t  return true;\n\t}\n\n\tmodule.exports = listCacheDelete;\n\n/***/ }),\n/* 548 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assocIndexOf = __webpack_require__(100);\n\n\t/**\n\t * Gets the list cache value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf ListCache\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction listCacheGet(key) {\n\t  var data = this.__data__,\n\t      index = assocIndexOf(data, key);\n\n\t  return index < 0 ? undefined : data[index][1];\n\t}\n\n\tmodule.exports = listCacheGet;\n\n/***/ }),\n/* 549 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assocIndexOf = __webpack_require__(100);\n\n\t/**\n\t * Checks if a list cache value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf ListCache\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction listCacheHas(key) {\n\t  return assocIndexOf(this.__data__, key) > -1;\n\t}\n\n\tmodule.exports = listCacheHas;\n\n/***/ }),\n/* 550 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assocIndexOf = __webpack_require__(100);\n\n\t/**\n\t * Sets the list cache `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf ListCache\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the list cache instance.\n\t */\n\tfunction listCacheSet(key, value) {\n\t  var data = this.__data__,\n\t      index = assocIndexOf(data, key);\n\n\t  if (index < 0) {\n\t    ++this.size;\n\t    data.push([key, value]);\n\t  } else {\n\t    data[index][1] = value;\n\t  }\n\t  return this;\n\t}\n\n\tmodule.exports = listCacheSet;\n\n/***/ }),\n/* 551 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Hash = __webpack_require__(473),\n\t    ListCache = __webpack_require__(98),\n\t    Map = __webpack_require__(159);\n\n\t/**\n\t * Removes all key-value entries from the map.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf MapCache\n\t */\n\tfunction mapCacheClear() {\n\t  this.size = 0;\n\t  this.__data__ = {\n\t    'hash': new Hash(),\n\t    'map': new (Map || ListCache)(),\n\t    'string': new Hash()\n\t  };\n\t}\n\n\tmodule.exports = mapCacheClear;\n\n/***/ }),\n/* 552 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getMapData = __webpack_require__(104);\n\n\t/**\n\t * Removes `key` and its value from the map.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf MapCache\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction mapCacheDelete(key) {\n\t  var result = getMapData(this, key)['delete'](key);\n\t  this.size -= result ? 1 : 0;\n\t  return result;\n\t}\n\n\tmodule.exports = mapCacheDelete;\n\n/***/ }),\n/* 553 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getMapData = __webpack_require__(104);\n\n\t/**\n\t * Gets the map value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf MapCache\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction mapCacheGet(key) {\n\t  return getMapData(this, key).get(key);\n\t}\n\n\tmodule.exports = mapCacheGet;\n\n/***/ }),\n/* 554 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getMapData = __webpack_require__(104);\n\n\t/**\n\t * Checks if a map value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf MapCache\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction mapCacheHas(key) {\n\t  return getMapData(this, key).has(key);\n\t}\n\n\tmodule.exports = mapCacheHas;\n\n/***/ }),\n/* 555 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getMapData = __webpack_require__(104);\n\n\t/**\n\t * Sets the map `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf MapCache\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the map cache instance.\n\t */\n\tfunction mapCacheSet(key, value) {\n\t  var data = getMapData(this, key),\n\t      size = data.size;\n\n\t  data.set(key, value);\n\t  this.size += data.size == size ? 0 : 1;\n\t  return this;\n\t}\n\n\tmodule.exports = mapCacheSet;\n\n/***/ }),\n/* 556 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar memoize = __webpack_require__(589);\n\n\t/** Used as the maximum memoize cache size. */\n\tvar MAX_MEMOIZE_SIZE = 500;\n\n\t/**\n\t * A specialized version of `_.memoize` which clears the memoized function's\n\t * cache when it exceeds `MAX_MEMOIZE_SIZE`.\n\t *\n\t * @private\n\t * @param {Function} func The function to have its output memoized.\n\t * @returns {Function} Returns the new memoized function.\n\t */\n\tfunction memoizeCapped(func) {\n\t  var result = memoize(func, function (key) {\n\t    if (cache.size === MAX_MEMOIZE_SIZE) {\n\t      cache.clear();\n\t    }\n\t    return key;\n\t  });\n\n\t  var cache = result.cache;\n\t  return result;\n\t}\n\n\tmodule.exports = memoizeCapped;\n\n/***/ }),\n/* 557 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar overArg = __webpack_require__(271);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeKeys = overArg(Object.keys, Object);\n\n\tmodule.exports = nativeKeys;\n\n/***/ }),\n/* 558 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This function is like\n\t * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n\t * except that it includes inherited enumerable properties.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction nativeKeysIn(object) {\n\t  var result = [];\n\t  if (object != null) {\n\t    for (var key in Object(object)) {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = nativeKeysIn;\n\n/***/ }),\n/* 559 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/**\n\t * Used to resolve the\n\t * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n\t * of values.\n\t */\n\tvar nativeObjectToString = objectProto.toString;\n\n\t/**\n\t * Converts `value` to a string using `Object.prototype.toString`.\n\t *\n\t * @private\n\t * @param {*} value The value to convert.\n\t * @returns {string} Returns the converted string.\n\t */\n\tfunction objectToString(value) {\n\t  return nativeObjectToString.call(value);\n\t}\n\n\tmodule.exports = objectToString;\n\n/***/ }),\n/* 560 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar apply = __webpack_require__(244);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeMax = Math.max;\n\n\t/**\n\t * A specialized version of `baseRest` which transforms the rest array.\n\t *\n\t * @private\n\t * @param {Function} func The function to apply a rest parameter to.\n\t * @param {number} [start=func.length-1] The start position of the rest parameter.\n\t * @param {Function} transform The rest array transform.\n\t * @returns {Function} Returns the new function.\n\t */\n\tfunction overRest(func, start, transform) {\n\t  start = nativeMax(start === undefined ? func.length - 1 : start, 0);\n\t  return function () {\n\t    var args = arguments,\n\t        index = -1,\n\t        length = nativeMax(args.length - start, 0),\n\t        array = Array(length);\n\n\t    while (++index < length) {\n\t      array[index] = args[start + index];\n\t    }\n\t    index = -1;\n\t    var otherArgs = Array(start + 1);\n\t    while (++index < start) {\n\t      otherArgs[index] = args[index];\n\t    }\n\t    otherArgs[start] = transform(array);\n\t    return apply(func, this, otherArgs);\n\t  };\n\t}\n\n\tmodule.exports = overRest;\n\n/***/ }),\n/* 561 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used to stand-in for `undefined` hash values. */\n\tvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n\t/**\n\t * Adds `value` to the array cache.\n\t *\n\t * @private\n\t * @name add\n\t * @memberOf SetCache\n\t * @alias push\n\t * @param {*} value The value to cache.\n\t * @returns {Object} Returns the cache instance.\n\t */\n\tfunction setCacheAdd(value) {\n\t  this.__data__.set(value, HASH_UNDEFINED);\n\t  return this;\n\t}\n\n\tmodule.exports = setCacheAdd;\n\n/***/ }),\n/* 562 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Checks if `value` is in the array cache.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf SetCache\n\t * @param {*} value The value to search for.\n\t * @returns {number} Returns `true` if `value` is found, else `false`.\n\t */\n\tfunction setCacheHas(value) {\n\t  return this.__data__.has(value);\n\t}\n\n\tmodule.exports = setCacheHas;\n\n/***/ }),\n/* 563 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseSetToString = __webpack_require__(511),\n\t    shortOut = __webpack_require__(564);\n\n\t/**\n\t * Sets the `toString` method of `func` to return `string`.\n\t *\n\t * @private\n\t * @param {Function} func The function to modify.\n\t * @param {Function} string The `toString` result.\n\t * @returns {Function} Returns `func`.\n\t */\n\tvar setToString = shortOut(baseSetToString);\n\n\tmodule.exports = setToString;\n\n/***/ }),\n/* 564 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/** Used to detect hot functions by number of calls within a span of milliseconds. */\n\tvar HOT_COUNT = 800,\n\t    HOT_SPAN = 16;\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeNow = Date.now;\n\n\t/**\n\t * Creates a function that'll short out and invoke `identity` instead\n\t * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`\n\t * milliseconds.\n\t *\n\t * @private\n\t * @param {Function} func The function to restrict.\n\t * @returns {Function} Returns the new shortable function.\n\t */\n\tfunction shortOut(func) {\n\t  var count = 0,\n\t      lastCalled = 0;\n\n\t  return function () {\n\t    var stamp = nativeNow(),\n\t        remaining = HOT_SPAN - (stamp - lastCalled);\n\n\t    lastCalled = stamp;\n\t    if (remaining > 0) {\n\t      if (++count >= HOT_COUNT) {\n\t        return arguments[0];\n\t      }\n\t    } else {\n\t      count = 0;\n\t    }\n\t    return func.apply(undefined, arguments);\n\t  };\n\t}\n\n\tmodule.exports = shortOut;\n\n/***/ }),\n/* 565 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar ListCache = __webpack_require__(98);\n\n\t/**\n\t * Removes all key-value entries from the stack.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf Stack\n\t */\n\tfunction stackClear() {\n\t  this.__data__ = new ListCache();\n\t  this.size = 0;\n\t}\n\n\tmodule.exports = stackClear;\n\n/***/ }),\n/* 566 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/**\n\t * Removes `key` and its value from the stack.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf Stack\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction stackDelete(key) {\n\t  var data = this.__data__,\n\t      result = data['delete'](key);\n\n\t  this.size = data.size;\n\t  return result;\n\t}\n\n\tmodule.exports = stackDelete;\n\n/***/ }),\n/* 567 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Gets the stack value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf Stack\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction stackGet(key) {\n\t  return this.__data__.get(key);\n\t}\n\n\tmodule.exports = stackGet;\n\n/***/ }),\n/* 568 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Checks if a stack value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf Stack\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction stackHas(key) {\n\t  return this.__data__.has(key);\n\t}\n\n\tmodule.exports = stackHas;\n\n/***/ }),\n/* 569 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar ListCache = __webpack_require__(98),\n\t    Map = __webpack_require__(159),\n\t    MapCache = __webpack_require__(160);\n\n\t/** Used as the size to enable large array optimizations. */\n\tvar LARGE_ARRAY_SIZE = 200;\n\n\t/**\n\t * Sets the stack `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf Stack\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the stack cache instance.\n\t */\n\tfunction stackSet(key, value) {\n\t  var data = this.__data__;\n\t  if (data instanceof ListCache) {\n\t    var pairs = data.__data__;\n\t    if (!Map || pairs.length < LARGE_ARRAY_SIZE - 1) {\n\t      pairs.push([key, value]);\n\t      this.size = ++data.size;\n\t      return this;\n\t    }\n\t    data = this.__data__ = new MapCache(pairs);\n\t  }\n\t  data.set(key, value);\n\t  this.size = data.size;\n\t  return this;\n\t}\n\n\tmodule.exports = stackSet;\n\n/***/ }),\n/* 570 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `_.indexOf` which performs strict equality\n\t * comparisons of values, i.e. `===`.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {*} value The value to search for.\n\t * @param {number} fromIndex The index to search from.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction strictIndexOf(array, value, fromIndex) {\n\t  var index = fromIndex - 1,\n\t      length = array.length;\n\n\t  while (++index < length) {\n\t    if (array[index] === value) {\n\t      return index;\n\t    }\n\t  }\n\t  return -1;\n\t}\n\n\tmodule.exports = strictIndexOf;\n\n/***/ }),\n/* 571 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar memoizeCapped = __webpack_require__(556);\n\n\t/** Used to match property names within property paths. */\n\tvar reLeadingDot = /^\\./,\n\t    rePropName = /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g;\n\n\t/** Used to match backslashes in property paths. */\n\tvar reEscapeChar = /\\\\(\\\\)?/g;\n\n\t/**\n\t * Converts `string` to a property path array.\n\t *\n\t * @private\n\t * @param {string} string The string to convert.\n\t * @returns {Array} Returns the property path array.\n\t */\n\tvar stringToPath = memoizeCapped(function (string) {\n\t  var result = [];\n\t  if (reLeadingDot.test(string)) {\n\t    result.push('');\n\t  }\n\t  string.replace(rePropName, function (match, number, quote, string) {\n\t    result.push(quote ? string.replace(reEscapeChar, '$1') : number || match);\n\t  });\n\t  return result;\n\t});\n\n\tmodule.exports = stringToPath;\n\n/***/ }),\n/* 572 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    createAssigner = __webpack_require__(103),\n\t    keysIn = __webpack_require__(47);\n\n\t/**\n\t * This method is like `_.assign` except that it iterates over own and\n\t * inherited source properties.\n\t *\n\t * **Note:** This method mutates `object`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @alias extend\n\t * @category Object\n\t * @param {Object} object The destination object.\n\t * @param {...Object} [sources] The source objects.\n\t * @returns {Object} Returns `object`.\n\t * @see _.assign\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t * }\n\t *\n\t * function Bar() {\n\t *   this.c = 3;\n\t * }\n\t *\n\t * Foo.prototype.b = 2;\n\t * Bar.prototype.d = 4;\n\t *\n\t * _.assignIn({ 'a': 0 }, new Foo, new Bar);\n\t * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 }\n\t */\n\tvar assignIn = createAssigner(function (object, source) {\n\t  copyObject(source, keysIn(source), object);\n\t});\n\n\tmodule.exports = assignIn;\n\n/***/ }),\n/* 573 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    createAssigner = __webpack_require__(103),\n\t    keysIn = __webpack_require__(47);\n\n\t/**\n\t * This method is like `_.assignIn` except that it accepts `customizer`\n\t * which is invoked to produce the assigned values. If `customizer` returns\n\t * `undefined`, assignment is handled by the method instead. The `customizer`\n\t * is invoked with five arguments: (objValue, srcValue, key, object, source).\n\t *\n\t * **Note:** This method mutates `object`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @alias extendWith\n\t * @category Object\n\t * @param {Object} object The destination object.\n\t * @param {...Object} sources The source objects.\n\t * @param {Function} [customizer] The function to customize assigned values.\n\t * @returns {Object} Returns `object`.\n\t * @see _.assignWith\n\t * @example\n\t *\n\t * function customizer(objValue, srcValue) {\n\t *   return _.isUndefined(objValue) ? srcValue : objValue;\n\t * }\n\t *\n\t * var defaults = _.partialRight(_.assignInWith, customizer);\n\t *\n\t * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\n\t * // => { 'a': 1, 'b': 2 }\n\t */\n\tvar assignInWith = createAssigner(function (object, source, srcIndex, customizer) {\n\t  copyObject(source, keysIn(source), object, customizer);\n\t});\n\n\tmodule.exports = assignInWith;\n\n/***/ }),\n/* 574 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseClone = __webpack_require__(164);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1,\n\t    CLONE_SYMBOLS_FLAG = 4;\n\n\t/**\n\t * This method is like `_.clone` except that it recursively clones `value`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 1.0.0\n\t * @category Lang\n\t * @param {*} value The value to recursively clone.\n\t * @returns {*} Returns the deep cloned value.\n\t * @see _.clone\n\t * @example\n\t *\n\t * var objects = [{ 'a': 1 }, { 'b': 2 }];\n\t *\n\t * var deep = _.cloneDeep(objects);\n\t * console.log(deep[0] === objects[0]);\n\t * // => false\n\t */\n\tfunction cloneDeep(value) {\n\t  return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG);\n\t}\n\n\tmodule.exports = cloneDeep;\n\n/***/ }),\n/* 575 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseClone = __webpack_require__(164);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1,\n\t    CLONE_SYMBOLS_FLAG = 4;\n\n\t/**\n\t * This method is like `_.cloneWith` except that it recursively clones `value`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to recursively clone.\n\t * @param {Function} [customizer] The function to customize cloning.\n\t * @returns {*} Returns the deep cloned value.\n\t * @see _.cloneWith\n\t * @example\n\t *\n\t * function customizer(value) {\n\t *   if (_.isElement(value)) {\n\t *     return value.cloneNode(true);\n\t *   }\n\t * }\n\t *\n\t * var el = _.cloneDeepWith(document.body, customizer);\n\t *\n\t * console.log(el === document.body);\n\t * // => false\n\t * console.log(el.nodeName);\n\t * // => 'BODY'\n\t * console.log(el.childNodes.length);\n\t * // => 20\n\t */\n\tfunction cloneDeepWith(value, customizer) {\n\t  customizer = typeof customizer == 'function' ? customizer : undefined;\n\t  return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer);\n\t}\n\n\tmodule.exports = cloneDeepWith;\n\n/***/ }),\n/* 576 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Creates a function that returns `value`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.4.0\n\t * @category Util\n\t * @param {*} value The value to return from the new function.\n\t * @returns {Function} Returns the new constant function.\n\t * @example\n\t *\n\t * var objects = _.times(2, _.constant({ 'a': 1 }));\n\t *\n\t * console.log(objects);\n\t * // => [{ 'a': 1 }, { 'a': 1 }]\n\t *\n\t * console.log(objects[0] === objects[1]);\n\t * // => true\n\t */\n\tfunction constant(value) {\n\t  return function () {\n\t    return value;\n\t  };\n\t}\n\n\tmodule.exports = constant;\n\n/***/ }),\n/* 577 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar toString = __webpack_require__(114);\n\n\t/**\n\t * Used to match `RegExp`\n\t * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n\t */\n\tvar reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g,\n\t    reHasRegExpChar = RegExp(reRegExpChar.source);\n\n\t/**\n\t * Escapes the `RegExp` special characters \"^\", \"$\", \"\\\", \".\", \"*\", \"+\",\n\t * \"?\", \"(\", \")\", \"[\", \"]\", \"{\", \"}\", and \"|\" in `string`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category String\n\t * @param {string} [string=''] The string to escape.\n\t * @returns {string} Returns the escaped string.\n\t * @example\n\t *\n\t * _.escapeRegExp('[lodash](https://lodash.com/)');\n\t * // => '\\[lodash\\]\\(https://lodash\\.com/\\)'\n\t */\n\tfunction escapeRegExp(string) {\n\t  string = toString(string);\n\t  return string && reHasRegExpChar.test(string) ? string.replace(reRegExpChar, '\\\\$&') : string;\n\t}\n\n\tmodule.exports = escapeRegExp;\n\n/***/ }),\n/* 578 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tmodule.exports = __webpack_require__(572);\n\n/***/ }),\n/* 579 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar createFind = __webpack_require__(258),\n\t    findIndex = __webpack_require__(580);\n\n\t/**\n\t * Iterates over elements of `collection`, returning the first element\n\t * `predicate` returns truthy for. The predicate is invoked with three\n\t * arguments: (value, index|key, collection).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Collection\n\t * @param {Array|Object} collection The collection to inspect.\n\t * @param {Function} [predicate=_.identity] The function invoked per iteration.\n\t * @param {number} [fromIndex=0] The index to search from.\n\t * @returns {*} Returns the matched element, else `undefined`.\n\t * @example\n\t *\n\t * var users = [\n\t *   { 'user': 'barney',  'age': 36, 'active': true },\n\t *   { 'user': 'fred',    'age': 40, 'active': false },\n\t *   { 'user': 'pebbles', 'age': 1,  'active': true }\n\t * ];\n\t *\n\t * _.find(users, function(o) { return o.age < 40; });\n\t * // => object for 'barney'\n\t *\n\t * // The `_.matches` iteratee shorthand.\n\t * _.find(users, { 'age': 1, 'active': true });\n\t * // => object for 'pebbles'\n\t *\n\t * // The `_.matchesProperty` iteratee shorthand.\n\t * _.find(users, ['active', false]);\n\t * // => object for 'fred'\n\t *\n\t * // The `_.property` iteratee shorthand.\n\t * _.find(users, 'active');\n\t * // => object for 'barney'\n\t */\n\tvar find = createFind(findIndex);\n\n\tmodule.exports = find;\n\n/***/ }),\n/* 580 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseFindIndex = __webpack_require__(165),\n\t    baseIteratee = __webpack_require__(61),\n\t    toInteger = __webpack_require__(48);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeMax = Math.max;\n\n\t/**\n\t * This method is like `_.find` except that it returns the index of the first\n\t * element `predicate` returns truthy for instead of the element itself.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 1.1.0\n\t * @category Array\n\t * @param {Array} array The array to inspect.\n\t * @param {Function} [predicate=_.identity] The function invoked per iteration.\n\t * @param {number} [fromIndex=0] The index to search from.\n\t * @returns {number} Returns the index of the found element, else `-1`.\n\t * @example\n\t *\n\t * var users = [\n\t *   { 'user': 'barney',  'active': false },\n\t *   { 'user': 'fred',    'active': false },\n\t *   { 'user': 'pebbles', 'active': true }\n\t * ];\n\t *\n\t * _.findIndex(users, function(o) { return o.user == 'barney'; });\n\t * // => 0\n\t *\n\t * // The `_.matches` iteratee shorthand.\n\t * _.findIndex(users, { 'user': 'fred', 'active': false });\n\t * // => 1\n\t *\n\t * // The `_.matchesProperty` iteratee shorthand.\n\t * _.findIndex(users, ['active', false]);\n\t * // => 0\n\t *\n\t * // The `_.property` iteratee shorthand.\n\t * _.findIndex(users, 'active');\n\t * // => 2\n\t */\n\tfunction findIndex(array, predicate, fromIndex) {\n\t  var length = array == null ? 0 : array.length;\n\t  if (!length) {\n\t    return -1;\n\t  }\n\t  var index = fromIndex == null ? 0 : toInteger(fromIndex);\n\t  if (index < 0) {\n\t    index = nativeMax(length + index, 0);\n\t  }\n\t  return baseFindIndex(array, baseIteratee(predicate, 3), index);\n\t}\n\n\tmodule.exports = findIndex;\n\n/***/ }),\n/* 581 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar createFind = __webpack_require__(258),\n\t    findLastIndex = __webpack_require__(582);\n\n\t/**\n\t * This method is like `_.find` except that it iterates over elements of\n\t * `collection` from right to left.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.0.0\n\t * @category Collection\n\t * @param {Array|Object} collection The collection to inspect.\n\t * @param {Function} [predicate=_.identity] The function invoked per iteration.\n\t * @param {number} [fromIndex=collection.length-1] The index to search from.\n\t * @returns {*} Returns the matched element, else `undefined`.\n\t * @example\n\t *\n\t * _.findLast([1, 2, 3, 4], function(n) {\n\t *   return n % 2 == 1;\n\t * });\n\t * // => 3\n\t */\n\tvar findLast = createFind(findLastIndex);\n\n\tmodule.exports = findLast;\n\n/***/ }),\n/* 582 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseFindIndex = __webpack_require__(165),\n\t    baseIteratee = __webpack_require__(61),\n\t    toInteger = __webpack_require__(48);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeMax = Math.max,\n\t    nativeMin = Math.min;\n\n\t/**\n\t * This method is like `_.findIndex` except that it iterates over elements\n\t * of `collection` from right to left.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.0.0\n\t * @category Array\n\t * @param {Array} array The array to inspect.\n\t * @param {Function} [predicate=_.identity] The function invoked per iteration.\n\t * @param {number} [fromIndex=array.length-1] The index to search from.\n\t * @returns {number} Returns the index of the found element, else `-1`.\n\t * @example\n\t *\n\t * var users = [\n\t *   { 'user': 'barney',  'active': true },\n\t *   { 'user': 'fred',    'active': false },\n\t *   { 'user': 'pebbles', 'active': false }\n\t * ];\n\t *\n\t * _.findLastIndex(users, function(o) { return o.user == 'pebbles'; });\n\t * // => 2\n\t *\n\t * // The `_.matches` iteratee shorthand.\n\t * _.findLastIndex(users, { 'user': 'barney', 'active': true });\n\t * // => 0\n\t *\n\t * // The `_.matchesProperty` iteratee shorthand.\n\t * _.findLastIndex(users, ['active', false]);\n\t * // => 2\n\t *\n\t * // The `_.property` iteratee shorthand.\n\t * _.findLastIndex(users, 'active');\n\t * // => 0\n\t */\n\tfunction findLastIndex(array, predicate, fromIndex) {\n\t  var length = array == null ? 0 : array.length;\n\t  if (!length) {\n\t    return -1;\n\t  }\n\t  var index = length - 1;\n\t  if (fromIndex !== undefined) {\n\t    index = toInteger(fromIndex);\n\t    index = fromIndex < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1);\n\t  }\n\t  return baseFindIndex(array, baseIteratee(predicate, 3), index, true);\n\t}\n\n\tmodule.exports = findLastIndex;\n\n/***/ }),\n/* 583 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGet = __webpack_require__(249);\n\n\t/**\n\t * Gets the value at `path` of `object`. If the resolved value is\n\t * `undefined`, the `defaultValue` is returned in its place.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.7.0\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path of the property to get.\n\t * @param {*} [defaultValue] The value returned for `undefined` resolved values.\n\t * @returns {*} Returns the resolved value.\n\t * @example\n\t *\n\t * var object = { 'a': [{ 'b': { 'c': 3 } }] };\n\t *\n\t * _.get(object, 'a[0].b.c');\n\t * // => 3\n\t *\n\t * _.get(object, ['a', '0', 'b', 'c']);\n\t * // => 3\n\t *\n\t * _.get(object, 'a.b.c', 'default');\n\t * // => 'default'\n\t */\n\tfunction get(object, path, defaultValue) {\n\t  var result = object == null ? undefined : baseGet(object, path);\n\t  return result === undefined ? defaultValue : result;\n\t}\n\n\tmodule.exports = get;\n\n/***/ }),\n/* 584 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseHasIn = __webpack_require__(491),\n\t    hasPath = __webpack_require__(265);\n\n\t/**\n\t * Checks if `path` is a direct or inherited property of `object`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path to check.\n\t * @returns {boolean} Returns `true` if `path` exists, else `false`.\n\t * @example\n\t *\n\t * var object = _.create({ 'a': _.create({ 'b': 2 }) });\n\t *\n\t * _.hasIn(object, 'a');\n\t * // => true\n\t *\n\t * _.hasIn(object, 'a.b');\n\t * // => true\n\t *\n\t * _.hasIn(object, ['a', 'b']);\n\t * // => true\n\t *\n\t * _.hasIn(object, 'b');\n\t * // => false\n\t */\n\tfunction hasIn(object, path) {\n\t  return object != null && hasPath(object, path, baseHasIn);\n\t}\n\n\tmodule.exports = hasIn;\n\n/***/ }),\n/* 585 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isArrayLike = __webpack_require__(24),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/**\n\t * This method is like `_.isArrayLike` except that it also checks if `value`\n\t * is an object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an array-like object,\n\t *  else `false`.\n\t * @example\n\t *\n\t * _.isArrayLikeObject([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isArrayLikeObject(document.body.children);\n\t * // => true\n\t *\n\t * _.isArrayLikeObject('abc');\n\t * // => false\n\t *\n\t * _.isArrayLikeObject(_.noop);\n\t * // => false\n\t */\n\tfunction isArrayLikeObject(value) {\n\t  return isObjectLike(value) && isArrayLike(value);\n\t}\n\n\tmodule.exports = isArrayLikeObject;\n\n/***/ }),\n/* 586 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar toInteger = __webpack_require__(48);\n\n\t/**\n\t * Checks if `value` is an integer.\n\t *\n\t * **Note:** This method is based on\n\t * [`Number.isInteger`](https://mdn.io/Number/isInteger).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an integer, else `false`.\n\t * @example\n\t *\n\t * _.isInteger(3);\n\t * // => true\n\t *\n\t * _.isInteger(Number.MIN_VALUE);\n\t * // => false\n\t *\n\t * _.isInteger(Infinity);\n\t * // => false\n\t *\n\t * _.isInteger('3');\n\t * // => false\n\t */\n\tfunction isInteger(value) {\n\t  return typeof value == 'number' && value == toInteger(value);\n\t}\n\n\tmodule.exports = isInteger;\n\n/***/ }),\n/* 587 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    isArray = __webpack_require__(6),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** `Object#toString` result references. */\n\tvar stringTag = '[object String]';\n\n\t/**\n\t * Checks if `value` is classified as a `String` primitive or object.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a string, else `false`.\n\t * @example\n\t *\n\t * _.isString('abc');\n\t * // => true\n\t *\n\t * _.isString(1);\n\t * // => false\n\t */\n\tfunction isString(value) {\n\t    return typeof value == 'string' || !isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag;\n\t}\n\n\tmodule.exports = isString;\n\n/***/ }),\n/* 588 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayMap = __webpack_require__(60),\n\t    baseIteratee = __webpack_require__(61),\n\t    baseMap = __webpack_require__(252),\n\t    isArray = __webpack_require__(6);\n\n\t/**\n\t * Creates an array of values by running each element in `collection` thru\n\t * `iteratee`. The iteratee is invoked with three arguments:\n\t * (value, index|key, collection).\n\t *\n\t * Many lodash methods are guarded to work as iteratees for methods like\n\t * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`.\n\t *\n\t * The guarded methods are:\n\t * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`,\n\t * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`,\n\t * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`,\n\t * `template`, `trim`, `trimEnd`, `trimStart`, and `words`\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Collection\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n\t * @returns {Array} Returns the new mapped array.\n\t * @example\n\t *\n\t * function square(n) {\n\t *   return n * n;\n\t * }\n\t *\n\t * _.map([4, 8], square);\n\t * // => [16, 64]\n\t *\n\t * _.map({ 'a': 4, 'b': 8 }, square);\n\t * // => [16, 64] (iteration order is not guaranteed)\n\t *\n\t * var users = [\n\t *   { 'user': 'barney' },\n\t *   { 'user': 'fred' }\n\t * ];\n\t *\n\t * // The `_.property` iteratee shorthand.\n\t * _.map(users, 'user');\n\t * // => ['barney', 'fred']\n\t */\n\tfunction map(collection, iteratee) {\n\t  var func = isArray(collection) ? arrayMap : baseMap;\n\t  return func(collection, baseIteratee(iteratee, 3));\n\t}\n\n\tmodule.exports = map;\n\n/***/ }),\n/* 589 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar MapCache = __webpack_require__(160);\n\n\t/** Error message constants. */\n\tvar FUNC_ERROR_TEXT = 'Expected a function';\n\n\t/**\n\t * Creates a function that memoizes the result of `func`. If `resolver` is\n\t * provided, it determines the cache key for storing the result based on the\n\t * arguments provided to the memoized function. By default, the first argument\n\t * provided to the memoized function is used as the map cache key. The `func`\n\t * is invoked with the `this` binding of the memoized function.\n\t *\n\t * **Note:** The cache is exposed as the `cache` property on the memoized\n\t * function. Its creation may be customized by replacing the `_.memoize.Cache`\n\t * constructor with one whose instances implement the\n\t * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object)\n\t * method interface of `clear`, `delete`, `get`, `has`, and `set`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Function\n\t * @param {Function} func The function to have its output memoized.\n\t * @param {Function} [resolver] The function to resolve the cache key.\n\t * @returns {Function} Returns the new memoized function.\n\t * @example\n\t *\n\t * var object = { 'a': 1, 'b': 2 };\n\t * var other = { 'c': 3, 'd': 4 };\n\t *\n\t * var values = _.memoize(_.values);\n\t * values(object);\n\t * // => [1, 2]\n\t *\n\t * values(other);\n\t * // => [3, 4]\n\t *\n\t * object.a = 2;\n\t * values(object);\n\t * // => [1, 2]\n\t *\n\t * // Modify the result cache.\n\t * values.cache.set(object, ['a', 'b']);\n\t * values(object);\n\t * // => ['a', 'b']\n\t *\n\t * // Replace `_.memoize.Cache`.\n\t * _.memoize.Cache = WeakMap;\n\t */\n\tfunction memoize(func, resolver) {\n\t  if (typeof func != 'function' || resolver != null && typeof resolver != 'function') {\n\t    throw new TypeError(FUNC_ERROR_TEXT);\n\t  }\n\t  var memoized = function memoized() {\n\t    var args = arguments,\n\t        key = resolver ? resolver.apply(this, args) : args[0],\n\t        cache = memoized.cache;\n\n\t    if (cache.has(key)) {\n\t      return cache.get(key);\n\t    }\n\t    var result = func.apply(this, args);\n\t    memoized.cache = cache.set(key, result) || cache;\n\t    return result;\n\t  };\n\t  memoized.cache = new (memoize.Cache || MapCache)();\n\t  return memoized;\n\t}\n\n\t// Expose `MapCache`.\n\tmemoize.Cache = MapCache;\n\n\tmodule.exports = memoize;\n\n/***/ }),\n/* 590 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseMerge = __webpack_require__(504),\n\t    createAssigner = __webpack_require__(103);\n\n\t/**\n\t * This method is like `_.merge` except that it accepts `customizer` which\n\t * is invoked to produce the merged values of the destination and source\n\t * properties. If `customizer` returns `undefined`, merging is handled by the\n\t * method instead. The `customizer` is invoked with six arguments:\n\t * (objValue, srcValue, key, object, source, stack).\n\t *\n\t * **Note:** This method mutates `object`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Object\n\t * @param {Object} object The destination object.\n\t * @param {...Object} sources The source objects.\n\t * @param {Function} customizer The function to customize assigned values.\n\t * @returns {Object} Returns `object`.\n\t * @example\n\t *\n\t * function customizer(objValue, srcValue) {\n\t *   if (_.isArray(objValue)) {\n\t *     return objValue.concat(srcValue);\n\t *   }\n\t * }\n\t *\n\t * var object = { 'a': [1], 'b': [2] };\n\t * var other = { 'a': [3], 'b': [4] };\n\t *\n\t * _.mergeWith(object, other, customizer);\n\t * // => { 'a': [1, 3], 'b': [2, 4] }\n\t */\n\tvar mergeWith = createAssigner(function (object, source, srcIndex, customizer) {\n\t  baseMerge(object, source, srcIndex, customizer);\n\t});\n\n\tmodule.exports = mergeWith;\n\n/***/ }),\n/* 591 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This method returns `undefined`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.3.0\n\t * @category Util\n\t * @example\n\t *\n\t * _.times(2, _.noop);\n\t * // => [undefined, undefined]\n\t */\n\tfunction noop() {\n\t  // No operation performed.\n\t}\n\n\tmodule.exports = noop;\n\n/***/ }),\n/* 592 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseProperty = __webpack_require__(507),\n\t    basePropertyDeep = __webpack_require__(508),\n\t    isKey = __webpack_require__(173),\n\t    toKey = __webpack_require__(108);\n\n\t/**\n\t * Creates a function that returns the value at `path` of a given object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.4.0\n\t * @category Util\n\t * @param {Array|string} path The path of the property to get.\n\t * @returns {Function} Returns the new accessor function.\n\t * @example\n\t *\n\t * var objects = [\n\t *   { 'a': { 'b': 2 } },\n\t *   { 'a': { 'b': 1 } }\n\t * ];\n\t *\n\t * _.map(objects, _.property('a.b'));\n\t * // => [2, 1]\n\t *\n\t * _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b');\n\t * // => [1, 2]\n\t */\n\tfunction property(path) {\n\t  return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path);\n\t}\n\n\tmodule.exports = property;\n\n/***/ }),\n/* 593 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar basePullAll = __webpack_require__(509);\n\n\t/**\n\t * This method is like `_.pull` except that it accepts an array of values to remove.\n\t *\n\t * **Note:** Unlike `_.difference`, this method mutates `array`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Array\n\t * @param {Array} array The array to modify.\n\t * @param {Array} values The values to remove.\n\t * @returns {Array} Returns `array`.\n\t * @example\n\t *\n\t * var array = ['a', 'b', 'c', 'a', 'b', 'c'];\n\t *\n\t * _.pullAll(array, ['a', 'c']);\n\t * console.log(array);\n\t * // => ['b', 'b']\n\t */\n\tfunction pullAll(array, values) {\n\t  return array && array.length && values && values.length ? basePullAll(array, values) : array;\n\t}\n\n\tmodule.exports = pullAll;\n\n/***/ }),\n/* 594 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseFlatten = __webpack_require__(488),\n\t    baseOrderBy = __webpack_require__(506),\n\t    baseRest = __webpack_require__(101),\n\t    isIterateeCall = __webpack_require__(172);\n\n\t/**\n\t * Creates an array of elements, sorted in ascending order by the results of\n\t * running each element in a collection thru each iteratee. This method\n\t * performs a stable sort, that is, it preserves the original sort order of\n\t * equal elements. The iteratees are invoked with one argument: (value).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Collection\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {...(Function|Function[])} [iteratees=[_.identity]]\n\t *  The iteratees to sort by.\n\t * @returns {Array} Returns the new sorted array.\n\t * @example\n\t *\n\t * var users = [\n\t *   { 'user': 'fred',   'age': 48 },\n\t *   { 'user': 'barney', 'age': 36 },\n\t *   { 'user': 'fred',   'age': 40 },\n\t *   { 'user': 'barney', 'age': 34 }\n\t * ];\n\t *\n\t * _.sortBy(users, [function(o) { return o.user; }]);\n\t * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]]\n\t *\n\t * _.sortBy(users, ['user', 'age']);\n\t * // => objects for [['barney', 34], ['barney', 36], ['fred', 40], ['fred', 48]]\n\t */\n\tvar sortBy = baseRest(function (collection, iteratees) {\n\t  if (collection == null) {\n\t    return [];\n\t  }\n\t  var length = iteratees.length;\n\t  if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) {\n\t    iteratees = [];\n\t  } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) {\n\t    iteratees = [iteratees[0]];\n\t  }\n\t  return baseOrderBy(collection, baseFlatten(iteratees, 1), []);\n\t});\n\n\tmodule.exports = sortBy;\n\n/***/ }),\n/* 595 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseClamp = __webpack_require__(485),\n\t    baseToString = __webpack_require__(253),\n\t    toInteger = __webpack_require__(48),\n\t    toString = __webpack_require__(114);\n\n\t/**\n\t * Checks if `string` starts with the given target string.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category String\n\t * @param {string} [string=''] The string to inspect.\n\t * @param {string} [target] The string to search for.\n\t * @param {number} [position=0] The position to search from.\n\t * @returns {boolean} Returns `true` if `string` starts with `target`,\n\t *  else `false`.\n\t * @example\n\t *\n\t * _.startsWith('abc', 'a');\n\t * // => true\n\t *\n\t * _.startsWith('abc', 'b');\n\t * // => false\n\t *\n\t * _.startsWith('abc', 'b', 1);\n\t * // => true\n\t */\n\tfunction startsWith(string, target, position) {\n\t  string = toString(string);\n\t  position = position == null ? 0 : baseClamp(toInteger(position), 0, string.length);\n\n\t  target = baseToString(target);\n\t  return string.slice(position, position + target.length) == target;\n\t}\n\n\tmodule.exports = startsWith;\n\n/***/ }),\n/* 596 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This method returns `false`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.13.0\n\t * @category Util\n\t * @returns {boolean} Returns `false`.\n\t * @example\n\t *\n\t * _.times(2, _.stubFalse);\n\t * // => [false, false]\n\t */\n\tfunction stubFalse() {\n\t  return false;\n\t}\n\n\tmodule.exports = stubFalse;\n\n/***/ }),\n/* 597 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar toNumber = __webpack_require__(598);\n\n\t/** Used as references for various `Number` constants. */\n\tvar INFINITY = 1 / 0,\n\t    MAX_INTEGER = 1.7976931348623157e+308;\n\n\t/**\n\t * Converts `value` to a finite number.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.12.0\n\t * @category Lang\n\t * @param {*} value The value to convert.\n\t * @returns {number} Returns the converted number.\n\t * @example\n\t *\n\t * _.toFinite(3.2);\n\t * // => 3.2\n\t *\n\t * _.toFinite(Number.MIN_VALUE);\n\t * // => 5e-324\n\t *\n\t * _.toFinite(Infinity);\n\t * // => 1.7976931348623157e+308\n\t *\n\t * _.toFinite('3.2');\n\t * // => 3.2\n\t */\n\tfunction toFinite(value) {\n\t  if (!value) {\n\t    return value === 0 ? value : 0;\n\t  }\n\t  value = toNumber(value);\n\t  if (value === INFINITY || value === -INFINITY) {\n\t    var sign = value < 0 ? -1 : 1;\n\t    return sign * MAX_INTEGER;\n\t  }\n\t  return value === value ? value : 0;\n\t}\n\n\tmodule.exports = toFinite;\n\n/***/ }),\n/* 598 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(18),\n\t    isSymbol = __webpack_require__(62);\n\n\t/** Used as references for various `Number` constants. */\n\tvar NAN = 0 / 0;\n\n\t/** Used to match leading and trailing whitespace. */\n\tvar reTrim = /^\\s+|\\s+$/g;\n\n\t/** Used to detect bad signed hexadecimal string values. */\n\tvar reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\n\n\t/** Used to detect binary string values. */\n\tvar reIsBinary = /^0b[01]+$/i;\n\n\t/** Used to detect octal string values. */\n\tvar reIsOctal = /^0o[0-7]+$/i;\n\n\t/** Built-in method references without a dependency on `root`. */\n\tvar freeParseInt = parseInt;\n\n\t/**\n\t * Converts `value` to a number.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to process.\n\t * @returns {number} Returns the number.\n\t * @example\n\t *\n\t * _.toNumber(3.2);\n\t * // => 3.2\n\t *\n\t * _.toNumber(Number.MIN_VALUE);\n\t * // => 5e-324\n\t *\n\t * _.toNumber(Infinity);\n\t * // => Infinity\n\t *\n\t * _.toNumber('3.2');\n\t * // => 3.2\n\t */\n\tfunction toNumber(value) {\n\t  if (typeof value == 'number') {\n\t    return value;\n\t  }\n\t  if (isSymbol(value)) {\n\t    return NAN;\n\t  }\n\t  if (isObject(value)) {\n\t    var other = typeof value.valueOf == 'function' ? value.valueOf() : value;\n\t    value = isObject(other) ? other + '' : other;\n\t  }\n\t  if (typeof value != 'string') {\n\t    return value === 0 ? value : +value;\n\t  }\n\t  value = value.replace(reTrim, '');\n\t  var isBinary = reIsBinary.test(value);\n\t  return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value;\n\t}\n\n\tmodule.exports = toNumber;\n\n/***/ }),\n/* 599 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    keysIn = __webpack_require__(47);\n\n\t/**\n\t * Converts `value` to a plain object flattening inherited enumerable string\n\t * keyed properties of `value` to own properties of the plain object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category Lang\n\t * @param {*} value The value to convert.\n\t * @returns {Object} Returns the converted plain object.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.b = 2;\n\t * }\n\t *\n\t * Foo.prototype.c = 3;\n\t *\n\t * _.assign({ 'a': 1 }, new Foo);\n\t * // => { 'a': 1, 'b': 2 }\n\t *\n\t * _.assign({ 'a': 1 }, _.toPlainObject(new Foo));\n\t * // => { 'a': 1, 'b': 2, 'c': 3 }\n\t */\n\tfunction toPlainObject(value) {\n\t  return copyObject(value, keysIn(value));\n\t}\n\n\tmodule.exports = toPlainObject;\n\n/***/ }),\n/* 600 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseUniq = __webpack_require__(514);\n\n\t/**\n\t * Creates a duplicate-free version of an array, using\n\t * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * for equality comparisons, in which only the first occurrence of each element\n\t * is kept. The order of result values is determined by the order they occur\n\t * in the array.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Array\n\t * @param {Array} array The array to inspect.\n\t * @returns {Array} Returns the new duplicate free array.\n\t * @example\n\t *\n\t * _.uniq([2, 1, 2]);\n\t * // => [2, 1]\n\t */\n\tfunction uniq(array) {\n\t  return array && array.length ? baseUniq(array) : [];\n\t}\n\n\tmodule.exports = uniq;\n\n/***/ }),\n/* 601 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tmodule.exports = minimatch;\n\tminimatch.Minimatch = Minimatch;\n\n\tvar path = { sep: '/' };\n\ttry {\n\t  path = __webpack_require__(19);\n\t} catch (er) {}\n\n\tvar GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {};\n\tvar expand = __webpack_require__(398);\n\n\tvar plTypes = {\n\t  '!': { open: '(?:(?!(?:', close: '))[^/]*?)' },\n\t  '?': { open: '(?:', close: ')?' },\n\t  '+': { open: '(?:', close: ')+' },\n\t  '*': { open: '(?:', close: ')*' },\n\t  '@': { open: '(?:', close: ')' }\n\n\t  // any single thing other than /\n\t  // don't need to escape / when using new RegExp()\n\t};var qmark = '[^/]';\n\n\t// * => any number of characters\n\tvar star = qmark + '*?';\n\n\t// ** when dots are allowed.  Anything goes, except .. and .\n\t// not (^ or / followed by one or two dots followed by $ or /),\n\t// followed by anything, any number of times.\n\tvar twoStarDot = '(?:(?!(?:\\\\\\/|^)(?:\\\\.{1,2})($|\\\\\\/)).)*?';\n\n\t// not a ^ or / followed by a dot,\n\t// followed by anything, any number of times.\n\tvar twoStarNoDot = '(?:(?!(?:\\\\\\/|^)\\\\.).)*?';\n\n\t// characters that need to be escaped in RegExp.\n\tvar reSpecials = charSet('().*{}+?[]^$\\\\!');\n\n\t// \"abc\" -> { a:true, b:true, c:true }\n\tfunction charSet(s) {\n\t  return s.split('').reduce(function (set, c) {\n\t    set[c] = true;\n\t    return set;\n\t  }, {});\n\t}\n\n\t// normalizes slashes.\n\tvar slashSplit = /\\/+/;\n\n\tminimatch.filter = filter;\n\tfunction filter(pattern, options) {\n\t  options = options || {};\n\t  return function (p, i, list) {\n\t    return minimatch(p, pattern, options);\n\t  };\n\t}\n\n\tfunction ext(a, b) {\n\t  a = a || {};\n\t  b = b || {};\n\t  var t = {};\n\t  Object.keys(b).forEach(function (k) {\n\t    t[k] = b[k];\n\t  });\n\t  Object.keys(a).forEach(function (k) {\n\t    t[k] = a[k];\n\t  });\n\t  return t;\n\t}\n\n\tminimatch.defaults = function (def) {\n\t  if (!def || !Object.keys(def).length) return minimatch;\n\n\t  var orig = minimatch;\n\n\t  var m = function minimatch(p, pattern, options) {\n\t    return orig.minimatch(p, pattern, ext(def, options));\n\t  };\n\n\t  m.Minimatch = function Minimatch(pattern, options) {\n\t    return new orig.Minimatch(pattern, ext(def, options));\n\t  };\n\n\t  return m;\n\t};\n\n\tMinimatch.defaults = function (def) {\n\t  if (!def || !Object.keys(def).length) return Minimatch;\n\t  return minimatch.defaults(def).Minimatch;\n\t};\n\n\tfunction minimatch(p, pattern, options) {\n\t  if (typeof pattern !== 'string') {\n\t    throw new TypeError('glob pattern string required');\n\t  }\n\n\t  if (!options) options = {};\n\n\t  // shortcut: comments match nothing.\n\t  if (!options.nocomment && pattern.charAt(0) === '#') {\n\t    return false;\n\t  }\n\n\t  // \"\" only matches \"\"\n\t  if (pattern.trim() === '') return p === '';\n\n\t  return new Minimatch(pattern, options).match(p);\n\t}\n\n\tfunction Minimatch(pattern, options) {\n\t  if (!(this instanceof Minimatch)) {\n\t    return new Minimatch(pattern, options);\n\t  }\n\n\t  if (typeof pattern !== 'string') {\n\t    throw new TypeError('glob pattern string required');\n\t  }\n\n\t  if (!options) options = {};\n\t  pattern = pattern.trim();\n\n\t  // windows support: need to use /, not \\\n\t  if (path.sep !== '/') {\n\t    pattern = pattern.split(path.sep).join('/');\n\t  }\n\n\t  this.options = options;\n\t  this.set = [];\n\t  this.pattern = pattern;\n\t  this.regexp = null;\n\t  this.negate = false;\n\t  this.comment = false;\n\t  this.empty = false;\n\n\t  // make the set of regexps etc.\n\t  this.make();\n\t}\n\n\tMinimatch.prototype.debug = function () {};\n\n\tMinimatch.prototype.make = make;\n\tfunction make() {\n\t  // don't do it more than once.\n\t  if (this._made) return;\n\n\t  var pattern = this.pattern;\n\t  var options = this.options;\n\n\t  // empty patterns and comments match nothing.\n\t  if (!options.nocomment && pattern.charAt(0) === '#') {\n\t    this.comment = true;\n\t    return;\n\t  }\n\t  if (!pattern) {\n\t    this.empty = true;\n\t    return;\n\t  }\n\n\t  // step 1: figure out negation, etc.\n\t  this.parseNegate();\n\n\t  // step 2: expand braces\n\t  var set = this.globSet = this.braceExpand();\n\n\t  if (options.debug) this.debug = console.error;\n\n\t  this.debug(this.pattern, set);\n\n\t  // step 3: now we have a set, so turn each one into a series of path-portion\n\t  // matching patterns.\n\t  // These will be regexps, except in the case of \"**\", which is\n\t  // set to the GLOBSTAR object for globstar behavior,\n\t  // and will not contain any / characters\n\t  set = this.globParts = set.map(function (s) {\n\t    return s.split(slashSplit);\n\t  });\n\n\t  this.debug(this.pattern, set);\n\n\t  // glob --> regexps\n\t  set = set.map(function (s, si, set) {\n\t    return s.map(this.parse, this);\n\t  }, this);\n\n\t  this.debug(this.pattern, set);\n\n\t  // filter out everything that didn't compile properly.\n\t  set = set.filter(function (s) {\n\t    return s.indexOf(false) === -1;\n\t  });\n\n\t  this.debug(this.pattern, set);\n\n\t  this.set = set;\n\t}\n\n\tMinimatch.prototype.parseNegate = parseNegate;\n\tfunction parseNegate() {\n\t  var pattern = this.pattern;\n\t  var negate = false;\n\t  var options = this.options;\n\t  var negateOffset = 0;\n\n\t  if (options.nonegate) return;\n\n\t  for (var i = 0, l = pattern.length; i < l && pattern.charAt(i) === '!'; i++) {\n\t    negate = !negate;\n\t    negateOffset++;\n\t  }\n\n\t  if (negateOffset) this.pattern = pattern.substr(negateOffset);\n\t  this.negate = negate;\n\t}\n\n\t// Brace expansion:\n\t// a{b,c}d -> abd acd\n\t// a{b,}c -> abc ac\n\t// a{0..3}d -> a0d a1d a2d a3d\n\t// a{b,c{d,e}f}g -> abg acdfg acefg\n\t// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg\n\t//\n\t// Invalid sets are not expanded.\n\t// a{2..}b -> a{2..}b\n\t// a{b}c -> a{b}c\n\tminimatch.braceExpand = function (pattern, options) {\n\t  return braceExpand(pattern, options);\n\t};\n\n\tMinimatch.prototype.braceExpand = braceExpand;\n\n\tfunction braceExpand(pattern, options) {\n\t  if (!options) {\n\t    if (this instanceof Minimatch) {\n\t      options = this.options;\n\t    } else {\n\t      options = {};\n\t    }\n\t  }\n\n\t  pattern = typeof pattern === 'undefined' ? this.pattern : pattern;\n\n\t  if (typeof pattern === 'undefined') {\n\t    throw new TypeError('undefined pattern');\n\t  }\n\n\t  if (options.nobrace || !pattern.match(/\\{.*\\}/)) {\n\t    // shortcut. no need to expand.\n\t    return [pattern];\n\t  }\n\n\t  return expand(pattern);\n\t}\n\n\t// parse a component of the expanded set.\n\t// At this point, no pattern may contain \"/\" in it\n\t// so we're going to return a 2d array, where each entry is the full\n\t// pattern, split on '/', and then turned into a regular expression.\n\t// A regexp is made at the end which joins each array with an\n\t// escaped /, and another full one which joins each regexp with |.\n\t//\n\t// Following the lead of Bash 4.1, note that \"**\" only has special meaning\n\t// when it is the *only* thing in a path portion.  Otherwise, any series\n\t// of * is equivalent to a single *.  Globstar behavior is enabled by\n\t// default, and can be disabled by setting options.noglobstar.\n\tMinimatch.prototype.parse = parse;\n\tvar SUBPARSE = {};\n\tfunction parse(pattern, isSub) {\n\t  if (pattern.length > 1024 * 64) {\n\t    throw new TypeError('pattern is too long');\n\t  }\n\n\t  var options = this.options;\n\n\t  // shortcuts\n\t  if (!options.noglobstar && pattern === '**') return GLOBSTAR;\n\t  if (pattern === '') return '';\n\n\t  var re = '';\n\t  var hasMagic = !!options.nocase;\n\t  var escaping = false;\n\t  // ? => one single character\n\t  var patternListStack = [];\n\t  var negativeLists = [];\n\t  var stateChar;\n\t  var inClass = false;\n\t  var reClassStart = -1;\n\t  var classStart = -1;\n\t  // . and .. never match anything that doesn't start with .,\n\t  // even when options.dot is set.\n\t  var patternStart = pattern.charAt(0) === '.' ? '' // anything\n\t  // not (start or / followed by . or .. followed by / or end)\n\t  : options.dot ? '(?!(?:^|\\\\\\/)\\\\.{1,2}(?:$|\\\\\\/))' : '(?!\\\\.)';\n\t  var self = this;\n\n\t  function clearStateChar() {\n\t    if (stateChar) {\n\t      // we had some state-tracking character\n\t      // that wasn't consumed by this pass.\n\t      switch (stateChar) {\n\t        case '*':\n\t          re += star;\n\t          hasMagic = true;\n\t          break;\n\t        case '?':\n\t          re += qmark;\n\t          hasMagic = true;\n\t          break;\n\t        default:\n\t          re += '\\\\' + stateChar;\n\t          break;\n\t      }\n\t      self.debug('clearStateChar %j %j', stateChar, re);\n\t      stateChar = false;\n\t    }\n\t  }\n\n\t  for (var i = 0, len = pattern.length, c; i < len && (c = pattern.charAt(i)); i++) {\n\t    this.debug('%s\\t%s %s %j', pattern, i, re, c);\n\n\t    // skip over any that are escaped.\n\t    if (escaping && reSpecials[c]) {\n\t      re += '\\\\' + c;\n\t      escaping = false;\n\t      continue;\n\t    }\n\n\t    switch (c) {\n\t      case '/':\n\t        // completely not allowed, even escaped.\n\t        // Should already be path-split by now.\n\t        return false;\n\n\t      case '\\\\':\n\t        clearStateChar();\n\t        escaping = true;\n\t        continue;\n\n\t      // the various stateChar values\n\t      // for the \"extglob\" stuff.\n\t      case '?':\n\t      case '*':\n\t      case '+':\n\t      case '@':\n\t      case '!':\n\t        this.debug('%s\\t%s %s %j <-- stateChar', pattern, i, re, c);\n\n\t        // all of those are literals inside a class, except that\n\t        // the glob [!a] means [^a] in regexp\n\t        if (inClass) {\n\t          this.debug('  in class');\n\t          if (c === '!' && i === classStart + 1) c = '^';\n\t          re += c;\n\t          continue;\n\t        }\n\n\t        // if we already have a stateChar, then it means\n\t        // that there was something like ** or +? in there.\n\t        // Handle the stateChar, then proceed with this one.\n\t        self.debug('call clearStateChar %j', stateChar);\n\t        clearStateChar();\n\t        stateChar = c;\n\t        // if extglob is disabled, then +(asdf|foo) isn't a thing.\n\t        // just clear the statechar *now*, rather than even diving into\n\t        // the patternList stuff.\n\t        if (options.noext) clearStateChar();\n\t        continue;\n\n\t      case '(':\n\t        if (inClass) {\n\t          re += '(';\n\t          continue;\n\t        }\n\n\t        if (!stateChar) {\n\t          re += '\\\\(';\n\t          continue;\n\t        }\n\n\t        patternListStack.push({\n\t          type: stateChar,\n\t          start: i - 1,\n\t          reStart: re.length,\n\t          open: plTypes[stateChar].open,\n\t          close: plTypes[stateChar].close\n\t        });\n\t        // negation is (?:(?!js)[^/]*)\n\t        re += stateChar === '!' ? '(?:(?!(?:' : '(?:';\n\t        this.debug('plType %j %j', stateChar, re);\n\t        stateChar = false;\n\t        continue;\n\n\t      case ')':\n\t        if (inClass || !patternListStack.length) {\n\t          re += '\\\\)';\n\t          continue;\n\t        }\n\n\t        clearStateChar();\n\t        hasMagic = true;\n\t        var pl = patternListStack.pop();\n\t        // negation is (?:(?!js)[^/]*)\n\t        // The others are (?:<pattern>)<type>\n\t        re += pl.close;\n\t        if (pl.type === '!') {\n\t          negativeLists.push(pl);\n\t        }\n\t        pl.reEnd = re.length;\n\t        continue;\n\n\t      case '|':\n\t        if (inClass || !patternListStack.length || escaping) {\n\t          re += '\\\\|';\n\t          escaping = false;\n\t          continue;\n\t        }\n\n\t        clearStateChar();\n\t        re += '|';\n\t        continue;\n\n\t      // these are mostly the same in regexp and glob\n\t      case '[':\n\t        // swallow any state-tracking char before the [\n\t        clearStateChar();\n\n\t        if (inClass) {\n\t          re += '\\\\' + c;\n\t          continue;\n\t        }\n\n\t        inClass = true;\n\t        classStart = i;\n\t        reClassStart = re.length;\n\t        re += c;\n\t        continue;\n\n\t      case ']':\n\t        //  a right bracket shall lose its special\n\t        //  meaning and represent itself in\n\t        //  a bracket expression if it occurs\n\t        //  first in the list.  -- POSIX.2 2.8.3.2\n\t        if (i === classStart + 1 || !inClass) {\n\t          re += '\\\\' + c;\n\t          escaping = false;\n\t          continue;\n\t        }\n\n\t        // handle the case where we left a class open.\n\t        // \"[z-a]\" is valid, equivalent to \"\\[z-a\\]\"\n\t        if (inClass) {\n\t          // split where the last [ was, make sure we don't have\n\t          // an invalid re. if so, re-walk the contents of the\n\t          // would-be class to re-translate any characters that\n\t          // were passed through as-is\n\t          // TODO: It would probably be faster to determine this\n\t          // without a try/catch and a new RegExp, but it's tricky\n\t          // to do safely.  For now, this is safe and works.\n\t          var cs = pattern.substring(classStart + 1, i);\n\t          try {\n\t            RegExp('[' + cs + ']');\n\t          } catch (er) {\n\t            // not a valid class!\n\t            var sp = this.parse(cs, SUBPARSE);\n\t            re = re.substr(0, reClassStart) + '\\\\[' + sp[0] + '\\\\]';\n\t            hasMagic = hasMagic || sp[1];\n\t            inClass = false;\n\t            continue;\n\t          }\n\t        }\n\n\t        // finish up the class.\n\t        hasMagic = true;\n\t        inClass = false;\n\t        re += c;\n\t        continue;\n\n\t      default:\n\t        // swallow any state char that wasn't consumed\n\t        clearStateChar();\n\n\t        if (escaping) {\n\t          // no need\n\t          escaping = false;\n\t        } else if (reSpecials[c] && !(c === '^' && inClass)) {\n\t          re += '\\\\';\n\t        }\n\n\t        re += c;\n\n\t    } // switch\n\t  } // for\n\n\t  // handle the case where we left a class open.\n\t  // \"[abc\" is valid, equivalent to \"\\[abc\"\n\t  if (inClass) {\n\t    // split where the last [ was, and escape it\n\t    // this is a huge pita.  We now have to re-walk\n\t    // the contents of the would-be class to re-translate\n\t    // any characters that were passed through as-is\n\t    cs = pattern.substr(classStart + 1);\n\t    sp = this.parse(cs, SUBPARSE);\n\t    re = re.substr(0, reClassStart) + '\\\\[' + sp[0];\n\t    hasMagic = hasMagic || sp[1];\n\t  }\n\n\t  // handle the case where we had a +( thing at the *end*\n\t  // of the pattern.\n\t  // each pattern list stack adds 3 chars, and we need to go through\n\t  // and escape any | chars that were passed through as-is for the regexp.\n\t  // Go through and escape them, taking care not to double-escape any\n\t  // | chars that were already escaped.\n\t  for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {\n\t    var tail = re.slice(pl.reStart + pl.open.length);\n\t    this.debug('setting tail', re, pl);\n\t    // maybe some even number of \\, then maybe 1 \\, followed by a |\n\t    tail = tail.replace(/((?:\\\\{2}){0,64})(\\\\?)\\|/g, function (_, $1, $2) {\n\t      if (!$2) {\n\t        // the | isn't already escaped, so escape it.\n\t        $2 = '\\\\';\n\t      }\n\n\t      // need to escape all those slashes *again*, without escaping the\n\t      // one that we need for escaping the | character.  As it works out,\n\t      // escaping an even number of slashes can be done by simply repeating\n\t      // it exactly after itself.  That's why this trick works.\n\t      //\n\t      // I am sorry that you have to see this.\n\t      return $1 + $1 + $2 + '|';\n\t    });\n\n\t    this.debug('tail=%j\\n   %s', tail, tail, pl, re);\n\t    var t = pl.type === '*' ? star : pl.type === '?' ? qmark : '\\\\' + pl.type;\n\n\t    hasMagic = true;\n\t    re = re.slice(0, pl.reStart) + t + '\\\\(' + tail;\n\t  }\n\n\t  // handle trailing things that only matter at the very end.\n\t  clearStateChar();\n\t  if (escaping) {\n\t    // trailing \\\\\n\t    re += '\\\\\\\\';\n\t  }\n\n\t  // only need to apply the nodot start if the re starts with\n\t  // something that could conceivably capture a dot\n\t  var addPatternStart = false;\n\t  switch (re.charAt(0)) {\n\t    case '.':\n\t    case '[':\n\t    case '(':\n\t      addPatternStart = true;\n\t  }\n\n\t  // Hack to work around lack of negative lookbehind in JS\n\t  // A pattern like: *.!(x).!(y|z) needs to ensure that a name\n\t  // like 'a.xyz.yz' doesn't match.  So, the first negative\n\t  // lookahead, has to look ALL the way ahead, to the end of\n\t  // the pattern.\n\t  for (var n = negativeLists.length - 1; n > -1; n--) {\n\t    var nl = negativeLists[n];\n\n\t    var nlBefore = re.slice(0, nl.reStart);\n\t    var nlFirst = re.slice(nl.reStart, nl.reEnd - 8);\n\t    var nlLast = re.slice(nl.reEnd - 8, nl.reEnd);\n\t    var nlAfter = re.slice(nl.reEnd);\n\n\t    nlLast += nlAfter;\n\n\t    // Handle nested stuff like *(*.js|!(*.json)), where open parens\n\t    // mean that we should *not* include the ) in the bit that is considered\n\t    // \"after\" the negated section.\n\t    var openParensBefore = nlBefore.split('(').length - 1;\n\t    var cleanAfter = nlAfter;\n\t    for (i = 0; i < openParensBefore; i++) {\n\t      cleanAfter = cleanAfter.replace(/\\)[+*?]?/, '');\n\t    }\n\t    nlAfter = cleanAfter;\n\n\t    var dollar = '';\n\t    if (nlAfter === '' && isSub !== SUBPARSE) {\n\t      dollar = '$';\n\t    }\n\t    var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast;\n\t    re = newRe;\n\t  }\n\n\t  // if the re is not \"\" at this point, then we need to make sure\n\t  // it doesn't match against an empty path part.\n\t  // Otherwise a/* will match a/, which it should not.\n\t  if (re !== '' && hasMagic) {\n\t    re = '(?=.)' + re;\n\t  }\n\n\t  if (addPatternStart) {\n\t    re = patternStart + re;\n\t  }\n\n\t  // parsing just a piece of a larger pattern.\n\t  if (isSub === SUBPARSE) {\n\t    return [re, hasMagic];\n\t  }\n\n\t  // skip the regexp for non-magical patterns\n\t  // unescape anything in it, though, so that it'll be\n\t  // an exact match against a file etc.\n\t  if (!hasMagic) {\n\t    return globUnescape(pattern);\n\t  }\n\n\t  var flags = options.nocase ? 'i' : '';\n\t  try {\n\t    var regExp = new RegExp('^' + re + '$', flags);\n\t  } catch (er) {\n\t    // If it was an invalid regular expression, then it can't match\n\t    // anything.  This trick looks for a character after the end of\n\t    // the string, which is of course impossible, except in multi-line\n\t    // mode, but it's not a /m regex.\n\t    return new RegExp('$.');\n\t  }\n\n\t  regExp._glob = pattern;\n\t  regExp._src = re;\n\n\t  return regExp;\n\t}\n\n\tminimatch.makeRe = function (pattern, options) {\n\t  return new Minimatch(pattern, options || {}).makeRe();\n\t};\n\n\tMinimatch.prototype.makeRe = makeRe;\n\tfunction makeRe() {\n\t  if (this.regexp || this.regexp === false) return this.regexp;\n\n\t  // at this point, this.set is a 2d array of partial\n\t  // pattern strings, or \"**\".\n\t  //\n\t  // It's better to use .match().  This function shouldn't\n\t  // be used, really, but it's pretty convenient sometimes,\n\t  // when you just want to work with a regex.\n\t  var set = this.set;\n\n\t  if (!set.length) {\n\t    this.regexp = false;\n\t    return this.regexp;\n\t  }\n\t  var options = this.options;\n\n\t  var twoStar = options.noglobstar ? star : options.dot ? twoStarDot : twoStarNoDot;\n\t  var flags = options.nocase ? 'i' : '';\n\n\t  var re = set.map(function (pattern) {\n\t    return pattern.map(function (p) {\n\t      return p === GLOBSTAR ? twoStar : typeof p === 'string' ? regExpEscape(p) : p._src;\n\t    }).join('\\\\\\/');\n\t  }).join('|');\n\n\t  // must match entire pattern\n\t  // ending in a * or ** will make it less strict.\n\t  re = '^(?:' + re + ')$';\n\n\t  // can match anything, as long as it's not this.\n\t  if (this.negate) re = '^(?!' + re + ').*$';\n\n\t  try {\n\t    this.regexp = new RegExp(re, flags);\n\t  } catch (ex) {\n\t    this.regexp = false;\n\t  }\n\t  return this.regexp;\n\t}\n\n\tminimatch.match = function (list, pattern, options) {\n\t  options = options || {};\n\t  var mm = new Minimatch(pattern, options);\n\t  list = list.filter(function (f) {\n\t    return mm.match(f);\n\t  });\n\t  if (mm.options.nonull && !list.length) {\n\t    list.push(pattern);\n\t  }\n\t  return list;\n\t};\n\n\tMinimatch.prototype.match = match;\n\tfunction match(f, partial) {\n\t  this.debug('match', f, this.pattern);\n\t  // short-circuit in the case of busted things.\n\t  // comments, etc.\n\t  if (this.comment) return false;\n\t  if (this.empty) return f === '';\n\n\t  if (f === '/' && partial) return true;\n\n\t  var options = this.options;\n\n\t  // windows: need to use /, not \\\n\t  if (path.sep !== '/') {\n\t    f = f.split(path.sep).join('/');\n\t  }\n\n\t  // treat the test path as a set of pathparts.\n\t  f = f.split(slashSplit);\n\t  this.debug(this.pattern, 'split', f);\n\n\t  // just ONE of the pattern sets in this.set needs to match\n\t  // in order for it to be valid.  If negating, then just one\n\t  // match means that we have failed.\n\t  // Either way, return on the first hit.\n\n\t  var set = this.set;\n\t  this.debug(this.pattern, 'set', set);\n\n\t  // Find the basename of the path by looking for the last non-empty segment\n\t  var filename;\n\t  var i;\n\t  for (i = f.length - 1; i >= 0; i--) {\n\t    filename = f[i];\n\t    if (filename) break;\n\t  }\n\n\t  for (i = 0; i < set.length; i++) {\n\t    var pattern = set[i];\n\t    var file = f;\n\t    if (options.matchBase && pattern.length === 1) {\n\t      file = [filename];\n\t    }\n\t    var hit = this.matchOne(file, pattern, partial);\n\t    if (hit) {\n\t      if (options.flipNegate) return true;\n\t      return !this.negate;\n\t    }\n\t  }\n\n\t  // didn't get any hits.  this is success if it's a negative\n\t  // pattern, failure otherwise.\n\t  if (options.flipNegate) return false;\n\t  return this.negate;\n\t}\n\n\t// set partial to true to test if, for example,\n\t// \"/a/b\" matches the start of \"/*/b/*/d\"\n\t// Partial means, if you run out of file before you run\n\t// out of pattern, then that's fine, as long as all\n\t// the parts match.\n\tMinimatch.prototype.matchOne = function (file, pattern, partial) {\n\t  var options = this.options;\n\n\t  this.debug('matchOne', { 'this': this, file: file, pattern: pattern });\n\n\t  this.debug('matchOne', file.length, pattern.length);\n\n\t  for (var fi = 0, pi = 0, fl = file.length, pl = pattern.length; fi < fl && pi < pl; fi++, pi++) {\n\t    this.debug('matchOne loop');\n\t    var p = pattern[pi];\n\t    var f = file[fi];\n\n\t    this.debug(pattern, p, f);\n\n\t    // should be impossible.\n\t    // some invalid regexp stuff in the set.\n\t    if (p === false) return false;\n\n\t    if (p === GLOBSTAR) {\n\t      this.debug('GLOBSTAR', [pattern, p, f]);\n\n\t      // \"**\"\n\t      // a/**/b/**/c would match the following:\n\t      // a/b/x/y/z/c\n\t      // a/x/y/z/b/c\n\t      // a/b/x/b/x/c\n\t      // a/b/c\n\t      // To do this, take the rest of the pattern after\n\t      // the **, and see if it would match the file remainder.\n\t      // If so, return success.\n\t      // If not, the ** \"swallows\" a segment, and try again.\n\t      // This is recursively awful.\n\t      //\n\t      // a/**/b/**/c matching a/b/x/y/z/c\n\t      // - a matches a\n\t      // - doublestar\n\t      //   - matchOne(b/x/y/z/c, b/**/c)\n\t      //     - b matches b\n\t      //     - doublestar\n\t      //       - matchOne(x/y/z/c, c) -> no\n\t      //       - matchOne(y/z/c, c) -> no\n\t      //       - matchOne(z/c, c) -> no\n\t      //       - matchOne(c, c) yes, hit\n\t      var fr = fi;\n\t      var pr = pi + 1;\n\t      if (pr === pl) {\n\t        this.debug('** at the end');\n\t        // a ** at the end will just swallow the rest.\n\t        // We have found a match.\n\t        // however, it will not swallow /.x, unless\n\t        // options.dot is set.\n\t        // . and .. are *never* matched by **, for explosively\n\t        // exponential reasons.\n\t        for (; fi < fl; fi++) {\n\t          if (file[fi] === '.' || file[fi] === '..' || !options.dot && file[fi].charAt(0) === '.') return false;\n\t        }\n\t        return true;\n\t      }\n\n\t      // ok, let's see if we can swallow whatever we can.\n\t      while (fr < fl) {\n\t        var swallowee = file[fr];\n\n\t        this.debug('\\nglobstar while', file, fr, pattern, pr, swallowee);\n\n\t        // XXX remove this slice.  Just pass the start index.\n\t        if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {\n\t          this.debug('globstar found match!', fr, fl, swallowee);\n\t          // found a match.\n\t          return true;\n\t        } else {\n\t          // can't swallow \".\" or \"..\" ever.\n\t          // can only swallow \".foo\" when explicitly asked.\n\t          if (swallowee === '.' || swallowee === '..' || !options.dot && swallowee.charAt(0) === '.') {\n\t            this.debug('dot detected!', file, fr, pattern, pr);\n\t            break;\n\t          }\n\n\t          // ** swallows a segment, and continue.\n\t          this.debug('globstar swallow a segment, and continue');\n\t          fr++;\n\t        }\n\t      }\n\n\t      // no match was found.\n\t      // However, in partial mode, we can't say this is necessarily over.\n\t      // If there's more *pattern* left, then\n\t      if (partial) {\n\t        // ran out of file\n\t        this.debug('\\n>>> no match, partial?', file, fr, pattern, pr);\n\t        if (fr === fl) return true;\n\t      }\n\t      return false;\n\t    }\n\n\t    // something other than **\n\t    // non-magic patterns just have to match exactly\n\t    // patterns with magic have been turned into regexps.\n\t    var hit;\n\t    if (typeof p === 'string') {\n\t      if (options.nocase) {\n\t        hit = f.toLowerCase() === p.toLowerCase();\n\t      } else {\n\t        hit = f === p;\n\t      }\n\t      this.debug('string match', p, f, hit);\n\t    } else {\n\t      hit = f.match(p);\n\t      this.debug('pattern match', p, f, hit);\n\t    }\n\n\t    if (!hit) return false;\n\t  }\n\n\t  // Note: ending in / means that we'll get a final \"\"\n\t  // at the end of the pattern.  This can only match a\n\t  // corresponding \"\" at the end of the file.\n\t  // If the file ends in /, then it can only match a\n\t  // a pattern that ends in /, unless the pattern just\n\t  // doesn't have any more for it. But, a/b/ should *not*\n\t  // match \"a/b/*\", even though \"\" matches against the\n\t  // [^/]*? pattern, except in partial mode, where it might\n\t  // simply not be reached yet.\n\t  // However, a/b/ should still satisfy a/*\n\n\t  // now either we fell off the end of the pattern, or we're done.\n\t  if (fi === fl && pi === pl) {\n\t    // ran out of pattern and filename at the same time.\n\t    // an exact hit!\n\t    return true;\n\t  } else if (fi === fl) {\n\t    // ran out of file, but still had pattern left.\n\t    // this is ok if we're doing the match as part of\n\t    // a glob fs traversal.\n\t    return partial;\n\t  } else if (pi === pl) {\n\t    // ran out of pattern, still have file left.\n\t    // this is only acceptable if we're on the very last\n\t    // empty segment of a file with a trailing slash.\n\t    // a/* should match a/b/\n\t    var emptyFileEnd = fi === fl - 1 && file[fi] === '';\n\t    return emptyFileEnd;\n\t  }\n\n\t  // should be unreachable.\n\t  throw new Error('wtf?');\n\t};\n\n\t// replace stuff like \\* with *\n\tfunction globUnescape(s) {\n\t  return s.replace(/\\\\(.)/g, '$1');\n\t}\n\n\tfunction regExpEscape(s) {\n\t  return s.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, '\\\\$&');\n\t}\n\n/***/ }),\n/* 602 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/**\n\t * Helpers.\n\t */\n\n\tvar s = 1000;\n\tvar m = s * 60;\n\tvar h = m * 60;\n\tvar d = h * 24;\n\tvar y = d * 365.25;\n\n\t/**\n\t * Parse or format the given `val`.\n\t *\n\t * Options:\n\t *\n\t *  - `long` verbose formatting [false]\n\t *\n\t * @param {String|Number} val\n\t * @param {Object} [options]\n\t * @throws {Error} throw an error if val is not a non-empty string or a number\n\t * @return {String|Number}\n\t * @api public\n\t */\n\n\tmodule.exports = function (val, options) {\n\t  options = options || {};\n\t  var type = typeof val === 'undefined' ? 'undefined' : _typeof(val);\n\t  if (type === 'string' && val.length > 0) {\n\t    return parse(val);\n\t  } else if (type === 'number' && isNaN(val) === false) {\n\t    return options.long ? fmtLong(val) : fmtShort(val);\n\t  }\n\t  throw new Error('val is not a non-empty string or a valid number. val=' + JSON.stringify(val));\n\t};\n\n\t/**\n\t * Parse the given `str` and return milliseconds.\n\t *\n\t * @param {String} str\n\t * @return {Number}\n\t * @api private\n\t */\n\n\tfunction parse(str) {\n\t  str = String(str);\n\t  if (str.length > 100) {\n\t    return;\n\t  }\n\t  var match = /^((?:\\d+)?\\.?\\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec(str);\n\t  if (!match) {\n\t    return;\n\t  }\n\t  var n = parseFloat(match[1]);\n\t  var type = (match[2] || 'ms').toLowerCase();\n\t  switch (type) {\n\t    case 'years':\n\t    case 'year':\n\t    case 'yrs':\n\t    case 'yr':\n\t    case 'y':\n\t      return n * y;\n\t    case 'days':\n\t    case 'day':\n\t    case 'd':\n\t      return n * d;\n\t    case 'hours':\n\t    case 'hour':\n\t    case 'hrs':\n\t    case 'hr':\n\t    case 'h':\n\t      return n * h;\n\t    case 'minutes':\n\t    case 'minute':\n\t    case 'mins':\n\t    case 'min':\n\t    case 'm':\n\t      return n * m;\n\t    case 'seconds':\n\t    case 'second':\n\t    case 'secs':\n\t    case 'sec':\n\t    case 's':\n\t      return n * s;\n\t    case 'milliseconds':\n\t    case 'millisecond':\n\t    case 'msecs':\n\t    case 'msec':\n\t    case 'ms':\n\t      return n;\n\t    default:\n\t      return undefined;\n\t  }\n\t}\n\n\t/**\n\t * Short format for `ms`.\n\t *\n\t * @param {Number} ms\n\t * @return {String}\n\t * @api private\n\t */\n\n\tfunction fmtShort(ms) {\n\t  if (ms >= d) {\n\t    return Math.round(ms / d) + 'd';\n\t  }\n\t  if (ms >= h) {\n\t    return Math.round(ms / h) + 'h';\n\t  }\n\t  if (ms >= m) {\n\t    return Math.round(ms / m) + 'm';\n\t  }\n\t  if (ms >= s) {\n\t    return Math.round(ms / s) + 's';\n\t  }\n\t  return ms + 'ms';\n\t}\n\n\t/**\n\t * Long format for `ms`.\n\t *\n\t * @param {Number} ms\n\t * @return {String}\n\t * @api private\n\t */\n\n\tfunction fmtLong(ms) {\n\t  return plural(ms, d, 'day') || plural(ms, h, 'hour') || plural(ms, m, 'minute') || plural(ms, s, 'second') || ms + ' ms';\n\t}\n\n\t/**\n\t * Pluralization helper.\n\t */\n\n\tfunction plural(ms, n, name) {\n\t  if (ms < n) {\n\t    return;\n\t  }\n\t  if (ms < n * 1.5) {\n\t    return Math.floor(ms / n) + ' ' + name;\n\t  }\n\t  return Math.ceil(ms / n) + ' ' + name + 's';\n\t}\n\n/***/ }),\n/* 603 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = Number.isNaN || function (x) {\n\t\treturn x !== x;\n\t};\n\n/***/ }),\n/* 604 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {'use strict';\n\n\tfunction posix(path) {\n\t\treturn path.charAt(0) === '/';\n\t}\n\n\tfunction win32(path) {\n\t\t// https://github.com/nodejs/node/blob/b3fcc245fb25539909ef1d5eaa01dbf92e168633/lib/path.js#L56\n\t\tvar splitDeviceRe = /^([a-zA-Z]:|[\\\\\\/]{2}[^\\\\\\/]+[\\\\\\/]+[^\\\\\\/]+)?([\\\\\\/])?([\\s\\S]*?)$/;\n\t\tvar result = splitDeviceRe.exec(path);\n\t\tvar device = result[1] || '';\n\t\tvar isUnc = Boolean(device && device.charAt(1) !== ':');\n\n\t\t// UNC paths are always absolute\n\t\treturn Boolean(result[2] || isUnc);\n\t}\n\n\tmodule.exports = process.platform === 'win32' ? win32 : posix;\n\tmodule.exports.posix = posix;\n\tmodule.exports.win32 = win32;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 605 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _util = __webpack_require__(116);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\t/**\n\t * Copyright (c) 2014, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * https://raw.github.com/facebook/regenerator/master/LICENSE file. An\n\t * additional grant of patent rights can be found in the PATENTS file in\n\t * the same directory.\n\t */\n\n\tvar hasOwn = Object.prototype.hasOwnProperty;\n\n\t// The hoist function takes a FunctionExpression or FunctionDeclaration\n\t// and replaces any Declaration nodes in its body with assignments, then\n\t// returns a VariableDeclaration containing just the names of the removed\n\t// declarations.\n\texports.hoist = function (funPath) {\n\t  t.assertFunction(funPath.node);\n\n\t  var vars = {};\n\n\t  function varDeclToExpr(vdec, includeIdentifiers) {\n\t    t.assertVariableDeclaration(vdec);\n\t    // TODO assert.equal(vdec.kind, \"var\");\n\t    var exprs = [];\n\n\t    vdec.declarations.forEach(function (dec) {\n\t      // Note: We duplicate 'dec.id' here to ensure that the variable declaration IDs don't\n\t      // have the same 'loc' value, since that can make sourcemaps and retainLines behave poorly.\n\t      vars[dec.id.name] = t.identifier(dec.id.name);\n\n\t      if (dec.init) {\n\t        exprs.push(t.assignmentExpression(\"=\", dec.id, dec.init));\n\t      } else if (includeIdentifiers) {\n\t        exprs.push(dec.id);\n\t      }\n\t    });\n\n\t    if (exprs.length === 0) return null;\n\n\t    if (exprs.length === 1) return exprs[0];\n\n\t    return t.sequenceExpression(exprs);\n\t  }\n\n\t  funPath.get(\"body\").traverse({\n\t    VariableDeclaration: {\n\t      exit: function exit(path) {\n\t        var expr = varDeclToExpr(path.node, false);\n\t        if (expr === null) {\n\t          path.remove();\n\t        } else {\n\t          // We don't need to traverse this expression any further because\n\t          // there can't be any new declarations inside an expression.\n\t          util.replaceWithOrRemove(path, t.expressionStatement(expr));\n\t        }\n\n\t        // Since the original node has been either removed or replaced,\n\t        // avoid traversing it any further.\n\t        path.skip();\n\t      }\n\t    },\n\n\t    ForStatement: function ForStatement(path) {\n\t      var init = path.node.init;\n\t      if (t.isVariableDeclaration(init)) {\n\t        util.replaceWithOrRemove(path.get(\"init\"), varDeclToExpr(init, false));\n\t      }\n\t    },\n\n\t    ForXStatement: function ForXStatement(path) {\n\t      var left = path.get(\"left\");\n\t      if (left.isVariableDeclaration()) {\n\t        util.replaceWithOrRemove(left, varDeclToExpr(left.node, true));\n\t      }\n\t    },\n\n\t    FunctionDeclaration: function FunctionDeclaration(path) {\n\t      var node = path.node;\n\t      vars[node.id.name] = node.id;\n\n\t      var assignment = t.expressionStatement(t.assignmentExpression(\"=\", node.id, t.functionExpression(node.id, node.params, node.body, node.generator, node.expression)));\n\n\t      if (path.parentPath.isBlockStatement()) {\n\t        // Insert the assignment form before the first statement in the\n\t        // enclosing block.\n\t        path.parentPath.unshiftContainer(\"body\", assignment);\n\n\t        // Remove the function declaration now that we've inserted the\n\t        // equivalent assignment form at the beginning of the block.\n\t        path.remove();\n\t      } else {\n\t        // If the parent node is not a block statement, then we can just\n\t        // replace the declaration with the equivalent assignment form\n\t        // without worrying about hoisting it.\n\t        util.replaceWithOrRemove(path, assignment);\n\t      }\n\n\t      // Don't hoist variables out of inner functions.\n\t      path.skip();\n\t    },\n\n\t    FunctionExpression: function FunctionExpression(path) {\n\t      // Don't descend into nested function expressions.\n\t      path.skip();\n\t    }\n\t  });\n\n\t  var paramNames = {};\n\t  funPath.get(\"params\").forEach(function (paramPath) {\n\t    var param = paramPath.node;\n\t    if (t.isIdentifier(param)) {\n\t      paramNames[param.name] = param;\n\t    } else {\n\t      // Variables declared by destructuring parameter patterns will be\n\t      // harmlessly re-declared.\n\t    }\n\t  });\n\n\t  var declarations = [];\n\n\t  (0, _keys2.default)(vars).forEach(function (name) {\n\t    if (!hasOwn.call(paramNames, name)) {\n\t      declarations.push(t.variableDeclarator(vars[name], null));\n\t    }\n\t  });\n\n\t  if (declarations.length === 0) {\n\t    return null; // Be sure to handle this case!\n\t  }\n\n\t  return t.variableDeclaration(\"var\", declarations);\n\t};\n\n/***/ }),\n/* 606 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return __webpack_require__(610);\n\t};\n\n/***/ }),\n/* 607 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _assert = __webpack_require__(64);\n\n\tvar _assert2 = _interopRequireDefault(_assert);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _util = __webpack_require__(117);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction Entry() {\n\t  _assert2.default.ok(this instanceof Entry);\n\t} /**\n\t   * Copyright (c) 2014, Facebook, Inc.\n\t   * All rights reserved.\n\t   *\n\t   * This source code is licensed under the BSD-style license found in the\n\t   * https://raw.github.com/facebook/regenerator/master/LICENSE file. An\n\t   * additional grant of patent rights can be found in the PATENTS file in\n\t   * the same directory.\n\t   */\n\n\tfunction FunctionEntry(returnLoc) {\n\t  Entry.call(this);\n\t  t.assertLiteral(returnLoc);\n\t  this.returnLoc = returnLoc;\n\t}\n\n\t(0, _util.inherits)(FunctionEntry, Entry);\n\texports.FunctionEntry = FunctionEntry;\n\n\tfunction LoopEntry(breakLoc, continueLoc, label) {\n\t  Entry.call(this);\n\n\t  t.assertLiteral(breakLoc);\n\t  t.assertLiteral(continueLoc);\n\n\t  if (label) {\n\t    t.assertIdentifier(label);\n\t  } else {\n\t    label = null;\n\t  }\n\n\t  this.breakLoc = breakLoc;\n\t  this.continueLoc = continueLoc;\n\t  this.label = label;\n\t}\n\n\t(0, _util.inherits)(LoopEntry, Entry);\n\texports.LoopEntry = LoopEntry;\n\n\tfunction SwitchEntry(breakLoc) {\n\t  Entry.call(this);\n\t  t.assertLiteral(breakLoc);\n\t  this.breakLoc = breakLoc;\n\t}\n\n\t(0, _util.inherits)(SwitchEntry, Entry);\n\texports.SwitchEntry = SwitchEntry;\n\n\tfunction TryEntry(firstLoc, catchEntry, finallyEntry) {\n\t  Entry.call(this);\n\n\t  t.assertLiteral(firstLoc);\n\n\t  if (catchEntry) {\n\t    _assert2.default.ok(catchEntry instanceof CatchEntry);\n\t  } else {\n\t    catchEntry = null;\n\t  }\n\n\t  if (finallyEntry) {\n\t    _assert2.default.ok(finallyEntry instanceof FinallyEntry);\n\t  } else {\n\t    finallyEntry = null;\n\t  }\n\n\t  // Have to have one or the other (or both).\n\t  _assert2.default.ok(catchEntry || finallyEntry);\n\n\t  this.firstLoc = firstLoc;\n\t  this.catchEntry = catchEntry;\n\t  this.finallyEntry = finallyEntry;\n\t}\n\n\t(0, _util.inherits)(TryEntry, Entry);\n\texports.TryEntry = TryEntry;\n\n\tfunction CatchEntry(firstLoc, paramId) {\n\t  Entry.call(this);\n\n\t  t.assertLiteral(firstLoc);\n\t  t.assertIdentifier(paramId);\n\n\t  this.firstLoc = firstLoc;\n\t  this.paramId = paramId;\n\t}\n\n\t(0, _util.inherits)(CatchEntry, Entry);\n\texports.CatchEntry = CatchEntry;\n\n\tfunction FinallyEntry(firstLoc, afterLoc) {\n\t  Entry.call(this);\n\t  t.assertLiteral(firstLoc);\n\t  t.assertLiteral(afterLoc);\n\t  this.firstLoc = firstLoc;\n\t  this.afterLoc = afterLoc;\n\t}\n\n\t(0, _util.inherits)(FinallyEntry, Entry);\n\texports.FinallyEntry = FinallyEntry;\n\n\tfunction LabeledEntry(breakLoc, label) {\n\t  Entry.call(this);\n\n\t  t.assertLiteral(breakLoc);\n\t  t.assertIdentifier(label);\n\n\t  this.breakLoc = breakLoc;\n\t  this.label = label;\n\t}\n\n\t(0, _util.inherits)(LabeledEntry, Entry);\n\texports.LabeledEntry = LabeledEntry;\n\n\tfunction LeapManager(emitter) {\n\t  _assert2.default.ok(this instanceof LeapManager);\n\n\t  var Emitter = __webpack_require__(283).Emitter;\n\t  _assert2.default.ok(emitter instanceof Emitter);\n\n\t  this.emitter = emitter;\n\t  this.entryStack = [new FunctionEntry(emitter.finalLoc)];\n\t}\n\n\tvar LMp = LeapManager.prototype;\n\texports.LeapManager = LeapManager;\n\n\tLMp.withEntry = function (entry, callback) {\n\t  _assert2.default.ok(entry instanceof Entry);\n\t  this.entryStack.push(entry);\n\t  try {\n\t    callback.call(this.emitter);\n\t  } finally {\n\t    var popped = this.entryStack.pop();\n\t    _assert2.default.strictEqual(popped, entry);\n\t  }\n\t};\n\n\tLMp._findLeapLocation = function (property, label) {\n\t  for (var i = this.entryStack.length - 1; i >= 0; --i) {\n\t    var entry = this.entryStack[i];\n\t    var loc = entry[property];\n\t    if (loc) {\n\t      if (label) {\n\t        if (entry.label && entry.label.name === label.name) {\n\t          return loc;\n\t        }\n\t      } else if (entry instanceof LabeledEntry) {\n\t        // Ignore LabeledEntry entries unless we are actually breaking to\n\t        // a label.\n\t      } else {\n\t        return loc;\n\t      }\n\t    }\n\t  }\n\n\t  return null;\n\t};\n\n\tLMp.getBreakLoc = function (label) {\n\t  return this._findLeapLocation(\"breakLoc\", label);\n\t};\n\n\tLMp.getContinueLoc = function (label) {\n\t  return this._findLeapLocation(\"continueLoc\", label);\n\t};\n\n/***/ }),\n/* 608 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _assert = __webpack_require__(64);\n\n\tvar _assert2 = _interopRequireDefault(_assert);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar m = __webpack_require__(281).makeAccessor(); /**\n\t                                            * Copyright (c) 2014, Facebook, Inc.\n\t                                            * All rights reserved.\n\t                                            *\n\t                                            * This source code is licensed under the BSD-style license found in the\n\t                                            * https://raw.github.com/facebook/regenerator/master/LICENSE file. An\n\t                                            * additional grant of patent rights can be found in the PATENTS file in\n\t                                            * the same directory.\n\t                                            */\n\n\tvar hasOwn = Object.prototype.hasOwnProperty;\n\n\tfunction makePredicate(propertyName, knownTypes) {\n\t  function onlyChildren(node) {\n\t    t.assertNode(node);\n\n\t    // Assume no side effects until we find out otherwise.\n\t    var result = false;\n\n\t    function check(child) {\n\t      if (result) {\n\t        // Do nothing.\n\t      } else if (Array.isArray(child)) {\n\t        child.some(check);\n\t      } else if (t.isNode(child)) {\n\t        _assert2.default.strictEqual(result, false);\n\t        result = predicate(child);\n\t      }\n\t      return result;\n\t    }\n\n\t    var keys = t.VISITOR_KEYS[node.type];\n\t    if (keys) {\n\t      for (var i = 0; i < keys.length; i++) {\n\t        var key = keys[i];\n\t        var child = node[key];\n\t        check(child);\n\t      }\n\t    }\n\n\t    return result;\n\t  }\n\n\t  function predicate(node) {\n\t    t.assertNode(node);\n\n\t    var meta = m(node);\n\t    if (hasOwn.call(meta, propertyName)) return meta[propertyName];\n\n\t    // Certain types are \"opaque,\" which means they have no side\n\t    // effects or leaps and we don't care about their subexpressions.\n\t    if (hasOwn.call(opaqueTypes, node.type)) return meta[propertyName] = false;\n\n\t    if (hasOwn.call(knownTypes, node.type)) return meta[propertyName] = true;\n\n\t    return meta[propertyName] = onlyChildren(node);\n\t  }\n\n\t  predicate.onlyChildren = onlyChildren;\n\n\t  return predicate;\n\t}\n\n\tvar opaqueTypes = {\n\t  FunctionExpression: true,\n\t  ArrowFunctionExpression: true\n\t};\n\n\t// These types potentially have side effects regardless of what side\n\t// effects their subexpressions have.\n\tvar sideEffectTypes = {\n\t  CallExpression: true, // Anything could happen!\n\t  ForInStatement: true, // Modifies the key variable.\n\t  UnaryExpression: true, // Think delete.\n\t  BinaryExpression: true, // Might invoke .toString() or .valueOf().\n\t  AssignmentExpression: true, // Side-effecting by definition.\n\t  UpdateExpression: true, // Updates are essentially assignments.\n\t  NewExpression: true // Similar to CallExpression.\n\t};\n\n\t// These types are the direct cause of all leaps in control flow.\n\tvar leapTypes = {\n\t  YieldExpression: true,\n\t  BreakStatement: true,\n\t  ContinueStatement: true,\n\t  ReturnStatement: true,\n\t  ThrowStatement: true\n\t};\n\n\t// All leap types are also side effect types.\n\tfor (var type in leapTypes) {\n\t  if (hasOwn.call(leapTypes, type)) {\n\t    sideEffectTypes[type] = leapTypes[type];\n\t  }\n\t}\n\n\texports.hasSideEffects = makePredicate(\"hasSideEffects\", sideEffectTypes);\n\texports.containsLeap = makePredicate(\"containsLeap\", leapTypes);\n\n/***/ }),\n/* 609 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.default = replaceShorthandObjectMethod;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _util = __webpack_require__(116);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\t// this function converts a shorthand object generator method into a normal\n\t// (non-shorthand) object property which is a generator function expression. for\n\t// example, this:\n\t//\n\t//  var foo = {\n\t//    *bar(baz) { return 5; }\n\t//  }\n\t//\n\t// should be replaced with:\n\t//\n\t//  var foo = {\n\t//    bar: function*(baz) { return 5; }\n\t//  }\n\t//\n\t// to do this, it clones the parameter array and the body of the object generator\n\t// method into a new FunctionExpression.\n\t//\n\t// this method can be passed any Function AST node path, and it will return\n\t// either:\n\t//   a) the path that was passed in (iff the path did not need to be replaced) or\n\t//   b) the path of the new FunctionExpression that was created as a replacement\n\t//     (iff the path did need to be replaced)\n\t//\n\t// In either case, though, the caller can count on the fact that the return value\n\t// is a Function AST node path.\n\t//\n\t// If this function is called with an AST node path that is not a Function (or with an\n\t// argument that isn't an AST node path), it will throw an error.\n\tfunction replaceShorthandObjectMethod(path) {\n\t  if (!path.node || !t.isFunction(path.node)) {\n\t    throw new Error(\"replaceShorthandObjectMethod can only be called on Function AST node paths.\");\n\t  }\n\n\t  // this function only replaces shorthand object methods (called ObjectMethod\n\t  // in Babel-speak).\n\t  if (!t.isObjectMethod(path.node)) {\n\t    return path;\n\t  }\n\n\t  // this function only replaces generators.\n\t  if (!path.node.generator) {\n\t    return path;\n\t  }\n\n\t  var parameters = path.node.params.map(function (param) {\n\t    return t.cloneDeep(param);\n\t  });\n\n\t  var functionExpression = t.functionExpression(null, // id\n\t  parameters, // params\n\t  t.cloneDeep(path.node.body), // body\n\t  path.node.generator, path.node.async);\n\n\t  util.replaceWithOrRemove(path, t.objectProperty(t.cloneDeep(path.node.key), // key\n\t  functionExpression, //value\n\t  path.node.computed, // computed\n\t  false // shorthand\n\t  ));\n\n\t  // path now refers to the ObjectProperty AST node path, but we want to return a\n\t  // Function AST node path for the function expression we created. we know that\n\t  // the FunctionExpression we just created is the value of the ObjectProperty,\n\t  // so return the \"value\" path off of this path.\n\t  return path.get(\"value\");\n\t}\n\n/***/ }),\n/* 610 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright (c) 2014, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * https://raw.github.com/facebook/regenerator/master/LICENSE file. An\n\t * additional grant of patent rights can be found in the PATENTS file in\n\t * the same directory.\n\t */\n\n\t\"use strict\";\n\n\tvar _assert = __webpack_require__(64);\n\n\tvar _assert2 = _interopRequireDefault(_assert);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _hoist = __webpack_require__(605);\n\n\tvar _emit = __webpack_require__(283);\n\n\tvar _replaceShorthandObjectMethod = __webpack_require__(609);\n\n\tvar _replaceShorthandObjectMethod2 = _interopRequireDefault(_replaceShorthandObjectMethod);\n\n\tvar _util = __webpack_require__(116);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.name = \"regenerator-transform\";\n\n\texports.visitor = {\n\t  Function: {\n\t    exit: function exit(path, state) {\n\t      var node = path.node;\n\n\t      if (node.generator) {\n\t        if (node.async) {\n\t          // Async generator\n\t          if (state.opts.asyncGenerators === false) return;\n\t        } else {\n\t          // Plain generator\n\t          if (state.opts.generators === false) return;\n\t        }\n\t      } else if (node.async) {\n\t        // Async function\n\t        if (state.opts.async === false) return;\n\t      } else {\n\t        // Not a generator or async function.\n\t        return;\n\t      }\n\n\t      // if this is an ObjectMethod, we need to convert it to an ObjectProperty\n\t      path = (0, _replaceShorthandObjectMethod2.default)(path);\n\t      node = path.node;\n\n\t      var contextId = path.scope.generateUidIdentifier(\"context\");\n\t      var argsId = path.scope.generateUidIdentifier(\"args\");\n\n\t      path.ensureBlock();\n\t      var bodyBlockPath = path.get(\"body\");\n\n\t      if (node.async) {\n\t        bodyBlockPath.traverse(awaitVisitor);\n\t      }\n\n\t      bodyBlockPath.traverse(functionSentVisitor, {\n\t        context: contextId\n\t      });\n\n\t      var outerBody = [];\n\t      var innerBody = [];\n\n\t      bodyBlockPath.get(\"body\").forEach(function (childPath) {\n\t        var node = childPath.node;\n\t        if (t.isExpressionStatement(node) && t.isStringLiteral(node.expression)) {\n\t          // Babylon represents directives like \"use strict\" as elements\n\t          // of a bodyBlockPath.node.directives array, but they could just\n\t          // as easily be represented (by other parsers) as traditional\n\t          // string-literal-valued expression statements, so we need to\n\t          // handle that here. (#248)\n\t          outerBody.push(node);\n\t        } else if (node && node._blockHoist != null) {\n\t          outerBody.push(node);\n\t        } else {\n\t          innerBody.push(node);\n\t        }\n\t      });\n\n\t      if (outerBody.length > 0) {\n\t        // Only replace the inner body if we actually hoisted any statements\n\t        // to the outer body.\n\t        bodyBlockPath.node.body = innerBody;\n\t      }\n\n\t      var outerFnExpr = getOuterFnExpr(path);\n\t      // Note that getOuterFnExpr has the side-effect of ensuring that the\n\t      // function has a name (so node.id will always be an Identifier), even\n\t      // if a temporary name has to be synthesized.\n\t      t.assertIdentifier(node.id);\n\t      var innerFnId = t.identifier(node.id.name + \"$\");\n\n\t      // Turn all declarations into vars, and replace the original\n\t      // declarations with equivalent assignment expressions.\n\t      var vars = (0, _hoist.hoist)(path);\n\n\t      var didRenameArguments = renameArguments(path, argsId);\n\t      if (didRenameArguments) {\n\t        vars = vars || t.variableDeclaration(\"var\", []);\n\t        var argumentIdentifier = t.identifier(\"arguments\");\n\t        // we need to do this as otherwise arguments in arrow functions gets hoisted\n\t        argumentIdentifier._shadowedFunctionLiteral = path;\n\t        vars.declarations.push(t.variableDeclarator(argsId, argumentIdentifier));\n\t      }\n\n\t      var emitter = new _emit.Emitter(contextId);\n\t      emitter.explode(path.get(\"body\"));\n\n\t      if (vars && vars.declarations.length > 0) {\n\t        outerBody.push(vars);\n\t      }\n\n\t      var wrapArgs = [emitter.getContextFunction(innerFnId),\n\t      // Async functions that are not generators don't care about the\n\t      // outer function because they don't need it to be marked and don't\n\t      // inherit from its .prototype.\n\t      node.generator ? outerFnExpr : t.nullLiteral(), t.thisExpression()];\n\n\t      var tryLocsList = emitter.getTryLocsList();\n\t      if (tryLocsList) {\n\t        wrapArgs.push(tryLocsList);\n\t      }\n\n\t      var wrapCall = t.callExpression(util.runtimeProperty(node.async ? \"async\" : \"wrap\"), wrapArgs);\n\n\t      outerBody.push(t.returnStatement(wrapCall));\n\t      node.body = t.blockStatement(outerBody);\n\n\t      var oldDirectives = bodyBlockPath.node.directives;\n\t      if (oldDirectives) {\n\t        // Babylon represents directives like \"use strict\" as elements of\n\t        // a bodyBlockPath.node.directives array. (#248)\n\t        node.body.directives = oldDirectives;\n\t      }\n\n\t      var wasGeneratorFunction = node.generator;\n\t      if (wasGeneratorFunction) {\n\t        node.generator = false;\n\t      }\n\n\t      if (node.async) {\n\t        node.async = false;\n\t      }\n\n\t      if (wasGeneratorFunction && t.isExpression(node)) {\n\t        util.replaceWithOrRemove(path, t.callExpression(util.runtimeProperty(\"mark\"), [node]));\n\t        path.addComment(\"leading\", \"#__PURE__\");\n\t      }\n\n\t      // Generators are processed in 'exit' handlers so that regenerator only has to run on\n\t      // an ES5 AST, but that means traversal will not pick up newly inserted references\n\t      // to things like 'regeneratorRuntime'. To avoid this, we explicitly requeue.\n\t      path.requeue();\n\t    }\n\t  }\n\t};\n\n\t// Given a NodePath for a Function, return an Expression node that can be\n\t// used to refer reliably to the function object from inside the function.\n\t// This expression is essentially a replacement for arguments.callee, with\n\t// the key advantage that it works in strict mode.\n\tfunction getOuterFnExpr(funPath) {\n\t  var node = funPath.node;\n\t  t.assertFunction(node);\n\n\t  if (!node.id) {\n\t    // Default-exported function declarations, and function expressions may not\n\t    // have a name to reference, so we explicitly add one.\n\t    node.id = funPath.scope.parent.generateUidIdentifier(\"callee\");\n\t  }\n\n\t  if (node.generator && // Non-generator functions don't need to be marked.\n\t  t.isFunctionDeclaration(node)) {\n\t    // Return the identifier returned by runtime.mark(<node.id>).\n\t    return getMarkedFunctionId(funPath);\n\t  }\n\n\t  return node.id;\n\t}\n\n\tvar getMarkInfo = __webpack_require__(281).makeAccessor();\n\n\tfunction getMarkedFunctionId(funPath) {\n\t  var node = funPath.node;\n\t  t.assertIdentifier(node.id);\n\n\t  var blockPath = funPath.findParent(function (path) {\n\t    return path.isProgram() || path.isBlockStatement();\n\t  });\n\n\t  if (!blockPath) {\n\t    return node.id;\n\t  }\n\n\t  var block = blockPath.node;\n\t  _assert2.default.ok(Array.isArray(block.body));\n\n\t  var info = getMarkInfo(block);\n\t  if (!info.decl) {\n\t    info.decl = t.variableDeclaration(\"var\", []);\n\t    blockPath.unshiftContainer(\"body\", info.decl);\n\t    info.declPath = blockPath.get(\"body.0\");\n\t  }\n\n\t  _assert2.default.strictEqual(info.declPath.node, info.decl);\n\n\t  // Get a new unique identifier for our marked variable.\n\t  var markedId = blockPath.scope.generateUidIdentifier(\"marked\");\n\t  var markCallExp = t.callExpression(util.runtimeProperty(\"mark\"), [node.id]);\n\n\t  var index = info.decl.declarations.push(t.variableDeclarator(markedId, markCallExp)) - 1;\n\n\t  var markCallExpPath = info.declPath.get(\"declarations.\" + index + \".init\");\n\n\t  _assert2.default.strictEqual(markCallExpPath.node, markCallExp);\n\n\t  markCallExpPath.addComment(\"leading\", \"#__PURE__\");\n\n\t  return markedId;\n\t}\n\n\tfunction renameArguments(funcPath, argsId) {\n\t  var state = {\n\t    didRenameArguments: false,\n\t    argsId: argsId\n\t  };\n\n\t  funcPath.traverse(argumentsVisitor, state);\n\n\t  // If the traversal replaced any arguments references, then we need to\n\t  // alias the outer function's arguments binding (be it the implicit\n\t  // arguments object or some other parameter or variable) to the variable\n\t  // named by argsId.\n\t  return state.didRenameArguments;\n\t}\n\n\tvar argumentsVisitor = {\n\t  \"FunctionExpression|FunctionDeclaration\": function FunctionExpressionFunctionDeclaration(path) {\n\t    path.skip();\n\t  },\n\n\t  Identifier: function Identifier(path, state) {\n\t    if (path.node.name === \"arguments\" && util.isReference(path)) {\n\t      util.replaceWithOrRemove(path, state.argsId);\n\t      state.didRenameArguments = true;\n\t    }\n\t  }\n\t};\n\n\tvar functionSentVisitor = {\n\t  MetaProperty: function MetaProperty(path) {\n\t    var node = path.node;\n\n\t    if (node.meta.name === \"function\" && node.property.name === \"sent\") {\n\t      util.replaceWithOrRemove(path, t.memberExpression(this.context, t.identifier(\"_sent\")));\n\t    }\n\t  }\n\t};\n\n\tvar awaitVisitor = {\n\t  Function: function Function(path) {\n\t    path.skip(); // Don't descend into nested function scopes.\n\t  },\n\n\t  AwaitExpression: function AwaitExpression(path) {\n\t    // Convert await expressions to yield expressions.\n\t    var argument = path.node.argument;\n\n\t    // Transforming `await x` to `yield regeneratorRuntime.awrap(x)`\n\t    // causes the argument to be wrapped in such a way that the runtime\n\t    // can distinguish between awaited and merely yielded values.\n\t    util.replaceWithOrRemove(path, t.yieldExpression(t.callExpression(util.runtimeProperty(\"awrap\"), [argument]), false));\n\t  }\n\t};\n\n/***/ }),\n/* 611 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// Generated by `/scripts/character-class-escape-sets.js`. Do not edit.\n\tvar regenerate = __webpack_require__(282);\n\n\texports.REGULAR = {\n\t\t'd': regenerate().addRange(0x30, 0x39),\n\t\t'D': regenerate().addRange(0x0, 0x2F).addRange(0x3A, 0xFFFF),\n\t\t's': regenerate(0x20, 0xA0, 0x1680, 0x202F, 0x205F, 0x3000, 0xFEFF).addRange(0x9, 0xD).addRange(0x2000, 0x200A).addRange(0x2028, 0x2029),\n\t\t'S': regenerate().addRange(0x0, 0x8).addRange(0xE, 0x1F).addRange(0x21, 0x9F).addRange(0xA1, 0x167F).addRange(0x1681, 0x1FFF).addRange(0x200B, 0x2027).addRange(0x202A, 0x202E).addRange(0x2030, 0x205E).addRange(0x2060, 0x2FFF).addRange(0x3001, 0xFEFE).addRange(0xFF00, 0xFFFF),\n\t\t'w': regenerate(0x5F).addRange(0x30, 0x39).addRange(0x41, 0x5A).addRange(0x61, 0x7A),\n\t\t'W': regenerate(0x60).addRange(0x0, 0x2F).addRange(0x3A, 0x40).addRange(0x5B, 0x5E).addRange(0x7B, 0xFFFF)\n\t};\n\n\texports.UNICODE = {\n\t\t'd': regenerate().addRange(0x30, 0x39),\n\t\t'D': regenerate().addRange(0x0, 0x2F).addRange(0x3A, 0x10FFFF),\n\t\t's': regenerate(0x20, 0xA0, 0x1680, 0x202F, 0x205F, 0x3000, 0xFEFF).addRange(0x9, 0xD).addRange(0x2000, 0x200A).addRange(0x2028, 0x2029),\n\t\t'S': regenerate().addRange(0x0, 0x8).addRange(0xE, 0x1F).addRange(0x21, 0x9F).addRange(0xA1, 0x167F).addRange(0x1681, 0x1FFF).addRange(0x200B, 0x2027).addRange(0x202A, 0x202E).addRange(0x2030, 0x205E).addRange(0x2060, 0x2FFF).addRange(0x3001, 0xFEFE).addRange(0xFF00, 0x10FFFF),\n\t\t'w': regenerate(0x5F).addRange(0x30, 0x39).addRange(0x41, 0x5A).addRange(0x61, 0x7A),\n\t\t'W': regenerate(0x60).addRange(0x0, 0x2F).addRange(0x3A, 0x40).addRange(0x5B, 0x5E).addRange(0x7B, 0x10FFFF)\n\t};\n\n\texports.UNICODE_IGNORE_CASE = {\n\t\t'd': regenerate().addRange(0x30, 0x39),\n\t\t'D': regenerate().addRange(0x0, 0x2F).addRange(0x3A, 0x10FFFF),\n\t\t's': regenerate(0x20, 0xA0, 0x1680, 0x202F, 0x205F, 0x3000, 0xFEFF).addRange(0x9, 0xD).addRange(0x2000, 0x200A).addRange(0x2028, 0x2029),\n\t\t'S': regenerate().addRange(0x0, 0x8).addRange(0xE, 0x1F).addRange(0x21, 0x9F).addRange(0xA1, 0x167F).addRange(0x1681, 0x1FFF).addRange(0x200B, 0x2027).addRange(0x202A, 0x202E).addRange(0x2030, 0x205E).addRange(0x2060, 0x2FFF).addRange(0x3001, 0xFEFE).addRange(0xFF00, 0x10FFFF),\n\t\t'w': regenerate(0x5F, 0x17F, 0x212A).addRange(0x30, 0x39).addRange(0x41, 0x5A).addRange(0x61, 0x7A),\n\t\t'W': regenerate(0x4B, 0x53, 0x60).addRange(0x0, 0x2F).addRange(0x3A, 0x40).addRange(0x5B, 0x5E).addRange(0x7B, 0x10FFFF)\n\t};\n\n/***/ }),\n/* 612 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar generate = __webpack_require__(613).generate;\n\tvar parse = __webpack_require__(614).parse;\n\tvar regenerate = __webpack_require__(282);\n\tvar iuMappings = __webpack_require__(631);\n\tvar ESCAPE_SETS = __webpack_require__(611);\n\n\tfunction getCharacterClassEscapeSet(character) {\n\t\tif (unicode) {\n\t\t\tif (ignoreCase) {\n\t\t\t\treturn ESCAPE_SETS.UNICODE_IGNORE_CASE[character];\n\t\t\t}\n\t\t\treturn ESCAPE_SETS.UNICODE[character];\n\t\t}\n\t\treturn ESCAPE_SETS.REGULAR[character];\n\t}\n\n\tvar object = {};\n\tvar hasOwnProperty = object.hasOwnProperty;\n\tfunction has(object, property) {\n\t\treturn hasOwnProperty.call(object, property);\n\t}\n\n\t// Prepare a Regenerate set containing all code points, used for negative\n\t// character classes (if any).\n\tvar UNICODE_SET = regenerate().addRange(0x0, 0x10FFFF);\n\t// Without the `u` flag, the range stops at 0xFFFF.\n\t// https://mths.be/es6#sec-pattern-semantics\n\tvar BMP_SET = regenerate().addRange(0x0, 0xFFFF);\n\n\t// Prepare a Regenerate set containing all code points that are supposed to be\n\t// matched by `/./u`. https://mths.be/es6#sec-atom\n\tvar DOT_SET_UNICODE = UNICODE_SET.clone() // all Unicode code points\n\t.remove(\n\t// minus `LineTerminator`s (https://mths.be/es6#sec-line-terminators):\n\t0x000A, // Line Feed <LF>\n\t0x000D, // Carriage Return <CR>\n\t0x2028, // Line Separator <LS>\n\t0x2029 // Paragraph Separator <PS>\n\t);\n\t// Prepare a Regenerate set containing all code points that are supposed to be\n\t// matched by `/./` (only BMP code points).\n\tvar DOT_SET = DOT_SET_UNICODE.clone().intersection(BMP_SET);\n\n\t// Add a range of code points + any case-folded code points in that range to a\n\t// set.\n\tregenerate.prototype.iuAddRange = function (min, max) {\n\t\tvar $this = this;\n\t\tdo {\n\t\t\tvar folded = caseFold(min);\n\t\t\tif (folded) {\n\t\t\t\t$this.add(folded);\n\t\t\t}\n\t\t} while (++min <= max);\n\t\treturn $this;\n\t};\n\n\tfunction assign(target, source) {\n\t\tfor (var key in source) {\n\t\t\t// Note: `hasOwnProperty` is not needed here.\n\t\t\ttarget[key] = source[key];\n\t\t}\n\t}\n\n\tfunction update(item, pattern) {\n\t\t// TODO: Test if memoizing `pattern` here is worth the effort.\n\t\tif (!pattern) {\n\t\t\treturn;\n\t\t}\n\t\tvar tree = parse(pattern, '');\n\t\tswitch (tree.type) {\n\t\t\tcase 'characterClass':\n\t\t\tcase 'group':\n\t\t\tcase 'value':\n\t\t\t\t// No wrapping needed.\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t// Wrap the pattern in a non-capturing group.\n\t\t\t\ttree = wrap(tree, pattern);\n\t\t}\n\t\tassign(item, tree);\n\t}\n\n\tfunction wrap(tree, pattern) {\n\t\t// Wrap the pattern in a non-capturing group.\n\t\treturn {\n\t\t\t'type': 'group',\n\t\t\t'behavior': 'ignore',\n\t\t\t'body': [tree],\n\t\t\t'raw': '(?:' + pattern + ')'\n\t\t};\n\t}\n\n\tfunction caseFold(codePoint) {\n\t\treturn has(iuMappings, codePoint) ? iuMappings[codePoint] : false;\n\t}\n\n\tvar ignoreCase = false;\n\tvar unicode = false;\n\tfunction processCharacterClass(characterClassItem) {\n\t\tvar set = regenerate();\n\t\tvar body = characterClassItem.body.forEach(function (item) {\n\t\t\tswitch (item.type) {\n\t\t\t\tcase 'value':\n\t\t\t\t\tset.add(item.codePoint);\n\t\t\t\t\tif (ignoreCase && unicode) {\n\t\t\t\t\t\tvar folded = caseFold(item.codePoint);\n\t\t\t\t\t\tif (folded) {\n\t\t\t\t\t\t\tset.add(folded);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'characterClassRange':\n\t\t\t\t\tvar min = item.min.codePoint;\n\t\t\t\t\tvar max = item.max.codePoint;\n\t\t\t\t\tset.addRange(min, max);\n\t\t\t\t\tif (ignoreCase && unicode) {\n\t\t\t\t\t\tset.iuAddRange(min, max);\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'characterClassEscape':\n\t\t\t\t\tset.add(getCharacterClassEscapeSet(item.value));\n\t\t\t\t\tbreak;\n\t\t\t\t// The `default` clause is only here as a safeguard; it should never be\n\t\t\t\t// reached. Code coverage tools should ignore it.\n\t\t\t\t/* istanbul ignore next */\n\t\t\t\tdefault:\n\t\t\t\t\tthrow Error('Unknown term type: ' + item.type);\n\t\t\t}\n\t\t});\n\t\tif (characterClassItem.negative) {\n\t\t\tset = (unicode ? UNICODE_SET : BMP_SET).clone().remove(set);\n\t\t}\n\t\tupdate(characterClassItem, set.toString());\n\t\treturn characterClassItem;\n\t}\n\n\tfunction processTerm(item) {\n\t\tswitch (item.type) {\n\t\t\tcase 'dot':\n\t\t\t\tupdate(item, (unicode ? DOT_SET_UNICODE : DOT_SET).toString());\n\t\t\t\tbreak;\n\t\t\tcase 'characterClass':\n\t\t\t\titem = processCharacterClass(item);\n\t\t\t\tbreak;\n\t\t\tcase 'characterClassEscape':\n\t\t\t\tupdate(item, getCharacterClassEscapeSet(item.value).toString());\n\t\t\t\tbreak;\n\t\t\tcase 'alternative':\n\t\t\tcase 'disjunction':\n\t\t\tcase 'group':\n\t\t\tcase 'quantifier':\n\t\t\t\titem.body = item.body.map(processTerm);\n\t\t\t\tbreak;\n\t\t\tcase 'value':\n\t\t\t\tvar codePoint = item.codePoint;\n\t\t\t\tvar set = regenerate(codePoint);\n\t\t\t\tif (ignoreCase && unicode) {\n\t\t\t\t\tvar folded = caseFold(codePoint);\n\t\t\t\t\tif (folded) {\n\t\t\t\t\t\tset.add(folded);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tupdate(item, set.toString());\n\t\t\t\tbreak;\n\t\t\tcase 'anchor':\n\t\t\tcase 'empty':\n\t\t\tcase 'group':\n\t\t\tcase 'reference':\n\t\t\t\t// Nothing to do here.\n\t\t\t\tbreak;\n\t\t\t// The `default` clause is only here as a safeguard; it should never be\n\t\t\t// reached. Code coverage tools should ignore it.\n\t\t\t/* istanbul ignore next */\n\t\t\tdefault:\n\t\t\t\tthrow Error('Unknown term type: ' + item.type);\n\t\t}\n\t\treturn item;\n\t};\n\n\tmodule.exports = function (pattern, flags) {\n\t\tvar tree = parse(pattern, flags);\n\t\tignoreCase = flags ? flags.indexOf('i') > -1 : false;\n\t\tunicode = flags ? flags.indexOf('u') > -1 : false;\n\t\tassign(tree, processTerm(tree));\n\t\treturn generate(tree);\n\t};\n\n/***/ }),\n/* 613 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module, global) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/*!\n\t * RegJSGen\n\t * Copyright 2014 Benjamin Tan <https://d10.github.io/>\n\t * Available under MIT license <http://d10.mit-license.org/>\n\t */\n\t;(function () {\n\t  'use strict';\n\n\t  /** Used to determine if values are of the language type `Object` */\n\n\t  var objectTypes = {\n\t    'function': true,\n\t    'object': true\n\t  };\n\n\t  /** Used as a reference to the global object */\n\t  var root = objectTypes[typeof window === 'undefined' ? 'undefined' : _typeof(window)] && window || this;\n\n\t  /** Backup possible global object */\n\t  var oldRoot = root;\n\n\t  /** Detect free variable `exports` */\n\t  var freeExports = objectTypes[ false ? 'undefined' : _typeof(exports)] && exports;\n\n\t  /** Detect free variable `module` */\n\t  var freeModule = objectTypes[ false ? 'undefined' : _typeof(module)] && module && !module.nodeType && module;\n\n\t  /** Detect free variable `global` from Node.js or Browserified code and use it as `root` */\n\t  var freeGlobal = freeExports && freeModule && (typeof global === 'undefined' ? 'undefined' : _typeof(global)) == 'object' && global;\n\t  if (freeGlobal && (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal || freeGlobal.self === freeGlobal)) {\n\t    root = freeGlobal;\n\t  }\n\n\t  /*--------------------------------------------------------------------------*/\n\n\t  /*! Based on https://mths.be/fromcodepoint v0.2.0 by @mathias */\n\n\t  var stringFromCharCode = String.fromCharCode;\n\t  var floor = Math.floor;\n\t  function fromCodePoint() {\n\t    var MAX_SIZE = 0x4000;\n\t    var codeUnits = [];\n\t    var highSurrogate;\n\t    var lowSurrogate;\n\t    var index = -1;\n\t    var length = arguments.length;\n\t    if (!length) {\n\t      return '';\n\t    }\n\t    var result = '';\n\t    while (++index < length) {\n\t      var codePoint = Number(arguments[index]);\n\t      if (!isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`\n\t      codePoint < 0 || // not a valid Unicode code point\n\t      codePoint > 0x10FFFF || // not a valid Unicode code point\n\t      floor(codePoint) != codePoint // not an integer\n\t      ) {\n\t          throw RangeError('Invalid code point: ' + codePoint);\n\t        }\n\t      if (codePoint <= 0xFFFF) {\n\t        // BMP code point\n\t        codeUnits.push(codePoint);\n\t      } else {\n\t        // Astral code point; split in surrogate halves\n\t        // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n\t        codePoint -= 0x10000;\n\t        highSurrogate = (codePoint >> 10) + 0xD800;\n\t        lowSurrogate = codePoint % 0x400 + 0xDC00;\n\t        codeUnits.push(highSurrogate, lowSurrogate);\n\t      }\n\t      if (index + 1 == length || codeUnits.length > MAX_SIZE) {\n\t        result += stringFromCharCode.apply(null, codeUnits);\n\t        codeUnits.length = 0;\n\t      }\n\t    }\n\t    return result;\n\t  }\n\n\t  function assertType(type, expected) {\n\t    if (expected.indexOf('|') == -1) {\n\t      if (type == expected) {\n\t        return;\n\t      }\n\n\t      throw Error('Invalid node type: ' + type);\n\t    }\n\n\t    expected = assertType.hasOwnProperty(expected) ? assertType[expected] : assertType[expected] = RegExp('^(?:' + expected + ')$');\n\n\t    if (expected.test(type)) {\n\t      return;\n\t    }\n\n\t    throw Error('Invalid node type: ' + type);\n\t  }\n\n\t  /*--------------------------------------------------------------------------*/\n\n\t  function generate(node) {\n\t    var type = node.type;\n\n\t    if (generate.hasOwnProperty(type) && typeof generate[type] == 'function') {\n\t      return generate[type](node);\n\t    }\n\n\t    throw Error('Invalid node type: ' + type);\n\t  }\n\n\t  /*--------------------------------------------------------------------------*/\n\n\t  function generateAlternative(node) {\n\t    assertType(node.type, 'alternative');\n\n\t    var terms = node.body,\n\t        length = terms ? terms.length : 0;\n\n\t    if (length == 1) {\n\t      return generateTerm(terms[0]);\n\t    } else {\n\t      var i = -1,\n\t          result = '';\n\n\t      while (++i < length) {\n\t        result += generateTerm(terms[i]);\n\t      }\n\n\t      return result;\n\t    }\n\t  }\n\n\t  function generateAnchor(node) {\n\t    assertType(node.type, 'anchor');\n\n\t    switch (node.kind) {\n\t      case 'start':\n\t        return '^';\n\t      case 'end':\n\t        return '$';\n\t      case 'boundary':\n\t        return '\\\\b';\n\t      case 'not-boundary':\n\t        return '\\\\B';\n\t      default:\n\t        throw Error('Invalid assertion');\n\t    }\n\t  }\n\n\t  function generateAtom(node) {\n\t    assertType(node.type, 'anchor|characterClass|characterClassEscape|dot|group|reference|value');\n\n\t    return generate(node);\n\t  }\n\n\t  function generateCharacterClass(node) {\n\t    assertType(node.type, 'characterClass');\n\n\t    var classRanges = node.body,\n\t        length = classRanges ? classRanges.length : 0;\n\n\t    var i = -1,\n\t        result = '[';\n\n\t    if (node.negative) {\n\t      result += '^';\n\t    }\n\n\t    while (++i < length) {\n\t      result += generateClassAtom(classRanges[i]);\n\t    }\n\n\t    result += ']';\n\n\t    return result;\n\t  }\n\n\t  function generateCharacterClassEscape(node) {\n\t    assertType(node.type, 'characterClassEscape');\n\n\t    return '\\\\' + node.value;\n\t  }\n\n\t  function generateCharacterClassRange(node) {\n\t    assertType(node.type, 'characterClassRange');\n\n\t    var min = node.min,\n\t        max = node.max;\n\n\t    if (min.type == 'characterClassRange' || max.type == 'characterClassRange') {\n\t      throw Error('Invalid character class range');\n\t    }\n\n\t    return generateClassAtom(min) + '-' + generateClassAtom(max);\n\t  }\n\n\t  function generateClassAtom(node) {\n\t    assertType(node.type, 'anchor|characterClassEscape|characterClassRange|dot|value');\n\n\t    return generate(node);\n\t  }\n\n\t  function generateDisjunction(node) {\n\t    assertType(node.type, 'disjunction');\n\n\t    var body = node.body,\n\t        length = body ? body.length : 0;\n\n\t    if (length == 0) {\n\t      throw Error('No body');\n\t    } else if (length == 1) {\n\t      return generate(body[0]);\n\t    } else {\n\t      var i = -1,\n\t          result = '';\n\n\t      while (++i < length) {\n\t        if (i != 0) {\n\t          result += '|';\n\t        }\n\t        result += generate(body[i]);\n\t      }\n\n\t      return result;\n\t    }\n\t  }\n\n\t  function generateDot(node) {\n\t    assertType(node.type, 'dot');\n\n\t    return '.';\n\t  }\n\n\t  function generateGroup(node) {\n\t    assertType(node.type, 'group');\n\n\t    var result = '(';\n\n\t    switch (node.behavior) {\n\t      case 'normal':\n\t        break;\n\t      case 'ignore':\n\t        result += '?:';\n\t        break;\n\t      case 'lookahead':\n\t        result += '?=';\n\t        break;\n\t      case 'negativeLookahead':\n\t        result += '?!';\n\t        break;\n\t      default:\n\t        throw Error('Invalid behaviour: ' + node.behaviour);\n\t    }\n\n\t    var body = node.body,\n\t        length = body ? body.length : 0;\n\n\t    if (length == 1) {\n\t      result += generate(body[0]);\n\t    } else {\n\t      var i = -1;\n\n\t      while (++i < length) {\n\t        result += generate(body[i]);\n\t      }\n\t    }\n\n\t    result += ')';\n\n\t    return result;\n\t  }\n\n\t  function generateQuantifier(node) {\n\t    assertType(node.type, 'quantifier');\n\n\t    var quantifier = '',\n\t        min = node.min,\n\t        max = node.max;\n\n\t    switch (max) {\n\t      case undefined:\n\t      case null:\n\t        switch (min) {\n\t          case 0:\n\t            quantifier = '*';\n\t            break;\n\t          case 1:\n\t            quantifier = '+';\n\t            break;\n\t          default:\n\t            quantifier = '{' + min + ',}';\n\t            break;\n\t        }\n\t        break;\n\t      default:\n\t        if (min == max) {\n\t          quantifier = '{' + min + '}';\n\t        } else if (min == 0 && max == 1) {\n\t          quantifier = '?';\n\t        } else {\n\t          quantifier = '{' + min + ',' + max + '}';\n\t        }\n\t        break;\n\t    }\n\n\t    if (!node.greedy) {\n\t      quantifier += '?';\n\t    }\n\n\t    return generateAtom(node.body[0]) + quantifier;\n\t  }\n\n\t  function generateReference(node) {\n\t    assertType(node.type, 'reference');\n\n\t    return '\\\\' + node.matchIndex;\n\t  }\n\n\t  function generateTerm(node) {\n\t    assertType(node.type, 'anchor|characterClass|characterClassEscape|empty|group|quantifier|reference|value');\n\n\t    return generate(node);\n\t  }\n\n\t  function generateValue(node) {\n\t    assertType(node.type, 'value');\n\n\t    var kind = node.kind,\n\t        codePoint = node.codePoint;\n\n\t    switch (kind) {\n\t      case 'controlLetter':\n\t        return '\\\\c' + fromCodePoint(codePoint + 64);\n\t      case 'hexadecimalEscape':\n\t        return '\\\\x' + ('00' + codePoint.toString(16).toUpperCase()).slice(-2);\n\t      case 'identifier':\n\t        return '\\\\' + fromCodePoint(codePoint);\n\t      case 'null':\n\t        return '\\\\' + codePoint;\n\t      case 'octal':\n\t        return '\\\\' + codePoint.toString(8);\n\t      case 'singleEscape':\n\t        switch (codePoint) {\n\t          case 0x0008:\n\t            return '\\\\b';\n\t          case 0x009:\n\t            return '\\\\t';\n\t          case 0x00A:\n\t            return '\\\\n';\n\t          case 0x00B:\n\t            return '\\\\v';\n\t          case 0x00C:\n\t            return '\\\\f';\n\t          case 0x00D:\n\t            return '\\\\r';\n\t          default:\n\t            throw Error('Invalid codepoint: ' + codePoint);\n\t        }\n\t      case 'symbol':\n\t        return fromCodePoint(codePoint);\n\t      case 'unicodeEscape':\n\t        return '\\\\u' + ('0000' + codePoint.toString(16).toUpperCase()).slice(-4);\n\t      case 'unicodeCodePointEscape':\n\t        return '\\\\u{' + codePoint.toString(16).toUpperCase() + '}';\n\t      default:\n\t        throw Error('Unsupported node kind: ' + kind);\n\t    }\n\t  }\n\n\t  /*--------------------------------------------------------------------------*/\n\n\t  generate.alternative = generateAlternative;\n\t  generate.anchor = generateAnchor;\n\t  generate.characterClass = generateCharacterClass;\n\t  generate.characterClassEscape = generateCharacterClassEscape;\n\t  generate.characterClassRange = generateCharacterClassRange;\n\t  generate.disjunction = generateDisjunction;\n\t  generate.dot = generateDot;\n\t  generate.group = generateGroup;\n\t  generate.quantifier = generateQuantifier;\n\t  generate.reference = generateReference;\n\t  generate.value = generateValue;\n\n\t  /*--------------------------------------------------------------------------*/\n\n\t  // export regjsgen\n\t  // some AMD build optimizers, like r.js, check for condition patterns like the following:\n\t  if (\"function\" == 'function' && _typeof(__webpack_require__(49)) == 'object' && __webpack_require__(49)) {\n\t    // define as an anonymous module so, through path mapping, it can be aliased\n\t    !(__WEBPACK_AMD_DEFINE_RESULT__ = function () {\n\t      return {\n\t        'generate': generate\n\t      };\n\t    }.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n\t  }\n\t  // check for `exports` after `define` in case a build optimizer adds an `exports` object\n\t  else if (freeExports && freeModule) {\n\t      // in Narwhal, Node.js, Rhino -require, or RingoJS\n\t      freeExports.generate = generate;\n\t    }\n\t    // in a browser or Rhino\n\t    else {\n\t        root.regjsgen = {\n\t          'generate': generate\n\t        };\n\t      }\n\t}).call(undefined);\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module), (function() { return this; }())))\n\n/***/ }),\n/* 614 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t// regjsparser\n\t//\n\t// ==================================================================\n\t//\n\t// See ECMA-262 Standard: 15.10.1\n\t//\n\t// NOTE: The ECMA-262 standard uses the term \"Assertion\" for /^/. Here the\n\t//   term \"Anchor\" is used.\n\t//\n\t// Pattern ::\n\t//      Disjunction\n\t//\n\t// Disjunction ::\n\t//      Alternative\n\t//      Alternative | Disjunction\n\t//\n\t// Alternative ::\n\t//      [empty]\n\t//      Alternative Term\n\t//\n\t// Term ::\n\t//      Anchor\n\t//      Atom\n\t//      Atom Quantifier\n\t//\n\t// Anchor ::\n\t//      ^\n\t//      $\n\t//      \\ b\n\t//      \\ B\n\t//      ( ? = Disjunction )\n\t//      ( ? ! Disjunction )\n\t//\n\t// Quantifier ::\n\t//      QuantifierPrefix\n\t//      QuantifierPrefix ?\n\t//\n\t// QuantifierPrefix ::\n\t//      *\n\t//      +\n\t//      ?\n\t//      { DecimalDigits }\n\t//      { DecimalDigits , }\n\t//      { DecimalDigits , DecimalDigits }\n\t//\n\t// Atom ::\n\t//      PatternCharacter\n\t//      .\n\t//      \\ AtomEscape\n\t//      CharacterClass\n\t//      ( Disjunction )\n\t//      ( ? : Disjunction )\n\t//\n\t// PatternCharacter ::\n\t//      SourceCharacter but not any of: ^ $ \\ . * + ? ( ) [ ] { } |\n\t//\n\t// AtomEscape ::\n\t//      DecimalEscape\n\t//      CharacterEscape\n\t//      CharacterClassEscape\n\t//\n\t// CharacterEscape[U] ::\n\t//      ControlEscape\n\t//      c ControlLetter\n\t//      HexEscapeSequence\n\t//      RegExpUnicodeEscapeSequence[?U] (ES6)\n\t//      IdentityEscape[?U]\n\t//\n\t// ControlEscape ::\n\t//      one of f n r t v\n\t// ControlLetter ::\n\t//      one of\n\t//          a b c d e f g h i j k l m n o p q r s t u v w x y z\n\t//          A B C D E F G H I J K L M N O P Q R S T U V W X Y Z\n\t//\n\t// IdentityEscape ::\n\t//      SourceCharacter but not IdentifierPart\n\t//      <ZWJ>\n\t//      <ZWNJ>\n\t//\n\t// DecimalEscape ::\n\t//      DecimalIntegerLiteral [lookahead ∉ DecimalDigit]\n\t//\n\t// CharacterClassEscape ::\n\t//      one of d D s S w W\n\t//\n\t// CharacterClass ::\n\t//      [ [lookahead ∉ {^}] ClassRanges ]\n\t//      [ ^ ClassRanges ]\n\t//\n\t// ClassRanges ::\n\t//      [empty]\n\t//      NonemptyClassRanges\n\t//\n\t// NonemptyClassRanges ::\n\t//      ClassAtom\n\t//      ClassAtom NonemptyClassRangesNoDash\n\t//      ClassAtom - ClassAtom ClassRanges\n\t//\n\t// NonemptyClassRangesNoDash ::\n\t//      ClassAtom\n\t//      ClassAtomNoDash NonemptyClassRangesNoDash\n\t//      ClassAtomNoDash - ClassAtom ClassRanges\n\t//\n\t// ClassAtom ::\n\t//      -\n\t//      ClassAtomNoDash\n\t//\n\t// ClassAtomNoDash ::\n\t//      SourceCharacter but not one of \\ or ] or -\n\t//      \\ ClassEscape\n\t//\n\t// ClassEscape ::\n\t//      DecimalEscape\n\t//      b\n\t//      CharacterEscape\n\t//      CharacterClassEscape\n\n\t(function () {\n\n\t  function parse(str, flags) {\n\t    function addRaw(node) {\n\t      node.raw = str.substring(node.range[0], node.range[1]);\n\t      return node;\n\t    }\n\n\t    function updateRawStart(node, start) {\n\t      node.range[0] = start;\n\t      return addRaw(node);\n\t    }\n\n\t    function createAnchor(kind, rawLength) {\n\t      return addRaw({\n\t        type: 'anchor',\n\t        kind: kind,\n\t        range: [pos - rawLength, pos]\n\t      });\n\t    }\n\n\t    function createValue(kind, codePoint, from, to) {\n\t      return addRaw({\n\t        type: 'value',\n\t        kind: kind,\n\t        codePoint: codePoint,\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function createEscaped(kind, codePoint, value, fromOffset) {\n\t      fromOffset = fromOffset || 0;\n\t      return createValue(kind, codePoint, pos - (value.length + fromOffset), pos);\n\t    }\n\n\t    function createCharacter(matches) {\n\t      var _char = matches[0];\n\t      var first = _char.charCodeAt(0);\n\t      if (hasUnicodeFlag) {\n\t        var second;\n\t        if (_char.length === 1 && first >= 0xD800 && first <= 0xDBFF) {\n\t          second = lookahead().charCodeAt(0);\n\t          if (second >= 0xDC00 && second <= 0xDFFF) {\n\t            // Unicode surrogate pair\n\t            pos++;\n\t            return createValue('symbol', (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000, pos - 2, pos);\n\t          }\n\t        }\n\t      }\n\t      return createValue('symbol', first, pos - 1, pos);\n\t    }\n\n\t    function createDisjunction(alternatives, from, to) {\n\t      return addRaw({\n\t        type: 'disjunction',\n\t        body: alternatives,\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function createDot() {\n\t      return addRaw({\n\t        type: 'dot',\n\t        range: [pos - 1, pos]\n\t      });\n\t    }\n\n\t    function createCharacterClassEscape(value) {\n\t      return addRaw({\n\t        type: 'characterClassEscape',\n\t        value: value,\n\t        range: [pos - 2, pos]\n\t      });\n\t    }\n\n\t    function createReference(matchIndex) {\n\t      return addRaw({\n\t        type: 'reference',\n\t        matchIndex: parseInt(matchIndex, 10),\n\t        range: [pos - 1 - matchIndex.length, pos]\n\t      });\n\t    }\n\n\t    function createGroup(behavior, disjunction, from, to) {\n\t      return addRaw({\n\t        type: 'group',\n\t        behavior: behavior,\n\t        body: disjunction,\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function createQuantifier(min, max, from, to) {\n\t      if (to == null) {\n\t        from = pos - 1;\n\t        to = pos;\n\t      }\n\n\t      return addRaw({\n\t        type: 'quantifier',\n\t        min: min,\n\t        max: max,\n\t        greedy: true,\n\t        body: null, // set later on\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function createAlternative(terms, from, to) {\n\t      return addRaw({\n\t        type: 'alternative',\n\t        body: terms,\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function createCharacterClass(classRanges, negative, from, to) {\n\t      return addRaw({\n\t        type: 'characterClass',\n\t        body: classRanges,\n\t        negative: negative,\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function createClassRange(min, max, from, to) {\n\t      // See 15.10.2.15:\n\t      if (min.codePoint > max.codePoint) {\n\t        bail('invalid range in character class', min.raw + '-' + max.raw, from, to);\n\t      }\n\n\t      return addRaw({\n\t        type: 'characterClassRange',\n\t        min: min,\n\t        max: max,\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function flattenBody(body) {\n\t      if (body.type === 'alternative') {\n\t        return body.body;\n\t      } else {\n\t        return [body];\n\t      }\n\t    }\n\n\t    function isEmpty(obj) {\n\t      return obj.type === 'empty';\n\t    }\n\n\t    function incr(amount) {\n\t      amount = amount || 1;\n\t      var res = str.substring(pos, pos + amount);\n\t      pos += amount || 1;\n\t      return res;\n\t    }\n\n\t    function skip(value) {\n\t      if (!match(value)) {\n\t        bail('character', value);\n\t      }\n\t    }\n\n\t    function match(value) {\n\t      if (str.indexOf(value, pos) === pos) {\n\t        return incr(value.length);\n\t      }\n\t    }\n\n\t    function lookahead() {\n\t      return str[pos];\n\t    }\n\n\t    function current(value) {\n\t      return str.indexOf(value, pos) === pos;\n\t    }\n\n\t    function next(value) {\n\t      return str[pos + 1] === value;\n\t    }\n\n\t    function matchReg(regExp) {\n\t      var subStr = str.substring(pos);\n\t      var res = subStr.match(regExp);\n\t      if (res) {\n\t        res.range = [];\n\t        res.range[0] = pos;\n\t        incr(res[0].length);\n\t        res.range[1] = pos;\n\t      }\n\t      return res;\n\t    }\n\n\t    function parseDisjunction() {\n\t      // Disjunction ::\n\t      //      Alternative\n\t      //      Alternative | Disjunction\n\t      var res = [],\n\t          from = pos;\n\t      res.push(parseAlternative());\n\n\t      while (match('|')) {\n\t        res.push(parseAlternative());\n\t      }\n\n\t      if (res.length === 1) {\n\t        return res[0];\n\t      }\n\n\t      return createDisjunction(res, from, pos);\n\t    }\n\n\t    function parseAlternative() {\n\t      var res = [],\n\t          from = pos;\n\t      var term;\n\n\t      // Alternative ::\n\t      //      [empty]\n\t      //      Alternative Term\n\t      while (term = parseTerm()) {\n\t        res.push(term);\n\t      }\n\n\t      if (res.length === 1) {\n\t        return res[0];\n\t      }\n\n\t      return createAlternative(res, from, pos);\n\t    }\n\n\t    function parseTerm() {\n\t      // Term ::\n\t      //      Anchor\n\t      //      Atom\n\t      //      Atom Quantifier\n\n\t      if (pos >= str.length || current('|') || current(')')) {\n\t        return null; /* Means: The term is empty */\n\t      }\n\n\t      var anchor = parseAnchor();\n\n\t      if (anchor) {\n\t        return anchor;\n\t      }\n\n\t      var atom = parseAtom();\n\t      if (!atom) {\n\t        bail('Expected atom');\n\t      }\n\t      var quantifier = parseQuantifier() || false;\n\t      if (quantifier) {\n\t        quantifier.body = flattenBody(atom);\n\t        // The quantifier contains the atom. Therefore, the beginning of the\n\t        // quantifier range is given by the beginning of the atom.\n\t        updateRawStart(quantifier, atom.range[0]);\n\t        return quantifier;\n\t      }\n\t      return atom;\n\t    }\n\n\t    function parseGroup(matchA, typeA, matchB, typeB) {\n\t      var type = null,\n\t          from = pos;\n\n\t      if (match(matchA)) {\n\t        type = typeA;\n\t      } else if (match(matchB)) {\n\t        type = typeB;\n\t      } else {\n\t        return false;\n\t      }\n\n\t      var body = parseDisjunction();\n\t      if (!body) {\n\t        bail('Expected disjunction');\n\t      }\n\t      skip(')');\n\t      var group = createGroup(type, flattenBody(body), from, pos);\n\n\t      if (type == 'normal') {\n\t        // Keep track of the number of closed groups. This is required for\n\t        // parseDecimalEscape(). In case the string is parsed a second time the\n\t        // value already holds the total count and no incrementation is required.\n\t        if (firstIteration) {\n\t          closedCaptureCounter++;\n\t        }\n\t      }\n\t      return group;\n\t    }\n\n\t    function parseAnchor() {\n\t      // Anchor ::\n\t      //      ^\n\t      //      $\n\t      //      \\ b\n\t      //      \\ B\n\t      //      ( ? = Disjunction )\n\t      //      ( ? ! Disjunction )\n\t      var res,\n\t          from = pos;\n\n\t      if (match('^')) {\n\t        return createAnchor('start', 1 /* rawLength */);\n\t      } else if (match('$')) {\n\t        return createAnchor('end', 1 /* rawLength */);\n\t      } else if (match('\\\\b')) {\n\t        return createAnchor('boundary', 2 /* rawLength */);\n\t      } else if (match('\\\\B')) {\n\t        return createAnchor('not-boundary', 2 /* rawLength */);\n\t      } else {\n\t        return parseGroup('(?=', 'lookahead', '(?!', 'negativeLookahead');\n\t      }\n\t    }\n\n\t    function parseQuantifier() {\n\t      // Quantifier ::\n\t      //      QuantifierPrefix\n\t      //      QuantifierPrefix ?\n\t      //\n\t      // QuantifierPrefix ::\n\t      //      *\n\t      //      +\n\t      //      ?\n\t      //      { DecimalDigits }\n\t      //      { DecimalDigits , }\n\t      //      { DecimalDigits , DecimalDigits }\n\n\t      var res,\n\t          from = pos;\n\t      var quantifier;\n\t      var min, max;\n\n\t      if (match('*')) {\n\t        quantifier = createQuantifier(0);\n\t      } else if (match('+')) {\n\t        quantifier = createQuantifier(1);\n\t      } else if (match('?')) {\n\t        quantifier = createQuantifier(0, 1);\n\t      } else if (res = matchReg(/^\\{([0-9]+)\\}/)) {\n\t        min = parseInt(res[1], 10);\n\t        quantifier = createQuantifier(min, min, res.range[0], res.range[1]);\n\t      } else if (res = matchReg(/^\\{([0-9]+),\\}/)) {\n\t        min = parseInt(res[1], 10);\n\t        quantifier = createQuantifier(min, undefined, res.range[0], res.range[1]);\n\t      } else if (res = matchReg(/^\\{([0-9]+),([0-9]+)\\}/)) {\n\t        min = parseInt(res[1], 10);\n\t        max = parseInt(res[2], 10);\n\t        if (min > max) {\n\t          bail('numbers out of order in {} quantifier', '', from, pos);\n\t        }\n\t        quantifier = createQuantifier(min, max, res.range[0], res.range[1]);\n\t      }\n\n\t      if (quantifier) {\n\t        if (match('?')) {\n\t          quantifier.greedy = false;\n\t          quantifier.range[1] += 1;\n\t        }\n\t      }\n\n\t      return quantifier;\n\t    }\n\n\t    function parseAtom() {\n\t      // Atom ::\n\t      //      PatternCharacter\n\t      //      .\n\t      //      \\ AtomEscape\n\t      //      CharacterClass\n\t      //      ( Disjunction )\n\t      //      ( ? : Disjunction )\n\n\t      var res;\n\n\t      // jviereck: allow ']', '}' here as well to be compatible with browser's\n\t      //   implementations: ']'.match(/]/);\n\t      // if (res = matchReg(/^[^^$\\\\.*+?()[\\]{}|]/)) {\n\t      if (res = matchReg(/^[^^$\\\\.*+?(){[|]/)) {\n\t        //      PatternCharacter\n\t        return createCharacter(res);\n\t      } else if (match('.')) {\n\t        //      .\n\t        return createDot();\n\t      } else if (match('\\\\')) {\n\t        //      \\ AtomEscape\n\t        res = parseAtomEscape();\n\t        if (!res) {\n\t          bail('atomEscape');\n\t        }\n\t        return res;\n\t      } else if (res = parseCharacterClass()) {\n\t        return res;\n\t      } else {\n\t        //      ( Disjunction )\n\t        //      ( ? : Disjunction )\n\t        return parseGroup('(?:', 'ignore', '(', 'normal');\n\t      }\n\t    }\n\n\t    function parseUnicodeSurrogatePairEscape(firstEscape) {\n\t      if (hasUnicodeFlag) {\n\t        var first, second;\n\t        if (firstEscape.kind == 'unicodeEscape' && (first = firstEscape.codePoint) >= 0xD800 && first <= 0xDBFF && current('\\\\') && next('u')) {\n\t          var prevPos = pos;\n\t          pos++;\n\t          var secondEscape = parseClassEscape();\n\t          if (secondEscape.kind == 'unicodeEscape' && (second = secondEscape.codePoint) >= 0xDC00 && second <= 0xDFFF) {\n\t            // Unicode surrogate pair\n\t            firstEscape.range[1] = secondEscape.range[1];\n\t            firstEscape.codePoint = (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000;\n\t            firstEscape.type = 'value';\n\t            firstEscape.kind = 'unicodeCodePointEscape';\n\t            addRaw(firstEscape);\n\t          } else {\n\t            pos = prevPos;\n\t          }\n\t        }\n\t      }\n\t      return firstEscape;\n\t    }\n\n\t    function parseClassEscape() {\n\t      return parseAtomEscape(true);\n\t    }\n\n\t    function parseAtomEscape(insideCharacterClass) {\n\t      // AtomEscape ::\n\t      //      DecimalEscape\n\t      //      CharacterEscape\n\t      //      CharacterClassEscape\n\n\t      var res,\n\t          from = pos;\n\n\t      res = parseDecimalEscape();\n\t      if (res) {\n\t        return res;\n\t      }\n\n\t      // For ClassEscape\n\t      if (insideCharacterClass) {\n\t        if (match('b')) {\n\t          // 15.10.2.19\n\t          // The production ClassEscape :: b evaluates by returning the\n\t          // CharSet containing the one character <BS> (Unicode value 0008).\n\t          return createEscaped('singleEscape', 0x0008, '\\\\b');\n\t        } else if (match('B')) {\n\t          bail('\\\\B not possible inside of CharacterClass', '', from);\n\t        }\n\t      }\n\n\t      res = parseCharacterEscape();\n\n\t      return res;\n\t    }\n\n\t    function parseDecimalEscape() {\n\t      // DecimalEscape ::\n\t      //      DecimalIntegerLiteral [lookahead ∉ DecimalDigit]\n\t      //      CharacterClassEscape :: one of d D s S w W\n\n\t      var res, match;\n\n\t      if (res = matchReg(/^(?!0)\\d+/)) {\n\t        match = res[0];\n\t        var refIdx = parseInt(res[0], 10);\n\t        if (refIdx <= closedCaptureCounter) {\n\t          // If the number is smaller than the normal-groups found so\n\t          // far, then it is a reference...\n\t          return createReference(res[0]);\n\t        } else {\n\t          // ... otherwise it needs to be interpreted as a octal (if the\n\t          // number is in an octal format). If it is NOT octal format,\n\t          // then the slash is ignored and the number is matched later\n\t          // as normal characters.\n\n\t          // Recall the negative decision to decide if the input must be parsed\n\t          // a second time with the total normal-groups.\n\t          backrefDenied.push(refIdx);\n\n\t          // Reset the position again, as maybe only parts of the previous\n\t          // matched numbers are actual octal numbers. E.g. in '019' only\n\t          // the '01' should be matched.\n\t          incr(-res[0].length);\n\t          if (res = matchReg(/^[0-7]{1,3}/)) {\n\t            return createEscaped('octal', parseInt(res[0], 8), res[0], 1);\n\t          } else {\n\t            // If we end up here, we have a case like /\\91/. Then the\n\t            // first slash is to be ignored and the 9 & 1 to be treated\n\t            // like ordinary characters. Create a character for the\n\t            // first number only here - other number-characters\n\t            // (if available) will be matched later.\n\t            res = createCharacter(matchReg(/^[89]/));\n\t            return updateRawStart(res, res.range[0] - 1);\n\t          }\n\t        }\n\t      }\n\t      // Only allow octal numbers in the following. All matched numbers start\n\t      // with a zero (if the do not, the previous if-branch is executed).\n\t      // If the number is not octal format and starts with zero (e.g. `091`)\n\t      // then only the zeros `0` is treated here and the `91` are ordinary\n\t      // characters.\n\t      // Example:\n\t      //   /\\091/.exec('\\091')[0].length === 3\n\t      else if (res = matchReg(/^[0-7]{1,3}/)) {\n\t          match = res[0];\n\t          if (/^0{1,3}$/.test(match)) {\n\t            // If they are all zeros, then only take the first one.\n\t            return createEscaped('null', 0x0000, '0', match.length + 1);\n\t          } else {\n\t            return createEscaped('octal', parseInt(match, 8), match, 1);\n\t          }\n\t        } else if (res = matchReg(/^[dDsSwW]/)) {\n\t          return createCharacterClassEscape(res[0]);\n\t        }\n\t      return false;\n\t    }\n\n\t    function parseCharacterEscape() {\n\t      // CharacterEscape ::\n\t      //      ControlEscape\n\t      //      c ControlLetter\n\t      //      HexEscapeSequence\n\t      //      UnicodeEscapeSequence\n\t      //      IdentityEscape\n\n\t      var res;\n\t      if (res = matchReg(/^[fnrtv]/)) {\n\t        // ControlEscape\n\t        var codePoint = 0;\n\t        switch (res[0]) {\n\t          case 't':\n\t            codePoint = 0x009;break;\n\t          case 'n':\n\t            codePoint = 0x00A;break;\n\t          case 'v':\n\t            codePoint = 0x00B;break;\n\t          case 'f':\n\t            codePoint = 0x00C;break;\n\t          case 'r':\n\t            codePoint = 0x00D;break;\n\t        }\n\t        return createEscaped('singleEscape', codePoint, '\\\\' + res[0]);\n\t      } else if (res = matchReg(/^c([a-zA-Z])/)) {\n\t        // c ControlLetter\n\t        return createEscaped('controlLetter', res[1].charCodeAt(0) % 32, res[1], 2);\n\t      } else if (res = matchReg(/^x([0-9a-fA-F]{2})/)) {\n\t        // HexEscapeSequence\n\t        return createEscaped('hexadecimalEscape', parseInt(res[1], 16), res[1], 2);\n\t      } else if (res = matchReg(/^u([0-9a-fA-F]{4})/)) {\n\t        // UnicodeEscapeSequence\n\t        return parseUnicodeSurrogatePairEscape(createEscaped('unicodeEscape', parseInt(res[1], 16), res[1], 2));\n\t      } else if (hasUnicodeFlag && (res = matchReg(/^u\\{([0-9a-fA-F]+)\\}/))) {\n\t        // RegExpUnicodeEscapeSequence (ES6 Unicode code point escape)\n\t        return createEscaped('unicodeCodePointEscape', parseInt(res[1], 16), res[1], 4);\n\t      } else {\n\t        // IdentityEscape\n\t        return parseIdentityEscape();\n\t      }\n\t    }\n\n\t    // Taken from the Esprima parser.\n\t    function isIdentifierPart(ch) {\n\t      // Generated by `tools/generate-identifier-regex.js`.\n\t      var NonAsciiIdentifierPart = new RegExp('[\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0300-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u0483-\\u0487\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0610-\\u061A\\u0620-\\u0669\\u066E-\\u06D3\\u06D5-\\u06DC\\u06DF-\\u06E8\\u06EA-\\u06FC\\u06FF\\u0710-\\u074A\\u074D-\\u07B1\\u07C0-\\u07F5\\u07FA\\u0800-\\u082D\\u0840-\\u085B\\u08A0-\\u08B2\\u08E4-\\u0963\\u0966-\\u096F\\u0971-\\u0983\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BC-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CE\\u09D7\\u09DC\\u09DD\\u09DF-\\u09E3\\u09E6-\\u09F1\\u0A01-\\u0A03\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A59-\\u0A5C\\u0A5E\\u0A66-\\u0A75\\u0A81-\\u0A83\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABC-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AD0\\u0AE0-\\u0AE3\\u0AE6-\\u0AEF\\u0B01-\\u0B03\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3C-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B5C\\u0B5D\\u0B5F-\\u0B63\\u0B66-\\u0B6F\\u0B71\\u0B82\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD0\\u0BD7\\u0BE6-\\u0BEF\\u0C00-\\u0C03\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C58\\u0C59\\u0C60-\\u0C63\\u0C66-\\u0C6F\\u0C81-\\u0C83\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBC-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CDE\\u0CE0-\\u0CE3\\u0CE6-\\u0CEF\\u0CF1\\u0CF2\\u0D01-\\u0D03\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4E\\u0D57\\u0D60-\\u0D63\\u0D66-\\u0D6F\\u0D7A-\\u0D7F\\u0D82\\u0D83\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DE6-\\u0DEF\\u0DF2\\u0DF3\\u0E01-\\u0E3A\\u0E40-\\u0E4E\\u0E50-\\u0E59\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB9\\u0EBB-\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EC8-\\u0ECD\\u0ED0-\\u0ED9\\u0EDC-\\u0EDF\\u0F00\\u0F18\\u0F19\\u0F20-\\u0F29\\u0F35\\u0F37\\u0F39\\u0F3E-\\u0F47\\u0F49-\\u0F6C\\u0F71-\\u0F84\\u0F86-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u1000-\\u1049\\u1050-\\u109D\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u135D-\\u135F\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1714\\u1720-\\u1734\\u1740-\\u1753\\u1760-\\u176C\\u176E-\\u1770\\u1772\\u1773\\u1780-\\u17D3\\u17D7\\u17DC\\u17DD\\u17E0-\\u17E9\\u180B-\\u180D\\u1810-\\u1819\\u1820-\\u1877\\u1880-\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1920-\\u192B\\u1930-\\u193B\\u1946-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19B0-\\u19C9\\u19D0-\\u19D9\\u1A00-\\u1A1B\\u1A20-\\u1A5E\\u1A60-\\u1A7C\\u1A7F-\\u1A89\\u1A90-\\u1A99\\u1AA7\\u1AB0-\\u1ABD\\u1B00-\\u1B4B\\u1B50-\\u1B59\\u1B6B-\\u1B73\\u1B80-\\u1BF3\\u1C00-\\u1C37\\u1C40-\\u1C49\\u1C4D-\\u1C7D\\u1CD0-\\u1CD2\\u1CD4-\\u1CF6\\u1CF8\\u1CF9\\u1D00-\\u1DF5\\u1DFC-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u200C\\u200D\\u203F\\u2040\\u2054\\u2071\\u207F\\u2090-\\u209C\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D7F-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2DE0-\\u2DFF\\u2E2F\\u3005-\\u3007\\u3021-\\u302F\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u3099\\u309A\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA62B\\uA640-\\uA66F\\uA674-\\uA67D\\uA67F-\\uA69D\\uA69F-\\uA6F1\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA827\\uA840-\\uA873\\uA880-\\uA8C4\\uA8D0-\\uA8D9\\uA8E0-\\uA8F7\\uA8FB\\uA900-\\uA92D\\uA930-\\uA953\\uA960-\\uA97C\\uA980-\\uA9C0\\uA9CF-\\uA9D9\\uA9E0-\\uA9FE\\uAA00-\\uAA36\\uAA40-\\uAA4D\\uAA50-\\uAA59\\uAA60-\\uAA76\\uAA7A-\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEF\\uAAF2-\\uAAF6\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABEA\\uABEC\\uABED\\uABF0-\\uABF9\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE00-\\uFE0F\\uFE20-\\uFE2D\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF10-\\uFF19\\uFF21-\\uFF3A\\uFF3F\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]');\n\n\t      return ch === 36 || ch === 95 || // $ (dollar) and _ (underscore)\n\t      ch >= 65 && ch <= 90 || // A..Z\n\t      ch >= 97 && ch <= 122 || // a..z\n\t      ch >= 48 && ch <= 57 || // 0..9\n\t      ch === 92 || // \\ (backslash)\n\t      ch >= 0x80 && NonAsciiIdentifierPart.test(String.fromCharCode(ch));\n\t    }\n\n\t    function parseIdentityEscape() {\n\t      // IdentityEscape ::\n\t      //      SourceCharacter but not IdentifierPart\n\t      //      <ZWJ>\n\t      //      <ZWNJ>\n\n\t      var ZWJ = '\\u200C';\n\t      var ZWNJ = '\\u200D';\n\n\t      var tmp;\n\n\t      if (!isIdentifierPart(lookahead())) {\n\t        tmp = incr();\n\t        return createEscaped('identifier', tmp.charCodeAt(0), tmp, 1);\n\t      }\n\n\t      if (match(ZWJ)) {\n\t        // <ZWJ>\n\t        return createEscaped('identifier', 0x200C, ZWJ);\n\t      } else if (match(ZWNJ)) {\n\t        // <ZWNJ>\n\t        return createEscaped('identifier', 0x200D, ZWNJ);\n\t      }\n\n\t      return null;\n\t    }\n\n\t    function parseCharacterClass() {\n\t      // CharacterClass ::\n\t      //      [ [lookahead ∉ {^}] ClassRanges ]\n\t      //      [ ^ ClassRanges ]\n\n\t      var res,\n\t          from = pos;\n\t      if (res = matchReg(/^\\[\\^/)) {\n\t        res = parseClassRanges();\n\t        skip(']');\n\t        return createCharacterClass(res, true, from, pos);\n\t      } else if (match('[')) {\n\t        res = parseClassRanges();\n\t        skip(']');\n\t        return createCharacterClass(res, false, from, pos);\n\t      }\n\n\t      return null;\n\t    }\n\n\t    function parseClassRanges() {\n\t      // ClassRanges ::\n\t      //      [empty]\n\t      //      NonemptyClassRanges\n\n\t      var res;\n\t      if (current(']')) {\n\t        // Empty array means nothing insinde of the ClassRange.\n\t        return [];\n\t      } else {\n\t        res = parseNonemptyClassRanges();\n\t        if (!res) {\n\t          bail('nonEmptyClassRanges');\n\t        }\n\t        return res;\n\t      }\n\t    }\n\n\t    function parseHelperClassRanges(atom) {\n\t      var from, to, res;\n\t      if (current('-') && !next(']')) {\n\t        // ClassAtom - ClassAtom ClassRanges\n\t        skip('-');\n\n\t        res = parseClassAtom();\n\t        if (!res) {\n\t          bail('classAtom');\n\t        }\n\t        to = pos;\n\t        var classRanges = parseClassRanges();\n\t        if (!classRanges) {\n\t          bail('classRanges');\n\t        }\n\t        from = atom.range[0];\n\t        if (classRanges.type === 'empty') {\n\t          return [createClassRange(atom, res, from, to)];\n\t        }\n\t        return [createClassRange(atom, res, from, to)].concat(classRanges);\n\t      }\n\n\t      res = parseNonemptyClassRangesNoDash();\n\t      if (!res) {\n\t        bail('nonEmptyClassRangesNoDash');\n\t      }\n\n\t      return [atom].concat(res);\n\t    }\n\n\t    function parseNonemptyClassRanges() {\n\t      // NonemptyClassRanges ::\n\t      //      ClassAtom\n\t      //      ClassAtom NonemptyClassRangesNoDash\n\t      //      ClassAtom - ClassAtom ClassRanges\n\n\t      var atom = parseClassAtom();\n\t      if (!atom) {\n\t        bail('classAtom');\n\t      }\n\n\t      if (current(']')) {\n\t        // ClassAtom\n\t        return [atom];\n\t      }\n\n\t      // ClassAtom NonemptyClassRangesNoDash\n\t      // ClassAtom - ClassAtom ClassRanges\n\t      return parseHelperClassRanges(atom);\n\t    }\n\n\t    function parseNonemptyClassRangesNoDash() {\n\t      // NonemptyClassRangesNoDash ::\n\t      //      ClassAtom\n\t      //      ClassAtomNoDash NonemptyClassRangesNoDash\n\t      //      ClassAtomNoDash - ClassAtom ClassRanges\n\n\t      var res = parseClassAtom();\n\t      if (!res) {\n\t        bail('classAtom');\n\t      }\n\t      if (current(']')) {\n\t        //      ClassAtom\n\t        return res;\n\t      }\n\n\t      // ClassAtomNoDash NonemptyClassRangesNoDash\n\t      // ClassAtomNoDash - ClassAtom ClassRanges\n\t      return parseHelperClassRanges(res);\n\t    }\n\n\t    function parseClassAtom() {\n\t      // ClassAtom ::\n\t      //      -\n\t      //      ClassAtomNoDash\n\t      if (match('-')) {\n\t        return createCharacter('-');\n\t      } else {\n\t        return parseClassAtomNoDash();\n\t      }\n\t    }\n\n\t    function parseClassAtomNoDash() {\n\t      // ClassAtomNoDash ::\n\t      //      SourceCharacter but not one of \\ or ] or -\n\t      //      \\ ClassEscape\n\n\t      var res;\n\t      if (res = matchReg(/^[^\\\\\\]-]/)) {\n\t        return createCharacter(res[0]);\n\t      } else if (match('\\\\')) {\n\t        res = parseClassEscape();\n\t        if (!res) {\n\t          bail('classEscape');\n\t        }\n\n\t        return parseUnicodeSurrogatePairEscape(res);\n\t      }\n\t    }\n\n\t    function bail(message, details, from, to) {\n\t      from = from == null ? pos : from;\n\t      to = to == null ? from : to;\n\n\t      var contextStart = Math.max(0, from - 10);\n\t      var contextEnd = Math.min(to + 10, str.length);\n\n\t      // Output a bit of context and a line pointing to where our error is.\n\t      //\n\t      // We are assuming that there are no actual newlines in the content as this is a regular expression.\n\t      var context = '    ' + str.substring(contextStart, contextEnd);\n\t      var pointer = '    ' + new Array(from - contextStart + 1).join(' ') + '^';\n\n\t      throw SyntaxError(message + ' at position ' + from + (details ? ': ' + details : '') + '\\n' + context + '\\n' + pointer);\n\t    }\n\n\t    var backrefDenied = [];\n\t    var closedCaptureCounter = 0;\n\t    var firstIteration = true;\n\t    var hasUnicodeFlag = (flags || \"\").indexOf(\"u\") !== -1;\n\t    var pos = 0;\n\n\t    // Convert the input to a string and treat the empty string special.\n\t    str = String(str);\n\t    if (str === '') {\n\t      str = '(?:)';\n\t    }\n\n\t    var result = parseDisjunction();\n\n\t    if (result.range[1] !== str.length) {\n\t      bail('Could not parse entire input - got stuck', '', result.range[1]);\n\t    }\n\n\t    // The spec requires to interpret the `\\2` in `/\\2()()/` as backreference.\n\t    // As the parser collects the number of capture groups as the string is\n\t    // parsed it is impossible to make these decisions at the point when the\n\t    // `\\2` is handled. In case the local decision turns out to be wrong after\n\t    // the parsing has finished, the input string is parsed a second time with\n\t    // the total number of capture groups set.\n\t    //\n\t    // SEE: https://github.com/jviereck/regjsparser/issues/70\n\t    for (var i = 0; i < backrefDenied.length; i++) {\n\t      if (backrefDenied[i] <= closedCaptureCounter) {\n\t        // Parse the input a second time.\n\t        pos = 0;\n\t        firstIteration = false;\n\t        return parseDisjunction();\n\t      }\n\t    }\n\n\t    return result;\n\t  }\n\n\t  var regjsparser = {\n\t    parse: parse\n\t  };\n\n\t  if (typeof module !== 'undefined' && module.exports) {\n\t    module.exports = regjsparser;\n\t  } else {\n\t    window.regjsparser = regjsparser;\n\t  }\n\t})();\n\n/***/ }),\n/* 615 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isFinite = __webpack_require__(467);\n\n\tmodule.exports = function (str, n) {\n\t\tif (typeof str !== 'string') {\n\t\t\tthrow new TypeError('Expected `input` to be a string');\n\t\t}\n\n\t\tif (n < 0 || !isFinite(n)) {\n\t\t\tthrow new TypeError('Expected `count` to be a positive finite number');\n\t\t}\n\n\t\tvar ret = '';\n\n\t\tdo {\n\t\t\tif (n & 1) {\n\t\t\t\tret += str;\n\t\t\t}\n\n\t\t\tstr += str;\n\t\t} while (n >>= 1);\n\n\t\treturn ret;\n\t};\n\n/***/ }),\n/* 616 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\tvar intToCharMap = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'.split('');\n\n\t/**\n\t * Encode an integer in the range of 0 to 63 to a single base 64 digit.\n\t */\n\texports.encode = function (number) {\n\t  if (0 <= number && number < intToCharMap.length) {\n\t    return intToCharMap[number];\n\t  }\n\t  throw new TypeError(\"Must be between 0 and 63: \" + number);\n\t};\n\n\t/**\n\t * Decode a single base 64 character code digit to an integer. Returns -1 on\n\t * failure.\n\t */\n\texports.decode = function (charCode) {\n\t  var bigA = 65; // 'A'\n\t  var bigZ = 90; // 'Z'\n\n\t  var littleA = 97; // 'a'\n\t  var littleZ = 122; // 'z'\n\n\t  var zero = 48; // '0'\n\t  var nine = 57; // '9'\n\n\t  var plus = 43; // '+'\n\t  var slash = 47; // '/'\n\n\t  var littleOffset = 26;\n\t  var numberOffset = 52;\n\n\t  // 0 - 25: ABCDEFGHIJKLMNOPQRSTUVWXYZ\n\t  if (bigA <= charCode && charCode <= bigZ) {\n\t    return charCode - bigA;\n\t  }\n\n\t  // 26 - 51: abcdefghijklmnopqrstuvwxyz\n\t  if (littleA <= charCode && charCode <= littleZ) {\n\t    return charCode - littleA + littleOffset;\n\t  }\n\n\t  // 52 - 61: 0123456789\n\t  if (zero <= charCode && charCode <= nine) {\n\t    return charCode - zero + numberOffset;\n\t  }\n\n\t  // 62: +\n\t  if (charCode == plus) {\n\t    return 62;\n\t  }\n\n\t  // 63: /\n\t  if (charCode == slash) {\n\t    return 63;\n\t  }\n\n\t  // Invalid base64 digit.\n\t  return -1;\n\t};\n\n/***/ }),\n/* 617 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\texports.GREATEST_LOWER_BOUND = 1;\n\texports.LEAST_UPPER_BOUND = 2;\n\n\t/**\n\t * Recursive implementation of binary search.\n\t *\n\t * @param aLow Indices here and lower do not contain the needle.\n\t * @param aHigh Indices here and higher do not contain the needle.\n\t * @param aNeedle The element being searched for.\n\t * @param aHaystack The non-empty array being searched.\n\t * @param aCompare Function which takes two elements and returns -1, 0, or 1.\n\t * @param aBias Either 'binarySearch.GREATEST_LOWER_BOUND' or\n\t *     'binarySearch.LEAST_UPPER_BOUND'. Specifies whether to return the\n\t *     closest element that is smaller than or greater than the one we are\n\t *     searching for, respectively, if the exact element cannot be found.\n\t */\n\tfunction recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare, aBias) {\n\t  // This function terminates when one of the following is true:\n\t  //\n\t  //   1. We find the exact element we are looking for.\n\t  //\n\t  //   2. We did not find the exact element, but we can return the index of\n\t  //      the next-closest element.\n\t  //\n\t  //   3. We did not find the exact element, and there is no next-closest\n\t  //      element than the one we are searching for, so we return -1.\n\t  var mid = Math.floor((aHigh - aLow) / 2) + aLow;\n\t  var cmp = aCompare(aNeedle, aHaystack[mid], true);\n\t  if (cmp === 0) {\n\t    // Found the element we are looking for.\n\t    return mid;\n\t  } else if (cmp > 0) {\n\t    // Our needle is greater than aHaystack[mid].\n\t    if (aHigh - mid > 1) {\n\t      // The element is in the upper half.\n\t      return recursiveSearch(mid, aHigh, aNeedle, aHaystack, aCompare, aBias);\n\t    }\n\n\t    // The exact needle element was not found in this haystack. Determine if\n\t    // we are in termination case (3) or (2) and return the appropriate thing.\n\t    if (aBias == exports.LEAST_UPPER_BOUND) {\n\t      return aHigh < aHaystack.length ? aHigh : -1;\n\t    } else {\n\t      return mid;\n\t    }\n\t  } else {\n\t    // Our needle is less than aHaystack[mid].\n\t    if (mid - aLow > 1) {\n\t      // The element is in the lower half.\n\t      return recursiveSearch(aLow, mid, aNeedle, aHaystack, aCompare, aBias);\n\t    }\n\n\t    // we are in termination case (3) or (2) and return the appropriate thing.\n\t    if (aBias == exports.LEAST_UPPER_BOUND) {\n\t      return mid;\n\t    } else {\n\t      return aLow < 0 ? -1 : aLow;\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * This is an implementation of binary search which will always try and return\n\t * the index of the closest element if there is no exact hit. This is because\n\t * mappings between original and generated line/col pairs are single points,\n\t * and there is an implicit region between each of them, so a miss just means\n\t * that you aren't on the very start of a region.\n\t *\n\t * @param aNeedle The element you are looking for.\n\t * @param aHaystack The array that is being searched.\n\t * @param aCompare A function which takes the needle and an element in the\n\t *     array and returns -1, 0, or 1 depending on whether the needle is less\n\t *     than, equal to, or greater than the element, respectively.\n\t * @param aBias Either 'binarySearch.GREATEST_LOWER_BOUND' or\n\t *     'binarySearch.LEAST_UPPER_BOUND'. Specifies whether to return the\n\t *     closest element that is smaller than or greater than the one we are\n\t *     searching for, respectively, if the exact element cannot be found.\n\t *     Defaults to 'binarySearch.GREATEST_LOWER_BOUND'.\n\t */\n\texports.search = function search(aNeedle, aHaystack, aCompare, aBias) {\n\t  if (aHaystack.length === 0) {\n\t    return -1;\n\t  }\n\n\t  var index = recursiveSearch(-1, aHaystack.length, aNeedle, aHaystack, aCompare, aBias || exports.GREATEST_LOWER_BOUND);\n\t  if (index < 0) {\n\t    return -1;\n\t  }\n\n\t  // We have found either the exact element, or the next-closest element than\n\t  // the one we are searching for. However, there may be more than one such\n\t  // element. Make sure we always return the smallest of these.\n\t  while (index - 1 >= 0) {\n\t    if (aCompare(aHaystack[index], aHaystack[index - 1], true) !== 0) {\n\t      break;\n\t    }\n\t    --index;\n\t  }\n\n\t  return index;\n\t};\n\n/***/ }),\n/* 618 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2014 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\tvar util = __webpack_require__(63);\n\n\t/**\n\t * Determine whether mappingB is after mappingA with respect to generated\n\t * position.\n\t */\n\tfunction generatedPositionAfter(mappingA, mappingB) {\n\t  // Optimized for most common case\n\t  var lineA = mappingA.generatedLine;\n\t  var lineB = mappingB.generatedLine;\n\t  var columnA = mappingA.generatedColumn;\n\t  var columnB = mappingB.generatedColumn;\n\t  return lineB > lineA || lineB == lineA && columnB >= columnA || util.compareByGeneratedPositionsInflated(mappingA, mappingB) <= 0;\n\t}\n\n\t/**\n\t * A data structure to provide a sorted view of accumulated mappings in a\n\t * performance conscious manner. It trades a neglibable overhead in general\n\t * case for a large speedup in case of mappings being added in order.\n\t */\n\tfunction MappingList() {\n\t  this._array = [];\n\t  this._sorted = true;\n\t  // Serves as infimum\n\t  this._last = { generatedLine: -1, generatedColumn: 0 };\n\t}\n\n\t/**\n\t * Iterate through internal items. This method takes the same arguments that\n\t * `Array.prototype.forEach` takes.\n\t *\n\t * NOTE: The order of the mappings is NOT guaranteed.\n\t */\n\tMappingList.prototype.unsortedForEach = function MappingList_forEach(aCallback, aThisArg) {\n\t  this._array.forEach(aCallback, aThisArg);\n\t};\n\n\t/**\n\t * Add the given source mapping.\n\t *\n\t * @param Object aMapping\n\t */\n\tMappingList.prototype.add = function MappingList_add(aMapping) {\n\t  if (generatedPositionAfter(this._last, aMapping)) {\n\t    this._last = aMapping;\n\t    this._array.push(aMapping);\n\t  } else {\n\t    this._sorted = false;\n\t    this._array.push(aMapping);\n\t  }\n\t};\n\n\t/**\n\t * Returns the flat, sorted array of mappings. The mappings are sorted by\n\t * generated position.\n\t *\n\t * WARNING: This method returns internal data without copying, for\n\t * performance. The return value must NOT be mutated, and should be treated as\n\t * an immutable borrow. If you want to take ownership, you must make your own\n\t * copy.\n\t */\n\tMappingList.prototype.toArray = function MappingList_toArray() {\n\t  if (!this._sorted) {\n\t    this._array.sort(util.compareByGeneratedPositionsInflated);\n\t    this._sorted = true;\n\t  }\n\t  return this._array;\n\t};\n\n\texports.MappingList = MappingList;\n\n/***/ }),\n/* 619 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\t// It turns out that some (most?) JavaScript engines don't self-host\n\t// `Array.prototype.sort`. This makes sense because C++ will likely remain\n\t// faster than JS when doing raw CPU-intensive sorting. However, when using a\n\t// custom comparator function, calling back and forth between the VM's C++ and\n\t// JIT'd JS is rather slow *and* loses JIT type information, resulting in\n\t// worse generated code for the comparator function than would be optimal. In\n\t// fact, when sorting with a comparator, these costs outweigh the benefits of\n\t// sorting in C++. By using our own JS-implemented Quick Sort (below), we get\n\t// a ~3500ms mean speed-up in `bench/bench.html`.\n\n\t/**\n\t * Swap the elements indexed by `x` and `y` in the array `ary`.\n\t *\n\t * @param {Array} ary\n\t *        The array.\n\t * @param {Number} x\n\t *        The index of the first item.\n\t * @param {Number} y\n\t *        The index of the second item.\n\t */\n\tfunction swap(ary, x, y) {\n\t  var temp = ary[x];\n\t  ary[x] = ary[y];\n\t  ary[y] = temp;\n\t}\n\n\t/**\n\t * Returns a random integer within the range `low .. high` inclusive.\n\t *\n\t * @param {Number} low\n\t *        The lower bound on the range.\n\t * @param {Number} high\n\t *        The upper bound on the range.\n\t */\n\tfunction randomIntInRange(low, high) {\n\t  return Math.round(low + Math.random() * (high - low));\n\t}\n\n\t/**\n\t * The Quick Sort algorithm.\n\t *\n\t * @param {Array} ary\n\t *        An array to sort.\n\t * @param {function} comparator\n\t *        Function to use to compare two items.\n\t * @param {Number} p\n\t *        Start index of the array\n\t * @param {Number} r\n\t *        End index of the array\n\t */\n\tfunction doQuickSort(ary, comparator, p, r) {\n\t  // If our lower bound is less than our upper bound, we (1) partition the\n\t  // array into two pieces and (2) recurse on each half. If it is not, this is\n\t  // the empty array and our base case.\n\n\t  if (p < r) {\n\t    // (1) Partitioning.\n\t    //\n\t    // The partitioning chooses a pivot between `p` and `r` and moves all\n\t    // elements that are less than or equal to the pivot to the before it, and\n\t    // all the elements that are greater than it after it. The effect is that\n\t    // once partition is done, the pivot is in the exact place it will be when\n\t    // the array is put in sorted order, and it will not need to be moved\n\t    // again. This runs in O(n) time.\n\n\t    // Always choose a random pivot so that an input array which is reverse\n\t    // sorted does not cause O(n^2) running time.\n\t    var pivotIndex = randomIntInRange(p, r);\n\t    var i = p - 1;\n\n\t    swap(ary, pivotIndex, r);\n\t    var pivot = ary[r];\n\n\t    // Immediately after `j` is incremented in this loop, the following hold\n\t    // true:\n\t    //\n\t    //   * Every element in `ary[p .. i]` is less than or equal to the pivot.\n\t    //\n\t    //   * Every element in `ary[i+1 .. j-1]` is greater than the pivot.\n\t    for (var j = p; j < r; j++) {\n\t      if (comparator(ary[j], pivot) <= 0) {\n\t        i += 1;\n\t        swap(ary, i, j);\n\t      }\n\t    }\n\n\t    swap(ary, i + 1, j);\n\t    var q = i + 1;\n\n\t    // (2) Recurse on each half.\n\n\t    doQuickSort(ary, comparator, p, q - 1);\n\t    doQuickSort(ary, comparator, q + 1, r);\n\t  }\n\t}\n\n\t/**\n\t * Sort the given array in-place with the given comparator function.\n\t *\n\t * @param {Array} ary\n\t *        An array to sort.\n\t * @param {function} comparator\n\t *        Function to use to compare two items.\n\t */\n\texports.quickSort = function (ary, comparator) {\n\t  doQuickSort(ary, comparator, 0, ary.length - 1);\n\t};\n\n/***/ }),\n/* 620 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\tvar util = __webpack_require__(63);\n\tvar binarySearch = __webpack_require__(617);\n\tvar ArraySet = __webpack_require__(285).ArraySet;\n\tvar base64VLQ = __webpack_require__(286);\n\tvar quickSort = __webpack_require__(619).quickSort;\n\n\tfunction SourceMapConsumer(aSourceMap) {\n\t  var sourceMap = aSourceMap;\n\t  if (typeof aSourceMap === 'string') {\n\t    sourceMap = JSON.parse(aSourceMap.replace(/^\\)\\]\\}'/, ''));\n\t  }\n\n\t  return sourceMap.sections != null ? new IndexedSourceMapConsumer(sourceMap) : new BasicSourceMapConsumer(sourceMap);\n\t}\n\n\tSourceMapConsumer.fromSourceMap = function (aSourceMap) {\n\t  return BasicSourceMapConsumer.fromSourceMap(aSourceMap);\n\t};\n\n\t/**\n\t * The version of the source mapping spec that we are consuming.\n\t */\n\tSourceMapConsumer.prototype._version = 3;\n\n\t// `__generatedMappings` and `__originalMappings` are arrays that hold the\n\t// parsed mapping coordinates from the source map's \"mappings\" attribute. They\n\t// are lazily instantiated, accessed via the `_generatedMappings` and\n\t// `_originalMappings` getters respectively, and we only parse the mappings\n\t// and create these arrays once queried for a source location. We jump through\n\t// these hoops because there can be many thousands of mappings, and parsing\n\t// them is expensive, so we only want to do it if we must.\n\t//\n\t// Each object in the arrays is of the form:\n\t//\n\t//     {\n\t//       generatedLine: The line number in the generated code,\n\t//       generatedColumn: The column number in the generated code,\n\t//       source: The path to the original source file that generated this\n\t//               chunk of code,\n\t//       originalLine: The line number in the original source that\n\t//                     corresponds to this chunk of generated code,\n\t//       originalColumn: The column number in the original source that\n\t//                       corresponds to this chunk of generated code,\n\t//       name: The name of the original symbol which generated this chunk of\n\t//             code.\n\t//     }\n\t//\n\t// All properties except for `generatedLine` and `generatedColumn` can be\n\t// `null`.\n\t//\n\t// `_generatedMappings` is ordered by the generated positions.\n\t//\n\t// `_originalMappings` is ordered by the original positions.\n\n\tSourceMapConsumer.prototype.__generatedMappings = null;\n\tObject.defineProperty(SourceMapConsumer.prototype, '_generatedMappings', {\n\t  get: function get() {\n\t    if (!this.__generatedMappings) {\n\t      this._parseMappings(this._mappings, this.sourceRoot);\n\t    }\n\n\t    return this.__generatedMappings;\n\t  }\n\t});\n\n\tSourceMapConsumer.prototype.__originalMappings = null;\n\tObject.defineProperty(SourceMapConsumer.prototype, '_originalMappings', {\n\t  get: function get() {\n\t    if (!this.__originalMappings) {\n\t      this._parseMappings(this._mappings, this.sourceRoot);\n\t    }\n\n\t    return this.__originalMappings;\n\t  }\n\t});\n\n\tSourceMapConsumer.prototype._charIsMappingSeparator = function SourceMapConsumer_charIsMappingSeparator(aStr, index) {\n\t  var c = aStr.charAt(index);\n\t  return c === \";\" || c === \",\";\n\t};\n\n\t/**\n\t * Parse the mappings in a string in to a data structure which we can easily\n\t * query (the ordered arrays in the `this.__generatedMappings` and\n\t * `this.__originalMappings` properties).\n\t */\n\tSourceMapConsumer.prototype._parseMappings = function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {\n\t  throw new Error(\"Subclasses must implement _parseMappings\");\n\t};\n\n\tSourceMapConsumer.GENERATED_ORDER = 1;\n\tSourceMapConsumer.ORIGINAL_ORDER = 2;\n\n\tSourceMapConsumer.GREATEST_LOWER_BOUND = 1;\n\tSourceMapConsumer.LEAST_UPPER_BOUND = 2;\n\n\t/**\n\t * Iterate over each mapping between an original source/line/column and a\n\t * generated line/column in this source map.\n\t *\n\t * @param Function aCallback\n\t *        The function that is called with each mapping.\n\t * @param Object aContext\n\t *        Optional. If specified, this object will be the value of `this` every\n\t *        time that `aCallback` is called.\n\t * @param aOrder\n\t *        Either `SourceMapConsumer.GENERATED_ORDER` or\n\t *        `SourceMapConsumer.ORIGINAL_ORDER`. Specifies whether you want to\n\t *        iterate over the mappings sorted by the generated file's line/column\n\t *        order or the original's source/line/column order, respectively. Defaults to\n\t *        `SourceMapConsumer.GENERATED_ORDER`.\n\t */\n\tSourceMapConsumer.prototype.eachMapping = function SourceMapConsumer_eachMapping(aCallback, aContext, aOrder) {\n\t  var context = aContext || null;\n\t  var order = aOrder || SourceMapConsumer.GENERATED_ORDER;\n\n\t  var mappings;\n\t  switch (order) {\n\t    case SourceMapConsumer.GENERATED_ORDER:\n\t      mappings = this._generatedMappings;\n\t      break;\n\t    case SourceMapConsumer.ORIGINAL_ORDER:\n\t      mappings = this._originalMappings;\n\t      break;\n\t    default:\n\t      throw new Error(\"Unknown order of iteration.\");\n\t  }\n\n\t  var sourceRoot = this.sourceRoot;\n\t  mappings.map(function (mapping) {\n\t    var source = mapping.source === null ? null : this._sources.at(mapping.source);\n\t    if (source != null && sourceRoot != null) {\n\t      source = util.join(sourceRoot, source);\n\t    }\n\t    return {\n\t      source: source,\n\t      generatedLine: mapping.generatedLine,\n\t      generatedColumn: mapping.generatedColumn,\n\t      originalLine: mapping.originalLine,\n\t      originalColumn: mapping.originalColumn,\n\t      name: mapping.name === null ? null : this._names.at(mapping.name)\n\t    };\n\t  }, this).forEach(aCallback, context);\n\t};\n\n\t/**\n\t * Returns all generated line and column information for the original source,\n\t * line, and column provided. If no column is provided, returns all mappings\n\t * corresponding to a either the line we are searching for or the next\n\t * closest line that has any mappings. Otherwise, returns all mappings\n\t * corresponding to the given line and either the column we are searching for\n\t * or the next closest column that has any offsets.\n\t *\n\t * The only argument is an object with the following properties:\n\t *\n\t *   - source: The filename of the original source.\n\t *   - line: The line number in the original source.\n\t *   - column: Optional. the column number in the original source.\n\t *\n\t * and an array of objects is returned, each with the following properties:\n\t *\n\t *   - line: The line number in the generated source, or null.\n\t *   - column: The column number in the generated source, or null.\n\t */\n\tSourceMapConsumer.prototype.allGeneratedPositionsFor = function SourceMapConsumer_allGeneratedPositionsFor(aArgs) {\n\t  var line = util.getArg(aArgs, 'line');\n\n\t  // When there is no exact match, BasicSourceMapConsumer.prototype._findMapping\n\t  // returns the index of the closest mapping less than the needle. By\n\t  // setting needle.originalColumn to 0, we thus find the last mapping for\n\t  // the given line, provided such a mapping exists.\n\t  var needle = {\n\t    source: util.getArg(aArgs, 'source'),\n\t    originalLine: line,\n\t    originalColumn: util.getArg(aArgs, 'column', 0)\n\t  };\n\n\t  if (this.sourceRoot != null) {\n\t    needle.source = util.relative(this.sourceRoot, needle.source);\n\t  }\n\t  if (!this._sources.has(needle.source)) {\n\t    return [];\n\t  }\n\t  needle.source = this._sources.indexOf(needle.source);\n\n\t  var mappings = [];\n\n\t  var index = this._findMapping(needle, this._originalMappings, \"originalLine\", \"originalColumn\", util.compareByOriginalPositions, binarySearch.LEAST_UPPER_BOUND);\n\t  if (index >= 0) {\n\t    var mapping = this._originalMappings[index];\n\n\t    if (aArgs.column === undefined) {\n\t      var originalLine = mapping.originalLine;\n\n\t      // Iterate until either we run out of mappings, or we run into\n\t      // a mapping for a different line than the one we found. Since\n\t      // mappings are sorted, this is guaranteed to find all mappings for\n\t      // the line we found.\n\t      while (mapping && mapping.originalLine === originalLine) {\n\t        mappings.push({\n\t          line: util.getArg(mapping, 'generatedLine', null),\n\t          column: util.getArg(mapping, 'generatedColumn', null),\n\t          lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)\n\t        });\n\n\t        mapping = this._originalMappings[++index];\n\t      }\n\t    } else {\n\t      var originalColumn = mapping.originalColumn;\n\n\t      // Iterate until either we run out of mappings, or we run into\n\t      // a mapping for a different line than the one we were searching for.\n\t      // Since mappings are sorted, this is guaranteed to find all mappings for\n\t      // the line we are searching for.\n\t      while (mapping && mapping.originalLine === line && mapping.originalColumn == originalColumn) {\n\t        mappings.push({\n\t          line: util.getArg(mapping, 'generatedLine', null),\n\t          column: util.getArg(mapping, 'generatedColumn', null),\n\t          lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)\n\t        });\n\n\t        mapping = this._originalMappings[++index];\n\t      }\n\t    }\n\t  }\n\n\t  return mappings;\n\t};\n\n\texports.SourceMapConsumer = SourceMapConsumer;\n\n\t/**\n\t * A BasicSourceMapConsumer instance represents a parsed source map which we can\n\t * query for information about the original file positions by giving it a file\n\t * position in the generated source.\n\t *\n\t * The only parameter is the raw source map (either as a JSON string, or\n\t * already parsed to an object). According to the spec, source maps have the\n\t * following attributes:\n\t *\n\t *   - version: Which version of the source map spec this map is following.\n\t *   - sources: An array of URLs to the original source files.\n\t *   - names: An array of identifiers which can be referrenced by individual mappings.\n\t *   - sourceRoot: Optional. The URL root from which all sources are relative.\n\t *   - sourcesContent: Optional. An array of contents of the original source files.\n\t *   - mappings: A string of base64 VLQs which contain the actual mappings.\n\t *   - file: Optional. The generated file this source map is associated with.\n\t *\n\t * Here is an example source map, taken from the source map spec[0]:\n\t *\n\t *     {\n\t *       version : 3,\n\t *       file: \"out.js\",\n\t *       sourceRoot : \"\",\n\t *       sources: [\"foo.js\", \"bar.js\"],\n\t *       names: [\"src\", \"maps\", \"are\", \"fun\"],\n\t *       mappings: \"AA,AB;;ABCDE;\"\n\t *     }\n\t *\n\t * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?pli=1#\n\t */\n\tfunction BasicSourceMapConsumer(aSourceMap) {\n\t  var sourceMap = aSourceMap;\n\t  if (typeof aSourceMap === 'string') {\n\t    sourceMap = JSON.parse(aSourceMap.replace(/^\\)\\]\\}'/, ''));\n\t  }\n\n\t  var version = util.getArg(sourceMap, 'version');\n\t  var sources = util.getArg(sourceMap, 'sources');\n\t  // Sass 3.3 leaves out the 'names' array, so we deviate from the spec (which\n\t  // requires the array) to play nice here.\n\t  var names = util.getArg(sourceMap, 'names', []);\n\t  var sourceRoot = util.getArg(sourceMap, 'sourceRoot', null);\n\t  var sourcesContent = util.getArg(sourceMap, 'sourcesContent', null);\n\t  var mappings = util.getArg(sourceMap, 'mappings');\n\t  var file = util.getArg(sourceMap, 'file', null);\n\n\t  // Once again, Sass deviates from the spec and supplies the version as a\n\t  // string rather than a number, so we use loose equality checking here.\n\t  if (version != this._version) {\n\t    throw new Error('Unsupported version: ' + version);\n\t  }\n\n\t  sources = sources.map(String)\n\t  // Some source maps produce relative source paths like \"./foo.js\" instead of\n\t  // \"foo.js\".  Normalize these first so that future comparisons will succeed.\n\t  // See bugzil.la/1090768.\n\t  .map(util.normalize)\n\t  // Always ensure that absolute sources are internally stored relative to\n\t  // the source root, if the source root is absolute. Not doing this would\n\t  // be particularly problematic when the source root is a prefix of the\n\t  // source (valid, but why??). See github issue #199 and bugzil.la/1188982.\n\t  .map(function (source) {\n\t    return sourceRoot && util.isAbsolute(sourceRoot) && util.isAbsolute(source) ? util.relative(sourceRoot, source) : source;\n\t  });\n\n\t  // Pass `true` below to allow duplicate names and sources. While source maps\n\t  // are intended to be compressed and deduplicated, the TypeScript compiler\n\t  // sometimes generates source maps with duplicates in them. See Github issue\n\t  // #72 and bugzil.la/889492.\n\t  this._names = ArraySet.fromArray(names.map(String), true);\n\t  this._sources = ArraySet.fromArray(sources, true);\n\n\t  this.sourceRoot = sourceRoot;\n\t  this.sourcesContent = sourcesContent;\n\t  this._mappings = mappings;\n\t  this.file = file;\n\t}\n\n\tBasicSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);\n\tBasicSourceMapConsumer.prototype.consumer = SourceMapConsumer;\n\n\t/**\n\t * Create a BasicSourceMapConsumer from a SourceMapGenerator.\n\t *\n\t * @param SourceMapGenerator aSourceMap\n\t *        The source map that will be consumed.\n\t * @returns BasicSourceMapConsumer\n\t */\n\tBasicSourceMapConsumer.fromSourceMap = function SourceMapConsumer_fromSourceMap(aSourceMap) {\n\t  var smc = Object.create(BasicSourceMapConsumer.prototype);\n\n\t  var names = smc._names = ArraySet.fromArray(aSourceMap._names.toArray(), true);\n\t  var sources = smc._sources = ArraySet.fromArray(aSourceMap._sources.toArray(), true);\n\t  smc.sourceRoot = aSourceMap._sourceRoot;\n\t  smc.sourcesContent = aSourceMap._generateSourcesContent(smc._sources.toArray(), smc.sourceRoot);\n\t  smc.file = aSourceMap._file;\n\n\t  // Because we are modifying the entries (by converting string sources and\n\t  // names to indices into the sources and names ArraySets), we have to make\n\t  // a copy of the entry or else bad things happen. Shared mutable state\n\t  // strikes again! See github issue #191.\n\n\t  var generatedMappings = aSourceMap._mappings.toArray().slice();\n\t  var destGeneratedMappings = smc.__generatedMappings = [];\n\t  var destOriginalMappings = smc.__originalMappings = [];\n\n\t  for (var i = 0, length = generatedMappings.length; i < length; i++) {\n\t    var srcMapping = generatedMappings[i];\n\t    var destMapping = new Mapping();\n\t    destMapping.generatedLine = srcMapping.generatedLine;\n\t    destMapping.generatedColumn = srcMapping.generatedColumn;\n\n\t    if (srcMapping.source) {\n\t      destMapping.source = sources.indexOf(srcMapping.source);\n\t      destMapping.originalLine = srcMapping.originalLine;\n\t      destMapping.originalColumn = srcMapping.originalColumn;\n\n\t      if (srcMapping.name) {\n\t        destMapping.name = names.indexOf(srcMapping.name);\n\t      }\n\n\t      destOriginalMappings.push(destMapping);\n\t    }\n\n\t    destGeneratedMappings.push(destMapping);\n\t  }\n\n\t  quickSort(smc.__originalMappings, util.compareByOriginalPositions);\n\n\t  return smc;\n\t};\n\n\t/**\n\t * The version of the source mapping spec that we are consuming.\n\t */\n\tBasicSourceMapConsumer.prototype._version = 3;\n\n\t/**\n\t * The list of original sources.\n\t */\n\tObject.defineProperty(BasicSourceMapConsumer.prototype, 'sources', {\n\t  get: function get() {\n\t    return this._sources.toArray().map(function (s) {\n\t      return this.sourceRoot != null ? util.join(this.sourceRoot, s) : s;\n\t    }, this);\n\t  }\n\t});\n\n\t/**\n\t * Provide the JIT with a nice shape / hidden class.\n\t */\n\tfunction Mapping() {\n\t  this.generatedLine = 0;\n\t  this.generatedColumn = 0;\n\t  this.source = null;\n\t  this.originalLine = null;\n\t  this.originalColumn = null;\n\t  this.name = null;\n\t}\n\n\t/**\n\t * Parse the mappings in a string in to a data structure which we can easily\n\t * query (the ordered arrays in the `this.__generatedMappings` and\n\t * `this.__originalMappings` properties).\n\t */\n\tBasicSourceMapConsumer.prototype._parseMappings = function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {\n\t  var generatedLine = 1;\n\t  var previousGeneratedColumn = 0;\n\t  var previousOriginalLine = 0;\n\t  var previousOriginalColumn = 0;\n\t  var previousSource = 0;\n\t  var previousName = 0;\n\t  var length = aStr.length;\n\t  var index = 0;\n\t  var cachedSegments = {};\n\t  var temp = {};\n\t  var originalMappings = [];\n\t  var generatedMappings = [];\n\t  var mapping, str, segment, end, value;\n\n\t  while (index < length) {\n\t    if (aStr.charAt(index) === ';') {\n\t      generatedLine++;\n\t      index++;\n\t      previousGeneratedColumn = 0;\n\t    } else if (aStr.charAt(index) === ',') {\n\t      index++;\n\t    } else {\n\t      mapping = new Mapping();\n\t      mapping.generatedLine = generatedLine;\n\n\t      // Because each offset is encoded relative to the previous one,\n\t      // many segments often have the same encoding. We can exploit this\n\t      // fact by caching the parsed variable length fields of each segment,\n\t      // allowing us to avoid a second parse if we encounter the same\n\t      // segment again.\n\t      for (end = index; end < length; end++) {\n\t        if (this._charIsMappingSeparator(aStr, end)) {\n\t          break;\n\t        }\n\t      }\n\t      str = aStr.slice(index, end);\n\n\t      segment = cachedSegments[str];\n\t      if (segment) {\n\t        index += str.length;\n\t      } else {\n\t        segment = [];\n\t        while (index < end) {\n\t          base64VLQ.decode(aStr, index, temp);\n\t          value = temp.value;\n\t          index = temp.rest;\n\t          segment.push(value);\n\t        }\n\n\t        if (segment.length === 2) {\n\t          throw new Error('Found a source, but no line and column');\n\t        }\n\n\t        if (segment.length === 3) {\n\t          throw new Error('Found a source and line, but no column');\n\t        }\n\n\t        cachedSegments[str] = segment;\n\t      }\n\n\t      // Generated column.\n\t      mapping.generatedColumn = previousGeneratedColumn + segment[0];\n\t      previousGeneratedColumn = mapping.generatedColumn;\n\n\t      if (segment.length > 1) {\n\t        // Original source.\n\t        mapping.source = previousSource + segment[1];\n\t        previousSource += segment[1];\n\n\t        // Original line.\n\t        mapping.originalLine = previousOriginalLine + segment[2];\n\t        previousOriginalLine = mapping.originalLine;\n\t        // Lines are stored 0-based\n\t        mapping.originalLine += 1;\n\n\t        // Original column.\n\t        mapping.originalColumn = previousOriginalColumn + segment[3];\n\t        previousOriginalColumn = mapping.originalColumn;\n\n\t        if (segment.length > 4) {\n\t          // Original name.\n\t          mapping.name = previousName + segment[4];\n\t          previousName += segment[4];\n\t        }\n\t      }\n\n\t      generatedMappings.push(mapping);\n\t      if (typeof mapping.originalLine === 'number') {\n\t        originalMappings.push(mapping);\n\t      }\n\t    }\n\t  }\n\n\t  quickSort(generatedMappings, util.compareByGeneratedPositionsDeflated);\n\t  this.__generatedMappings = generatedMappings;\n\n\t  quickSort(originalMappings, util.compareByOriginalPositions);\n\t  this.__originalMappings = originalMappings;\n\t};\n\n\t/**\n\t * Find the mapping that best matches the hypothetical \"needle\" mapping that\n\t * we are searching for in the given \"haystack\" of mappings.\n\t */\n\tBasicSourceMapConsumer.prototype._findMapping = function SourceMapConsumer_findMapping(aNeedle, aMappings, aLineName, aColumnName, aComparator, aBias) {\n\t  // To return the position we are searching for, we must first find the\n\t  // mapping for the given position and then return the opposite position it\n\t  // points to. Because the mappings are sorted, we can use binary search to\n\t  // find the best mapping.\n\n\t  if (aNeedle[aLineName] <= 0) {\n\t    throw new TypeError('Line must be greater than or equal to 1, got ' + aNeedle[aLineName]);\n\t  }\n\t  if (aNeedle[aColumnName] < 0) {\n\t    throw new TypeError('Column must be greater than or equal to 0, got ' + aNeedle[aColumnName]);\n\t  }\n\n\t  return binarySearch.search(aNeedle, aMappings, aComparator, aBias);\n\t};\n\n\t/**\n\t * Compute the last column for each generated mapping. The last column is\n\t * inclusive.\n\t */\n\tBasicSourceMapConsumer.prototype.computeColumnSpans = function SourceMapConsumer_computeColumnSpans() {\n\t  for (var index = 0; index < this._generatedMappings.length; ++index) {\n\t    var mapping = this._generatedMappings[index];\n\n\t    // Mappings do not contain a field for the last generated columnt. We\n\t    // can come up with an optimistic estimate, however, by assuming that\n\t    // mappings are contiguous (i.e. given two consecutive mappings, the\n\t    // first mapping ends where the second one starts).\n\t    if (index + 1 < this._generatedMappings.length) {\n\t      var nextMapping = this._generatedMappings[index + 1];\n\n\t      if (mapping.generatedLine === nextMapping.generatedLine) {\n\t        mapping.lastGeneratedColumn = nextMapping.generatedColumn - 1;\n\t        continue;\n\t      }\n\t    }\n\n\t    // The last mapping for each line spans the entire line.\n\t    mapping.lastGeneratedColumn = Infinity;\n\t  }\n\t};\n\n\t/**\n\t * Returns the original source, line, and column information for the generated\n\t * source's line and column positions provided. The only argument is an object\n\t * with the following properties:\n\t *\n\t *   - line: The line number in the generated source.\n\t *   - column: The column number in the generated source.\n\t *   - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or\n\t *     'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the\n\t *     closest element that is smaller than or greater than the one we are\n\t *     searching for, respectively, if the exact element cannot be found.\n\t *     Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.\n\t *\n\t * and an object is returned with the following properties:\n\t *\n\t *   - source: The original source file, or null.\n\t *   - line: The line number in the original source, or null.\n\t *   - column: The column number in the original source, or null.\n\t *   - name: The original identifier, or null.\n\t */\n\tBasicSourceMapConsumer.prototype.originalPositionFor = function SourceMapConsumer_originalPositionFor(aArgs) {\n\t  var needle = {\n\t    generatedLine: util.getArg(aArgs, 'line'),\n\t    generatedColumn: util.getArg(aArgs, 'column')\n\t  };\n\n\t  var index = this._findMapping(needle, this._generatedMappings, \"generatedLine\", \"generatedColumn\", util.compareByGeneratedPositionsDeflated, util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND));\n\n\t  if (index >= 0) {\n\t    var mapping = this._generatedMappings[index];\n\n\t    if (mapping.generatedLine === needle.generatedLine) {\n\t      var source = util.getArg(mapping, 'source', null);\n\t      if (source !== null) {\n\t        source = this._sources.at(source);\n\t        if (this.sourceRoot != null) {\n\t          source = util.join(this.sourceRoot, source);\n\t        }\n\t      }\n\t      var name = util.getArg(mapping, 'name', null);\n\t      if (name !== null) {\n\t        name = this._names.at(name);\n\t      }\n\t      return {\n\t        source: source,\n\t        line: util.getArg(mapping, 'originalLine', null),\n\t        column: util.getArg(mapping, 'originalColumn', null),\n\t        name: name\n\t      };\n\t    }\n\t  }\n\n\t  return {\n\t    source: null,\n\t    line: null,\n\t    column: null,\n\t    name: null\n\t  };\n\t};\n\n\t/**\n\t * Return true if we have the source content for every source in the source\n\t * map, false otherwise.\n\t */\n\tBasicSourceMapConsumer.prototype.hasContentsOfAllSources = function BasicSourceMapConsumer_hasContentsOfAllSources() {\n\t  if (!this.sourcesContent) {\n\t    return false;\n\t  }\n\t  return this.sourcesContent.length >= this._sources.size() && !this.sourcesContent.some(function (sc) {\n\t    return sc == null;\n\t  });\n\t};\n\n\t/**\n\t * Returns the original source content. The only argument is the url of the\n\t * original source file. Returns null if no original source content is\n\t * available.\n\t */\n\tBasicSourceMapConsumer.prototype.sourceContentFor = function SourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {\n\t  if (!this.sourcesContent) {\n\t    return null;\n\t  }\n\n\t  if (this.sourceRoot != null) {\n\t    aSource = util.relative(this.sourceRoot, aSource);\n\t  }\n\n\t  if (this._sources.has(aSource)) {\n\t    return this.sourcesContent[this._sources.indexOf(aSource)];\n\t  }\n\n\t  var url;\n\t  if (this.sourceRoot != null && (url = util.urlParse(this.sourceRoot))) {\n\t    // XXX: file:// URIs and absolute paths lead to unexpected behavior for\n\t    // many users. We can help them out when they expect file:// URIs to\n\t    // behave like it would if they were running a local HTTP server. See\n\t    // https://bugzilla.mozilla.org/show_bug.cgi?id=885597.\n\t    var fileUriAbsPath = aSource.replace(/^file:\\/\\//, \"\");\n\t    if (url.scheme == \"file\" && this._sources.has(fileUriAbsPath)) {\n\t      return this.sourcesContent[this._sources.indexOf(fileUriAbsPath)];\n\t    }\n\n\t    if ((!url.path || url.path == \"/\") && this._sources.has(\"/\" + aSource)) {\n\t      return this.sourcesContent[this._sources.indexOf(\"/\" + aSource)];\n\t    }\n\t  }\n\n\t  // This function is used recursively from\n\t  // IndexedSourceMapConsumer.prototype.sourceContentFor. In that case, we\n\t  // don't want to throw if we can't find the source - we just want to\n\t  // return null, so we provide a flag to exit gracefully.\n\t  if (nullOnMissing) {\n\t    return null;\n\t  } else {\n\t    throw new Error('\"' + aSource + '\" is not in the SourceMap.');\n\t  }\n\t};\n\n\t/**\n\t * Returns the generated line and column information for the original source,\n\t * line, and column positions provided. The only argument is an object with\n\t * the following properties:\n\t *\n\t *   - source: The filename of the original source.\n\t *   - line: The line number in the original source.\n\t *   - column: The column number in the original source.\n\t *   - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or\n\t *     'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the\n\t *     closest element that is smaller than or greater than the one we are\n\t *     searching for, respectively, if the exact element cannot be found.\n\t *     Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.\n\t *\n\t * and an object is returned with the following properties:\n\t *\n\t *   - line: The line number in the generated source, or null.\n\t *   - column: The column number in the generated source, or null.\n\t */\n\tBasicSourceMapConsumer.prototype.generatedPositionFor = function SourceMapConsumer_generatedPositionFor(aArgs) {\n\t  var source = util.getArg(aArgs, 'source');\n\t  if (this.sourceRoot != null) {\n\t    source = util.relative(this.sourceRoot, source);\n\t  }\n\t  if (!this._sources.has(source)) {\n\t    return {\n\t      line: null,\n\t      column: null,\n\t      lastColumn: null\n\t    };\n\t  }\n\t  source = this._sources.indexOf(source);\n\n\t  var needle = {\n\t    source: source,\n\t    originalLine: util.getArg(aArgs, 'line'),\n\t    originalColumn: util.getArg(aArgs, 'column')\n\t  };\n\n\t  var index = this._findMapping(needle, this._originalMappings, \"originalLine\", \"originalColumn\", util.compareByOriginalPositions, util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND));\n\n\t  if (index >= 0) {\n\t    var mapping = this._originalMappings[index];\n\n\t    if (mapping.source === needle.source) {\n\t      return {\n\t        line: util.getArg(mapping, 'generatedLine', null),\n\t        column: util.getArg(mapping, 'generatedColumn', null),\n\t        lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)\n\t      };\n\t    }\n\t  }\n\n\t  return {\n\t    line: null,\n\t    column: null,\n\t    lastColumn: null\n\t  };\n\t};\n\n\texports.BasicSourceMapConsumer = BasicSourceMapConsumer;\n\n\t/**\n\t * An IndexedSourceMapConsumer instance represents a parsed source map which\n\t * we can query for information. It differs from BasicSourceMapConsumer in\n\t * that it takes \"indexed\" source maps (i.e. ones with a \"sections\" field) as\n\t * input.\n\t *\n\t * The only parameter is a raw source map (either as a JSON string, or already\n\t * parsed to an object). According to the spec for indexed source maps, they\n\t * have the following attributes:\n\t *\n\t *   - version: Which version of the source map spec this map is following.\n\t *   - file: Optional. The generated file this source map is associated with.\n\t *   - sections: A list of section definitions.\n\t *\n\t * Each value under the \"sections\" field has two fields:\n\t *   - offset: The offset into the original specified at which this section\n\t *       begins to apply, defined as an object with a \"line\" and \"column\"\n\t *       field.\n\t *   - map: A source map definition. This source map could also be indexed,\n\t *       but doesn't have to be.\n\t *\n\t * Instead of the \"map\" field, it's also possible to have a \"url\" field\n\t * specifying a URL to retrieve a source map from, but that's currently\n\t * unsupported.\n\t *\n\t * Here's an example source map, taken from the source map spec[0], but\n\t * modified to omit a section which uses the \"url\" field.\n\t *\n\t *  {\n\t *    version : 3,\n\t *    file: \"app.js\",\n\t *    sections: [{\n\t *      offset: {line:100, column:10},\n\t *      map: {\n\t *        version : 3,\n\t *        file: \"section.js\",\n\t *        sources: [\"foo.js\", \"bar.js\"],\n\t *        names: [\"src\", \"maps\", \"are\", \"fun\"],\n\t *        mappings: \"AAAA,E;;ABCDE;\"\n\t *      }\n\t *    }],\n\t *  }\n\t *\n\t * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit#heading=h.535es3xeprgt\n\t */\n\tfunction IndexedSourceMapConsumer(aSourceMap) {\n\t  var sourceMap = aSourceMap;\n\t  if (typeof aSourceMap === 'string') {\n\t    sourceMap = JSON.parse(aSourceMap.replace(/^\\)\\]\\}'/, ''));\n\t  }\n\n\t  var version = util.getArg(sourceMap, 'version');\n\t  var sections = util.getArg(sourceMap, 'sections');\n\n\t  if (version != this._version) {\n\t    throw new Error('Unsupported version: ' + version);\n\t  }\n\n\t  this._sources = new ArraySet();\n\t  this._names = new ArraySet();\n\n\t  var lastOffset = {\n\t    line: -1,\n\t    column: 0\n\t  };\n\t  this._sections = sections.map(function (s) {\n\t    if (s.url) {\n\t      // The url field will require support for asynchronicity.\n\t      // See https://github.com/mozilla/source-map/issues/16\n\t      throw new Error('Support for url field in sections not implemented.');\n\t    }\n\t    var offset = util.getArg(s, 'offset');\n\t    var offsetLine = util.getArg(offset, 'line');\n\t    var offsetColumn = util.getArg(offset, 'column');\n\n\t    if (offsetLine < lastOffset.line || offsetLine === lastOffset.line && offsetColumn < lastOffset.column) {\n\t      throw new Error('Section offsets must be ordered and non-overlapping.');\n\t    }\n\t    lastOffset = offset;\n\n\t    return {\n\t      generatedOffset: {\n\t        // The offset fields are 0-based, but we use 1-based indices when\n\t        // encoding/decoding from VLQ.\n\t        generatedLine: offsetLine + 1,\n\t        generatedColumn: offsetColumn + 1\n\t      },\n\t      consumer: new SourceMapConsumer(util.getArg(s, 'map'))\n\t    };\n\t  });\n\t}\n\n\tIndexedSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);\n\tIndexedSourceMapConsumer.prototype.constructor = SourceMapConsumer;\n\n\t/**\n\t * The version of the source mapping spec that we are consuming.\n\t */\n\tIndexedSourceMapConsumer.prototype._version = 3;\n\n\t/**\n\t * The list of original sources.\n\t */\n\tObject.defineProperty(IndexedSourceMapConsumer.prototype, 'sources', {\n\t  get: function get() {\n\t    var sources = [];\n\t    for (var i = 0; i < this._sections.length; i++) {\n\t      for (var j = 0; j < this._sections[i].consumer.sources.length; j++) {\n\t        sources.push(this._sections[i].consumer.sources[j]);\n\t      }\n\t    }\n\t    return sources;\n\t  }\n\t});\n\n\t/**\n\t * Returns the original source, line, and column information for the generated\n\t * source's line and column positions provided. The only argument is an object\n\t * with the following properties:\n\t *\n\t *   - line: The line number in the generated source.\n\t *   - column: The column number in the generated source.\n\t *\n\t * and an object is returned with the following properties:\n\t *\n\t *   - source: The original source file, or null.\n\t *   - line: The line number in the original source, or null.\n\t *   - column: The column number in the original source, or null.\n\t *   - name: The original identifier, or null.\n\t */\n\tIndexedSourceMapConsumer.prototype.originalPositionFor = function IndexedSourceMapConsumer_originalPositionFor(aArgs) {\n\t  var needle = {\n\t    generatedLine: util.getArg(aArgs, 'line'),\n\t    generatedColumn: util.getArg(aArgs, 'column')\n\t  };\n\n\t  // Find the section containing the generated position we're trying to map\n\t  // to an original position.\n\t  var sectionIndex = binarySearch.search(needle, this._sections, function (needle, section) {\n\t    var cmp = needle.generatedLine - section.generatedOffset.generatedLine;\n\t    if (cmp) {\n\t      return cmp;\n\t    }\n\n\t    return needle.generatedColumn - section.generatedOffset.generatedColumn;\n\t  });\n\t  var section = this._sections[sectionIndex];\n\n\t  if (!section) {\n\t    return {\n\t      source: null,\n\t      line: null,\n\t      column: null,\n\t      name: null\n\t    };\n\t  }\n\n\t  return section.consumer.originalPositionFor({\n\t    line: needle.generatedLine - (section.generatedOffset.generatedLine - 1),\n\t    column: needle.generatedColumn - (section.generatedOffset.generatedLine === needle.generatedLine ? section.generatedOffset.generatedColumn - 1 : 0),\n\t    bias: aArgs.bias\n\t  });\n\t};\n\n\t/**\n\t * Return true if we have the source content for every source in the source\n\t * map, false otherwise.\n\t */\n\tIndexedSourceMapConsumer.prototype.hasContentsOfAllSources = function IndexedSourceMapConsumer_hasContentsOfAllSources() {\n\t  return this._sections.every(function (s) {\n\t    return s.consumer.hasContentsOfAllSources();\n\t  });\n\t};\n\n\t/**\n\t * Returns the original source content. The only argument is the url of the\n\t * original source file. Returns null if no original source content is\n\t * available.\n\t */\n\tIndexedSourceMapConsumer.prototype.sourceContentFor = function IndexedSourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {\n\t  for (var i = 0; i < this._sections.length; i++) {\n\t    var section = this._sections[i];\n\n\t    var content = section.consumer.sourceContentFor(aSource, true);\n\t    if (content) {\n\t      return content;\n\t    }\n\t  }\n\t  if (nullOnMissing) {\n\t    return null;\n\t  } else {\n\t    throw new Error('\"' + aSource + '\" is not in the SourceMap.');\n\t  }\n\t};\n\n\t/**\n\t * Returns the generated line and column information for the original source,\n\t * line, and column positions provided. The only argument is an object with\n\t * the following properties:\n\t *\n\t *   - source: The filename of the original source.\n\t *   - line: The line number in the original source.\n\t *   - column: The column number in the original source.\n\t *\n\t * and an object is returned with the following properties:\n\t *\n\t *   - line: The line number in the generated source, or null.\n\t *   - column: The column number in the generated source, or null.\n\t */\n\tIndexedSourceMapConsumer.prototype.generatedPositionFor = function IndexedSourceMapConsumer_generatedPositionFor(aArgs) {\n\t  for (var i = 0; i < this._sections.length; i++) {\n\t    var section = this._sections[i];\n\n\t    // Only consider this section if the requested source is in the list of\n\t    // sources of the consumer.\n\t    if (section.consumer.sources.indexOf(util.getArg(aArgs, 'source')) === -1) {\n\t      continue;\n\t    }\n\t    var generatedPosition = section.consumer.generatedPositionFor(aArgs);\n\t    if (generatedPosition) {\n\t      var ret = {\n\t        line: generatedPosition.line + (section.generatedOffset.generatedLine - 1),\n\t        column: generatedPosition.column + (section.generatedOffset.generatedLine === generatedPosition.line ? section.generatedOffset.generatedColumn - 1 : 0)\n\t      };\n\t      return ret;\n\t    }\n\t  }\n\n\t  return {\n\t    line: null,\n\t    column: null\n\t  };\n\t};\n\n\t/**\n\t * Parse the mappings in a string in to a data structure which we can easily\n\t * query (the ordered arrays in the `this.__generatedMappings` and\n\t * `this.__originalMappings` properties).\n\t */\n\tIndexedSourceMapConsumer.prototype._parseMappings = function IndexedSourceMapConsumer_parseMappings(aStr, aSourceRoot) {\n\t  this.__generatedMappings = [];\n\t  this.__originalMappings = [];\n\t  for (var i = 0; i < this._sections.length; i++) {\n\t    var section = this._sections[i];\n\t    var sectionMappings = section.consumer._generatedMappings;\n\t    for (var j = 0; j < sectionMappings.length; j++) {\n\t      var mapping = sectionMappings[j];\n\n\t      var source = section.consumer._sources.at(mapping.source);\n\t      if (section.consumer.sourceRoot !== null) {\n\t        source = util.join(section.consumer.sourceRoot, source);\n\t      }\n\t      this._sources.add(source);\n\t      source = this._sources.indexOf(source);\n\n\t      var name = section.consumer._names.at(mapping.name);\n\t      this._names.add(name);\n\t      name = this._names.indexOf(name);\n\n\t      // The mappings coming from the consumer for the section have\n\t      // generated positions relative to the start of the section, so we\n\t      // need to offset them to be relative to the start of the concatenated\n\t      // generated file.\n\t      var adjustedMapping = {\n\t        source: source,\n\t        generatedLine: mapping.generatedLine + (section.generatedOffset.generatedLine - 1),\n\t        generatedColumn: mapping.generatedColumn + (section.generatedOffset.generatedLine === mapping.generatedLine ? section.generatedOffset.generatedColumn - 1 : 0),\n\t        originalLine: mapping.originalLine,\n\t        originalColumn: mapping.originalColumn,\n\t        name: name\n\t      };\n\n\t      this.__generatedMappings.push(adjustedMapping);\n\t      if (typeof adjustedMapping.originalLine === 'number') {\n\t        this.__originalMappings.push(adjustedMapping);\n\t      }\n\t    }\n\t  }\n\n\t  quickSort(this.__generatedMappings, util.compareByGeneratedPositionsDeflated);\n\t  quickSort(this.__originalMappings, util.compareByOriginalPositions);\n\t};\n\n\texports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;\n\n/***/ }),\n/* 621 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\tvar SourceMapGenerator = __webpack_require__(287).SourceMapGenerator;\n\tvar util = __webpack_require__(63);\n\n\t// Matches a Windows-style `\\r\\n` newline or a `\\n` newline used by all other\n\t// operating systems these days (capturing the result).\n\tvar REGEX_NEWLINE = /(\\r?\\n)/;\n\n\t// Newline character code for charCodeAt() comparisons\n\tvar NEWLINE_CODE = 10;\n\n\t// Private symbol for identifying `SourceNode`s when multiple versions of\n\t// the source-map library are loaded. This MUST NOT CHANGE across\n\t// versions!\n\tvar isSourceNode = \"$$$isSourceNode$$$\";\n\n\t/**\n\t * SourceNodes provide a way to abstract over interpolating/concatenating\n\t * snippets of generated JavaScript source code while maintaining the line and\n\t * column information associated with the original source code.\n\t *\n\t * @param aLine The original line number.\n\t * @param aColumn The original column number.\n\t * @param aSource The original source's filename.\n\t * @param aChunks Optional. An array of strings which are snippets of\n\t *        generated JS, or other SourceNodes.\n\t * @param aName The original identifier.\n\t */\n\tfunction SourceNode(aLine, aColumn, aSource, aChunks, aName) {\n\t  this.children = [];\n\t  this.sourceContents = {};\n\t  this.line = aLine == null ? null : aLine;\n\t  this.column = aColumn == null ? null : aColumn;\n\t  this.source = aSource == null ? null : aSource;\n\t  this.name = aName == null ? null : aName;\n\t  this[isSourceNode] = true;\n\t  if (aChunks != null) this.add(aChunks);\n\t}\n\n\t/**\n\t * Creates a SourceNode from generated code and a SourceMapConsumer.\n\t *\n\t * @param aGeneratedCode The generated code\n\t * @param aSourceMapConsumer The SourceMap for the generated code\n\t * @param aRelativePath Optional. The path that relative sources in the\n\t *        SourceMapConsumer should be relative to.\n\t */\n\tSourceNode.fromStringWithSourceMap = function SourceNode_fromStringWithSourceMap(aGeneratedCode, aSourceMapConsumer, aRelativePath) {\n\t  // The SourceNode we want to fill with the generated code\n\t  // and the SourceMap\n\t  var node = new SourceNode();\n\n\t  // All even indices of this array are one line of the generated code,\n\t  // while all odd indices are the newlines between two adjacent lines\n\t  // (since `REGEX_NEWLINE` captures its match).\n\t  // Processed fragments are removed from this array, by calling `shiftNextLine`.\n\t  var remainingLines = aGeneratedCode.split(REGEX_NEWLINE);\n\t  var shiftNextLine = function shiftNextLine() {\n\t    var lineContents = remainingLines.shift();\n\t    // The last line of a file might not have a newline.\n\t    var newLine = remainingLines.shift() || \"\";\n\t    return lineContents + newLine;\n\t  };\n\n\t  // We need to remember the position of \"remainingLines\"\n\t  var lastGeneratedLine = 1,\n\t      lastGeneratedColumn = 0;\n\n\t  // The generate SourceNodes we need a code range.\n\t  // To extract it current and last mapping is used.\n\t  // Here we store the last mapping.\n\t  var lastMapping = null;\n\n\t  aSourceMapConsumer.eachMapping(function (mapping) {\n\t    if (lastMapping !== null) {\n\t      // We add the code from \"lastMapping\" to \"mapping\":\n\t      // First check if there is a new line in between.\n\t      if (lastGeneratedLine < mapping.generatedLine) {\n\t        // Associate first line with \"lastMapping\"\n\t        addMappingWithCode(lastMapping, shiftNextLine());\n\t        lastGeneratedLine++;\n\t        lastGeneratedColumn = 0;\n\t        // The remaining code is added without mapping\n\t      } else {\n\t        // There is no new line in between.\n\t        // Associate the code between \"lastGeneratedColumn\" and\n\t        // \"mapping.generatedColumn\" with \"lastMapping\"\n\t        var nextLine = remainingLines[0];\n\t        var code = nextLine.substr(0, mapping.generatedColumn - lastGeneratedColumn);\n\t        remainingLines[0] = nextLine.substr(mapping.generatedColumn - lastGeneratedColumn);\n\t        lastGeneratedColumn = mapping.generatedColumn;\n\t        addMappingWithCode(lastMapping, code);\n\t        // No more remaining code, continue\n\t        lastMapping = mapping;\n\t        return;\n\t      }\n\t    }\n\t    // We add the generated code until the first mapping\n\t    // to the SourceNode without any mapping.\n\t    // Each line is added as separate string.\n\t    while (lastGeneratedLine < mapping.generatedLine) {\n\t      node.add(shiftNextLine());\n\t      lastGeneratedLine++;\n\t    }\n\t    if (lastGeneratedColumn < mapping.generatedColumn) {\n\t      var nextLine = remainingLines[0];\n\t      node.add(nextLine.substr(0, mapping.generatedColumn));\n\t      remainingLines[0] = nextLine.substr(mapping.generatedColumn);\n\t      lastGeneratedColumn = mapping.generatedColumn;\n\t    }\n\t    lastMapping = mapping;\n\t  }, this);\n\t  // We have processed all mappings.\n\t  if (remainingLines.length > 0) {\n\t    if (lastMapping) {\n\t      // Associate the remaining code in the current line with \"lastMapping\"\n\t      addMappingWithCode(lastMapping, shiftNextLine());\n\t    }\n\t    // and add the remaining lines without any mapping\n\t    node.add(remainingLines.join(\"\"));\n\t  }\n\n\t  // Copy sourcesContent into SourceNode\n\t  aSourceMapConsumer.sources.forEach(function (sourceFile) {\n\t    var content = aSourceMapConsumer.sourceContentFor(sourceFile);\n\t    if (content != null) {\n\t      if (aRelativePath != null) {\n\t        sourceFile = util.join(aRelativePath, sourceFile);\n\t      }\n\t      node.setSourceContent(sourceFile, content);\n\t    }\n\t  });\n\n\t  return node;\n\n\t  function addMappingWithCode(mapping, code) {\n\t    if (mapping === null || mapping.source === undefined) {\n\t      node.add(code);\n\t    } else {\n\t      var source = aRelativePath ? util.join(aRelativePath, mapping.source) : mapping.source;\n\t      node.add(new SourceNode(mapping.originalLine, mapping.originalColumn, source, code, mapping.name));\n\t    }\n\t  }\n\t};\n\n\t/**\n\t * Add a chunk of generated JS to this source node.\n\t *\n\t * @param aChunk A string snippet of generated JS code, another instance of\n\t *        SourceNode, or an array where each member is one of those things.\n\t */\n\tSourceNode.prototype.add = function SourceNode_add(aChunk) {\n\t  if (Array.isArray(aChunk)) {\n\t    aChunk.forEach(function (chunk) {\n\t      this.add(chunk);\n\t    }, this);\n\t  } else if (aChunk[isSourceNode] || typeof aChunk === \"string\") {\n\t    if (aChunk) {\n\t      this.children.push(aChunk);\n\t    }\n\t  } else {\n\t    throw new TypeError(\"Expected a SourceNode, string, or an array of SourceNodes and strings. Got \" + aChunk);\n\t  }\n\t  return this;\n\t};\n\n\t/**\n\t * Add a chunk of generated JS to the beginning of this source node.\n\t *\n\t * @param aChunk A string snippet of generated JS code, another instance of\n\t *        SourceNode, or an array where each member is one of those things.\n\t */\n\tSourceNode.prototype.prepend = function SourceNode_prepend(aChunk) {\n\t  if (Array.isArray(aChunk)) {\n\t    for (var i = aChunk.length - 1; i >= 0; i--) {\n\t      this.prepend(aChunk[i]);\n\t    }\n\t  } else if (aChunk[isSourceNode] || typeof aChunk === \"string\") {\n\t    this.children.unshift(aChunk);\n\t  } else {\n\t    throw new TypeError(\"Expected a SourceNode, string, or an array of SourceNodes and strings. Got \" + aChunk);\n\t  }\n\t  return this;\n\t};\n\n\t/**\n\t * Walk over the tree of JS snippets in this node and its children. The\n\t * walking function is called once for each snippet of JS and is passed that\n\t * snippet and the its original associated source's line/column location.\n\t *\n\t * @param aFn The traversal function.\n\t */\n\tSourceNode.prototype.walk = function SourceNode_walk(aFn) {\n\t  var chunk;\n\t  for (var i = 0, len = this.children.length; i < len; i++) {\n\t    chunk = this.children[i];\n\t    if (chunk[isSourceNode]) {\n\t      chunk.walk(aFn);\n\t    } else {\n\t      if (chunk !== '') {\n\t        aFn(chunk, { source: this.source,\n\t          line: this.line,\n\t          column: this.column,\n\t          name: this.name });\n\t      }\n\t    }\n\t  }\n\t};\n\n\t/**\n\t * Like `String.prototype.join` except for SourceNodes. Inserts `aStr` between\n\t * each of `this.children`.\n\t *\n\t * @param aSep The separator.\n\t */\n\tSourceNode.prototype.join = function SourceNode_join(aSep) {\n\t  var newChildren;\n\t  var i;\n\t  var len = this.children.length;\n\t  if (len > 0) {\n\t    newChildren = [];\n\t    for (i = 0; i < len - 1; i++) {\n\t      newChildren.push(this.children[i]);\n\t      newChildren.push(aSep);\n\t    }\n\t    newChildren.push(this.children[i]);\n\t    this.children = newChildren;\n\t  }\n\t  return this;\n\t};\n\n\t/**\n\t * Call String.prototype.replace on the very right-most source snippet. Useful\n\t * for trimming whitespace from the end of a source node, etc.\n\t *\n\t * @param aPattern The pattern to replace.\n\t * @param aReplacement The thing to replace the pattern with.\n\t */\n\tSourceNode.prototype.replaceRight = function SourceNode_replaceRight(aPattern, aReplacement) {\n\t  var lastChild = this.children[this.children.length - 1];\n\t  if (lastChild[isSourceNode]) {\n\t    lastChild.replaceRight(aPattern, aReplacement);\n\t  } else if (typeof lastChild === 'string') {\n\t    this.children[this.children.length - 1] = lastChild.replace(aPattern, aReplacement);\n\t  } else {\n\t    this.children.push(''.replace(aPattern, aReplacement));\n\t  }\n\t  return this;\n\t};\n\n\t/**\n\t * Set the source content for a source file. This will be added to the SourceMapGenerator\n\t * in the sourcesContent field.\n\t *\n\t * @param aSourceFile The filename of the source file\n\t * @param aSourceContent The content of the source file\n\t */\n\tSourceNode.prototype.setSourceContent = function SourceNode_setSourceContent(aSourceFile, aSourceContent) {\n\t  this.sourceContents[util.toSetString(aSourceFile)] = aSourceContent;\n\t};\n\n\t/**\n\t * Walk over the tree of SourceNodes. The walking function is called for each\n\t * source file content and is passed the filename and source content.\n\t *\n\t * @param aFn The traversal function.\n\t */\n\tSourceNode.prototype.walkSourceContents = function SourceNode_walkSourceContents(aFn) {\n\t  for (var i = 0, len = this.children.length; i < len; i++) {\n\t    if (this.children[i][isSourceNode]) {\n\t      this.children[i].walkSourceContents(aFn);\n\t    }\n\t  }\n\n\t  var sources = Object.keys(this.sourceContents);\n\t  for (var i = 0, len = sources.length; i < len; i++) {\n\t    aFn(util.fromSetString(sources[i]), this.sourceContents[sources[i]]);\n\t  }\n\t};\n\n\t/**\n\t * Return the string representation of this source node. Walks over the tree\n\t * and concatenates all the various snippets together to one string.\n\t */\n\tSourceNode.prototype.toString = function SourceNode_toString() {\n\t  var str = \"\";\n\t  this.walk(function (chunk) {\n\t    str += chunk;\n\t  });\n\t  return str;\n\t};\n\n\t/**\n\t * Returns the string representation of this source node along with a source\n\t * map.\n\t */\n\tSourceNode.prototype.toStringWithSourceMap = function SourceNode_toStringWithSourceMap(aArgs) {\n\t  var generated = {\n\t    code: \"\",\n\t    line: 1,\n\t    column: 0\n\t  };\n\t  var map = new SourceMapGenerator(aArgs);\n\t  var sourceMappingActive = false;\n\t  var lastOriginalSource = null;\n\t  var lastOriginalLine = null;\n\t  var lastOriginalColumn = null;\n\t  var lastOriginalName = null;\n\t  this.walk(function (chunk, original) {\n\t    generated.code += chunk;\n\t    if (original.source !== null && original.line !== null && original.column !== null) {\n\t      if (lastOriginalSource !== original.source || lastOriginalLine !== original.line || lastOriginalColumn !== original.column || lastOriginalName !== original.name) {\n\t        map.addMapping({\n\t          source: original.source,\n\t          original: {\n\t            line: original.line,\n\t            column: original.column\n\t          },\n\t          generated: {\n\t            line: generated.line,\n\t            column: generated.column\n\t          },\n\t          name: original.name\n\t        });\n\t      }\n\t      lastOriginalSource = original.source;\n\t      lastOriginalLine = original.line;\n\t      lastOriginalColumn = original.column;\n\t      lastOriginalName = original.name;\n\t      sourceMappingActive = true;\n\t    } else if (sourceMappingActive) {\n\t      map.addMapping({\n\t        generated: {\n\t          line: generated.line,\n\t          column: generated.column\n\t        }\n\t      });\n\t      lastOriginalSource = null;\n\t      sourceMappingActive = false;\n\t    }\n\t    for (var idx = 0, length = chunk.length; idx < length; idx++) {\n\t      if (chunk.charCodeAt(idx) === NEWLINE_CODE) {\n\t        generated.line++;\n\t        generated.column = 0;\n\t        // Mappings end at eol\n\t        if (idx + 1 === length) {\n\t          lastOriginalSource = null;\n\t          sourceMappingActive = false;\n\t        } else if (sourceMappingActive) {\n\t          map.addMapping({\n\t            source: original.source,\n\t            original: {\n\t              line: original.line,\n\t              column: original.column\n\t            },\n\t            generated: {\n\t              line: generated.line,\n\t              column: generated.column\n\t            },\n\t            name: original.name\n\t          });\n\t        }\n\t      } else {\n\t        generated.column++;\n\t      }\n\t    }\n\t  });\n\t  this.walkSourceContents(function (sourceFile, sourceContent) {\n\t    map.setSourceContent(sourceFile, sourceContent);\n\t  });\n\n\t  return { code: generated.code, map: map };\n\t};\n\n\texports.SourceNode = SourceNode;\n\n/***/ }),\n/* 622 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar ansiRegex = __webpack_require__(180)();\n\n\tmodule.exports = function (str) {\n\t\treturn typeof str === 'string' ? str.replace(ansiRegex, '') : str;\n\t};\n\n/***/ }),\n/* 623 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {'use strict';\n\n\tvar argv = process.argv;\n\n\tvar terminator = argv.indexOf('--');\n\tvar hasFlag = function hasFlag(flag) {\n\t\tflag = '--' + flag;\n\t\tvar pos = argv.indexOf(flag);\n\t\treturn pos !== -1 && (terminator !== -1 ? pos < terminator : true);\n\t};\n\n\tmodule.exports = function () {\n\t\tif ('FORCE_COLOR' in process.env) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (hasFlag('no-color') || hasFlag('no-colors') || hasFlag('color=false')) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (hasFlag('color') || hasFlag('colors') || hasFlag('color=true') || hasFlag('color=always')) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (process.stdout && !process.stdout.isTTY) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (process.platform === 'win32') {\n\t\t\treturn true;\n\t\t}\n\n\t\tif ('COLORTERM' in process.env) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (process.env.TERM === 'dumb') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (/^screen|^xterm|^vt100|color|ansi|cygwin|linux/i.test(process.env.TERM)) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}();\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 624 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tmodule.exports = function toFastproperties(o) {\n\t\tfunction Sub() {}\n\t\tSub.prototype = o;\n\t\tvar receiver = new Sub(); // create an instance\n\t\tfunction ic() {\n\t\t\treturn _typeof(receiver.foo);\n\t\t} // perform access\n\t\tic();\n\t\tic();\n\t\treturn o;\n\t\teval(\"o\" + o); // ensure no dead code elimination\n\t};\n\n/***/ }),\n/* 625 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function (str) {\n\t\tvar tail = str.length;\n\n\t\twhile (/[\\s\\uFEFF\\u00A0]/.test(str[tail - 1])) {\n\t\t\ttail--;\n\t\t}\n\n\t\treturn str.slice(0, tail);\n\t};\n\n/***/ }),\n/* 626 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tif (typeof Object.create === 'function') {\n\t  // implementation from standard node.js 'util' module\n\t  module.exports = function inherits(ctor, superCtor) {\n\t    ctor.super_ = superCtor;\n\t    ctor.prototype = Object.create(superCtor.prototype, {\n\t      constructor: {\n\t        value: ctor,\n\t        enumerable: false,\n\t        writable: true,\n\t        configurable: true\n\t      }\n\t    });\n\t  };\n\t} else {\n\t  // old school shim for old browsers\n\t  module.exports = function inherits(ctor, superCtor) {\n\t    ctor.super_ = superCtor;\n\t    var TempCtor = function TempCtor() {};\n\t    TempCtor.prototype = superCtor.prototype;\n\t    ctor.prototype = new TempCtor();\n\t    ctor.prototype.constructor = ctor;\n\t  };\n\t}\n\n/***/ }),\n/* 627 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tmodule.exports = function isBuffer(arg) {\n\t  return arg && (typeof arg === 'undefined' ? 'undefined' : _typeof(arg)) === 'object' && typeof arg.copy === 'function' && typeof arg.fill === 'function' && typeof arg.readUInt8 === 'function';\n\t};\n\n/***/ }),\n/* 628 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\t/**\r\n\t * A shim that replaces Babel's require('package.json') statement.\r\n\t * Babel requires the entire package.json file just to get the version number.\r\n\t */\n\tvar version = exports.version = (\"6.26.0\");\n\n/***/ }),\n/* 629 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\n\texports.runScripts = runScripts;\n\t/**\r\n\t * Copyright 2013-2015, Facebook, Inc.\r\n\t * All rights reserved.\r\n\t *\r\n\t * This source code is licensed under the BSD-style license found in the\r\n\t * LICENSE file in the root directory of the React source tree. An additional\r\n\t * grant of patent rights can be found in the PATENTS file in the same directory.\r\n\t */\n\n\tvar scriptTypes = ['text/jsx', 'text/babel'];\n\n\tvar headEl = void 0;\n\tvar inlineScriptCount = 0;\n\n\t/**\r\n\t * Actually transform the code.\r\n\t */\n\tfunction transformCode(transformFn, script) {\n\t  var source = void 0;\n\t  if (script.url != null) {\n\t    source = script.url;\n\t  } else {\n\t    source = 'Inline Babel script';\n\t    inlineScriptCount++;\n\t    if (inlineScriptCount > 1) {\n\t      source += ' (' + inlineScriptCount + ')';\n\t    }\n\t  }\n\n\t  return transformFn(script.content, _extends({\n\t    filename: source\n\t  }, buildBabelOptions(script))).code;\n\t}\n\n\t/**\r\n\t * Builds the Babel options for transforming the specified script, using some\r\n\t * sensible default presets and plugins if none were explicitly provided.\r\n\t */\n\tfunction buildBabelOptions(script) {\n\t  return {\n\t    presets: script.presets || ['react', 'es2015'],\n\t    plugins: script.plugins || ['transform-class-properties', 'transform-object-rest-spread', 'transform-flow-strip-types'],\n\t    sourceMaps: 'inline'\n\t  };\n\t}\n\n\t/**\r\n\t * Appends a script element at the end of the <head> with the content of code,\r\n\t * after transforming it.\r\n\t */\n\tfunction run(transformFn, script) {\n\t  var scriptEl = document.createElement('script');\n\t  scriptEl.text = transformCode(transformFn, script);\n\t  headEl.appendChild(scriptEl);\n\t}\n\n\t/**\r\n\t * Load script from the provided url and pass the content to the callback.\r\n\t */\n\tfunction load(url, successCallback, errorCallback) {\n\t  var xhr = new XMLHttpRequest();\n\n\t  // async, however scripts will be executed in the order they are in the\n\t  // DOM to mirror normal script loading.\n\t  xhr.open('GET', url, true);\n\t  if ('overrideMimeType' in xhr) {\n\t    xhr.overrideMimeType('text/plain');\n\t  }\n\t  xhr.onreadystatechange = function () {\n\t    if (xhr.readyState === 4) {\n\t      if (xhr.status === 0 || xhr.status === 200) {\n\t        successCallback(xhr.responseText);\n\t      } else {\n\t        errorCallback();\n\t        throw new Error('Could not load ' + url);\n\t      }\n\t    }\n\t  };\n\t  return xhr.send(null);\n\t}\n\n\t/**\r\n\t * Converts a comma-separated data attribute string into an array of values. If\r\n\t * the string is empty, returns an empty array. If the string is not defined,\r\n\t * returns null.\r\n\t */\n\tfunction getPluginsOrPresetsFromScript(script, attributeName) {\n\t  var rawValue = script.getAttribute(attributeName);\n\t  if (rawValue === '') {\n\t    // Empty string means to not load ANY presets or plugins\n\t    return [];\n\t  }\n\t  if (!rawValue) {\n\t    // Any other falsy value (null, undefined) means we're not overriding this\n\t    // setting, and should use the default.\n\t    return null;\n\t  }\n\t  return rawValue.split(',').map(function (item) {\n\t    return item.trim();\n\t  });\n\t}\n\n\t/**\r\n\t * Loop over provided script tags and get the content, via innerHTML if an\r\n\t * inline script, or by using XHR. Transforms are applied if needed. The scripts\r\n\t * are executed in the order they are found on the page.\r\n\t */\n\tfunction loadScripts(transformFn, scripts) {\n\t  var result = [];\n\t  var count = scripts.length;\n\n\t  function check() {\n\t    var script, i;\n\n\t    for (i = 0; i < count; i++) {\n\t      script = result[i];\n\n\t      if (script.loaded && !script.executed) {\n\t        script.executed = true;\n\t        run(transformFn, script);\n\t      } else if (!script.loaded && !script.error && !script.async) {\n\t        break;\n\t      }\n\t    }\n\t  }\n\n\t  scripts.forEach(function (script, i) {\n\t    var scriptData = {\n\t      // script.async is always true for non-JavaScript script tags\n\t      async: script.hasAttribute('async'),\n\t      error: false,\n\t      executed: false,\n\t      plugins: getPluginsOrPresetsFromScript(script, 'data-plugins'),\n\t      presets: getPluginsOrPresetsFromScript(script, 'data-presets')\n\t    };\n\n\t    if (script.src) {\n\t      result[i] = _extends({}, scriptData, {\n\t        content: null,\n\t        loaded: false,\n\t        url: script.src\n\t      });\n\n\t      load(script.src, function (content) {\n\t        result[i].loaded = true;\n\t        result[i].content = content;\n\t        check();\n\t      }, function () {\n\t        result[i].error = true;\n\t        check();\n\t      });\n\t    } else {\n\t      result[i] = _extends({}, scriptData, {\n\t        content: script.innerHTML,\n\t        loaded: true,\n\t        url: null\n\t      });\n\t    }\n\t  });\n\n\t  check();\n\t}\n\n\t/**\r\n\t * Run script tags with type=\"text/jsx\".\r\n\t * @param {Array} scriptTags specify script tags to run, run all in the <head> if not given\r\n\t */\n\tfunction runScripts(transformFn, scripts) {\n\t  headEl = document.getElementsByTagName('head')[0];\n\t  if (!scripts) {\n\t    scripts = document.getElementsByTagName('script');\n\t  }\n\n\t  // Array.prototype.slice cannot be used on NodeList on IE8\n\t  var jsxScripts = [];\n\t  for (var i = 0; i < scripts.length; i++) {\n\t    var script = scripts.item(i);\n\t    // Support the old type=\"text/jsx;harmony=true\"\n\t    var type = script.type.split(';')[0];\n\t    if (scriptTypes.indexOf(type) !== -1) {\n\t      jsxScripts.push(script);\n\t    }\n\t  }\n\n\t  if (jsxScripts.length === 0) {\n\t    return;\n\t  }\n\n\t  console.warn('You are using the in-browser Babel transformer. Be sure to precompile ' + 'your scripts for production - https://babeljs.io/docs/setup/');\n\n\t  loadScripts(transformFn, jsxScripts);\n\t}\n\n/***/ }),\n/* 630 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = {\"builtin\":{\"Array\":false,\"ArrayBuffer\":false,\"Boolean\":false,\"constructor\":false,\"DataView\":false,\"Date\":false,\"decodeURI\":false,\"decodeURIComponent\":false,\"encodeURI\":false,\"encodeURIComponent\":false,\"Error\":false,\"escape\":false,\"eval\":false,\"EvalError\":false,\"Float32Array\":false,\"Float64Array\":false,\"Function\":false,\"hasOwnProperty\":false,\"Infinity\":false,\"Int16Array\":false,\"Int32Array\":false,\"Int8Array\":false,\"isFinite\":false,\"isNaN\":false,\"isPrototypeOf\":false,\"JSON\":false,\"Map\":false,\"Math\":false,\"NaN\":false,\"Number\":false,\"Object\":false,\"parseFloat\":false,\"parseInt\":false,\"Promise\":false,\"propertyIsEnumerable\":false,\"Proxy\":false,\"RangeError\":false,\"ReferenceError\":false,\"Reflect\":false,\"RegExp\":false,\"Set\":false,\"String\":false,\"Symbol\":false,\"SyntaxError\":false,\"System\":false,\"toLocaleString\":false,\"toString\":false,\"TypeError\":false,\"Uint16Array\":false,\"Uint32Array\":false,\"Uint8Array\":false,\"Uint8ClampedArray\":false,\"undefined\":false,\"unescape\":false,\"URIError\":false,\"valueOf\":false,\"WeakMap\":false,\"WeakSet\":false},\"es5\":{\"Array\":false,\"Boolean\":false,\"constructor\":false,\"Date\":false,\"decodeURI\":false,\"decodeURIComponent\":false,\"encodeURI\":false,\"encodeURIComponent\":false,\"Error\":false,\"escape\":false,\"eval\":false,\"EvalError\":false,\"Function\":false,\"hasOwnProperty\":false,\"Infinity\":false,\"isFinite\":false,\"isNaN\":false,\"isPrototypeOf\":false,\"JSON\":false,\"Math\":false,\"NaN\":false,\"Number\":false,\"Object\":false,\"parseFloat\":false,\"parseInt\":false,\"propertyIsEnumerable\":false,\"RangeError\":false,\"ReferenceError\":false,\"RegExp\":false,\"String\":false,\"SyntaxError\":false,\"toLocaleString\":false,\"toString\":false,\"TypeError\":false,\"undefined\":false,\"unescape\":false,\"URIError\":false,\"valueOf\":false},\"es6\":{\"Array\":false,\"ArrayBuffer\":false,\"Boolean\":false,\"constructor\":false,\"DataView\":false,\"Date\":false,\"decodeURI\":false,\"decodeURIComponent\":false,\"encodeURI\":false,\"encodeURIComponent\":false,\"Error\":false,\"escape\":false,\"eval\":false,\"EvalError\":false,\"Float32Array\":false,\"Float64Array\":false,\"Function\":false,\"hasOwnProperty\":false,\"Infinity\":false,\"Int16Array\":false,\"Int32Array\":false,\"Int8Array\":false,\"isFinite\":false,\"isNaN\":false,\"isPrototypeOf\":false,\"JSON\":false,\"Map\":false,\"Math\":false,\"NaN\":false,\"Number\":false,\"Object\":false,\"parseFloat\":false,\"parseInt\":false,\"Promise\":false,\"propertyIsEnumerable\":false,\"Proxy\":false,\"RangeError\":false,\"ReferenceError\":false,\"Reflect\":false,\"RegExp\":false,\"Set\":false,\"String\":false,\"Symbol\":false,\"SyntaxError\":false,\"System\":false,\"toLocaleString\":false,\"toString\":false,\"TypeError\":false,\"Uint16Array\":false,\"Uint32Array\":false,\"Uint8Array\":false,\"Uint8ClampedArray\":false,\"undefined\":false,\"unescape\":false,\"URIError\":false,\"valueOf\":false,\"WeakMap\":false,\"WeakSet\":false},\"browser\":{\"addEventListener\":false,\"alert\":false,\"AnalyserNode\":false,\"Animation\":false,\"AnimationEffectReadOnly\":false,\"AnimationEffectTiming\":false,\"AnimationEffectTimingReadOnly\":false,\"AnimationEvent\":false,\"AnimationPlaybackEvent\":false,\"AnimationTimeline\":false,\"applicationCache\":false,\"ApplicationCache\":false,\"ApplicationCacheErrorEvent\":false,\"atob\":false,\"Attr\":false,\"Audio\":false,\"AudioBuffer\":false,\"AudioBufferSourceNode\":false,\"AudioContext\":false,\"AudioDestinationNode\":false,\"AudioListener\":false,\"AudioNode\":false,\"AudioParam\":false,\"AudioProcessingEvent\":false,\"AutocompleteErrorEvent\":false,\"BarProp\":false,\"BatteryManager\":false,\"BeforeUnloadEvent\":false,\"BiquadFilterNode\":false,\"Blob\":false,\"blur\":false,\"btoa\":false,\"Cache\":false,\"caches\":false,\"CacheStorage\":false,\"cancelAnimationFrame\":false,\"cancelIdleCallback\":false,\"CanvasGradient\":false,\"CanvasPattern\":false,\"CanvasRenderingContext2D\":false,\"CDATASection\":false,\"ChannelMergerNode\":false,\"ChannelSplitterNode\":false,\"CharacterData\":false,\"clearInterval\":false,\"clearTimeout\":false,\"clientInformation\":false,\"ClientRect\":false,\"ClientRectList\":false,\"ClipboardEvent\":false,\"close\":false,\"closed\":false,\"CloseEvent\":false,\"Comment\":false,\"CompositionEvent\":false,\"confirm\":false,\"console\":false,\"ConvolverNode\":false,\"createImageBitmap\":false,\"Credential\":false,\"CredentialsContainer\":false,\"crypto\":false,\"Crypto\":false,\"CryptoKey\":false,\"CSS\":false,\"CSSAnimation\":false,\"CSSFontFaceRule\":false,\"CSSImportRule\":false,\"CSSKeyframeRule\":false,\"CSSKeyframesRule\":false,\"CSSMediaRule\":false,\"CSSPageRule\":false,\"CSSRule\":false,\"CSSRuleList\":false,\"CSSStyleDeclaration\":false,\"CSSStyleRule\":false,\"CSSStyleSheet\":false,\"CSSSupportsRule\":false,\"CSSTransition\":false,\"CSSUnknownRule\":false,\"CSSViewportRule\":false,\"customElements\":false,\"CustomEvent\":false,\"DataTransfer\":false,\"DataTransferItem\":false,\"DataTransferItemList\":false,\"Debug\":false,\"defaultStatus\":false,\"defaultstatus\":false,\"DelayNode\":false,\"DeviceMotionEvent\":false,\"DeviceOrientationEvent\":false,\"devicePixelRatio\":false,\"dispatchEvent\":false,\"document\":false,\"Document\":false,\"DocumentFragment\":false,\"DocumentTimeline\":false,\"DocumentType\":false,\"DOMError\":false,\"DOMException\":false,\"DOMImplementation\":false,\"DOMParser\":false,\"DOMSettableTokenList\":false,\"DOMStringList\":false,\"DOMStringMap\":false,\"DOMTokenList\":false,\"DragEvent\":false,\"DynamicsCompressorNode\":false,\"Element\":false,\"ElementTimeControl\":false,\"ErrorEvent\":false,\"event\":false,\"Event\":false,\"EventSource\":false,\"EventTarget\":false,\"external\":false,\"FederatedCredential\":false,\"fetch\":false,\"File\":false,\"FileError\":false,\"FileList\":false,\"FileReader\":false,\"find\":false,\"focus\":false,\"FocusEvent\":false,\"FontFace\":false,\"FormData\":false,\"frameElement\":false,\"frames\":false,\"GainNode\":false,\"Gamepad\":false,\"GamepadButton\":false,\"GamepadEvent\":false,\"getComputedStyle\":false,\"getSelection\":false,\"HashChangeEvent\":false,\"Headers\":false,\"history\":false,\"History\":false,\"HTMLAllCollection\":false,\"HTMLAnchorElement\":false,\"HTMLAppletElement\":false,\"HTMLAreaElement\":false,\"HTMLAudioElement\":false,\"HTMLBaseElement\":false,\"HTMLBlockquoteElement\":false,\"HTMLBodyElement\":false,\"HTMLBRElement\":false,\"HTMLButtonElement\":false,\"HTMLCanvasElement\":false,\"HTMLCollection\":false,\"HTMLContentElement\":false,\"HTMLDataListElement\":false,\"HTMLDetailsElement\":false,\"HTMLDialogElement\":false,\"HTMLDirectoryElement\":false,\"HTMLDivElement\":false,\"HTMLDListElement\":false,\"HTMLDocument\":false,\"HTMLElement\":false,\"HTMLEmbedElement\":false,\"HTMLFieldSetElement\":false,\"HTMLFontElement\":false,\"HTMLFormControlsCollection\":false,\"HTMLFormElement\":false,\"HTMLFrameElement\":false,\"HTMLFrameSetElement\":false,\"HTMLHeadElement\":false,\"HTMLHeadingElement\":false,\"HTMLHRElement\":false,\"HTMLHtmlElement\":false,\"HTMLIFrameElement\":false,\"HTMLImageElement\":false,\"HTMLInputElement\":false,\"HTMLIsIndexElement\":false,\"HTMLKeygenElement\":false,\"HTMLLabelElement\":false,\"HTMLLayerElement\":false,\"HTMLLegendElement\":false,\"HTMLLIElement\":false,\"HTMLLinkElement\":false,\"HTMLMapElement\":false,\"HTMLMarqueeElement\":false,\"HTMLMediaElement\":false,\"HTMLMenuElement\":false,\"HTMLMetaElement\":false,\"HTMLMeterElement\":false,\"HTMLModElement\":false,\"HTMLObjectElement\":false,\"HTMLOListElement\":false,\"HTMLOptGroupElement\":false,\"HTMLOptionElement\":false,\"HTMLOptionsCollection\":false,\"HTMLOutputElement\":false,\"HTMLParagraphElement\":false,\"HTMLParamElement\":false,\"HTMLPictureElement\":false,\"HTMLPreElement\":false,\"HTMLProgressElement\":false,\"HTMLQuoteElement\":false,\"HTMLScriptElement\":false,\"HTMLSelectElement\":false,\"HTMLShadowElement\":false,\"HTMLSourceElement\":false,\"HTMLSpanElement\":false,\"HTMLStyleElement\":false,\"HTMLTableCaptionElement\":false,\"HTMLTableCellElement\":false,\"HTMLTableColElement\":false,\"HTMLTableElement\":false,\"HTMLTableRowElement\":false,\"HTMLTableSectionElement\":false,\"HTMLTemplateElement\":false,\"HTMLTextAreaElement\":false,\"HTMLTitleElement\":false,\"HTMLTrackElement\":false,\"HTMLUListElement\":false,\"HTMLUnknownElement\":false,\"HTMLVideoElement\":false,\"IDBCursor\":false,\"IDBCursorWithValue\":false,\"IDBDatabase\":false,\"IDBEnvironment\":false,\"IDBFactory\":false,\"IDBIndex\":false,\"IDBKeyRange\":false,\"IDBObjectStore\":false,\"IDBOpenDBRequest\":false,\"IDBRequest\":false,\"IDBTransaction\":false,\"IDBVersionChangeEvent\":false,\"Image\":false,\"ImageBitmap\":false,\"ImageData\":false,\"indexedDB\":false,\"innerHeight\":false,\"innerWidth\":false,\"InputEvent\":false,\"InputMethodContext\":false,\"IntersectionObserver\":false,\"IntersectionObserverEntry\":false,\"Intl\":false,\"KeyboardEvent\":false,\"KeyframeEffect\":false,\"KeyframeEffectReadOnly\":false,\"length\":false,\"localStorage\":false,\"location\":false,\"Location\":false,\"locationbar\":false,\"matchMedia\":false,\"MediaElementAudioSourceNode\":false,\"MediaEncryptedEvent\":false,\"MediaError\":false,\"MediaKeyError\":false,\"MediaKeyEvent\":false,\"MediaKeyMessageEvent\":false,\"MediaKeys\":false,\"MediaKeySession\":false,\"MediaKeyStatusMap\":false,\"MediaKeySystemAccess\":false,\"MediaList\":false,\"MediaQueryList\":false,\"MediaQueryListEvent\":false,\"MediaSource\":false,\"MediaRecorder\":false,\"MediaStream\":false,\"MediaStreamAudioDestinationNode\":false,\"MediaStreamAudioSourceNode\":false,\"MediaStreamEvent\":false,\"MediaStreamTrack\":false,\"menubar\":false,\"MessageChannel\":false,\"MessageEvent\":false,\"MessagePort\":false,\"MIDIAccess\":false,\"MIDIConnectionEvent\":false,\"MIDIInput\":false,\"MIDIInputMap\":false,\"MIDIMessageEvent\":false,\"MIDIOutput\":false,\"MIDIOutputMap\":false,\"MIDIPort\":false,\"MimeType\":false,\"MimeTypeArray\":false,\"MouseEvent\":false,\"moveBy\":false,\"moveTo\":false,\"MutationEvent\":false,\"MutationObserver\":false,\"MutationRecord\":false,\"name\":false,\"NamedNodeMap\":false,\"navigator\":false,\"Navigator\":false,\"Node\":false,\"NodeFilter\":false,\"NodeIterator\":false,\"NodeList\":false,\"Notification\":false,\"OfflineAudioCompletionEvent\":false,\"OfflineAudioContext\":false,\"offscreenBuffering\":false,\"onbeforeunload\":true,\"onblur\":true,\"onerror\":true,\"onfocus\":true,\"onload\":true,\"onresize\":true,\"onunload\":true,\"open\":false,\"openDatabase\":false,\"opener\":false,\"opera\":false,\"Option\":false,\"OscillatorNode\":false,\"outerHeight\":false,\"outerWidth\":false,\"PageTransitionEvent\":false,\"pageXOffset\":false,\"pageYOffset\":false,\"parent\":false,\"PasswordCredential\":false,\"Path2D\":false,\"performance\":false,\"Performance\":false,\"PerformanceEntry\":false,\"PerformanceMark\":false,\"PerformanceMeasure\":false,\"PerformanceNavigation\":false,\"PerformanceResourceTiming\":false,\"PerformanceTiming\":false,\"PeriodicWave\":false,\"Permissions\":false,\"PermissionStatus\":false,\"personalbar\":false,\"Plugin\":false,\"PluginArray\":false,\"PopStateEvent\":false,\"postMessage\":false,\"print\":false,\"ProcessingInstruction\":false,\"ProgressEvent\":false,\"PromiseRejectionEvent\":false,\"prompt\":false,\"PushManager\":false,\"PushSubscription\":false,\"RadioNodeList\":false,\"Range\":false,\"ReadableByteStream\":false,\"ReadableStream\":false,\"removeEventListener\":false,\"Request\":false,\"requestAnimationFrame\":false,\"requestIdleCallback\":false,\"resizeBy\":false,\"resizeTo\":false,\"Response\":false,\"RTCIceCandidate\":false,\"RTCSessionDescription\":false,\"RTCPeerConnection\":false,\"screen\":false,\"Screen\":false,\"screenLeft\":false,\"ScreenOrientation\":false,\"screenTop\":false,\"screenX\":false,\"screenY\":false,\"ScriptProcessorNode\":false,\"scroll\":false,\"scrollbars\":false,\"scrollBy\":false,\"scrollTo\":false,\"scrollX\":false,\"scrollY\":false,\"SecurityPolicyViolationEvent\":false,\"Selection\":false,\"self\":false,\"ServiceWorker\":false,\"ServiceWorkerContainer\":false,\"ServiceWorkerRegistration\":false,\"sessionStorage\":false,\"setInterval\":false,\"setTimeout\":false,\"ShadowRoot\":false,\"SharedKeyframeList\":false,\"SharedWorker\":false,\"showModalDialog\":false,\"SiteBoundCredential\":false,\"speechSynthesis\":false,\"SpeechSynthesisEvent\":false,\"SpeechSynthesisUtterance\":false,\"status\":false,\"statusbar\":false,\"stop\":false,\"Storage\":false,\"StorageEvent\":false,\"styleMedia\":false,\"StyleSheet\":false,\"StyleSheetList\":false,\"SubtleCrypto\":false,\"SVGAElement\":false,\"SVGAltGlyphDefElement\":false,\"SVGAltGlyphElement\":false,\"SVGAltGlyphItemElement\":false,\"SVGAngle\":false,\"SVGAnimateColorElement\":false,\"SVGAnimatedAngle\":false,\"SVGAnimatedBoolean\":false,\"SVGAnimatedEnumeration\":false,\"SVGAnimatedInteger\":false,\"SVGAnimatedLength\":false,\"SVGAnimatedLengthList\":false,\"SVGAnimatedNumber\":false,\"SVGAnimatedNumberList\":false,\"SVGAnimatedPathData\":false,\"SVGAnimatedPoints\":false,\"SVGAnimatedPreserveAspectRatio\":false,\"SVGAnimatedRect\":false,\"SVGAnimatedString\":false,\"SVGAnimatedTransformList\":false,\"SVGAnimateElement\":false,\"SVGAnimateMotionElement\":false,\"SVGAnimateTransformElement\":false,\"SVGAnimationElement\":false,\"SVGCircleElement\":false,\"SVGClipPathElement\":false,\"SVGColor\":false,\"SVGColorProfileElement\":false,\"SVGColorProfileRule\":false,\"SVGComponentTransferFunctionElement\":false,\"SVGCSSRule\":false,\"SVGCursorElement\":false,\"SVGDefsElement\":false,\"SVGDescElement\":false,\"SVGDiscardElement\":false,\"SVGDocument\":false,\"SVGElement\":false,\"SVGElementInstance\":false,\"SVGElementInstanceList\":false,\"SVGEllipseElement\":false,\"SVGEvent\":false,\"SVGExternalResourcesRequired\":false,\"SVGFEBlendElement\":false,\"SVGFEColorMatrixElement\":false,\"SVGFEComponentTransferElement\":false,\"SVGFECompositeElement\":false,\"SVGFEConvolveMatrixElement\":false,\"SVGFEDiffuseLightingElement\":false,\"SVGFEDisplacementMapElement\":false,\"SVGFEDistantLightElement\":false,\"SVGFEDropShadowElement\":false,\"SVGFEFloodElement\":false,\"SVGFEFuncAElement\":false,\"SVGFEFuncBElement\":false,\"SVGFEFuncGElement\":false,\"SVGFEFuncRElement\":false,\"SVGFEGaussianBlurElement\":false,\"SVGFEImageElement\":false,\"SVGFEMergeElement\":false,\"SVGFEMergeNodeElement\":false,\"SVGFEMorphologyElement\":false,\"SVGFEOffsetElement\":false,\"SVGFEPointLightElement\":false,\"SVGFESpecularLightingElement\":false,\"SVGFESpotLightElement\":false,\"SVGFETileElement\":false,\"SVGFETurbulenceElement\":false,\"SVGFilterElement\":false,\"SVGFilterPrimitiveStandardAttributes\":false,\"SVGFitToViewBox\":false,\"SVGFontElement\":false,\"SVGFontFaceElement\":false,\"SVGFontFaceFormatElement\":false,\"SVGFontFaceNameElement\":false,\"SVGFontFaceSrcElement\":false,\"SVGFontFaceUriElement\":false,\"SVGForeignObjectElement\":false,\"SVGGElement\":false,\"SVGGeometryElement\":false,\"SVGGlyphElement\":false,\"SVGGlyphRefElement\":false,\"SVGGradientElement\":false,\"SVGGraphicsElement\":false,\"SVGHKernElement\":false,\"SVGICCColor\":false,\"SVGImageElement\":false,\"SVGLangSpace\":false,\"SVGLength\":false,\"SVGLengthList\":false,\"SVGLinearGradientElement\":false,\"SVGLineElement\":false,\"SVGLocatable\":false,\"SVGMarkerElement\":false,\"SVGMaskElement\":false,\"SVGMatrix\":false,\"SVGMetadataElement\":false,\"SVGMissingGlyphElement\":false,\"SVGMPathElement\":false,\"SVGNumber\":false,\"SVGNumberList\":false,\"SVGPaint\":false,\"SVGPathElement\":false,\"SVGPathSeg\":false,\"SVGPathSegArcAbs\":false,\"SVGPathSegArcRel\":false,\"SVGPathSegClosePath\":false,\"SVGPathSegCurvetoCubicAbs\":false,\"SVGPathSegCurvetoCubicRel\":false,\"SVGPathSegCurvetoCubicSmoothAbs\":false,\"SVGPathSegCurvetoCubicSmoothRel\":false,\"SVGPathSegCurvetoQuadraticAbs\":false,\"SVGPathSegCurvetoQuadraticRel\":false,\"SVGPathSegCurvetoQuadraticSmoothAbs\":false,\"SVGPathSegCurvetoQuadraticSmoothRel\":false,\"SVGPathSegLinetoAbs\":false,\"SVGPathSegLinetoHorizontalAbs\":false,\"SVGPathSegLinetoHorizontalRel\":false,\"SVGPathSegLinetoRel\":false,\"SVGPathSegLinetoVerticalAbs\":false,\"SVGPathSegLinetoVerticalRel\":false,\"SVGPathSegList\":false,\"SVGPathSegMovetoAbs\":false,\"SVGPathSegMovetoRel\":false,\"SVGPatternElement\":false,\"SVGPoint\":false,\"SVGPointList\":false,\"SVGPolygonElement\":false,\"SVGPolylineElement\":false,\"SVGPreserveAspectRatio\":false,\"SVGRadialGradientElement\":false,\"SVGRect\":false,\"SVGRectElement\":false,\"SVGRenderingIntent\":false,\"SVGScriptElement\":false,\"SVGSetElement\":false,\"SVGStopElement\":false,\"SVGStringList\":false,\"SVGStylable\":false,\"SVGStyleElement\":false,\"SVGSVGElement\":false,\"SVGSwitchElement\":false,\"SVGSymbolElement\":false,\"SVGTests\":false,\"SVGTextContentElement\":false,\"SVGTextElement\":false,\"SVGTextPathElement\":false,\"SVGTextPositioningElement\":false,\"SVGTitleElement\":false,\"SVGTransform\":false,\"SVGTransformable\":false,\"SVGTransformList\":false,\"SVGTRefElement\":false,\"SVGTSpanElement\":false,\"SVGUnitTypes\":false,\"SVGURIReference\":false,\"SVGUseElement\":false,\"SVGViewElement\":false,\"SVGViewSpec\":false,\"SVGVKernElement\":false,\"SVGZoomAndPan\":false,\"SVGZoomEvent\":false,\"Text\":false,\"TextDecoder\":false,\"TextEncoder\":false,\"TextEvent\":false,\"TextMetrics\":false,\"TextTrack\":false,\"TextTrackCue\":false,\"TextTrackCueList\":false,\"TextTrackList\":false,\"TimeEvent\":false,\"TimeRanges\":false,\"toolbar\":false,\"top\":false,\"Touch\":false,\"TouchEvent\":false,\"TouchList\":false,\"TrackEvent\":false,\"TransitionEvent\":false,\"TreeWalker\":false,\"UIEvent\":false,\"URL\":false,\"URLSearchParams\":false,\"ValidityState\":false,\"VTTCue\":false,\"WaveShaperNode\":false,\"WebGLActiveInfo\":false,\"WebGLBuffer\":false,\"WebGLContextEvent\":false,\"WebGLFramebuffer\":false,\"WebGLProgram\":false,\"WebGLRenderbuffer\":false,\"WebGLRenderingContext\":false,\"WebGLShader\":false,\"WebGLShaderPrecisionFormat\":false,\"WebGLTexture\":false,\"WebGLUniformLocation\":false,\"WebSocket\":false,\"WheelEvent\":false,\"window\":false,\"Window\":false,\"Worker\":false,\"XDomainRequest\":false,\"XMLDocument\":false,\"XMLHttpRequest\":false,\"XMLHttpRequestEventTarget\":false,\"XMLHttpRequestProgressEvent\":false,\"XMLHttpRequestUpload\":false,\"XMLSerializer\":false,\"XPathEvaluator\":false,\"XPathException\":false,\"XPathExpression\":false,\"XPathNamespace\":false,\"XPathNSResolver\":false,\"XPathResult\":false,\"XSLTProcessor\":false},\"worker\":{\"applicationCache\":false,\"atob\":false,\"Blob\":false,\"BroadcastChannel\":false,\"btoa\":false,\"Cache\":false,\"caches\":false,\"clearInterval\":false,\"clearTimeout\":false,\"close\":true,\"console\":false,\"fetch\":false,\"FileReaderSync\":false,\"FormData\":false,\"Headers\":false,\"IDBCursor\":false,\"IDBCursorWithValue\":false,\"IDBDatabase\":false,\"IDBFactory\":false,\"IDBIndex\":false,\"IDBKeyRange\":false,\"IDBObjectStore\":false,\"IDBOpenDBRequest\":false,\"IDBRequest\":false,\"IDBTransaction\":false,\"IDBVersionChangeEvent\":false,\"ImageData\":false,\"importScripts\":true,\"indexedDB\":false,\"location\":false,\"MessageChannel\":false,\"MessagePort\":false,\"name\":false,\"navigator\":false,\"Notification\":false,\"onclose\":true,\"onconnect\":true,\"onerror\":true,\"onlanguagechange\":true,\"onmessage\":true,\"onoffline\":true,\"ononline\":true,\"onrejectionhandled\":true,\"onunhandledrejection\":true,\"performance\":false,\"Performance\":false,\"PerformanceEntry\":false,\"PerformanceMark\":false,\"PerformanceMeasure\":false,\"PerformanceNavigation\":false,\"PerformanceResourceTiming\":false,\"PerformanceTiming\":false,\"postMessage\":true,\"Promise\":false,\"Request\":false,\"Response\":false,\"self\":true,\"ServiceWorkerRegistration\":false,\"setInterval\":false,\"setTimeout\":false,\"TextDecoder\":false,\"TextEncoder\":false,\"URL\":false,\"URLSearchParams\":false,\"WebSocket\":false,\"Worker\":false,\"XMLHttpRequest\":false},\"node\":{\"__dirname\":false,\"__filename\":false,\"arguments\":false,\"Buffer\":false,\"clearImmediate\":false,\"clearInterval\":false,\"clearTimeout\":false,\"console\":false,\"exports\":true,\"GLOBAL\":false,\"global\":false,\"Intl\":false,\"module\":false,\"process\":false,\"require\":false,\"root\":false,\"setImmediate\":false,\"setInterval\":false,\"setTimeout\":false},\"commonjs\":{\"exports\":true,\"module\":false,\"require\":false,\"global\":false},\"amd\":{\"define\":false,\"require\":false},\"mocha\":{\"after\":false,\"afterEach\":false,\"before\":false,\"beforeEach\":false,\"context\":false,\"describe\":false,\"it\":false,\"mocha\":false,\"run\":false,\"setup\":false,\"specify\":false,\"suite\":false,\"suiteSetup\":false,\"suiteTeardown\":false,\"teardown\":false,\"test\":false,\"xcontext\":false,\"xdescribe\":false,\"xit\":false,\"xspecify\":false},\"jasmine\":{\"afterAll\":false,\"afterEach\":false,\"beforeAll\":false,\"beforeEach\":false,\"describe\":false,\"expect\":false,\"fail\":false,\"fdescribe\":false,\"fit\":false,\"it\":false,\"jasmine\":false,\"pending\":false,\"runs\":false,\"spyOn\":false,\"spyOnProperty\":false,\"waits\":false,\"waitsFor\":false,\"xdescribe\":false,\"xit\":false},\"jest\":{\"afterAll\":false,\"afterEach\":false,\"beforeAll\":false,\"beforeEach\":false,\"check\":false,\"describe\":false,\"expect\":false,\"gen\":false,\"it\":false,\"fdescribe\":false,\"fit\":false,\"jest\":false,\"pit\":false,\"require\":false,\"test\":false,\"xdescribe\":false,\"xit\":false,\"xtest\":false},\"qunit\":{\"asyncTest\":false,\"deepEqual\":false,\"equal\":false,\"expect\":false,\"module\":false,\"notDeepEqual\":false,\"notEqual\":false,\"notOk\":false,\"notPropEqual\":false,\"notStrictEqual\":false,\"ok\":false,\"propEqual\":false,\"QUnit\":false,\"raises\":false,\"start\":false,\"stop\":false,\"strictEqual\":false,\"test\":false,\"throws\":false},\"phantomjs\":{\"console\":true,\"exports\":true,\"phantom\":true,\"require\":true,\"WebPage\":true},\"couch\":{\"emit\":false,\"exports\":false,\"getRow\":false,\"log\":false,\"module\":false,\"provides\":false,\"require\":false,\"respond\":false,\"send\":false,\"start\":false,\"sum\":false},\"rhino\":{\"defineClass\":false,\"deserialize\":false,\"gc\":false,\"help\":false,\"importClass\":false,\"importPackage\":false,\"java\":false,\"load\":false,\"loadClass\":false,\"Packages\":false,\"print\":false,\"quit\":false,\"readFile\":false,\"readUrl\":false,\"runCommand\":false,\"seal\":false,\"serialize\":false,\"spawn\":false,\"sync\":false,\"toint32\":false,\"version\":false},\"nashorn\":{\"__DIR__\":false,\"__FILE__\":false,\"__LINE__\":false,\"com\":false,\"edu\":false,\"exit\":false,\"Java\":false,\"java\":false,\"javafx\":false,\"JavaImporter\":false,\"javax\":false,\"JSAdapter\":false,\"load\":false,\"loadWithNewGlobal\":false,\"org\":false,\"Packages\":false,\"print\":false,\"quit\":false},\"wsh\":{\"ActiveXObject\":true,\"Enumerator\":true,\"GetObject\":true,\"ScriptEngine\":true,\"ScriptEngineBuildVersion\":true,\"ScriptEngineMajorVersion\":true,\"ScriptEngineMinorVersion\":true,\"VBArray\":true,\"WScript\":true,\"WSH\":true,\"XDomainRequest\":true},\"jquery\":{\"$\":false,\"jQuery\":false},\"yui\":{\"Y\":false,\"YUI\":false,\"YUI_config\":false},\"shelljs\":{\"cat\":false,\"cd\":false,\"chmod\":false,\"config\":false,\"cp\":false,\"dirs\":false,\"echo\":false,\"env\":false,\"error\":false,\"exec\":false,\"exit\":false,\"find\":false,\"grep\":false,\"ls\":false,\"ln\":false,\"mkdir\":false,\"mv\":false,\"popd\":false,\"pushd\":false,\"pwd\":false,\"rm\":false,\"sed\":false,\"set\":false,\"target\":false,\"tempdir\":false,\"test\":false,\"touch\":false,\"which\":false},\"prototypejs\":{\"$\":false,\"$$\":false,\"$A\":false,\"$break\":false,\"$continue\":false,\"$F\":false,\"$H\":false,\"$R\":false,\"$w\":false,\"Abstract\":false,\"Ajax\":false,\"Autocompleter\":false,\"Builder\":false,\"Class\":false,\"Control\":false,\"Draggable\":false,\"Draggables\":false,\"Droppables\":false,\"Effect\":false,\"Element\":false,\"Enumerable\":false,\"Event\":false,\"Field\":false,\"Form\":false,\"Hash\":false,\"Insertion\":false,\"ObjectRange\":false,\"PeriodicalExecuter\":false,\"Position\":false,\"Prototype\":false,\"Scriptaculous\":false,\"Selector\":false,\"Sortable\":false,\"SortableObserver\":false,\"Sound\":false,\"Template\":false,\"Toggle\":false,\"Try\":false},\"meteor\":{\"$\":false,\"_\":false,\"Accounts\":false,\"AccountsClient\":false,\"AccountsServer\":false,\"AccountsCommon\":false,\"App\":false,\"Assets\":false,\"Blaze\":false,\"check\":false,\"Cordova\":false,\"DDP\":false,\"DDPServer\":false,\"DDPRateLimiter\":false,\"Deps\":false,\"EJSON\":false,\"Email\":false,\"HTTP\":false,\"Log\":false,\"Match\":false,\"Meteor\":false,\"Mongo\":false,\"MongoInternals\":false,\"Npm\":false,\"Package\":false,\"Plugin\":false,\"process\":false,\"Random\":false,\"ReactiveDict\":false,\"ReactiveVar\":false,\"Router\":false,\"ServiceConfiguration\":false,\"Session\":false,\"share\":false,\"Spacebars\":false,\"Template\":false,\"Tinytest\":false,\"Tracker\":false,\"UI\":false,\"Utils\":false,\"WebApp\":false,\"WebAppInternals\":false},\"mongo\":{\"_isWindows\":false,\"_rand\":false,\"BulkWriteResult\":false,\"cat\":false,\"cd\":false,\"connect\":false,\"db\":false,\"getHostName\":false,\"getMemInfo\":false,\"hostname\":false,\"ISODate\":false,\"listFiles\":false,\"load\":false,\"ls\":false,\"md5sumFile\":false,\"mkdir\":false,\"Mongo\":false,\"NumberInt\":false,\"NumberLong\":false,\"ObjectId\":false,\"PlanCache\":false,\"print\":false,\"printjson\":false,\"pwd\":false,\"quit\":false,\"removeFile\":false,\"rs\":false,\"sh\":false,\"UUID\":false,\"version\":false,\"WriteResult\":false},\"applescript\":{\"$\":false,\"Application\":false,\"Automation\":false,\"console\":false,\"delay\":false,\"Library\":false,\"ObjC\":false,\"ObjectSpecifier\":false,\"Path\":false,\"Progress\":false,\"Ref\":false},\"serviceworker\":{\"caches\":false,\"Cache\":false,\"CacheStorage\":false,\"Client\":false,\"clients\":false,\"Clients\":false,\"ExtendableEvent\":false,\"ExtendableMessageEvent\":false,\"FetchEvent\":false,\"importScripts\":false,\"registration\":false,\"self\":false,\"ServiceWorker\":false,\"ServiceWorkerContainer\":false,\"ServiceWorkerGlobalScope\":false,\"ServiceWorkerMessageEvent\":false,\"ServiceWorkerRegistration\":false,\"skipWaiting\":false,\"WindowClient\":false},\"atomtest\":{\"advanceClock\":false,\"fakeClearInterval\":false,\"fakeClearTimeout\":false,\"fakeSetInterval\":false,\"fakeSetTimeout\":false,\"resetTimeouts\":false,\"waitsForPromise\":false},\"embertest\":{\"andThen\":false,\"click\":false,\"currentPath\":false,\"currentRouteName\":false,\"currentURL\":false,\"fillIn\":false,\"find\":false,\"findWithAssert\":false,\"keyEvent\":false,\"pauseTest\":false,\"resumeTest\":false,\"triggerEvent\":false,\"visit\":false},\"protractor\":{\"$\":false,\"$$\":false,\"browser\":false,\"By\":false,\"by\":false,\"DartObject\":false,\"element\":false,\"protractor\":false},\"shared-node-browser\":{\"clearInterval\":false,\"clearTimeout\":false,\"console\":false,\"setInterval\":false,\"setTimeout\":false},\"webextensions\":{\"browser\":false,\"chrome\":false,\"opr\":false},\"greasemonkey\":{\"GM_addStyle\":false,\"GM_deleteValue\":false,\"GM_getResourceText\":false,\"GM_getResourceURL\":false,\"GM_getValue\":false,\"GM_info\":false,\"GM_listValues\":false,\"GM_log\":false,\"GM_openInTab\":false,\"GM_registerMenuCommand\":false,\"GM_setClipboard\":false,\"GM_setValue\":false,\"GM_xmlhttpRequest\":false,\"unsafeWindow\":false}}\n\n/***/ }),\n/* 631 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = {\"75\":8490,\"83\":383,\"107\":8490,\"115\":383,\"181\":924,\"197\":8491,\"383\":83,\"452\":453,\"453\":452,\"455\":456,\"456\":455,\"458\":459,\"459\":458,\"497\":498,\"498\":497,\"837\":8126,\"914\":976,\"917\":1013,\"920\":1012,\"921\":8126,\"922\":1008,\"924\":181,\"928\":982,\"929\":1009,\"931\":962,\"934\":981,\"937\":8486,\"962\":931,\"976\":914,\"977\":1012,\"981\":934,\"982\":928,\"1008\":922,\"1009\":929,\"1012\":[920,977],\"1013\":917,\"7776\":7835,\"7835\":7776,\"8126\":[837,921],\"8486\":937,\"8490\":75,\"8491\":197,\"66560\":66600,\"66561\":66601,\"66562\":66602,\"66563\":66603,\"66564\":66604,\"66565\":66605,\"66566\":66606,\"66567\":66607,\"66568\":66608,\"66569\":66609,\"66570\":66610,\"66571\":66611,\"66572\":66612,\"66573\":66613,\"66574\":66614,\"66575\":66615,\"66576\":66616,\"66577\":66617,\"66578\":66618,\"66579\":66619,\"66580\":66620,\"66581\":66621,\"66582\":66622,\"66583\":66623,\"66584\":66624,\"66585\":66625,\"66586\":66626,\"66587\":66627,\"66588\":66628,\"66589\":66629,\"66590\":66630,\"66591\":66631,\"66592\":66632,\"66593\":66633,\"66594\":66634,\"66595\":66635,\"66596\":66636,\"66597\":66637,\"66598\":66638,\"66599\":66639,\"66600\":66560,\"66601\":66561,\"66602\":66562,\"66603\":66563,\"66604\":66564,\"66605\":66565,\"66606\":66566,\"66607\":66567,\"66608\":66568,\"66609\":66569,\"66610\":66570,\"66611\":66571,\"66612\":66572,\"66613\":66573,\"66614\":66574,\"66615\":66575,\"66616\":66576,\"66617\":66577,\"66618\":66578,\"66619\":66579,\"66620\":66580,\"66621\":66581,\"66622\":66582,\"66623\":66583,\"66624\":66584,\"66625\":66585,\"66626\":66586,\"66627\":66587,\"66628\":66588,\"66629\":66589,\"66630\":66590,\"66631\":66591,\"66632\":66592,\"66633\":66593,\"66634\":66594,\"66635\":66595,\"66636\":66596,\"66637\":66597,\"66638\":66598,\"66639\":66599,\"68736\":68800,\"68737\":68801,\"68738\":68802,\"68739\":68803,\"68740\":68804,\"68741\":68805,\"68742\":68806,\"68743\":68807,\"68744\":68808,\"68745\":68809,\"68746\":68810,\"68747\":68811,\"68748\":68812,\"68749\":68813,\"68750\":68814,\"68751\":68815,\"68752\":68816,\"68753\":68817,\"68754\":68818,\"68755\":68819,\"68756\":68820,\"68757\":68821,\"68758\":68822,\"68759\":68823,\"68760\":68824,\"68761\":68825,\"68762\":68826,\"68763\":68827,\"68764\":68828,\"68765\":68829,\"68766\":68830,\"68767\":68831,\"68768\":68832,\"68769\":68833,\"68770\":68834,\"68771\":68835,\"68772\":68836,\"68773\":68837,\"68774\":68838,\"68775\":68839,\"68776\":68840,\"68777\":68841,\"68778\":68842,\"68779\":68843,\"68780\":68844,\"68781\":68845,\"68782\":68846,\"68783\":68847,\"68784\":68848,\"68785\":68849,\"68786\":68850,\"68800\":68736,\"68801\":68737,\"68802\":68738,\"68803\":68739,\"68804\":68740,\"68805\":68741,\"68806\":68742,\"68807\":68743,\"68808\":68744,\"68809\":68745,\"68810\":68746,\"68811\":68747,\"68812\":68748,\"68813\":68749,\"68814\":68750,\"68815\":68751,\"68816\":68752,\"68817\":68753,\"68818\":68754,\"68819\":68755,\"68820\":68756,\"68821\":68757,\"68822\":68758,\"68823\":68759,\"68824\":68760,\"68825\":68761,\"68826\":68762,\"68827\":68763,\"68828\":68764,\"68829\":68765,\"68830\":68766,\"68831\":68767,\"68832\":68768,\"68833\":68769,\"68834\":68770,\"68835\":68771,\"68836\":68772,\"68837\":68773,\"68838\":68774,\"68839\":68775,\"68840\":68776,\"68841\":68777,\"68842\":68778,\"68843\":68779,\"68844\":68780,\"68845\":68781,\"68846\":68782,\"68847\":68783,\"68848\":68784,\"68849\":68785,\"68850\":68786,\"71840\":71872,\"71841\":71873,\"71842\":71874,\"71843\":71875,\"71844\":71876,\"71845\":71877,\"71846\":71878,\"71847\":71879,\"71848\":71880,\"71849\":71881,\"71850\":71882,\"71851\":71883,\"71852\":71884,\"71853\":71885,\"71854\":71886,\"71855\":71887,\"71856\":71888,\"71857\":71889,\"71858\":71890,\"71859\":71891,\"71860\":71892,\"71861\":71893,\"71862\":71894,\"71863\":71895,\"71864\":71896,\"71865\":71897,\"71866\":71898,\"71867\":71899,\"71868\":71900,\"71869\":71901,\"71870\":71902,\"71871\":71903,\"71872\":71840,\"71873\":71841,\"71874\":71842,\"71875\":71843,\"71876\":71844,\"71877\":71845,\"71878\":71846,\"71879\":71847,\"71880\":71848,\"71881\":71849,\"71882\":71850,\"71883\":71851,\"71884\":71852,\"71885\":71853,\"71886\":71854,\"71887\":71855,\"71888\":71856,\"71889\":71857,\"71890\":71858,\"71891\":71859,\"71892\":71860,\"71893\":71861,\"71894\":71862,\"71895\":71863,\"71896\":71864,\"71897\":71865,\"71898\":71866,\"71899\":71867,\"71900\":71868,\"71901\":71869,\"71902\":71870,\"71903\":71871}\n\n/***/ })\n/******/ ])))\n});\n;\n},{}]},{},[1]);\n"
  },
  {
    "path": "docs/assets/js/index.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n!function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e():\"function\"==typeof define&&define.amd?define([],e):\"object\"==typeof exports?exports.swal=e():t.swal=e()}(this,function(){return function(t){function e(o){if(n[o])return n[o].exports;var r=n[o]={i:o,l:!1,exports:{}};return t[o].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var n={};return e.m=t,e.c=n,e.d=function(t,n,o){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:o})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,\"a\",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p=\"\",e(e.s=8)}([function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=\"swal-button\";e.CLASS_NAMES={MODAL:\"swal-modal\",OVERLAY:\"swal-overlay\",SHOW_MODAL:\"swal-overlay--show-modal\",MODAL_TITLE:\"swal-title\",MODAL_TEXT:\"swal-text\",ICON:\"swal-icon\",ICON_CUSTOM:\"swal-icon--custom\",CONTENT:\"swal-content\",FOOTER:\"swal-footer\",BUTTON_CONTAINER:\"swal-button-container\",BUTTON:o,CONFIRM_BUTTON:o+\"--confirm\",CANCEL_BUTTON:o+\"--cancel\",DANGER_BUTTON:o+\"--danger\",BUTTON_LOADING:o+\"--loading\",BUTTON_LOADER:o+\"__loader\"},e.default=e.CLASS_NAMES},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0}),e.getNode=function(t){var e=\".\"+t;return document.querySelector(e)},e.stringToNode=function(t){var e=document.createElement(\"div\");return e.innerHTML=t.trim(),e.firstChild},e.insertAfter=function(t,e){var n=e.nextSibling;e.parentNode.insertBefore(t,n)},e.removeNode=function(t){t.parentElement.removeChild(t)},e.throwErr=function(t){throw t=t.replace(/ +(?= )/g,\"\"),\"SweetAlert: \"+(t=t.trim())},e.isPlainObject=function(t){if(\"[object Object]\"!==Object.prototype.toString.call(t))return!1;var e=Object.getPrototypeOf(t);return null===e||e===Object.prototype},e.ordinalSuffixOf=function(t){var e=t%10,n=t%100;return 1===e&&11!==n?t+\"st\":2===e&&12!==n?t+\"nd\":3===e&&13!==n?t+\"rd\":t+\"th\"}},function(t,e,n){\"use strict\";function o(t){for(var n in t)e.hasOwnProperty(n)||(e[n]=t[n])}Object.defineProperty(e,\"__esModule\",{value:!0}),o(n(25));var r=n(26);e.overlayMarkup=r.default,o(n(27)),o(n(28)),o(n(29));var i=n(0),a=i.default.MODAL_TITLE,s=i.default.MODAL_TEXT,c=i.default.ICON,l=i.default.FOOTER;e.iconMarkup='\\n  <div class=\"'+c+'\"></div>',e.titleMarkup='\\n  <div class=\"'+a+'\"></div>\\n',e.textMarkup='\\n  <div class=\"'+s+'\"></div>',e.footerMarkup='\\n  <div class=\"'+l+'\"></div>\\n'},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(1);e.CONFIRM_KEY=\"confirm\",e.CANCEL_KEY=\"cancel\";var r={visible:!0,text:null,value:null,className:\"\",closeModal:!0},i=Object.assign({},r,{visible:!1,text:\"Cancel\",value:null}),a=Object.assign({},r,{text:\"OK\",value:!0});e.defaultButtonList={cancel:i,confirm:a};var s=function(t){switch(t){case e.CONFIRM_KEY:return a;case e.CANCEL_KEY:return i;default:var n=t.charAt(0).toUpperCase()+t.slice(1);return Object.assign({},r,{text:n,value:t})}},c=function(t,e){var n=s(t);return!0===e?Object.assign({},n,{visible:!0}):\"string\"==typeof e?Object.assign({},n,{visible:!0,text:e}):o.isPlainObject(e)?Object.assign({visible:!0},n,e):Object.assign({},n,{visible:!1})},l=function(t){for(var e={},n=0,o=Object.keys(t);n<o.length;n++){var r=o[n],a=t[r],s=c(r,a);e[r]=s}return e.cancel||(e.cancel=i),e},u=function(t){var n={};switch(t.length){case 1:n[e.CANCEL_KEY]=Object.assign({},i,{visible:!1});break;case 2:n[e.CANCEL_KEY]=c(e.CANCEL_KEY,t[0]),n[e.CONFIRM_KEY]=c(e.CONFIRM_KEY,t[1]);break;default:o.throwErr(\"Invalid number of 'buttons' in array (\"+t.length+\").\\n      If you want more than 2 buttons, you need to use an object!\")}return n};e.getButtonListOpts=function(t){var n=e.defaultButtonList;return\"string\"==typeof t?n[e.CONFIRM_KEY]=c(e.CONFIRM_KEY,t):Array.isArray(t)?n=u(t):o.isPlainObject(t)?n=l(t):!0===t?n=u([!0,!0]):!1===t?n=u([!1,!1]):void 0===t&&(n=e.defaultButtonList),n}},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(1),r=n(2),i=n(0),a=i.default.MODAL,s=i.default.OVERLAY,c=n(30),l=n(31),u=n(32),f=n(33);e.injectElIntoModal=function(t){var e=o.getNode(a),n=o.stringToNode(t);return e.appendChild(n),n};var d=function(t){t.className=a,t.textContent=\"\"},p=function(t,e){d(t);var n=e.className;n&&t.classList.add(n)};e.initModalContent=function(t){var e=o.getNode(a);p(e,t),c.default(t.icon),l.initTitle(t.title),l.initText(t.text),f.default(t.content),u.default(t.buttons,t.dangerMode)};var m=function(){var t=o.getNode(s),e=o.stringToNode(r.modalMarkup);t.appendChild(e)};e.default=m},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(3),r={isOpen:!1,promise:null,actions:{},timer:null},i=Object.assign({},r);e.resetState=function(){i=Object.assign({},r)},e.setActionValue=function(t){if(\"string\"==typeof t)return a(o.CONFIRM_KEY,t);for(var e in t)a(e,t[e])};var a=function(t,e){i.actions[t]||(i.actions[t]={}),Object.assign(i.actions[t],{value:e})};e.setActionOptionsFor=function(t,e){var n=(void 0===e?{}:e).closeModal,o=void 0===n||n;Object.assign(i.actions[t],{closeModal:o})},e.default=i},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(1),r=n(3),i=n(0),a=i.default.OVERLAY,s=i.default.SHOW_MODAL,c=i.default.BUTTON,l=i.default.BUTTON_LOADING,u=n(5);e.openModal=function(){o.getNode(a).classList.add(s),u.default.isOpen=!0};var f=function(){o.getNode(a).classList.remove(s),u.default.isOpen=!1};e.onAction=function(t){void 0===t&&(t=r.CANCEL_KEY);var e=u.default.actions[t],n=e.value;if(!1===e.closeModal){var i=c+\"--\"+t;o.getNode(i).classList.add(l)}else f();u.default.promise.resolve(n)},e.getState=function(){var t=Object.assign({},u.default);return delete t.promise,delete t.timer,t},e.stopLoading=function(){for(var t=document.querySelectorAll(\".\"+c),e=0;e<t.length;e++){t[e].classList.remove(l)}}},function(t,e){var n;n=function(){return this}();try{n=n||Function(\"return this\")()||(0,eval)(\"this\")}catch(t){\"object\"==typeof window&&(n=window)}t.exports=n},function(t,e,n){(function(e){t.exports=e.sweetAlert=n(9)}).call(e,n(7))},function(t,e,n){(function(e){t.exports=e.swal=n(10)}).call(e,n(7))},function(t,e,n){\"undefined\"!=typeof window&&n(11),n(16);var o=n(23).default;t.exports=o},function(t,e,n){var o=n(12);\"string\"==typeof o&&(o=[[t.i,o,\"\"]]);var r={insertAt:\"top\"};r.transform=void 0;n(14)(o,r);o.locals&&(t.exports=o.locals)},function(t,e,n){e=t.exports=n(13)(void 0),e.push([t.i,'.swal-icon--error{border-color:#f27474;-webkit-animation:animateErrorIcon .5s;animation:animateErrorIcon .5s}.swal-icon--error__x-mark{position:relative;display:block;-webkit-animation:animateXMark .5s;animation:animateXMark .5s}.swal-icon--error__line{position:absolute;height:5px;width:47px;background-color:#f27474;display:block;top:37px;border-radius:2px}.swal-icon--error__line--left{-webkit-transform:rotate(45deg);transform:rotate(45deg);left:17px}.swal-icon--error__line--right{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);right:16px}@-webkit-keyframes animateErrorIcon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@keyframes animateErrorIcon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@-webkit-keyframes animateXMark{0%{-webkit-transform:scale(.4);transform:scale(.4);margin-top:26px;opacity:0}50%{-webkit-transform:scale(.4);transform:scale(.4);margin-top:26px;opacity:0}80%{-webkit-transform:scale(1.15);transform:scale(1.15);margin-top:-6px}to{-webkit-transform:scale(1);transform:scale(1);margin-top:0;opacity:1}}@keyframes animateXMark{0%{-webkit-transform:scale(.4);transform:scale(.4);margin-top:26px;opacity:0}50%{-webkit-transform:scale(.4);transform:scale(.4);margin-top:26px;opacity:0}80%{-webkit-transform:scale(1.15);transform:scale(1.15);margin-top:-6px}to{-webkit-transform:scale(1);transform:scale(1);margin-top:0;opacity:1}}.swal-icon--warning{border-color:#f8bb86;-webkit-animation:pulseWarning .75s infinite alternate;animation:pulseWarning .75s infinite alternate}.swal-icon--warning__body{width:5px;height:47px;top:10px;border-radius:2px;margin-left:-2px}.swal-icon--warning__body,.swal-icon--warning__dot{position:absolute;left:50%;background-color:#f8bb86}.swal-icon--warning__dot{width:7px;height:7px;border-radius:50%;margin-left:-4px;bottom:-11px}@-webkit-keyframes pulseWarning{0%{border-color:#f8d486}to{border-color:#f8bb86}}@keyframes pulseWarning{0%{border-color:#f8d486}to{border-color:#f8bb86}}.swal-icon--success{border-color:#a5dc86}.swal-icon--success:after,.swal-icon--success:before{content:\"\";border-radius:50%;position:absolute;width:60px;height:120px;background:#fff;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.swal-icon--success:before{border-radius:120px 0 0 120px;top:-7px;left:-33px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:60px 60px;transform-origin:60px 60px}.swal-icon--success:after{border-radius:0 120px 120px 0;top:-11px;left:30px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 60px;transform-origin:0 60px;-webkit-animation:rotatePlaceholder 4.25s ease-in;animation:rotatePlaceholder 4.25s ease-in}.swal-icon--success__ring{width:80px;height:80px;border:4px solid hsla(98,55%,69%,.2);border-radius:50%;box-sizing:content-box;position:absolute;left:-4px;top:-4px;z-index:2}.swal-icon--success__hide-corners{width:5px;height:90px;background-color:#fff;padding:1px;position:absolute;left:28px;top:8px;z-index:1;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.swal-icon--success__line{height:5px;background-color:#a5dc86;display:block;border-radius:2px;position:absolute;z-index:2}.swal-icon--success__line--tip{width:25px;left:14px;top:46px;-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-animation:animateSuccessTip .75s;animation:animateSuccessTip .75s}.swal-icon--success__line--long{width:47px;right:8px;top:38px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-animation:animateSuccessLong .75s;animation:animateSuccessLong .75s}@-webkit-keyframes rotatePlaceholder{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes rotatePlaceholder{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes animateSuccessTip{0%{width:0;left:1px;top:19px}54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}to{width:25px;left:14px;top:45px}}@keyframes animateSuccessTip{0%{width:0;left:1px;top:19px}54%{width:0;left:1px;top:19px}70%{width:50px;left:-8px;top:37px}84%{width:17px;left:21px;top:48px}to{width:25px;left:14px;top:45px}}@-webkit-keyframes animateSuccessLong{0%{width:0;right:46px;top:54px}65%{width:0;right:46px;top:54px}84%{width:55px;right:0;top:35px}to{width:47px;right:8px;top:38px}}@keyframes animateSuccessLong{0%{width:0;right:46px;top:54px}65%{width:0;right:46px;top:54px}84%{width:55px;right:0;top:35px}to{width:47px;right:8px;top:38px}}.swal-icon--info{border-color:#c9dae1}.swal-icon--info:before{width:5px;height:29px;bottom:17px;border-radius:2px;margin-left:-2px}.swal-icon--info:after,.swal-icon--info:before{content:\"\";position:absolute;left:50%;background-color:#c9dae1}.swal-icon--info:after{width:7px;height:7px;border-radius:50%;margin-left:-3px;top:19px}.swal-icon{width:80px;height:80px;border-width:4px;border-style:solid;border-radius:50%;padding:0;position:relative;box-sizing:content-box;margin:20px auto}.swal-icon:first-child{margin-top:32px}.swal-icon--custom{width:auto;height:auto;max-width:100%;border:none;border-radius:0}.swal-icon img{max-width:100%;max-height:100%}.swal-title{color:rgba(0,0,0,.65);font-weight:600;text-transform:none;position:relative;display:block;padding:13px 16px;font-size:27px;line-height:normal;text-align:center;margin-bottom:0}.swal-title:first-child{margin-top:26px}.swal-title:not(:first-child){padding-bottom:0}.swal-title:not(:last-child){margin-bottom:13px}.swal-text{font-size:16px;position:relative;float:none;line-height:normal;vertical-align:top;text-align:left;display:inline-block;margin:0;padding:0 10px;font-weight:400;color:rgba(0,0,0,.64);max-width:calc(100% - 20px);overflow-wrap:break-word;box-sizing:border-box}.swal-text:first-child{margin-top:45px}.swal-text:last-child{margin-bottom:45px}.swal-footer{text-align:right;padding-top:13px;margin-top:13px;padding:13px 16px;border-radius:inherit;border-top-left-radius:0;border-top-right-radius:0}.swal-button-container{margin:5px;display:inline-block;position:relative}.swal-button{background-color:#7cd1f9;color:#fff;border:none;box-shadow:none;border-radius:5px;font-weight:600;font-size:14px;padding:10px 24px;margin:0;cursor:pointer}.swal-button:not([disabled]):hover{background-color:#78cbf2}.swal-button:active{background-color:#70bce0}.swal-button:focus{outline:none;box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(43,114,165,.29)}.swal-button[disabled]{opacity:.5;cursor:default}.swal-button::-moz-focus-inner{border:0}.swal-button--cancel{color:#555;background-color:#efefef}.swal-button--cancel:not([disabled]):hover{background-color:#e8e8e8}.swal-button--cancel:active{background-color:#d7d7d7}.swal-button--cancel:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(116,136,150,.29)}.swal-button--danger{background-color:#e64942}.swal-button--danger:not([disabled]):hover{background-color:#df4740}.swal-button--danger:active{background-color:#cf423b}.swal-button--danger:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(165,43,43,.29)}.swal-content{padding:0 20px;margin-top:20px;font-size:medium}.swal-content:last-child{margin-bottom:20px}.swal-content__input,.swal-content__textarea{-webkit-appearance:none;background-color:#fff;border:none;font-size:14px;display:block;box-sizing:border-box;width:100%;border:1px solid rgba(0,0,0,.14);padding:10px 13px;border-radius:2px;transition:border-color .2s}.swal-content__input:focus,.swal-content__textarea:focus{outline:none;border-color:#6db8ff}.swal-content__textarea{resize:vertical}.swal-button--loading{color:transparent}.swal-button--loading~.swal-button__loader{opacity:1}.swal-button__loader{position:absolute;height:auto;width:43px;z-index:2;left:50%;top:50%;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);text-align:center;pointer-events:none;opacity:0}.swal-button__loader div{display:inline-block;float:none;vertical-align:baseline;width:9px;height:9px;padding:0;border:none;margin:2px;opacity:.4;border-radius:7px;background-color:hsla(0,0%,100%,.9);transition:background .2s;-webkit-animation:swal-loading-anim 1s infinite;animation:swal-loading-anim 1s infinite}.swal-button__loader div:nth-child(3n+2){-webkit-animation-delay:.15s;animation-delay:.15s}.swal-button__loader div:nth-child(3n+3){-webkit-animation-delay:.3s;animation-delay:.3s}@-webkit-keyframes swal-loading-anim{0%{opacity:.4}20%{opacity:.4}50%{opacity:1}to{opacity:.4}}@keyframes swal-loading-anim{0%{opacity:.4}20%{opacity:.4}50%{opacity:1}to{opacity:.4}}.swal-overlay{position:fixed;top:0;bottom:0;left:0;right:0;text-align:center;font-size:0;overflow-y:auto;background-color:rgba(0,0,0,.4);z-index:10000;pointer-events:none;opacity:0;transition:opacity .3s}.swal-overlay:before{content:\" \";display:inline-block;vertical-align:middle;height:100%}.swal-overlay--show-modal{opacity:1;pointer-events:auto}.swal-overlay--show-modal .swal-modal{opacity:1;pointer-events:auto;box-sizing:border-box;-webkit-animation:showSweetAlert .3s;animation:showSweetAlert .3s;will-change:transform}.swal-modal{width:478px;opacity:0;pointer-events:none;background-color:#fff;text-align:center;border-radius:5px;position:static;margin:20px auto;display:inline-block;vertical-align:middle;-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;z-index:10001;transition:opacity .2s,-webkit-transform .3s;transition:transform .3s,opacity .2s;transition:transform .3s,opacity .2s,-webkit-transform .3s}@media (max-width:500px){.swal-modal{width:calc(100% - 20px)}}@-webkit-keyframes showSweetAlert{0%{-webkit-transform:scale(1);transform:scale(1)}1%{-webkit-transform:scale(.5);transform:scale(.5)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes showSweetAlert{0%{-webkit-transform:scale(1);transform:scale(1)}1%{-webkit-transform:scale(.5);transform:scale(.5)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}',\"\"])},function(t,e){function n(t,e){var n=t[1]||\"\",r=t[3];if(!r)return n;if(e&&\"function\"==typeof btoa){var i=o(r);return[n].concat(r.sources.map(function(t){return\"/*# sourceURL=\"+r.sourceRoot+t+\" */\"})).concat([i]).join(\"\\n\")}return[n].join(\"\\n\")}function o(t){return\"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(t))))+\" */\"}t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var o=n(e,t);return e[2]?\"@media \"+e[2]+\"{\"+o+\"}\":o}).join(\"\")},e.i=function(t,n){\"string\"==typeof t&&(t=[[null,t,\"\"]]);for(var o={},r=0;r<this.length;r++){var i=this[r][0];\"number\"==typeof i&&(o[i]=!0)}for(r=0;r<t.length;r++){var a=t[r];\"number\"==typeof a[0]&&o[a[0]]||(n&&!a[2]?a[2]=n:n&&(a[2]=\"(\"+a[2]+\") and (\"+n+\")\"),e.push(a))}},e}},function(t,e,n){function o(t,e){for(var n=0;n<t.length;n++){var o=t[n],r=m[o.id];if(r){r.refs++;for(var i=0;i<r.parts.length;i++)r.parts[i](o.parts[i]);for(;i<o.parts.length;i++)r.parts.push(u(o.parts[i],e))}else{for(var a=[],i=0;i<o.parts.length;i++)a.push(u(o.parts[i],e));m[o.id]={id:o.id,refs:1,parts:a}}}}function r(t,e){for(var n=[],o={},r=0;r<t.length;r++){var i=t[r],a=e.base?i[0]+e.base:i[0],s=i[1],c=i[2],l=i[3],u={css:s,media:c,sourceMap:l};o[a]?o[a].parts.push(u):n.push(o[a]={id:a,parts:[u]})}return n}function i(t,e){var n=v(t.insertInto);if(!n)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insertInto' parameter is invalid.\");var o=w[w.length-1];if(\"top\"===t.insertAt)o?o.nextSibling?n.insertBefore(e,o.nextSibling):n.appendChild(e):n.insertBefore(e,n.firstChild),w.push(e);else{if(\"bottom\"!==t.insertAt)throw new Error(\"Invalid value for parameter 'insertAt'. Must be 'top' or 'bottom'.\");n.appendChild(e)}}function a(t){if(null===t.parentNode)return!1;t.parentNode.removeChild(t);var e=w.indexOf(t);e>=0&&w.splice(e,1)}function s(t){var e=document.createElement(\"style\");return t.attrs.type=\"text/css\",l(e,t.attrs),i(t,e),e}function c(t){var e=document.createElement(\"link\");return t.attrs.type=\"text/css\",t.attrs.rel=\"stylesheet\",l(e,t.attrs),i(t,e),e}function l(t,e){Object.keys(e).forEach(function(n){t.setAttribute(n,e[n])})}function u(t,e){var n,o,r,i;if(e.transform&&t.css){if(!(i=e.transform(t.css)))return function(){};t.css=i}if(e.singleton){var l=h++;n=g||(g=s(e)),o=f.bind(null,n,l,!1),r=f.bind(null,n,l,!0)}else t.sourceMap&&\"function\"==typeof URL&&\"function\"==typeof URL.createObjectURL&&\"function\"==typeof URL.revokeObjectURL&&\"function\"==typeof Blob&&\"function\"==typeof btoa?(n=c(e),o=p.bind(null,n,e),r=function(){a(n),n.href&&URL.revokeObjectURL(n.href)}):(n=s(e),o=d.bind(null,n),r=function(){a(n)});return o(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;o(t=e)}else r()}}function f(t,e,n,o){var r=n?\"\":o.css;if(t.styleSheet)t.styleSheet.cssText=x(e,r);else{var i=document.createTextNode(r),a=t.childNodes;a[e]&&t.removeChild(a[e]),a.length?t.insertBefore(i,a[e]):t.appendChild(i)}}function d(t,e){var n=e.css,o=e.media;if(o&&t.setAttribute(\"media\",o),t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}function p(t,e,n){var o=n.css,r=n.sourceMap,i=void 0===e.convertToAbsoluteUrls&&r;(e.convertToAbsoluteUrls||i)&&(o=y(o)),r&&(o+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(r))))+\" */\");var a=new Blob([o],{type:\"text/css\"}),s=t.href;t.href=URL.createObjectURL(a),s&&URL.revokeObjectURL(s)}var m={},b=function(t){var e;return function(){return void 0===e&&(e=t.apply(this,arguments)),e}}(function(){return window&&document&&document.all&&!window.atob}),v=function(t){var e={};return function(n){return void 0===e[n]&&(e[n]=t.call(this,n)),e[n]}}(function(t){return document.querySelector(t)}),g=null,h=0,w=[],y=n(15);t.exports=function(t,e){if(\"undefined\"!=typeof DEBUG&&DEBUG&&\"object\"!=typeof document)throw new Error(\"The style-loader cannot be used in a non-browser environment\");e=e||{},e.attrs=\"object\"==typeof e.attrs?e.attrs:{},e.singleton||(e.singleton=b()),e.insertInto||(e.insertInto=\"head\"),e.insertAt||(e.insertAt=\"bottom\");var n=r(t,e);return o(n,e),function(t){for(var i=[],a=0;a<n.length;a++){var s=n[a],c=m[s.id];c.refs--,i.push(c)}if(t){o(r(t,e),e)}for(var a=0;a<i.length;a++){var c=i[a];if(0===c.refs){for(var l=0;l<c.parts.length;l++)c.parts[l]();delete m[c.id]}}}};var x=function(){var t=[];return function(e,n){return t[e]=n,t.filter(Boolean).join(\"\\n\")}}()},function(t,e){t.exports=function(t){var e=\"undefined\"!=typeof window&&window.location;if(!e)throw new Error(\"fixUrls requires window.location\");if(!t||\"string\"!=typeof t)return t;var n=e.protocol+\"//\"+e.host,o=n+e.pathname.replace(/\\/[^\\/]*$/,\"/\");return t.replace(/url\\s*\\(((?:[^)(]|\\((?:[^)(]+|\\([^)(]*\\))*\\))*)\\)/gi,function(t,e){var r=e.trim().replace(/^\"(.*)\"$/,function(t,e){return e}).replace(/^'(.*)'$/,function(t,e){return e});if(/^(#|data:|http:\\/\\/|https:\\/\\/|file:\\/\\/\\/)/i.test(r))return t;var i;return i=0===r.indexOf(\"//\")?r:0===r.indexOf(\"/\")?n+r:o+r.replace(/^\\.\\//,\"\"),\"url(\"+JSON.stringify(i)+\")\"})}},function(t,e,n){var o=n(17);\"undefined\"==typeof window||window.Promise||(window.Promise=o),n(21),String.prototype.includes||(String.prototype.includes=function(t,e){\"use strict\";return\"number\"!=typeof e&&(e=0),!(e+t.length>this.length)&&-1!==this.indexOf(t,e)}),Array.prototype.includes||Object.defineProperty(Array.prototype,\"includes\",{value:function(t,e){if(null==this)throw new TypeError('\"this\" is null or not defined');var n=Object(this),o=n.length>>>0;if(0===o)return!1;for(var r=0|e,i=Math.max(r>=0?r:o-Math.abs(r),0);i<o;){if(function(t,e){return t===e||\"number\"==typeof t&&\"number\"==typeof e&&isNaN(t)&&isNaN(e)}(n[i],t))return!0;i++}return!1}}),\"undefined\"!=typeof window&&function(t){t.forEach(function(t){t.hasOwnProperty(\"remove\")||Object.defineProperty(t,\"remove\",{configurable:!0,enumerable:!0,writable:!0,value:function(){this.parentNode.removeChild(this)}})})}([Element.prototype,CharacterData.prototype,DocumentType.prototype])},function(t,e,n){(function(e){!function(n){function o(){}function r(t,e){return function(){t.apply(e,arguments)}}function i(t){if(\"object\"!=typeof this)throw new TypeError(\"Promises must be constructed via new\");if(\"function\"!=typeof t)throw new TypeError(\"not a function\");this._state=0,this._handled=!1,this._value=void 0,this._deferreds=[],f(t,this)}function a(t,e){for(;3===t._state;)t=t._value;if(0===t._state)return void t._deferreds.push(e);t._handled=!0,i._immediateFn(function(){var n=1===t._state?e.onFulfilled:e.onRejected;if(null===n)return void(1===t._state?s:c)(e.promise,t._value);var o;try{o=n(t._value)}catch(t){return void c(e.promise,t)}s(e.promise,o)})}function s(t,e){try{if(e===t)throw new TypeError(\"A promise cannot be resolved with itself.\");if(e&&(\"object\"==typeof e||\"function\"==typeof e)){var n=e.then;if(e instanceof i)return t._state=3,t._value=e,void l(t);if(\"function\"==typeof n)return void f(r(n,e),t)}t._state=1,t._value=e,l(t)}catch(e){c(t,e)}}function c(t,e){t._state=2,t._value=e,l(t)}function l(t){2===t._state&&0===t._deferreds.length&&i._immediateFn(function(){t._handled||i._unhandledRejectionFn(t._value)});for(var e=0,n=t._deferreds.length;e<n;e++)a(t,t._deferreds[e]);t._deferreds=null}function u(t,e,n){this.onFulfilled=\"function\"==typeof t?t:null,this.onRejected=\"function\"==typeof e?e:null,this.promise=n}function f(t,e){var n=!1;try{t(function(t){n||(n=!0,s(e,t))},function(t){n||(n=!0,c(e,t))})}catch(t){if(n)return;n=!0,c(e,t)}}var d=setTimeout;i.prototype.catch=function(t){return this.then(null,t)},i.prototype.then=function(t,e){var n=new this.constructor(o);return a(this,new u(t,e,n)),n},i.all=function(t){var e=Array.prototype.slice.call(t);return new i(function(t,n){function o(i,a){try{if(a&&(\"object\"==typeof a||\"function\"==typeof a)){var s=a.then;if(\"function\"==typeof s)return void s.call(a,function(t){o(i,t)},n)}e[i]=a,0==--r&&t(e)}catch(t){n(t)}}if(0===e.length)return t([]);for(var r=e.length,i=0;i<e.length;i++)o(i,e[i])})},i.resolve=function(t){return t&&\"object\"==typeof t&&t.constructor===i?t:new i(function(e){e(t)})},i.reject=function(t){return new i(function(e,n){n(t)})},i.race=function(t){return new i(function(e,n){for(var o=0,r=t.length;o<r;o++)t[o].then(e,n)})},i._immediateFn=\"function\"==typeof e&&function(t){e(t)}||function(t){d(t,0)},i._unhandledRejectionFn=function(t){\"undefined\"!=typeof console&&console&&console.warn(\"Possible Unhandled Promise Rejection:\",t)},i._setImmediateFn=function(t){i._immediateFn=t},i._setUnhandledRejectionFn=function(t){i._unhandledRejectionFn=t},void 0!==t&&t.exports?t.exports=i:n.Promise||(n.Promise=i)}(this)}).call(e,n(18).setImmediate)},function(t,e,n){function o(t,e){this._id=t,this._clearFn=e}var r=Function.prototype.apply;e.setTimeout=function(){return new o(r.call(setTimeout,window,arguments),clearTimeout)},e.setInterval=function(){return new o(r.call(setInterval,window,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},o.prototype.unref=o.prototype.ref=function(){},o.prototype.close=function(){this._clearFn.call(window,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout(function(){t._onTimeout&&t._onTimeout()},e))},n(19),e.setImmediate=setImmediate,e.clearImmediate=clearImmediate},function(t,e,n){(function(t,e){!function(t,n){\"use strict\";function o(t){\"function\"!=typeof t&&(t=new Function(\"\"+t));for(var e=new Array(arguments.length-1),n=0;n<e.length;n++)e[n]=arguments[n+1];var o={callback:t,args:e};return l[c]=o,s(c),c++}function r(t){delete l[t]}function i(t){var e=t.callback,o=t.args;switch(o.length){case 0:e();break;case 1:e(o[0]);break;case 2:e(o[0],o[1]);break;case 3:e(o[0],o[1],o[2]);break;default:e.apply(n,o)}}function a(t){if(u)setTimeout(a,0,t);else{var e=l[t];if(e){u=!0;try{i(e)}finally{r(t),u=!1}}}}if(!t.setImmediate){var s,c=1,l={},u=!1,f=t.document,d=Object.getPrototypeOf&&Object.getPrototypeOf(t);d=d&&d.setTimeout?d:t,\"[object process]\"==={}.toString.call(t.process)?function(){s=function(t){e.nextTick(function(){a(t)})}}():function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage(\"\",\"*\"),t.onmessage=n,e}}()?function(){var e=\"setImmediate$\"+Math.random()+\"$\",n=function(n){n.source===t&&\"string\"==typeof n.data&&0===n.data.indexOf(e)&&a(+n.data.slice(e.length))};t.addEventListener?t.addEventListener(\"message\",n,!1):t.attachEvent(\"onmessage\",n),s=function(n){t.postMessage(e+n,\"*\")}}():t.MessageChannel?function(){var t=new MessageChannel;t.port1.onmessage=function(t){a(t.data)},s=function(e){t.port2.postMessage(e)}}():f&&\"onreadystatechange\"in f.createElement(\"script\")?function(){var t=f.documentElement;s=function(e){var n=f.createElement(\"script\");n.onreadystatechange=function(){a(e),n.onreadystatechange=null,t.removeChild(n),n=null},t.appendChild(n)}}():function(){s=function(t){setTimeout(a,0,t)}}(),d.setImmediate=o,d.clearImmediate=r}}(\"undefined\"==typeof self?void 0===t?this:t:self)}).call(e,n(7),n(20))},function(t,e){function n(){throw new Error(\"setTimeout has not been defined\")}function o(){throw new Error(\"clearTimeout has not been defined\")}function r(t){if(u===setTimeout)return setTimeout(t,0);if((u===n||!u)&&setTimeout)return u=setTimeout,setTimeout(t,0);try{return u(t,0)}catch(e){try{return u.call(null,t,0)}catch(e){return u.call(this,t,0)}}}function i(t){if(f===clearTimeout)return clearTimeout(t);if((f===o||!f)&&clearTimeout)return f=clearTimeout,clearTimeout(t);try{return f(t)}catch(e){try{return f.call(null,t)}catch(e){return f.call(this,t)}}}function a(){b&&p&&(b=!1,p.length?m=p.concat(m):v=-1,m.length&&s())}function s(){if(!b){var t=r(a);b=!0;for(var e=m.length;e;){for(p=m,m=[];++v<e;)p&&p[v].run();v=-1,e=m.length}p=null,b=!1,i(t)}}function c(t,e){this.fun=t,this.array=e}function l(){}var u,f,d=t.exports={};!function(){try{u=\"function\"==typeof setTimeout?setTimeout:n}catch(t){u=n}try{f=\"function\"==typeof clearTimeout?clearTimeout:o}catch(t){f=o}}();var p,m=[],b=!1,v=-1;d.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];m.push(new c(t,e)),1!==m.length||b||r(s)},c.prototype.run=function(){this.fun.apply(null,this.array)},d.title=\"browser\",d.browser=!0,d.env={},d.argv=[],d.version=\"\",d.versions={},d.on=l,d.addListener=l,d.once=l,d.off=l,d.removeListener=l,d.removeAllListeners=l,d.emit=l,d.prependListener=l,d.prependOnceListener=l,d.listeners=function(t){return[]},d.binding=function(t){throw new Error(\"process.binding is not supported\")},d.cwd=function(){return\"/\"},d.chdir=function(t){throw new Error(\"process.chdir is not supported\")},d.umask=function(){return 0}},function(t,e,n){\"use strict\";n(22).polyfill()},function(t,e,n){\"use strict\";function o(t,e){if(void 0===t||null===t)throw new TypeError(\"Cannot convert first argument to object\");for(var n=Object(t),o=1;o<arguments.length;o++){var r=arguments[o];if(void 0!==r&&null!==r)for(var i=Object.keys(Object(r)),a=0,s=i.length;a<s;a++){var c=i[a],l=Object.getOwnPropertyDescriptor(r,c);void 0!==l&&l.enumerable&&(n[c]=r[c])}}return n}function r(){Object.assign||Object.defineProperty(Object,\"assign\",{enumerable:!1,configurable:!0,writable:!0,value:o})}t.exports={assign:o,polyfill:r}},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(24),r=n(6),i=n(5),a=n(36),s=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];if(\"undefined\"!=typeof window){var n=a.getOpts.apply(void 0,t);return new Promise(function(t,e){i.default.promise={resolve:t,reject:e},o.default(n),setTimeout(function(){r.openModal()})})}};s.close=r.onAction,s.getState=r.getState,s.setActionValue=i.setActionValue,s.stopLoading=r.stopLoading,s.setDefaults=a.setDefaults,e.default=s},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(1),r=n(0),i=r.default.MODAL,a=n(4),s=n(34),c=n(35),l=n(1);e.init=function(t){o.getNode(i)||(document.body||l.throwErr(\"You can only use SweetAlert AFTER the DOM has loaded!\"),s.default(),a.default()),a.initModalContent(t),c.default(t)},e.default=e.init},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(0),r=o.default.MODAL;e.modalMarkup='\\n  <div class=\"'+r+'\" role=\"dialog\" aria-modal=\"true\"></div>',e.default=e.modalMarkup},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(0),r=o.default.OVERLAY,i='<div \\n    class=\"'+r+'\"\\n    tabIndex=\"-1\">\\n  </div>';e.default=i},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(0),r=o.default.ICON;e.errorIconMarkup=function(){var t=r+\"--error\",e=t+\"__line\";return'\\n    <div class=\"'+t+'__x-mark\">\\n      <span class=\"'+e+\" \"+e+'--left\"></span>\\n      <span class=\"'+e+\" \"+e+'--right\"></span>\\n    </div>\\n  '},e.warningIconMarkup=function(){var t=r+\"--warning\";return'\\n    <span class=\"'+t+'__body\">\\n      <span class=\"'+t+'__dot\"></span>\\n    </span>\\n  '},e.successIconMarkup=function(){var t=r+\"--success\";return'\\n    <span class=\"'+t+\"__line \"+t+'__line--long\"></span>\\n    <span class=\"'+t+\"__line \"+t+'__line--tip\"></span>\\n\\n    <div class=\"'+t+'__ring\"></div>\\n    <div class=\"'+t+'__hide-corners\"></div>\\n  '}},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(0),r=o.default.CONTENT;e.contentMarkup='\\n  <div class=\"'+r+'\">\\n\\n  </div>\\n'},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(0),r=o.default.BUTTON_CONTAINER,i=o.default.BUTTON,a=o.default.BUTTON_LOADER;e.buttonMarkup='\\n  <div class=\"'+r+'\">\\n\\n    <button\\n      class=\"'+i+'\"\\n    ></button>\\n\\n    <div class=\"'+a+'\">\\n      <div></div>\\n      <div></div>\\n      <div></div>\\n    </div>\\n\\n  </div>\\n'},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(4),r=n(2),i=n(0),a=i.default.ICON,s=i.default.ICON_CUSTOM,c=[\"error\",\"warning\",\"success\",\"info\"],l={error:r.errorIconMarkup(),warning:r.warningIconMarkup(),success:r.successIconMarkup()},u=function(t,e){var n=a+\"--\"+t;e.classList.add(n);var o=l[t];o&&(e.innerHTML=o)},f=function(t,e){e.classList.add(s);var n=document.createElement(\"img\");n.src=t,e.appendChild(n)},d=function(t){if(t){var e=o.injectElIntoModal(r.iconMarkup);c.includes(t)?u(t,e):f(t,e)}};e.default=d},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(2),r=n(4),i=function(t){navigator.userAgent.includes(\"AppleWebKit\")&&(t.style.display=\"none\",t.offsetHeight,t.style.display=\"\")};e.initTitle=function(t){if(t){var e=r.injectElIntoModal(o.titleMarkup);e.textContent=t,i(e)}},e.initText=function(t){if(t){var e=document.createDocumentFragment();t.split(\"\\n\").forEach(function(t,n,o){e.appendChild(document.createTextNode(t)),n<o.length-1&&e.appendChild(document.createElement(\"br\"))});var n=r.injectElIntoModal(o.textMarkup);n.appendChild(e),i(n)}}},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(1),r=n(4),i=n(0),a=i.default.BUTTON,s=i.default.DANGER_BUTTON,c=n(3),l=n(2),u=n(6),f=n(5),d=function(t,e,n){var r=e.text,i=e.value,d=e.className,p=e.closeModal,m=o.stringToNode(l.buttonMarkup),b=m.querySelector(\".\"+a),v=a+\"--\"+t;if(b.classList.add(v),d){(Array.isArray(d)?d:d.split(\" \")).filter(function(t){return t.length>0}).forEach(function(t){b.classList.add(t)})}n&&t===c.CONFIRM_KEY&&b.classList.add(s),b.textContent=r;var g={};return g[t]=i,f.setActionValue(g),f.setActionOptionsFor(t,{closeModal:p}),b.addEventListener(\"click\",function(){return u.onAction(t)}),m},p=function(t,e){var n=r.injectElIntoModal(l.footerMarkup);for(var o in t){var i=t[o],a=d(o,i,e);i.visible&&n.appendChild(a)}0===n.children.length&&n.remove()};e.default=p},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(3),r=n(4),i=n(2),a=n(5),s=n(6),c=n(0),l=c.default.CONTENT,u=function(t){t.addEventListener(\"input\",function(t){var e=t.target,n=e.value;a.setActionValue(n)}),t.addEventListener(\"keyup\",function(t){if(\"Enter\"===t.key)return s.onAction(o.CONFIRM_KEY)}),setTimeout(function(){t.focus(),a.setActionValue(\"\")},0)},f=function(t,e,n){var o=document.createElement(e),r=l+\"__\"+e;o.classList.add(r);for(var i in n){var a=n[i];o[i]=a}\"input\"===e&&u(o),t.appendChild(o)},d=function(t){if(t){var e=r.injectElIntoModal(i.contentMarkup),n=t.element,o=t.attributes;\"string\"==typeof n?f(e,n,o):e.appendChild(n)}};e.default=d},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(1),r=n(2),i=function(){var t=o.stringToNode(r.overlayMarkup);document.body.appendChild(t)};e.default=i},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(5),r=n(6),i=n(1),a=n(3),s=n(0),c=s.default.MODAL,l=s.default.BUTTON,u=s.default.OVERLAY,f=function(t){t.preventDefault(),v()},d=function(t){t.preventDefault(),g()},p=function(t){if(o.default.isOpen)switch(t.key){case\"Escape\":return r.onAction(a.CANCEL_KEY)}},m=function(t){if(o.default.isOpen)switch(t.key){case\"Tab\":return f(t)}},b=function(t){if(o.default.isOpen)return\"Tab\"===t.key&&t.shiftKey?d(t):void 0},v=function(){var t=i.getNode(l);t&&(t.tabIndex=0,t.focus())},g=function(){var t=i.getNode(c),e=t.querySelectorAll(\".\"+l),n=e.length-1,o=e[n];o&&o.focus()},h=function(t){t[t.length-1].addEventListener(\"keydown\",m)},w=function(t){t[0].addEventListener(\"keydown\",b)},y=function(){var t=i.getNode(c),e=t.querySelectorAll(\".\"+l);e.length&&(h(e),w(e))},x=function(t){if(i.getNode(u)===t.target)return r.onAction(a.CANCEL_KEY)},_=function(t){var e=i.getNode(u);e.removeEventListener(\"click\",x),t&&e.addEventListener(\"click\",x)},k=function(t){o.default.timer&&clearTimeout(o.default.timer),t&&(o.default.timer=window.setTimeout(function(){return r.onAction(a.CANCEL_KEY)},t))},O=function(t){t.closeOnEsc?document.addEventListener(\"keyup\",p):document.removeEventListener(\"keyup\",p),t.dangerMode?v():g(),y(),_(t.closeOnClickOutside),k(t.timer)};e.default=O},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(1),r=n(3),i=n(37),a=n(38),s={title:null,text:null,icon:null,buttons:r.defaultButtonList,content:null,className:null,closeOnClickOutside:!0,closeOnEsc:!0,dangerMode:!1,timer:null},c=Object.assign({},s);e.setDefaults=function(t){c=Object.assign({},s,t)};var l=function(t){var e=t&&t.button,n=t&&t.buttons;return void 0!==e&&void 0!==n&&o.throwErr(\"Cannot set both 'button' and 'buttons' options!\"),void 0!==e?{confirm:e}:n},u=function(t){return o.ordinalSuffixOf(t+1)},f=function(t,e){o.throwErr(u(e)+\" argument ('\"+t+\"') is invalid\")},d=function(t,e){var n=t+1,r=e[n];o.isPlainObject(r)||void 0===r||o.throwErr(\"Expected \"+u(n)+\" argument ('\"+r+\"') to be a plain object\")},p=function(t,e){var n=t+1,r=e[n];void 0!==r&&o.throwErr(\"Unexpected \"+u(n)+\" argument (\"+r+\")\")},m=function(t,e,n,r){var i=typeof e,a=\"string\"===i,s=e instanceof Element;if(a){if(0===n)return{text:e};if(1===n)return{text:e,title:r[0]};if(2===n)return d(n,r),{icon:e};f(e,n)}else{if(s&&0===n)return d(n,r),{content:e};if(o.isPlainObject(e))return p(n,r),e;f(e,n)}};e.getOpts=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n={};t.forEach(function(e,o){var r=m(0,e,o,t);Object.assign(n,r)});var o=l(n);n.buttons=r.getButtonListOpts(o),delete n.button,n.content=i.getContentOpts(n.content);var u=Object.assign({},s,c,n);return Object.keys(u).forEach(function(t){a.DEPRECATED_OPTS[t]&&a.logDeprecation(t)}),u}},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var o=n(1),r={element:\"input\",attributes:{placeholder:\"\"}};e.getContentOpts=function(t){var e={};return o.isPlainObject(t)?Object.assign(e,t):t instanceof Element?{element:t}:\"input\"===t?r:null}},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0}),e.logDeprecation=function(t){var n=e.DEPRECATED_OPTS[t],o=n.onlyRename,r=n.replacement,i=n.subOption,a=n.link,s=o?\"renamed\":\"deprecated\",c='SweetAlert warning: \"'+t+'\" option has been '+s+\".\";if(r){c+=\" Please use\"+(i?' \"'+i+'\" in ':\" \")+'\"'+r+'\" instead.'}var l=\"https://sweetalert.js.org\";c+=a?\" More details: \"+l+a:\" More details: \"+l+\"/guides/#upgrading-from-1x\",console.warn(c)},e.DEPRECATED_OPTS={type:{replacement:\"icon\",link:\"/docs/#icon\"},imageUrl:{replacement:\"icon\",link:\"/docs/#icon\"},customClass:{replacement:\"className\",onlyRename:!0,link:\"/docs/#classname\"},imageSize:{},showCancelButton:{replacement:\"buttons\",link:\"/docs/#buttons\"},showConfirmButton:{replacement:\"button\",link:\"/docs/#button\"},confirmButtonText:{replacement:\"button\",link:\"/docs/#button\"},confirmButtonColor:{},cancelButtonText:{replacement:\"buttons\",link:\"/docs/#buttons\"},closeOnConfirm:{replacement:\"button\",subOption:\"closeModal\",link:\"/docs/#button\"},closeOnCancel:{replacement:\"buttons\",subOption:\"closeModal\",link:\"/docs/#buttons\"},showLoaderOnConfirm:{replacement:\"buttons\"},animation:{},inputType:{replacement:\"content\",link:\"/docs/#content\"},inputValue:{replacement:\"content\",link:\"/docs/#content\"},inputPlaceholder:{replacement:\"content\",link:\"/docs/#content\"},html:{replacement:\"content\",link:\"/docs/#content\"},allowEscapeKey:{replacement:\"closeOnEsc\",onlyRename:!0,link:\"/docs/#closeonesc\"},allowClickOutside:{replacement:\"closeOnClickOutside\",onlyRename:!0,link:\"/docs/#closeonclickoutside\"}}}])});\n},{}],2:[function(require,module,exports){\n'use strict';\n\nvar Babel = require('babel-standalone');\n\n/*\n * In our Markdown files, we have some <preview-button /> tags.\n * We want to transform these into button.preview,\n * which onclick will run the JS code right above them!\n */\n\nvar previewPlaceholders = document.querySelectorAll('preview-button');\n\nvar createButton = function createButton(placeholder) {\n  var button = document.createElement('button');\n  button.className = \"preview\";\n  button.innerText = \"Preview\";\n\n  // Add button right above placeholder\n  placeholder.parentNode.insertBefore(button, placeholder);\n\n  return button;\n};\n\nvar getCodeEl = function getCodeEl(placeholder) {\n  return placeholder.parentNode.previousSibling.previousSibling;\n};\n\nvar getCode = function getCode(highlightEl) {\n  return highlightEl.innerText.trim();\n};\n\nvar resetStyles = function resetStyles() {\n  var swalOverlay = document.querySelector('.swal-overlay');\n  var allSwalEls = swalOverlay.querySelectorAll('*');\n\n  swalOverlay.removeAttribute('style');\n\n  allSwalEls.forEach(function (el) {\n    el.removeAttribute('style');\n  });\n};\n\nvar setStyles = function setStyles(code) {\n  var array = code.split(/[{}]/g);\n  var selector = array[0].trim();\n\n  var el = document.querySelector(selector);\n\n  var css = array[1].trim();\n  css = css.replace(/\\s+/g, ' ');\n  css = css.replace(/;\\s?/g, '; ');\n  css = css.replace(/:\\s?/g, ': ');\n\n  el.style.cssText = css;\n};\n\npreviewPlaceholders.forEach(function (placeholder) {\n  var highlightEl = getCodeEl(placeholder);\n  var code = getCode(highlightEl);\n\n  var button = createButton(placeholder);\n  var givenFunction = placeholder.dataset.function;\n\n  var lang = highlightEl.classList[1];\n\n  /*\n   * If there's a specified data-function on <preview-button>, call that.\n   * Othwerwise, just use the code from the highlightjs above it:\n   */\n  button.addEventListener('click', function () {\n    if (givenFunction) {\n      window[givenFunction]();\n    } else if (lang === \"css\") {\n      swal(\"Sweet!\", \"I like customizing!\");\n      resetStyles();\n      setStyles(code);\n    } else {\n      var transpiledCode = Babel.transform(code, { presets: ['es2015'] }).code;\n      eval(transpiledCode);\n    }\n  });\n\n  placeholder.remove();\n});\n\n},{\"babel-standalone\":17}],3:[function(require,module,exports){\n'use strict';\n\nvar _classCallCheck2 = require('babel-runtime/helpers/classCallCheck');\n\nvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\nvar _createClass2 = require('babel-runtime/helpers/createClass');\n\nvar _createClass3 = _interopRequireDefault(_createClass2);\n\nvar _possibleConstructorReturn2 = require('babel-runtime/helpers/possibleConstructorReturn');\n\nvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\nvar _inherits2 = require('babel-runtime/helpers/inherits');\n\nvar _inherits3 = _interopRequireDefault(_inherits2);\n\nrequire('whatwg-fetch');\n\nrequire('nodelist-foreach-polyfill');\n\nrequire('./add-preview-buttons');\n\nrequire('./landing-text-rotater');\n\nvar _react = require('react');\n\nvar _react2 = _interopRequireDefault(_react);\n\nvar _reactDom = require('react-dom');\n\nvar _reactDom2 = _interopRequireDefault(_reactDom);\n\nvar _withReact = require('@sweetalert/with-react');\n\nvar _withReact2 = _interopRequireDefault(_withReact);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n// NodeList.forEach() polyfill\nvar DEFAULT_INPUT_TEXT = \"\";\n/*\n * FOR GUIDES EXAMPLES:\n */\n// Fetch polyfill\n\nvar MyInput = function (_Component) {\n  (0, _inherits3.default)(MyInput, _Component);\n\n  function MyInput(props) {\n    (0, _classCallCheck3.default)(this, MyInput);\n\n    var _this = (0, _possibleConstructorReturn3.default)(this, (MyInput.__proto__ || Object.getPrototypeOf(MyInput)).call(this, props));\n\n    _this.state = {\n      text: DEFAULT_INPUT_TEXT\n    };\n    return _this;\n  }\n\n  (0, _createClass3.default)(MyInput, [{\n    key: 'changeText',\n    value: function changeText(e) {\n      var text = e.target.value;\n\n      this.setState({\n        text: text\n      });\n\n      /*\n       * This will update the value that the confirm\n       * button resolves to:\n       */\n      swal.setActionValue(text);\n    }\n  }, {\n    key: 'render',\n    value: function render() {\n      return _react2.default.createElement('input', {\n        value: this.state.text,\n        onChange: this.changeText.bind(this)\n      });\n    }\n  }]);\n  return MyInput;\n}(_react.Component);\n\n// We want to retrieve MyInput as a pure DOM node:\n\n\nvar wrapper = document.createElement('div');\n_reactDom2.default.render(_react2.default.createElement(MyInput, null), wrapper);\nvar el = wrapper.firstChild;\n\nwindow.reactExample = function () {\n\n  swal({\n    text: \"Write something here:\",\n    content: el,\n    buttons: {\n      confirm: {\n        value: DEFAULT_INPUT_TEXT\n      }\n    }\n  }).then(function (value) {\n    swal('You typed: ' + value);\n  });\n};\n\nwindow.withReactExample = function () {\n  (0, _withReact2.default)(_react2.default.createElement(\n    'div',\n    null,\n    _react2.default.createElement(\n      'h1',\n      null,\n      'Hello world!'\n    ),\n    _react2.default.createElement(\n      'p',\n      null,\n      'This is now rendered with JSX!'\n    )\n  ));\n};\n\nwindow.withReactOptionsExample = function () {\n  var onPick = function onPick(value) {\n    swal(\"Thanks for your rating!\", 'You rated us ' + value + '/3', \"success\");\n  };\n\n  var MoodButton = function MoodButton(_ref) {\n    var rating = _ref.rating,\n        _onClick = _ref.onClick;\n    return _react2.default.createElement('button', {\n      'data-rating': rating,\n      className: 'mood-btn',\n      onClick: function onClick() {\n        return _onClick(rating);\n      }\n    });\n  };\n\n  (0, _withReact2.default)({\n    text: \"How was your experience getting help with this issue?\",\n    buttons: {\n      cancel: \"Close\"\n    },\n    content: _react2.default.createElement(\n      'div',\n      null,\n      _react2.default.createElement(MoodButton, {\n        rating: 1,\n        onClick: onPick\n      }),\n      _react2.default.createElement(MoodButton, {\n        rating: 2,\n        onClick: onPick\n      }),\n      _react2.default.createElement(MoodButton, {\n        rating: 3,\n        onClick: onPick\n      })\n    )\n  });\n};\n\n},{\"./add-preview-buttons\":2,\"./landing-text-rotater\":4,\"@sweetalert/with-react\":6,\"babel-runtime/helpers/classCallCheck\":12,\"babel-runtime/helpers/createClass\":13,\"babel-runtime/helpers/inherits\":14,\"babel-runtime/helpers/possibleConstructorReturn\":15,\"nodelist-foreach-polyfill\":113,\"react\":274,\"react-dom\":119,\"whatwg-fetch\":275}],4:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nvar useCases = [{\n  text: \"success messages\",\n  className: 'success'\n}, {\n  text: \"error messages\",\n  className: 'error'\n}, {\n  text: \"warning modals\",\n  className: 'warning'\n}];\n\nvar currentIndex = 0;\n\nvar initRotater = function initRotater() {\n  updateUseCase(true);\n  setInterval(updateUseCase, 4000);\n};\n\nvar updateUseCase = function updateUseCase(isInitial) {\n  var useCase = useCases[currentIndex];\n  var nextUseCase = useCases[getNextIndex()];\n\n  updateText(useCase, nextUseCase);\n  updateModal(useCase, nextUseCase, isInitial);\n\n  currentIndex = getNextIndex();\n};\n\nvar updateModal = function updateModal(useCase, nextUseCase, isInitial) {\n  var className = useCase.className;\n\n\n  var contentOverlayEl = document.querySelector('.modal-content-overlay');\n\n  if (!contentOverlayEl) return;\n\n  if (!isInitial) {\n    contentOverlayEl.classList.add('show');\n  }\n\n  var modalEl = document.querySelector('.swal-modal-example');\n\n  modalEl.dataset.type = className;\n\n  var contentEls = document.querySelectorAll('.example-content');\n\n  setTimeout(function () {\n    contentEls.forEach(function (contentEl) {\n      if (contentEl.classList.contains(className)) {\n        contentEl.classList.add('show');\n      } else {\n        contentEl.classList.remove('show');\n      }\n    });\n\n    contentOverlayEl.classList.remove('show');\n  }, 500);\n};\n\nvar updateText = function updateText(useCase, nextUseCase) {\n  var text = useCase.text;\n  var nextText = nextUseCase.text;\n\n\n  var rotatorEl = document.querySelector('.text-rotater');\n\n  if (!rotatorEl) return;\n\n  rotatorEl.classList.add('slide-up');\n\n  setTimeout(function () {\n    rotatorEl.innerHTML = \"\\n      <span>\" + text + \"</span>\\n      <span>\" + nextText + \"</span>\\n    \";\n    rotatorEl.classList.remove('slide-up');\n  }, 2000);\n};\n\nvar getNextIndex = function getNextIndex() {\n  if (useCases[currentIndex + 1]) {\n    return currentIndex + 1;\n  } else {\n    return 0;\n  }\n};\n\nexports.default = initRotater();\n\n},{}],5:[function(require,module,exports){\n'use strict';\n\nObject.defineProperty(exports, '__esModule', { value: true });\n\nfunction _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }\n\nvar swal = _interopDefault(require('sweetalert'));\n\nvar index = async (...args) => {\n  const newOptions = await getOptions(...args);\n\n  return swal(newOptions);\n};\n\nconst bindActions = (swalInstance) => {\n  for (const method in swal) {\n    swalInstance[method] = swal[method];\n  }\n};\n\nconst getOptions = async (params, {\n  identifier,\n  transformer,\n}) => {\n\n  let newOptions = await transformParams(\n    params, \n    identifier, \n    transformer, \n  );\n\n  newOptions = Object.assign({}, parseTextParams(params), newOptions);\n\n  const lastParam = params[params.length - 1];\n\n  /*\n   * So that we don't lose other specified options\n   * such as buttons... etc.\n   */\n  if (isOptionsParam(lastParam, identifier)) {\n    newOptions = Object.assign({}, lastParam, newOptions);\n  }\n\n  return newOptions;\n};\n\nconst parseTextParams = params => {\n  const options = {};\n\n  const isString = param => typeof param === \"string\";\n\n  if (isString(params[0]) && !isString(params[1])) {\n    options.text = params[0];\n  }\n\n  if (isString(params[1])) {\n    options.title = params[0];\n    options.text = params[1];\n  }\n\n  if (isString(params[2])) {\n    options.icon = params[2];\n  }\n\n  return options;\n};\n\n// Return true if param is a SwalOptions object\nconst isOptionsParam = (param, isTransformable) => (\n  (param.constructor === Object) && \n  (!isTransformable(param))\n);\n\n/*\n * @params: (SwalParams, Function, Function, boolean)\n * @returns: SwalOptions\n */\nconst transformParams = async (params, isTransformable, transformer) => {\n\n  // Check if the transform returns a DOM synchronously\n  // or if it is a promise:\n  const isAsync = transformer() instanceof Promise;\n\n  /*\n   * Example:\n   *   swal(<div>Hello!</div>);\n   */\n  const transformSingleParam = async () => {\n    const el = params[0];\n\n    if (!isTransformable(el)) return;\n\n    const newContent = await transformEl(el, transformer, isAsync);\n\n    return {\n      content: newContent,\n    };\n  };\n\n  /*\n   * Example:\n   *   swal(\"Hi\", { \n   *     content: <div>Hello!</div> \n   *   })\n   */\n  const transformContentOption = async () => {\n    const lastParamIndex = (params.length - 1);\n    const lastParam = params[lastParamIndex];\n\n    if (!lastParam || !lastParam.content) return;\n\n    let { content, button } = lastParam;\n\n    if (isTransformable(content)) {\n      content = await transformEl(content, transformer, isAsync);\n    }\n\n    /* TODO?\n    if (isTransformable(button)) {\n      button = await transformEl(button, transformer, isAsync);\n    }\n    */\n\n    return {\n      content,\n      //button,\n    };\n  };\n\n  /*\n   * Only transform the params that can \n   * have a DOM node as their value\n   */\n  const newOpts = await Promise.all([\n    transformSingleParam(),\n    transformContentOption(),\n  ]);\n\n  return Object.assign({}, ...newOpts);\n};\n\n// Transform a single option\nconst transformEl = async (el, transformer, isAsync) => {\n  return (isAsync) ? await transformer(el) : transformer(el);\n};\n\nexports['default'] = index;\nexports.bindActions = bindActions;\n\n},{\"sweetalert\":1}],6:[function(require,module,exports){\n'use strict';\n\nfunction _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }\n\nvar React = _interopDefault(require('react'));\nvar ReactDOM = _interopDefault(require('react-dom'));\nvar transformer = require('@sweetalert/transformer');\nvar transformer__default = _interopDefault(transformer);\n\n/*\n * Convert <Element /> to pure DOM node using ReactDOM\n * (remember that ReactDOM.render() is async!)\n */\nconst getDOMNodeFromJSX = (Element) => {\n  const wrapper = document.createElement('div');\n\n  return new Promise((resolve) => {\n    ReactDOM.render(Element, wrapper, () => {\n      const el = wrapper.firstChild;\n\n      return resolve(el);\n    });\n  });\n};\n\nconst swal = (...params) => (\n  transformer__default(params, {\n    identifier: React.isValidElement,\n    transformer: getDOMNodeFromJSX, \n  })\n);\n\ntransformer.bindActions(swal);\n\nmodule.exports = swal;\n\n},{\"@sweetalert/transformer\":5,\"react\":274,\"react-dom\":119}],7:[function(require,module,exports){\nmodule.exports = { \"default\": require(\"core-js/library/fn/object/create\"), __esModule: true };\n},{\"core-js/library/fn/object/create\":18}],8:[function(require,module,exports){\nmodule.exports = { \"default\": require(\"core-js/library/fn/object/define-property\"), __esModule: true };\n},{\"core-js/library/fn/object/define-property\":19}],9:[function(require,module,exports){\nmodule.exports = { \"default\": require(\"core-js/library/fn/object/set-prototype-of\"), __esModule: true };\n},{\"core-js/library/fn/object/set-prototype-of\":20}],10:[function(require,module,exports){\nmodule.exports = { \"default\": require(\"core-js/library/fn/symbol\"), __esModule: true };\n},{\"core-js/library/fn/symbol\":21}],11:[function(require,module,exports){\nmodule.exports = { \"default\": require(\"core-js/library/fn/symbol/iterator\"), __esModule: true };\n},{\"core-js/library/fn/symbol/iterator\":22}],12:[function(require,module,exports){\n\"use strict\";\n\nexports.__esModule = true;\n\nexports.default = function (instance, Constructor) {\n  if (!(instance instanceof Constructor)) {\n    throw new TypeError(\"Cannot call a class as a function\");\n  }\n};\n},{}],13:[function(require,module,exports){\n\"use strict\";\n\nexports.__esModule = true;\n\nvar _defineProperty = require(\"../core-js/object/define-property\");\n\nvar _defineProperty2 = _interopRequireDefault(_defineProperty);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nexports.default = function () {\n  function defineProperties(target, props) {\n    for (var i = 0; i < props.length; i++) {\n      var descriptor = props[i];\n      descriptor.enumerable = descriptor.enumerable || false;\n      descriptor.configurable = true;\n      if (\"value\" in descriptor) descriptor.writable = true;\n      (0, _defineProperty2.default)(target, descriptor.key, descriptor);\n    }\n  }\n\n  return function (Constructor, protoProps, staticProps) {\n    if (protoProps) defineProperties(Constructor.prototype, protoProps);\n    if (staticProps) defineProperties(Constructor, staticProps);\n    return Constructor;\n  };\n}();\n},{\"../core-js/object/define-property\":8}],14:[function(require,module,exports){\n\"use strict\";\n\nexports.__esModule = true;\n\nvar _setPrototypeOf = require(\"../core-js/object/set-prototype-of\");\n\nvar _setPrototypeOf2 = _interopRequireDefault(_setPrototypeOf);\n\nvar _create = require(\"../core-js/object/create\");\n\nvar _create2 = _interopRequireDefault(_create);\n\nvar _typeof2 = require(\"../helpers/typeof\");\n\nvar _typeof3 = _interopRequireDefault(_typeof2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nexports.default = function (subClass, superClass) {\n  if (typeof superClass !== \"function\" && superClass !== null) {\n    throw new TypeError(\"Super expression must either be null or a function, not \" + (typeof superClass === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(superClass)));\n  }\n\n  subClass.prototype = (0, _create2.default)(superClass && superClass.prototype, {\n    constructor: {\n      value: subClass,\n      enumerable: false,\n      writable: true,\n      configurable: true\n    }\n  });\n  if (superClass) _setPrototypeOf2.default ? (0, _setPrototypeOf2.default)(subClass, superClass) : subClass.__proto__ = superClass;\n};\n},{\"../core-js/object/create\":7,\"../core-js/object/set-prototype-of\":9,\"../helpers/typeof\":16}],15:[function(require,module,exports){\n\"use strict\";\n\nexports.__esModule = true;\n\nvar _typeof2 = require(\"../helpers/typeof\");\n\nvar _typeof3 = _interopRequireDefault(_typeof2);\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nexports.default = function (self, call) {\n  if (!self) {\n    throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n  }\n\n  return call && ((typeof call === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(call)) === \"object\" || typeof call === \"function\") ? call : self;\n};\n},{\"../helpers/typeof\":16}],16:[function(require,module,exports){\n\"use strict\";\n\nexports.__esModule = true;\n\nvar _iterator = require(\"../core-js/symbol/iterator\");\n\nvar _iterator2 = _interopRequireDefault(_iterator);\n\nvar _symbol = require(\"../core-js/symbol\");\n\nvar _symbol2 = _interopRequireDefault(_symbol);\n\nvar _typeof = typeof _symbol2.default === \"function\" && typeof _iterator2.default === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof _symbol2.default === \"function\" && obj.constructor === _symbol2.default && obj !== _symbol2.default.prototype ? \"symbol\" : typeof obj; };\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nexports.default = typeof _symbol2.default === \"function\" && _typeof(_iterator2.default) === \"symbol\" ? function (obj) {\n  return typeof obj === \"undefined\" ? \"undefined\" : _typeof(obj);\n} : function (obj) {\n  return obj && typeof _symbol2.default === \"function\" && obj.constructor === _symbol2.default && obj !== _symbol2.default.prototype ? \"symbol\" : typeof obj === \"undefined\" ? \"undefined\" : _typeof(obj);\n};\n},{\"../core-js/symbol\":10,\"../core-js/symbol/iterator\":11}],17:[function(require,module,exports){\n(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"Babel\"] = factory();\n\telse\n\t\troot[\"Babel\"] = factory();\n})(this, function() {\nreturn /******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(installedModules[moduleId])\n/******/ \t\t\treturn installedModules[moduleId].exports;\n\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\texports: {},\n/******/ \t\t\tid: moduleId,\n/******/ \t\t\tloaded: false\n/******/ \t\t};\n\n/******/ \t\t// Execute the module function\n/******/ \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n/******/ \t\t// Flag the module as loaded\n/******/ \t\tmodule.loaded = true;\n\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n\n\n/******/ \t// expose the modules object (__webpack_modules__)\n/******/ \t__webpack_require__.m = modules;\n\n/******/ \t// expose the module cache\n/******/ \t__webpack_require__.c = installedModules;\n\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"\";\n\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(0);\n/******/ })\n/************************************************************************/\n/******/ ((function(modules) {\n\t// Check all modules for deduplicated modules\n\tfor(var i in modules) {\n\t\tif(Object.prototype.hasOwnProperty.call(modules, i)) {\n\t\t\tswitch(typeof modules[i]) {\n\t\t\tcase \"function\": break;\n\t\t\tcase \"object\":\n\t\t\t\t// Module can be created from a template\n\t\t\t\tmodules[i] = (function(_m) {\n\t\t\t\t\tvar args = _m.slice(1), fn = modules[_m[0]];\n\t\t\t\t\treturn function (a,b,c) {\n\t\t\t\t\t\tfn.apply(this, [a,b,c].concat(args));\n\t\t\t\t\t};\n\t\t\t\t}(modules[i]));\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t// Module is a copy of another module\n\t\t\t\tmodules[i] = modules[modules[i]];\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\treturn modules;\n}([\n/* 0 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\texports.version = exports.buildExternalHelpers = exports.availablePresets = exports.availablePlugins = undefined;\n\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\texports.transform = transform;\n\texports.transformFromAst = transformFromAst;\n\texports.registerPlugin = registerPlugin;\n\texports.registerPlugins = registerPlugins;\n\texports.registerPreset = registerPreset;\n\texports.registerPresets = registerPresets;\n\texports.transformScriptTags = transformScriptTags;\n\texports.disableScriptTags = disableScriptTags;\n\n\tvar _babelCore = __webpack_require__(290);\n\n\tvar Babel = _interopRequireWildcard(_babelCore);\n\n\tvar _transformScriptTags = __webpack_require__(629);\n\n\tfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\n\tvar isArray = Array.isArray || function (arg) {\n\t  return Object.prototype.toString.call(arg) === '[object Array]';\n\t};\n\n\t/**\r\n\t * Loads the given name (or [name, options] pair) from the given table object\r\n\t * holding the available presets or plugins.\r\n\t *\r\n\t * Returns undefined if the preset or plugin is not available; passes through\r\n\t * name unmodified if it (or the first element of the pair) is not a string.\r\n\t */\n\tfunction loadBuiltin(builtinTable, name) {\n\t  if (isArray(name) && typeof name[0] === 'string') {\n\t    if (builtinTable.hasOwnProperty(name[0])) {\n\t      return [builtinTable[name[0]]].concat(name.slice(1));\n\t    }\n\t    return;\n\t  } else if (typeof name === 'string') {\n\t    return builtinTable[name];\n\t  }\n\t  // Could be an actual preset/plugin module\n\t  return name;\n\t}\n\n\t/**\r\n\t * Parses plugin names and presets from the specified options.\r\n\t */\n\tfunction processOptions(options) {\n\t  // Parse preset names\n\t  var presets = (options.presets || []).map(function (presetName) {\n\t    var preset = loadBuiltin(availablePresets, presetName);\n\n\t    if (preset) {\n\t      // workaround for babel issue\n\t      // at some point, babel copies the preset, losing the non-enumerable\n\t      // buildPreset key; convert it into an enumerable key.\n\t      if (isArray(preset) && _typeof(preset[0]) === 'object' && preset[0].hasOwnProperty('buildPreset')) {\n\t        preset[0] = _extends({}, preset[0], { buildPreset: preset[0].buildPreset });\n\t      }\n\t    } else {\n\t      throw new Error('Invalid preset specified in Babel options: \"' + presetName + '\"');\n\t    }\n\t    return preset;\n\t  });\n\n\t  // Parse plugin names\n\t  var plugins = (options.plugins || []).map(function (pluginName) {\n\t    var plugin = loadBuiltin(availablePlugins, pluginName);\n\n\t    if (!plugin) {\n\t      throw new Error('Invalid plugin specified in Babel options: \"' + pluginName + '\"');\n\t    }\n\t    return plugin;\n\t  });\n\n\t  return _extends({\n\t    babelrc: false\n\t  }, options, {\n\t    presets: presets,\n\t    plugins: plugins\n\t  });\n\t}\n\n\tfunction transform(code, options) {\n\t  return Babel.transform(code, processOptions(options));\n\t}\n\n\tfunction transformFromAst(ast, code, options) {\n\t  return Babel.transformFromAst(ast, code, processOptions(options));\n\t}\n\tvar availablePlugins = exports.availablePlugins = {};\n\tvar availablePresets = exports.availablePresets = {};\n\tvar buildExternalHelpers = exports.buildExternalHelpers = Babel.buildExternalHelpers;\n\t/**\r\n\t * Registers a named plugin for use with Babel.\r\n\t */\n\tfunction registerPlugin(name, plugin) {\n\t  if (availablePlugins.hasOwnProperty(name)) {\n\t    console.warn('A plugin named \"' + name + '\" is already registered, it will be overridden');\n\t  }\n\t  availablePlugins[name] = plugin;\n\t}\n\t/**\r\n\t * Registers multiple plugins for use with Babel. `newPlugins` should be an object where the key\r\n\t * is the name of the plugin, and the value is the plugin itself.\r\n\t */\n\tfunction registerPlugins(newPlugins) {\n\t  Object.keys(newPlugins).forEach(function (name) {\n\t    return registerPlugin(name, newPlugins[name]);\n\t  });\n\t}\n\n\t/**\r\n\t * Registers a named preset for use with Babel.\r\n\t */\n\tfunction registerPreset(name, preset) {\n\t  if (availablePresets.hasOwnProperty(name)) {\n\t    console.warn('A preset named \"' + name + '\" is already registered, it will be overridden');\n\t  }\n\t  availablePresets[name] = preset;\n\t}\n\t/**\r\n\t * Registers multiple presets for use with Babel. `newPresets` should be an object where the key\r\n\t * is the name of the preset, and the value is the preset itself.\r\n\t */\n\tfunction registerPresets(newPresets) {\n\t  Object.keys(newPresets).forEach(function (name) {\n\t    return registerPreset(name, newPresets[name]);\n\t  });\n\t}\n\n\t// All the plugins we should bundle\n\tregisterPlugins({\n\t  'check-es2015-constants': __webpack_require__(66),\n\t  'external-helpers': __webpack_require__(322),\n\t  'inline-replace-variables': __webpack_require__(323),\n\t  'syntax-async-functions': __webpack_require__(67),\n\t  'syntax-async-generators': __webpack_require__(195),\n\t  'syntax-class-constructor-call': __webpack_require__(196),\n\t  'syntax-class-properties': __webpack_require__(197),\n\t  'syntax-decorators': __webpack_require__(125),\n\t  'syntax-do-expressions': __webpack_require__(198),\n\t  'syntax-exponentiation-operator': __webpack_require__(199),\n\t  'syntax-export-extensions': __webpack_require__(200),\n\t  'syntax-flow': __webpack_require__(126),\n\t  'syntax-function-bind': __webpack_require__(201),\n\t  'syntax-function-sent': __webpack_require__(325),\n\t  'syntax-jsx': __webpack_require__(127),\n\t  'syntax-object-rest-spread': __webpack_require__(202),\n\t  'syntax-trailing-function-commas': __webpack_require__(128),\n\t  'transform-async-functions': __webpack_require__(326),\n\t  'transform-async-to-generator': __webpack_require__(129),\n\t  'transform-async-to-module-method': __webpack_require__(328),\n\t  'transform-class-constructor-call': __webpack_require__(203),\n\t  'transform-class-properties': __webpack_require__(204),\n\t  'transform-decorators': __webpack_require__(205),\n\t  'transform-decorators-legacy': __webpack_require__(329).default, // <- No clue. Nope.\n\t  'transform-do-expressions': __webpack_require__(206),\n\t  'transform-es2015-arrow-functions': __webpack_require__(68),\n\t  'transform-es2015-block-scoped-functions': __webpack_require__(69),\n\t  'transform-es2015-block-scoping': __webpack_require__(70),\n\t  'transform-es2015-classes': __webpack_require__(71),\n\t  'transform-es2015-computed-properties': __webpack_require__(72),\n\t  'transform-es2015-destructuring': __webpack_require__(73),\n\t  'transform-es2015-duplicate-keys': __webpack_require__(130),\n\t  'transform-es2015-for-of': __webpack_require__(74),\n\t  'transform-es2015-function-name': __webpack_require__(75),\n\t  'transform-es2015-instanceof': __webpack_require__(332),\n\t  'transform-es2015-literals': __webpack_require__(76),\n\t  'transform-es2015-modules-amd': __webpack_require__(131),\n\t  'transform-es2015-modules-commonjs': __webpack_require__(77),\n\t  'transform-es2015-modules-systemjs': __webpack_require__(208),\n\t  'transform-es2015-modules-umd': __webpack_require__(209),\n\t  'transform-es2015-object-super': __webpack_require__(78),\n\t  'transform-es2015-parameters': __webpack_require__(79),\n\t  'transform-es2015-shorthand-properties': __webpack_require__(80),\n\t  'transform-es2015-spread': __webpack_require__(81),\n\t  'transform-es2015-sticky-regex': __webpack_require__(82),\n\t  'transform-es2015-template-literals': __webpack_require__(83),\n\t  'transform-es2015-typeof-symbol': __webpack_require__(84),\n\t  'transform-es2015-unicode-regex': __webpack_require__(85),\n\t  'transform-es3-member-expression-literals': __webpack_require__(336),\n\t  'transform-es3-property-literals': __webpack_require__(337),\n\t  'transform-es5-property-mutators': __webpack_require__(338),\n\t  'transform-eval': __webpack_require__(339),\n\t  'transform-exponentiation-operator': __webpack_require__(132),\n\t  'transform-export-extensions': __webpack_require__(210),\n\t  'transform-flow-comments': __webpack_require__(340),\n\t  'transform-flow-strip-types': __webpack_require__(211),\n\t  'transform-function-bind': __webpack_require__(212),\n\t  'transform-jscript': __webpack_require__(341),\n\t  'transform-object-assign': __webpack_require__(342),\n\t  'transform-object-rest-spread': __webpack_require__(213),\n\t  'transform-object-set-prototype-of-to-assign': __webpack_require__(343),\n\t  'transform-proto-to-assign': __webpack_require__(344),\n\t  'transform-react-constant-elements': __webpack_require__(345),\n\t  'transform-react-display-name': __webpack_require__(214),\n\t  'transform-react-inline-elements': __webpack_require__(346),\n\t  'transform-react-jsx': __webpack_require__(215),\n\t  'transform-react-jsx-compat': __webpack_require__(347),\n\t  'transform-react-jsx-self': __webpack_require__(349),\n\t  'transform-react-jsx-source': __webpack_require__(350),\n\t  'transform-regenerator': __webpack_require__(86),\n\t  'transform-runtime': __webpack_require__(353),\n\t  'transform-strict-mode': __webpack_require__(216),\n\t  'undeclared-variables-check': __webpack_require__(354)\n\t});\n\n\t// All the presets we should bundle\n\tregisterPresets({\n\t  es2015: __webpack_require__(217),\n\t  es2016: __webpack_require__(218),\n\t  es2017: __webpack_require__(219),\n\t  latest: __webpack_require__(356),\n\t  react: __webpack_require__(357),\n\t  'stage-0': __webpack_require__(358),\n\t  'stage-1': __webpack_require__(220),\n\t  'stage-2': __webpack_require__(221),\n\t  'stage-3': __webpack_require__(222),\n\n\t  // ES2015 preset with es2015-modules-commonjs removed\n\t  // Plugin list copied from babel-preset-es2015/index.js\n\t  'es2015-no-commonjs': {\n\t    plugins: [__webpack_require__(83), __webpack_require__(76), __webpack_require__(75), __webpack_require__(68), __webpack_require__(69), __webpack_require__(71), __webpack_require__(78), __webpack_require__(80), __webpack_require__(72), __webpack_require__(74), __webpack_require__(82), __webpack_require__(85), __webpack_require__(66), __webpack_require__(81), __webpack_require__(79), __webpack_require__(73), __webpack_require__(70), __webpack_require__(84), [__webpack_require__(86), { async: false, asyncGenerators: false }]]\n\t  },\n\n\t  // ES2015 preset with plugins set to loose mode.\n\t  // Based off https://github.com/bkonkle/babel-preset-es2015-loose/blob/master/index.js\n\t  'es2015-loose': {\n\t    plugins: [[__webpack_require__(83), { loose: true }], __webpack_require__(76), __webpack_require__(75), __webpack_require__(68), __webpack_require__(69), [__webpack_require__(71), { loose: true }], __webpack_require__(78), __webpack_require__(80), __webpack_require__(130), [__webpack_require__(72), { loose: true }], [__webpack_require__(74), { loose: true }], __webpack_require__(82), __webpack_require__(85), __webpack_require__(66), [__webpack_require__(81), { loose: true }], __webpack_require__(79), [__webpack_require__(73), { loose: true }], __webpack_require__(70), __webpack_require__(84), [__webpack_require__(77), { loose: true }], [__webpack_require__(86), { async: false, asyncGenerators: false }]]\n\t  }\n\t});\n\n\tvar version = exports.version = (\"6.26.0\");\n\n\t// Listen for load event if we're in a browser and then kick off finding and\n\t// running of scripts with \"text/babel\" type.\n\tif (typeof window !== 'undefined' && window && window.addEventListener) {\n\t  window.addEventListener('DOMContentLoaded', function () {\n\t    return transformScriptTags();\n\t  }, false);\n\t}\n\n\t/**\r\n\t * Transform <script> tags with \"text/babel\" type.\r\n\t * @param {Array} scriptTags specify script tags to transform, transform all in the <head> if not given\r\n\t */\n\tfunction transformScriptTags(scriptTags) {\n\t  (0, _transformScriptTags.runScripts)(transform, scriptTags);\n\t}\n\n\t/**\r\n\t * Disables automatic transformation of <script> tags with \"text/babel\" type.\r\n\t */\n\tfunction disableScriptTags() {\n\t  window.removeEventListener('DOMContentLoaded', transformScriptTags);\n\t}\n\n/***/ }),\n/* 1 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.createTypeAnnotationBasedOnTypeof = exports.removeTypeDuplicates = exports.createUnionTypeAnnotation = exports.valueToNode = exports.toBlock = exports.toExpression = exports.toStatement = exports.toBindingIdentifierName = exports.toIdentifier = exports.toKeyAlias = exports.toSequenceExpression = exports.toComputedKey = exports.isNodesEquivalent = exports.isImmutable = exports.isScope = exports.isSpecifierDefault = exports.isVar = exports.isBlockScoped = exports.isLet = exports.isValidIdentifier = exports.isReferenced = exports.isBinding = exports.getOuterBindingIdentifiers = exports.getBindingIdentifiers = exports.TYPES = exports.react = exports.DEPRECATED_KEYS = exports.BUILDER_KEYS = exports.NODE_FIELDS = exports.ALIAS_KEYS = exports.VISITOR_KEYS = exports.NOT_LOCAL_BINDING = exports.BLOCK_SCOPED_SYMBOL = exports.INHERIT_KEYS = exports.UNARY_OPERATORS = exports.STRING_UNARY_OPERATORS = exports.NUMBER_UNARY_OPERATORS = exports.BOOLEAN_UNARY_OPERATORS = exports.BINARY_OPERATORS = exports.NUMBER_BINARY_OPERATORS = exports.BOOLEAN_BINARY_OPERATORS = exports.COMPARISON_BINARY_OPERATORS = exports.EQUALITY_BINARY_OPERATORS = exports.BOOLEAN_NUMBER_BINARY_OPERATORS = exports.UPDATE_OPERATORS = exports.LOGICAL_OPERATORS = exports.COMMENT_KEYS = exports.FOR_INIT_KEYS = exports.FLATTENABLE_KEYS = exports.STATEMENT_OR_BLOCK_KEYS = undefined;\n\n\tvar _getOwnPropertySymbols = __webpack_require__(360);\n\n\tvar _getOwnPropertySymbols2 = _interopRequireDefault(_getOwnPropertySymbols);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\tvar _constants = __webpack_require__(135);\n\n\tObject.defineProperty(exports, \"STATEMENT_OR_BLOCK_KEYS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.STATEMENT_OR_BLOCK_KEYS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"FLATTENABLE_KEYS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.FLATTENABLE_KEYS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"FOR_INIT_KEYS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.FOR_INIT_KEYS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"COMMENT_KEYS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.COMMENT_KEYS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"LOGICAL_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.LOGICAL_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"UPDATE_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.UPDATE_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"BOOLEAN_NUMBER_BINARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.BOOLEAN_NUMBER_BINARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"EQUALITY_BINARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.EQUALITY_BINARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"COMPARISON_BINARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.COMPARISON_BINARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"BOOLEAN_BINARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.BOOLEAN_BINARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"NUMBER_BINARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.NUMBER_BINARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"BINARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.BINARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"BOOLEAN_UNARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.BOOLEAN_UNARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"NUMBER_UNARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.NUMBER_UNARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"STRING_UNARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.STRING_UNARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"UNARY_OPERATORS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.UNARY_OPERATORS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"INHERIT_KEYS\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.INHERIT_KEYS;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"BLOCK_SCOPED_SYMBOL\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.BLOCK_SCOPED_SYMBOL;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"NOT_LOCAL_BINDING\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _constants.NOT_LOCAL_BINDING;\n\t  }\n\t});\n\texports.is = is;\n\texports.isType = isType;\n\texports.validate = validate;\n\texports.shallowEqual = shallowEqual;\n\texports.appendToMemberExpression = appendToMemberExpression;\n\texports.prependToMemberExpression = prependToMemberExpression;\n\texports.ensureBlock = ensureBlock;\n\texports.clone = clone;\n\texports.cloneWithoutLoc = cloneWithoutLoc;\n\texports.cloneDeep = cloneDeep;\n\texports.buildMatchMemberExpression = buildMatchMemberExpression;\n\texports.removeComments = removeComments;\n\texports.inheritsComments = inheritsComments;\n\texports.inheritTrailingComments = inheritTrailingComments;\n\texports.inheritLeadingComments = inheritLeadingComments;\n\texports.inheritInnerComments = inheritInnerComments;\n\texports.inherits = inherits;\n\texports.assertNode = assertNode;\n\texports.isNode = isNode;\n\texports.traverseFast = traverseFast;\n\texports.removeProperties = removeProperties;\n\texports.removePropertiesDeep = removePropertiesDeep;\n\n\tvar _retrievers = __webpack_require__(226);\n\n\tObject.defineProperty(exports, \"getBindingIdentifiers\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _retrievers.getBindingIdentifiers;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"getOuterBindingIdentifiers\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _retrievers.getOuterBindingIdentifiers;\n\t  }\n\t});\n\n\tvar _validators = __webpack_require__(395);\n\n\tObject.defineProperty(exports, \"isBinding\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isBinding;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isReferenced\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isReferenced;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isValidIdentifier\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isValidIdentifier;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isLet\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isLet;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isBlockScoped\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isBlockScoped;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isVar\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isVar;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isSpecifierDefault\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isSpecifierDefault;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isScope\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isScope;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isImmutable\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isImmutable;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"isNodesEquivalent\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _validators.isNodesEquivalent;\n\t  }\n\t});\n\n\tvar _converters = __webpack_require__(385);\n\n\tObject.defineProperty(exports, \"toComputedKey\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toComputedKey;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toSequenceExpression\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toSequenceExpression;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toKeyAlias\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toKeyAlias;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toIdentifier\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toIdentifier;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toBindingIdentifierName\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toBindingIdentifierName;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toStatement\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toStatement;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toExpression\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toExpression;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"toBlock\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.toBlock;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"valueToNode\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _converters.valueToNode;\n\t  }\n\t});\n\n\tvar _flow = __webpack_require__(393);\n\n\tObject.defineProperty(exports, \"createUnionTypeAnnotation\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _flow.createUnionTypeAnnotation;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"removeTypeDuplicates\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _flow.removeTypeDuplicates;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"createTypeAnnotationBasedOnTypeof\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _flow.createTypeAnnotationBasedOnTypeof;\n\t  }\n\t});\n\n\tvar _toFastProperties = __webpack_require__(624);\n\n\tvar _toFastProperties2 = _interopRequireDefault(_toFastProperties);\n\n\tvar _clone = __webpack_require__(109);\n\n\tvar _clone2 = _interopRequireDefault(_clone);\n\n\tvar _uniq = __webpack_require__(600);\n\n\tvar _uniq2 = _interopRequireDefault(_uniq);\n\n\t__webpack_require__(390);\n\n\tvar _definitions = __webpack_require__(26);\n\n\tvar _react2 = __webpack_require__(394);\n\n\tvar _react = _interopRequireWildcard(_react2);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar t = exports;\n\n\tfunction registerType(type) {\n\t  var is = t[\"is\" + type];\n\t  if (!is) {\n\t    is = t[\"is\" + type] = function (node, opts) {\n\t      return t.is(type, node, opts);\n\t    };\n\t  }\n\n\t  t[\"assert\" + type] = function (node, opts) {\n\t    opts = opts || {};\n\t    if (!is(node, opts)) {\n\t      throw new Error(\"Expected type \" + (0, _stringify2.default)(type) + \" with option \" + (0, _stringify2.default)(opts));\n\t    }\n\t  };\n\t}\n\n\texports.VISITOR_KEYS = _definitions.VISITOR_KEYS;\n\texports.ALIAS_KEYS = _definitions.ALIAS_KEYS;\n\texports.NODE_FIELDS = _definitions.NODE_FIELDS;\n\texports.BUILDER_KEYS = _definitions.BUILDER_KEYS;\n\texports.DEPRECATED_KEYS = _definitions.DEPRECATED_KEYS;\n\texports.react = _react;\n\n\tfor (var type in t.VISITOR_KEYS) {\n\t  registerType(type);\n\t}\n\n\tt.FLIPPED_ALIAS_KEYS = {};\n\n\t(0, _keys2.default)(t.ALIAS_KEYS).forEach(function (type) {\n\t  t.ALIAS_KEYS[type].forEach(function (alias) {\n\t    var types = t.FLIPPED_ALIAS_KEYS[alias] = t.FLIPPED_ALIAS_KEYS[alias] || [];\n\t    types.push(type);\n\t  });\n\t});\n\n\t(0, _keys2.default)(t.FLIPPED_ALIAS_KEYS).forEach(function (type) {\n\t  t[type.toUpperCase() + \"_TYPES\"] = t.FLIPPED_ALIAS_KEYS[type];\n\t  registerType(type);\n\t});\n\n\tvar TYPES = exports.TYPES = (0, _keys2.default)(t.VISITOR_KEYS).concat((0, _keys2.default)(t.FLIPPED_ALIAS_KEYS)).concat((0, _keys2.default)(t.DEPRECATED_KEYS));\n\n\tfunction is(type, node, opts) {\n\t  if (!node) return false;\n\n\t  var matches = isType(node.type, type);\n\t  if (!matches) return false;\n\n\t  if (typeof opts === \"undefined\") {\n\t    return true;\n\t  } else {\n\t    return t.shallowEqual(node, opts);\n\t  }\n\t}\n\n\tfunction isType(nodeType, targetType) {\n\t  if (nodeType === targetType) return true;\n\n\t  if (t.ALIAS_KEYS[targetType]) return false;\n\n\t  var aliases = t.FLIPPED_ALIAS_KEYS[targetType];\n\t  if (aliases) {\n\t    if (aliases[0] === nodeType) return true;\n\n\t    for (var _iterator = aliases, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var alias = _ref;\n\n\t      if (nodeType === alias) return true;\n\t    }\n\t  }\n\n\t  return false;\n\t}\n\n\t(0, _keys2.default)(t.BUILDER_KEYS).forEach(function (type) {\n\t  var keys = t.BUILDER_KEYS[type];\n\n\t  function builder() {\n\t    if (arguments.length > keys.length) {\n\t      throw new Error(\"t.\" + type + \": Too many arguments passed. Received \" + arguments.length + \" but can receive \" + (\"no more than \" + keys.length));\n\t    }\n\n\t    var node = {};\n\t    node.type = type;\n\n\t    var i = 0;\n\n\t    for (var _iterator2 = keys, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var _key = _ref2;\n\n\t      var field = t.NODE_FIELDS[type][_key];\n\n\t      var arg = arguments[i++];\n\t      if (arg === undefined) arg = (0, _clone2.default)(field.default);\n\n\t      node[_key] = arg;\n\t    }\n\n\t    for (var key in node) {\n\t      validate(node, key, node[key]);\n\t    }\n\n\t    return node;\n\t  }\n\n\t  t[type] = builder;\n\t  t[type[0].toLowerCase() + type.slice(1)] = builder;\n\t});\n\n\tvar _loop = function _loop(_type) {\n\t  var newType = t.DEPRECATED_KEYS[_type];\n\n\t  function proxy(fn) {\n\t    return function () {\n\t      console.trace(\"The node type \" + _type + \" has been renamed to \" + newType);\n\t      return fn.apply(this, arguments);\n\t    };\n\t  }\n\n\t  t[_type] = t[_type[0].toLowerCase() + _type.slice(1)] = proxy(t[newType]);\n\t  t[\"is\" + _type] = proxy(t[\"is\" + newType]);\n\t  t[\"assert\" + _type] = proxy(t[\"assert\" + newType]);\n\t};\n\n\tfor (var _type in t.DEPRECATED_KEYS) {\n\t  _loop(_type);\n\t}\n\n\tfunction validate(node, key, val) {\n\t  if (!node) return;\n\n\t  var fields = t.NODE_FIELDS[node.type];\n\t  if (!fields) return;\n\n\t  var field = fields[key];\n\t  if (!field || !field.validate) return;\n\t  if (field.optional && val == null) return;\n\n\t  field.validate(node, key, val);\n\t}\n\n\tfunction shallowEqual(actual, expected) {\n\t  var keys = (0, _keys2.default)(expected);\n\n\t  for (var _iterator3 = keys, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t    var _ref3;\n\n\t    if (_isArray3) {\n\t      if (_i3 >= _iterator3.length) break;\n\t      _ref3 = _iterator3[_i3++];\n\t    } else {\n\t      _i3 = _iterator3.next();\n\t      if (_i3.done) break;\n\t      _ref3 = _i3.value;\n\t    }\n\n\t    var key = _ref3;\n\n\t    if (actual[key] !== expected[key]) {\n\t      return false;\n\t    }\n\t  }\n\n\t  return true;\n\t}\n\n\tfunction appendToMemberExpression(member, append, computed) {\n\t  member.object = t.memberExpression(member.object, member.property, member.computed);\n\t  member.property = append;\n\t  member.computed = !!computed;\n\t  return member;\n\t}\n\n\tfunction prependToMemberExpression(member, prepend) {\n\t  member.object = t.memberExpression(prepend, member.object);\n\t  return member;\n\t}\n\n\tfunction ensureBlock(node) {\n\t  var key = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : \"body\";\n\n\t  return node[key] = t.toBlock(node[key], node);\n\t}\n\n\tfunction clone(node) {\n\t  if (!node) return node;\n\t  var newNode = {};\n\t  for (var key in node) {\n\t    if (key[0] === \"_\") continue;\n\t    newNode[key] = node[key];\n\t  }\n\t  return newNode;\n\t}\n\n\tfunction cloneWithoutLoc(node) {\n\t  var newNode = clone(node);\n\t  delete newNode.loc;\n\t  return newNode;\n\t}\n\n\tfunction cloneDeep(node) {\n\t  if (!node) return node;\n\t  var newNode = {};\n\n\t  for (var key in node) {\n\t    if (key[0] === \"_\") continue;\n\n\t    var val = node[key];\n\n\t    if (val) {\n\t      if (val.type) {\n\t        val = t.cloneDeep(val);\n\t      } else if (Array.isArray(val)) {\n\t        val = val.map(t.cloneDeep);\n\t      }\n\t    }\n\n\t    newNode[key] = val;\n\t  }\n\n\t  return newNode;\n\t}\n\n\tfunction buildMatchMemberExpression(match, allowPartial) {\n\t  var parts = match.split(\".\");\n\n\t  return function (member) {\n\t    if (!t.isMemberExpression(member)) return false;\n\n\t    var search = [member];\n\t    var i = 0;\n\n\t    while (search.length) {\n\t      var node = search.shift();\n\n\t      if (allowPartial && i === parts.length) {\n\t        return true;\n\t      }\n\n\t      if (t.isIdentifier(node)) {\n\t        if (parts[i] !== node.name) return false;\n\t      } else if (t.isStringLiteral(node)) {\n\t        if (parts[i] !== node.value) return false;\n\t      } else if (t.isMemberExpression(node)) {\n\t        if (node.computed && !t.isStringLiteral(node.property)) {\n\t          return false;\n\t        } else {\n\t          search.push(node.object);\n\t          search.push(node.property);\n\t          continue;\n\t        }\n\t      } else {\n\t        return false;\n\t      }\n\n\t      if (++i > parts.length) {\n\t        return false;\n\t      }\n\t    }\n\n\t    return true;\n\t  };\n\t}\n\n\tfunction removeComments(node) {\n\t  for (var _iterator4 = t.COMMENT_KEYS, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t    var _ref4;\n\n\t    if (_isArray4) {\n\t      if (_i4 >= _iterator4.length) break;\n\t      _ref4 = _iterator4[_i4++];\n\t    } else {\n\t      _i4 = _iterator4.next();\n\t      if (_i4.done) break;\n\t      _ref4 = _i4.value;\n\t    }\n\n\t    var key = _ref4;\n\n\t    delete node[key];\n\t  }\n\t  return node;\n\t}\n\n\tfunction inheritsComments(child, parent) {\n\t  inheritTrailingComments(child, parent);\n\t  inheritLeadingComments(child, parent);\n\t  inheritInnerComments(child, parent);\n\t  return child;\n\t}\n\n\tfunction inheritTrailingComments(child, parent) {\n\t  _inheritComments(\"trailingComments\", child, parent);\n\t}\n\n\tfunction inheritLeadingComments(child, parent) {\n\t  _inheritComments(\"leadingComments\", child, parent);\n\t}\n\n\tfunction inheritInnerComments(child, parent) {\n\t  _inheritComments(\"innerComments\", child, parent);\n\t}\n\n\tfunction _inheritComments(key, child, parent) {\n\t  if (child && parent) {\n\t    child[key] = (0, _uniq2.default)([].concat(child[key], parent[key]).filter(Boolean));\n\t  }\n\t}\n\n\tfunction inherits(child, parent) {\n\t  if (!child || !parent) return child;\n\n\t  for (var _iterator5 = t.INHERIT_KEYS.optional, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t    var _ref5;\n\n\t    if (_isArray5) {\n\t      if (_i5 >= _iterator5.length) break;\n\t      _ref5 = _iterator5[_i5++];\n\t    } else {\n\t      _i5 = _iterator5.next();\n\t      if (_i5.done) break;\n\t      _ref5 = _i5.value;\n\t    }\n\n\t    var _key2 = _ref5;\n\n\t    if (child[_key2] == null) {\n\t      child[_key2] = parent[_key2];\n\t    }\n\t  }\n\n\t  for (var key in parent) {\n\t    if (key[0] === \"_\") child[key] = parent[key];\n\t  }\n\n\t  for (var _iterator6 = t.INHERIT_KEYS.force, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : (0, _getIterator3.default)(_iterator6);;) {\n\t    var _ref6;\n\n\t    if (_isArray6) {\n\t      if (_i6 >= _iterator6.length) break;\n\t      _ref6 = _iterator6[_i6++];\n\t    } else {\n\t      _i6 = _iterator6.next();\n\t      if (_i6.done) break;\n\t      _ref6 = _i6.value;\n\t    }\n\n\t    var _key3 = _ref6;\n\n\t    child[_key3] = parent[_key3];\n\t  }\n\n\t  t.inheritsComments(child, parent);\n\n\t  return child;\n\t}\n\n\tfunction assertNode(node) {\n\t  if (!isNode(node)) {\n\t    throw new TypeError(\"Not a valid node \" + (node && node.type));\n\t  }\n\t}\n\n\tfunction isNode(node) {\n\t  return !!(node && _definitions.VISITOR_KEYS[node.type]);\n\t}\n\n\t(0, _toFastProperties2.default)(t);\n\t(0, _toFastProperties2.default)(t.VISITOR_KEYS);\n\n\tfunction traverseFast(node, enter, opts) {\n\t  if (!node) return;\n\n\t  var keys = t.VISITOR_KEYS[node.type];\n\t  if (!keys) return;\n\n\t  opts = opts || {};\n\t  enter(node, opts);\n\n\t  for (var _iterator7 = keys, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : (0, _getIterator3.default)(_iterator7);;) {\n\t    var _ref7;\n\n\t    if (_isArray7) {\n\t      if (_i7 >= _iterator7.length) break;\n\t      _ref7 = _iterator7[_i7++];\n\t    } else {\n\t      _i7 = _iterator7.next();\n\t      if (_i7.done) break;\n\t      _ref7 = _i7.value;\n\t    }\n\n\t    var key = _ref7;\n\n\t    var subNode = node[key];\n\n\t    if (Array.isArray(subNode)) {\n\t      for (var _iterator8 = subNode, _isArray8 = Array.isArray(_iterator8), _i8 = 0, _iterator8 = _isArray8 ? _iterator8 : (0, _getIterator3.default)(_iterator8);;) {\n\t        var _ref8;\n\n\t        if (_isArray8) {\n\t          if (_i8 >= _iterator8.length) break;\n\t          _ref8 = _iterator8[_i8++];\n\t        } else {\n\t          _i8 = _iterator8.next();\n\t          if (_i8.done) break;\n\t          _ref8 = _i8.value;\n\t        }\n\n\t        var _node = _ref8;\n\n\t        traverseFast(_node, enter, opts);\n\t      }\n\t    } else {\n\t      traverseFast(subNode, enter, opts);\n\t    }\n\t  }\n\t}\n\n\tvar CLEAR_KEYS = [\"tokens\", \"start\", \"end\", \"loc\", \"raw\", \"rawValue\"];\n\n\tvar CLEAR_KEYS_PLUS_COMMENTS = t.COMMENT_KEYS.concat([\"comments\"]).concat(CLEAR_KEYS);\n\n\tfunction removeProperties(node, opts) {\n\t  opts = opts || {};\n\t  var map = opts.preserveComments ? CLEAR_KEYS : CLEAR_KEYS_PLUS_COMMENTS;\n\t  for (var _iterator9 = map, _isArray9 = Array.isArray(_iterator9), _i9 = 0, _iterator9 = _isArray9 ? _iterator9 : (0, _getIterator3.default)(_iterator9);;) {\n\t    var _ref9;\n\n\t    if (_isArray9) {\n\t      if (_i9 >= _iterator9.length) break;\n\t      _ref9 = _iterator9[_i9++];\n\t    } else {\n\t      _i9 = _iterator9.next();\n\t      if (_i9.done) break;\n\t      _ref9 = _i9.value;\n\t    }\n\n\t    var _key4 = _ref9;\n\n\t    if (node[_key4] != null) node[_key4] = undefined;\n\t  }\n\n\t  for (var key in node) {\n\t    if (key[0] === \"_\" && node[key] != null) node[key] = undefined;\n\t  }\n\n\t  var syms = (0, _getOwnPropertySymbols2.default)(node);\n\t  for (var _iterator10 = syms, _isArray10 = Array.isArray(_iterator10), _i10 = 0, _iterator10 = _isArray10 ? _iterator10 : (0, _getIterator3.default)(_iterator10);;) {\n\t    var _ref10;\n\n\t    if (_isArray10) {\n\t      if (_i10 >= _iterator10.length) break;\n\t      _ref10 = _iterator10[_i10++];\n\t    } else {\n\t      _i10 = _iterator10.next();\n\t      if (_i10.done) break;\n\t      _ref10 = _i10.value;\n\t    }\n\n\t    var sym = _ref10;\n\n\t    node[sym] = null;\n\t  }\n\t}\n\n\tfunction removePropertiesDeep(tree, opts) {\n\t  traverseFast(tree, removeProperties, opts);\n\t  return tree;\n\t}\n\n/***/ }),\n/* 2 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(404), __esModule: true };\n\n/***/ }),\n/* 3 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (instance, Constructor) {\n\t  if (!(instance instanceof Constructor)) {\n\t    throw new TypeError(\"Cannot call a class as a function\");\n\t  }\n\t};\n\n/***/ }),\n/* 4 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function (code, opts) {\n\t  var stack = void 0;\n\t  try {\n\t    throw new Error();\n\t  } catch (error) {\n\t    if (error.stack) {\n\t      stack = error.stack.split(\"\\n\").slice(1).join(\"\\n\");\n\t    }\n\t  }\n\n\t  opts = (0, _assign2.default)({\n\t    allowReturnOutsideFunction: true,\n\t    allowSuperOutsideMethod: true,\n\t    preserveComments: false\n\t  }, opts);\n\n\t  var _getAst = function getAst() {\n\t    var ast = void 0;\n\n\t    try {\n\t      ast = babylon.parse(code, opts);\n\n\t      ast = _babelTraverse2.default.removeProperties(ast, { preserveComments: opts.preserveComments });\n\n\t      _babelTraverse2.default.cheap(ast, function (node) {\n\t        node[FROM_TEMPLATE] = true;\n\t      });\n\t    } catch (err) {\n\t      err.stack = err.stack + \"from\\n\" + stack;\n\t      throw err;\n\t    }\n\n\t    _getAst = function getAst() {\n\t      return ast;\n\t    };\n\n\t    return ast;\n\t  };\n\n\t  return function () {\n\t    for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t      args[_key] = arguments[_key];\n\t    }\n\n\t    return useTemplate(_getAst(), args);\n\t  };\n\t};\n\n\tvar _cloneDeep = __webpack_require__(574);\n\n\tvar _cloneDeep2 = _interopRequireDefault(_cloneDeep);\n\n\tvar _assign = __webpack_require__(174);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _has = __webpack_require__(274);\n\n\tvar _has2 = _interopRequireDefault(_has);\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelTraverse2 = _interopRequireDefault(_babelTraverse);\n\n\tvar _babylon = __webpack_require__(89);\n\n\tvar babylon = _interopRequireWildcard(_babylon);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar FROM_TEMPLATE = \"_fromTemplate\";\n\tvar TEMPLATE_SKIP = (0, _symbol2.default)();\n\n\tfunction useTemplate(ast, nodes) {\n\t  ast = (0, _cloneDeep2.default)(ast);\n\t  var _ast = ast,\n\t      program = _ast.program;\n\n\t  if (nodes.length) {\n\t    (0, _babelTraverse2.default)(ast, templateVisitor, null, nodes);\n\t  }\n\n\t  if (program.body.length > 1) {\n\t    return program.body;\n\t  } else {\n\t    return program.body[0];\n\t  }\n\t}\n\n\tvar templateVisitor = {\n\t  noScope: true,\n\n\t  enter: function enter(path, args) {\n\t    var node = path.node;\n\n\t    if (node[TEMPLATE_SKIP]) return path.skip();\n\n\t    if (t.isExpressionStatement(node)) {\n\t      node = node.expression;\n\t    }\n\n\t    var replacement = void 0;\n\n\t    if (t.isIdentifier(node) && node[FROM_TEMPLATE]) {\n\t      if ((0, _has2.default)(args[0], node.name)) {\n\t        replacement = args[0][node.name];\n\t      } else if (node.name[0] === \"$\") {\n\t        var i = +node.name.slice(1);\n\t        if (args[i]) replacement = args[i];\n\t      }\n\t    }\n\n\t    if (replacement === null) {\n\t      path.remove();\n\t    }\n\n\t    if (replacement) {\n\t      replacement[TEMPLATE_SKIP] = true;\n\t      path.replaceInline(replacement);\n\t    }\n\t  },\n\t  exit: function exit(_ref) {\n\t    var node = _ref.node;\n\n\t    if (!node.loc) _babelTraverse2.default.clearNode(node);\n\t  }\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 5 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar core = module.exports = { version: '2.5.0' };\n\tif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n\n/***/ }),\n/* 6 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Checks if `value` is classified as an `Array` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an array, else `false`.\n\t * @example\n\t *\n\t * _.isArray([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isArray(document.body.children);\n\t * // => false\n\t *\n\t * _.isArray('abc');\n\t * // => false\n\t *\n\t * _.isArray(_.noop);\n\t * // => false\n\t */\n\tvar isArray = Array.isArray;\n\n\tmodule.exports = isArray;\n\n/***/ }),\n/* 7 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.visitors = exports.Hub = exports.Scope = exports.NodePath = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _path = __webpack_require__(36);\n\n\tObject.defineProperty(exports, \"NodePath\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_path).default;\n\t  }\n\t});\n\n\tvar _scope = __webpack_require__(134);\n\n\tObject.defineProperty(exports, \"Scope\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_scope).default;\n\t  }\n\t});\n\n\tvar _hub = __webpack_require__(223);\n\n\tObject.defineProperty(exports, \"Hub\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_hub).default;\n\t  }\n\t});\n\texports.default = traverse;\n\n\tvar _context = __webpack_require__(367);\n\n\tvar _context2 = _interopRequireDefault(_context);\n\n\tvar _visitors = __webpack_require__(384);\n\n\tvar visitors = _interopRequireWildcard(_visitors);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _includes = __webpack_require__(111);\n\n\tvar _includes2 = _interopRequireDefault(_includes);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _cache = __webpack_require__(88);\n\n\tvar cache = _interopRequireWildcard(_cache);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.visitors = visitors;\n\tfunction traverse(parent, opts, scope, state, parentPath) {\n\t  if (!parent) return;\n\t  if (!opts) opts = {};\n\n\t  if (!opts.noScope && !scope) {\n\t    if (parent.type !== \"Program\" && parent.type !== \"File\") {\n\t      throw new Error(messages.get(\"traverseNeedsParent\", parent.type));\n\t    }\n\t  }\n\n\t  visitors.explode(opts);\n\n\t  traverse.node(parent, opts, scope, state, parentPath);\n\t}\n\n\ttraverse.visitors = visitors;\n\ttraverse.verify = visitors.verify;\n\ttraverse.explode = visitors.explode;\n\n\ttraverse.NodePath = __webpack_require__(36);\n\ttraverse.Scope = __webpack_require__(134);\n\ttraverse.Hub = __webpack_require__(223);\n\n\ttraverse.cheap = function (node, enter) {\n\t  return t.traverseFast(node, enter);\n\t};\n\n\ttraverse.node = function (node, opts, scope, state, parentPath, skipKeys) {\n\t  var keys = t.VISITOR_KEYS[node.type];\n\t  if (!keys) return;\n\n\t  var context = new _context2.default(scope, opts, state, parentPath);\n\t  for (var _iterator = keys, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var key = _ref;\n\n\t    if (skipKeys && skipKeys[key]) continue;\n\t    if (context.visit(node, key)) return;\n\t  }\n\t};\n\n\ttraverse.clearNode = function (node, opts) {\n\t  t.removeProperties(node, opts);\n\n\t  cache.path.delete(node);\n\t};\n\n\ttraverse.removeProperties = function (tree, opts) {\n\t  t.traverseFast(tree, traverse.clearNode, opts);\n\t  return tree;\n\t};\n\n\tfunction hasBlacklistedType(path, state) {\n\t  if (path.node.type === state.type) {\n\t    state.has = true;\n\t    path.stop();\n\t  }\n\t}\n\n\ttraverse.hasType = function (tree, scope, type, blacklistTypes) {\n\t  if ((0, _includes2.default)(blacklistTypes, tree.type)) return false;\n\n\t  if (tree.type === type) return true;\n\n\t  var state = {\n\t    has: false,\n\t    type: type\n\t  };\n\n\t  traverse(tree, {\n\t    blacklist: blacklistTypes,\n\t    enter: hasBlacklistedType\n\t  }, scope, state);\n\n\t  return state.has;\n\t};\n\n\ttraverse.clearCache = function () {\n\t  cache.clear();\n\t};\n\n\ttraverse.clearCache.clearPath = cache.clearPath;\n\ttraverse.clearCache.clearScope = cache.clearScope;\n\n\ttraverse.copyCache = function (source, destination) {\n\t  if (cache.path.has(source)) {\n\t    cache.path.set(destination, cache.path.get(source));\n\t  }\n\t};\n\n/***/ }),\n/* 8 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t// shim for using process in browser\n\tvar process = module.exports = {};\n\n\t// cached from whatever global is present so that test runners that stub it\n\t// don't break things.  But we need to wrap it in a try catch in case it is\n\t// wrapped in strict mode code which doesn't define any globals.  It's inside a\n\t// function because try/catches deoptimize in certain engines.\n\n\tvar cachedSetTimeout;\n\tvar cachedClearTimeout;\n\n\tfunction defaultSetTimout() {\n\t    throw new Error('setTimeout has not been defined');\n\t}\n\tfunction defaultClearTimeout() {\n\t    throw new Error('clearTimeout has not been defined');\n\t}\n\t(function () {\n\t    try {\n\t        if (typeof setTimeout === 'function') {\n\t            cachedSetTimeout = setTimeout;\n\t        } else {\n\t            cachedSetTimeout = defaultSetTimout;\n\t        }\n\t    } catch (e) {\n\t        cachedSetTimeout = defaultSetTimout;\n\t    }\n\t    try {\n\t        if (typeof clearTimeout === 'function') {\n\t            cachedClearTimeout = clearTimeout;\n\t        } else {\n\t            cachedClearTimeout = defaultClearTimeout;\n\t        }\n\t    } catch (e) {\n\t        cachedClearTimeout = defaultClearTimeout;\n\t    }\n\t})();\n\tfunction runTimeout(fun) {\n\t    if (cachedSetTimeout === setTimeout) {\n\t        //normal enviroments in sane situations\n\t        return setTimeout(fun, 0);\n\t    }\n\t    // if setTimeout wasn't available but was latter defined\n\t    if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n\t        cachedSetTimeout = setTimeout;\n\t        return setTimeout(fun, 0);\n\t    }\n\t    try {\n\t        // when when somebody has screwed with setTimeout but no I.E. maddness\n\t        return cachedSetTimeout(fun, 0);\n\t    } catch (e) {\n\t        try {\n\t            // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n\t            return cachedSetTimeout.call(null, fun, 0);\n\t        } catch (e) {\n\t            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n\t            return cachedSetTimeout.call(this, fun, 0);\n\t        }\n\t    }\n\t}\n\tfunction runClearTimeout(marker) {\n\t    if (cachedClearTimeout === clearTimeout) {\n\t        //normal enviroments in sane situations\n\t        return clearTimeout(marker);\n\t    }\n\t    // if clearTimeout wasn't available but was latter defined\n\t    if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n\t        cachedClearTimeout = clearTimeout;\n\t        return clearTimeout(marker);\n\t    }\n\t    try {\n\t        // when when somebody has screwed with setTimeout but no I.E. maddness\n\t        return cachedClearTimeout(marker);\n\t    } catch (e) {\n\t        try {\n\t            // When we are in I.E. but the script has been evaled so I.E. doesn't  trust the global object when called normally\n\t            return cachedClearTimeout.call(null, marker);\n\t        } catch (e) {\n\t            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n\t            // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n\t            return cachedClearTimeout.call(this, marker);\n\t        }\n\t    }\n\t}\n\tvar queue = [];\n\tvar draining = false;\n\tvar currentQueue;\n\tvar queueIndex = -1;\n\n\tfunction cleanUpNextTick() {\n\t    if (!draining || !currentQueue) {\n\t        return;\n\t    }\n\t    draining = false;\n\t    if (currentQueue.length) {\n\t        queue = currentQueue.concat(queue);\n\t    } else {\n\t        queueIndex = -1;\n\t    }\n\t    if (queue.length) {\n\t        drainQueue();\n\t    }\n\t}\n\n\tfunction drainQueue() {\n\t    if (draining) {\n\t        return;\n\t    }\n\t    var timeout = runTimeout(cleanUpNextTick);\n\t    draining = true;\n\n\t    var len = queue.length;\n\t    while (len) {\n\t        currentQueue = queue;\n\t        queue = [];\n\t        while (++queueIndex < len) {\n\t            if (currentQueue) {\n\t                currentQueue[queueIndex].run();\n\t            }\n\t        }\n\t        queueIndex = -1;\n\t        len = queue.length;\n\t    }\n\t    currentQueue = null;\n\t    draining = false;\n\t    runClearTimeout(timeout);\n\t}\n\n\tprocess.nextTick = function (fun) {\n\t    var args = new Array(arguments.length - 1);\n\t    if (arguments.length > 1) {\n\t        for (var i = 1; i < arguments.length; i++) {\n\t            args[i - 1] = arguments[i];\n\t        }\n\t    }\n\t    queue.push(new Item(fun, args));\n\t    if (queue.length === 1 && !draining) {\n\t        runTimeout(drainQueue);\n\t    }\n\t};\n\n\t// v8 likes predictible objects\n\tfunction Item(fun, array) {\n\t    this.fun = fun;\n\t    this.array = array;\n\t}\n\tItem.prototype.run = function () {\n\t    this.fun.apply(null, this.array);\n\t};\n\tprocess.title = 'browser';\n\tprocess.browser = true;\n\tprocess.env = {};\n\tprocess.argv = [];\n\tprocess.version = ''; // empty string to avoid regexp issues\n\tprocess.versions = {};\n\n\tfunction noop() {}\n\n\tprocess.on = noop;\n\tprocess.addListener = noop;\n\tprocess.once = noop;\n\tprocess.off = noop;\n\tprocess.removeListener = noop;\n\tprocess.removeAllListeners = noop;\n\tprocess.emit = noop;\n\tprocess.prependListener = noop;\n\tprocess.prependOnceListener = noop;\n\n\tprocess.listeners = function (name) {\n\t    return [];\n\t};\n\n\tprocess.binding = function (name) {\n\t    throw new Error('process.binding is not supported');\n\t};\n\n\tprocess.cwd = function () {\n\t    return '/';\n\t};\n\tprocess.chdir = function (dir) {\n\t    throw new Error('process.chdir is not supported');\n\t};\n\tprocess.umask = function () {\n\t    return 0;\n\t};\n\n/***/ }),\n/* 9 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(409), __esModule: true };\n\n/***/ }),\n/* 10 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(414), __esModule: true };\n\n/***/ }),\n/* 11 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _typeof2 = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\texports.__esModule = true;\n\n\tvar _iterator = __webpack_require__(363);\n\n\tvar _iterator2 = _interopRequireDefault(_iterator);\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\tvar _typeof = typeof _symbol2.default === \"function\" && _typeof2(_iterator2.default) === \"symbol\" ? function (obj) {\n\t  return typeof obj === \"undefined\" ? \"undefined\" : _typeof2(obj);\n\t} : function (obj) {\n\t  return obj && typeof _symbol2.default === \"function\" && obj.constructor === _symbol2.default && obj !== _symbol2.default.prototype ? \"symbol\" : typeof obj === \"undefined\" ? \"undefined\" : _typeof2(obj);\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = typeof _symbol2.default === \"function\" && _typeof(_iterator2.default) === \"symbol\" ? function (obj) {\n\t  return typeof obj === \"undefined\" ? \"undefined\" : _typeof(obj);\n\t} : function (obj) {\n\t  return obj && typeof _symbol2.default === \"function\" && obj.constructor === _symbol2.default && obj !== _symbol2.default.prototype ? \"symbol\" : typeof obj === \"undefined\" ? \"undefined\" : _typeof(obj);\n\t};\n\n/***/ }),\n/* 12 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar global = __webpack_require__(15);\n\tvar core = __webpack_require__(5);\n\tvar ctx = __webpack_require__(43);\n\tvar hide = __webpack_require__(29);\n\tvar PROTOTYPE = 'prototype';\n\n\tvar $export = function $export(type, name, source) {\n\t  var IS_FORCED = type & $export.F;\n\t  var IS_GLOBAL = type & $export.G;\n\t  var IS_STATIC = type & $export.S;\n\t  var IS_PROTO = type & $export.P;\n\t  var IS_BIND = type & $export.B;\n\t  var IS_WRAP = type & $export.W;\n\t  var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n\t  var expProto = exports[PROTOTYPE];\n\t  var target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE];\n\t  var key, own, out;\n\t  if (IS_GLOBAL) source = name;\n\t  for (key in source) {\n\t    // contains in native\n\t    own = !IS_FORCED && target && target[key] !== undefined;\n\t    if (own && key in exports) continue;\n\t    // export native or passed\n\t    out = own ? target[key] : source[key];\n\t    // prevent global pollution for namespaces\n\t    exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key]\n\t    // bind timers to global for call from export context\n\t    : IS_BIND && own ? ctx(out, global)\n\t    // wrap global constructors for prevent change them in library\n\t    : IS_WRAP && target[key] == out ? function (C) {\n\t      var F = function F(a, b, c) {\n\t        if (this instanceof C) {\n\t          switch (arguments.length) {\n\t            case 0:\n\t              return new C();\n\t            case 1:\n\t              return new C(a);\n\t            case 2:\n\t              return new C(a, b);\n\t          }return new C(a, b, c);\n\t        }return C.apply(this, arguments);\n\t      };\n\t      F[PROTOTYPE] = C[PROTOTYPE];\n\t      return F;\n\t      // make static versions for prototype methods\n\t    }(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n\t    // export proto methods to core.%CONSTRUCTOR%.methods.%NAME%\n\t    if (IS_PROTO) {\n\t      (exports.virtual || (exports.virtual = {}))[key] = out;\n\t      // export proto methods to core.%CONSTRUCTOR%.prototype.%NAME%\n\t      if (type & $export.R && expProto && !expProto[key]) hide(expProto, key, out);\n\t    }\n\t  }\n\t};\n\t// type bitmap\n\t$export.F = 1; // forced\n\t$export.G = 2; // global\n\t$export.S = 4; // static\n\t$export.P = 8; // proto\n\t$export.B = 16; // bind\n\t$export.W = 32; // wrap\n\t$export.U = 64; // safe\n\t$export.R = 128; // real proto method for `library`\n\tmodule.exports = $export;\n\n/***/ }),\n/* 13 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar store = __webpack_require__(151)('wks');\n\tvar uid = __webpack_require__(95);\n\tvar _Symbol = __webpack_require__(15).Symbol;\n\tvar USE_SYMBOL = typeof _Symbol == 'function';\n\n\tvar $exports = module.exports = function (name) {\n\t  return store[name] || (store[name] = USE_SYMBOL && _Symbol[name] || (USE_SYMBOL ? _Symbol : uid)('Symbol.' + name));\n\t};\n\n\t$exports.store = store;\n\n/***/ }),\n/* 14 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(411), __esModule: true };\n\n/***/ }),\n/* 15 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\n\tvar global = module.exports = typeof window != 'undefined' && window.Math == Math ? window : typeof self != 'undefined' && self.Math == Math ? self\n\t// eslint-disable-next-line no-new-func\n\t: Function('return this')();\n\tif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n\n/***/ }),\n/* 16 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tmodule.exports = function (it) {\n\t  return (typeof it === 'undefined' ? 'undefined' : _typeof(it)) === 'object' ? it !== null : typeof it === 'function';\n\t};\n\n/***/ }),\n/* 17 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar freeGlobal = __webpack_require__(261);\n\n\t/** Detect free variable `self`. */\n\tvar freeSelf = (typeof self === 'undefined' ? 'undefined' : _typeof(self)) == 'object' && self && self.Object === Object && self;\n\n\t/** Used as a reference to the global object. */\n\tvar root = freeGlobal || freeSelf || Function('return this')();\n\n\tmodule.exports = root;\n\n/***/ }),\n/* 18 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/**\n\t * Checks if `value` is the\n\t * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n\t * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n\t * @example\n\t *\n\t * _.isObject({});\n\t * // => true\n\t *\n\t * _.isObject([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isObject(_.noop);\n\t * // => true\n\t *\n\t * _.isObject(null);\n\t * // => false\n\t */\n\tfunction isObject(value) {\n\t  var type = typeof value === 'undefined' ? 'undefined' : _typeof(value);\n\t  return value != null && (type == 'object' || type == 'function');\n\t}\n\n\tmodule.exports = isObject;\n\n/***/ }),\n/* 19 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {'use strict';\n\n\t// Copyright Joyent, Inc. and other Node contributors.\n\t//\n\t// Permission is hereby granted, free of charge, to any person obtaining a\n\t// copy of this software and associated documentation files (the\n\t// \"Software\"), to deal in the Software without restriction, including\n\t// without limitation the rights to use, copy, modify, merge, publish,\n\t// distribute, sublicense, and/or sell copies of the Software, and to permit\n\t// persons to whom the Software is furnished to do so, subject to the\n\t// following conditions:\n\t//\n\t// The above copyright notice and this permission notice shall be included\n\t// in all copies or substantial portions of the Software.\n\t//\n\t// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n\t// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n\t// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n\t// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n\t// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n\t// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n\t// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\t// resolves . and .. elements in a path array with directory names there\n\t// must be no slashes, empty elements, or device names (c:\\) in the array\n\t// (so also no leading and trailing slashes - it does not distinguish\n\t// relative and absolute paths)\n\tfunction normalizeArray(parts, allowAboveRoot) {\n\t  // if the path tries to go above the root, `up` ends up > 0\n\t  var up = 0;\n\t  for (var i = parts.length - 1; i >= 0; i--) {\n\t    var last = parts[i];\n\t    if (last === '.') {\n\t      parts.splice(i, 1);\n\t    } else if (last === '..') {\n\t      parts.splice(i, 1);\n\t      up++;\n\t    } else if (up) {\n\t      parts.splice(i, 1);\n\t      up--;\n\t    }\n\t  }\n\n\t  // if the path is allowed to go above the root, restore leading ..s\n\t  if (allowAboveRoot) {\n\t    for (; up--; up) {\n\t      parts.unshift('..');\n\t    }\n\t  }\n\n\t  return parts;\n\t}\n\n\t// Split a filename into [root, dir, basename, ext], unix version\n\t// 'root' is just a slash, or nothing.\n\tvar splitPathRe = /^(\\/?|)([\\s\\S]*?)((?:\\.{1,2}|[^\\/]+?|)(\\.[^.\\/]*|))(?:[\\/]*)$/;\n\tvar splitPath = function splitPath(filename) {\n\t  return splitPathRe.exec(filename).slice(1);\n\t};\n\n\t// path.resolve([from ...], to)\n\t// posix version\n\texports.resolve = function () {\n\t  var resolvedPath = '',\n\t      resolvedAbsolute = false;\n\n\t  for (var i = arguments.length - 1; i >= -1 && !resolvedAbsolute; i--) {\n\t    var path = i >= 0 ? arguments[i] : process.cwd();\n\n\t    // Skip empty and invalid entries\n\t    if (typeof path !== 'string') {\n\t      throw new TypeError('Arguments to path.resolve must be strings');\n\t    } else if (!path) {\n\t      continue;\n\t    }\n\n\t    resolvedPath = path + '/' + resolvedPath;\n\t    resolvedAbsolute = path.charAt(0) === '/';\n\t  }\n\n\t  // At this point the path should be resolved to a full absolute path, but\n\t  // handle relative paths to be safe (might happen when process.cwd() fails)\n\n\t  // Normalize the path\n\t  resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function (p) {\n\t    return !!p;\n\t  }), !resolvedAbsolute).join('/');\n\n\t  return (resolvedAbsolute ? '/' : '') + resolvedPath || '.';\n\t};\n\n\t// path.normalize(path)\n\t// posix version\n\texports.normalize = function (path) {\n\t  var isAbsolute = exports.isAbsolute(path),\n\t      trailingSlash = substr(path, -1) === '/';\n\n\t  // Normalize the path\n\t  path = normalizeArray(filter(path.split('/'), function (p) {\n\t    return !!p;\n\t  }), !isAbsolute).join('/');\n\n\t  if (!path && !isAbsolute) {\n\t    path = '.';\n\t  }\n\t  if (path && trailingSlash) {\n\t    path += '/';\n\t  }\n\n\t  return (isAbsolute ? '/' : '') + path;\n\t};\n\n\t// posix version\n\texports.isAbsolute = function (path) {\n\t  return path.charAt(0) === '/';\n\t};\n\n\t// posix version\n\texports.join = function () {\n\t  var paths = Array.prototype.slice.call(arguments, 0);\n\t  return exports.normalize(filter(paths, function (p, index) {\n\t    if (typeof p !== 'string') {\n\t      throw new TypeError('Arguments to path.join must be strings');\n\t    }\n\t    return p;\n\t  }).join('/'));\n\t};\n\n\t// path.relative(from, to)\n\t// posix version\n\texports.relative = function (from, to) {\n\t  from = exports.resolve(from).substr(1);\n\t  to = exports.resolve(to).substr(1);\n\n\t  function trim(arr) {\n\t    var start = 0;\n\t    for (; start < arr.length; start++) {\n\t      if (arr[start] !== '') break;\n\t    }\n\n\t    var end = arr.length - 1;\n\t    for (; end >= 0; end--) {\n\t      if (arr[end] !== '') break;\n\t    }\n\n\t    if (start > end) return [];\n\t    return arr.slice(start, end - start + 1);\n\t  }\n\n\t  var fromParts = trim(from.split('/'));\n\t  var toParts = trim(to.split('/'));\n\n\t  var length = Math.min(fromParts.length, toParts.length);\n\t  var samePartsLength = length;\n\t  for (var i = 0; i < length; i++) {\n\t    if (fromParts[i] !== toParts[i]) {\n\t      samePartsLength = i;\n\t      break;\n\t    }\n\t  }\n\n\t  var outputParts = [];\n\t  for (var i = samePartsLength; i < fromParts.length; i++) {\n\t    outputParts.push('..');\n\t  }\n\n\t  outputParts = outputParts.concat(toParts.slice(samePartsLength));\n\n\t  return outputParts.join('/');\n\t};\n\n\texports.sep = '/';\n\texports.delimiter = ':';\n\n\texports.dirname = function (path) {\n\t  var result = splitPath(path),\n\t      root = result[0],\n\t      dir = result[1];\n\n\t  if (!root && !dir) {\n\t    // No dirname whatsoever\n\t    return '.';\n\t  }\n\n\t  if (dir) {\n\t    // It has a dirname, strip trailing slash\n\t    dir = dir.substr(0, dir.length - 1);\n\t  }\n\n\t  return root + dir;\n\t};\n\n\texports.basename = function (path, ext) {\n\t  var f = splitPath(path)[2];\n\t  // TODO: make this comparison case-insensitive on windows?\n\t  if (ext && f.substr(-1 * ext.length) === ext) {\n\t    f = f.substr(0, f.length - ext.length);\n\t  }\n\t  return f;\n\t};\n\n\texports.extname = function (path) {\n\t  return splitPath(path)[3];\n\t};\n\n\tfunction filter(xs, f) {\n\t  if (xs.filter) return xs.filter(f);\n\t  var res = [];\n\t  for (var i = 0; i < xs.length; i++) {\n\t    if (f(xs[i], i, xs)) res.push(xs[i]);\n\t  }\n\t  return res;\n\t}\n\n\t// String.prototype.substr - negative index don't work in IE8\n\tvar substr = 'ab'.substr(-1) === 'b' ? function (str, start, len) {\n\t  return str.substr(start, len);\n\t} : function (str, start, len) {\n\t  if (start < 0) start = str.length + start;\n\t  return str.substr(start, len);\n\t};\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 20 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.MESSAGES = undefined;\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\texports.get = get;\n\texports.parseArgs = parseArgs;\n\n\tvar _util = __webpack_require__(117);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar MESSAGES = exports.MESSAGES = {\n\t  tailCallReassignmentDeopt: \"Function reference has been reassigned, so it will probably be dereferenced, therefore we can't optimise this with confidence\",\n\t  classesIllegalBareSuper: \"Illegal use of bare super\",\n\t  classesIllegalSuperCall: \"Direct super call is illegal in non-constructor, use super.$1() instead\",\n\t  scopeDuplicateDeclaration: \"Duplicate declaration $1\",\n\t  settersNoRest: \"Setters aren't allowed to have a rest\",\n\t  noAssignmentsInForHead: \"No assignments allowed in for-in/of head\",\n\t  expectedMemberExpressionOrIdentifier: \"Expected type MemberExpression or Identifier\",\n\t  invalidParentForThisNode: \"We don't know how to handle this node within the current parent - please open an issue\",\n\t  readOnly: \"$1 is read-only\",\n\t  unknownForHead: \"Unknown node type $1 in ForStatement\",\n\t  didYouMean: \"Did you mean $1?\",\n\t  codeGeneratorDeopt: \"Note: The code generator has deoptimised the styling of $1 as it exceeds the max of $2.\",\n\t  missingTemplatesDirectory: \"no templates directory - this is most likely the result of a broken `npm publish`. Please report to https://github.com/babel/babel/issues\",\n\t  unsupportedOutputType: \"Unsupported output type $1\",\n\t  illegalMethodName: \"Illegal method name $1\",\n\t  lostTrackNodePath: \"We lost track of this node's position, likely because the AST was directly manipulated\",\n\n\t  modulesIllegalExportName: \"Illegal export $1\",\n\t  modulesDuplicateDeclarations: \"Duplicate module declarations with the same source but in different scopes\",\n\n\t  undeclaredVariable: \"Reference to undeclared variable $1\",\n\t  undeclaredVariableType: \"Referencing a type alias outside of a type annotation\",\n\t  undeclaredVariableSuggestion: \"Reference to undeclared variable $1 - did you mean $2?\",\n\n\t  traverseNeedsParent: \"You must pass a scope and parentPath unless traversing a Program/File. Instead of that you tried to traverse a $1 node without passing scope and parentPath.\",\n\t  traverseVerifyRootFunction: \"You passed `traverse()` a function when it expected a visitor object, are you sure you didn't mean `{ enter: Function }`?\",\n\t  traverseVerifyVisitorProperty: \"You passed `traverse()` a visitor object with the property $1 that has the invalid property $2\",\n\t  traverseVerifyNodeType: \"You gave us a visitor for the node type $1 but it's not a valid type\",\n\n\t  pluginNotObject: \"Plugin $2 specified in $1 was expected to return an object when invoked but returned $3\",\n\t  pluginNotFunction: \"Plugin $2 specified in $1 was expected to return a function but returned $3\",\n\t  pluginUnknown: \"Unknown plugin $1 specified in $2 at $3, attempted to resolve relative to $4\",\n\t  pluginInvalidProperty: \"Plugin $2 specified in $1 provided an invalid property of $3\"\n\t};\n\n\tfunction get(key) {\n\t  for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n\t    args[_key - 1] = arguments[_key];\n\t  }\n\n\t  var msg = MESSAGES[key];\n\t  if (!msg) throw new ReferenceError(\"Unknown message \" + (0, _stringify2.default)(key));\n\n\t  args = parseArgs(args);\n\n\t  return msg.replace(/\\$(\\d+)/g, function (str, i) {\n\t    return args[i - 1];\n\t  });\n\t}\n\n\tfunction parseArgs(args) {\n\t  return args.map(function (val) {\n\t    if (val != null && val.inspect) {\n\t      return val.inspect();\n\t    } else {\n\t      try {\n\t        return (0, _stringify2.default)(val) || val + \"\";\n\t      } catch (e) {\n\t        return util.inspect(val);\n\t      }\n\t    }\n\t  });\n\t}\n\n/***/ }),\n/* 21 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(16);\n\tmodule.exports = function (it) {\n\t  if (!isObject(it)) throw TypeError(it + ' is not an object!');\n\t  return it;\n\t};\n\n/***/ }),\n/* 22 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// Thank's IE8 for his funny defineProperty\n\tmodule.exports = !__webpack_require__(27)(function () {\n\t  return Object.defineProperty({}, 'a', { get: function get() {\n\t      return 7;\n\t    } }).a != 7;\n\t});\n\n/***/ }),\n/* 23 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar anObject = __webpack_require__(21);\n\tvar IE8_DOM_DEFINE = __webpack_require__(231);\n\tvar toPrimitive = __webpack_require__(154);\n\tvar dP = Object.defineProperty;\n\n\texports.f = __webpack_require__(22) ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n\t  anObject(O);\n\t  P = toPrimitive(P, true);\n\t  anObject(Attributes);\n\t  if (IE8_DOM_DEFINE) try {\n\t    return dP(O, P, Attributes);\n\t  } catch (e) {/* empty */}\n\t  if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n\t  if ('value' in Attributes) O[P] = Attributes.value;\n\t  return O;\n\t};\n\n/***/ }),\n/* 24 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isFunction = __webpack_require__(175),\n\t    isLength = __webpack_require__(176);\n\n\t/**\n\t * Checks if `value` is array-like. A value is considered array-like if it's\n\t * not a function and has a `value.length` that's an integer greater than or\n\t * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\n\t * @example\n\t *\n\t * _.isArrayLike([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isArrayLike(document.body.children);\n\t * // => true\n\t *\n\t * _.isArrayLike('abc');\n\t * // => true\n\t *\n\t * _.isArrayLike(_.noop);\n\t * // => false\n\t */\n\tfunction isArrayLike(value) {\n\t  return value != null && isLength(value.length) && !isFunction(value);\n\t}\n\n\tmodule.exports = isArrayLike;\n\n/***/ }),\n/* 25 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/**\n\t * Checks if `value` is object-like. A value is object-like if it's not `null`\n\t * and has a `typeof` result of \"object\".\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n\t * @example\n\t *\n\t * _.isObjectLike({});\n\t * // => true\n\t *\n\t * _.isObjectLike([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isObjectLike(_.noop);\n\t * // => false\n\t *\n\t * _.isObjectLike(null);\n\t * // => false\n\t */\n\tfunction isObjectLike(value) {\n\t  return value != null && (typeof value === 'undefined' ? 'undefined' : _typeof(value)) == 'object';\n\t}\n\n\tmodule.exports = isObjectLike;\n\n/***/ }),\n/* 26 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.DEPRECATED_KEYS = exports.BUILDER_KEYS = exports.NODE_FIELDS = exports.ALIAS_KEYS = exports.VISITOR_KEYS = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\texports.assertEach = assertEach;\n\texports.assertOneOf = assertOneOf;\n\texports.assertNodeType = assertNodeType;\n\texports.assertNodeOrValueType = assertNodeOrValueType;\n\texports.assertValueType = assertValueType;\n\texports.chain = chain;\n\texports.default = defineType;\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar VISITOR_KEYS = exports.VISITOR_KEYS = {};\n\tvar ALIAS_KEYS = exports.ALIAS_KEYS = {};\n\tvar NODE_FIELDS = exports.NODE_FIELDS = {};\n\tvar BUILDER_KEYS = exports.BUILDER_KEYS = {};\n\tvar DEPRECATED_KEYS = exports.DEPRECATED_KEYS = {};\n\n\tfunction getType(val) {\n\t  if (Array.isArray(val)) {\n\t    return \"array\";\n\t  } else if (val === null) {\n\t    return \"null\";\n\t  } else if (val === undefined) {\n\t    return \"undefined\";\n\t  } else {\n\t    return typeof val === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(val);\n\t  }\n\t}\n\n\tfunction assertEach(callback) {\n\t  function validator(node, key, val) {\n\t    if (!Array.isArray(val)) return;\n\n\t    for (var i = 0; i < val.length; i++) {\n\t      callback(node, key + \"[\" + i + \"]\", val[i]);\n\t    }\n\t  }\n\t  validator.each = callback;\n\t  return validator;\n\t}\n\n\tfunction assertOneOf() {\n\t  for (var _len = arguments.length, vals = Array(_len), _key = 0; _key < _len; _key++) {\n\t    vals[_key] = arguments[_key];\n\t  }\n\n\t  function validate(node, key, val) {\n\t    if (vals.indexOf(val) < 0) {\n\t      throw new TypeError(\"Property \" + key + \" expected value to be one of \" + (0, _stringify2.default)(vals) + \" but got \" + (0, _stringify2.default)(val));\n\t    }\n\t  }\n\n\t  validate.oneOf = vals;\n\n\t  return validate;\n\t}\n\n\tfunction assertNodeType() {\n\t  for (var _len2 = arguments.length, types = Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {\n\t    types[_key2] = arguments[_key2];\n\t  }\n\n\t  function validate(node, key, val) {\n\t    var valid = false;\n\n\t    for (var _iterator = types, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var type = _ref;\n\n\t      if (t.is(type, val)) {\n\t        valid = true;\n\t        break;\n\t      }\n\t    }\n\n\t    if (!valid) {\n\t      throw new TypeError(\"Property \" + key + \" of \" + node.type + \" expected node to be of a type \" + (0, _stringify2.default)(types) + \" \" + (\"but instead got \" + (0, _stringify2.default)(val && val.type)));\n\t    }\n\t  }\n\n\t  validate.oneOfNodeTypes = types;\n\n\t  return validate;\n\t}\n\n\tfunction assertNodeOrValueType() {\n\t  for (var _len3 = arguments.length, types = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {\n\t    types[_key3] = arguments[_key3];\n\t  }\n\n\t  function validate(node, key, val) {\n\t    var valid = false;\n\n\t    for (var _iterator2 = types, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var type = _ref2;\n\n\t      if (getType(val) === type || t.is(type, val)) {\n\t        valid = true;\n\t        break;\n\t      }\n\t    }\n\n\t    if (!valid) {\n\t      throw new TypeError(\"Property \" + key + \" of \" + node.type + \" expected node to be of a type \" + (0, _stringify2.default)(types) + \" \" + (\"but instead got \" + (0, _stringify2.default)(val && val.type)));\n\t    }\n\t  }\n\n\t  validate.oneOfNodeOrValueTypes = types;\n\n\t  return validate;\n\t}\n\n\tfunction assertValueType(type) {\n\t  function validate(node, key, val) {\n\t    var valid = getType(val) === type;\n\n\t    if (!valid) {\n\t      throw new TypeError(\"Property \" + key + \" expected type of \" + type + \" but got \" + getType(val));\n\t    }\n\t  }\n\n\t  validate.type = type;\n\n\t  return validate;\n\t}\n\n\tfunction chain() {\n\t  for (var _len4 = arguments.length, fns = Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {\n\t    fns[_key4] = arguments[_key4];\n\t  }\n\n\t  function validate() {\n\t    for (var _iterator3 = fns, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var fn = _ref3;\n\n\t      fn.apply(undefined, arguments);\n\t    }\n\t  }\n\t  validate.chainOf = fns;\n\t  return validate;\n\t}\n\n\tfunction defineType(type) {\n\t  var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t  var inherits = opts.inherits && store[opts.inherits] || {};\n\n\t  opts.fields = opts.fields || inherits.fields || {};\n\t  opts.visitor = opts.visitor || inherits.visitor || [];\n\t  opts.aliases = opts.aliases || inherits.aliases || [];\n\t  opts.builder = opts.builder || inherits.builder || opts.visitor || [];\n\n\t  if (opts.deprecatedAlias) {\n\t    DEPRECATED_KEYS[opts.deprecatedAlias] = type;\n\t  }\n\n\t  for (var _iterator4 = opts.visitor.concat(opts.builder), _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t    var _ref4;\n\n\t    if (_isArray4) {\n\t      if (_i4 >= _iterator4.length) break;\n\t      _ref4 = _iterator4[_i4++];\n\t    } else {\n\t      _i4 = _iterator4.next();\n\t      if (_i4.done) break;\n\t      _ref4 = _i4.value;\n\t    }\n\n\t    var _key5 = _ref4;\n\n\t    opts.fields[_key5] = opts.fields[_key5] || {};\n\t  }\n\n\t  for (var key in opts.fields) {\n\t    var field = opts.fields[key];\n\n\t    if (opts.builder.indexOf(key) === -1) {\n\t      field.optional = true;\n\t    }\n\t    if (field.default === undefined) {\n\t      field.default = null;\n\t    } else if (!field.validate) {\n\t      field.validate = assertValueType(getType(field.default));\n\t    }\n\t  }\n\n\t  VISITOR_KEYS[type] = opts.visitor;\n\t  BUILDER_KEYS[type] = opts.builder;\n\t  NODE_FIELDS[type] = opts.fields;\n\t  ALIAS_KEYS[type] = opts.aliases;\n\n\t  store[type] = opts;\n\t}\n\n\tvar store = {};\n\n/***/ }),\n/* 27 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = function (exec) {\n\t  try {\n\t    return !!exec();\n\t  } catch (e) {\n\t    return true;\n\t  }\n\t};\n\n/***/ }),\n/* 28 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tvar hasOwnProperty = {}.hasOwnProperty;\n\tmodule.exports = function (it, key) {\n\t  return hasOwnProperty.call(it, key);\n\t};\n\n/***/ }),\n/* 29 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar dP = __webpack_require__(23);\n\tvar createDesc = __webpack_require__(92);\n\tmodule.exports = __webpack_require__(22) ? function (object, key, value) {\n\t  return dP.f(object, key, createDesc(1, value));\n\t} : function (object, key, value) {\n\t  object[key] = value;\n\t  return object;\n\t};\n\n/***/ }),\n/* 30 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _Symbol = __webpack_require__(45),\n\t    getRawTag = __webpack_require__(534),\n\t    objectToString = __webpack_require__(559);\n\n\t/** `Object#toString` result references. */\n\tvar nullTag = '[object Null]',\n\t    undefinedTag = '[object Undefined]';\n\n\t/** Built-in value references. */\n\tvar symToStringTag = _Symbol ? _Symbol.toStringTag : undefined;\n\n\t/**\n\t * The base implementation of `getTag` without fallbacks for buggy environments.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @returns {string} Returns the `toStringTag`.\n\t */\n\tfunction baseGetTag(value) {\n\t    if (value == null) {\n\t        return value === undefined ? undefinedTag : nullTag;\n\t    }\n\t    return symToStringTag && symToStringTag in Object(value) ? getRawTag(value) : objectToString(value);\n\t}\n\n\tmodule.exports = baseGetTag;\n\n/***/ }),\n/* 31 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assignValue = __webpack_require__(162),\n\t    baseAssignValue = __webpack_require__(163);\n\n\t/**\n\t * Copies properties of `source` to `object`.\n\t *\n\t * @private\n\t * @param {Object} source The object to copy properties from.\n\t * @param {Array} props The property identifiers to copy.\n\t * @param {Object} [object={}] The object to copy properties to.\n\t * @param {Function} [customizer] The function to customize copied values.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction copyObject(source, props, object, customizer) {\n\t  var isNew = !object;\n\t  object || (object = {});\n\n\t  var index = -1,\n\t      length = props.length;\n\n\t  while (++index < length) {\n\t    var key = props[index];\n\n\t    var newValue = customizer ? customizer(object[key], source[key], key, object, source) : undefined;\n\n\t    if (newValue === undefined) {\n\t      newValue = source[key];\n\t    }\n\t    if (isNew) {\n\t      baseAssignValue(object, key, newValue);\n\t    } else {\n\t      assignValue(object, key, newValue);\n\t    }\n\t  }\n\t  return object;\n\t}\n\n\tmodule.exports = copyObject;\n\n/***/ }),\n/* 32 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayLikeKeys = __webpack_require__(245),\n\t    baseKeys = __webpack_require__(500),\n\t    isArrayLike = __webpack_require__(24);\n\n\t/**\n\t * Creates an array of the own enumerable property names of `object`.\n\t *\n\t * **Note:** Non-object values are coerced to objects. See the\n\t * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n\t * for more details.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t *   this.b = 2;\n\t * }\n\t *\n\t * Foo.prototype.c = 3;\n\t *\n\t * _.keys(new Foo);\n\t * // => ['a', 'b'] (iteration order is not guaranteed)\n\t *\n\t * _.keys('hi');\n\t * // => ['0', '1']\n\t */\n\tfunction keys(object) {\n\t  return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);\n\t}\n\n\tmodule.exports = keys;\n\n/***/ }),\n/* 33 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = {\n\t  filename: {\n\t    type: \"filename\",\n\t    description: \"filename to use when reading from stdin - this will be used in source-maps, errors etc\",\n\t    default: \"unknown\",\n\t    shorthand: \"f\"\n\t  },\n\n\t  filenameRelative: {\n\t    hidden: true,\n\t    type: \"string\"\n\t  },\n\n\t  inputSourceMap: {\n\t    hidden: true\n\t  },\n\n\t  env: {\n\t    hidden: true,\n\t    default: {}\n\t  },\n\n\t  mode: {\n\t    description: \"\",\n\t    hidden: true\n\t  },\n\n\t  retainLines: {\n\t    type: \"boolean\",\n\t    default: false,\n\t    description: \"retain line numbers - will result in really ugly code\"\n\t  },\n\n\t  highlightCode: {\n\t    description: \"enable/disable ANSI syntax highlighting of code frames (on by default)\",\n\t    type: \"boolean\",\n\t    default: true\n\t  },\n\n\t  suppressDeprecationMessages: {\n\t    type: \"boolean\",\n\t    default: false,\n\t    hidden: true\n\t  },\n\n\t  presets: {\n\t    type: \"list\",\n\t    description: \"\",\n\t    default: []\n\t  },\n\n\t  plugins: {\n\t    type: \"list\",\n\t    default: [],\n\t    description: \"\"\n\t  },\n\n\t  ignore: {\n\t    type: \"list\",\n\t    description: \"list of glob paths to **not** compile\",\n\t    default: []\n\t  },\n\n\t  only: {\n\t    type: \"list\",\n\t    description: \"list of glob paths to **only** compile\"\n\t  },\n\n\t  code: {\n\t    hidden: true,\n\t    default: true,\n\t    type: \"boolean\"\n\t  },\n\n\t  metadata: {\n\t    hidden: true,\n\t    default: true,\n\t    type: \"boolean\"\n\t  },\n\n\t  ast: {\n\t    hidden: true,\n\t    default: true,\n\t    type: \"boolean\"\n\t  },\n\n\t  extends: {\n\t    type: \"string\",\n\t    hidden: true\n\t  },\n\n\t  comments: {\n\t    type: \"boolean\",\n\t    default: true,\n\t    description: \"write comments to generated output (true by default)\"\n\t  },\n\n\t  shouldPrintComment: {\n\t    hidden: true,\n\t    description: \"optional callback to control whether a comment should be inserted, when this is used the comments option is ignored\"\n\t  },\n\n\t  wrapPluginVisitorMethod: {\n\t    hidden: true,\n\t    description: \"optional callback to wrap all visitor methods\"\n\t  },\n\n\t  compact: {\n\t    type: \"booleanString\",\n\t    default: \"auto\",\n\t    description: \"do not include superfluous whitespace characters and line terminators [true|false|auto]\"\n\t  },\n\n\t  minified: {\n\t    type: \"boolean\",\n\t    default: false,\n\t    description: \"save as much bytes when printing [true|false]\"\n\t  },\n\n\t  sourceMap: {\n\t    alias: \"sourceMaps\",\n\t    hidden: true\n\t  },\n\n\t  sourceMaps: {\n\t    type: \"booleanString\",\n\t    description: \"[true|false|inline]\",\n\t    default: false,\n\t    shorthand: \"s\"\n\t  },\n\n\t  sourceMapTarget: {\n\t    type: \"string\",\n\t    description: \"set `file` on returned source map\"\n\t  },\n\n\t  sourceFileName: {\n\t    type: \"string\",\n\t    description: \"set `sources[0]` on returned source map\"\n\t  },\n\n\t  sourceRoot: {\n\t    type: \"filename\",\n\t    description: \"the root from which all sources are relative\"\n\t  },\n\n\t  babelrc: {\n\t    description: \"Whether or not to look up .babelrc and .babelignore files\",\n\t    type: \"boolean\",\n\t    default: true\n\t  },\n\n\t  sourceType: {\n\t    description: \"\",\n\t    default: \"module\"\n\t  },\n\n\t  auxiliaryCommentBefore: {\n\t    type: \"string\",\n\t    description: \"print a comment before any injected non-user code\"\n\t  },\n\n\t  auxiliaryCommentAfter: {\n\t    type: \"string\",\n\t    description: \"print a comment after any injected non-user code\"\n\t  },\n\n\t  resolveModuleSource: {\n\t    hidden: true\n\t  },\n\n\t  getModuleId: {\n\t    hidden: true\n\t  },\n\n\t  moduleRoot: {\n\t    type: \"filename\",\n\t    description: \"optional prefix for the AMD module formatter that will be prepend to the filename on module definitions\"\n\t  },\n\n\t  moduleIds: {\n\t    type: \"boolean\",\n\t    default: false,\n\t    shorthand: \"M\",\n\t    description: \"insert an explicit id for modules\"\n\t  },\n\n\t  moduleId: {\n\t    description: \"specify a custom name for module ids\",\n\t    type: \"string\"\n\t  },\n\n\t  passPerPreset: {\n\t    description: \"Whether to spawn a traversal pass per a preset. By default all presets are merged.\",\n\t    type: \"boolean\",\n\t    default: false,\n\t    hidden: true\n\t  },\n\n\t  parserOpts: {\n\t    description: \"Options to pass into the parser, or to change parsers (parserOpts.parser)\",\n\t    default: false\n\t  },\n\n\t  generatorOpts: {\n\t    description: \"Options to pass into the generator, or to change generators (generatorOpts.generator)\",\n\t    default: false\n\t  }\n\t};\n\n/***/ }),\n/* 34 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _objectWithoutProperties2 = __webpack_require__(366);\n\n\tvar _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2);\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\tvar _assign = __webpack_require__(87);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _node = __webpack_require__(182);\n\n\tvar context = _interopRequireWildcard(_node);\n\n\tvar _plugin2 = __webpack_require__(65);\n\n\tvar _plugin3 = _interopRequireDefault(_plugin2);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _index = __webpack_require__(52);\n\n\tvar _resolvePlugin = __webpack_require__(184);\n\n\tvar _resolvePlugin2 = _interopRequireDefault(_resolvePlugin);\n\n\tvar _resolvePreset = __webpack_require__(185);\n\n\tvar _resolvePreset2 = _interopRequireDefault(_resolvePreset);\n\n\tvar _cloneDeepWith = __webpack_require__(575);\n\n\tvar _cloneDeepWith2 = _interopRequireDefault(_cloneDeepWith);\n\n\tvar _clone = __webpack_require__(109);\n\n\tvar _clone2 = _interopRequireDefault(_clone);\n\n\tvar _merge = __webpack_require__(293);\n\n\tvar _merge2 = _interopRequireDefault(_merge);\n\n\tvar _config2 = __webpack_require__(33);\n\n\tvar _config3 = _interopRequireDefault(_config2);\n\n\tvar _removed = __webpack_require__(54);\n\n\tvar _removed2 = _interopRequireDefault(_removed);\n\n\tvar _buildConfigChain = __webpack_require__(51);\n\n\tvar _buildConfigChain2 = _interopRequireDefault(_buildConfigChain);\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _path2 = _interopRequireDefault(_path);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar OptionManager = function () {\n\t  function OptionManager(log) {\n\t    (0, _classCallCheck3.default)(this, OptionManager);\n\n\t    this.resolvedConfigs = [];\n\t    this.options = OptionManager.createBareOptions();\n\t    this.log = log;\n\t  }\n\n\t  OptionManager.memoisePluginContainer = function memoisePluginContainer(fn, loc, i, alias) {\n\t    for (var _iterator = OptionManager.memoisedPlugins, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var cache = _ref;\n\n\t      if (cache.container === fn) return cache.plugin;\n\t    }\n\n\t    var obj = void 0;\n\n\t    if (typeof fn === \"function\") {\n\t      obj = fn(context);\n\t    } else {\n\t      obj = fn;\n\t    }\n\n\t    if ((typeof obj === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(obj)) === \"object\") {\n\t      var _plugin = new _plugin3.default(obj, alias);\n\t      OptionManager.memoisedPlugins.push({\n\t        container: fn,\n\t        plugin: _plugin\n\t      });\n\t      return _plugin;\n\t    } else {\n\t      throw new TypeError(messages.get(\"pluginNotObject\", loc, i, typeof obj === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(obj)) + loc + i);\n\t    }\n\t  };\n\n\t  OptionManager.createBareOptions = function createBareOptions() {\n\t    var opts = {};\n\n\t    for (var _key in _config3.default) {\n\t      var opt = _config3.default[_key];\n\t      opts[_key] = (0, _clone2.default)(opt.default);\n\t    }\n\n\t    return opts;\n\t  };\n\n\t  OptionManager.normalisePlugin = function normalisePlugin(plugin, loc, i, alias) {\n\t    plugin = plugin.__esModule ? plugin.default : plugin;\n\n\t    if (!(plugin instanceof _plugin3.default)) {\n\t      if (typeof plugin === \"function\" || (typeof plugin === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(plugin)) === \"object\") {\n\t        plugin = OptionManager.memoisePluginContainer(plugin, loc, i, alias);\n\t      } else {\n\t        throw new TypeError(messages.get(\"pluginNotFunction\", loc, i, typeof plugin === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(plugin)));\n\t      }\n\t    }\n\n\t    plugin.init(loc, i);\n\n\t    return plugin;\n\t  };\n\n\t  OptionManager.normalisePlugins = function normalisePlugins(loc, dirname, plugins) {\n\t    return plugins.map(function (val, i) {\n\t      var plugin = void 0,\n\t          options = void 0;\n\n\t      if (!val) {\n\t        throw new TypeError(\"Falsy value found in plugins\");\n\t      }\n\n\t      if (Array.isArray(val)) {\n\t        plugin = val[0];\n\t        options = val[1];\n\t      } else {\n\t        plugin = val;\n\t      }\n\n\t      var alias = typeof plugin === \"string\" ? plugin : loc + \"$\" + i;\n\n\t      if (typeof plugin === \"string\") {\n\t        var pluginLoc = (0, _resolvePlugin2.default)(plugin, dirname);\n\t        if (pluginLoc) {\n\t          plugin = __webpack_require__(179)(pluginLoc);\n\t        } else {\n\t          throw new ReferenceError(messages.get(\"pluginUnknown\", plugin, loc, i, dirname));\n\t        }\n\t      }\n\n\t      plugin = OptionManager.normalisePlugin(plugin, loc, i, alias);\n\n\t      return [plugin, options];\n\t    });\n\t  };\n\n\t  OptionManager.prototype.mergeOptions = function mergeOptions(_ref2) {\n\t    var _this = this;\n\n\t    var rawOpts = _ref2.options,\n\t        extendingOpts = _ref2.extending,\n\t        alias = _ref2.alias,\n\t        loc = _ref2.loc,\n\t        dirname = _ref2.dirname;\n\n\t    alias = alias || \"foreign\";\n\t    if (!rawOpts) return;\n\n\t    if ((typeof rawOpts === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(rawOpts)) !== \"object\" || Array.isArray(rawOpts)) {\n\t      this.log.error(\"Invalid options type for \" + alias, TypeError);\n\t    }\n\n\t    var opts = (0, _cloneDeepWith2.default)(rawOpts, function (val) {\n\t      if (val instanceof _plugin3.default) {\n\t        return val;\n\t      }\n\t    });\n\n\t    dirname = dirname || process.cwd();\n\t    loc = loc || alias;\n\n\t    for (var _key2 in opts) {\n\t      var option = _config3.default[_key2];\n\n\t      if (!option && this.log) {\n\t        if (_removed2.default[_key2]) {\n\t          this.log.error(\"Using removed Babel 5 option: \" + alias + \".\" + _key2 + \" - \" + _removed2.default[_key2].message, ReferenceError);\n\t        } else {\n\t          var unknownOptErr = \"Unknown option: \" + alias + \".\" + _key2 + \". Check out http://babeljs.io/docs/usage/options/ for more information about options.\";\n\t          var presetConfigErr = \"A common cause of this error is the presence of a configuration options object without the corresponding preset name. Example:\\n\\nInvalid:\\n  `{ presets: [{option: value}] }`\\nValid:\\n  `{ presets: [['presetName', {option: value}]] }`\\n\\nFor more detailed information on preset configuration, please see http://babeljs.io/docs/plugins/#pluginpresets-options.\";\n\n\t          this.log.error(unknownOptErr + \"\\n\\n\" + presetConfigErr, ReferenceError);\n\t        }\n\t      }\n\t    }\n\n\t    (0, _index.normaliseOptions)(opts);\n\n\t    if (opts.plugins) {\n\t      opts.plugins = OptionManager.normalisePlugins(loc, dirname, opts.plugins);\n\t    }\n\n\t    if (opts.presets) {\n\t      if (opts.passPerPreset) {\n\t        opts.presets = this.resolvePresets(opts.presets, dirname, function (preset, presetLoc) {\n\t          _this.mergeOptions({\n\t            options: preset,\n\t            extending: preset,\n\t            alias: presetLoc,\n\t            loc: presetLoc,\n\t            dirname: dirname\n\t          });\n\t        });\n\t      } else {\n\t        this.mergePresets(opts.presets, dirname);\n\t        delete opts.presets;\n\t      }\n\t    }\n\n\t    if (rawOpts === extendingOpts) {\n\t      (0, _assign2.default)(extendingOpts, opts);\n\t    } else {\n\t      (0, _merge2.default)(extendingOpts || this.options, opts);\n\t    }\n\t  };\n\n\t  OptionManager.prototype.mergePresets = function mergePresets(presets, dirname) {\n\t    var _this2 = this;\n\n\t    this.resolvePresets(presets, dirname, function (presetOpts, presetLoc) {\n\t      _this2.mergeOptions({\n\t        options: presetOpts,\n\t        alias: presetLoc,\n\t        loc: presetLoc,\n\t        dirname: _path2.default.dirname(presetLoc || \"\")\n\t      });\n\t    });\n\t  };\n\n\t  OptionManager.prototype.resolvePresets = function resolvePresets(presets, dirname, onResolve) {\n\t    return presets.map(function (val) {\n\t      var options = void 0;\n\t      if (Array.isArray(val)) {\n\t        if (val.length > 2) {\n\t          throw new Error(\"Unexpected extra options \" + (0, _stringify2.default)(val.slice(2)) + \" passed to preset.\");\n\t        }\n\n\t        var _val = val;\n\t        val = _val[0];\n\t        options = _val[1];\n\t      }\n\n\t      var presetLoc = void 0;\n\t      try {\n\t        if (typeof val === \"string\") {\n\t          presetLoc = (0, _resolvePreset2.default)(val, dirname);\n\n\t          if (!presetLoc) {\n\t            throw new Error(\"Couldn't find preset \" + (0, _stringify2.default)(val) + \" relative to directory \" + (0, _stringify2.default)(dirname));\n\t          }\n\n\t          val = __webpack_require__(179)(presetLoc);\n\t        }\n\n\t        if ((typeof val === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(val)) === \"object\" && val.__esModule) {\n\t          if (val.default) {\n\t            val = val.default;\n\t          } else {\n\t            var _val2 = val,\n\t                __esModule = _val2.__esModule,\n\t                rest = (0, _objectWithoutProperties3.default)(_val2, [\"__esModule\"]);\n\n\t            val = rest;\n\t          }\n\t        }\n\n\t        if ((typeof val === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(val)) === \"object\" && val.buildPreset) val = val.buildPreset;\n\n\t        if (typeof val !== \"function\" && options !== undefined) {\n\t          throw new Error(\"Options \" + (0, _stringify2.default)(options) + \" passed to \" + (presetLoc || \"a preset\") + \" which does not accept options.\");\n\t        }\n\n\t        if (typeof val === \"function\") val = val(context, options, { dirname: dirname });\n\n\t        if ((typeof val === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(val)) !== \"object\") {\n\t          throw new Error(\"Unsupported preset format: \" + val + \".\");\n\t        }\n\n\t        onResolve && onResolve(val, presetLoc);\n\t      } catch (e) {\n\t        if (presetLoc) {\n\t          e.message += \" (While processing preset: \" + (0, _stringify2.default)(presetLoc) + \")\";\n\t        }\n\t        throw e;\n\t      }\n\t      return val;\n\t    });\n\t  };\n\n\t  OptionManager.prototype.normaliseOptions = function normaliseOptions() {\n\t    var opts = this.options;\n\n\t    for (var _key3 in _config3.default) {\n\t      var option = _config3.default[_key3];\n\t      var val = opts[_key3];\n\n\t      if (!val && option.optional) continue;\n\n\t      if (option.alias) {\n\t        opts[option.alias] = opts[option.alias] || val;\n\t      } else {\n\t        opts[_key3] = val;\n\t      }\n\t    }\n\t  };\n\n\t  OptionManager.prototype.init = function init() {\n\t    var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n\t    for (var _iterator2 = (0, _buildConfigChain2.default)(opts, this.log), _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref3;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref3 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref3 = _i2.value;\n\t      }\n\n\t      var _config = _ref3;\n\n\t      this.mergeOptions(_config);\n\t    }\n\n\t    this.normaliseOptions(opts);\n\n\t    return this.options;\n\t  };\n\n\t  return OptionManager;\n\t}();\n\n\texports.default = OptionManager;\n\n\tOptionManager.memoisedPlugins = [];\n\tmodule.exports = exports[\"default\"];\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 35 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(405), __esModule: true };\n\n/***/ }),\n/* 36 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _virtualTypes = __webpack_require__(224);\n\n\tvar virtualTypes = _interopRequireWildcard(_virtualTypes);\n\n\tvar _debug2 = __webpack_require__(239);\n\n\tvar _debug3 = _interopRequireDefault(_debug2);\n\n\tvar _invariant = __webpack_require__(466);\n\n\tvar _invariant2 = _interopRequireDefault(_invariant);\n\n\tvar _index = __webpack_require__(7);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tvar _assign = __webpack_require__(174);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _scope = __webpack_require__(134);\n\n\tvar _scope2 = _interopRequireDefault(_scope);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _cache = __webpack_require__(88);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar _debug = (0, _debug3.default)(\"babel\");\n\n\tvar NodePath = function () {\n\t  function NodePath(hub, parent) {\n\t    (0, _classCallCheck3.default)(this, NodePath);\n\n\t    this.parent = parent;\n\t    this.hub = hub;\n\t    this.contexts = [];\n\t    this.data = {};\n\t    this.shouldSkip = false;\n\t    this.shouldStop = false;\n\t    this.removed = false;\n\t    this.state = null;\n\t    this.opts = null;\n\t    this.skipKeys = null;\n\t    this.parentPath = null;\n\t    this.context = null;\n\t    this.container = null;\n\t    this.listKey = null;\n\t    this.inList = false;\n\t    this.parentKey = null;\n\t    this.key = null;\n\t    this.node = null;\n\t    this.scope = null;\n\t    this.type = null;\n\t    this.typeAnnotation = null;\n\t  }\n\n\t  NodePath.get = function get(_ref) {\n\t    var hub = _ref.hub,\n\t        parentPath = _ref.parentPath,\n\t        parent = _ref.parent,\n\t        container = _ref.container,\n\t        listKey = _ref.listKey,\n\t        key = _ref.key;\n\n\t    if (!hub && parentPath) {\n\t      hub = parentPath.hub;\n\t    }\n\n\t    (0, _invariant2.default)(parent, \"To get a node path the parent needs to exist\");\n\n\t    var targetNode = container[key];\n\n\t    var paths = _cache.path.get(parent) || [];\n\t    if (!_cache.path.has(parent)) {\n\t      _cache.path.set(parent, paths);\n\t    }\n\n\t    var path = void 0;\n\n\t    for (var i = 0; i < paths.length; i++) {\n\t      var pathCheck = paths[i];\n\t      if (pathCheck.node === targetNode) {\n\t        path = pathCheck;\n\t        break;\n\t      }\n\t    }\n\n\t    if (!path) {\n\t      path = new NodePath(hub, parent);\n\t      paths.push(path);\n\t    }\n\n\t    path.setup(parentPath, container, listKey, key);\n\n\t    return path;\n\t  };\n\n\t  NodePath.prototype.getScope = function getScope(scope) {\n\t    var ourScope = scope;\n\n\t    if (this.isScope()) {\n\t      ourScope = new _scope2.default(this, scope);\n\t    }\n\n\t    return ourScope;\n\t  };\n\n\t  NodePath.prototype.setData = function setData(key, val) {\n\t    return this.data[key] = val;\n\t  };\n\n\t  NodePath.prototype.getData = function getData(key, def) {\n\t    var val = this.data[key];\n\t    if (!val && def) val = this.data[key] = def;\n\t    return val;\n\t  };\n\n\t  NodePath.prototype.buildCodeFrameError = function buildCodeFrameError(msg) {\n\t    var Error = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : SyntaxError;\n\n\t    return this.hub.file.buildCodeFrameError(this.node, msg, Error);\n\t  };\n\n\t  NodePath.prototype.traverse = function traverse(visitor, state) {\n\t    (0, _index2.default)(this.node, visitor, this.scope, state, this);\n\t  };\n\n\t  NodePath.prototype.mark = function mark(type, message) {\n\t    this.hub.file.metadata.marked.push({\n\t      type: type,\n\t      message: message,\n\t      loc: this.node.loc\n\t    });\n\t  };\n\n\t  NodePath.prototype.set = function set(key, node) {\n\t    t.validate(this.node, key, node);\n\t    this.node[key] = node;\n\t  };\n\n\t  NodePath.prototype.getPathLocation = function getPathLocation() {\n\t    var parts = [];\n\t    var path = this;\n\t    do {\n\t      var key = path.key;\n\t      if (path.inList) key = path.listKey + \"[\" + key + \"]\";\n\t      parts.unshift(key);\n\t    } while (path = path.parentPath);\n\t    return parts.join(\".\");\n\t  };\n\n\t  NodePath.prototype.debug = function debug(buildMessage) {\n\t    if (!_debug.enabled) return;\n\t    _debug(this.getPathLocation() + \" \" + this.type + \": \" + buildMessage());\n\t  };\n\n\t  return NodePath;\n\t}();\n\n\texports.default = NodePath;\n\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(368));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(374));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(382));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(372));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(371));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(377));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(370));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(381));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(380));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(373));\n\t(0, _assign2.default)(NodePath.prototype, __webpack_require__(369));\n\n\tvar _loop2 = function _loop2() {\n\t  if (_isArray) {\n\t    if (_i >= _iterator.length) return \"break\";\n\t    _ref2 = _iterator[_i++];\n\t  } else {\n\t    _i = _iterator.next();\n\t    if (_i.done) return \"break\";\n\t    _ref2 = _i.value;\n\t  }\n\n\t  var type = _ref2;\n\n\t  var typeKey = \"is\" + type;\n\t  NodePath.prototype[typeKey] = function (opts) {\n\t    return t[typeKey](this.node, opts);\n\t  };\n\n\t  NodePath.prototype[\"assert\" + type] = function (opts) {\n\t    if (!this[typeKey](opts)) {\n\t      throw new TypeError(\"Expected node path of type \" + type);\n\t    }\n\t  };\n\t};\n\n\tfor (var _iterator = t.TYPES, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t  var _ref2;\n\n\t  var _ret2 = _loop2();\n\n\t  if (_ret2 === \"break\") break;\n\t}\n\n\tvar _loop = function _loop(type) {\n\t  if (type[0] === \"_\") return \"continue\";\n\t  if (t.TYPES.indexOf(type) < 0) t.TYPES.push(type);\n\n\t  var virtualType = virtualTypes[type];\n\n\t  NodePath.prototype[\"is\" + type] = function (opts) {\n\t    return virtualType.checkPath(this, opts);\n\t  };\n\t};\n\n\tfor (var type in virtualTypes) {\n\t  var _ret = _loop(type);\n\n\t  if (_ret === \"continue\") continue;\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 37 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// to indexed object, toObject with fallback for non-array-like ES3 strings\n\tvar IObject = __webpack_require__(142);\n\tvar defined = __webpack_require__(140);\n\tmodule.exports = function (it) {\n\t  return IObject(defined(it));\n\t};\n\n/***/ }),\n/* 38 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsNative = __webpack_require__(497),\n\t    getValue = __webpack_require__(535);\n\n\t/**\n\t * Gets the native function at `key` of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {string} key The key of the method to get.\n\t * @returns {*} Returns the function if it's native, else `undefined`.\n\t */\n\tfunction getNative(object, key) {\n\t  var value = getValue(object, key);\n\t  return baseIsNative(value) ? value : undefined;\n\t}\n\n\tmodule.exports = getNative;\n\n/***/ }),\n/* 39 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = function (module) {\n\t\tif (!module.webpackPolyfill) {\n\t\t\tmodule.deprecate = function () {};\n\t\t\tmodule.paths = [];\n\t\t\t// module.parent = undefined by default\n\t\t\tmodule.children = [];\n\t\t\tmodule.webpackPolyfill = 1;\n\t\t}\n\t\treturn module;\n\t};\n\n/***/ }),\n/* 40 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var node = _ref.node,\n\t      parent = _ref.parent,\n\t      scope = _ref.scope,\n\t      id = _ref.id;\n\n\t  if (node.id) return;\n\n\t  if ((t.isObjectProperty(parent) || t.isObjectMethod(parent, { kind: \"method\" })) && (!parent.computed || t.isLiteral(parent.key))) {\n\t    id = parent.key;\n\t  } else if (t.isVariableDeclarator(parent)) {\n\t    id = parent.id;\n\n\t    if (t.isIdentifier(id)) {\n\t      var binding = scope.parent.getBinding(id.name);\n\t      if (binding && binding.constant && scope.getBinding(id.name) === binding) {\n\t        node.id = id;\n\t        node.id[t.NOT_LOCAL_BINDING] = true;\n\t        return;\n\t      }\n\t    }\n\t  } else if (t.isAssignmentExpression(parent)) {\n\t    id = parent.left;\n\t  } else if (!id) {\n\t    return;\n\t  }\n\n\t  var name = void 0;\n\t  if (id && t.isLiteral(id)) {\n\t    name = id.value;\n\t  } else if (id && t.isIdentifier(id)) {\n\t    name = id.name;\n\t  } else {\n\t    return;\n\t  }\n\n\t  name = t.toBindingIdentifierName(name);\n\t  id = t.identifier(name);\n\n\t  id[t.NOT_LOCAL_BINDING] = true;\n\n\t  var state = visit(node, name, scope);\n\t  return wrap(state, node, id, scope) || node;\n\t};\n\n\tvar _babelHelperGetFunctionArity = __webpack_require__(189);\n\n\tvar _babelHelperGetFunctionArity2 = _interopRequireDefault(_babelHelperGetFunctionArity);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildPropertyMethodAssignmentWrapper = (0, _babelTemplate2.default)(\"\\n  (function (FUNCTION_KEY) {\\n    function FUNCTION_ID() {\\n      return FUNCTION_KEY.apply(this, arguments);\\n    }\\n\\n    FUNCTION_ID.toString = function () {\\n      return FUNCTION_KEY.toString();\\n    }\\n\\n    return FUNCTION_ID;\\n  })(FUNCTION)\\n\");\n\n\tvar buildGeneratorPropertyMethodAssignmentWrapper = (0, _babelTemplate2.default)(\"\\n  (function (FUNCTION_KEY) {\\n    function* FUNCTION_ID() {\\n      return yield* FUNCTION_KEY.apply(this, arguments);\\n    }\\n\\n    FUNCTION_ID.toString = function () {\\n      return FUNCTION_KEY.toString();\\n    };\\n\\n    return FUNCTION_ID;\\n  })(FUNCTION)\\n\");\n\n\tvar visitor = {\n\t  \"ReferencedIdentifier|BindingIdentifier\": function ReferencedIdentifierBindingIdentifier(path, state) {\n\t    if (path.node.name !== state.name) return;\n\n\t    var localDeclar = path.scope.getBindingIdentifier(state.name);\n\t    if (localDeclar !== state.outerDeclar) return;\n\n\t    state.selfReference = true;\n\t    path.stop();\n\t  }\n\t};\n\n\tfunction wrap(state, method, id, scope) {\n\t  if (state.selfReference) {\n\t    if (scope.hasBinding(id.name) && !scope.hasGlobal(id.name)) {\n\t      scope.rename(id.name);\n\t    } else {\n\t      if (!t.isFunction(method)) return;\n\n\t      var build = buildPropertyMethodAssignmentWrapper;\n\t      if (method.generator) build = buildGeneratorPropertyMethodAssignmentWrapper;\n\t      var _template = build({\n\t        FUNCTION: method,\n\t        FUNCTION_ID: id,\n\t        FUNCTION_KEY: scope.generateUidIdentifier(id.name)\n\t      }).expression;\n\t      _template.callee._skipModulesRemap = true;\n\n\t      var params = _template.callee.body.body[0].params;\n\t      for (var i = 0, len = (0, _babelHelperGetFunctionArity2.default)(method); i < len; i++) {\n\t        params.push(scope.generateUidIdentifier(\"x\"));\n\t      }\n\n\t      return _template;\n\t    }\n\t  }\n\n\t  method.id = id;\n\t  scope.getProgramParent().references[id.name] = true;\n\t}\n\n\tfunction visit(node, name, scope) {\n\t  var state = {\n\t    selfAssignment: false,\n\t    selfReference: false,\n\t    outerDeclar: scope.getBindingIdentifier(name),\n\t    references: [],\n\t    name: name\n\t  };\n\n\t  var binding = scope.getOwnBinding(name);\n\n\t  if (binding) {\n\t    if (binding.kind === \"param\") {\n\t      state.selfReference = true;\n\t    } else {}\n\t  } else if (state.outerDeclar || scope.hasGlobal(name)) {\n\t    scope.traverse(node, visitor, state);\n\t  }\n\n\t  return state;\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 41 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _setPrototypeOf = __webpack_require__(361);\n\n\tvar _setPrototypeOf2 = _interopRequireDefault(_setPrototypeOf);\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = function (subClass, superClass) {\n\t  if (typeof superClass !== \"function\" && superClass !== null) {\n\t    throw new TypeError(\"Super expression must either be null or a function, not \" + (typeof superClass === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(superClass)));\n\t  }\n\n\t  subClass.prototype = (0, _create2.default)(superClass && superClass.prototype, {\n\t    constructor: {\n\t      value: subClass,\n\t      enumerable: false,\n\t      writable: true,\n\t      configurable: true\n\t    }\n\t  });\n\t  if (superClass) _setPrototypeOf2.default ? (0, _setPrototypeOf2.default)(subClass, superClass) : subClass.__proto__ = superClass;\n\t};\n\n/***/ }),\n/* 42 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = function (self, call) {\n\t  if (!self) {\n\t    throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n\t  }\n\n\t  return call && ((typeof call === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(call)) === \"object\" || typeof call === \"function\") ? call : self;\n\t};\n\n/***/ }),\n/* 43 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// optional / simple context binding\n\tvar aFunction = __webpack_require__(227);\n\tmodule.exports = function (fn, that, length) {\n\t  aFunction(fn);\n\t  if (that === undefined) return fn;\n\t  switch (length) {\n\t    case 1:\n\t      return function (a) {\n\t        return fn.call(that, a);\n\t      };\n\t    case 2:\n\t      return function (a, b) {\n\t        return fn.call(that, a, b);\n\t      };\n\t    case 3:\n\t      return function (a, b, c) {\n\t        return fn.call(that, a, b, c);\n\t      };\n\t  }\n\t  return function () /* ...args */{\n\t    return fn.apply(that, arguments);\n\t  };\n\t};\n\n/***/ }),\n/* 44 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.2.14 / 15.2.3.14 Object.keys(O)\n\tvar $keys = __webpack_require__(237);\n\tvar enumBugKeys = __webpack_require__(141);\n\n\tmodule.exports = Object.keys || function keys(O) {\n\t  return $keys(O, enumBugKeys);\n\t};\n\n/***/ }),\n/* 45 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar root = __webpack_require__(17);\n\n\t/** Built-in value references. */\n\tvar _Symbol = root.Symbol;\n\n\tmodule.exports = _Symbol;\n\n/***/ }),\n/* 46 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Performs a\n\t * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * comparison between two values to determine if they are equivalent.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to compare.\n\t * @param {*} other The other value to compare.\n\t * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n\t * @example\n\t *\n\t * var object = { 'a': 1 };\n\t * var other = { 'a': 1 };\n\t *\n\t * _.eq(object, object);\n\t * // => true\n\t *\n\t * _.eq(object, other);\n\t * // => false\n\t *\n\t * _.eq('a', 'a');\n\t * // => true\n\t *\n\t * _.eq('a', Object('a'));\n\t * // => false\n\t *\n\t * _.eq(NaN, NaN);\n\t * // => true\n\t */\n\tfunction eq(value, other) {\n\t  return value === other || value !== value && other !== other;\n\t}\n\n\tmodule.exports = eq;\n\n/***/ }),\n/* 47 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayLikeKeys = __webpack_require__(245),\n\t    baseKeysIn = __webpack_require__(501),\n\t    isArrayLike = __webpack_require__(24);\n\n\t/**\n\t * Creates an array of the own and inherited enumerable property names of `object`.\n\t *\n\t * **Note:** Non-object values are coerced to objects.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t *   this.b = 2;\n\t * }\n\t *\n\t * Foo.prototype.c = 3;\n\t *\n\t * _.keysIn(new Foo);\n\t * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\n\t */\n\tfunction keysIn(object) {\n\t  return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);\n\t}\n\n\tmodule.exports = keysIn;\n\n/***/ }),\n/* 48 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar toFinite = __webpack_require__(597);\n\n\t/**\n\t * Converts `value` to an integer.\n\t *\n\t * **Note:** This method is loosely based on\n\t * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to convert.\n\t * @returns {number} Returns the converted integer.\n\t * @example\n\t *\n\t * _.toInteger(3.2);\n\t * // => 3\n\t *\n\t * _.toInteger(Number.MIN_VALUE);\n\t * // => 0\n\t *\n\t * _.toInteger(Infinity);\n\t * // => 1.7976931348623157e+308\n\t *\n\t * _.toInteger('3.2');\n\t * // => 3\n\t */\n\tfunction toInteger(value) {\n\t  var result = toFinite(value),\n\t      remainder = result % 1;\n\n\t  return result === result ? remainder ? result - remainder : result : 0;\n\t}\n\n\tmodule.exports = toInteger;\n\n/***/ }),\n/* 49 */\n/***/ (function(module, exports) {\n\n\t/* WEBPACK VAR INJECTION */(function(__webpack_amd_options__) {module.exports = __webpack_amd_options__;\r\n\n\t/* WEBPACK VAR INJECTION */}.call(exports, {}))\n\n/***/ }),\n/* 50 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {\"use strict\";\n\n\texports.__esModule = true;\n\texports.File = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _assign = __webpack_require__(87);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _possibleConstructorReturn2 = __webpack_require__(42);\n\n\tvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\n\tvar _inherits2 = __webpack_require__(41);\n\n\tvar _inherits3 = _interopRequireDefault(_inherits2);\n\n\tvar _babelHelpers = __webpack_require__(194);\n\n\tvar _babelHelpers2 = _interopRequireDefault(_babelHelpers);\n\n\tvar _metadata = __webpack_require__(121);\n\n\tvar metadataVisitor = _interopRequireWildcard(_metadata);\n\n\tvar _convertSourceMap = __webpack_require__(403);\n\n\tvar _convertSourceMap2 = _interopRequireDefault(_convertSourceMap);\n\n\tvar _optionManager = __webpack_require__(34);\n\n\tvar _optionManager2 = _interopRequireDefault(_optionManager);\n\n\tvar _pluginPass = __webpack_require__(299);\n\n\tvar _pluginPass2 = _interopRequireDefault(_pluginPass);\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelTraverse2 = _interopRequireDefault(_babelTraverse);\n\n\tvar _sourceMap = __webpack_require__(288);\n\n\tvar _sourceMap2 = _interopRequireDefault(_sourceMap);\n\n\tvar _babelGenerator = __webpack_require__(186);\n\n\tvar _babelGenerator2 = _interopRequireDefault(_babelGenerator);\n\n\tvar _babelCodeFrame = __webpack_require__(181);\n\n\tvar _babelCodeFrame2 = _interopRequireDefault(_babelCodeFrame);\n\n\tvar _defaults = __webpack_require__(273);\n\n\tvar _defaults2 = _interopRequireDefault(_defaults);\n\n\tvar _logger = __webpack_require__(120);\n\n\tvar _logger2 = _interopRequireDefault(_logger);\n\n\tvar _store = __webpack_require__(119);\n\n\tvar _store2 = _interopRequireDefault(_store);\n\n\tvar _babylon = __webpack_require__(89);\n\n\tvar _util = __webpack_require__(122);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _path2 = _interopRequireDefault(_path);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _resolve = __webpack_require__(118);\n\n\tvar _resolve2 = _interopRequireDefault(_resolve);\n\n\tvar _blockHoist = __webpack_require__(296);\n\n\tvar _blockHoist2 = _interopRequireDefault(_blockHoist);\n\n\tvar _shadowFunctions = __webpack_require__(297);\n\n\tvar _shadowFunctions2 = _interopRequireDefault(_shadowFunctions);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar shebangRegex = /^#!.*/;\n\n\tvar INTERNAL_PLUGINS = [[_blockHoist2.default], [_shadowFunctions2.default]];\n\n\tvar errorVisitor = {\n\t  enter: function enter(path, state) {\n\t    var loc = path.node.loc;\n\t    if (loc) {\n\t      state.loc = loc;\n\t      path.stop();\n\t    }\n\t  }\n\t};\n\n\tvar File = function (_Store) {\n\t  (0, _inherits3.default)(File, _Store);\n\n\t  function File() {\n\t    var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\t    var pipeline = arguments[1];\n\t    (0, _classCallCheck3.default)(this, File);\n\n\t    var _this = (0, _possibleConstructorReturn3.default)(this, _Store.call(this));\n\n\t    _this.pipeline = pipeline;\n\n\t    _this.log = new _logger2.default(_this, opts.filename || \"unknown\");\n\t    _this.opts = _this.initOptions(opts);\n\n\t    _this.parserOpts = {\n\t      sourceType: _this.opts.sourceType,\n\t      sourceFileName: _this.opts.filename,\n\t      plugins: []\n\t    };\n\n\t    _this.pluginVisitors = [];\n\t    _this.pluginPasses = [];\n\n\t    _this.buildPluginsForOptions(_this.opts);\n\n\t    if (_this.opts.passPerPreset) {\n\t      _this.perPresetOpts = [];\n\t      _this.opts.presets.forEach(function (presetOpts) {\n\t        var perPresetOpts = (0, _assign2.default)((0, _create2.default)(_this.opts), presetOpts);\n\t        _this.perPresetOpts.push(perPresetOpts);\n\t        _this.buildPluginsForOptions(perPresetOpts);\n\t      });\n\t    }\n\n\t    _this.metadata = {\n\t      usedHelpers: [],\n\t      marked: [],\n\t      modules: {\n\t        imports: [],\n\t        exports: {\n\t          exported: [],\n\t          specifiers: []\n\t        }\n\t      }\n\t    };\n\n\t    _this.dynamicImportTypes = {};\n\t    _this.dynamicImportIds = {};\n\t    _this.dynamicImports = [];\n\t    _this.declarations = {};\n\t    _this.usedHelpers = {};\n\n\t    _this.path = null;\n\t    _this.ast = {};\n\n\t    _this.code = \"\";\n\t    _this.shebang = \"\";\n\n\t    _this.hub = new _babelTraverse.Hub(_this);\n\t    return _this;\n\t  }\n\n\t  File.prototype.getMetadata = function getMetadata() {\n\t    var has = false;\n\t    for (var _iterator = this.ast.program.body, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var node = _ref;\n\n\t      if (t.isModuleDeclaration(node)) {\n\t        has = true;\n\t        break;\n\t      }\n\t    }\n\t    if (has) {\n\t      this.path.traverse(metadataVisitor, this);\n\t    }\n\t  };\n\n\t  File.prototype.initOptions = function initOptions(opts) {\n\t    opts = new _optionManager2.default(this.log, this.pipeline).init(opts);\n\n\t    if (opts.inputSourceMap) {\n\t      opts.sourceMaps = true;\n\t    }\n\n\t    if (opts.moduleId) {\n\t      opts.moduleIds = true;\n\t    }\n\n\t    opts.basename = _path2.default.basename(opts.filename, _path2.default.extname(opts.filename));\n\n\t    opts.ignore = util.arrayify(opts.ignore, util.regexify);\n\n\t    if (opts.only) opts.only = util.arrayify(opts.only, util.regexify);\n\n\t    (0, _defaults2.default)(opts, {\n\t      moduleRoot: opts.sourceRoot\n\t    });\n\n\t    (0, _defaults2.default)(opts, {\n\t      sourceRoot: opts.moduleRoot\n\t    });\n\n\t    (0, _defaults2.default)(opts, {\n\t      filenameRelative: opts.filename\n\t    });\n\n\t    var basenameRelative = _path2.default.basename(opts.filenameRelative);\n\n\t    (0, _defaults2.default)(opts, {\n\t      sourceFileName: basenameRelative,\n\t      sourceMapTarget: basenameRelative\n\t    });\n\n\t    return opts;\n\t  };\n\n\t  File.prototype.buildPluginsForOptions = function buildPluginsForOptions(opts) {\n\t    if (!Array.isArray(opts.plugins)) {\n\t      return;\n\t    }\n\n\t    var plugins = opts.plugins.concat(INTERNAL_PLUGINS);\n\t    var currentPluginVisitors = [];\n\t    var currentPluginPasses = [];\n\n\t    for (var _iterator2 = plugins, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var ref = _ref2;\n\t      var plugin = ref[0],\n\t          pluginOpts = ref[1];\n\n\t      currentPluginVisitors.push(plugin.visitor);\n\t      currentPluginPasses.push(new _pluginPass2.default(this, plugin, pluginOpts));\n\n\t      if (plugin.manipulateOptions) {\n\t        plugin.manipulateOptions(opts, this.parserOpts, this);\n\t      }\n\t    }\n\n\t    this.pluginVisitors.push(currentPluginVisitors);\n\t    this.pluginPasses.push(currentPluginPasses);\n\t  };\n\n\t  File.prototype.getModuleName = function getModuleName() {\n\t    var opts = this.opts;\n\t    if (!opts.moduleIds) {\n\t      return null;\n\t    }\n\n\t    if (opts.moduleId != null && !opts.getModuleId) {\n\t      return opts.moduleId;\n\t    }\n\n\t    var filenameRelative = opts.filenameRelative;\n\t    var moduleName = \"\";\n\n\t    if (opts.moduleRoot != null) {\n\t      moduleName = opts.moduleRoot + \"/\";\n\t    }\n\n\t    if (!opts.filenameRelative) {\n\t      return moduleName + opts.filename.replace(/^\\//, \"\");\n\t    }\n\n\t    if (opts.sourceRoot != null) {\n\t      var sourceRootRegEx = new RegExp(\"^\" + opts.sourceRoot + \"\\/?\");\n\t      filenameRelative = filenameRelative.replace(sourceRootRegEx, \"\");\n\t    }\n\n\t    filenameRelative = filenameRelative.replace(/\\.(\\w*?)$/, \"\");\n\n\t    moduleName += filenameRelative;\n\n\t    moduleName = moduleName.replace(/\\\\/g, \"/\");\n\n\t    if (opts.getModuleId) {\n\t      return opts.getModuleId(moduleName) || moduleName;\n\t    } else {\n\t      return moduleName;\n\t    }\n\t  };\n\n\t  File.prototype.resolveModuleSource = function resolveModuleSource(source) {\n\t    var resolveModuleSource = this.opts.resolveModuleSource;\n\t    if (resolveModuleSource) source = resolveModuleSource(source, this.opts.filename);\n\t    return source;\n\t  };\n\n\t  File.prototype.addImport = function addImport(source, imported) {\n\t    var name = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : imported;\n\n\t    var alias = source + \":\" + imported;\n\t    var id = this.dynamicImportIds[alias];\n\n\t    if (!id) {\n\t      source = this.resolveModuleSource(source);\n\t      id = this.dynamicImportIds[alias] = this.scope.generateUidIdentifier(name);\n\n\t      var specifiers = [];\n\n\t      if (imported === \"*\") {\n\t        specifiers.push(t.importNamespaceSpecifier(id));\n\t      } else if (imported === \"default\") {\n\t        specifiers.push(t.importDefaultSpecifier(id));\n\t      } else {\n\t        specifiers.push(t.importSpecifier(id, t.identifier(imported)));\n\t      }\n\n\t      var declar = t.importDeclaration(specifiers, t.stringLiteral(source));\n\t      declar._blockHoist = 3;\n\n\t      this.path.unshiftContainer(\"body\", declar);\n\t    }\n\n\t    return id;\n\t  };\n\n\t  File.prototype.addHelper = function addHelper(name) {\n\t    var declar = this.declarations[name];\n\t    if (declar) return declar;\n\n\t    if (!this.usedHelpers[name]) {\n\t      this.metadata.usedHelpers.push(name);\n\t      this.usedHelpers[name] = true;\n\t    }\n\n\t    var generator = this.get(\"helperGenerator\");\n\t    var runtime = this.get(\"helpersNamespace\");\n\t    if (generator) {\n\t      var res = generator(name);\n\t      if (res) return res;\n\t    } else if (runtime) {\n\t      return t.memberExpression(runtime, t.identifier(name));\n\t    }\n\n\t    var ref = (0, _babelHelpers2.default)(name);\n\t    var uid = this.declarations[name] = this.scope.generateUidIdentifier(name);\n\n\t    if (t.isFunctionExpression(ref) && !ref.id) {\n\t      ref.body._compact = true;\n\t      ref._generated = true;\n\t      ref.id = uid;\n\t      ref.type = \"FunctionDeclaration\";\n\t      this.path.unshiftContainer(\"body\", ref);\n\t    } else {\n\t      ref._compact = true;\n\t      this.scope.push({\n\t        id: uid,\n\t        init: ref,\n\t        unique: true\n\t      });\n\t    }\n\n\t    return uid;\n\t  };\n\n\t  File.prototype.addTemplateObject = function addTemplateObject(helperName, strings, raw) {\n\t    var stringIds = raw.elements.map(function (string) {\n\t      return string.value;\n\t    });\n\t    var name = helperName + \"_\" + raw.elements.length + \"_\" + stringIds.join(\",\");\n\n\t    var declar = this.declarations[name];\n\t    if (declar) return declar;\n\n\t    var uid = this.declarations[name] = this.scope.generateUidIdentifier(\"templateObject\");\n\n\t    var helperId = this.addHelper(helperName);\n\t    var init = t.callExpression(helperId, [strings, raw]);\n\t    init._compact = true;\n\t    this.scope.push({\n\t      id: uid,\n\t      init: init,\n\t      _blockHoist: 1.9 });\n\t    return uid;\n\t  };\n\n\t  File.prototype.buildCodeFrameError = function buildCodeFrameError(node, msg) {\n\t    var Error = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : SyntaxError;\n\n\t    var loc = node && (node.loc || node._loc);\n\n\t    var err = new Error(msg);\n\n\t    if (loc) {\n\t      err.loc = loc.start;\n\t    } else {\n\t      (0, _babelTraverse2.default)(node, errorVisitor, this.scope, err);\n\n\t      err.message += \" (This is an error on an internal node. Probably an internal error\";\n\n\t      if (err.loc) {\n\t        err.message += \". Location has been estimated.\";\n\t      }\n\n\t      err.message += \")\";\n\t    }\n\n\t    return err;\n\t  };\n\n\t  File.prototype.mergeSourceMap = function mergeSourceMap(map) {\n\t    var inputMap = this.opts.inputSourceMap;\n\n\t    if (inputMap) {\n\t      var inputMapConsumer = new _sourceMap2.default.SourceMapConsumer(inputMap);\n\t      var outputMapConsumer = new _sourceMap2.default.SourceMapConsumer(map);\n\n\t      var mergedGenerator = new _sourceMap2.default.SourceMapGenerator({\n\t        file: inputMapConsumer.file,\n\t        sourceRoot: inputMapConsumer.sourceRoot\n\t      });\n\n\t      var source = outputMapConsumer.sources[0];\n\n\t      inputMapConsumer.eachMapping(function (mapping) {\n\t        var generatedPosition = outputMapConsumer.generatedPositionFor({\n\t          line: mapping.generatedLine,\n\t          column: mapping.generatedColumn,\n\t          source: source\n\t        });\n\t        if (generatedPosition.column != null) {\n\t          mergedGenerator.addMapping({\n\t            source: mapping.source,\n\n\t            original: mapping.source == null ? null : {\n\t              line: mapping.originalLine,\n\t              column: mapping.originalColumn\n\t            },\n\n\t            generated: generatedPosition\n\t          });\n\t        }\n\t      });\n\n\t      var mergedMap = mergedGenerator.toJSON();\n\t      inputMap.mappings = mergedMap.mappings;\n\t      return inputMap;\n\t    } else {\n\t      return map;\n\t    }\n\t  };\n\n\t  File.prototype.parse = function parse(code) {\n\t    var parseCode = _babylon.parse;\n\t    var parserOpts = this.opts.parserOpts;\n\n\t    if (parserOpts) {\n\t      parserOpts = (0, _assign2.default)({}, this.parserOpts, parserOpts);\n\n\t      if (parserOpts.parser) {\n\t        if (typeof parserOpts.parser === \"string\") {\n\t          var dirname = _path2.default.dirname(this.opts.filename) || process.cwd();\n\t          var parser = (0, _resolve2.default)(parserOpts.parser, dirname);\n\t          if (parser) {\n\t            parseCode = __webpack_require__(178)(parser).parse;\n\t          } else {\n\t            throw new Error(\"Couldn't find parser \" + parserOpts.parser + \" with \\\"parse\\\" method \" + (\"relative to directory \" + dirname));\n\t          }\n\t        } else {\n\t          parseCode = parserOpts.parser;\n\t        }\n\n\t        parserOpts.parser = {\n\t          parse: function parse(source) {\n\t            return (0, _babylon.parse)(source, parserOpts);\n\t          }\n\t        };\n\t      }\n\t    }\n\n\t    this.log.debug(\"Parse start\");\n\t    var ast = parseCode(code, parserOpts || this.parserOpts);\n\t    this.log.debug(\"Parse stop\");\n\t    return ast;\n\t  };\n\n\t  File.prototype._addAst = function _addAst(ast) {\n\t    this.path = _babelTraverse.NodePath.get({\n\t      hub: this.hub,\n\t      parentPath: null,\n\t      parent: ast,\n\t      container: ast,\n\t      key: \"program\"\n\t    }).setContext();\n\t    this.scope = this.path.scope;\n\t    this.ast = ast;\n\t    this.getMetadata();\n\t  };\n\n\t  File.prototype.addAst = function addAst(ast) {\n\t    this.log.debug(\"Start set AST\");\n\t    this._addAst(ast);\n\t    this.log.debug(\"End set AST\");\n\t  };\n\n\t  File.prototype.transform = function transform() {\n\t    for (var i = 0; i < this.pluginPasses.length; i++) {\n\t      var pluginPasses = this.pluginPasses[i];\n\t      this.call(\"pre\", pluginPasses);\n\t      this.log.debug(\"Start transform traverse\");\n\n\t      var visitor = _babelTraverse2.default.visitors.merge(this.pluginVisitors[i], pluginPasses, this.opts.wrapPluginVisitorMethod);\n\t      (0, _babelTraverse2.default)(this.ast, visitor, this.scope);\n\n\t      this.log.debug(\"End transform traverse\");\n\t      this.call(\"post\", pluginPasses);\n\t    }\n\n\t    return this.generate();\n\t  };\n\n\t  File.prototype.wrap = function wrap(code, callback) {\n\t    code = code + \"\";\n\n\t    try {\n\t      if (this.shouldIgnore()) {\n\t        return this.makeResult({ code: code, ignored: true });\n\t      } else {\n\t        return callback();\n\t      }\n\t    } catch (err) {\n\t      if (err._babel) {\n\t        throw err;\n\t      } else {\n\t        err._babel = true;\n\t      }\n\n\t      var message = err.message = this.opts.filename + \": \" + err.message;\n\n\t      var loc = err.loc;\n\t      if (loc) {\n\t        err.codeFrame = (0, _babelCodeFrame2.default)(code, loc.line, loc.column + 1, this.opts);\n\t        message += \"\\n\" + err.codeFrame;\n\t      }\n\n\t      if (process.browser) {\n\t        err.message = message;\n\t      }\n\n\t      if (err.stack) {\n\t        var newStack = err.stack.replace(err.message, message);\n\t        err.stack = newStack;\n\t      }\n\n\t      throw err;\n\t    }\n\t  };\n\n\t  File.prototype.addCode = function addCode(code) {\n\t    code = (code || \"\") + \"\";\n\t    code = this.parseInputSourceMap(code);\n\t    this.code = code;\n\t  };\n\n\t  File.prototype.parseCode = function parseCode() {\n\t    this.parseShebang();\n\t    var ast = this.parse(this.code);\n\t    this.addAst(ast);\n\t  };\n\n\t  File.prototype.shouldIgnore = function shouldIgnore() {\n\t    var opts = this.opts;\n\t    return util.shouldIgnore(opts.filename, opts.ignore, opts.only);\n\t  };\n\n\t  File.prototype.call = function call(key, pluginPasses) {\n\t    for (var _iterator3 = pluginPasses, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var pass = _ref3;\n\n\t      var plugin = pass.plugin;\n\t      var fn = plugin[key];\n\t      if (fn) fn.call(pass, this);\n\t    }\n\t  };\n\n\t  File.prototype.parseInputSourceMap = function parseInputSourceMap(code) {\n\t    var opts = this.opts;\n\n\t    if (opts.inputSourceMap !== false) {\n\t      var inputMap = _convertSourceMap2.default.fromSource(code);\n\t      if (inputMap) {\n\t        opts.inputSourceMap = inputMap.toObject();\n\t        code = _convertSourceMap2.default.removeComments(code);\n\t      }\n\t    }\n\n\t    return code;\n\t  };\n\n\t  File.prototype.parseShebang = function parseShebang() {\n\t    var shebangMatch = shebangRegex.exec(this.code);\n\t    if (shebangMatch) {\n\t      this.shebang = shebangMatch[0];\n\t      this.code = this.code.replace(shebangRegex, \"\");\n\t    }\n\t  };\n\n\t  File.prototype.makeResult = function makeResult(_ref4) {\n\t    var code = _ref4.code,\n\t        map = _ref4.map,\n\t        ast = _ref4.ast,\n\t        ignored = _ref4.ignored;\n\n\t    var result = {\n\t      metadata: null,\n\t      options: this.opts,\n\t      ignored: !!ignored,\n\t      code: null,\n\t      ast: null,\n\t      map: map || null\n\t    };\n\n\t    if (this.opts.code) {\n\t      result.code = code;\n\t    }\n\n\t    if (this.opts.ast) {\n\t      result.ast = ast;\n\t    }\n\n\t    if (this.opts.metadata) {\n\t      result.metadata = this.metadata;\n\t    }\n\n\t    return result;\n\t  };\n\n\t  File.prototype.generate = function generate() {\n\t    var opts = this.opts;\n\t    var ast = this.ast;\n\n\t    var result = { ast: ast };\n\t    if (!opts.code) return this.makeResult(result);\n\n\t    var gen = _babelGenerator2.default;\n\t    if (opts.generatorOpts.generator) {\n\t      gen = opts.generatorOpts.generator;\n\n\t      if (typeof gen === \"string\") {\n\t        var dirname = _path2.default.dirname(this.opts.filename) || process.cwd();\n\t        var generator = (0, _resolve2.default)(gen, dirname);\n\t        if (generator) {\n\t          gen = __webpack_require__(178)(generator).print;\n\t        } else {\n\t          throw new Error(\"Couldn't find generator \" + gen + \" with \\\"print\\\" method relative \" + (\"to directory \" + dirname));\n\t        }\n\t      }\n\t    }\n\n\t    this.log.debug(\"Generation start\");\n\n\t    var _result = gen(ast, opts.generatorOpts ? (0, _assign2.default)(opts, opts.generatorOpts) : opts, this.code);\n\t    result.code = _result.code;\n\t    result.map = _result.map;\n\n\t    this.log.debug(\"Generation end\");\n\n\t    if (this.shebang) {\n\t      result.code = this.shebang + \"\\n\" + result.code;\n\t    }\n\n\t    if (result.map) {\n\t      result.map = this.mergeSourceMap(result.map);\n\t    }\n\n\t    if (opts.sourceMaps === \"inline\" || opts.sourceMaps === \"both\") {\n\t      result.code += \"\\n\" + _convertSourceMap2.default.fromObject(result.map).toComment();\n\t    }\n\n\t    if (opts.sourceMaps === \"inline\") {\n\t      result.map = null;\n\t    }\n\n\t    return this.makeResult(result);\n\t  };\n\n\t  return File;\n\t}(_store2.default);\n\n\texports.default = File;\n\texports.File = File;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 51 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _assign = __webpack_require__(87);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\texports.default = buildConfigChain;\n\n\tvar _resolve = __webpack_require__(118);\n\n\tvar _resolve2 = _interopRequireDefault(_resolve);\n\n\tvar _json = __webpack_require__(470);\n\n\tvar _json2 = _interopRequireDefault(_json);\n\n\tvar _pathIsAbsolute = __webpack_require__(604);\n\n\tvar _pathIsAbsolute2 = _interopRequireDefault(_pathIsAbsolute);\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _path2 = _interopRequireDefault(_path);\n\n\tvar _fs = __webpack_require__(115);\n\n\tvar _fs2 = _interopRequireDefault(_fs);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar existsCache = {};\n\tvar jsonCache = {};\n\n\tvar BABELIGNORE_FILENAME = \".babelignore\";\n\tvar BABELRC_FILENAME = \".babelrc\";\n\tvar PACKAGE_FILENAME = \"package.json\";\n\n\tfunction exists(filename) {\n\t  var cached = existsCache[filename];\n\t  if (cached == null) {\n\t    return existsCache[filename] = _fs2.default.existsSync(filename);\n\t  } else {\n\t    return cached;\n\t  }\n\t}\n\n\tfunction buildConfigChain() {\n\t  var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\t  var log = arguments[1];\n\n\t  var filename = opts.filename;\n\t  var builder = new ConfigChainBuilder(log);\n\n\t  if (opts.babelrc !== false) {\n\t    builder.findConfigs(filename);\n\t  }\n\n\t  builder.mergeConfig({\n\t    options: opts,\n\t    alias: \"base\",\n\t    dirname: filename && _path2.default.dirname(filename)\n\t  });\n\n\t  return builder.configs;\n\t}\n\n\tvar ConfigChainBuilder = function () {\n\t  function ConfigChainBuilder(log) {\n\t    (0, _classCallCheck3.default)(this, ConfigChainBuilder);\n\n\t    this.resolvedConfigs = [];\n\t    this.configs = [];\n\t    this.log = log;\n\t  }\n\n\t  ConfigChainBuilder.prototype.findConfigs = function findConfigs(loc) {\n\t    if (!loc) return;\n\n\t    if (!(0, _pathIsAbsolute2.default)(loc)) {\n\t      loc = _path2.default.join(process.cwd(), loc);\n\t    }\n\n\t    var foundConfig = false;\n\t    var foundIgnore = false;\n\n\t    while (loc !== (loc = _path2.default.dirname(loc))) {\n\t      if (!foundConfig) {\n\t        var configLoc = _path2.default.join(loc, BABELRC_FILENAME);\n\t        if (exists(configLoc)) {\n\t          this.addConfig(configLoc);\n\t          foundConfig = true;\n\t        }\n\n\t        var pkgLoc = _path2.default.join(loc, PACKAGE_FILENAME);\n\t        if (!foundConfig && exists(pkgLoc)) {\n\t          foundConfig = this.addConfig(pkgLoc, \"babel\", JSON);\n\t        }\n\t      }\n\n\t      if (!foundIgnore) {\n\t        var ignoreLoc = _path2.default.join(loc, BABELIGNORE_FILENAME);\n\t        if (exists(ignoreLoc)) {\n\t          this.addIgnoreConfig(ignoreLoc);\n\t          foundIgnore = true;\n\t        }\n\t      }\n\n\t      if (foundIgnore && foundConfig) return;\n\t    }\n\t  };\n\n\t  ConfigChainBuilder.prototype.addIgnoreConfig = function addIgnoreConfig(loc) {\n\t    var file = _fs2.default.readFileSync(loc, \"utf8\");\n\t    var lines = file.split(\"\\n\");\n\n\t    lines = lines.map(function (line) {\n\t      return line.replace(/#(.*?)$/, \"\").trim();\n\t    }).filter(function (line) {\n\t      return !!line;\n\t    });\n\n\t    if (lines.length) {\n\t      this.mergeConfig({\n\t        options: { ignore: lines },\n\t        alias: loc,\n\t        dirname: _path2.default.dirname(loc)\n\t      });\n\t    }\n\t  };\n\n\t  ConfigChainBuilder.prototype.addConfig = function addConfig(loc, key) {\n\t    var json = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : _json2.default;\n\n\t    if (this.resolvedConfigs.indexOf(loc) >= 0) {\n\t      return false;\n\t    }\n\n\t    this.resolvedConfigs.push(loc);\n\n\t    var content = _fs2.default.readFileSync(loc, \"utf8\");\n\t    var options = void 0;\n\n\t    try {\n\t      options = jsonCache[content] = jsonCache[content] || json.parse(content);\n\t      if (key) options = options[key];\n\t    } catch (err) {\n\t      err.message = loc + \": Error while parsing JSON - \" + err.message;\n\t      throw err;\n\t    }\n\n\t    this.mergeConfig({\n\t      options: options,\n\t      alias: loc,\n\t      dirname: _path2.default.dirname(loc)\n\t    });\n\n\t    return !!options;\n\t  };\n\n\t  ConfigChainBuilder.prototype.mergeConfig = function mergeConfig(_ref) {\n\t    var options = _ref.options,\n\t        alias = _ref.alias,\n\t        loc = _ref.loc,\n\t        dirname = _ref.dirname;\n\n\t    if (!options) {\n\t      return false;\n\t    }\n\n\t    options = (0, _assign2.default)({}, options);\n\n\t    dirname = dirname || process.cwd();\n\t    loc = loc || alias;\n\n\t    if (options.extends) {\n\t      var extendsLoc = (0, _resolve2.default)(options.extends, dirname);\n\t      if (extendsLoc) {\n\t        this.addConfig(extendsLoc);\n\t      } else {\n\t        if (this.log) this.log.error(\"Couldn't resolve extends clause of \" + options.extends + \" in \" + alias);\n\t      }\n\t      delete options.extends;\n\t    }\n\n\t    this.configs.push({\n\t      options: options,\n\t      alias: alias,\n\t      loc: loc,\n\t      dirname: dirname\n\t    });\n\n\t    var envOpts = void 0;\n\t    var envKey = process.env.BABEL_ENV || (\"production\") || \"development\";\n\t    if (options.env) {\n\t      envOpts = options.env[envKey];\n\t      delete options.env;\n\t    }\n\n\t    this.mergeConfig({\n\t      options: envOpts,\n\t      alias: alias + \".env.\" + envKey,\n\t      dirname: dirname\n\t    });\n\t  };\n\n\t  return ConfigChainBuilder;\n\t}();\n\n\tmodule.exports = exports[\"default\"];\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 52 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.config = undefined;\n\texports.normaliseOptions = normaliseOptions;\n\n\tvar _parsers = __webpack_require__(53);\n\n\tvar parsers = _interopRequireWildcard(_parsers);\n\n\tvar _config = __webpack_require__(33);\n\n\tvar _config2 = _interopRequireDefault(_config);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\texports.config = _config2.default;\n\tfunction normaliseOptions() {\n\t  var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n\n\t  for (var key in options) {\n\t    var val = options[key];\n\t    if (val == null) continue;\n\n\t    var opt = _config2.default[key];\n\t    if (opt && opt.alias) opt = _config2.default[opt.alias];\n\t    if (!opt) continue;\n\n\t    var parser = parsers[opt.type];\n\t    if (parser) val = parser(val);\n\n\t    options[key] = val;\n\t  }\n\n\t  return options;\n\t}\n\n/***/ }),\n/* 53 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.filename = undefined;\n\texports.boolean = boolean;\n\texports.booleanString = booleanString;\n\texports.list = list;\n\n\tvar _slash = __webpack_require__(284);\n\n\tvar _slash2 = _interopRequireDefault(_slash);\n\n\tvar _util = __webpack_require__(122);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar filename = exports.filename = _slash2.default;\n\n\tfunction boolean(val) {\n\t  return !!val;\n\t}\n\n\tfunction booleanString(val) {\n\t  return util.booleanify(val);\n\t}\n\n\tfunction list(val) {\n\t  return util.list(val);\n\t}\n\n/***/ }),\n/* 54 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = {\n\t  \"auxiliaryComment\": {\n\t    \"message\": \"Use `auxiliaryCommentBefore` or `auxiliaryCommentAfter`\"\n\t  },\n\t  \"blacklist\": {\n\t    \"message\": \"Put the specific transforms you want in the `plugins` option\"\n\t  },\n\t  \"breakConfig\": {\n\t    \"message\": \"This is not a necessary option in Babel 6\"\n\t  },\n\t  \"experimental\": {\n\t    \"message\": \"Put the specific transforms you want in the `plugins` option\"\n\t  },\n\t  \"externalHelpers\": {\n\t    \"message\": \"Use the `external-helpers` plugin instead. Check out http://babeljs.io/docs/plugins/external-helpers/\"\n\t  },\n\t  \"extra\": {\n\t    \"message\": \"\"\n\t  },\n\t  \"jsxPragma\": {\n\t    \"message\": \"use the `pragma` option in the `react-jsx` plugin . Check out http://babeljs.io/docs/plugins/transform-react-jsx/\"\n\t  },\n\n\t  \"loose\": {\n\t    \"message\": \"Specify the `loose` option for the relevant plugin you are using or use a preset that sets the option.\"\n\t  },\n\t  \"metadataUsedHelpers\": {\n\t    \"message\": \"Not required anymore as this is enabled by default\"\n\t  },\n\t  \"modules\": {\n\t    \"message\": \"Use the corresponding module transform plugin in the `plugins` option. Check out http://babeljs.io/docs/plugins/#modules\"\n\t  },\n\t  \"nonStandard\": {\n\t    \"message\": \"Use the `react-jsx` and `flow-strip-types` plugins to support JSX and Flow. Also check out the react preset http://babeljs.io/docs/plugins/preset-react/\"\n\t  },\n\t  \"optional\": {\n\t    \"message\": \"Put the specific transforms you want in the `plugins` option\"\n\t  },\n\t  \"sourceMapName\": {\n\t    \"message\": \"Use the `sourceMapTarget` option\"\n\t  },\n\t  \"stage\": {\n\t    \"message\": \"Check out the corresponding stage-x presets http://babeljs.io/docs/plugins/#presets\"\n\t  },\n\t  \"whitelist\": {\n\t    \"message\": \"Put the specific transforms you want in the `plugins` option\"\n\t  }\n\t};\n\n/***/ }),\n/* 55 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar ctx = __webpack_require__(43);\n\tvar call = __webpack_require__(428);\n\tvar isArrayIter = __webpack_require__(427);\n\tvar anObject = __webpack_require__(21);\n\tvar toLength = __webpack_require__(153);\n\tvar getIterFn = __webpack_require__(238);\n\tvar BREAK = {};\n\tvar RETURN = {};\n\tvar _exports = module.exports = function (iterable, entries, fn, that, ITERATOR) {\n\t  var iterFn = ITERATOR ? function () {\n\t    return iterable;\n\t  } : getIterFn(iterable);\n\t  var f = ctx(fn, that, entries ? 2 : 1);\n\t  var index = 0;\n\t  var length, step, iterator, result;\n\t  if (typeof iterFn != 'function') throw TypeError(iterable + ' is not iterable!');\n\t  // fast case for arrays with default iterator\n\t  if (isArrayIter(iterFn)) for (length = toLength(iterable.length); length > index; index++) {\n\t    result = entries ? f(anObject(step = iterable[index])[0], step[1]) : f(iterable[index]);\n\t    if (result === BREAK || result === RETURN) return result;\n\t  } else for (iterator = iterFn.call(iterable); !(step = iterator.next()).done;) {\n\t    result = call(iterator, f, step.value, entries);\n\t    if (result === BREAK || result === RETURN) return result;\n\t  }\n\t};\n\t_exports.BREAK = BREAK;\n\t_exports.RETURN = RETURN;\n\n/***/ }),\n/* 56 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = {};\n\n/***/ }),\n/* 57 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar META = __webpack_require__(95)('meta');\n\tvar isObject = __webpack_require__(16);\n\tvar has = __webpack_require__(28);\n\tvar setDesc = __webpack_require__(23).f;\n\tvar id = 0;\n\tvar isExtensible = Object.isExtensible || function () {\n\t  return true;\n\t};\n\tvar FREEZE = !__webpack_require__(27)(function () {\n\t  return isExtensible(Object.preventExtensions({}));\n\t});\n\tvar setMeta = function setMeta(it) {\n\t  setDesc(it, META, { value: {\n\t      i: 'O' + ++id, // object ID\n\t      w: {} // weak collections IDs\n\t    } });\n\t};\n\tvar fastKey = function fastKey(it, create) {\n\t  // return primitive with prefix\n\t  if (!isObject(it)) return (typeof it === 'undefined' ? 'undefined' : _typeof(it)) == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n\t  if (!has(it, META)) {\n\t    // can't set metadata to uncaught frozen object\n\t    if (!isExtensible(it)) return 'F';\n\t    // not necessary to add metadata\n\t    if (!create) return 'E';\n\t    // add missing metadata\n\t    setMeta(it);\n\t    // return object ID\n\t  }return it[META].i;\n\t};\n\tvar getWeak = function getWeak(it, create) {\n\t  if (!has(it, META)) {\n\t    // can't set metadata to uncaught frozen object\n\t    if (!isExtensible(it)) return true;\n\t    // not necessary to add metadata\n\t    if (!create) return false;\n\t    // add missing metadata\n\t    setMeta(it);\n\t    // return hash weak collections IDs\n\t  }return it[META].w;\n\t};\n\t// add metadata on freeze-family methods calling\n\tvar onFreeze = function onFreeze(it) {\n\t  if (FREEZE && meta.NEED && isExtensible(it) && !has(it, META)) setMeta(it);\n\t  return it;\n\t};\n\tvar meta = module.exports = {\n\t  KEY: META,\n\t  NEED: false,\n\t  fastKey: fastKey,\n\t  getWeak: getWeak,\n\t  onFreeze: onFreeze\n\t};\n\n/***/ }),\n/* 58 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(16);\n\tmodule.exports = function (it, TYPE) {\n\t  if (!isObject(it) || it._t !== TYPE) throw TypeError('Incompatible receiver, ' + TYPE + ' required!');\n\t  return it;\n\t};\n\n/***/ }),\n/* 59 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(440);\n\tvar global = __webpack_require__(15);\n\tvar hide = __webpack_require__(29);\n\tvar Iterators = __webpack_require__(56);\n\tvar TO_STRING_TAG = __webpack_require__(13)('toStringTag');\n\n\tvar DOMIterables = ('CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,' + 'DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,' + 'MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,' + 'SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,' + 'TextTrackList,TouchList').split(',');\n\n\tfor (var i = 0; i < DOMIterables.length; i++) {\n\t  var NAME = DOMIterables[i];\n\t  var Collection = global[NAME];\n\t  var proto = Collection && Collection.prototype;\n\t  if (proto && !proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);\n\t  Iterators[NAME] = Iterators.Array;\n\t}\n\n/***/ }),\n/* 60 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `_.map` for arrays without support for iteratee\n\t * shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array} Returns the new mapped array.\n\t */\n\tfunction arrayMap(array, iteratee) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length,\n\t      result = Array(length);\n\n\t  while (++index < length) {\n\t    result[index] = iteratee(array[index], index, array);\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = arrayMap;\n\n/***/ }),\n/* 61 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar baseMatches = __webpack_require__(502),\n\t    baseMatchesProperty = __webpack_require__(503),\n\t    identity = __webpack_require__(110),\n\t    isArray = __webpack_require__(6),\n\t    property = __webpack_require__(592);\n\n\t/**\n\t * The base implementation of `_.iteratee`.\n\t *\n\t * @private\n\t * @param {*} [value=_.identity] The value to convert to an iteratee.\n\t * @returns {Function} Returns the iteratee.\n\t */\n\tfunction baseIteratee(value) {\n\t  // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9.\n\t  // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details.\n\t  if (typeof value == 'function') {\n\t    return value;\n\t  }\n\t  if (value == null) {\n\t    return identity;\n\t  }\n\t  if ((typeof value === 'undefined' ? 'undefined' : _typeof(value)) == 'object') {\n\t    return isArray(value) ? baseMatchesProperty(value[0], value[1]) : baseMatches(value);\n\t  }\n\t  return property(value);\n\t}\n\n\tmodule.exports = baseIteratee;\n\n/***/ }),\n/* 62 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** `Object#toString` result references. */\n\tvar symbolTag = '[object Symbol]';\n\n\t/**\n\t * Checks if `value` is classified as a `Symbol` primitive or object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\n\t * @example\n\t *\n\t * _.isSymbol(Symbol.iterator);\n\t * // => true\n\t *\n\t * _.isSymbol('abc');\n\t * // => false\n\t */\n\tfunction isSymbol(value) {\n\t    return (typeof value === 'undefined' ? 'undefined' : _typeof(value)) == 'symbol' || isObjectLike(value) && baseGetTag(value) == symbolTag;\n\t}\n\n\tmodule.exports = isSymbol;\n\n/***/ }),\n/* 63 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\t/**\n\t * This is a helper function for getting values from parameter/options\n\t * objects.\n\t *\n\t * @param args The object we are extracting values from\n\t * @param name The name of the property we are getting.\n\t * @param defaultValue An optional value to return if the property is missing\n\t * from the object. If this is not specified and the property is missing, an\n\t * error will be thrown.\n\t */\n\tfunction getArg(aArgs, aName, aDefaultValue) {\n\t  if (aName in aArgs) {\n\t    return aArgs[aName];\n\t  } else if (arguments.length === 3) {\n\t    return aDefaultValue;\n\t  } else {\n\t    throw new Error('\"' + aName + '\" is a required argument.');\n\t  }\n\t}\n\texports.getArg = getArg;\n\n\tvar urlRegexp = /^(?:([\\w+\\-.]+):)?\\/\\/(?:(\\w+:\\w+)@)?([\\w.]*)(?::(\\d+))?(\\S*)$/;\n\tvar dataUrlRegexp = /^data:.+\\,.+$/;\n\n\tfunction urlParse(aUrl) {\n\t  var match = aUrl.match(urlRegexp);\n\t  if (!match) {\n\t    return null;\n\t  }\n\t  return {\n\t    scheme: match[1],\n\t    auth: match[2],\n\t    host: match[3],\n\t    port: match[4],\n\t    path: match[5]\n\t  };\n\t}\n\texports.urlParse = urlParse;\n\n\tfunction urlGenerate(aParsedUrl) {\n\t  var url = '';\n\t  if (aParsedUrl.scheme) {\n\t    url += aParsedUrl.scheme + ':';\n\t  }\n\t  url += '//';\n\t  if (aParsedUrl.auth) {\n\t    url += aParsedUrl.auth + '@';\n\t  }\n\t  if (aParsedUrl.host) {\n\t    url += aParsedUrl.host;\n\t  }\n\t  if (aParsedUrl.port) {\n\t    url += \":\" + aParsedUrl.port;\n\t  }\n\t  if (aParsedUrl.path) {\n\t    url += aParsedUrl.path;\n\t  }\n\t  return url;\n\t}\n\texports.urlGenerate = urlGenerate;\n\n\t/**\n\t * Normalizes a path, or the path portion of a URL:\n\t *\n\t * - Replaces consecutive slashes with one slash.\n\t * - Removes unnecessary '.' parts.\n\t * - Removes unnecessary '<dir>/..' parts.\n\t *\n\t * Based on code in the Node.js 'path' core module.\n\t *\n\t * @param aPath The path or url to normalize.\n\t */\n\tfunction normalize(aPath) {\n\t  var path = aPath;\n\t  var url = urlParse(aPath);\n\t  if (url) {\n\t    if (!url.path) {\n\t      return aPath;\n\t    }\n\t    path = url.path;\n\t  }\n\t  var isAbsolute = exports.isAbsolute(path);\n\n\t  var parts = path.split(/\\/+/);\n\t  for (var part, up = 0, i = parts.length - 1; i >= 0; i--) {\n\t    part = parts[i];\n\t    if (part === '.') {\n\t      parts.splice(i, 1);\n\t    } else if (part === '..') {\n\t      up++;\n\t    } else if (up > 0) {\n\t      if (part === '') {\n\t        // The first part is blank if the path is absolute. Trying to go\n\t        // above the root is a no-op. Therefore we can remove all '..' parts\n\t        // directly after the root.\n\t        parts.splice(i + 1, up);\n\t        up = 0;\n\t      } else {\n\t        parts.splice(i, 2);\n\t        up--;\n\t      }\n\t    }\n\t  }\n\t  path = parts.join('/');\n\n\t  if (path === '') {\n\t    path = isAbsolute ? '/' : '.';\n\t  }\n\n\t  if (url) {\n\t    url.path = path;\n\t    return urlGenerate(url);\n\t  }\n\t  return path;\n\t}\n\texports.normalize = normalize;\n\n\t/**\n\t * Joins two paths/URLs.\n\t *\n\t * @param aRoot The root path or URL.\n\t * @param aPath The path or URL to be joined with the root.\n\t *\n\t * - If aPath is a URL or a data URI, aPath is returned, unless aPath is a\n\t *   scheme-relative URL: Then the scheme of aRoot, if any, is prepended\n\t *   first.\n\t * - Otherwise aPath is a path. If aRoot is a URL, then its path portion\n\t *   is updated with the result and aRoot is returned. Otherwise the result\n\t *   is returned.\n\t *   - If aPath is absolute, the result is aPath.\n\t *   - Otherwise the two paths are joined with a slash.\n\t * - Joining for example 'http://' and 'www.example.com' is also supported.\n\t */\n\tfunction join(aRoot, aPath) {\n\t  if (aRoot === \"\") {\n\t    aRoot = \".\";\n\t  }\n\t  if (aPath === \"\") {\n\t    aPath = \".\";\n\t  }\n\t  var aPathUrl = urlParse(aPath);\n\t  var aRootUrl = urlParse(aRoot);\n\t  if (aRootUrl) {\n\t    aRoot = aRootUrl.path || '/';\n\t  }\n\n\t  // `join(foo, '//www.example.org')`\n\t  if (aPathUrl && !aPathUrl.scheme) {\n\t    if (aRootUrl) {\n\t      aPathUrl.scheme = aRootUrl.scheme;\n\t    }\n\t    return urlGenerate(aPathUrl);\n\t  }\n\n\t  if (aPathUrl || aPath.match(dataUrlRegexp)) {\n\t    return aPath;\n\t  }\n\n\t  // `join('http://', 'www.example.com')`\n\t  if (aRootUrl && !aRootUrl.host && !aRootUrl.path) {\n\t    aRootUrl.host = aPath;\n\t    return urlGenerate(aRootUrl);\n\t  }\n\n\t  var joined = aPath.charAt(0) === '/' ? aPath : normalize(aRoot.replace(/\\/+$/, '') + '/' + aPath);\n\n\t  if (aRootUrl) {\n\t    aRootUrl.path = joined;\n\t    return urlGenerate(aRootUrl);\n\t  }\n\t  return joined;\n\t}\n\texports.join = join;\n\n\texports.isAbsolute = function (aPath) {\n\t  return aPath.charAt(0) === '/' || !!aPath.match(urlRegexp);\n\t};\n\n\t/**\n\t * Make a path relative to a URL or another path.\n\t *\n\t * @param aRoot The root path or URL.\n\t * @param aPath The path or URL to be made relative to aRoot.\n\t */\n\tfunction relative(aRoot, aPath) {\n\t  if (aRoot === \"\") {\n\t    aRoot = \".\";\n\t  }\n\n\t  aRoot = aRoot.replace(/\\/$/, '');\n\n\t  // It is possible for the path to be above the root. In this case, simply\n\t  // checking whether the root is a prefix of the path won't work. Instead, we\n\t  // need to remove components from the root one by one, until either we find\n\t  // a prefix that fits, or we run out of components to remove.\n\t  var level = 0;\n\t  while (aPath.indexOf(aRoot + '/') !== 0) {\n\t    var index = aRoot.lastIndexOf(\"/\");\n\t    if (index < 0) {\n\t      return aPath;\n\t    }\n\n\t    // If the only part of the root that is left is the scheme (i.e. http://,\n\t    // file:///, etc.), one or more slashes (/), or simply nothing at all, we\n\t    // have exhausted all components, so the path is not relative to the root.\n\t    aRoot = aRoot.slice(0, index);\n\t    if (aRoot.match(/^([^\\/]+:\\/)?\\/*$/)) {\n\t      return aPath;\n\t    }\n\n\t    ++level;\n\t  }\n\n\t  // Make sure we add a \"../\" for each component we removed from the root.\n\t  return Array(level + 1).join(\"../\") + aPath.substr(aRoot.length + 1);\n\t}\n\texports.relative = relative;\n\n\tvar supportsNullProto = function () {\n\t  var obj = Object.create(null);\n\t  return !('__proto__' in obj);\n\t}();\n\n\tfunction identity(s) {\n\t  return s;\n\t}\n\n\t/**\n\t * Because behavior goes wacky when you set `__proto__` on objects, we\n\t * have to prefix all the strings in our set with an arbitrary character.\n\t *\n\t * See https://github.com/mozilla/source-map/pull/31 and\n\t * https://github.com/mozilla/source-map/issues/30\n\t *\n\t * @param String aStr\n\t */\n\tfunction toSetString(aStr) {\n\t  if (isProtoString(aStr)) {\n\t    return '$' + aStr;\n\t  }\n\n\t  return aStr;\n\t}\n\texports.toSetString = supportsNullProto ? identity : toSetString;\n\n\tfunction fromSetString(aStr) {\n\t  if (isProtoString(aStr)) {\n\t    return aStr.slice(1);\n\t  }\n\n\t  return aStr;\n\t}\n\texports.fromSetString = supportsNullProto ? identity : fromSetString;\n\n\tfunction isProtoString(s) {\n\t  if (!s) {\n\t    return false;\n\t  }\n\n\t  var length = s.length;\n\n\t  if (length < 9 /* \"__proto__\".length */) {\n\t      return false;\n\t    }\n\n\t  if (s.charCodeAt(length - 1) !== 95 /* '_' */ || s.charCodeAt(length - 2) !== 95 /* '_' */ || s.charCodeAt(length - 3) !== 111 /* 'o' */ || s.charCodeAt(length - 4) !== 116 /* 't' */ || s.charCodeAt(length - 5) !== 111 /* 'o' */ || s.charCodeAt(length - 6) !== 114 /* 'r' */ || s.charCodeAt(length - 7) !== 112 /* 'p' */ || s.charCodeAt(length - 8) !== 95 /* '_' */ || s.charCodeAt(length - 9) !== 95 /* '_' */) {\n\t      return false;\n\t    }\n\n\t  for (var i = length - 10; i >= 0; i--) {\n\t    if (s.charCodeAt(i) !== 36 /* '$' */) {\n\t        return false;\n\t      }\n\t  }\n\n\t  return true;\n\t}\n\n\t/**\n\t * Comparator between two mappings where the original positions are compared.\n\t *\n\t * Optionally pass in `true` as `onlyCompareGenerated` to consider two\n\t * mappings with the same original source/line/column, but different generated\n\t * line and column the same. Useful when searching for a mapping with a\n\t * stubbed out mapping.\n\t */\n\tfunction compareByOriginalPositions(mappingA, mappingB, onlyCompareOriginal) {\n\t  var cmp = mappingA.source - mappingB.source;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.originalLine - mappingB.originalLine;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.originalColumn - mappingB.originalColumn;\n\t  if (cmp !== 0 || onlyCompareOriginal) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.generatedColumn - mappingB.generatedColumn;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.generatedLine - mappingB.generatedLine;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  return mappingA.name - mappingB.name;\n\t}\n\texports.compareByOriginalPositions = compareByOriginalPositions;\n\n\t/**\n\t * Comparator between two mappings with deflated source and name indices where\n\t * the generated positions are compared.\n\t *\n\t * Optionally pass in `true` as `onlyCompareGenerated` to consider two\n\t * mappings with the same generated line and column, but different\n\t * source/name/original line and column the same. Useful when searching for a\n\t * mapping with a stubbed out mapping.\n\t */\n\tfunction compareByGeneratedPositionsDeflated(mappingA, mappingB, onlyCompareGenerated) {\n\t  var cmp = mappingA.generatedLine - mappingB.generatedLine;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.generatedColumn - mappingB.generatedColumn;\n\t  if (cmp !== 0 || onlyCompareGenerated) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.source - mappingB.source;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.originalLine - mappingB.originalLine;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.originalColumn - mappingB.originalColumn;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  return mappingA.name - mappingB.name;\n\t}\n\texports.compareByGeneratedPositionsDeflated = compareByGeneratedPositionsDeflated;\n\n\tfunction strcmp(aStr1, aStr2) {\n\t  if (aStr1 === aStr2) {\n\t    return 0;\n\t  }\n\n\t  if (aStr1 > aStr2) {\n\t    return 1;\n\t  }\n\n\t  return -1;\n\t}\n\n\t/**\n\t * Comparator between two mappings with inflated source and name strings where\n\t * the generated positions are compared.\n\t */\n\tfunction compareByGeneratedPositionsInflated(mappingA, mappingB) {\n\t  var cmp = mappingA.generatedLine - mappingB.generatedLine;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.generatedColumn - mappingB.generatedColumn;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = strcmp(mappingA.source, mappingB.source);\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.originalLine - mappingB.originalLine;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  cmp = mappingA.originalColumn - mappingB.originalColumn;\n\t  if (cmp !== 0) {\n\t    return cmp;\n\t  }\n\n\t  return strcmp(mappingA.name, mappingB.name);\n\t}\n\texports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflated;\n\n/***/ }),\n/* 64 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(global) {'use strict';\n\n\t// compare and isBuffer taken from https://github.com/feross/buffer/blob/680e9e5e488f22aac27599a57dc844a6315928dd/index.js\n\t// original notice:\n\n\t/*!\n\t * The buffer module from node.js, for the browser.\n\t *\n\t * @author   Feross Aboukhadijeh <feross@feross.org> <http://feross.org>\n\t * @license  MIT\n\t */\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tfunction compare(a, b) {\n\t  if (a === b) {\n\t    return 0;\n\t  }\n\n\t  var x = a.length;\n\t  var y = b.length;\n\n\t  for (var i = 0, len = Math.min(x, y); i < len; ++i) {\n\t    if (a[i] !== b[i]) {\n\t      x = a[i];\n\t      y = b[i];\n\t      break;\n\t    }\n\t  }\n\n\t  if (x < y) {\n\t    return -1;\n\t  }\n\t  if (y < x) {\n\t    return 1;\n\t  }\n\t  return 0;\n\t}\n\tfunction isBuffer(b) {\n\t  if (global.Buffer && typeof global.Buffer.isBuffer === 'function') {\n\t    return global.Buffer.isBuffer(b);\n\t  }\n\t  return !!(b != null && b._isBuffer);\n\t}\n\n\t// based on node assert, original notice:\n\n\t// http://wiki.commonjs.org/wiki/Unit_Testing/1.0\n\t//\n\t// THIS IS NOT TESTED NOR LIKELY TO WORK OUTSIDE V8!\n\t//\n\t// Originally from narwhal.js (http://narwhaljs.org)\n\t// Copyright (c) 2009 Thomas Robinson <280north.com>\n\t//\n\t// Permission is hereby granted, free of charge, to any person obtaining a copy\n\t// of this software and associated documentation files (the 'Software'), to\n\t// deal in the Software without restriction, including without limitation the\n\t// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n\t// sell copies of the Software, and to permit persons to whom the Software is\n\t// furnished to do so, subject to the following conditions:\n\t//\n\t// The above copyright notice and this permission notice shall be included in\n\t// all copies or substantial portions of the Software.\n\t//\n\t// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n\t// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n\t// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n\t// AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN\n\t// ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\n\t// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\tvar util = __webpack_require__(117);\n\tvar hasOwn = Object.prototype.hasOwnProperty;\n\tvar pSlice = Array.prototype.slice;\n\tvar functionsHaveNames = function () {\n\t  return function foo() {}.name === 'foo';\n\t}();\n\tfunction pToString(obj) {\n\t  return Object.prototype.toString.call(obj);\n\t}\n\tfunction isView(arrbuf) {\n\t  if (isBuffer(arrbuf)) {\n\t    return false;\n\t  }\n\t  if (typeof global.ArrayBuffer !== 'function') {\n\t    return false;\n\t  }\n\t  if (typeof ArrayBuffer.isView === 'function') {\n\t    return ArrayBuffer.isView(arrbuf);\n\t  }\n\t  if (!arrbuf) {\n\t    return false;\n\t  }\n\t  if (arrbuf instanceof DataView) {\n\t    return true;\n\t  }\n\t  if (arrbuf.buffer && arrbuf.buffer instanceof ArrayBuffer) {\n\t    return true;\n\t  }\n\t  return false;\n\t}\n\t// 1. The assert module provides functions that throw\n\t// AssertionError's when particular conditions are not met. The\n\t// assert module must conform to the following interface.\n\n\tvar assert = module.exports = ok;\n\n\t// 2. The AssertionError is defined in assert.\n\t// new assert.AssertionError({ message: message,\n\t//                             actual: actual,\n\t//                             expected: expected })\n\n\tvar regex = /\\s*function\\s+([^\\(\\s]*)\\s*/;\n\t// based on https://github.com/ljharb/function.prototype.name/blob/adeeeec8bfcc6068b187d7d9fb3d5bb1d3a30899/implementation.js\n\tfunction getName(func) {\n\t  if (!util.isFunction(func)) {\n\t    return;\n\t  }\n\t  if (functionsHaveNames) {\n\t    return func.name;\n\t  }\n\t  var str = func.toString();\n\t  var match = str.match(regex);\n\t  return match && match[1];\n\t}\n\tassert.AssertionError = function AssertionError(options) {\n\t  this.name = 'AssertionError';\n\t  this.actual = options.actual;\n\t  this.expected = options.expected;\n\t  this.operator = options.operator;\n\t  if (options.message) {\n\t    this.message = options.message;\n\t    this.generatedMessage = false;\n\t  } else {\n\t    this.message = getMessage(this);\n\t    this.generatedMessage = true;\n\t  }\n\t  var stackStartFunction = options.stackStartFunction || fail;\n\t  if (Error.captureStackTrace) {\n\t    Error.captureStackTrace(this, stackStartFunction);\n\t  } else {\n\t    // non v8 browsers so we can have a stacktrace\n\t    var err = new Error();\n\t    if (err.stack) {\n\t      var out = err.stack;\n\n\t      // try to strip useless frames\n\t      var fn_name = getName(stackStartFunction);\n\t      var idx = out.indexOf('\\n' + fn_name);\n\t      if (idx >= 0) {\n\t        // once we have located the function frame\n\t        // we need to strip out everything before it (and its line)\n\t        var next_line = out.indexOf('\\n', idx + 1);\n\t        out = out.substring(next_line + 1);\n\t      }\n\n\t      this.stack = out;\n\t    }\n\t  }\n\t};\n\n\t// assert.AssertionError instanceof Error\n\tutil.inherits(assert.AssertionError, Error);\n\n\tfunction truncate(s, n) {\n\t  if (typeof s === 'string') {\n\t    return s.length < n ? s : s.slice(0, n);\n\t  } else {\n\t    return s;\n\t  }\n\t}\n\tfunction inspect(something) {\n\t  if (functionsHaveNames || !util.isFunction(something)) {\n\t    return util.inspect(something);\n\t  }\n\t  var rawname = getName(something);\n\t  var name = rawname ? ': ' + rawname : '';\n\t  return '[Function' + name + ']';\n\t}\n\tfunction getMessage(self) {\n\t  return truncate(inspect(self.actual), 128) + ' ' + self.operator + ' ' + truncate(inspect(self.expected), 128);\n\t}\n\n\t// At present only the three keys mentioned above are used and\n\t// understood by the spec. Implementations or sub modules can pass\n\t// other keys to the AssertionError's constructor - they will be\n\t// ignored.\n\n\t// 3. All of the following functions must throw an AssertionError\n\t// when a corresponding condition is not met, with a message that\n\t// may be undefined if not provided.  All assertion methods provide\n\t// both the actual and expected values to the assertion error for\n\t// display purposes.\n\n\tfunction fail(actual, expected, message, operator, stackStartFunction) {\n\t  throw new assert.AssertionError({\n\t    message: message,\n\t    actual: actual,\n\t    expected: expected,\n\t    operator: operator,\n\t    stackStartFunction: stackStartFunction\n\t  });\n\t}\n\n\t// EXTENSION! allows for well behaved errors defined elsewhere.\n\tassert.fail = fail;\n\n\t// 4. Pure assertion tests whether a value is truthy, as determined\n\t// by !!guard.\n\t// assert.ok(guard, message_opt);\n\t// This statement is equivalent to assert.equal(true, !!guard,\n\t// message_opt);. To test strictly for the value true, use\n\t// assert.strictEqual(true, guard, message_opt);.\n\n\tfunction ok(value, message) {\n\t  if (!value) fail(value, true, message, '==', assert.ok);\n\t}\n\tassert.ok = ok;\n\n\t// 5. The equality assertion tests shallow, coercive equality with\n\t// ==.\n\t// assert.equal(actual, expected, message_opt);\n\n\tassert.equal = function equal(actual, expected, message) {\n\t  if (actual != expected) fail(actual, expected, message, '==', assert.equal);\n\t};\n\n\t// 6. The non-equality assertion tests for whether two objects are not equal\n\t// with != assert.notEqual(actual, expected, message_opt);\n\n\tassert.notEqual = function notEqual(actual, expected, message) {\n\t  if (actual == expected) {\n\t    fail(actual, expected, message, '!=', assert.notEqual);\n\t  }\n\t};\n\n\t// 7. The equivalence assertion tests a deep equality relation.\n\t// assert.deepEqual(actual, expected, message_opt);\n\n\tassert.deepEqual = function deepEqual(actual, expected, message) {\n\t  if (!_deepEqual(actual, expected, false)) {\n\t    fail(actual, expected, message, 'deepEqual', assert.deepEqual);\n\t  }\n\t};\n\n\tassert.deepStrictEqual = function deepStrictEqual(actual, expected, message) {\n\t  if (!_deepEqual(actual, expected, true)) {\n\t    fail(actual, expected, message, 'deepStrictEqual', assert.deepStrictEqual);\n\t  }\n\t};\n\n\tfunction _deepEqual(actual, expected, strict, memos) {\n\t  // 7.1. All identical values are equivalent, as determined by ===.\n\t  if (actual === expected) {\n\t    return true;\n\t  } else if (isBuffer(actual) && isBuffer(expected)) {\n\t    return compare(actual, expected) === 0;\n\n\t    // 7.2. If the expected value is a Date object, the actual value is\n\t    // equivalent if it is also a Date object that refers to the same time.\n\t  } else if (util.isDate(actual) && util.isDate(expected)) {\n\t    return actual.getTime() === expected.getTime();\n\n\t    // 7.3 If the expected value is a RegExp object, the actual value is\n\t    // equivalent if it is also a RegExp object with the same source and\n\t    // properties (`global`, `multiline`, `lastIndex`, `ignoreCase`).\n\t  } else if (util.isRegExp(actual) && util.isRegExp(expected)) {\n\t    return actual.source === expected.source && actual.global === expected.global && actual.multiline === expected.multiline && actual.lastIndex === expected.lastIndex && actual.ignoreCase === expected.ignoreCase;\n\n\t    // 7.4. Other pairs that do not both pass typeof value == 'object',\n\t    // equivalence is determined by ==.\n\t  } else if ((actual === null || (typeof actual === 'undefined' ? 'undefined' : _typeof(actual)) !== 'object') && (expected === null || (typeof expected === 'undefined' ? 'undefined' : _typeof(expected)) !== 'object')) {\n\t    return strict ? actual === expected : actual == expected;\n\n\t    // If both values are instances of typed arrays, wrap their underlying\n\t    // ArrayBuffers in a Buffer each to increase performance\n\t    // This optimization requires the arrays to have the same type as checked by\n\t    // Object.prototype.toString (aka pToString). Never perform binary\n\t    // comparisons for Float*Arrays, though, since e.g. +0 === -0 but their\n\t    // bit patterns are not identical.\n\t  } else if (isView(actual) && isView(expected) && pToString(actual) === pToString(expected) && !(actual instanceof Float32Array || actual instanceof Float64Array)) {\n\t    return compare(new Uint8Array(actual.buffer), new Uint8Array(expected.buffer)) === 0;\n\n\t    // 7.5 For all other Object pairs, including Array objects, equivalence is\n\t    // determined by having the same number of owned properties (as verified\n\t    // with Object.prototype.hasOwnProperty.call), the same set of keys\n\t    // (although not necessarily the same order), equivalent values for every\n\t    // corresponding key, and an identical 'prototype' property. Note: this\n\t    // accounts for both named and indexed properties on Arrays.\n\t  } else if (isBuffer(actual) !== isBuffer(expected)) {\n\t    return false;\n\t  } else {\n\t    memos = memos || { actual: [], expected: [] };\n\n\t    var actualIndex = memos.actual.indexOf(actual);\n\t    if (actualIndex !== -1) {\n\t      if (actualIndex === memos.expected.indexOf(expected)) {\n\t        return true;\n\t      }\n\t    }\n\n\t    memos.actual.push(actual);\n\t    memos.expected.push(expected);\n\n\t    return objEquiv(actual, expected, strict, memos);\n\t  }\n\t}\n\n\tfunction isArguments(object) {\n\t  return Object.prototype.toString.call(object) == '[object Arguments]';\n\t}\n\n\tfunction objEquiv(a, b, strict, actualVisitedObjects) {\n\t  if (a === null || a === undefined || b === null || b === undefined) return false;\n\t  // if one is a primitive, the other must be same\n\t  if (util.isPrimitive(a) || util.isPrimitive(b)) return a === b;\n\t  if (strict && Object.getPrototypeOf(a) !== Object.getPrototypeOf(b)) return false;\n\t  var aIsArgs = isArguments(a);\n\t  var bIsArgs = isArguments(b);\n\t  if (aIsArgs && !bIsArgs || !aIsArgs && bIsArgs) return false;\n\t  if (aIsArgs) {\n\t    a = pSlice.call(a);\n\t    b = pSlice.call(b);\n\t    return _deepEqual(a, b, strict);\n\t  }\n\t  var ka = objectKeys(a);\n\t  var kb = objectKeys(b);\n\t  var key, i;\n\t  // having the same number of owned properties (keys incorporates\n\t  // hasOwnProperty)\n\t  if (ka.length !== kb.length) return false;\n\t  //the same set of keys (although not necessarily the same order),\n\t  ka.sort();\n\t  kb.sort();\n\t  //~~~cheap key test\n\t  for (i = ka.length - 1; i >= 0; i--) {\n\t    if (ka[i] !== kb[i]) return false;\n\t  }\n\t  //equivalent values for every corresponding key, and\n\t  //~~~possibly expensive deep test\n\t  for (i = ka.length - 1; i >= 0; i--) {\n\t    key = ka[i];\n\t    if (!_deepEqual(a[key], b[key], strict, actualVisitedObjects)) return false;\n\t  }\n\t  return true;\n\t}\n\n\t// 8. The non-equivalence assertion tests for any deep inequality.\n\t// assert.notDeepEqual(actual, expected, message_opt);\n\n\tassert.notDeepEqual = function notDeepEqual(actual, expected, message) {\n\t  if (_deepEqual(actual, expected, false)) {\n\t    fail(actual, expected, message, 'notDeepEqual', assert.notDeepEqual);\n\t  }\n\t};\n\n\tassert.notDeepStrictEqual = notDeepStrictEqual;\n\tfunction notDeepStrictEqual(actual, expected, message) {\n\t  if (_deepEqual(actual, expected, true)) {\n\t    fail(actual, expected, message, 'notDeepStrictEqual', notDeepStrictEqual);\n\t  }\n\t}\n\n\t// 9. The strict equality assertion tests strict equality, as determined by ===.\n\t// assert.strictEqual(actual, expected, message_opt);\n\n\tassert.strictEqual = function strictEqual(actual, expected, message) {\n\t  if (actual !== expected) {\n\t    fail(actual, expected, message, '===', assert.strictEqual);\n\t  }\n\t};\n\n\t// 10. The strict non-equality assertion tests for strict inequality, as\n\t// determined by !==.  assert.notStrictEqual(actual, expected, message_opt);\n\n\tassert.notStrictEqual = function notStrictEqual(actual, expected, message) {\n\t  if (actual === expected) {\n\t    fail(actual, expected, message, '!==', assert.notStrictEqual);\n\t  }\n\t};\n\n\tfunction expectedException(actual, expected) {\n\t  if (!actual || !expected) {\n\t    return false;\n\t  }\n\n\t  if (Object.prototype.toString.call(expected) == '[object RegExp]') {\n\t    return expected.test(actual);\n\t  }\n\n\t  try {\n\t    if (actual instanceof expected) {\n\t      return true;\n\t    }\n\t  } catch (e) {\n\t    // Ignore.  The instanceof check doesn't work for arrow functions.\n\t  }\n\n\t  if (Error.isPrototypeOf(expected)) {\n\t    return false;\n\t  }\n\n\t  return expected.call({}, actual) === true;\n\t}\n\n\tfunction _tryBlock(block) {\n\t  var error;\n\t  try {\n\t    block();\n\t  } catch (e) {\n\t    error = e;\n\t  }\n\t  return error;\n\t}\n\n\tfunction _throws(shouldThrow, block, expected, message) {\n\t  var actual;\n\n\t  if (typeof block !== 'function') {\n\t    throw new TypeError('\"block\" argument must be a function');\n\t  }\n\n\t  if (typeof expected === 'string') {\n\t    message = expected;\n\t    expected = null;\n\t  }\n\n\t  actual = _tryBlock(block);\n\n\t  message = (expected && expected.name ? ' (' + expected.name + ').' : '.') + (message ? ' ' + message : '.');\n\n\t  if (shouldThrow && !actual) {\n\t    fail(actual, expected, 'Missing expected exception' + message);\n\t  }\n\n\t  var userProvidedMessage = typeof message === 'string';\n\t  var isUnwantedException = !shouldThrow && util.isError(actual);\n\t  var isUnexpectedException = !shouldThrow && actual && !expected;\n\n\t  if (isUnwantedException && userProvidedMessage && expectedException(actual, expected) || isUnexpectedException) {\n\t    fail(actual, expected, 'Got unwanted exception' + message);\n\t  }\n\n\t  if (shouldThrow && actual && expected && !expectedException(actual, expected) || !shouldThrow && actual) {\n\t    throw actual;\n\t  }\n\t}\n\n\t// 11. Expected to throw an error:\n\t// assert.throws(block, Error_opt, message_opt);\n\n\tassert.throws = function (block, /*optional*/error, /*optional*/message) {\n\t  _throws(true, block, error, message);\n\t};\n\n\t// EXTENSION! This is annoying to write outside this module.\n\tassert.doesNotThrow = function (block, /*optional*/error, /*optional*/message) {\n\t  _throws(false, block, error, message);\n\t};\n\n\tassert.ifError = function (err) {\n\t  if (err) throw err;\n\t};\n\n\tvar objectKeys = Object.keys || function (obj) {\n\t  var keys = [];\n\t  for (var key in obj) {\n\t    if (hasOwn.call(obj, key)) keys.push(key);\n\t  }\n\t  return keys;\n\t};\n\t/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))\n\n/***/ }),\n/* 65 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _possibleConstructorReturn2 = __webpack_require__(42);\n\n\tvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\n\tvar _inherits2 = __webpack_require__(41);\n\n\tvar _inherits3 = _interopRequireDefault(_inherits2);\n\n\tvar _optionManager = __webpack_require__(34);\n\n\tvar _optionManager2 = _interopRequireDefault(_optionManager);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _store = __webpack_require__(119);\n\n\tvar _store2 = _interopRequireDefault(_store);\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelTraverse2 = _interopRequireDefault(_babelTraverse);\n\n\tvar _assign = __webpack_require__(174);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _clone = __webpack_require__(109);\n\n\tvar _clone2 = _interopRequireDefault(_clone);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar GLOBAL_VISITOR_PROPS = [\"enter\", \"exit\"];\n\n\tvar Plugin = function (_Store) {\n\t  (0, _inherits3.default)(Plugin, _Store);\n\n\t  function Plugin(plugin, key) {\n\t    (0, _classCallCheck3.default)(this, Plugin);\n\n\t    var _this = (0, _possibleConstructorReturn3.default)(this, _Store.call(this));\n\n\t    _this.initialized = false;\n\t    _this.raw = (0, _assign2.default)({}, plugin);\n\t    _this.key = _this.take(\"name\") || key;\n\n\t    _this.manipulateOptions = _this.take(\"manipulateOptions\");\n\t    _this.post = _this.take(\"post\");\n\t    _this.pre = _this.take(\"pre\");\n\t    _this.visitor = _this.normaliseVisitor((0, _clone2.default)(_this.take(\"visitor\")) || {});\n\t    return _this;\n\t  }\n\n\t  Plugin.prototype.take = function take(key) {\n\t    var val = this.raw[key];\n\t    delete this.raw[key];\n\t    return val;\n\t  };\n\n\t  Plugin.prototype.chain = function chain(target, key) {\n\t    if (!target[key]) return this[key];\n\t    if (!this[key]) return target[key];\n\n\t    var fns = [target[key], this[key]];\n\n\t    return function () {\n\t      var val = void 0;\n\n\t      for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t        args[_key] = arguments[_key];\n\t      }\n\n\t      for (var _iterator = fns, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref = _i.value;\n\t        }\n\n\t        var fn = _ref;\n\n\t        if (fn) {\n\t          var ret = fn.apply(this, args);\n\t          if (ret != null) val = ret;\n\t        }\n\t      }\n\t      return val;\n\t    };\n\t  };\n\n\t  Plugin.prototype.maybeInherit = function maybeInherit(loc) {\n\t    var inherits = this.take(\"inherits\");\n\t    if (!inherits) return;\n\n\t    inherits = _optionManager2.default.normalisePlugin(inherits, loc, \"inherits\");\n\n\t    this.manipulateOptions = this.chain(inherits, \"manipulateOptions\");\n\t    this.post = this.chain(inherits, \"post\");\n\t    this.pre = this.chain(inherits, \"pre\");\n\t    this.visitor = _babelTraverse2.default.visitors.merge([inherits.visitor, this.visitor]);\n\t  };\n\n\t  Plugin.prototype.init = function init(loc, i) {\n\t    if (this.initialized) return;\n\t    this.initialized = true;\n\n\t    this.maybeInherit(loc);\n\n\t    for (var key in this.raw) {\n\t      throw new Error(messages.get(\"pluginInvalidProperty\", loc, i, key));\n\t    }\n\t  };\n\n\t  Plugin.prototype.normaliseVisitor = function normaliseVisitor(visitor) {\n\t    for (var _iterator2 = GLOBAL_VISITOR_PROPS, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var key = _ref2;\n\n\t      if (visitor[key]) {\n\t        throw new Error(\"Plugins aren't allowed to specify catch-all enter/exit handlers. \" + \"Please target individual nodes.\");\n\t      }\n\t    }\n\n\t    _babelTraverse2.default.explode(visitor);\n\t    return visitor;\n\t  };\n\n\t  return Plugin;\n\t}(_store2.default);\n\n\texports.default = Plugin;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 66 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var messages = _ref.messages;\n\n\t  return {\n\t    visitor: {\n\t      Scope: function Scope(_ref2) {\n\t        var scope = _ref2.scope;\n\n\t        for (var name in scope.bindings) {\n\t          var binding = scope.bindings[name];\n\t          if (binding.kind !== \"const\" && binding.kind !== \"module\") continue;\n\n\t          for (var _iterator = binding.constantViolations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t            var _ref3;\n\n\t            if (_isArray) {\n\t              if (_i >= _iterator.length) break;\n\t              _ref3 = _iterator[_i++];\n\t            } else {\n\t              _i = _iterator.next();\n\t              if (_i.done) break;\n\t              _ref3 = _i.value;\n\t            }\n\n\t            var violation = _ref3;\n\n\t            throw violation.buildCodeFrameError(messages.get(\"readOnly\", name));\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 67 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"asyncFunctions\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 68 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    visitor: {\n\t      ArrowFunctionExpression: function ArrowFunctionExpression(path, state) {\n\t        if (state.opts.spec) {\n\t          var node = path.node;\n\n\t          if (node.shadow) return;\n\n\t          node.shadow = { this: false };\n\t          node.type = \"FunctionExpression\";\n\n\t          var boundThis = t.thisExpression();\n\t          boundThis._forceShadow = path;\n\n\t          path.ensureBlock();\n\t          path.get(\"body\").unshiftContainer(\"body\", t.expressionStatement(t.callExpression(state.addHelper(\"newArrowCheck\"), [t.thisExpression(), boundThis])));\n\n\t          path.replaceWith(t.callExpression(t.memberExpression(node, t.identifier(\"bind\")), [t.thisExpression()]));\n\t        } else {\n\t          path.arrowFunctionToShadowed();\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 69 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function statementList(key, path) {\n\t    var paths = path.get(key);\n\n\t    for (var _iterator = paths, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref2;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref2 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref2 = _i.value;\n\t      }\n\n\t      var _path = _ref2;\n\n\t      var func = _path.node;\n\t      if (!_path.isFunctionDeclaration()) continue;\n\n\t      var declar = t.variableDeclaration(\"let\", [t.variableDeclarator(func.id, t.toExpression(func))]);\n\n\t      declar._blockHoist = 2;\n\n\t      func.id = null;\n\n\t      _path.replaceWith(declar);\n\t    }\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      BlockStatement: function BlockStatement(path) {\n\t        var node = path.node,\n\t            parent = path.parent;\n\n\t        if (t.isFunction(parent, { body: node }) || t.isExportDeclaration(parent)) {\n\t          return;\n\t        }\n\n\t        statementList(\"body\", path);\n\t      },\n\t      SwitchCase: function SwitchCase(path) {\n\t        statementList(\"consequent\", path);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 70 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      VariableDeclaration: function VariableDeclaration(path, file) {\n\t        var node = path.node,\n\t            parent = path.parent,\n\t            scope = path.scope;\n\n\t        if (!isBlockScoped(node)) return;\n\t        convertBlockScopedToVar(path, null, parent, scope, true);\n\n\t        if (node._tdzThis) {\n\t          var nodes = [node];\n\n\t          for (var i = 0; i < node.declarations.length; i++) {\n\t            var decl = node.declarations[i];\n\t            if (decl.init) {\n\t              var assign = t.assignmentExpression(\"=\", decl.id, decl.init);\n\t              assign._ignoreBlockScopingTDZ = true;\n\t              nodes.push(t.expressionStatement(assign));\n\t            }\n\t            decl.init = file.addHelper(\"temporalUndefined\");\n\t          }\n\n\t          node._blockHoist = 2;\n\n\t          if (path.isCompletionRecord()) {\n\t            nodes.push(t.expressionStatement(scope.buildUndefinedNode()));\n\t          }\n\n\t          path.replaceWithMultiple(nodes);\n\t        }\n\t      },\n\t      Loop: function Loop(path, file) {\n\t        var node = path.node,\n\t            parent = path.parent,\n\t            scope = path.scope;\n\n\t        t.ensureBlock(node);\n\t        var blockScoping = new BlockScoping(path, path.get(\"body\"), parent, scope, file);\n\t        var replace = blockScoping.run();\n\t        if (replace) path.replaceWith(replace);\n\t      },\n\t      CatchClause: function CatchClause(path, file) {\n\t        var parent = path.parent,\n\t            scope = path.scope;\n\n\t        var blockScoping = new BlockScoping(null, path.get(\"body\"), parent, scope, file);\n\t        blockScoping.run();\n\t      },\n\t      \"BlockStatement|SwitchStatement|Program\": function BlockStatementSwitchStatementProgram(path, file) {\n\t        if (!ignoreBlock(path)) {\n\t          var blockScoping = new BlockScoping(null, path, path.parent, path.scope, file);\n\t          blockScoping.run();\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelTraverse2 = _interopRequireDefault(_babelTraverse);\n\n\tvar _tdz = __webpack_require__(330);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _values = __webpack_require__(280);\n\n\tvar _values2 = _interopRequireDefault(_values);\n\n\tvar _extend = __webpack_require__(578);\n\n\tvar _extend2 = _interopRequireDefault(_extend);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction ignoreBlock(path) {\n\t  return t.isLoop(path.parent) || t.isCatchClause(path.parent);\n\t}\n\n\tvar buildRetCheck = (0, _babelTemplate2.default)(\"\\n  if (typeof RETURN === \\\"object\\\") return RETURN.v;\\n\");\n\n\tfunction isBlockScoped(node) {\n\t  if (!t.isVariableDeclaration(node)) return false;\n\t  if (node[t.BLOCK_SCOPED_SYMBOL]) return true;\n\t  if (node.kind !== \"let\" && node.kind !== \"const\") return false;\n\t  return true;\n\t}\n\n\tfunction convertBlockScopedToVar(path, node, parent, scope) {\n\t  var moveBindingsToParent = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;\n\n\t  if (!node) {\n\t    node = path.node;\n\t  }\n\n\t  if (!t.isFor(parent)) {\n\t    for (var i = 0; i < node.declarations.length; i++) {\n\t      var declar = node.declarations[i];\n\t      declar.init = declar.init || scope.buildUndefinedNode();\n\t    }\n\t  }\n\n\t  node[t.BLOCK_SCOPED_SYMBOL] = true;\n\t  node.kind = \"var\";\n\n\t  if (moveBindingsToParent) {\n\t    var parentScope = scope.getFunctionParent();\n\t    var ids = path.getBindingIdentifiers();\n\t    for (var name in ids) {\n\t      var binding = scope.getOwnBinding(name);\n\t      if (binding) binding.kind = \"var\";\n\t      scope.moveBindingTo(name, parentScope);\n\t    }\n\t  }\n\t}\n\n\tfunction isVar(node) {\n\t  return t.isVariableDeclaration(node, { kind: \"var\" }) && !isBlockScoped(node);\n\t}\n\n\tvar letReferenceBlockVisitor = _babelTraverse2.default.visitors.merge([{\n\t  Loop: {\n\t    enter: function enter(path, state) {\n\t      state.loopDepth++;\n\t    },\n\t    exit: function exit(path, state) {\n\t      state.loopDepth--;\n\t    }\n\t  },\n\t  Function: function Function(path, state) {\n\t    if (state.loopDepth > 0) {\n\t      path.traverse(letReferenceFunctionVisitor, state);\n\t    }\n\t    return path.skip();\n\t  }\n\t}, _tdz.visitor]);\n\n\tvar letReferenceFunctionVisitor = _babelTraverse2.default.visitors.merge([{\n\t  ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t    var ref = state.letReferences[path.node.name];\n\n\t    if (!ref) return;\n\n\t    var localBinding = path.scope.getBindingIdentifier(path.node.name);\n\t    if (localBinding && localBinding !== ref) return;\n\n\t    state.closurify = true;\n\t  }\n\t}, _tdz.visitor]);\n\n\tvar hoistVarDeclarationsVisitor = {\n\t  enter: function enter(path, self) {\n\t    var node = path.node,\n\t        parent = path.parent;\n\n\t    if (path.isForStatement()) {\n\t      if (isVar(node.init, node)) {\n\t        var nodes = self.pushDeclar(node.init);\n\t        if (nodes.length === 1) {\n\t          node.init = nodes[0];\n\t        } else {\n\t          node.init = t.sequenceExpression(nodes);\n\t        }\n\t      }\n\t    } else if (path.isFor()) {\n\t      if (isVar(node.left, node)) {\n\t        self.pushDeclar(node.left);\n\t        node.left = node.left.declarations[0].id;\n\t      }\n\t    } else if (isVar(node, parent)) {\n\t      path.replaceWithMultiple(self.pushDeclar(node).map(function (expr) {\n\t        return t.expressionStatement(expr);\n\t      }));\n\t    } else if (path.isFunction()) {\n\t      return path.skip();\n\t    }\n\t  }\n\t};\n\n\tvar loopLabelVisitor = {\n\t  LabeledStatement: function LabeledStatement(_ref, state) {\n\t    var node = _ref.node;\n\n\t    state.innerLabels.push(node.label.name);\n\t  }\n\t};\n\n\tvar continuationVisitor = {\n\t  enter: function enter(path, state) {\n\t    if (path.isAssignmentExpression() || path.isUpdateExpression()) {\n\t      var bindings = path.getBindingIdentifiers();\n\t      for (var name in bindings) {\n\t        if (state.outsideReferences[name] !== path.scope.getBindingIdentifier(name)) continue;\n\t        state.reassignments[name] = true;\n\t      }\n\t    }\n\t  }\n\t};\n\n\tfunction loopNodeTo(node) {\n\t  if (t.isBreakStatement(node)) {\n\t    return \"break\";\n\t  } else if (t.isContinueStatement(node)) {\n\t    return \"continue\";\n\t  }\n\t}\n\n\tvar loopVisitor = {\n\t  Loop: function Loop(path, state) {\n\t    var oldIgnoreLabeless = state.ignoreLabeless;\n\t    state.ignoreLabeless = true;\n\t    path.traverse(loopVisitor, state);\n\t    state.ignoreLabeless = oldIgnoreLabeless;\n\t    path.skip();\n\t  },\n\t  Function: function Function(path) {\n\t    path.skip();\n\t  },\n\t  SwitchCase: function SwitchCase(path, state) {\n\t    var oldInSwitchCase = state.inSwitchCase;\n\t    state.inSwitchCase = true;\n\t    path.traverse(loopVisitor, state);\n\t    state.inSwitchCase = oldInSwitchCase;\n\t    path.skip();\n\t  },\n\t  \"BreakStatement|ContinueStatement|ReturnStatement\": function BreakStatementContinueStatementReturnStatement(path, state) {\n\t    var node = path.node,\n\t        parent = path.parent,\n\t        scope = path.scope;\n\n\t    if (node[this.LOOP_IGNORE]) return;\n\n\t    var replace = void 0;\n\t    var loopText = loopNodeTo(node);\n\n\t    if (loopText) {\n\t      if (node.label) {\n\t        if (state.innerLabels.indexOf(node.label.name) >= 0) {\n\t          return;\n\t        }\n\n\t        loopText = loopText + \"|\" + node.label.name;\n\t      } else {\n\t        if (state.ignoreLabeless) return;\n\n\t        if (state.inSwitchCase) return;\n\n\t        if (t.isBreakStatement(node) && t.isSwitchCase(parent)) return;\n\t      }\n\n\t      state.hasBreakContinue = true;\n\t      state.map[loopText] = node;\n\t      replace = t.stringLiteral(loopText);\n\t    }\n\n\t    if (path.isReturnStatement()) {\n\t      state.hasReturn = true;\n\t      replace = t.objectExpression([t.objectProperty(t.identifier(\"v\"), node.argument || scope.buildUndefinedNode())]);\n\t    }\n\n\t    if (replace) {\n\t      replace = t.returnStatement(replace);\n\t      replace[this.LOOP_IGNORE] = true;\n\t      path.skip();\n\t      path.replaceWith(t.inherits(replace, node));\n\t    }\n\t  }\n\t};\n\n\tvar BlockScoping = function () {\n\t  function BlockScoping(loopPath, blockPath, parent, scope, file) {\n\t    (0, _classCallCheck3.default)(this, BlockScoping);\n\n\t    this.parent = parent;\n\t    this.scope = scope;\n\t    this.file = file;\n\n\t    this.blockPath = blockPath;\n\t    this.block = blockPath.node;\n\n\t    this.outsideLetReferences = (0, _create2.default)(null);\n\t    this.hasLetReferences = false;\n\t    this.letReferences = (0, _create2.default)(null);\n\t    this.body = [];\n\n\t    if (loopPath) {\n\t      this.loopParent = loopPath.parent;\n\t      this.loopLabel = t.isLabeledStatement(this.loopParent) && this.loopParent.label;\n\t      this.loopPath = loopPath;\n\t      this.loop = loopPath.node;\n\t    }\n\t  }\n\n\t  BlockScoping.prototype.run = function run() {\n\t    var block = this.block;\n\t    if (block._letDone) return;\n\t    block._letDone = true;\n\n\t    var needsClosure = this.getLetReferences();\n\n\t    if (t.isFunction(this.parent) || t.isProgram(this.block)) {\n\t      this.updateScopeInfo();\n\t      return;\n\t    }\n\n\t    if (!this.hasLetReferences) return;\n\n\t    if (needsClosure) {\n\t      this.wrapClosure();\n\t    } else {\n\t      this.remap();\n\t    }\n\n\t    this.updateScopeInfo(needsClosure);\n\n\t    if (this.loopLabel && !t.isLabeledStatement(this.loopParent)) {\n\t      return t.labeledStatement(this.loopLabel, this.loop);\n\t    }\n\t  };\n\n\t  BlockScoping.prototype.updateScopeInfo = function updateScopeInfo(wrappedInClosure) {\n\t    var scope = this.scope;\n\t    var parentScope = scope.getFunctionParent();\n\t    var letRefs = this.letReferences;\n\n\t    for (var key in letRefs) {\n\t      var ref = letRefs[key];\n\t      var binding = scope.getBinding(ref.name);\n\t      if (!binding) continue;\n\t      if (binding.kind === \"let\" || binding.kind === \"const\") {\n\t        binding.kind = \"var\";\n\n\t        if (wrappedInClosure) {\n\t          scope.removeBinding(ref.name);\n\t        } else {\n\t          scope.moveBindingTo(ref.name, parentScope);\n\t        }\n\t      }\n\t    }\n\t  };\n\n\t  BlockScoping.prototype.remap = function remap() {\n\t    var letRefs = this.letReferences;\n\t    var scope = this.scope;\n\n\t    for (var key in letRefs) {\n\t      var ref = letRefs[key];\n\n\t      if (scope.parentHasBinding(key) || scope.hasGlobal(key)) {\n\t        if (scope.hasOwnBinding(key)) scope.rename(ref.name);\n\n\t        if (this.blockPath.scope.hasOwnBinding(key)) this.blockPath.scope.rename(ref.name);\n\t      }\n\t    }\n\t  };\n\n\t  BlockScoping.prototype.wrapClosure = function wrapClosure() {\n\t    if (this.file.opts.throwIfClosureRequired) {\n\t      throw this.blockPath.buildCodeFrameError(\"Compiling let/const in this block would add a closure \" + \"(throwIfClosureRequired).\");\n\t    }\n\t    var block = this.block;\n\n\t    var outsideRefs = this.outsideLetReferences;\n\n\t    if (this.loop) {\n\t      for (var name in outsideRefs) {\n\t        var id = outsideRefs[name];\n\n\t        if (this.scope.hasGlobal(id.name) || this.scope.parentHasBinding(id.name)) {\n\t          delete outsideRefs[id.name];\n\t          delete this.letReferences[id.name];\n\n\t          this.scope.rename(id.name);\n\n\t          this.letReferences[id.name] = id;\n\t          outsideRefs[id.name] = id;\n\t        }\n\t      }\n\t    }\n\n\t    this.has = this.checkLoop();\n\n\t    this.hoistVarDeclarations();\n\n\t    var params = (0, _values2.default)(outsideRefs);\n\t    var args = (0, _values2.default)(outsideRefs);\n\n\t    var isSwitch = this.blockPath.isSwitchStatement();\n\n\t    var fn = t.functionExpression(null, params, t.blockStatement(isSwitch ? [block] : block.body));\n\t    fn.shadow = true;\n\n\t    this.addContinuations(fn);\n\n\t    var ref = fn;\n\n\t    if (this.loop) {\n\t      ref = this.scope.generateUidIdentifier(\"loop\");\n\t      this.loopPath.insertBefore(t.variableDeclaration(\"var\", [t.variableDeclarator(ref, fn)]));\n\t    }\n\n\t    var call = t.callExpression(ref, args);\n\t    var ret = this.scope.generateUidIdentifier(\"ret\");\n\n\t    var hasYield = _babelTraverse2.default.hasType(fn.body, this.scope, \"YieldExpression\", t.FUNCTION_TYPES);\n\t    if (hasYield) {\n\t      fn.generator = true;\n\t      call = t.yieldExpression(call, true);\n\t    }\n\n\t    var hasAsync = _babelTraverse2.default.hasType(fn.body, this.scope, \"AwaitExpression\", t.FUNCTION_TYPES);\n\t    if (hasAsync) {\n\t      fn.async = true;\n\t      call = t.awaitExpression(call);\n\t    }\n\n\t    this.buildClosure(ret, call);\n\n\t    if (isSwitch) this.blockPath.replaceWithMultiple(this.body);else block.body = this.body;\n\t  };\n\n\t  BlockScoping.prototype.buildClosure = function buildClosure(ret, call) {\n\t    var has = this.has;\n\t    if (has.hasReturn || has.hasBreakContinue) {\n\t      this.buildHas(ret, call);\n\t    } else {\n\t      this.body.push(t.expressionStatement(call));\n\t    }\n\t  };\n\n\t  BlockScoping.prototype.addContinuations = function addContinuations(fn) {\n\t    var state = {\n\t      reassignments: {},\n\t      outsideReferences: this.outsideLetReferences\n\t    };\n\n\t    this.scope.traverse(fn, continuationVisitor, state);\n\n\t    for (var i = 0; i < fn.params.length; i++) {\n\t      var param = fn.params[i];\n\t      if (!state.reassignments[param.name]) continue;\n\n\t      var newParam = this.scope.generateUidIdentifier(param.name);\n\t      fn.params[i] = newParam;\n\n\t      this.scope.rename(param.name, newParam.name, fn);\n\n\t      fn.body.body.push(t.expressionStatement(t.assignmentExpression(\"=\", param, newParam)));\n\t    }\n\t  };\n\n\t  BlockScoping.prototype.getLetReferences = function getLetReferences() {\n\t    var _this = this;\n\n\t    var block = this.block;\n\n\t    var declarators = [];\n\n\t    if (this.loop) {\n\t      var init = this.loop.left || this.loop.init;\n\t      if (isBlockScoped(init)) {\n\t        declarators.push(init);\n\t        (0, _extend2.default)(this.outsideLetReferences, t.getBindingIdentifiers(init));\n\t      }\n\t    }\n\n\t    var addDeclarationsFromChild = function addDeclarationsFromChild(path, node) {\n\t      node = node || path.node;\n\t      if (t.isClassDeclaration(node) || t.isFunctionDeclaration(node) || isBlockScoped(node)) {\n\t        if (isBlockScoped(node)) {\n\t          convertBlockScopedToVar(path, node, block, _this.scope);\n\t        }\n\t        declarators = declarators.concat(node.declarations || node);\n\t      }\n\t      if (t.isLabeledStatement(node)) {\n\t        addDeclarationsFromChild(path.get(\"body\"), node.body);\n\t      }\n\t    };\n\n\t    if (block.body) {\n\t      for (var i = 0; i < block.body.length; i++) {\n\t        var declarPath = this.blockPath.get(\"body\")[i];\n\t        addDeclarationsFromChild(declarPath);\n\t      }\n\t    }\n\n\t    if (block.cases) {\n\t      for (var _i = 0; _i < block.cases.length; _i++) {\n\t        var consequents = block.cases[_i].consequent;\n\n\t        for (var j = 0; j < consequents.length; j++) {\n\t          var _declarPath = this.blockPath.get(\"cases\")[_i];\n\t          var declar = consequents[j];\n\t          addDeclarationsFromChild(_declarPath, declar);\n\t        }\n\t      }\n\t    }\n\n\t    for (var _i2 = 0; _i2 < declarators.length; _i2++) {\n\t      var _declar = declarators[_i2];\n\n\t      var keys = t.getBindingIdentifiers(_declar, false, true);\n\t      (0, _extend2.default)(this.letReferences, keys);\n\t      this.hasLetReferences = true;\n\t    }\n\n\t    if (!this.hasLetReferences) return;\n\n\t    var state = {\n\t      letReferences: this.letReferences,\n\t      closurify: false,\n\t      file: this.file,\n\t      loopDepth: 0\n\t    };\n\n\t    var loopOrFunctionParent = this.blockPath.find(function (path) {\n\t      return path.isLoop() || path.isFunction();\n\t    });\n\t    if (loopOrFunctionParent && loopOrFunctionParent.isLoop()) {\n\t      state.loopDepth++;\n\t    }\n\n\t    this.blockPath.traverse(letReferenceBlockVisitor, state);\n\n\t    return state.closurify;\n\t  };\n\n\t  BlockScoping.prototype.checkLoop = function checkLoop() {\n\t    var state = {\n\t      hasBreakContinue: false,\n\t      ignoreLabeless: false,\n\t      inSwitchCase: false,\n\t      innerLabels: [],\n\t      hasReturn: false,\n\t      isLoop: !!this.loop,\n\t      map: {},\n\t      LOOP_IGNORE: (0, _symbol2.default)()\n\t    };\n\n\t    this.blockPath.traverse(loopLabelVisitor, state);\n\t    this.blockPath.traverse(loopVisitor, state);\n\n\t    return state;\n\t  };\n\n\t  BlockScoping.prototype.hoistVarDeclarations = function hoistVarDeclarations() {\n\t    this.blockPath.traverse(hoistVarDeclarationsVisitor, this);\n\t  };\n\n\t  BlockScoping.prototype.pushDeclar = function pushDeclar(node) {\n\t    var declars = [];\n\t    var names = t.getBindingIdentifiers(node);\n\t    for (var name in names) {\n\t      declars.push(t.variableDeclarator(names[name]));\n\t    }\n\n\t    this.body.push(t.variableDeclaration(node.kind, declars));\n\n\t    var replace = [];\n\n\t    for (var i = 0; i < node.declarations.length; i++) {\n\t      var declar = node.declarations[i];\n\t      if (!declar.init) continue;\n\n\t      var expr = t.assignmentExpression(\"=\", declar.id, declar.init);\n\t      replace.push(t.inherits(expr, declar));\n\t    }\n\n\t    return replace;\n\t  };\n\n\t  BlockScoping.prototype.buildHas = function buildHas(ret, call) {\n\t    var body = this.body;\n\n\t    body.push(t.variableDeclaration(\"var\", [t.variableDeclarator(ret, call)]));\n\n\t    var retCheck = void 0;\n\t    var has = this.has;\n\t    var cases = [];\n\n\t    if (has.hasReturn) {\n\t      retCheck = buildRetCheck({\n\t        RETURN: ret\n\t      });\n\t    }\n\n\t    if (has.hasBreakContinue) {\n\t      for (var key in has.map) {\n\t        cases.push(t.switchCase(t.stringLiteral(key), [has.map[key]]));\n\t      }\n\n\t      if (has.hasReturn) {\n\t        cases.push(t.switchCase(null, [retCheck]));\n\t      }\n\n\t      if (cases.length === 1) {\n\t        var single = cases[0];\n\t        body.push(t.ifStatement(t.binaryExpression(\"===\", ret, single.test), single.consequent[0]));\n\t      } else {\n\t        if (this.loop) {\n\t          for (var i = 0; i < cases.length; i++) {\n\t            var caseConsequent = cases[i].consequent[0];\n\t            if (t.isBreakStatement(caseConsequent) && !caseConsequent.label) {\n\t              caseConsequent.label = this.loopLabel = this.loopLabel || this.scope.generateUidIdentifier(\"loop\");\n\t            }\n\t          }\n\t        }\n\n\t        body.push(t.switchStatement(ret, cases));\n\t      }\n\t    } else {\n\t      if (has.hasReturn) {\n\t        body.push(retCheck);\n\t      }\n\t    }\n\t  };\n\n\t  return BlockScoping;\n\t}();\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 71 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var VISITED = (0, _symbol2.default)();\n\n\t  return {\n\t    visitor: {\n\t      ExportDefaultDeclaration: function ExportDefaultDeclaration(path) {\n\t        if (!path.get(\"declaration\").isClassDeclaration()) return;\n\n\t        var node = path.node;\n\n\t        var ref = node.declaration.id || path.scope.generateUidIdentifier(\"class\");\n\t        node.declaration.id = ref;\n\n\t        path.replaceWith(node.declaration);\n\t        path.insertAfter(t.exportDefaultDeclaration(ref));\n\t      },\n\t      ClassDeclaration: function ClassDeclaration(path) {\n\t        var node = path.node;\n\n\t        var ref = node.id || path.scope.generateUidIdentifier(\"class\");\n\n\t        path.replaceWith(t.variableDeclaration(\"let\", [t.variableDeclarator(ref, t.toExpression(node))]));\n\t      },\n\t      ClassExpression: function ClassExpression(path, state) {\n\t        var node = path.node;\n\n\t        if (node[VISITED]) return;\n\n\t        var inferred = (0, _babelHelperFunctionName2.default)(path);\n\t        if (inferred && inferred !== node) return path.replaceWith(inferred);\n\n\t        node[VISITED] = true;\n\n\t        var Constructor = _vanilla2.default;\n\t        if (state.opts.loose) Constructor = _loose2.default;\n\n\t        path.replaceWith(new Constructor(path, state.file).run());\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _loose = __webpack_require__(331);\n\n\tvar _loose2 = _interopRequireDefault(_loose);\n\n\tvar _vanilla = __webpack_require__(207);\n\n\tvar _vanilla2 = _interopRequireDefault(_vanilla);\n\n\tvar _babelHelperFunctionName = __webpack_require__(40);\n\n\tvar _babelHelperFunctionName2 = _interopRequireDefault(_babelHelperFunctionName);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 72 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types,\n\t      template = _ref.template;\n\n\t  var buildMutatorMapAssign = template(\"\\n    MUTATOR_MAP_REF[KEY] = MUTATOR_MAP_REF[KEY] || {};\\n    MUTATOR_MAP_REF[KEY].KIND = VALUE;\\n  \");\n\n\t  function getValue(prop) {\n\t    if (t.isObjectProperty(prop)) {\n\t      return prop.value;\n\t    } else if (t.isObjectMethod(prop)) {\n\t      return t.functionExpression(null, prop.params, prop.body, prop.generator, prop.async);\n\t    }\n\t  }\n\n\t  function pushAssign(objId, prop, body) {\n\t    if (prop.kind === \"get\" && prop.kind === \"set\") {\n\t      pushMutatorDefine(objId, prop, body);\n\t    } else {\n\t      body.push(t.expressionStatement(t.assignmentExpression(\"=\", t.memberExpression(objId, prop.key, prop.computed || t.isLiteral(prop.key)), getValue(prop))));\n\t    }\n\t  }\n\n\t  function pushMutatorDefine(_ref2, prop) {\n\t    var objId = _ref2.objId,\n\t        body = _ref2.body,\n\t        getMutatorId = _ref2.getMutatorId,\n\t        scope = _ref2.scope;\n\n\t    var key = !prop.computed && t.isIdentifier(prop.key) ? t.stringLiteral(prop.key.name) : prop.key;\n\n\t    var maybeMemoise = scope.maybeGenerateMemoised(key);\n\t    if (maybeMemoise) {\n\t      body.push(t.expressionStatement(t.assignmentExpression(\"=\", maybeMemoise, key)));\n\t      key = maybeMemoise;\n\t    }\n\n\t    body.push.apply(body, buildMutatorMapAssign({\n\t      MUTATOR_MAP_REF: getMutatorId(),\n\t      KEY: key,\n\t      VALUE: getValue(prop),\n\t      KIND: t.identifier(prop.kind)\n\t    }));\n\t  }\n\n\t  function loose(info) {\n\t    for (var _iterator = info.computedProps, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref3;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref3 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref3 = _i.value;\n\t      }\n\n\t      var prop = _ref3;\n\n\t      if (prop.kind === \"get\" || prop.kind === \"set\") {\n\t        pushMutatorDefine(info, prop);\n\t      } else {\n\t        pushAssign(info.objId, prop, info.body);\n\t      }\n\t    }\n\t  }\n\n\t  function spec(info) {\n\t    var objId = info.objId,\n\t        body = info.body,\n\t        computedProps = info.computedProps,\n\t        state = info.state;\n\n\t    for (var _iterator2 = computedProps, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref4;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref4 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref4 = _i2.value;\n\t      }\n\n\t      var prop = _ref4;\n\n\t      var key = t.toComputedKey(prop);\n\n\t      if (prop.kind === \"get\" || prop.kind === \"set\") {\n\t        pushMutatorDefine(info, prop);\n\t      } else if (t.isStringLiteral(key, { value: \"__proto__\" })) {\n\t        pushAssign(objId, prop, body);\n\t      } else {\n\t        if (computedProps.length === 1) {\n\t          return t.callExpression(state.addHelper(\"defineProperty\"), [info.initPropExpression, key, getValue(prop)]);\n\t        } else {\n\t          body.push(t.expressionStatement(t.callExpression(state.addHelper(\"defineProperty\"), [objId, key, getValue(prop)])));\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      ObjectExpression: {\n\t        exit: function exit(path, state) {\n\t          var node = path.node,\n\t              parent = path.parent,\n\t              scope = path.scope;\n\n\t          var hasComputed = false;\n\t          for (var _iterator3 = node.properties, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t            var _ref5;\n\n\t            if (_isArray3) {\n\t              if (_i3 >= _iterator3.length) break;\n\t              _ref5 = _iterator3[_i3++];\n\t            } else {\n\t              _i3 = _iterator3.next();\n\t              if (_i3.done) break;\n\t              _ref5 = _i3.value;\n\t            }\n\n\t            var prop = _ref5;\n\n\t            hasComputed = prop.computed === true;\n\t            if (hasComputed) break;\n\t          }\n\t          if (!hasComputed) return;\n\n\t          var initProps = [];\n\t          var computedProps = [];\n\t          var foundComputed = false;\n\n\t          for (var _iterator4 = node.properties, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t            var _ref6;\n\n\t            if (_isArray4) {\n\t              if (_i4 >= _iterator4.length) break;\n\t              _ref6 = _iterator4[_i4++];\n\t            } else {\n\t              _i4 = _iterator4.next();\n\t              if (_i4.done) break;\n\t              _ref6 = _i4.value;\n\t            }\n\n\t            var _prop = _ref6;\n\n\t            if (_prop.computed) {\n\t              foundComputed = true;\n\t            }\n\n\t            if (foundComputed) {\n\t              computedProps.push(_prop);\n\t            } else {\n\t              initProps.push(_prop);\n\t            }\n\t          }\n\n\t          var objId = scope.generateUidIdentifierBasedOnNode(parent);\n\t          var initPropExpression = t.objectExpression(initProps);\n\t          var body = [];\n\n\t          body.push(t.variableDeclaration(\"var\", [t.variableDeclarator(objId, initPropExpression)]));\n\n\t          var callback = spec;\n\t          if (state.opts.loose) callback = loose;\n\n\t          var mutatorRef = void 0;\n\n\t          var getMutatorId = function getMutatorId() {\n\t            if (!mutatorRef) {\n\t              mutatorRef = scope.generateUidIdentifier(\"mutatorMap\");\n\n\t              body.push(t.variableDeclaration(\"var\", [t.variableDeclarator(mutatorRef, t.objectExpression([]))]));\n\t            }\n\n\t            return mutatorRef;\n\t          };\n\n\t          var single = callback({\n\t            scope: scope,\n\t            objId: objId,\n\t            body: body,\n\t            computedProps: computedProps,\n\t            initPropExpression: initPropExpression,\n\t            getMutatorId: getMutatorId,\n\t            state: state\n\t          });\n\n\t          if (mutatorRef) {\n\t            body.push(t.expressionStatement(t.callExpression(state.addHelper(\"defineEnumerableProperties\"), [objId, mutatorRef])));\n\t          }\n\n\t          if (single) {\n\t            path.replaceWith(single);\n\t          } else {\n\t            body.push(t.expressionStatement(objId));\n\t            path.replaceWithMultiple(body);\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 73 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function variableDeclarationHasPattern(node) {\n\t    for (var _iterator = node.declarations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref2;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref2 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref2 = _i.value;\n\t      }\n\n\t      var declar = _ref2;\n\n\t      if (t.isPattern(declar.id)) {\n\t        return true;\n\t      }\n\t    }\n\t    return false;\n\t  }\n\n\t  function hasRest(pattern) {\n\t    for (var _iterator2 = pattern.elements, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref3;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref3 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref3 = _i2.value;\n\t      }\n\n\t      var elem = _ref3;\n\n\t      if (t.isRestElement(elem)) {\n\t        return true;\n\t      }\n\t    }\n\t    return false;\n\t  }\n\n\t  var arrayUnpackVisitor = {\n\t    ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t      if (state.bindings[path.node.name]) {\n\t        state.deopt = true;\n\t        path.stop();\n\t      }\n\t    }\n\t  };\n\n\t  var DestructuringTransformer = function () {\n\t    function DestructuringTransformer(opts) {\n\t      (0, _classCallCheck3.default)(this, DestructuringTransformer);\n\n\t      this.blockHoist = opts.blockHoist;\n\t      this.operator = opts.operator;\n\t      this.arrays = {};\n\t      this.nodes = opts.nodes || [];\n\t      this.scope = opts.scope;\n\t      this.file = opts.file;\n\t      this.kind = opts.kind;\n\t    }\n\n\t    DestructuringTransformer.prototype.buildVariableAssignment = function buildVariableAssignment(id, init) {\n\t      var op = this.operator;\n\t      if (t.isMemberExpression(id)) op = \"=\";\n\n\t      var node = void 0;\n\n\t      if (op) {\n\t        node = t.expressionStatement(t.assignmentExpression(op, id, init));\n\t      } else {\n\t        node = t.variableDeclaration(this.kind, [t.variableDeclarator(id, init)]);\n\t      }\n\n\t      node._blockHoist = this.blockHoist;\n\n\t      return node;\n\t    };\n\n\t    DestructuringTransformer.prototype.buildVariableDeclaration = function buildVariableDeclaration(id, init) {\n\t      var declar = t.variableDeclaration(\"var\", [t.variableDeclarator(id, init)]);\n\t      declar._blockHoist = this.blockHoist;\n\t      return declar;\n\t    };\n\n\t    DestructuringTransformer.prototype.push = function push(id, init) {\n\t      if (t.isObjectPattern(id)) {\n\t        this.pushObjectPattern(id, init);\n\t      } else if (t.isArrayPattern(id)) {\n\t        this.pushArrayPattern(id, init);\n\t      } else if (t.isAssignmentPattern(id)) {\n\t        this.pushAssignmentPattern(id, init);\n\t      } else {\n\t        this.nodes.push(this.buildVariableAssignment(id, init));\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.toArray = function toArray(node, count) {\n\t      if (this.file.opts.loose || t.isIdentifier(node) && this.arrays[node.name]) {\n\t        return node;\n\t      } else {\n\t        return this.scope.toArray(node, count);\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.pushAssignmentPattern = function pushAssignmentPattern(pattern, valueRef) {\n\n\t      var tempValueRef = this.scope.generateUidIdentifierBasedOnNode(valueRef);\n\n\t      var declar = t.variableDeclaration(\"var\", [t.variableDeclarator(tempValueRef, valueRef)]);\n\t      declar._blockHoist = this.blockHoist;\n\t      this.nodes.push(declar);\n\n\t      var tempConditional = t.conditionalExpression(t.binaryExpression(\"===\", tempValueRef, t.identifier(\"undefined\")), pattern.right, tempValueRef);\n\n\t      var left = pattern.left;\n\t      if (t.isPattern(left)) {\n\t        var tempValueDefault = t.expressionStatement(t.assignmentExpression(\"=\", tempValueRef, tempConditional));\n\t        tempValueDefault._blockHoist = this.blockHoist;\n\n\t        this.nodes.push(tempValueDefault);\n\t        this.push(left, tempValueRef);\n\t      } else {\n\t        this.nodes.push(this.buildVariableAssignment(left, tempConditional));\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.pushObjectRest = function pushObjectRest(pattern, objRef, spreadProp, spreadPropIndex) {\n\n\t      var keys = [];\n\n\t      for (var i = 0; i < pattern.properties.length; i++) {\n\t        var prop = pattern.properties[i];\n\n\t        if (i >= spreadPropIndex) break;\n\n\t        if (t.isRestProperty(prop)) continue;\n\n\t        var key = prop.key;\n\t        if (t.isIdentifier(key) && !prop.computed) key = t.stringLiteral(prop.key.name);\n\t        keys.push(key);\n\t      }\n\n\t      keys = t.arrayExpression(keys);\n\n\t      var value = t.callExpression(this.file.addHelper(\"objectWithoutProperties\"), [objRef, keys]);\n\t      this.nodes.push(this.buildVariableAssignment(spreadProp.argument, value));\n\t    };\n\n\t    DestructuringTransformer.prototype.pushObjectProperty = function pushObjectProperty(prop, propRef) {\n\t      if (t.isLiteral(prop.key)) prop.computed = true;\n\n\t      var pattern = prop.value;\n\t      var objRef = t.memberExpression(propRef, prop.key, prop.computed);\n\n\t      if (t.isPattern(pattern)) {\n\t        this.push(pattern, objRef);\n\t      } else {\n\t        this.nodes.push(this.buildVariableAssignment(pattern, objRef));\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.pushObjectPattern = function pushObjectPattern(pattern, objRef) {\n\n\t      if (!pattern.properties.length) {\n\t        this.nodes.push(t.expressionStatement(t.callExpression(this.file.addHelper(\"objectDestructuringEmpty\"), [objRef])));\n\t      }\n\n\t      if (pattern.properties.length > 1 && !this.scope.isStatic(objRef)) {\n\t        var temp = this.scope.generateUidIdentifierBasedOnNode(objRef);\n\t        this.nodes.push(this.buildVariableDeclaration(temp, objRef));\n\t        objRef = temp;\n\t      }\n\n\t      for (var i = 0; i < pattern.properties.length; i++) {\n\t        var prop = pattern.properties[i];\n\t        if (t.isRestProperty(prop)) {\n\t          this.pushObjectRest(pattern, objRef, prop, i);\n\t        } else {\n\t          this.pushObjectProperty(prop, objRef);\n\t        }\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.canUnpackArrayPattern = function canUnpackArrayPattern(pattern, arr) {\n\t      if (!t.isArrayExpression(arr)) return false;\n\n\t      if (pattern.elements.length > arr.elements.length) return;\n\t      if (pattern.elements.length < arr.elements.length && !hasRest(pattern)) return false;\n\n\t      for (var _iterator3 = pattern.elements, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t        var _ref4;\n\n\t        if (_isArray3) {\n\t          if (_i3 >= _iterator3.length) break;\n\t          _ref4 = _iterator3[_i3++];\n\t        } else {\n\t          _i3 = _iterator3.next();\n\t          if (_i3.done) break;\n\t          _ref4 = _i3.value;\n\t        }\n\n\t        var elem = _ref4;\n\n\t        if (!elem) return false;\n\n\t        if (t.isMemberExpression(elem)) return false;\n\t      }\n\n\t      for (var _iterator4 = arr.elements, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t        var _ref5;\n\n\t        if (_isArray4) {\n\t          if (_i4 >= _iterator4.length) break;\n\t          _ref5 = _iterator4[_i4++];\n\t        } else {\n\t          _i4 = _iterator4.next();\n\t          if (_i4.done) break;\n\t          _ref5 = _i4.value;\n\t        }\n\n\t        var _elem = _ref5;\n\n\t        if (t.isSpreadElement(_elem)) return false;\n\n\t        if (t.isCallExpression(_elem)) return false;\n\n\t        if (t.isMemberExpression(_elem)) return false;\n\t      }\n\n\t      var bindings = t.getBindingIdentifiers(pattern);\n\t      var state = { deopt: false, bindings: bindings };\n\t      this.scope.traverse(arr, arrayUnpackVisitor, state);\n\t      return !state.deopt;\n\t    };\n\n\t    DestructuringTransformer.prototype.pushUnpackedArrayPattern = function pushUnpackedArrayPattern(pattern, arr) {\n\t      for (var i = 0; i < pattern.elements.length; i++) {\n\t        var elem = pattern.elements[i];\n\t        if (t.isRestElement(elem)) {\n\t          this.push(elem.argument, t.arrayExpression(arr.elements.slice(i)));\n\t        } else {\n\t          this.push(elem, arr.elements[i]);\n\t        }\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.pushArrayPattern = function pushArrayPattern(pattern, arrayRef) {\n\t      if (!pattern.elements) return;\n\n\t      if (this.canUnpackArrayPattern(pattern, arrayRef)) {\n\t        return this.pushUnpackedArrayPattern(pattern, arrayRef);\n\t      }\n\n\t      var count = !hasRest(pattern) && pattern.elements.length;\n\n\t      var toArray = this.toArray(arrayRef, count);\n\n\t      if (t.isIdentifier(toArray)) {\n\t        arrayRef = toArray;\n\t      } else {\n\t        arrayRef = this.scope.generateUidIdentifierBasedOnNode(arrayRef);\n\t        this.arrays[arrayRef.name] = true;\n\t        this.nodes.push(this.buildVariableDeclaration(arrayRef, toArray));\n\t      }\n\n\t      for (var i = 0; i < pattern.elements.length; i++) {\n\t        var elem = pattern.elements[i];\n\n\t        if (!elem) continue;\n\n\t        var elemRef = void 0;\n\n\t        if (t.isRestElement(elem)) {\n\t          elemRef = this.toArray(arrayRef);\n\t          elemRef = t.callExpression(t.memberExpression(elemRef, t.identifier(\"slice\")), [t.numericLiteral(i)]);\n\n\t          elem = elem.argument;\n\t        } else {\n\t          elemRef = t.memberExpression(arrayRef, t.numericLiteral(i), true);\n\t        }\n\n\t        this.push(elem, elemRef);\n\t      }\n\t    };\n\n\t    DestructuringTransformer.prototype.init = function init(pattern, ref) {\n\n\t      if (!t.isArrayExpression(ref) && !t.isMemberExpression(ref)) {\n\t        var memo = this.scope.maybeGenerateMemoised(ref, true);\n\t        if (memo) {\n\t          this.nodes.push(this.buildVariableDeclaration(memo, ref));\n\t          ref = memo;\n\t        }\n\t      }\n\n\t      this.push(pattern, ref);\n\n\t      return this.nodes;\n\t    };\n\n\t    return DestructuringTransformer;\n\t  }();\n\n\t  return {\n\t    visitor: {\n\t      ExportNamedDeclaration: function ExportNamedDeclaration(path) {\n\t        var declaration = path.get(\"declaration\");\n\t        if (!declaration.isVariableDeclaration()) return;\n\t        if (!variableDeclarationHasPattern(declaration.node)) return;\n\n\t        var specifiers = [];\n\n\t        for (var name in path.getOuterBindingIdentifiers(path)) {\n\t          var id = t.identifier(name);\n\t          specifiers.push(t.exportSpecifier(id, id));\n\t        }\n\n\t        path.replaceWith(declaration.node);\n\t        path.insertAfter(t.exportNamedDeclaration(null, specifiers));\n\t      },\n\t      ForXStatement: function ForXStatement(path, file) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var left = node.left;\n\n\t        if (t.isPattern(left)) {\n\n\t          var temp = scope.generateUidIdentifier(\"ref\");\n\n\t          node.left = t.variableDeclaration(\"var\", [t.variableDeclarator(temp)]);\n\n\t          path.ensureBlock();\n\n\t          node.body.body.unshift(t.variableDeclaration(\"var\", [t.variableDeclarator(left, temp)]));\n\n\t          return;\n\t        }\n\n\t        if (!t.isVariableDeclaration(left)) return;\n\n\t        var pattern = left.declarations[0].id;\n\t        if (!t.isPattern(pattern)) return;\n\n\t        var key = scope.generateUidIdentifier(\"ref\");\n\t        node.left = t.variableDeclaration(left.kind, [t.variableDeclarator(key, null)]);\n\n\t        var nodes = [];\n\n\t        var destructuring = new DestructuringTransformer({\n\t          kind: left.kind,\n\t          file: file,\n\t          scope: scope,\n\t          nodes: nodes\n\t        });\n\n\t        destructuring.init(pattern, key);\n\n\t        path.ensureBlock();\n\n\t        var block = node.body;\n\t        block.body = nodes.concat(block.body);\n\t      },\n\t      CatchClause: function CatchClause(_ref6, file) {\n\t        var node = _ref6.node,\n\t            scope = _ref6.scope;\n\n\t        var pattern = node.param;\n\t        if (!t.isPattern(pattern)) return;\n\n\t        var ref = scope.generateUidIdentifier(\"ref\");\n\t        node.param = ref;\n\n\t        var nodes = [];\n\n\t        var destructuring = new DestructuringTransformer({\n\t          kind: \"let\",\n\t          file: file,\n\t          scope: scope,\n\t          nodes: nodes\n\t        });\n\t        destructuring.init(pattern, ref);\n\n\t        node.body.body = nodes.concat(node.body.body);\n\t      },\n\t      AssignmentExpression: function AssignmentExpression(path, file) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        if (!t.isPattern(node.left)) return;\n\n\t        var nodes = [];\n\n\t        var destructuring = new DestructuringTransformer({\n\t          operator: node.operator,\n\t          file: file,\n\t          scope: scope,\n\t          nodes: nodes\n\t        });\n\n\t        var ref = void 0;\n\t        if (path.isCompletionRecord() || !path.parentPath.isExpressionStatement()) {\n\t          ref = scope.generateUidIdentifierBasedOnNode(node.right, \"ref\");\n\n\t          nodes.push(t.variableDeclaration(\"var\", [t.variableDeclarator(ref, node.right)]));\n\n\t          if (t.isArrayExpression(node.right)) {\n\t            destructuring.arrays[ref.name] = true;\n\t          }\n\t        }\n\n\t        destructuring.init(node.left, ref || node.right);\n\n\t        if (ref) {\n\t          nodes.push(t.expressionStatement(ref));\n\t        }\n\n\t        path.replaceWithMultiple(nodes);\n\t      },\n\t      VariableDeclaration: function VariableDeclaration(path, file) {\n\t        var node = path.node,\n\t            scope = path.scope,\n\t            parent = path.parent;\n\n\t        if (t.isForXStatement(parent)) return;\n\t        if (!parent || !path.container) return;\n\t        if (!variableDeclarationHasPattern(node)) return;\n\n\t        var nodes = [];\n\t        var declar = void 0;\n\n\t        for (var i = 0; i < node.declarations.length; i++) {\n\t          declar = node.declarations[i];\n\n\t          var patternId = declar.init;\n\t          var pattern = declar.id;\n\n\t          var destructuring = new DestructuringTransformer({\n\t            blockHoist: node._blockHoist,\n\t            nodes: nodes,\n\t            scope: scope,\n\t            kind: node.kind,\n\t            file: file\n\t          });\n\n\t          if (t.isPattern(pattern)) {\n\t            destructuring.init(pattern, patternId);\n\n\t            if (+i !== node.declarations.length - 1) {\n\t              t.inherits(nodes[nodes.length - 1], declar);\n\t            }\n\t          } else {\n\t            nodes.push(t.inherits(destructuring.buildVariableAssignment(declar.id, declar.init), declar));\n\t          }\n\t        }\n\n\t        var nodesOut = [];\n\t        for (var _iterator5 = nodes, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t          var _ref7;\n\n\t          if (_isArray5) {\n\t            if (_i5 >= _iterator5.length) break;\n\t            _ref7 = _iterator5[_i5++];\n\t          } else {\n\t            _i5 = _iterator5.next();\n\t            if (_i5.done) break;\n\t            _ref7 = _i5.value;\n\t          }\n\n\t          var _node = _ref7;\n\n\t          var tail = nodesOut[nodesOut.length - 1];\n\t          if (tail && t.isVariableDeclaration(tail) && t.isVariableDeclaration(_node) && tail.kind === _node.kind) {\n\t            var _tail$declarations;\n\n\t            (_tail$declarations = tail.declarations).push.apply(_tail$declarations, _node.declarations);\n\t          } else {\n\t            nodesOut.push(_node);\n\t          }\n\t        }\n\n\t        for (var _iterator6 = nodesOut, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : (0, _getIterator3.default)(_iterator6);;) {\n\t          var _ref8;\n\n\t          if (_isArray6) {\n\t            if (_i6 >= _iterator6.length) break;\n\t            _ref8 = _iterator6[_i6++];\n\t          } else {\n\t            _i6 = _iterator6.next();\n\t            if (_i6.done) break;\n\t            _ref8 = _i6.value;\n\t          }\n\n\t          var nodeOut = _ref8;\n\n\t          if (!nodeOut.declarations) continue;\n\t          for (var _iterator7 = nodeOut.declarations, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : (0, _getIterator3.default)(_iterator7);;) {\n\t            var _ref9;\n\n\t            if (_isArray7) {\n\t              if (_i7 >= _iterator7.length) break;\n\t              _ref9 = _iterator7[_i7++];\n\t            } else {\n\t              _i7 = _iterator7.next();\n\t              if (_i7.done) break;\n\t              _ref9 = _i7.value;\n\t            }\n\n\t            var declaration = _ref9;\n\t            var name = declaration.id.name;\n\n\t            if (scope.bindings[name]) {\n\t              scope.bindings[name].kind = nodeOut.kind;\n\t            }\n\t          }\n\t        }\n\n\t        if (nodesOut.length === 1) {\n\t          path.replaceWith(nodesOut[0]);\n\t        } else {\n\t          path.replaceWithMultiple(nodesOut);\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 74 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var messages = _ref.messages,\n\t      template = _ref.template,\n\t      t = _ref.types;\n\n\t  var buildForOfArray = template(\"\\n    for (var KEY = 0; KEY < ARR.length; KEY++) BODY;\\n  \");\n\n\t  var buildForOfLoose = template(\"\\n    for (var LOOP_OBJECT = OBJECT,\\n             IS_ARRAY = Array.isArray(LOOP_OBJECT),\\n             INDEX = 0,\\n             LOOP_OBJECT = IS_ARRAY ? LOOP_OBJECT : LOOP_OBJECT[Symbol.iterator]();;) {\\n      var ID;\\n      if (IS_ARRAY) {\\n        if (INDEX >= LOOP_OBJECT.length) break;\\n        ID = LOOP_OBJECT[INDEX++];\\n      } else {\\n        INDEX = LOOP_OBJECT.next();\\n        if (INDEX.done) break;\\n        ID = INDEX.value;\\n      }\\n    }\\n  \");\n\n\t  var buildForOf = template(\"\\n    var ITERATOR_COMPLETION = true;\\n    var ITERATOR_HAD_ERROR_KEY = false;\\n    var ITERATOR_ERROR_KEY = undefined;\\n    try {\\n      for (var ITERATOR_KEY = OBJECT[Symbol.iterator](), STEP_KEY; !(ITERATOR_COMPLETION = (STEP_KEY = ITERATOR_KEY.next()).done); ITERATOR_COMPLETION = true) {\\n      }\\n    } catch (err) {\\n      ITERATOR_HAD_ERROR_KEY = true;\\n      ITERATOR_ERROR_KEY = err;\\n    } finally {\\n      try {\\n        if (!ITERATOR_COMPLETION && ITERATOR_KEY.return) {\\n          ITERATOR_KEY.return();\\n        }\\n      } finally {\\n        if (ITERATOR_HAD_ERROR_KEY) {\\n          throw ITERATOR_ERROR_KEY;\\n        }\\n      }\\n    }\\n  \");\n\n\t  function _ForOfStatementArray(path) {\n\t    var node = path.node,\n\t        scope = path.scope;\n\n\t    var nodes = [];\n\t    var right = node.right;\n\n\t    if (!t.isIdentifier(right) || !scope.hasBinding(right.name)) {\n\t      var uid = scope.generateUidIdentifier(\"arr\");\n\t      nodes.push(t.variableDeclaration(\"var\", [t.variableDeclarator(uid, right)]));\n\t      right = uid;\n\t    }\n\n\t    var iterationKey = scope.generateUidIdentifier(\"i\");\n\n\t    var loop = buildForOfArray({\n\t      BODY: node.body,\n\t      KEY: iterationKey,\n\t      ARR: right\n\t    });\n\n\t    t.inherits(loop, node);\n\t    t.ensureBlock(loop);\n\n\t    var iterationValue = t.memberExpression(right, iterationKey, true);\n\n\t    var left = node.left;\n\t    if (t.isVariableDeclaration(left)) {\n\t      left.declarations[0].init = iterationValue;\n\t      loop.body.body.unshift(left);\n\t    } else {\n\t      loop.body.body.unshift(t.expressionStatement(t.assignmentExpression(\"=\", left, iterationValue)));\n\t    }\n\n\t    if (path.parentPath.isLabeledStatement()) {\n\t      loop = t.labeledStatement(path.parentPath.node.label, loop);\n\t    }\n\n\t    nodes.push(loop);\n\n\t    return nodes;\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      ForOfStatement: function ForOfStatement(path, state) {\n\t        if (path.get(\"right\").isArrayExpression()) {\n\t          if (path.parentPath.isLabeledStatement()) {\n\t            return path.parentPath.replaceWithMultiple(_ForOfStatementArray(path));\n\t          } else {\n\t            return path.replaceWithMultiple(_ForOfStatementArray(path));\n\t          }\n\t        }\n\n\t        var callback = spec;\n\t        if (state.opts.loose) callback = loose;\n\n\t        var node = path.node;\n\n\t        var build = callback(path, state);\n\t        var declar = build.declar;\n\t        var loop = build.loop;\n\t        var block = loop.body;\n\n\t        path.ensureBlock();\n\n\t        if (declar) {\n\t          block.body.push(declar);\n\t        }\n\n\t        block.body = block.body.concat(node.body.body);\n\n\t        t.inherits(loop, node);\n\t        t.inherits(loop.body, node.body);\n\n\t        if (build.replaceParent) {\n\t          path.parentPath.replaceWithMultiple(build.node);\n\t          path.remove();\n\t        } else {\n\t          path.replaceWithMultiple(build.node);\n\t        }\n\t      }\n\t    }\n\t  };\n\n\t  function loose(path, file) {\n\t    var node = path.node,\n\t        scope = path.scope,\n\t        parent = path.parent;\n\t    var left = node.left;\n\n\t    var declar = void 0,\n\t        id = void 0;\n\n\t    if (t.isIdentifier(left) || t.isPattern(left) || t.isMemberExpression(left)) {\n\t      id = left;\n\t    } else if (t.isVariableDeclaration(left)) {\n\t      id = scope.generateUidIdentifier(\"ref\");\n\t      declar = t.variableDeclaration(left.kind, [t.variableDeclarator(left.declarations[0].id, id)]);\n\t    } else {\n\t      throw file.buildCodeFrameError(left, messages.get(\"unknownForHead\", left.type));\n\t    }\n\n\t    var iteratorKey = scope.generateUidIdentifier(\"iterator\");\n\t    var isArrayKey = scope.generateUidIdentifier(\"isArray\");\n\n\t    var loop = buildForOfLoose({\n\t      LOOP_OBJECT: iteratorKey,\n\t      IS_ARRAY: isArrayKey,\n\t      OBJECT: node.right,\n\t      INDEX: scope.generateUidIdentifier(\"i\"),\n\t      ID: id\n\t    });\n\n\t    if (!declar) {\n\t      loop.body.body.shift();\n\t    }\n\n\t    var isLabeledParent = t.isLabeledStatement(parent);\n\t    var labeled = void 0;\n\n\t    if (isLabeledParent) {\n\t      labeled = t.labeledStatement(parent.label, loop);\n\t    }\n\n\t    return {\n\t      replaceParent: isLabeledParent,\n\t      declar: declar,\n\t      node: labeled || loop,\n\t      loop: loop\n\t    };\n\t  }\n\n\t  function spec(path, file) {\n\t    var node = path.node,\n\t        scope = path.scope,\n\t        parent = path.parent;\n\n\t    var left = node.left;\n\t    var declar = void 0;\n\n\t    var stepKey = scope.generateUidIdentifier(\"step\");\n\t    var stepValue = t.memberExpression(stepKey, t.identifier(\"value\"));\n\n\t    if (t.isIdentifier(left) || t.isPattern(left) || t.isMemberExpression(left)) {\n\t      declar = t.expressionStatement(t.assignmentExpression(\"=\", left, stepValue));\n\t    } else if (t.isVariableDeclaration(left)) {\n\t      declar = t.variableDeclaration(left.kind, [t.variableDeclarator(left.declarations[0].id, stepValue)]);\n\t    } else {\n\t      throw file.buildCodeFrameError(left, messages.get(\"unknownForHead\", left.type));\n\t    }\n\n\t    var iteratorKey = scope.generateUidIdentifier(\"iterator\");\n\n\t    var template = buildForOf({\n\t      ITERATOR_HAD_ERROR_KEY: scope.generateUidIdentifier(\"didIteratorError\"),\n\t      ITERATOR_COMPLETION: scope.generateUidIdentifier(\"iteratorNormalCompletion\"),\n\t      ITERATOR_ERROR_KEY: scope.generateUidIdentifier(\"iteratorError\"),\n\t      ITERATOR_KEY: iteratorKey,\n\t      STEP_KEY: stepKey,\n\t      OBJECT: node.right,\n\t      BODY: null\n\t    });\n\n\t    var isLabeledParent = t.isLabeledStatement(parent);\n\n\t    var tryBody = template[3].block.body;\n\t    var loop = tryBody[0];\n\n\t    if (isLabeledParent) {\n\t      tryBody[0] = t.labeledStatement(parent.label, loop);\n\t    }\n\n\t    return {\n\t      replaceParent: isLabeledParent,\n\t      declar: declar,\n\t      loop: loop,\n\t      node: template\n\t    };\n\t  }\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 75 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      FunctionExpression: {\n\t        exit: function exit(path) {\n\t          if (path.key !== \"value\" && !path.parentPath.isObjectProperty()) {\n\t            var replacement = (0, _babelHelperFunctionName2.default)(path);\n\t            if (replacement) path.replaceWith(replacement);\n\t          }\n\t        }\n\t      },\n\n\t      ObjectProperty: function ObjectProperty(path) {\n\t        var value = path.get(\"value\");\n\t        if (value.isFunction()) {\n\t          var newNode = (0, _babelHelperFunctionName2.default)(value);\n\t          if (newNode) value.replaceWith(newNode);\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperFunctionName = __webpack_require__(40);\n\n\tvar _babelHelperFunctionName2 = _interopRequireDefault(_babelHelperFunctionName);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 76 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      NumericLiteral: function NumericLiteral(_ref) {\n\t        var node = _ref.node;\n\n\t        if (node.extra && /^0[ob]/i.test(node.extra.raw)) {\n\t          node.extra = undefined;\n\t        }\n\t      },\n\t      StringLiteral: function StringLiteral(_ref2) {\n\t        var node = _ref2.node;\n\n\t        if (node.extra && /\\\\[u]/gi.test(node.extra.raw)) {\n\t          node.extra = undefined;\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 77 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function () {\n\t  var REASSIGN_REMAP_SKIP = (0, _symbol2.default)();\n\n\t  var reassignmentVisitor = {\n\t    ReferencedIdentifier: function ReferencedIdentifier(path) {\n\t      var name = path.node.name;\n\t      var remap = this.remaps[name];\n\t      if (!remap) return;\n\n\t      if (this.scope.getBinding(name) !== path.scope.getBinding(name)) return;\n\n\t      if (path.parentPath.isCallExpression({ callee: path.node })) {\n\t        path.replaceWith(t.sequenceExpression([t.numericLiteral(0), remap]));\n\t      } else if (path.isJSXIdentifier() && t.isMemberExpression(remap)) {\n\t        var object = remap.object,\n\t            property = remap.property;\n\n\t        path.replaceWith(t.JSXMemberExpression(t.JSXIdentifier(object.name), t.JSXIdentifier(property.name)));\n\t      } else {\n\t        path.replaceWith(remap);\n\t      }\n\t      this.requeueInParent(path);\n\t    },\n\t    AssignmentExpression: function AssignmentExpression(path) {\n\t      var node = path.node;\n\t      if (node[REASSIGN_REMAP_SKIP]) return;\n\n\t      var left = path.get(\"left\");\n\t      if (left.isIdentifier()) {\n\t        var name = left.node.name;\n\t        var exports = this.exports[name];\n\t        if (!exports) return;\n\n\t        if (this.scope.getBinding(name) !== path.scope.getBinding(name)) return;\n\n\t        node[REASSIGN_REMAP_SKIP] = true;\n\n\t        for (var _iterator = exports, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref = _i.value;\n\t          }\n\n\t          var reid = _ref;\n\n\t          node = buildExportsAssignment(reid, node).expression;\n\t        }\n\n\t        path.replaceWith(node);\n\t        this.requeueInParent(path);\n\t      } else if (left.isObjectPattern()) {\n\t        for (var _iterator2 = left.node.properties, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t          var _ref2;\n\n\t          if (_isArray2) {\n\t            if (_i2 >= _iterator2.length) break;\n\t            _ref2 = _iterator2[_i2++];\n\t          } else {\n\t            _i2 = _iterator2.next();\n\t            if (_i2.done) break;\n\t            _ref2 = _i2.value;\n\t          }\n\n\t          var property = _ref2;\n\n\t          var _name = property.value.name;\n\n\t          var _exports = this.exports[_name];\n\t          if (!_exports) continue;\n\n\t          if (this.scope.getBinding(_name) !== path.scope.getBinding(_name)) return;\n\n\t          node[REASSIGN_REMAP_SKIP] = true;\n\n\t          path.insertAfter(buildExportsAssignment(t.identifier(_name), t.identifier(_name)));\n\t        }\n\t      } else if (left.isArrayPattern()) {\n\t        for (var _iterator3 = left.node.elements, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t          var _ref3;\n\n\t          if (_isArray3) {\n\t            if (_i3 >= _iterator3.length) break;\n\t            _ref3 = _iterator3[_i3++];\n\t          } else {\n\t            _i3 = _iterator3.next();\n\t            if (_i3.done) break;\n\t            _ref3 = _i3.value;\n\t          }\n\n\t          var element = _ref3;\n\n\t          if (!element) continue;\n\t          var _name2 = element.name;\n\n\t          var _exports2 = this.exports[_name2];\n\t          if (!_exports2) continue;\n\n\t          if (this.scope.getBinding(_name2) !== path.scope.getBinding(_name2)) return;\n\n\t          node[REASSIGN_REMAP_SKIP] = true;\n\n\t          path.insertAfter(buildExportsAssignment(t.identifier(_name2), t.identifier(_name2)));\n\t        }\n\t      }\n\t    },\n\t    UpdateExpression: function UpdateExpression(path) {\n\t      var arg = path.get(\"argument\");\n\t      if (!arg.isIdentifier()) return;\n\n\t      var name = arg.node.name;\n\t      var exports = this.exports[name];\n\t      if (!exports) return;\n\n\t      if (this.scope.getBinding(name) !== path.scope.getBinding(name)) return;\n\n\t      var node = t.assignmentExpression(path.node.operator[0] + \"=\", arg.node, t.numericLiteral(1));\n\n\t      if (path.parentPath.isExpressionStatement() && !path.isCompletionRecord() || path.node.prefix) {\n\t        path.replaceWith(node);\n\t        this.requeueInParent(path);\n\t        return;\n\t      }\n\n\t      var nodes = [];\n\t      nodes.push(node);\n\n\t      var operator = void 0;\n\t      if (path.node.operator === \"--\") {\n\t        operator = \"+\";\n\t      } else {\n\t        operator = \"-\";\n\t      }\n\t      nodes.push(t.binaryExpression(operator, arg.node, t.numericLiteral(1)));\n\n\t      path.replaceWithMultiple(t.sequenceExpression(nodes));\n\t    }\n\t  };\n\n\t  return {\n\t    inherits: _babelPluginTransformStrictMode2.default,\n\n\t    visitor: {\n\t      ThisExpression: function ThisExpression(path, state) {\n\t        if (this.ranCommonJS) return;\n\n\t        if (state.opts.allowTopLevelThis !== true && !path.findParent(function (path) {\n\t          return !path.is(\"shadow\") && THIS_BREAK_KEYS.indexOf(path.type) >= 0;\n\t        })) {\n\t          path.replaceWith(t.identifier(\"undefined\"));\n\t        }\n\t      },\n\n\t      Program: {\n\t        exit: function exit(path) {\n\t          this.ranCommonJS = true;\n\n\t          var strict = !!this.opts.strict;\n\t          var noInterop = !!this.opts.noInterop;\n\n\t          var scope = path.scope;\n\n\t          scope.rename(\"module\");\n\t          scope.rename(\"exports\");\n\t          scope.rename(\"require\");\n\n\t          var hasExports = false;\n\t          var hasImports = false;\n\n\t          var body = path.get(\"body\");\n\t          var imports = (0, _create2.default)(null);\n\t          var exports = (0, _create2.default)(null);\n\n\t          var nonHoistedExportNames = (0, _create2.default)(null);\n\n\t          var topNodes = [];\n\t          var remaps = (0, _create2.default)(null);\n\n\t          var requires = (0, _create2.default)(null);\n\n\t          function addRequire(source, blockHoist) {\n\t            var cached = requires[source];\n\t            if (cached) return cached;\n\n\t            var ref = path.scope.generateUidIdentifier((0, _path2.basename)(source, (0, _path2.extname)(source)));\n\n\t            var varDecl = t.variableDeclaration(\"var\", [t.variableDeclarator(ref, buildRequire(t.stringLiteral(source)).expression)]);\n\n\t            if (imports[source]) {\n\t              varDecl.loc = imports[source].loc;\n\t            }\n\n\t            if (typeof blockHoist === \"number\" && blockHoist > 0) {\n\t              varDecl._blockHoist = blockHoist;\n\t            }\n\n\t            topNodes.push(varDecl);\n\n\t            return requires[source] = ref;\n\t          }\n\n\t          function addTo(obj, key, arr) {\n\t            var existing = obj[key] || [];\n\t            obj[key] = existing.concat(arr);\n\t          }\n\n\t          for (var _iterator4 = body, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t            var _ref4;\n\n\t            if (_isArray4) {\n\t              if (_i4 >= _iterator4.length) break;\n\t              _ref4 = _iterator4[_i4++];\n\t            } else {\n\t              _i4 = _iterator4.next();\n\t              if (_i4.done) break;\n\t              _ref4 = _i4.value;\n\t            }\n\n\t            var _path = _ref4;\n\n\t            if (_path.isExportDeclaration()) {\n\t              hasExports = true;\n\n\t              var specifiers = [].concat(_path.get(\"declaration\"), _path.get(\"specifiers\"));\n\t              for (var _iterator6 = specifiers, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : (0, _getIterator3.default)(_iterator6);;) {\n\t                var _ref6;\n\n\t                if (_isArray6) {\n\t                  if (_i6 >= _iterator6.length) break;\n\t                  _ref6 = _iterator6[_i6++];\n\t                } else {\n\t                  _i6 = _iterator6.next();\n\t                  if (_i6.done) break;\n\t                  _ref6 = _i6.value;\n\t                }\n\n\t                var _specifier2 = _ref6;\n\n\t                var ids = _specifier2.getBindingIdentifiers();\n\t                if (ids.__esModule) {\n\t                  throw _specifier2.buildCodeFrameError(\"Illegal export \\\"__esModule\\\"\");\n\t                }\n\t              }\n\t            }\n\n\t            if (_path.isImportDeclaration()) {\n\t              var _importsEntry$specifi;\n\n\t              hasImports = true;\n\n\t              var key = _path.node.source.value;\n\t              var importsEntry = imports[key] || {\n\t                specifiers: [],\n\t                maxBlockHoist: 0,\n\t                loc: _path.node.loc\n\t              };\n\n\t              (_importsEntry$specifi = importsEntry.specifiers).push.apply(_importsEntry$specifi, _path.node.specifiers);\n\n\t              if (typeof _path.node._blockHoist === \"number\") {\n\t                importsEntry.maxBlockHoist = Math.max(_path.node._blockHoist, importsEntry.maxBlockHoist);\n\t              }\n\n\t              imports[key] = importsEntry;\n\n\t              _path.remove();\n\t            } else if (_path.isExportDefaultDeclaration()) {\n\t              var declaration = _path.get(\"declaration\");\n\t              if (declaration.isFunctionDeclaration()) {\n\t                var id = declaration.node.id;\n\t                var defNode = t.identifier(\"default\");\n\t                if (id) {\n\t                  addTo(exports, id.name, defNode);\n\t                  topNodes.push(buildExportsAssignment(defNode, id));\n\t                  _path.replaceWith(declaration.node);\n\t                } else {\n\t                  topNodes.push(buildExportsAssignment(defNode, t.toExpression(declaration.node)));\n\t                  _path.remove();\n\t                }\n\t              } else if (declaration.isClassDeclaration()) {\n\t                var _id = declaration.node.id;\n\t                var _defNode = t.identifier(\"default\");\n\t                if (_id) {\n\t                  addTo(exports, _id.name, _defNode);\n\t                  _path.replaceWithMultiple([declaration.node, buildExportsAssignment(_defNode, _id)]);\n\t                } else {\n\t                  _path.replaceWith(buildExportsAssignment(_defNode, t.toExpression(declaration.node)));\n\n\t                  _path.parentPath.requeue(_path.get(\"expression.left\"));\n\t                }\n\t              } else {\n\t                _path.replaceWith(buildExportsAssignment(t.identifier(\"default\"), declaration.node));\n\n\t                _path.parentPath.requeue(_path.get(\"expression.left\"));\n\t              }\n\t            } else if (_path.isExportNamedDeclaration()) {\n\t              var _declaration = _path.get(\"declaration\");\n\t              if (_declaration.node) {\n\t                if (_declaration.isFunctionDeclaration()) {\n\t                  var _id2 = _declaration.node.id;\n\t                  addTo(exports, _id2.name, _id2);\n\t                  topNodes.push(buildExportsAssignment(_id2, _id2));\n\t                  _path.replaceWith(_declaration.node);\n\t                } else if (_declaration.isClassDeclaration()) {\n\t                  var _id3 = _declaration.node.id;\n\t                  addTo(exports, _id3.name, _id3);\n\t                  _path.replaceWithMultiple([_declaration.node, buildExportsAssignment(_id3, _id3)]);\n\t                  nonHoistedExportNames[_id3.name] = true;\n\t                } else if (_declaration.isVariableDeclaration()) {\n\t                  var declarators = _declaration.get(\"declarations\");\n\t                  for (var _iterator7 = declarators, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : (0, _getIterator3.default)(_iterator7);;) {\n\t                    var _ref7;\n\n\t                    if (_isArray7) {\n\t                      if (_i7 >= _iterator7.length) break;\n\t                      _ref7 = _iterator7[_i7++];\n\t                    } else {\n\t                      _i7 = _iterator7.next();\n\t                      if (_i7.done) break;\n\t                      _ref7 = _i7.value;\n\t                    }\n\n\t                    var decl = _ref7;\n\n\t                    var _id4 = decl.get(\"id\");\n\n\t                    var init = decl.get(\"init\");\n\t                    var exportsToInsert = [];\n\t                    if (!init.node) init.replaceWith(t.identifier(\"undefined\"));\n\n\t                    if (_id4.isIdentifier()) {\n\t                      addTo(exports, _id4.node.name, _id4.node);\n\t                      init.replaceWith(buildExportsAssignment(_id4.node, init.node).expression);\n\t                      nonHoistedExportNames[_id4.node.name] = true;\n\t                    } else if (_id4.isObjectPattern()) {\n\t                      for (var _i8 = 0; _i8 < _id4.node.properties.length; _i8++) {\n\t                        var prop = _id4.node.properties[_i8];\n\t                        var propValue = prop.value;\n\t                        if (t.isAssignmentPattern(propValue)) {\n\t                          propValue = propValue.left;\n\t                        } else if (t.isRestProperty(prop)) {\n\t                          propValue = prop.argument;\n\t                        }\n\t                        addTo(exports, propValue.name, propValue);\n\t                        exportsToInsert.push(buildExportsAssignment(propValue, propValue));\n\t                        nonHoistedExportNames[propValue.name] = true;\n\t                      }\n\t                    } else if (_id4.isArrayPattern() && _id4.node.elements) {\n\t                      for (var _i9 = 0; _i9 < _id4.node.elements.length; _i9++) {\n\t                        var elem = _id4.node.elements[_i9];\n\t                        if (!elem) continue;\n\t                        if (t.isAssignmentPattern(elem)) {\n\t                          elem = elem.left;\n\t                        } else if (t.isRestElement(elem)) {\n\t                          elem = elem.argument;\n\t                        }\n\t                        var name = elem.name;\n\t                        addTo(exports, name, elem);\n\t                        exportsToInsert.push(buildExportsAssignment(elem, elem));\n\t                        nonHoistedExportNames[name] = true;\n\t                      }\n\t                    }\n\t                    _path.insertAfter(exportsToInsert);\n\t                  }\n\t                  _path.replaceWith(_declaration.node);\n\t                }\n\t                continue;\n\t              }\n\n\t              var _specifiers = _path.get(\"specifiers\");\n\t              var nodes = [];\n\t              var _source = _path.node.source;\n\t              if (_source) {\n\t                var ref = addRequire(_source.value, _path.node._blockHoist);\n\n\t                for (var _iterator8 = _specifiers, _isArray8 = Array.isArray(_iterator8), _i10 = 0, _iterator8 = _isArray8 ? _iterator8 : (0, _getIterator3.default)(_iterator8);;) {\n\t                  var _ref8;\n\n\t                  if (_isArray8) {\n\t                    if (_i10 >= _iterator8.length) break;\n\t                    _ref8 = _iterator8[_i10++];\n\t                  } else {\n\t                    _i10 = _iterator8.next();\n\t                    if (_i10.done) break;\n\t                    _ref8 = _i10.value;\n\t                  }\n\n\t                  var _specifier3 = _ref8;\n\n\t                  if (_specifier3.isExportNamespaceSpecifier()) {} else if (_specifier3.isExportDefaultSpecifier()) {} else if (_specifier3.isExportSpecifier()) {\n\t                    if (!noInterop && _specifier3.node.local.name === \"default\") {\n\t                      topNodes.push(buildExportsFrom(t.stringLiteral(_specifier3.node.exported.name), t.memberExpression(t.callExpression(this.addHelper(\"interopRequireDefault\"), [ref]), _specifier3.node.local)));\n\t                    } else {\n\t                      topNodes.push(buildExportsFrom(t.stringLiteral(_specifier3.node.exported.name), t.memberExpression(ref, _specifier3.node.local)));\n\t                    }\n\t                    nonHoistedExportNames[_specifier3.node.exported.name] = true;\n\t                  }\n\t                }\n\t              } else {\n\t                for (var _iterator9 = _specifiers, _isArray9 = Array.isArray(_iterator9), _i11 = 0, _iterator9 = _isArray9 ? _iterator9 : (0, _getIterator3.default)(_iterator9);;) {\n\t                  var _ref9;\n\n\t                  if (_isArray9) {\n\t                    if (_i11 >= _iterator9.length) break;\n\t                    _ref9 = _iterator9[_i11++];\n\t                  } else {\n\t                    _i11 = _iterator9.next();\n\t                    if (_i11.done) break;\n\t                    _ref9 = _i11.value;\n\t                  }\n\n\t                  var _specifier4 = _ref9;\n\n\t                  if (_specifier4.isExportSpecifier()) {\n\t                    addTo(exports, _specifier4.node.local.name, _specifier4.node.exported);\n\t                    nonHoistedExportNames[_specifier4.node.exported.name] = true;\n\t                    nodes.push(buildExportsAssignment(_specifier4.node.exported, _specifier4.node.local));\n\t                  }\n\t                }\n\t              }\n\t              _path.replaceWithMultiple(nodes);\n\t            } else if (_path.isExportAllDeclaration()) {\n\t              var exportNode = buildExportAll({\n\t                OBJECT: addRequire(_path.node.source.value, _path.node._blockHoist)\n\t              });\n\t              exportNode.loc = _path.node.loc;\n\t              topNodes.push(exportNode);\n\t              _path.remove();\n\t            }\n\t          }\n\n\t          for (var source in imports) {\n\t            var _imports$source = imports[source],\n\t                specifiers = _imports$source.specifiers,\n\t                maxBlockHoist = _imports$source.maxBlockHoist;\n\n\t            if (specifiers.length) {\n\t              var uid = addRequire(source, maxBlockHoist);\n\n\t              var wildcard = void 0;\n\n\t              for (var i = 0; i < specifiers.length; i++) {\n\t                var specifier = specifiers[i];\n\t                if (t.isImportNamespaceSpecifier(specifier)) {\n\t                  if (strict || noInterop) {\n\t                    remaps[specifier.local.name] = uid;\n\t                  } else {\n\t                    var varDecl = t.variableDeclaration(\"var\", [t.variableDeclarator(specifier.local, t.callExpression(this.addHelper(\"interopRequireWildcard\"), [uid]))]);\n\n\t                    if (maxBlockHoist > 0) {\n\t                      varDecl._blockHoist = maxBlockHoist;\n\t                    }\n\n\t                    topNodes.push(varDecl);\n\t                  }\n\t                  wildcard = specifier.local;\n\t                } else if (t.isImportDefaultSpecifier(specifier)) {\n\t                  specifiers[i] = t.importSpecifier(specifier.local, t.identifier(\"default\"));\n\t                }\n\t              }\n\n\t              for (var _iterator5 = specifiers, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t                var _ref5;\n\n\t                if (_isArray5) {\n\t                  if (_i5 >= _iterator5.length) break;\n\t                  _ref5 = _iterator5[_i5++];\n\t                } else {\n\t                  _i5 = _iterator5.next();\n\t                  if (_i5.done) break;\n\t                  _ref5 = _i5.value;\n\t                }\n\n\t                var _specifier = _ref5;\n\n\t                if (t.isImportSpecifier(_specifier)) {\n\t                  var target = uid;\n\t                  if (_specifier.imported.name === \"default\") {\n\t                    if (wildcard) {\n\t                      target = wildcard;\n\t                    } else if (!noInterop) {\n\t                      target = wildcard = path.scope.generateUidIdentifier(uid.name);\n\t                      var _varDecl = t.variableDeclaration(\"var\", [t.variableDeclarator(target, t.callExpression(this.addHelper(\"interopRequireDefault\"), [uid]))]);\n\n\t                      if (maxBlockHoist > 0) {\n\t                        _varDecl._blockHoist = maxBlockHoist;\n\t                      }\n\n\t                      topNodes.push(_varDecl);\n\t                    }\n\t                  }\n\t                  remaps[_specifier.local.name] = t.memberExpression(target, t.cloneWithoutLoc(_specifier.imported));\n\t                }\n\t              }\n\t            } else {\n\t              var requireNode = buildRequire(t.stringLiteral(source));\n\t              requireNode.loc = imports[source].loc;\n\t              topNodes.push(requireNode);\n\t            }\n\t          }\n\n\t          if (hasImports && (0, _keys2.default)(nonHoistedExportNames).length) {\n\t            var maxHoistedExportsNodeAssignmentLength = 100;\n\t            var nonHoistedExportNamesArr = (0, _keys2.default)(nonHoistedExportNames);\n\n\t            var _loop = function _loop(currentExportsNodeAssignmentLength) {\n\t              var nonHoistedExportNamesChunk = nonHoistedExportNamesArr.slice(currentExportsNodeAssignmentLength, currentExportsNodeAssignmentLength + maxHoistedExportsNodeAssignmentLength);\n\n\t              var hoistedExportsNode = t.identifier(\"undefined\");\n\n\t              nonHoistedExportNamesChunk.forEach(function (name) {\n\t                hoistedExportsNode = buildExportsAssignment(t.identifier(name), hoistedExportsNode).expression;\n\t              });\n\n\t              var node = t.expressionStatement(hoistedExportsNode);\n\t              node._blockHoist = 3;\n\n\t              topNodes.unshift(node);\n\t            };\n\n\t            for (var currentExportsNodeAssignmentLength = 0; currentExportsNodeAssignmentLength < nonHoistedExportNamesArr.length; currentExportsNodeAssignmentLength += maxHoistedExportsNodeAssignmentLength) {\n\t              _loop(currentExportsNodeAssignmentLength);\n\t            }\n\t          }\n\n\t          if (hasExports && !strict) {\n\t            var buildTemplate = buildExportsModuleDeclaration;\n\t            if (this.opts.loose) buildTemplate = buildLooseExportsModuleDeclaration;\n\n\t            var declar = buildTemplate();\n\t            declar._blockHoist = 3;\n\n\t            topNodes.unshift(declar);\n\t          }\n\n\t          path.unshiftContainer(\"body\", topNodes);\n\t          path.traverse(reassignmentVisitor, {\n\t            remaps: remaps,\n\t            scope: scope,\n\t            exports: exports,\n\t            requeueInParent: function requeueInParent(newPath) {\n\t              return path.requeue(newPath);\n\t            }\n\t          });\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _path2 = __webpack_require__(19);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelPluginTransformStrictMode = __webpack_require__(216);\n\n\tvar _babelPluginTransformStrictMode2 = _interopRequireDefault(_babelPluginTransformStrictMode);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildRequire = (0, _babelTemplate2.default)(\"\\n  require($0);\\n\");\n\n\tvar buildExportsModuleDeclaration = (0, _babelTemplate2.default)(\"\\n  Object.defineProperty(exports, \\\"__esModule\\\", {\\n    value: true\\n  });\\n\");\n\n\tvar buildExportsFrom = (0, _babelTemplate2.default)(\"\\n  Object.defineProperty(exports, $0, {\\n    enumerable: true,\\n    get: function () {\\n      return $1;\\n    }\\n  });\\n\");\n\n\tvar buildLooseExportsModuleDeclaration = (0, _babelTemplate2.default)(\"\\n  exports.__esModule = true;\\n\");\n\n\tvar buildExportsAssignment = (0, _babelTemplate2.default)(\"\\n  exports.$0 = $1;\\n\");\n\n\tvar buildExportAll = (0, _babelTemplate2.default)(\"\\n  Object.keys(OBJECT).forEach(function (key) {\\n    if (key === \\\"default\\\" || key === \\\"__esModule\\\") return;\\n    Object.defineProperty(exports, key, {\\n      enumerable: true,\\n      get: function () {\\n        return OBJECT[key];\\n      }\\n    });\\n  });\\n\");\n\n\tvar THIS_BREAK_KEYS = [\"FunctionExpression\", \"FunctionDeclaration\", \"ClassProperty\", \"ClassMethod\", \"ObjectMethod\"];\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 78 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function Property(path, node, scope, getObjectRef, file) {\n\t    var replaceSupers = new _babelHelperReplaceSupers2.default({\n\t      getObjectRef: getObjectRef,\n\t      methodNode: node,\n\t      methodPath: path,\n\t      isStatic: true,\n\t      scope: scope,\n\t      file: file\n\t    });\n\n\t    replaceSupers.replace();\n\t  }\n\n\t  var CONTAINS_SUPER = (0, _symbol2.default)();\n\n\t  return {\n\t    visitor: {\n\t      Super: function Super(path) {\n\t        var parentObj = path.findParent(function (path) {\n\t          return path.isObjectExpression();\n\t        });\n\t        if (parentObj) parentObj.node[CONTAINS_SUPER] = true;\n\t      },\n\n\t      ObjectExpression: {\n\t        exit: function exit(path, file) {\n\t          if (!path.node[CONTAINS_SUPER]) return;\n\n\t          var objectRef = void 0;\n\t          var getObjectRef = function getObjectRef() {\n\t            return objectRef = objectRef || path.scope.generateUidIdentifier(\"obj\");\n\t          };\n\n\t          var propPaths = path.get(\"properties\");\n\t          for (var _iterator = propPaths, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t            var _ref2;\n\n\t            if (_isArray) {\n\t              if (_i >= _iterator.length) break;\n\t              _ref2 = _iterator[_i++];\n\t            } else {\n\t              _i = _iterator.next();\n\t              if (_i.done) break;\n\t              _ref2 = _i.value;\n\t            }\n\n\t            var propPath = _ref2;\n\n\t            if (propPath.isObjectProperty()) propPath = propPath.get(\"value\");\n\t            Property(propPath, propPath.node, path.scope, getObjectRef, file);\n\t          }\n\n\t          if (objectRef) {\n\t            path.scope.push({ id: objectRef });\n\t            path.replaceWith(t.assignmentExpression(\"=\", objectRef, path.node));\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperReplaceSupers = __webpack_require__(193);\n\n\tvar _babelHelperReplaceSupers2 = _interopRequireDefault(_babelHelperReplaceSupers);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 79 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function () {\n\t  return {\n\t    visitor: _babelTraverse.visitors.merge([{\n\t      ArrowFunctionExpression: function ArrowFunctionExpression(path) {\n\t        var params = path.get(\"params\");\n\t        for (var _iterator = params, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref = _i.value;\n\t          }\n\n\t          var param = _ref;\n\n\t          if (param.isRestElement() || param.isAssignmentPattern()) {\n\t            path.arrowFunctionToShadowed();\n\t            break;\n\t          }\n\t        }\n\t      }\n\t    }, destructuring.visitor, rest.visitor, def.visitor])\n\t  };\n\t};\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _destructuring = __webpack_require__(334);\n\n\tvar destructuring = _interopRequireWildcard(_destructuring);\n\n\tvar _default = __webpack_require__(333);\n\n\tvar def = _interopRequireWildcard(_default);\n\n\tvar _rest = __webpack_require__(335);\n\n\tvar rest = _interopRequireWildcard(_rest);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 80 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      ObjectMethod: function ObjectMethod(path) {\n\t        var node = path.node;\n\n\t        if (node.kind === \"method\") {\n\t          var func = t.functionExpression(null, node.params, node.body, node.generator, node.async);\n\t          func.returnType = node.returnType;\n\n\t          path.replaceWith(t.objectProperty(node.key, func, node.computed));\n\t        }\n\t      },\n\t      ObjectProperty: function ObjectProperty(_ref) {\n\t        var node = _ref.node;\n\n\t        if (node.shorthand) {\n\t          node.shorthand = false;\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 81 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function getSpreadLiteral(spread, scope, state) {\n\t    if (state.opts.loose && !t.isIdentifier(spread.argument, { name: \"arguments\" })) {\n\t      return spread.argument;\n\t    } else {\n\t      return scope.toArray(spread.argument, true);\n\t    }\n\t  }\n\n\t  function hasSpread(nodes) {\n\t    for (var i = 0; i < nodes.length; i++) {\n\t      if (t.isSpreadElement(nodes[i])) {\n\t        return true;\n\t      }\n\t    }\n\t    return false;\n\t  }\n\n\t  function build(props, scope, state) {\n\t    var nodes = [];\n\n\t    var _props = [];\n\n\t    function push() {\n\t      if (!_props.length) return;\n\t      nodes.push(t.arrayExpression(_props));\n\t      _props = [];\n\t    }\n\n\t    for (var _iterator = props, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref2;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref2 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref2 = _i.value;\n\t      }\n\n\t      var prop = _ref2;\n\n\t      if (t.isSpreadElement(prop)) {\n\t        push();\n\t        nodes.push(getSpreadLiteral(prop, scope, state));\n\t      } else {\n\t        _props.push(prop);\n\t      }\n\t    }\n\n\t    push();\n\n\t    return nodes;\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      ArrayExpression: function ArrayExpression(path, state) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var elements = node.elements;\n\t        if (!hasSpread(elements)) return;\n\n\t        var nodes = build(elements, scope, state);\n\t        var first = nodes.shift();\n\n\t        if (!t.isArrayExpression(first)) {\n\t          nodes.unshift(first);\n\t          first = t.arrayExpression([]);\n\t        }\n\n\t        path.replaceWith(t.callExpression(t.memberExpression(first, t.identifier(\"concat\")), nodes));\n\t      },\n\t      CallExpression: function CallExpression(path, state) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var args = node.arguments;\n\t        if (!hasSpread(args)) return;\n\n\t        var calleePath = path.get(\"callee\");\n\t        if (calleePath.isSuper()) return;\n\n\t        var contextLiteral = t.identifier(\"undefined\");\n\n\t        node.arguments = [];\n\n\t        var nodes = void 0;\n\t        if (args.length === 1 && args[0].argument.name === \"arguments\") {\n\t          nodes = [args[0].argument];\n\t        } else {\n\t          nodes = build(args, scope, state);\n\t        }\n\n\t        var first = nodes.shift();\n\t        if (nodes.length) {\n\t          node.arguments.push(t.callExpression(t.memberExpression(first, t.identifier(\"concat\")), nodes));\n\t        } else {\n\t          node.arguments.push(first);\n\t        }\n\n\t        var callee = node.callee;\n\n\t        if (calleePath.isMemberExpression()) {\n\t          var temp = scope.maybeGenerateMemoised(callee.object);\n\t          if (temp) {\n\t            callee.object = t.assignmentExpression(\"=\", temp, callee.object);\n\t            contextLiteral = temp;\n\t          } else {\n\t            contextLiteral = callee.object;\n\t          }\n\t          t.appendToMemberExpression(callee, t.identifier(\"apply\"));\n\t        } else {\n\t          node.callee = t.memberExpression(node.callee, t.identifier(\"apply\"));\n\t        }\n\n\t        if (t.isSuper(contextLiteral)) {\n\t          contextLiteral = t.thisExpression();\n\t        }\n\n\t        node.arguments.unshift(contextLiteral);\n\t      },\n\t      NewExpression: function NewExpression(path, state) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var args = node.arguments;\n\t        if (!hasSpread(args)) return;\n\n\t        var nodes = build(args, scope, state);\n\n\t        var context = t.arrayExpression([t.nullLiteral()]);\n\n\t        args = t.callExpression(t.memberExpression(context, t.identifier(\"concat\")), nodes);\n\n\t        path.replaceWith(t.newExpression(t.callExpression(t.memberExpression(t.memberExpression(t.memberExpression(t.identifier(\"Function\"), t.identifier(\"prototype\")), t.identifier(\"bind\")), t.identifier(\"apply\")), [node.callee, args]), []));\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 82 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      RegExpLiteral: function RegExpLiteral(path) {\n\t        var node = path.node;\n\n\t        if (!regex.is(node, \"y\")) return;\n\n\t        path.replaceWith(t.newExpression(t.identifier(\"RegExp\"), [t.stringLiteral(node.pattern), t.stringLiteral(node.flags)]));\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperRegex = __webpack_require__(192);\n\n\tvar regex = _interopRequireWildcard(_babelHelperRegex);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 83 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function isString(node) {\n\t    return t.isLiteral(node) && typeof node.value === \"string\";\n\t  }\n\n\t  function buildBinaryExpression(left, right) {\n\t    return t.binaryExpression(\"+\", left, right);\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      TaggedTemplateExpression: function TaggedTemplateExpression(path, state) {\n\t        var node = path.node;\n\n\t        var quasi = node.quasi;\n\t        var args = [];\n\n\t        var strings = [];\n\t        var raw = [];\n\n\t        for (var _iterator = quasi.quasis, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref2;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref2 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref2 = _i.value;\n\t          }\n\n\t          var elem = _ref2;\n\n\t          strings.push(t.stringLiteral(elem.value.cooked));\n\t          raw.push(t.stringLiteral(elem.value.raw));\n\t        }\n\n\t        strings = t.arrayExpression(strings);\n\t        raw = t.arrayExpression(raw);\n\n\t        var templateName = \"taggedTemplateLiteral\";\n\t        if (state.opts.loose) templateName += \"Loose\";\n\n\t        var templateObject = state.file.addTemplateObject(templateName, strings, raw);\n\t        args.push(templateObject);\n\n\t        args = args.concat(quasi.expressions);\n\n\t        path.replaceWith(t.callExpression(node.tag, args));\n\t      },\n\t      TemplateLiteral: function TemplateLiteral(path, state) {\n\t        var nodes = [];\n\n\t        var expressions = path.get(\"expressions\");\n\n\t        for (var _iterator2 = path.node.quasis, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t          var _ref3;\n\n\t          if (_isArray2) {\n\t            if (_i2 >= _iterator2.length) break;\n\t            _ref3 = _iterator2[_i2++];\n\t          } else {\n\t            _i2 = _iterator2.next();\n\t            if (_i2.done) break;\n\t            _ref3 = _i2.value;\n\t          }\n\n\t          var elem = _ref3;\n\n\t          nodes.push(t.stringLiteral(elem.value.cooked));\n\n\t          var expr = expressions.shift();\n\t          if (expr) {\n\t            if (state.opts.spec && !expr.isBaseType(\"string\") && !expr.isBaseType(\"number\")) {\n\t              nodes.push(t.callExpression(t.identifier(\"String\"), [expr.node]));\n\t            } else {\n\t              nodes.push(expr.node);\n\t            }\n\t          }\n\t        }\n\n\t        nodes = nodes.filter(function (n) {\n\t          return !t.isLiteral(n, { value: \"\" });\n\t        });\n\n\t        if (!isString(nodes[0]) && !isString(nodes[1])) {\n\t          nodes.unshift(t.stringLiteral(\"\"));\n\t        }\n\n\t        if (nodes.length > 1) {\n\t          var root = buildBinaryExpression(nodes.shift(), nodes.shift());\n\n\t          for (var _iterator3 = nodes, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t            var _ref4;\n\n\t            if (_isArray3) {\n\t              if (_i3 >= _iterator3.length) break;\n\t              _ref4 = _iterator3[_i3++];\n\t            } else {\n\t              _i3 = _iterator3.next();\n\t              if (_i3.done) break;\n\t              _ref4 = _i3.value;\n\t            }\n\n\t            var node = _ref4;\n\n\t            root = buildBinaryExpression(root, node);\n\t          }\n\n\t          path.replaceWith(root);\n\t        } else {\n\t          path.replaceWith(nodes[0]);\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 84 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var IGNORE = (0, _symbol2.default)();\n\n\t  return {\n\t    visitor: {\n\t      Scope: function Scope(_ref2) {\n\t        var scope = _ref2.scope;\n\n\t        if (!scope.getBinding(\"Symbol\")) {\n\t          return;\n\t        }\n\n\t        scope.rename(\"Symbol\");\n\t      },\n\t      UnaryExpression: function UnaryExpression(path) {\n\t        var node = path.node,\n\t            parent = path.parent;\n\n\t        if (node[IGNORE]) return;\n\t        if (path.find(function (path) {\n\t          return path.node && !!path.node._generated;\n\t        })) return;\n\n\t        if (path.parentPath.isBinaryExpression() && t.EQUALITY_BINARY_OPERATORS.indexOf(parent.operator) >= 0) {\n\t          var opposite = path.getOpposite();\n\t          if (opposite.isLiteral() && opposite.node.value !== \"symbol\" && opposite.node.value !== \"object\") {\n\t            return;\n\t          }\n\t        }\n\n\t        if (node.operator === \"typeof\") {\n\t          var call = t.callExpression(this.addHelper(\"typeof\"), [node.argument]);\n\t          if (path.get(\"argument\").isIdentifier()) {\n\t            var undefLiteral = t.stringLiteral(\"undefined\");\n\t            var unary = t.unaryExpression(\"typeof\", node.argument);\n\t            unary[IGNORE] = true;\n\t            path.replaceWith(t.conditionalExpression(t.binaryExpression(\"===\", unary, undefLiteral), undefLiteral, call));\n\t          } else {\n\t            path.replaceWith(call);\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 85 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      RegExpLiteral: function RegExpLiteral(_ref) {\n\t        var node = _ref.node;\n\n\t        if (!regex.is(node, \"u\")) return;\n\t        node.pattern = (0, _regexpuCore2.default)(node.pattern, node.flags);\n\t        regex.pullFlag(node, \"u\");\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _regexpuCore = __webpack_require__(612);\n\n\tvar _regexpuCore2 = _interopRequireDefault(_regexpuCore);\n\n\tvar _babelHelperRegex = __webpack_require__(192);\n\n\tvar regex = _interopRequireWildcard(_babelHelperRegex);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 86 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = __webpack_require__(606);\n\n/***/ }),\n/* 87 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(408), __esModule: true };\n\n/***/ }),\n/* 88 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.scope = exports.path = undefined;\n\n\tvar _weakMap = __webpack_require__(364);\n\n\tvar _weakMap2 = _interopRequireDefault(_weakMap);\n\n\texports.clear = clear;\n\texports.clearPath = clearPath;\n\texports.clearScope = clearScope;\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar path = exports.path = new _weakMap2.default();\n\tvar scope = exports.scope = new _weakMap2.default();\n\n\tfunction clear() {\n\t  clearPath();\n\t  clearScope();\n\t}\n\n\tfunction clearPath() {\n\t  exports.path = path = new _weakMap2.default();\n\t}\n\n\tfunction clearScope() {\n\t  exports.scope = scope = new _weakMap2.default();\n\t}\n\n/***/ }),\n/* 89 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof2 = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tObject.defineProperty(exports, '__esModule', { value: true });\n\n\t/* eslint max-len: 0 */\n\n\t// This is a trick taken from Esprima. It turns out that, on\n\t// non-Chrome browsers, to check whether a string is in a set, a\n\t// predicate containing a big ugly `switch` statement is faster than\n\t// a regular expression, and on Chrome the two are about on par.\n\t// This function uses `eval` (non-lexical) to produce such a\n\t// predicate from a space-separated string of words.\n\t//\n\t// It starts by sorting the words by length.\n\n\tfunction makePredicate(words) {\n\t  words = words.split(\" \");\n\t  return function (str) {\n\t    return words.indexOf(str) >= 0;\n\t  };\n\t}\n\n\t// Reserved word lists for various dialects of the language\n\n\tvar reservedWords = {\n\t  6: makePredicate(\"enum await\"),\n\t  strict: makePredicate(\"implements interface let package private protected public static yield\"),\n\t  strictBind: makePredicate(\"eval arguments\")\n\t};\n\n\t// And the keywords\n\n\tvar isKeyword = makePredicate(\"break case catch continue debugger default do else finally for function if return switch throw try var while with null true false instanceof typeof void delete new in this let const class extends export import yield super\");\n\n\t// ## Character categories\n\n\t// Big ugly regular expressions that match characters in the\n\t// whitespace, identifier, and identifier-start categories. These\n\t// are only applied when a character is found to actually have a\n\t// code point above 128.\n\t// Generated by `bin/generate-identifier-regex.js`.\n\n\tvar nonASCIIidentifierStartChars = '\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0-\\u08B4\\u08B6-\\u08BD\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0AF9\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D\\u0C58-\\u0C5A\\u0C60\\u0C61\\u0C80\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D54-\\u0D56\\u0D5F-\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F5\\u13F8-\\u13FD\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19B0-\\u19C9\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1C80-\\u1C88\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2118-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309B-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FD5\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA69D\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA7AE\\uA7B0-\\uA7B7\\uA7F7-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA8FD\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uA9E0-\\uA9E4\\uA9E6-\\uA9EF\\uA9FA-\\uA9FE\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA7E-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB65\\uAB70-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC';\n\tvar nonASCIIidentifierChars = '\\u200C\\u200D\\xB7\\u0300-\\u036F\\u0387\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u0669\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u06F0-\\u06F9\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07C0-\\u07C9\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0859-\\u085B\\u08D4-\\u08E1\\u08E3-\\u0903\\u093A-\\u093C\\u093E-\\u094F\\u0951-\\u0957\\u0962\\u0963\\u0966-\\u096F\\u0981-\\u0983\\u09BC\\u09BE-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CD\\u09D7\\u09E2\\u09E3\\u09E6-\\u09EF\\u0A01-\\u0A03\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A66-\\u0A71\\u0A75\\u0A81-\\u0A83\\u0ABC\\u0ABE-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AE2\\u0AE3\\u0AE6-\\u0AEF\\u0B01-\\u0B03\\u0B3C\\u0B3E-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B62\\u0B63\\u0B66-\\u0B6F\\u0B82\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD7\\u0BE6-\\u0BEF\\u0C00-\\u0C03\\u0C3E-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0C66-\\u0C6F\\u0C81-\\u0C83\\u0CBC\\u0CBE-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CE2\\u0CE3\\u0CE6-\\u0CEF\\u0D01-\\u0D03\\u0D3E-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4D\\u0D57\\u0D62\\u0D63\\u0D66-\\u0D6F\\u0D82\\u0D83\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DE6-\\u0DEF\\u0DF2\\u0DF3\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0E50-\\u0E59\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0ED0-\\u0ED9\\u0F18\\u0F19\\u0F20-\\u0F29\\u0F35\\u0F37\\u0F39\\u0F3E\\u0F3F\\u0F71-\\u0F84\\u0F86\\u0F87\\u0F8D-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102B-\\u103E\\u1040-\\u1049\\u1056-\\u1059\\u105E-\\u1060\\u1062-\\u1064\\u1067-\\u106D\\u1071-\\u1074\\u1082-\\u108D\\u108F-\\u109D\\u135D-\\u135F\\u1369-\\u1371\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B4-\\u17D3\\u17DD\\u17E0-\\u17E9\\u180B-\\u180D\\u1810-\\u1819\\u18A9\\u1920-\\u192B\\u1930-\\u193B\\u1946-\\u194F\\u19D0-\\u19DA\\u1A17-\\u1A1B\\u1A55-\\u1A5E\\u1A60-\\u1A7C\\u1A7F-\\u1A89\\u1A90-\\u1A99\\u1AB0-\\u1ABD\\u1B00-\\u1B04\\u1B34-\\u1B44\\u1B50-\\u1B59\\u1B6B-\\u1B73\\u1B80-\\u1B82\\u1BA1-\\u1BAD\\u1BB0-\\u1BB9\\u1BE6-\\u1BF3\\u1C24-\\u1C37\\u1C40-\\u1C49\\u1C50-\\u1C59\\u1CD0-\\u1CD2\\u1CD4-\\u1CE8\\u1CED\\u1CF2-\\u1CF4\\u1CF8\\u1CF9\\u1DC0-\\u1DF5\\u1DFB-\\u1DFF\\u203F\\u2040\\u2054\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2D7F\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA620-\\uA629\\uA66F\\uA674-\\uA67D\\uA69E\\uA69F\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA823-\\uA827\\uA880\\uA881\\uA8B4-\\uA8C5\\uA8D0-\\uA8D9\\uA8E0-\\uA8F1\\uA900-\\uA909\\uA926-\\uA92D\\uA947-\\uA953\\uA980-\\uA983\\uA9B3-\\uA9C0\\uA9D0-\\uA9D9\\uA9E5\\uA9F0-\\uA9F9\\uAA29-\\uAA36\\uAA43\\uAA4C\\uAA4D\\uAA50-\\uAA59\\uAA7B-\\uAA7D\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uAAEB-\\uAAEF\\uAAF5\\uAAF6\\uABE3-\\uABEA\\uABEC\\uABED\\uABF0-\\uABF9\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE2F\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF10-\\uFF19\\uFF3F';\n\n\tvar nonASCIIidentifierStart = new RegExp(\"[\" + nonASCIIidentifierStartChars + \"]\");\n\tvar nonASCIIidentifier = new RegExp(\"[\" + nonASCIIidentifierStartChars + nonASCIIidentifierChars + \"]\");\n\n\tnonASCIIidentifierStartChars = nonASCIIidentifierChars = null;\n\n\t// These are a run-length and offset encoded representation of the\n\t// >0xffff code points that are a valid part of identifiers. The\n\t// offset starts at 0x10000, and each pair of numbers represents an\n\t// offset to the next range, and then a size of the range. They were\n\t// generated by `bin/generate-identifier-regex.js`.\n\t// eslint-disable-next-line comma-spacing\n\tvar astralIdentifierStartCodes = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 17, 26, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 19, 35, 5, 35, 5, 39, 9, 51, 157, 310, 10, 21, 11, 7, 153, 5, 3, 0, 2, 43, 2, 1, 4, 0, 3, 22, 11, 22, 10, 30, 66, 18, 2, 1, 11, 21, 11, 25, 71, 55, 7, 1, 65, 0, 16, 3, 2, 2, 2, 26, 45, 28, 4, 28, 36, 7, 2, 27, 28, 53, 11, 21, 11, 18, 14, 17, 111, 72, 56, 50, 14, 50, 785, 52, 76, 44, 33, 24, 27, 35, 42, 34, 4, 0, 13, 47, 15, 3, 22, 0, 2, 0, 36, 17, 2, 24, 85, 6, 2, 0, 2, 3, 2, 14, 2, 9, 8, 46, 39, 7, 3, 1, 3, 21, 2, 6, 2, 1, 2, 4, 4, 0, 19, 0, 13, 4, 159, 52, 19, 3, 54, 47, 21, 1, 2, 0, 185, 46, 42, 3, 37, 47, 21, 0, 60, 42, 86, 25, 391, 63, 32, 0, 449, 56, 264, 8, 2, 36, 18, 0, 50, 29, 881, 921, 103, 110, 18, 195, 2749, 1070, 4050, 582, 8634, 568, 8, 30, 114, 29, 19, 47, 17, 3, 32, 20, 6, 18, 881, 68, 12, 0, 67, 12, 65, 0, 32, 6124, 20, 754, 9486, 1, 3071, 106, 6, 12, 4, 8, 8, 9, 5991, 84, 2, 70, 2, 1, 3, 0, 3, 1, 3, 3, 2, 11, 2, 0, 2, 6, 2, 64, 2, 3, 3, 7, 2, 6, 2, 27, 2, 3, 2, 4, 2, 0, 4, 6, 2, 339, 3, 24, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 7, 4149, 196, 60, 67, 1213, 3, 2, 26, 2, 1, 2, 0, 3, 0, 2, 9, 2, 3, 2, 0, 2, 0, 7, 0, 5, 0, 2, 0, 2, 0, 2, 2, 2, 1, 2, 0, 3, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 3, 3, 2, 6, 2, 3, 2, 3, 2, 0, 2, 9, 2, 16, 6, 2, 2, 4, 2, 16, 4421, 42710, 42, 4148, 12, 221, 3, 5761, 10591, 541];\n\t// eslint-disable-next-line comma-spacing\n\tvar astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 1306, 2, 54, 14, 32, 9, 16, 3, 46, 10, 54, 9, 7, 2, 37, 13, 2, 9, 52, 0, 13, 2, 49, 13, 10, 2, 4, 9, 83, 11, 7, 0, 161, 11, 6, 9, 7, 3, 57, 0, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 193, 17, 10, 9, 87, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 84, 14, 5, 9, 423, 9, 838, 7, 2, 7, 17, 9, 57, 21, 2, 13, 19882, 9, 135, 4, 60, 6, 26, 9, 1016, 45, 17, 3, 19723, 1, 5319, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 513, 54, 5, 49, 9, 0, 15, 0, 23, 4, 2, 14, 1361, 6, 2, 16, 3, 6, 2, 1, 2, 4, 2214, 6, 110, 6, 6, 9, 792487, 239];\n\n\t// This has a complexity linear to the value of the code. The\n\t// assumption is that looking up astral identifier characters is\n\t// rare.\n\tfunction isInAstralSet(code, set) {\n\t  var pos = 0x10000;\n\t  for (var i = 0; i < set.length; i += 2) {\n\t    pos += set[i];\n\t    if (pos > code) return false;\n\n\t    pos += set[i + 1];\n\t    if (pos >= code) return true;\n\t  }\n\t}\n\n\t// Test whether a given character code starts an identifier.\n\n\tfunction isIdentifierStart(code) {\n\t  if (code < 65) return code === 36;\n\t  if (code < 91) return true;\n\t  if (code < 97) return code === 95;\n\t  if (code < 123) return true;\n\t  if (code <= 0xffff) return code >= 0xaa && nonASCIIidentifierStart.test(String.fromCharCode(code));\n\t  return isInAstralSet(code, astralIdentifierStartCodes);\n\t}\n\n\t// Test whether a given character is part of an identifier.\n\n\tfunction isIdentifierChar(code) {\n\t  if (code < 48) return code === 36;\n\t  if (code < 58) return true;\n\t  if (code < 65) return false;\n\t  if (code < 91) return true;\n\t  if (code < 97) return code === 95;\n\t  if (code < 123) return true;\n\t  if (code <= 0xffff) return code >= 0xaa && nonASCIIidentifier.test(String.fromCharCode(code));\n\t  return isInAstralSet(code, astralIdentifierStartCodes) || isInAstralSet(code, astralIdentifierCodes);\n\t}\n\n\t// A second optional argument can be given to further configure\n\tvar defaultOptions = {\n\t  // Source type (\"script\" or \"module\") for different semantics\n\t  sourceType: \"script\",\n\t  // Source filename.\n\t  sourceFilename: undefined,\n\t  // Line from which to start counting source. Useful for\n\t  // integration with other tools.\n\t  startLine: 1,\n\t  // When enabled, a return at the top level is not considered an\n\t  // error.\n\t  allowReturnOutsideFunction: false,\n\t  // When enabled, import/export statements are not constrained to\n\t  // appearing at the top of the program.\n\t  allowImportExportEverywhere: false,\n\t  // TODO\n\t  allowSuperOutsideMethod: false,\n\t  // An array of plugins to enable\n\t  plugins: [],\n\t  // TODO\n\t  strictMode: null\n\t};\n\n\t// Interpret and default an options object\n\n\tfunction getOptions(opts) {\n\t  var options = {};\n\t  for (var key in defaultOptions) {\n\t    options[key] = opts && key in opts ? opts[key] : defaultOptions[key];\n\t  }\n\t  return options;\n\t}\n\n\tvar _typeof = typeof Symbol === \"function\" && _typeof2(Symbol.iterator) === \"symbol\" ? function (obj) {\n\t  return typeof obj === 'undefined' ? 'undefined' : _typeof2(obj);\n\t} : function (obj) {\n\t  return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj === 'undefined' ? 'undefined' : _typeof2(obj);\n\t};\n\n\tvar classCallCheck = function classCallCheck(instance, Constructor) {\n\t  if (!(instance instanceof Constructor)) {\n\t    throw new TypeError(\"Cannot call a class as a function\");\n\t  }\n\t};\n\n\tvar inherits = function inherits(subClass, superClass) {\n\t  if (typeof superClass !== \"function\" && superClass !== null) {\n\t    throw new TypeError(\"Super expression must either be null or a function, not \" + (typeof superClass === 'undefined' ? 'undefined' : _typeof2(superClass)));\n\t  }\n\n\t  subClass.prototype = Object.create(superClass && superClass.prototype, {\n\t    constructor: {\n\t      value: subClass,\n\t      enumerable: false,\n\t      writable: true,\n\t      configurable: true\n\t    }\n\t  });\n\t  if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;\n\t};\n\n\tvar possibleConstructorReturn = function possibleConstructorReturn(self, call) {\n\t  if (!self) {\n\t    throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n\t  }\n\n\t  return call && ((typeof call === 'undefined' ? 'undefined' : _typeof2(call)) === \"object\" || typeof call === \"function\") ? call : self;\n\t};\n\n\t// ## Token types\n\n\t// The assignment of fine-grained, information-carrying type objects\n\t// allows the tokenizer to store the information it has about a\n\t// token in a way that is very cheap for the parser to look up.\n\n\t// All token type variables start with an underscore, to make them\n\t// easy to recognize.\n\n\t// The `beforeExpr` property is used to disambiguate between regular\n\t// expressions and divisions. It is set on all token types that can\n\t// be followed by an expression (thus, a slash after them would be a\n\t// regular expression).\n\t//\n\t// `isLoop` marks a keyword as starting a loop, which is important\n\t// to know when parsing a label, in order to allow or disallow\n\t// continue jumps to that label.\n\n\tvar beforeExpr = true;\n\tvar startsExpr = true;\n\tvar isLoop = true;\n\tvar isAssign = true;\n\tvar prefix = true;\n\tvar postfix = true;\n\n\tvar TokenType = function TokenType(label) {\n\t  var conf = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t  classCallCheck(this, TokenType);\n\n\t  this.label = label;\n\t  this.keyword = conf.keyword;\n\t  this.beforeExpr = !!conf.beforeExpr;\n\t  this.startsExpr = !!conf.startsExpr;\n\t  this.rightAssociative = !!conf.rightAssociative;\n\t  this.isLoop = !!conf.isLoop;\n\t  this.isAssign = !!conf.isAssign;\n\t  this.prefix = !!conf.prefix;\n\t  this.postfix = !!conf.postfix;\n\t  this.binop = conf.binop || null;\n\t  this.updateContext = null;\n\t};\n\n\tvar KeywordTokenType = function (_TokenType) {\n\t  inherits(KeywordTokenType, _TokenType);\n\n\t  function KeywordTokenType(name) {\n\t    var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t    classCallCheck(this, KeywordTokenType);\n\n\t    options.keyword = name;\n\n\t    return possibleConstructorReturn(this, _TokenType.call(this, name, options));\n\t  }\n\n\t  return KeywordTokenType;\n\t}(TokenType);\n\n\tvar BinopTokenType = function (_TokenType2) {\n\t  inherits(BinopTokenType, _TokenType2);\n\n\t  function BinopTokenType(name, prec) {\n\t    classCallCheck(this, BinopTokenType);\n\t    return possibleConstructorReturn(this, _TokenType2.call(this, name, { beforeExpr: beforeExpr, binop: prec }));\n\t  }\n\n\t  return BinopTokenType;\n\t}(TokenType);\n\n\tvar types = {\n\t  num: new TokenType(\"num\", { startsExpr: startsExpr }),\n\t  regexp: new TokenType(\"regexp\", { startsExpr: startsExpr }),\n\t  string: new TokenType(\"string\", { startsExpr: startsExpr }),\n\t  name: new TokenType(\"name\", { startsExpr: startsExpr }),\n\t  eof: new TokenType(\"eof\"),\n\n\t  // Punctuation token types.\n\t  bracketL: new TokenType(\"[\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  bracketR: new TokenType(\"]\"),\n\t  braceL: new TokenType(\"{\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  braceBarL: new TokenType(\"{|\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  braceR: new TokenType(\"}\"),\n\t  braceBarR: new TokenType(\"|}\"),\n\t  parenL: new TokenType(\"(\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  parenR: new TokenType(\")\"),\n\t  comma: new TokenType(\",\", { beforeExpr: beforeExpr }),\n\t  semi: new TokenType(\";\", { beforeExpr: beforeExpr }),\n\t  colon: new TokenType(\":\", { beforeExpr: beforeExpr }),\n\t  doubleColon: new TokenType(\"::\", { beforeExpr: beforeExpr }),\n\t  dot: new TokenType(\".\"),\n\t  question: new TokenType(\"?\", { beforeExpr: beforeExpr }),\n\t  arrow: new TokenType(\"=>\", { beforeExpr: beforeExpr }),\n\t  template: new TokenType(\"template\"),\n\t  ellipsis: new TokenType(\"...\", { beforeExpr: beforeExpr }),\n\t  backQuote: new TokenType(\"`\", { startsExpr: startsExpr }),\n\t  dollarBraceL: new TokenType(\"${\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  at: new TokenType(\"@\"),\n\n\t  // Operators. These carry several kinds of properties to help the\n\t  // parser use them properly (the presence of these properties is\n\t  // what categorizes them as operators).\n\t  //\n\t  // `binop`, when present, specifies that this operator is a binary\n\t  // operator, and will refer to its precedence.\n\t  //\n\t  // `prefix` and `postfix` mark the operator as a prefix or postfix\n\t  // unary operator.\n\t  //\n\t  // `isAssign` marks all of `=`, `+=`, `-=` etcetera, which act as\n\t  // binary operators with a very low precedence, that should result\n\t  // in AssignmentExpression nodes.\n\n\t  eq: new TokenType(\"=\", { beforeExpr: beforeExpr, isAssign: isAssign }),\n\t  assign: new TokenType(\"_=\", { beforeExpr: beforeExpr, isAssign: isAssign }),\n\t  incDec: new TokenType(\"++/--\", { prefix: prefix, postfix: postfix, startsExpr: startsExpr }),\n\t  prefix: new TokenType(\"prefix\", { beforeExpr: beforeExpr, prefix: prefix, startsExpr: startsExpr }),\n\t  logicalOR: new BinopTokenType(\"||\", 1),\n\t  logicalAND: new BinopTokenType(\"&&\", 2),\n\t  bitwiseOR: new BinopTokenType(\"|\", 3),\n\t  bitwiseXOR: new BinopTokenType(\"^\", 4),\n\t  bitwiseAND: new BinopTokenType(\"&\", 5),\n\t  equality: new BinopTokenType(\"==/!=\", 6),\n\t  relational: new BinopTokenType(\"</>\", 7),\n\t  bitShift: new BinopTokenType(\"<</>>\", 8),\n\t  plusMin: new TokenType(\"+/-\", { beforeExpr: beforeExpr, binop: 9, prefix: prefix, startsExpr: startsExpr }),\n\t  modulo: new BinopTokenType(\"%\", 10),\n\t  star: new BinopTokenType(\"*\", 10),\n\t  slash: new BinopTokenType(\"/\", 10),\n\t  exponent: new TokenType(\"**\", { beforeExpr: beforeExpr, binop: 11, rightAssociative: true })\n\t};\n\n\tvar keywords = {\n\t  \"break\": new KeywordTokenType(\"break\"),\n\t  \"case\": new KeywordTokenType(\"case\", { beforeExpr: beforeExpr }),\n\t  \"catch\": new KeywordTokenType(\"catch\"),\n\t  \"continue\": new KeywordTokenType(\"continue\"),\n\t  \"debugger\": new KeywordTokenType(\"debugger\"),\n\t  \"default\": new KeywordTokenType(\"default\", { beforeExpr: beforeExpr }),\n\t  \"do\": new KeywordTokenType(\"do\", { isLoop: isLoop, beforeExpr: beforeExpr }),\n\t  \"else\": new KeywordTokenType(\"else\", { beforeExpr: beforeExpr }),\n\t  \"finally\": new KeywordTokenType(\"finally\"),\n\t  \"for\": new KeywordTokenType(\"for\", { isLoop: isLoop }),\n\t  \"function\": new KeywordTokenType(\"function\", { startsExpr: startsExpr }),\n\t  \"if\": new KeywordTokenType(\"if\"),\n\t  \"return\": new KeywordTokenType(\"return\", { beforeExpr: beforeExpr }),\n\t  \"switch\": new KeywordTokenType(\"switch\"),\n\t  \"throw\": new KeywordTokenType(\"throw\", { beforeExpr: beforeExpr }),\n\t  \"try\": new KeywordTokenType(\"try\"),\n\t  \"var\": new KeywordTokenType(\"var\"),\n\t  \"let\": new KeywordTokenType(\"let\"),\n\t  \"const\": new KeywordTokenType(\"const\"),\n\t  \"while\": new KeywordTokenType(\"while\", { isLoop: isLoop }),\n\t  \"with\": new KeywordTokenType(\"with\"),\n\t  \"new\": new KeywordTokenType(\"new\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  \"this\": new KeywordTokenType(\"this\", { startsExpr: startsExpr }),\n\t  \"super\": new KeywordTokenType(\"super\", { startsExpr: startsExpr }),\n\t  \"class\": new KeywordTokenType(\"class\"),\n\t  \"extends\": new KeywordTokenType(\"extends\", { beforeExpr: beforeExpr }),\n\t  \"export\": new KeywordTokenType(\"export\"),\n\t  \"import\": new KeywordTokenType(\"import\", { startsExpr: startsExpr }),\n\t  \"yield\": new KeywordTokenType(\"yield\", { beforeExpr: beforeExpr, startsExpr: startsExpr }),\n\t  \"null\": new KeywordTokenType(\"null\", { startsExpr: startsExpr }),\n\t  \"true\": new KeywordTokenType(\"true\", { startsExpr: startsExpr }),\n\t  \"false\": new KeywordTokenType(\"false\", { startsExpr: startsExpr }),\n\t  \"in\": new KeywordTokenType(\"in\", { beforeExpr: beforeExpr, binop: 7 }),\n\t  \"instanceof\": new KeywordTokenType(\"instanceof\", { beforeExpr: beforeExpr, binop: 7 }),\n\t  \"typeof\": new KeywordTokenType(\"typeof\", { beforeExpr: beforeExpr, prefix: prefix, startsExpr: startsExpr }),\n\t  \"void\": new KeywordTokenType(\"void\", { beforeExpr: beforeExpr, prefix: prefix, startsExpr: startsExpr }),\n\t  \"delete\": new KeywordTokenType(\"delete\", { beforeExpr: beforeExpr, prefix: prefix, startsExpr: startsExpr })\n\t};\n\n\t// Map keyword names to token types.\n\tObject.keys(keywords).forEach(function (name) {\n\t  types[\"_\" + name] = keywords[name];\n\t});\n\n\t// Matches a whole line break (where CRLF is considered a single\n\t// line break). Used to count lines.\n\n\tvar lineBreak = /\\r\\n?|\\n|\\u2028|\\u2029/;\n\tvar lineBreakG = new RegExp(lineBreak.source, \"g\");\n\n\tfunction isNewLine(code) {\n\t  return code === 10 || code === 13 || code === 0x2028 || code === 0x2029;\n\t}\n\n\tvar nonASCIIwhitespace = /[\\u1680\\u180e\\u2000-\\u200a\\u202f\\u205f\\u3000\\ufeff]/;\n\n\t// The algorithm used to determine whether a regexp can appear at a\n\t// given point in the program is loosely based on sweet.js' approach.\n\t// See https://github.com/mozilla/sweet.js/wiki/design\n\n\tvar TokContext = function TokContext(token, isExpr, preserveSpace, override) {\n\t  classCallCheck(this, TokContext);\n\n\t  this.token = token;\n\t  this.isExpr = !!isExpr;\n\t  this.preserveSpace = !!preserveSpace;\n\t  this.override = override;\n\t};\n\n\tvar types$1 = {\n\t  braceStatement: new TokContext(\"{\", false),\n\t  braceExpression: new TokContext(\"{\", true),\n\t  templateQuasi: new TokContext(\"${\", true),\n\t  parenStatement: new TokContext(\"(\", false),\n\t  parenExpression: new TokContext(\"(\", true),\n\t  template: new TokContext(\"`\", true, true, function (p) {\n\t    return p.readTmplToken();\n\t  }),\n\t  functionExpression: new TokContext(\"function\", true)\n\t};\n\n\t// Token-specific context update code\n\n\ttypes.parenR.updateContext = types.braceR.updateContext = function () {\n\t  if (this.state.context.length === 1) {\n\t    this.state.exprAllowed = true;\n\t    return;\n\t  }\n\n\t  var out = this.state.context.pop();\n\t  if (out === types$1.braceStatement && this.curContext() === types$1.functionExpression) {\n\t    this.state.context.pop();\n\t    this.state.exprAllowed = false;\n\t  } else if (out === types$1.templateQuasi) {\n\t    this.state.exprAllowed = true;\n\t  } else {\n\t    this.state.exprAllowed = !out.isExpr;\n\t  }\n\t};\n\n\ttypes.name.updateContext = function (prevType) {\n\t  this.state.exprAllowed = false;\n\n\t  if (prevType === types._let || prevType === types._const || prevType === types._var) {\n\t    if (lineBreak.test(this.input.slice(this.state.end))) {\n\t      this.state.exprAllowed = true;\n\t    }\n\t  }\n\t};\n\n\ttypes.braceL.updateContext = function (prevType) {\n\t  this.state.context.push(this.braceIsBlock(prevType) ? types$1.braceStatement : types$1.braceExpression);\n\t  this.state.exprAllowed = true;\n\t};\n\n\ttypes.dollarBraceL.updateContext = function () {\n\t  this.state.context.push(types$1.templateQuasi);\n\t  this.state.exprAllowed = true;\n\t};\n\n\ttypes.parenL.updateContext = function (prevType) {\n\t  var statementParens = prevType === types._if || prevType === types._for || prevType === types._with || prevType === types._while;\n\t  this.state.context.push(statementParens ? types$1.parenStatement : types$1.parenExpression);\n\t  this.state.exprAllowed = true;\n\t};\n\n\ttypes.incDec.updateContext = function () {\n\t  // tokExprAllowed stays unchanged\n\t};\n\n\ttypes._function.updateContext = function () {\n\t  if (this.curContext() !== types$1.braceStatement) {\n\t    this.state.context.push(types$1.functionExpression);\n\t  }\n\n\t  this.state.exprAllowed = false;\n\t};\n\n\ttypes.backQuote.updateContext = function () {\n\t  if (this.curContext() === types$1.template) {\n\t    this.state.context.pop();\n\t  } else {\n\t    this.state.context.push(types$1.template);\n\t  }\n\t  this.state.exprAllowed = false;\n\t};\n\n\t// These are used when `options.locations` is on, for the\n\t// `startLoc` and `endLoc` properties.\n\n\tvar Position = function Position(line, col) {\n\t  classCallCheck(this, Position);\n\n\t  this.line = line;\n\t  this.column = col;\n\t};\n\n\tvar SourceLocation = function SourceLocation(start, end) {\n\t  classCallCheck(this, SourceLocation);\n\n\t  this.start = start;\n\t  this.end = end;\n\t};\n\n\t// The `getLineInfo` function is mostly useful when the\n\t// `locations` option is off (for performance reasons) and you\n\t// want to find the line/column position for a given character\n\t// offset. `input` should be the code string that the offset refers\n\t// into.\n\n\tfunction getLineInfo(input, offset) {\n\t  for (var line = 1, cur = 0;;) {\n\t    lineBreakG.lastIndex = cur;\n\t    var match = lineBreakG.exec(input);\n\t    if (match && match.index < offset) {\n\t      ++line;\n\t      cur = match.index + match[0].length;\n\t    } else {\n\t      return new Position(line, offset - cur);\n\t    }\n\t  }\n\t}\n\n\tvar State = function () {\n\t  function State() {\n\t    classCallCheck(this, State);\n\t  }\n\n\t  State.prototype.init = function init(options, input) {\n\t    this.strict = options.strictMode === false ? false : options.sourceType === \"module\";\n\n\t    this.input = input;\n\n\t    this.potentialArrowAt = -1;\n\n\t    this.inMethod = this.inFunction = this.inGenerator = this.inAsync = this.inPropertyName = this.inType = this.inClassProperty = this.noAnonFunctionType = false;\n\n\t    this.labels = [];\n\n\t    this.decorators = [];\n\n\t    this.tokens = [];\n\n\t    this.comments = [];\n\n\t    this.trailingComments = [];\n\t    this.leadingComments = [];\n\t    this.commentStack = [];\n\n\t    this.pos = this.lineStart = 0;\n\t    this.curLine = options.startLine;\n\n\t    this.type = types.eof;\n\t    this.value = null;\n\t    this.start = this.end = this.pos;\n\t    this.startLoc = this.endLoc = this.curPosition();\n\n\t    this.lastTokEndLoc = this.lastTokStartLoc = null;\n\t    this.lastTokStart = this.lastTokEnd = this.pos;\n\n\t    this.context = [types$1.braceStatement];\n\t    this.exprAllowed = true;\n\n\t    this.containsEsc = this.containsOctal = false;\n\t    this.octalPosition = null;\n\n\t    this.invalidTemplateEscapePosition = null;\n\n\t    this.exportedIdentifiers = [];\n\n\t    return this;\n\t  };\n\n\t  // TODO\n\n\n\t  // TODO\n\n\n\t  // Used to signify the start of a potential arrow function\n\n\n\t  // Flags to track whether we are in a function, a generator.\n\n\n\t  // Labels in scope.\n\n\n\t  // Leading decorators.\n\n\n\t  // Token store.\n\n\n\t  // Comment store.\n\n\n\t  // Comment attachment store\n\n\n\t  // The current position of the tokenizer in the input.\n\n\n\t  // Properties of the current token:\n\t  // Its type\n\n\n\t  // For tokens that include more information than their type, the value\n\n\n\t  // Its start and end offset\n\n\n\t  // And, if locations are used, the {line, column} object\n\t  // corresponding to those offsets\n\n\n\t  // Position information for the previous token\n\n\n\t  // The context stack is used to superficially track syntactic\n\t  // context to predict whether a regular expression is allowed in a\n\t  // given position.\n\n\n\t  // Used to signal to callers of `readWord1` whether the word\n\t  // contained any escape sequences. This is needed because words with\n\t  // escape sequences must not be interpreted as keywords.\n\n\n\t  // TODO\n\n\n\t  // Names of exports store. `default` is stored as a name for both\n\t  // `export default foo;` and `export { foo as default };`.\n\n\n\t  State.prototype.curPosition = function curPosition() {\n\t    return new Position(this.curLine, this.pos - this.lineStart);\n\t  };\n\n\t  State.prototype.clone = function clone(skipArrays) {\n\t    var state = new State();\n\t    for (var key in this) {\n\t      var val = this[key];\n\n\t      if ((!skipArrays || key === \"context\") && Array.isArray(val)) {\n\t        val = val.slice();\n\t      }\n\n\t      state[key] = val;\n\t    }\n\t    return state;\n\t  };\n\n\t  return State;\n\t}();\n\n\t// Object type used to represent tokens. Note that normally, tokens\n\t// simply exist as properties on the parser object. This is only\n\t// used for the onToken callback and the external tokenizer.\n\n\tvar Token = function Token(state) {\n\t  classCallCheck(this, Token);\n\n\t  this.type = state.type;\n\t  this.value = state.value;\n\t  this.start = state.start;\n\t  this.end = state.end;\n\t  this.loc = new SourceLocation(state.startLoc, state.endLoc);\n\t};\n\n\t// ## Tokenizer\n\n\tfunction codePointToString(code) {\n\t  // UTF-16 Decoding\n\t  if (code <= 0xFFFF) {\n\t    return String.fromCharCode(code);\n\t  } else {\n\t    return String.fromCharCode((code - 0x10000 >> 10) + 0xD800, (code - 0x10000 & 1023) + 0xDC00);\n\t  }\n\t}\n\n\tvar Tokenizer = function () {\n\t  function Tokenizer(options, input) {\n\t    classCallCheck(this, Tokenizer);\n\n\t    this.state = new State();\n\t    this.state.init(options, input);\n\t  }\n\n\t  // Move to the next token\n\n\t  Tokenizer.prototype.next = function next() {\n\t    if (!this.isLookahead) {\n\t      this.state.tokens.push(new Token(this.state));\n\t    }\n\n\t    this.state.lastTokEnd = this.state.end;\n\t    this.state.lastTokStart = this.state.start;\n\t    this.state.lastTokEndLoc = this.state.endLoc;\n\t    this.state.lastTokStartLoc = this.state.startLoc;\n\t    this.nextToken();\n\t  };\n\n\t  // TODO\n\n\t  Tokenizer.prototype.eat = function eat(type) {\n\t    if (this.match(type)) {\n\t      this.next();\n\t      return true;\n\t    } else {\n\t      return false;\n\t    }\n\t  };\n\n\t  // TODO\n\n\t  Tokenizer.prototype.match = function match(type) {\n\t    return this.state.type === type;\n\t  };\n\n\t  // TODO\n\n\t  Tokenizer.prototype.isKeyword = function isKeyword$$1(word) {\n\t    return isKeyword(word);\n\t  };\n\n\t  // TODO\n\n\t  Tokenizer.prototype.lookahead = function lookahead() {\n\t    var old = this.state;\n\t    this.state = old.clone(true);\n\n\t    this.isLookahead = true;\n\t    this.next();\n\t    this.isLookahead = false;\n\n\t    var curr = this.state.clone(true);\n\t    this.state = old;\n\t    return curr;\n\t  };\n\n\t  // Toggle strict mode. Re-reads the next number or string to please\n\t  // pedantic tests (`\"use strict\"; 010;` should fail).\n\n\t  Tokenizer.prototype.setStrict = function setStrict(strict) {\n\t    this.state.strict = strict;\n\t    if (!this.match(types.num) && !this.match(types.string)) return;\n\t    this.state.pos = this.state.start;\n\t    while (this.state.pos < this.state.lineStart) {\n\t      this.state.lineStart = this.input.lastIndexOf(\"\\n\", this.state.lineStart - 2) + 1;\n\t      --this.state.curLine;\n\t    }\n\t    this.nextToken();\n\t  };\n\n\t  Tokenizer.prototype.curContext = function curContext() {\n\t    return this.state.context[this.state.context.length - 1];\n\t  };\n\n\t  // Read a single token, updating the parser object's token-related\n\t  // properties.\n\n\t  Tokenizer.prototype.nextToken = function nextToken() {\n\t    var curContext = this.curContext();\n\t    if (!curContext || !curContext.preserveSpace) this.skipSpace();\n\n\t    this.state.containsOctal = false;\n\t    this.state.octalPosition = null;\n\t    this.state.start = this.state.pos;\n\t    this.state.startLoc = this.state.curPosition();\n\t    if (this.state.pos >= this.input.length) return this.finishToken(types.eof);\n\n\t    if (curContext.override) {\n\t      return curContext.override(this);\n\t    } else {\n\t      return this.readToken(this.fullCharCodeAtPos());\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.readToken = function readToken(code) {\n\t    // Identifier or keyword. '\\uXXXX' sequences are allowed in\n\t    // identifiers, so '\\' also dispatches to that.\n\t    if (isIdentifierStart(code) || code === 92 /* '\\' */) {\n\t        return this.readWord();\n\t      } else {\n\t      return this.getTokenFromCode(code);\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.fullCharCodeAtPos = function fullCharCodeAtPos() {\n\t    var code = this.input.charCodeAt(this.state.pos);\n\t    if (code <= 0xd7ff || code >= 0xe000) return code;\n\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    return (code << 10) + next - 0x35fdc00;\n\t  };\n\n\t  Tokenizer.prototype.pushComment = function pushComment(block, text, start, end, startLoc, endLoc) {\n\t    var comment = {\n\t      type: block ? \"CommentBlock\" : \"CommentLine\",\n\t      value: text,\n\t      start: start,\n\t      end: end,\n\t      loc: new SourceLocation(startLoc, endLoc)\n\t    };\n\n\t    if (!this.isLookahead) {\n\t      this.state.tokens.push(comment);\n\t      this.state.comments.push(comment);\n\t      this.addComment(comment);\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.skipBlockComment = function skipBlockComment() {\n\t    var startLoc = this.state.curPosition();\n\t    var start = this.state.pos;\n\t    var end = this.input.indexOf(\"*/\", this.state.pos += 2);\n\t    if (end === -1) this.raise(this.state.pos - 2, \"Unterminated comment\");\n\n\t    this.state.pos = end + 2;\n\t    lineBreakG.lastIndex = start;\n\t    var match = void 0;\n\t    while ((match = lineBreakG.exec(this.input)) && match.index < this.state.pos) {\n\t      ++this.state.curLine;\n\t      this.state.lineStart = match.index + match[0].length;\n\t    }\n\n\t    this.pushComment(true, this.input.slice(start + 2, end), start, this.state.pos, startLoc, this.state.curPosition());\n\t  };\n\n\t  Tokenizer.prototype.skipLineComment = function skipLineComment(startSkip) {\n\t    var start = this.state.pos;\n\t    var startLoc = this.state.curPosition();\n\t    var ch = this.input.charCodeAt(this.state.pos += startSkip);\n\t    while (this.state.pos < this.input.length && ch !== 10 && ch !== 13 && ch !== 8232 && ch !== 8233) {\n\t      ++this.state.pos;\n\t      ch = this.input.charCodeAt(this.state.pos);\n\t    }\n\n\t    this.pushComment(false, this.input.slice(start + startSkip, this.state.pos), start, this.state.pos, startLoc, this.state.curPosition());\n\t  };\n\n\t  // Called at the start of the parse and after every token. Skips\n\t  // whitespace and comments, and.\n\n\t  Tokenizer.prototype.skipSpace = function skipSpace() {\n\t    loop: while (this.state.pos < this.input.length) {\n\t      var ch = this.input.charCodeAt(this.state.pos);\n\t      switch (ch) {\n\t        case 32:case 160:\n\t          // ' '\n\t          ++this.state.pos;\n\t          break;\n\n\t        case 13:\n\t          if (this.input.charCodeAt(this.state.pos + 1) === 10) {\n\t            ++this.state.pos;\n\t          }\n\n\t        case 10:case 8232:case 8233:\n\t          ++this.state.pos;\n\t          ++this.state.curLine;\n\t          this.state.lineStart = this.state.pos;\n\t          break;\n\n\t        case 47:\n\t          // '/'\n\t          switch (this.input.charCodeAt(this.state.pos + 1)) {\n\t            case 42:\n\t              // '*'\n\t              this.skipBlockComment();\n\t              break;\n\n\t            case 47:\n\t              this.skipLineComment(2);\n\t              break;\n\n\t            default:\n\t              break loop;\n\t          }\n\t          break;\n\n\t        default:\n\t          if (ch > 8 && ch < 14 || ch >= 5760 && nonASCIIwhitespace.test(String.fromCharCode(ch))) {\n\t            ++this.state.pos;\n\t          } else {\n\t            break loop;\n\t          }\n\t      }\n\t    }\n\t  };\n\n\t  // Called at the end of every token. Sets `end`, `val`, and\n\t  // maintains `context` and `exprAllowed`, and skips the space after\n\t  // the token, so that the next one's `start` will point at the\n\t  // right position.\n\n\t  Tokenizer.prototype.finishToken = function finishToken(type, val) {\n\t    this.state.end = this.state.pos;\n\t    this.state.endLoc = this.state.curPosition();\n\t    var prevType = this.state.type;\n\t    this.state.type = type;\n\t    this.state.value = val;\n\n\t    this.updateContext(prevType);\n\t  };\n\n\t  // ### Token reading\n\n\t  // This is the function that is called to fetch the next token. It\n\t  // is somewhat obscure, because it works in character codes rather\n\t  // than characters, and because operator parsing has been inlined\n\t  // into it.\n\t  //\n\t  // All in the name of speed.\n\t  //\n\n\n\t  Tokenizer.prototype.readToken_dot = function readToken_dot() {\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    if (next >= 48 && next <= 57) {\n\t      return this.readNumber(true);\n\t    }\n\n\t    var next2 = this.input.charCodeAt(this.state.pos + 2);\n\t    if (next === 46 && next2 === 46) {\n\t      // 46 = dot '.'\n\t      this.state.pos += 3;\n\t      return this.finishToken(types.ellipsis);\n\t    } else {\n\t      ++this.state.pos;\n\t      return this.finishToken(types.dot);\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.readToken_slash = function readToken_slash() {\n\t    // '/'\n\t    if (this.state.exprAllowed) {\n\t      ++this.state.pos;\n\t      return this.readRegexp();\n\t    }\n\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    if (next === 61) {\n\t      return this.finishOp(types.assign, 2);\n\t    } else {\n\t      return this.finishOp(types.slash, 1);\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.readToken_mult_modulo = function readToken_mult_modulo(code) {\n\t    // '%*'\n\t    var type = code === 42 ? types.star : types.modulo;\n\t    var width = 1;\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\n\t    if (next === 42) {\n\t      // '*'\n\t      width++;\n\t      next = this.input.charCodeAt(this.state.pos + 2);\n\t      type = types.exponent;\n\t    }\n\n\t    if (next === 61) {\n\t      width++;\n\t      type = types.assign;\n\t    }\n\n\t    return this.finishOp(type, width);\n\t  };\n\n\t  Tokenizer.prototype.readToken_pipe_amp = function readToken_pipe_amp(code) {\n\t    // '|&'\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    if (next === code) return this.finishOp(code === 124 ? types.logicalOR : types.logicalAND, 2);\n\t    if (next === 61) return this.finishOp(types.assign, 2);\n\t    if (code === 124 && next === 125 && this.hasPlugin(\"flow\")) return this.finishOp(types.braceBarR, 2);\n\t    return this.finishOp(code === 124 ? types.bitwiseOR : types.bitwiseAND, 1);\n\t  };\n\n\t  Tokenizer.prototype.readToken_caret = function readToken_caret() {\n\t    // '^'\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    if (next === 61) {\n\t      return this.finishOp(types.assign, 2);\n\t    } else {\n\t      return this.finishOp(types.bitwiseXOR, 1);\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.readToken_plus_min = function readToken_plus_min(code) {\n\t    // '+-'\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\n\t    if (next === code) {\n\t      if (next === 45 && this.input.charCodeAt(this.state.pos + 2) === 62 && lineBreak.test(this.input.slice(this.state.lastTokEnd, this.state.pos))) {\n\t        // A `-->` line comment\n\t        this.skipLineComment(3);\n\t        this.skipSpace();\n\t        return this.nextToken();\n\t      }\n\t      return this.finishOp(types.incDec, 2);\n\t    }\n\n\t    if (next === 61) {\n\t      return this.finishOp(types.assign, 2);\n\t    } else {\n\t      return this.finishOp(types.plusMin, 1);\n\t    }\n\t  };\n\n\t  Tokenizer.prototype.readToken_lt_gt = function readToken_lt_gt(code) {\n\t    // '<>'\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    var size = 1;\n\n\t    if (next === code) {\n\t      size = code === 62 && this.input.charCodeAt(this.state.pos + 2) === 62 ? 3 : 2;\n\t      if (this.input.charCodeAt(this.state.pos + size) === 61) return this.finishOp(types.assign, size + 1);\n\t      return this.finishOp(types.bitShift, size);\n\t    }\n\n\t    if (next === 33 && code === 60 && this.input.charCodeAt(this.state.pos + 2) === 45 && this.input.charCodeAt(this.state.pos + 3) === 45) {\n\t      if (this.inModule) this.unexpected();\n\t      // `<!--`, an XML-style comment that should be interpreted as a line comment\n\t      this.skipLineComment(4);\n\t      this.skipSpace();\n\t      return this.nextToken();\n\t    }\n\n\t    if (next === 61) {\n\t      // <= | >=\n\t      size = 2;\n\t    }\n\n\t    return this.finishOp(types.relational, size);\n\t  };\n\n\t  Tokenizer.prototype.readToken_eq_excl = function readToken_eq_excl(code) {\n\t    // '=!'\n\t    var next = this.input.charCodeAt(this.state.pos + 1);\n\t    if (next === 61) return this.finishOp(types.equality, this.input.charCodeAt(this.state.pos + 2) === 61 ? 3 : 2);\n\t    if (code === 61 && next === 62) {\n\t      // '=>'\n\t      this.state.pos += 2;\n\t      return this.finishToken(types.arrow);\n\t    }\n\t    return this.finishOp(code === 61 ? types.eq : types.prefix, 1);\n\t  };\n\n\t  Tokenizer.prototype.getTokenFromCode = function getTokenFromCode(code) {\n\t    switch (code) {\n\t      // The interpretation of a dot depends on whether it is followed\n\t      // by a digit or another two dots.\n\t      case 46:\n\t        // '.'\n\t        return this.readToken_dot();\n\n\t      // Punctuation tokens.\n\t      case 40:\n\t        ++this.state.pos;return this.finishToken(types.parenL);\n\t      case 41:\n\t        ++this.state.pos;return this.finishToken(types.parenR);\n\t      case 59:\n\t        ++this.state.pos;return this.finishToken(types.semi);\n\t      case 44:\n\t        ++this.state.pos;return this.finishToken(types.comma);\n\t      case 91:\n\t        ++this.state.pos;return this.finishToken(types.bracketL);\n\t      case 93:\n\t        ++this.state.pos;return this.finishToken(types.bracketR);\n\n\t      case 123:\n\t        if (this.hasPlugin(\"flow\") && this.input.charCodeAt(this.state.pos + 1) === 124) {\n\t          return this.finishOp(types.braceBarL, 2);\n\t        } else {\n\t          ++this.state.pos;\n\t          return this.finishToken(types.braceL);\n\t        }\n\n\t      case 125:\n\t        ++this.state.pos;return this.finishToken(types.braceR);\n\n\t      case 58:\n\t        if (this.hasPlugin(\"functionBind\") && this.input.charCodeAt(this.state.pos + 1) === 58) {\n\t          return this.finishOp(types.doubleColon, 2);\n\t        } else {\n\t          ++this.state.pos;\n\t          return this.finishToken(types.colon);\n\t        }\n\n\t      case 63:\n\t        ++this.state.pos;return this.finishToken(types.question);\n\t      case 64:\n\t        ++this.state.pos;return this.finishToken(types.at);\n\n\t      case 96:\n\t        // '`'\n\t        ++this.state.pos;\n\t        return this.finishToken(types.backQuote);\n\n\t      case 48:\n\t        // '0'\n\t        var next = this.input.charCodeAt(this.state.pos + 1);\n\t        if (next === 120 || next === 88) return this.readRadixNumber(16); // '0x', '0X' - hex number\n\t        if (next === 111 || next === 79) return this.readRadixNumber(8); // '0o', '0O' - octal number\n\t        if (next === 98 || next === 66) return this.readRadixNumber(2); // '0b', '0B' - binary number\n\t      // Anything else beginning with a digit is an integer, octal\n\t      // number, or float.\n\t      case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:\n\t        // 1-9\n\t        return this.readNumber(false);\n\n\t      // Quotes produce strings.\n\t      case 34:case 39:\n\t        // '\"', \"'\"\n\t        return this.readString(code);\n\n\t      // Operators are parsed inline in tiny state machines. '=' (61) is\n\t      // often referred to. `finishOp` simply skips the amount of\n\t      // characters it is given as second argument, and returns a token\n\t      // of the type given by its first argument.\n\n\t      case 47:\n\t        // '/'\n\t        return this.readToken_slash();\n\n\t      case 37:case 42:\n\t        // '%*'\n\t        return this.readToken_mult_modulo(code);\n\n\t      case 124:case 38:\n\t        // '|&'\n\t        return this.readToken_pipe_amp(code);\n\n\t      case 94:\n\t        // '^'\n\t        return this.readToken_caret();\n\n\t      case 43:case 45:\n\t        // '+-'\n\t        return this.readToken_plus_min(code);\n\n\t      case 60:case 62:\n\t        // '<>'\n\t        return this.readToken_lt_gt(code);\n\n\t      case 61:case 33:\n\t        // '=!'\n\t        return this.readToken_eq_excl(code);\n\n\t      case 126:\n\t        // '~'\n\t        return this.finishOp(types.prefix, 1);\n\t    }\n\n\t    this.raise(this.state.pos, \"Unexpected character '\" + codePointToString(code) + \"'\");\n\t  };\n\n\t  Tokenizer.prototype.finishOp = function finishOp(type, size) {\n\t    var str = this.input.slice(this.state.pos, this.state.pos + size);\n\t    this.state.pos += size;\n\t    return this.finishToken(type, str);\n\t  };\n\n\t  Tokenizer.prototype.readRegexp = function readRegexp() {\n\t    var start = this.state.pos;\n\t    var escaped = void 0,\n\t        inClass = void 0;\n\t    for (;;) {\n\t      if (this.state.pos >= this.input.length) this.raise(start, \"Unterminated regular expression\");\n\t      var ch = this.input.charAt(this.state.pos);\n\t      if (lineBreak.test(ch)) {\n\t        this.raise(start, \"Unterminated regular expression\");\n\t      }\n\t      if (escaped) {\n\t        escaped = false;\n\t      } else {\n\t        if (ch === \"[\") {\n\t          inClass = true;\n\t        } else if (ch === \"]\" && inClass) {\n\t          inClass = false;\n\t        } else if (ch === \"/\" && !inClass) {\n\t          break;\n\t        }\n\t        escaped = ch === \"\\\\\";\n\t      }\n\t      ++this.state.pos;\n\t    }\n\t    var content = this.input.slice(start, this.state.pos);\n\t    ++this.state.pos;\n\t    // Need to use `readWord1` because '\\uXXXX' sequences are allowed\n\t    // here (don't ask).\n\t    var mods = this.readWord1();\n\t    if (mods) {\n\t      var validFlags = /^[gmsiyu]*$/;\n\t      if (!validFlags.test(mods)) this.raise(start, \"Invalid regular expression flag\");\n\t    }\n\t    return this.finishToken(types.regexp, {\n\t      pattern: content,\n\t      flags: mods\n\t    });\n\t  };\n\n\t  // Read an integer in the given radix. Return null if zero digits\n\t  // were read, the integer value otherwise. When `len` is given, this\n\t  // will return `null` unless the integer has exactly `len` digits.\n\n\t  Tokenizer.prototype.readInt = function readInt(radix, len) {\n\t    var start = this.state.pos;\n\t    var total = 0;\n\n\t    for (var i = 0, e = len == null ? Infinity : len; i < e; ++i) {\n\t      var code = this.input.charCodeAt(this.state.pos);\n\t      var val = void 0;\n\t      if (code >= 97) {\n\t        val = code - 97 + 10; // a\n\t      } else if (code >= 65) {\n\t        val = code - 65 + 10; // A\n\t      } else if (code >= 48 && code <= 57) {\n\t        val = code - 48; // 0-9\n\t      } else {\n\t        val = Infinity;\n\t      }\n\t      if (val >= radix) break;\n\t      ++this.state.pos;\n\t      total = total * radix + val;\n\t    }\n\t    if (this.state.pos === start || len != null && this.state.pos - start !== len) return null;\n\n\t    return total;\n\t  };\n\n\t  Tokenizer.prototype.readRadixNumber = function readRadixNumber(radix) {\n\t    this.state.pos += 2; // 0x\n\t    var val = this.readInt(radix);\n\t    if (val == null) this.raise(this.state.start + 2, \"Expected number in radix \" + radix);\n\t    if (isIdentifierStart(this.fullCharCodeAtPos())) this.raise(this.state.pos, \"Identifier directly after number\");\n\t    return this.finishToken(types.num, val);\n\t  };\n\n\t  // Read an integer, octal integer, or floating-point number.\n\n\t  Tokenizer.prototype.readNumber = function readNumber(startsWithDot) {\n\t    var start = this.state.pos;\n\t    var octal = this.input.charCodeAt(start) === 48; // '0'\n\t    var isFloat = false;\n\n\t    if (!startsWithDot && this.readInt(10) === null) this.raise(start, \"Invalid number\");\n\t    if (octal && this.state.pos == start + 1) octal = false; // number === 0\n\n\t    var next = this.input.charCodeAt(this.state.pos);\n\t    if (next === 46 && !octal) {\n\t      // '.'\n\t      ++this.state.pos;\n\t      this.readInt(10);\n\t      isFloat = true;\n\t      next = this.input.charCodeAt(this.state.pos);\n\t    }\n\n\t    if ((next === 69 || next === 101) && !octal) {\n\t      // 'eE'\n\t      next = this.input.charCodeAt(++this.state.pos);\n\t      if (next === 43 || next === 45) ++this.state.pos; // '+-'\n\t      if (this.readInt(10) === null) this.raise(start, \"Invalid number\");\n\t      isFloat = true;\n\t    }\n\n\t    if (isIdentifierStart(this.fullCharCodeAtPos())) this.raise(this.state.pos, \"Identifier directly after number\");\n\n\t    var str = this.input.slice(start, this.state.pos);\n\t    var val = void 0;\n\t    if (isFloat) {\n\t      val = parseFloat(str);\n\t    } else if (!octal || str.length === 1) {\n\t      val = parseInt(str, 10);\n\t    } else if (this.state.strict) {\n\t      this.raise(start, \"Invalid number\");\n\t    } else if (/[89]/.test(str)) {\n\t      val = parseInt(str, 10);\n\t    } else {\n\t      val = parseInt(str, 8);\n\t    }\n\t    return this.finishToken(types.num, val);\n\t  };\n\n\t  // Read a string value, interpreting backslash-escapes.\n\n\t  Tokenizer.prototype.readCodePoint = function readCodePoint(throwOnInvalid) {\n\t    var ch = this.input.charCodeAt(this.state.pos);\n\t    var code = void 0;\n\n\t    if (ch === 123) {\n\t      // '{'\n\t      var codePos = ++this.state.pos;\n\t      code = this.readHexChar(this.input.indexOf(\"}\", this.state.pos) - this.state.pos, throwOnInvalid);\n\t      ++this.state.pos;\n\t      if (code === null) {\n\t        --this.state.invalidTemplateEscapePosition; // to point to the '\\'' instead of the 'u'\n\t      } else if (code > 0x10FFFF) {\n\t        if (throwOnInvalid) {\n\t          this.raise(codePos, \"Code point out of bounds\");\n\t        } else {\n\t          this.state.invalidTemplateEscapePosition = codePos - 2;\n\t          return null;\n\t        }\n\t      }\n\t    } else {\n\t      code = this.readHexChar(4, throwOnInvalid);\n\t    }\n\t    return code;\n\t  };\n\n\t  Tokenizer.prototype.readString = function readString(quote) {\n\t    var out = \"\",\n\t        chunkStart = ++this.state.pos;\n\t    for (;;) {\n\t      if (this.state.pos >= this.input.length) this.raise(this.state.start, \"Unterminated string constant\");\n\t      var ch = this.input.charCodeAt(this.state.pos);\n\t      if (ch === quote) break;\n\t      if (ch === 92) {\n\t        // '\\'\n\t        out += this.input.slice(chunkStart, this.state.pos);\n\t        out += this.readEscapedChar(false);\n\t        chunkStart = this.state.pos;\n\t      } else {\n\t        if (isNewLine(ch)) this.raise(this.state.start, \"Unterminated string constant\");\n\t        ++this.state.pos;\n\t      }\n\t    }\n\t    out += this.input.slice(chunkStart, this.state.pos++);\n\t    return this.finishToken(types.string, out);\n\t  };\n\n\t  // Reads template string tokens.\n\n\t  Tokenizer.prototype.readTmplToken = function readTmplToken() {\n\t    var out = \"\",\n\t        chunkStart = this.state.pos,\n\t        containsInvalid = false;\n\t    for (;;) {\n\t      if (this.state.pos >= this.input.length) this.raise(this.state.start, \"Unterminated template\");\n\t      var ch = this.input.charCodeAt(this.state.pos);\n\t      if (ch === 96 || ch === 36 && this.input.charCodeAt(this.state.pos + 1) === 123) {\n\t        // '`', '${'\n\t        if (this.state.pos === this.state.start && this.match(types.template)) {\n\t          if (ch === 36) {\n\t            this.state.pos += 2;\n\t            return this.finishToken(types.dollarBraceL);\n\t          } else {\n\t            ++this.state.pos;\n\t            return this.finishToken(types.backQuote);\n\t          }\n\t        }\n\t        out += this.input.slice(chunkStart, this.state.pos);\n\t        return this.finishToken(types.template, containsInvalid ? null : out);\n\t      }\n\t      if (ch === 92) {\n\t        // '\\'\n\t        out += this.input.slice(chunkStart, this.state.pos);\n\t        var escaped = this.readEscapedChar(true);\n\t        if (escaped === null) {\n\t          containsInvalid = true;\n\t        } else {\n\t          out += escaped;\n\t        }\n\t        chunkStart = this.state.pos;\n\t      } else if (isNewLine(ch)) {\n\t        out += this.input.slice(chunkStart, this.state.pos);\n\t        ++this.state.pos;\n\t        switch (ch) {\n\t          case 13:\n\t            if (this.input.charCodeAt(this.state.pos) === 10) ++this.state.pos;\n\t          case 10:\n\t            out += \"\\n\";\n\t            break;\n\t          default:\n\t            out += String.fromCharCode(ch);\n\t            break;\n\t        }\n\t        ++this.state.curLine;\n\t        this.state.lineStart = this.state.pos;\n\t        chunkStart = this.state.pos;\n\t      } else {\n\t        ++this.state.pos;\n\t      }\n\t    }\n\t  };\n\n\t  // Used to read escaped characters\n\n\t  Tokenizer.prototype.readEscapedChar = function readEscapedChar(inTemplate) {\n\t    var throwOnInvalid = !inTemplate;\n\t    var ch = this.input.charCodeAt(++this.state.pos);\n\t    ++this.state.pos;\n\t    switch (ch) {\n\t      case 110:\n\t        return \"\\n\"; // 'n' -> '\\n'\n\t      case 114:\n\t        return \"\\r\"; // 'r' -> '\\r'\n\t      case 120:\n\t        {\n\t          // 'x'\n\t          var code = this.readHexChar(2, throwOnInvalid);\n\t          return code === null ? null : String.fromCharCode(code);\n\t        }\n\t      case 117:\n\t        {\n\t          // 'u'\n\t          var _code = this.readCodePoint(throwOnInvalid);\n\t          return _code === null ? null : codePointToString(_code);\n\t        }\n\t      case 116:\n\t        return \"\\t\"; // 't' -> '\\t'\n\t      case 98:\n\t        return \"\\b\"; // 'b' -> '\\b'\n\t      case 118:\n\t        return \"\\x0B\"; // 'v' -> '\\u000b'\n\t      case 102:\n\t        return \"\\f\"; // 'f' -> '\\f'\n\t      case 13:\n\t        if (this.input.charCodeAt(this.state.pos) === 10) ++this.state.pos; // '\\r\\n'\n\t      case 10:\n\t        // ' \\n'\n\t        this.state.lineStart = this.state.pos;\n\t        ++this.state.curLine;\n\t        return \"\";\n\t      default:\n\t        if (ch >= 48 && ch <= 55) {\n\t          var codePos = this.state.pos - 1;\n\t          var octalStr = this.input.substr(this.state.pos - 1, 3).match(/^[0-7]+/)[0];\n\t          var octal = parseInt(octalStr, 8);\n\t          if (octal > 255) {\n\t            octalStr = octalStr.slice(0, -1);\n\t            octal = parseInt(octalStr, 8);\n\t          }\n\t          if (octal > 0) {\n\t            if (inTemplate) {\n\t              this.state.invalidTemplateEscapePosition = codePos;\n\t              return null;\n\t            } else if (this.state.strict) {\n\t              this.raise(codePos, \"Octal literal in strict mode\");\n\t            } else if (!this.state.containsOctal) {\n\t              // These properties are only used to throw an error for an octal which occurs\n\t              // in a directive which occurs prior to a \"use strict\" directive.\n\t              this.state.containsOctal = true;\n\t              this.state.octalPosition = codePos;\n\t            }\n\t          }\n\t          this.state.pos += octalStr.length - 1;\n\t          return String.fromCharCode(octal);\n\t        }\n\t        return String.fromCharCode(ch);\n\t    }\n\t  };\n\n\t  // Used to read character escape sequences ('\\x', '\\u').\n\n\t  Tokenizer.prototype.readHexChar = function readHexChar(len, throwOnInvalid) {\n\t    var codePos = this.state.pos;\n\t    var n = this.readInt(16, len);\n\t    if (n === null) {\n\t      if (throwOnInvalid) {\n\t        this.raise(codePos, \"Bad character escape sequence\");\n\t      } else {\n\t        this.state.pos = codePos - 1;\n\t        this.state.invalidTemplateEscapePosition = codePos - 1;\n\t      }\n\t    }\n\t    return n;\n\t  };\n\n\t  // Read an identifier, and return it as a string. Sets `this.state.containsEsc`\n\t  // to whether the word contained a '\\u' escape.\n\t  //\n\t  // Incrementally adds only escaped chars, adding other chunks as-is\n\t  // as a micro-optimization.\n\n\t  Tokenizer.prototype.readWord1 = function readWord1() {\n\t    this.state.containsEsc = false;\n\t    var word = \"\",\n\t        first = true,\n\t        chunkStart = this.state.pos;\n\t    while (this.state.pos < this.input.length) {\n\t      var ch = this.fullCharCodeAtPos();\n\t      if (isIdentifierChar(ch)) {\n\t        this.state.pos += ch <= 0xffff ? 1 : 2;\n\t      } else if (ch === 92) {\n\t        // \"\\\"\n\t        this.state.containsEsc = true;\n\n\t        word += this.input.slice(chunkStart, this.state.pos);\n\t        var escStart = this.state.pos;\n\n\t        if (this.input.charCodeAt(++this.state.pos) !== 117) {\n\t          // \"u\"\n\t          this.raise(this.state.pos, 'Expecting Unicode escape sequence \\\\uXXXX');\n\t        }\n\n\t        ++this.state.pos;\n\t        var esc = this.readCodePoint(true);\n\t        if (!(first ? isIdentifierStart : isIdentifierChar)(esc, true)) {\n\t          this.raise(escStart, \"Invalid Unicode escape\");\n\t        }\n\n\t        word += codePointToString(esc);\n\t        chunkStart = this.state.pos;\n\t      } else {\n\t        break;\n\t      }\n\t      first = false;\n\t    }\n\t    return word + this.input.slice(chunkStart, this.state.pos);\n\t  };\n\n\t  // Read an identifier or keyword token. Will check for reserved\n\t  // words when necessary.\n\n\t  Tokenizer.prototype.readWord = function readWord() {\n\t    var word = this.readWord1();\n\t    var type = types.name;\n\t    if (!this.state.containsEsc && this.isKeyword(word)) {\n\t      type = keywords[word];\n\t    }\n\t    return this.finishToken(type, word);\n\t  };\n\n\t  Tokenizer.prototype.braceIsBlock = function braceIsBlock(prevType) {\n\t    if (prevType === types.colon) {\n\t      var parent = this.curContext();\n\t      if (parent === types$1.braceStatement || parent === types$1.braceExpression) {\n\t        return !parent.isExpr;\n\t      }\n\t    }\n\n\t    if (prevType === types._return) {\n\t      return lineBreak.test(this.input.slice(this.state.lastTokEnd, this.state.start));\n\t    }\n\n\t    if (prevType === types._else || prevType === types.semi || prevType === types.eof || prevType === types.parenR) {\n\t      return true;\n\t    }\n\n\t    if (prevType === types.braceL) {\n\t      return this.curContext() === types$1.braceStatement;\n\t    }\n\n\t    return !this.state.exprAllowed;\n\t  };\n\n\t  Tokenizer.prototype.updateContext = function updateContext(prevType) {\n\t    var type = this.state.type;\n\t    var update = void 0;\n\n\t    if (type.keyword && prevType === types.dot) {\n\t      this.state.exprAllowed = false;\n\t    } else if (update = type.updateContext) {\n\t      update.call(this, prevType);\n\t    } else {\n\t      this.state.exprAllowed = type.beforeExpr;\n\t    }\n\t  };\n\n\t  return Tokenizer;\n\t}();\n\n\tvar plugins = {};\n\tvar frozenDeprecatedWildcardPluginList = [\"jsx\", \"doExpressions\", \"objectRestSpread\", \"decorators\", \"classProperties\", \"exportExtensions\", \"asyncGenerators\", \"functionBind\", \"functionSent\", \"dynamicImport\", \"flow\"];\n\n\tvar Parser = function (_Tokenizer) {\n\t  inherits(Parser, _Tokenizer);\n\n\t  function Parser(options, input) {\n\t    classCallCheck(this, Parser);\n\n\t    options = getOptions(options);\n\n\t    var _this = possibleConstructorReturn(this, _Tokenizer.call(this, options, input));\n\n\t    _this.options = options;\n\t    _this.inModule = _this.options.sourceType === \"module\";\n\t    _this.input = input;\n\t    _this.plugins = _this.loadPlugins(_this.options.plugins);\n\t    _this.filename = options.sourceFilename;\n\n\t    // If enabled, skip leading hashbang line.\n\t    if (_this.state.pos === 0 && _this.input[0] === \"#\" && _this.input[1] === \"!\") {\n\t      _this.skipLineComment(2);\n\t    }\n\t    return _this;\n\t  }\n\n\t  Parser.prototype.isReservedWord = function isReservedWord(word) {\n\t    if (word === \"await\") {\n\t      return this.inModule;\n\t    } else {\n\t      return reservedWords[6](word);\n\t    }\n\t  };\n\n\t  Parser.prototype.hasPlugin = function hasPlugin(name) {\n\t    if (this.plugins[\"*\"] && frozenDeprecatedWildcardPluginList.indexOf(name) > -1) {\n\t      return true;\n\t    }\n\n\t    return !!this.plugins[name];\n\t  };\n\n\t  Parser.prototype.extend = function extend(name, f) {\n\t    this[name] = f(this[name]);\n\t  };\n\n\t  Parser.prototype.loadAllPlugins = function loadAllPlugins() {\n\t    var _this2 = this;\n\n\t    // ensure flow plugin loads last, also ensure estree is not loaded with *\n\t    var pluginNames = Object.keys(plugins).filter(function (name) {\n\t      return name !== \"flow\" && name !== \"estree\";\n\t    });\n\t    pluginNames.push(\"flow\");\n\n\t    pluginNames.forEach(function (name) {\n\t      var plugin = plugins[name];\n\t      if (plugin) plugin(_this2);\n\t    });\n\t  };\n\n\t  Parser.prototype.loadPlugins = function loadPlugins(pluginList) {\n\t    // TODO: Deprecate \"*\" option in next major version of Babylon\n\t    if (pluginList.indexOf(\"*\") >= 0) {\n\t      this.loadAllPlugins();\n\n\t      return { \"*\": true };\n\t    }\n\n\t    var pluginMap = {};\n\n\t    if (pluginList.indexOf(\"flow\") >= 0) {\n\t      // ensure flow plugin loads last\n\t      pluginList = pluginList.filter(function (plugin) {\n\t        return plugin !== \"flow\";\n\t      });\n\t      pluginList.push(\"flow\");\n\t    }\n\n\t    if (pluginList.indexOf(\"estree\") >= 0) {\n\t      // ensure estree plugin loads first\n\t      pluginList = pluginList.filter(function (plugin) {\n\t        return plugin !== \"estree\";\n\t      });\n\t      pluginList.unshift(\"estree\");\n\t    }\n\n\t    for (var _iterator = pluginList, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var name = _ref;\n\n\t      if (!pluginMap[name]) {\n\t        pluginMap[name] = true;\n\n\t        var plugin = plugins[name];\n\t        if (plugin) plugin(this);\n\t      }\n\t    }\n\n\t    return pluginMap;\n\t  };\n\n\t  Parser.prototype.parse = function parse() {\n\t    var file = this.startNode();\n\t    var program = this.startNode();\n\t    this.nextToken();\n\t    return this.parseTopLevel(file, program);\n\t  };\n\n\t  return Parser;\n\t}(Tokenizer);\n\n\tvar pp = Parser.prototype;\n\n\t// ## Parser utilities\n\n\t// TODO\n\n\tpp.addExtra = function (node, key, val) {\n\t  if (!node) return;\n\n\t  var extra = node.extra = node.extra || {};\n\t  extra[key] = val;\n\t};\n\n\t// TODO\n\n\tpp.isRelational = function (op) {\n\t  return this.match(types.relational) && this.state.value === op;\n\t};\n\n\t// TODO\n\n\tpp.expectRelational = function (op) {\n\t  if (this.isRelational(op)) {\n\t    this.next();\n\t  } else {\n\t    this.unexpected(null, types.relational);\n\t  }\n\t};\n\n\t// Tests whether parsed token is a contextual keyword.\n\n\tpp.isContextual = function (name) {\n\t  return this.match(types.name) && this.state.value === name;\n\t};\n\n\t// Consumes contextual keyword if possible.\n\n\tpp.eatContextual = function (name) {\n\t  return this.state.value === name && this.eat(types.name);\n\t};\n\n\t// Asserts that following token is given contextual keyword.\n\n\tpp.expectContextual = function (name, message) {\n\t  if (!this.eatContextual(name)) this.unexpected(null, message);\n\t};\n\n\t// Test whether a semicolon can be inserted at the current position.\n\n\tpp.canInsertSemicolon = function () {\n\t  return this.match(types.eof) || this.match(types.braceR) || lineBreak.test(this.input.slice(this.state.lastTokEnd, this.state.start));\n\t};\n\n\t// TODO\n\n\tpp.isLineTerminator = function () {\n\t  return this.eat(types.semi) || this.canInsertSemicolon();\n\t};\n\n\t// Consume a semicolon, or, failing that, see if we are allowed to\n\t// pretend that there is a semicolon at this position.\n\n\tpp.semicolon = function () {\n\t  if (!this.isLineTerminator()) this.unexpected(null, types.semi);\n\t};\n\n\t// Expect a token of a given type. If found, consume it, otherwise,\n\t// raise an unexpected token error at given pos.\n\n\tpp.expect = function (type, pos) {\n\t  return this.eat(type) || this.unexpected(pos, type);\n\t};\n\n\t// Raise an unexpected token error. Can take the expected token type\n\t// instead of a message string.\n\n\tpp.unexpected = function (pos) {\n\t  var messageOrType = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : \"Unexpected token\";\n\n\t  if (messageOrType && (typeof messageOrType === \"undefined\" ? \"undefined\" : _typeof(messageOrType)) === \"object\" && messageOrType.label) {\n\t    messageOrType = \"Unexpected token, expected \" + messageOrType.label;\n\t  }\n\t  this.raise(pos != null ? pos : this.state.start, messageOrType);\n\t};\n\n\t/* eslint max-len: 0 */\n\n\tvar pp$1 = Parser.prototype;\n\n\t// ### Statement parsing\n\n\t// Parse a program. Initializes the parser, reads any number of\n\t// statements, and wraps them in a Program node.  Optionally takes a\n\t// `program` argument.  If present, the statements will be appended\n\t// to its body instead of creating a new node.\n\n\tpp$1.parseTopLevel = function (file, program) {\n\t  program.sourceType = this.options.sourceType;\n\n\t  this.parseBlockBody(program, true, true, types.eof);\n\n\t  file.program = this.finishNode(program, \"Program\");\n\t  file.comments = this.state.comments;\n\t  file.tokens = this.state.tokens;\n\n\t  return this.finishNode(file, \"File\");\n\t};\n\n\tvar loopLabel = { kind: \"loop\" };\n\tvar switchLabel = { kind: \"switch\" };\n\n\t// TODO\n\n\tpp$1.stmtToDirective = function (stmt) {\n\t  var expr = stmt.expression;\n\n\t  var directiveLiteral = this.startNodeAt(expr.start, expr.loc.start);\n\t  var directive = this.startNodeAt(stmt.start, stmt.loc.start);\n\n\t  var raw = this.input.slice(expr.start, expr.end);\n\t  var val = directiveLiteral.value = raw.slice(1, -1); // remove quotes\n\n\t  this.addExtra(directiveLiteral, \"raw\", raw);\n\t  this.addExtra(directiveLiteral, \"rawValue\", val);\n\n\t  directive.value = this.finishNodeAt(directiveLiteral, \"DirectiveLiteral\", expr.end, expr.loc.end);\n\n\t  return this.finishNodeAt(directive, \"Directive\", stmt.end, stmt.loc.end);\n\t};\n\n\t// Parse a single statement.\n\t//\n\t// If expecting a statement and finding a slash operator, parse a\n\t// regular expression literal. This is to handle cases like\n\t// `if (foo) /blah/.exec(foo)`, where looking at the previous token\n\t// does not help.\n\n\tpp$1.parseStatement = function (declaration, topLevel) {\n\t  if (this.match(types.at)) {\n\t    this.parseDecorators(true);\n\t  }\n\n\t  var starttype = this.state.type;\n\t  var node = this.startNode();\n\n\t  // Most types of statements are recognized by the keyword they\n\t  // start with. Many are trivial to parse, some require a bit of\n\t  // complexity.\n\n\t  switch (starttype) {\n\t    case types._break:case types._continue:\n\t      return this.parseBreakContinueStatement(node, starttype.keyword);\n\t    case types._debugger:\n\t      return this.parseDebuggerStatement(node);\n\t    case types._do:\n\t      return this.parseDoStatement(node);\n\t    case types._for:\n\t      return this.parseForStatement(node);\n\t    case types._function:\n\t      if (!declaration) this.unexpected();\n\t      return this.parseFunctionStatement(node);\n\n\t    case types._class:\n\t      if (!declaration) this.unexpected();\n\t      return this.parseClass(node, true);\n\n\t    case types._if:\n\t      return this.parseIfStatement(node);\n\t    case types._return:\n\t      return this.parseReturnStatement(node);\n\t    case types._switch:\n\t      return this.parseSwitchStatement(node);\n\t    case types._throw:\n\t      return this.parseThrowStatement(node);\n\t    case types._try:\n\t      return this.parseTryStatement(node);\n\n\t    case types._let:\n\t    case types._const:\n\t      if (!declaration) this.unexpected(); // NOTE: falls through to _var\n\n\t    case types._var:\n\t      return this.parseVarStatement(node, starttype);\n\n\t    case types._while:\n\t      return this.parseWhileStatement(node);\n\t    case types._with:\n\t      return this.parseWithStatement(node);\n\t    case types.braceL:\n\t      return this.parseBlock();\n\t    case types.semi:\n\t      return this.parseEmptyStatement(node);\n\t    case types._export:\n\t    case types._import:\n\t      if (this.hasPlugin(\"dynamicImport\") && this.lookahead().type === types.parenL) break;\n\n\t      if (!this.options.allowImportExportEverywhere) {\n\t        if (!topLevel) {\n\t          this.raise(this.state.start, \"'import' and 'export' may only appear at the top level\");\n\t        }\n\n\t        if (!this.inModule) {\n\t          this.raise(this.state.start, \"'import' and 'export' may appear only with 'sourceType: \\\"module\\\"'\");\n\t        }\n\t      }\n\t      return starttype === types._import ? this.parseImport(node) : this.parseExport(node);\n\n\t    case types.name:\n\t      if (this.state.value === \"async\") {\n\t        // peek ahead and see if next token is a function\n\t        var state = this.state.clone();\n\t        this.next();\n\t        if (this.match(types._function) && !this.canInsertSemicolon()) {\n\t          this.expect(types._function);\n\t          return this.parseFunction(node, true, false, true);\n\t        } else {\n\t          this.state = state;\n\t        }\n\t      }\n\t  }\n\n\t  // If the statement does not start with a statement keyword or a\n\t  // brace, it's an ExpressionStatement or LabeledStatement. We\n\t  // simply start parsing an expression, and afterwards, if the\n\t  // next token is a colon and the expression was a simple\n\t  // Identifier node, we switch to interpreting it as a label.\n\t  var maybeName = this.state.value;\n\t  var expr = this.parseExpression();\n\n\t  if (starttype === types.name && expr.type === \"Identifier\" && this.eat(types.colon)) {\n\t    return this.parseLabeledStatement(node, maybeName, expr);\n\t  } else {\n\t    return this.parseExpressionStatement(node, expr);\n\t  }\n\t};\n\n\tpp$1.takeDecorators = function (node) {\n\t  if (this.state.decorators.length) {\n\t    node.decorators = this.state.decorators;\n\t    this.state.decorators = [];\n\t  }\n\t};\n\n\tpp$1.parseDecorators = function (allowExport) {\n\t  while (this.match(types.at)) {\n\t    var decorator = this.parseDecorator();\n\t    this.state.decorators.push(decorator);\n\t  }\n\n\t  if (allowExport && this.match(types._export)) {\n\t    return;\n\t  }\n\n\t  if (!this.match(types._class)) {\n\t    this.raise(this.state.start, \"Leading decorators must be attached to a class declaration\");\n\t  }\n\t};\n\n\tpp$1.parseDecorator = function () {\n\t  if (!this.hasPlugin(\"decorators\")) {\n\t    this.unexpected();\n\t  }\n\t  var node = this.startNode();\n\t  this.next();\n\t  node.expression = this.parseMaybeAssign();\n\t  return this.finishNode(node, \"Decorator\");\n\t};\n\n\tpp$1.parseBreakContinueStatement = function (node, keyword) {\n\t  var isBreak = keyword === \"break\";\n\t  this.next();\n\n\t  if (this.isLineTerminator()) {\n\t    node.label = null;\n\t  } else if (!this.match(types.name)) {\n\t    this.unexpected();\n\t  } else {\n\t    node.label = this.parseIdentifier();\n\t    this.semicolon();\n\t  }\n\n\t  // Verify that there is an actual destination to break or\n\t  // continue to.\n\t  var i = void 0;\n\t  for (i = 0; i < this.state.labels.length; ++i) {\n\t    var lab = this.state.labels[i];\n\t    if (node.label == null || lab.name === node.label.name) {\n\t      if (lab.kind != null && (isBreak || lab.kind === \"loop\")) break;\n\t      if (node.label && isBreak) break;\n\t    }\n\t  }\n\t  if (i === this.state.labels.length) this.raise(node.start, \"Unsyntactic \" + keyword);\n\t  return this.finishNode(node, isBreak ? \"BreakStatement\" : \"ContinueStatement\");\n\t};\n\n\tpp$1.parseDebuggerStatement = function (node) {\n\t  this.next();\n\t  this.semicolon();\n\t  return this.finishNode(node, \"DebuggerStatement\");\n\t};\n\n\tpp$1.parseDoStatement = function (node) {\n\t  this.next();\n\t  this.state.labels.push(loopLabel);\n\t  node.body = this.parseStatement(false);\n\t  this.state.labels.pop();\n\t  this.expect(types._while);\n\t  node.test = this.parseParenExpression();\n\t  this.eat(types.semi);\n\t  return this.finishNode(node, \"DoWhileStatement\");\n\t};\n\n\t// Disambiguating between a `for` and a `for`/`in` or `for`/`of`\n\t// loop is non-trivial. Basically, we have to parse the init `var`\n\t// statement or expression, disallowing the `in` operator (see\n\t// the second parameter to `parseExpression`), and then check\n\t// whether the next token is `in` or `of`. When there is no init\n\t// part (semicolon immediately after the opening parenthesis), it\n\t// is a regular `for` loop.\n\n\tpp$1.parseForStatement = function (node) {\n\t  this.next();\n\t  this.state.labels.push(loopLabel);\n\n\t  var forAwait = false;\n\t  if (this.hasPlugin(\"asyncGenerators\") && this.state.inAsync && this.isContextual(\"await\")) {\n\t    forAwait = true;\n\t    this.next();\n\t  }\n\t  this.expect(types.parenL);\n\n\t  if (this.match(types.semi)) {\n\t    if (forAwait) {\n\t      this.unexpected();\n\t    }\n\t    return this.parseFor(node, null);\n\t  }\n\n\t  if (this.match(types._var) || this.match(types._let) || this.match(types._const)) {\n\t    var _init = this.startNode();\n\t    var varKind = this.state.type;\n\t    this.next();\n\t    this.parseVar(_init, true, varKind);\n\t    this.finishNode(_init, \"VariableDeclaration\");\n\n\t    if (this.match(types._in) || this.isContextual(\"of\")) {\n\t      if (_init.declarations.length === 1 && !_init.declarations[0].init) {\n\t        return this.parseForIn(node, _init, forAwait);\n\t      }\n\t    }\n\t    if (forAwait) {\n\t      this.unexpected();\n\t    }\n\t    return this.parseFor(node, _init);\n\t  }\n\n\t  var refShorthandDefaultPos = { start: 0 };\n\t  var init = this.parseExpression(true, refShorthandDefaultPos);\n\t  if (this.match(types._in) || this.isContextual(\"of\")) {\n\t    var description = this.isContextual(\"of\") ? \"for-of statement\" : \"for-in statement\";\n\t    this.toAssignable(init, undefined, description);\n\t    this.checkLVal(init, undefined, undefined, description);\n\t    return this.parseForIn(node, init, forAwait);\n\t  } else if (refShorthandDefaultPos.start) {\n\t    this.unexpected(refShorthandDefaultPos.start);\n\t  }\n\t  if (forAwait) {\n\t    this.unexpected();\n\t  }\n\t  return this.parseFor(node, init);\n\t};\n\n\tpp$1.parseFunctionStatement = function (node) {\n\t  this.next();\n\t  return this.parseFunction(node, true);\n\t};\n\n\tpp$1.parseIfStatement = function (node) {\n\t  this.next();\n\t  node.test = this.parseParenExpression();\n\t  node.consequent = this.parseStatement(false);\n\t  node.alternate = this.eat(types._else) ? this.parseStatement(false) : null;\n\t  return this.finishNode(node, \"IfStatement\");\n\t};\n\n\tpp$1.parseReturnStatement = function (node) {\n\t  if (!this.state.inFunction && !this.options.allowReturnOutsideFunction) {\n\t    this.raise(this.state.start, \"'return' outside of function\");\n\t  }\n\n\t  this.next();\n\n\t  // In `return` (and `break`/`continue`), the keywords with\n\t  // optional arguments, we eagerly look for a semicolon or the\n\t  // possibility to insert one.\n\n\t  if (this.isLineTerminator()) {\n\t    node.argument = null;\n\t  } else {\n\t    node.argument = this.parseExpression();\n\t    this.semicolon();\n\t  }\n\n\t  return this.finishNode(node, \"ReturnStatement\");\n\t};\n\n\tpp$1.parseSwitchStatement = function (node) {\n\t  this.next();\n\t  node.discriminant = this.parseParenExpression();\n\t  node.cases = [];\n\t  this.expect(types.braceL);\n\t  this.state.labels.push(switchLabel);\n\n\t  // Statements under must be grouped (by label) in SwitchCase\n\t  // nodes. `cur` is used to keep the node that we are currently\n\t  // adding statements to.\n\n\t  var cur = void 0;\n\t  for (var sawDefault; !this.match(types.braceR);) {\n\t    if (this.match(types._case) || this.match(types._default)) {\n\t      var isCase = this.match(types._case);\n\t      if (cur) this.finishNode(cur, \"SwitchCase\");\n\t      node.cases.push(cur = this.startNode());\n\t      cur.consequent = [];\n\t      this.next();\n\t      if (isCase) {\n\t        cur.test = this.parseExpression();\n\t      } else {\n\t        if (sawDefault) this.raise(this.state.lastTokStart, \"Multiple default clauses\");\n\t        sawDefault = true;\n\t        cur.test = null;\n\t      }\n\t      this.expect(types.colon);\n\t    } else {\n\t      if (cur) {\n\t        cur.consequent.push(this.parseStatement(true));\n\t      } else {\n\t        this.unexpected();\n\t      }\n\t    }\n\t  }\n\t  if (cur) this.finishNode(cur, \"SwitchCase\");\n\t  this.next(); // Closing brace\n\t  this.state.labels.pop();\n\t  return this.finishNode(node, \"SwitchStatement\");\n\t};\n\n\tpp$1.parseThrowStatement = function (node) {\n\t  this.next();\n\t  if (lineBreak.test(this.input.slice(this.state.lastTokEnd, this.state.start))) this.raise(this.state.lastTokEnd, \"Illegal newline after throw\");\n\t  node.argument = this.parseExpression();\n\t  this.semicolon();\n\t  return this.finishNode(node, \"ThrowStatement\");\n\t};\n\n\t// Reused empty array added for node fields that are always empty.\n\n\tvar empty = [];\n\n\tpp$1.parseTryStatement = function (node) {\n\t  this.next();\n\n\t  node.block = this.parseBlock();\n\t  node.handler = null;\n\n\t  if (this.match(types._catch)) {\n\t    var clause = this.startNode();\n\t    this.next();\n\n\t    this.expect(types.parenL);\n\t    clause.param = this.parseBindingAtom();\n\t    this.checkLVal(clause.param, true, Object.create(null), \"catch clause\");\n\t    this.expect(types.parenR);\n\n\t    clause.body = this.parseBlock();\n\t    node.handler = this.finishNode(clause, \"CatchClause\");\n\t  }\n\n\t  node.guardedHandlers = empty;\n\t  node.finalizer = this.eat(types._finally) ? this.parseBlock() : null;\n\n\t  if (!node.handler && !node.finalizer) {\n\t    this.raise(node.start, \"Missing catch or finally clause\");\n\t  }\n\n\t  return this.finishNode(node, \"TryStatement\");\n\t};\n\n\tpp$1.parseVarStatement = function (node, kind) {\n\t  this.next();\n\t  this.parseVar(node, false, kind);\n\t  this.semicolon();\n\t  return this.finishNode(node, \"VariableDeclaration\");\n\t};\n\n\tpp$1.parseWhileStatement = function (node) {\n\t  this.next();\n\t  node.test = this.parseParenExpression();\n\t  this.state.labels.push(loopLabel);\n\t  node.body = this.parseStatement(false);\n\t  this.state.labels.pop();\n\t  return this.finishNode(node, \"WhileStatement\");\n\t};\n\n\tpp$1.parseWithStatement = function (node) {\n\t  if (this.state.strict) this.raise(this.state.start, \"'with' in strict mode\");\n\t  this.next();\n\t  node.object = this.parseParenExpression();\n\t  node.body = this.parseStatement(false);\n\t  return this.finishNode(node, \"WithStatement\");\n\t};\n\n\tpp$1.parseEmptyStatement = function (node) {\n\t  this.next();\n\t  return this.finishNode(node, \"EmptyStatement\");\n\t};\n\n\tpp$1.parseLabeledStatement = function (node, maybeName, expr) {\n\t  for (var _iterator = this.state.labels, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var _label = _ref;\n\n\t    if (_label.name === maybeName) {\n\t      this.raise(expr.start, \"Label '\" + maybeName + \"' is already declared\");\n\t    }\n\t  }\n\n\t  var kind = this.state.type.isLoop ? \"loop\" : this.match(types._switch) ? \"switch\" : null;\n\t  for (var i = this.state.labels.length - 1; i >= 0; i--) {\n\t    var label = this.state.labels[i];\n\t    if (label.statementStart === node.start) {\n\t      label.statementStart = this.state.start;\n\t      label.kind = kind;\n\t    } else {\n\t      break;\n\t    }\n\t  }\n\n\t  this.state.labels.push({ name: maybeName, kind: kind, statementStart: this.state.start });\n\t  node.body = this.parseStatement(true);\n\t  this.state.labels.pop();\n\t  node.label = expr;\n\t  return this.finishNode(node, \"LabeledStatement\");\n\t};\n\n\tpp$1.parseExpressionStatement = function (node, expr) {\n\t  node.expression = expr;\n\t  this.semicolon();\n\t  return this.finishNode(node, \"ExpressionStatement\");\n\t};\n\n\t// Parse a semicolon-enclosed block of statements, handling `\"use\n\t// strict\"` declarations when `allowStrict` is true (used for\n\t// function bodies).\n\n\tpp$1.parseBlock = function (allowDirectives) {\n\t  var node = this.startNode();\n\t  this.expect(types.braceL);\n\t  this.parseBlockBody(node, allowDirectives, false, types.braceR);\n\t  return this.finishNode(node, \"BlockStatement\");\n\t};\n\n\tpp$1.isValidDirective = function (stmt) {\n\t  return stmt.type === \"ExpressionStatement\" && stmt.expression.type === \"StringLiteral\" && !stmt.expression.extra.parenthesized;\n\t};\n\n\tpp$1.parseBlockBody = function (node, allowDirectives, topLevel, end) {\n\t  node.body = [];\n\t  node.directives = [];\n\n\t  var parsedNonDirective = false;\n\t  var oldStrict = void 0;\n\t  var octalPosition = void 0;\n\n\t  while (!this.eat(end)) {\n\t    if (!parsedNonDirective && this.state.containsOctal && !octalPosition) {\n\t      octalPosition = this.state.octalPosition;\n\t    }\n\n\t    var stmt = this.parseStatement(true, topLevel);\n\n\t    if (allowDirectives && !parsedNonDirective && this.isValidDirective(stmt)) {\n\t      var directive = this.stmtToDirective(stmt);\n\t      node.directives.push(directive);\n\n\t      if (oldStrict === undefined && directive.value.value === \"use strict\") {\n\t        oldStrict = this.state.strict;\n\t        this.setStrict(true);\n\n\t        if (octalPosition) {\n\t          this.raise(octalPosition, \"Octal literal in strict mode\");\n\t        }\n\t      }\n\n\t      continue;\n\t    }\n\n\t    parsedNonDirective = true;\n\t    node.body.push(stmt);\n\t  }\n\n\t  if (oldStrict === false) {\n\t    this.setStrict(false);\n\t  }\n\t};\n\n\t// Parse a regular `for` loop. The disambiguation code in\n\t// `parseStatement` will already have parsed the init statement or\n\t// expression.\n\n\tpp$1.parseFor = function (node, init) {\n\t  node.init = init;\n\t  this.expect(types.semi);\n\t  node.test = this.match(types.semi) ? null : this.parseExpression();\n\t  this.expect(types.semi);\n\t  node.update = this.match(types.parenR) ? null : this.parseExpression();\n\t  this.expect(types.parenR);\n\t  node.body = this.parseStatement(false);\n\t  this.state.labels.pop();\n\t  return this.finishNode(node, \"ForStatement\");\n\t};\n\n\t// Parse a `for`/`in` and `for`/`of` loop, which are almost\n\t// same from parser's perspective.\n\n\tpp$1.parseForIn = function (node, init, forAwait) {\n\t  var type = void 0;\n\t  if (forAwait) {\n\t    this.eatContextual(\"of\");\n\t    type = \"ForAwaitStatement\";\n\t  } else {\n\t    type = this.match(types._in) ? \"ForInStatement\" : \"ForOfStatement\";\n\t    this.next();\n\t  }\n\t  node.left = init;\n\t  node.right = this.parseExpression();\n\t  this.expect(types.parenR);\n\t  node.body = this.parseStatement(false);\n\t  this.state.labels.pop();\n\t  return this.finishNode(node, type);\n\t};\n\n\t// Parse a list of variable declarations.\n\n\tpp$1.parseVar = function (node, isFor, kind) {\n\t  node.declarations = [];\n\t  node.kind = kind.keyword;\n\t  for (;;) {\n\t    var decl = this.startNode();\n\t    this.parseVarHead(decl);\n\t    if (this.eat(types.eq)) {\n\t      decl.init = this.parseMaybeAssign(isFor);\n\t    } else if (kind === types._const && !(this.match(types._in) || this.isContextual(\"of\"))) {\n\t      this.unexpected();\n\t    } else if (decl.id.type !== \"Identifier\" && !(isFor && (this.match(types._in) || this.isContextual(\"of\")))) {\n\t      this.raise(this.state.lastTokEnd, \"Complex binding patterns require an initialization value\");\n\t    } else {\n\t      decl.init = null;\n\t    }\n\t    node.declarations.push(this.finishNode(decl, \"VariableDeclarator\"));\n\t    if (!this.eat(types.comma)) break;\n\t  }\n\t  return node;\n\t};\n\n\tpp$1.parseVarHead = function (decl) {\n\t  decl.id = this.parseBindingAtom();\n\t  this.checkLVal(decl.id, true, undefined, \"variable declaration\");\n\t};\n\n\t// Parse a function declaration or literal (depending on the\n\t// `isStatement` parameter).\n\n\tpp$1.parseFunction = function (node, isStatement, allowExpressionBody, isAsync, optionalId) {\n\t  var oldInMethod = this.state.inMethod;\n\t  this.state.inMethod = false;\n\n\t  this.initFunction(node, isAsync);\n\n\t  if (this.match(types.star)) {\n\t    if (node.async && !this.hasPlugin(\"asyncGenerators\")) {\n\t      this.unexpected();\n\t    } else {\n\t      node.generator = true;\n\t      this.next();\n\t    }\n\t  }\n\n\t  if (isStatement && !optionalId && !this.match(types.name) && !this.match(types._yield)) {\n\t    this.unexpected();\n\t  }\n\n\t  if (this.match(types.name) || this.match(types._yield)) {\n\t    node.id = this.parseBindingIdentifier();\n\t  }\n\n\t  this.parseFunctionParams(node);\n\t  this.parseFunctionBody(node, allowExpressionBody);\n\n\t  this.state.inMethod = oldInMethod;\n\n\t  return this.finishNode(node, isStatement ? \"FunctionDeclaration\" : \"FunctionExpression\");\n\t};\n\n\tpp$1.parseFunctionParams = function (node) {\n\t  this.expect(types.parenL);\n\t  node.params = this.parseBindingList(types.parenR);\n\t};\n\n\t// Parse a class declaration or literal (depending on the\n\t// `isStatement` parameter).\n\n\tpp$1.parseClass = function (node, isStatement, optionalId) {\n\t  this.next();\n\t  this.takeDecorators(node);\n\t  this.parseClassId(node, isStatement, optionalId);\n\t  this.parseClassSuper(node);\n\t  this.parseClassBody(node);\n\t  return this.finishNode(node, isStatement ? \"ClassDeclaration\" : \"ClassExpression\");\n\t};\n\n\tpp$1.isClassProperty = function () {\n\t  return this.match(types.eq) || this.match(types.semi) || this.match(types.braceR);\n\t};\n\n\tpp$1.isClassMethod = function () {\n\t  return this.match(types.parenL);\n\t};\n\n\tpp$1.isNonstaticConstructor = function (method) {\n\t  return !method.computed && !method.static && (method.key.name === \"constructor\" || // Identifier\n\t  method.key.value === \"constructor\" // Literal\n\t  );\n\t};\n\n\tpp$1.parseClassBody = function (node) {\n\t  // class bodies are implicitly strict\n\t  var oldStrict = this.state.strict;\n\t  this.state.strict = true;\n\n\t  var hadConstructorCall = false;\n\t  var hadConstructor = false;\n\t  var decorators = [];\n\t  var classBody = this.startNode();\n\n\t  classBody.body = [];\n\n\t  this.expect(types.braceL);\n\n\t  while (!this.eat(types.braceR)) {\n\t    if (this.eat(types.semi)) {\n\t      if (decorators.length > 0) {\n\t        this.raise(this.state.lastTokEnd, \"Decorators must not be followed by a semicolon\");\n\t      }\n\t      continue;\n\t    }\n\n\t    if (this.match(types.at)) {\n\t      decorators.push(this.parseDecorator());\n\t      continue;\n\t    }\n\n\t    var method = this.startNode();\n\n\t    // steal the decorators if there are any\n\t    if (decorators.length) {\n\t      method.decorators = decorators;\n\t      decorators = [];\n\t    }\n\n\t    method.static = false;\n\t    if (this.match(types.name) && this.state.value === \"static\") {\n\t      var key = this.parseIdentifier(true); // eats 'static'\n\t      if (this.isClassMethod()) {\n\t        // a method named 'static'\n\t        method.kind = \"method\";\n\t        method.computed = false;\n\t        method.key = key;\n\t        this.parseClassMethod(classBody, method, false, false);\n\t        continue;\n\t      } else if (this.isClassProperty()) {\n\t        // a property named 'static'\n\t        method.computed = false;\n\t        method.key = key;\n\t        classBody.body.push(this.parseClassProperty(method));\n\t        continue;\n\t      }\n\t      // otherwise something static\n\t      method.static = true;\n\t    }\n\n\t    if (this.eat(types.star)) {\n\t      // a generator\n\t      method.kind = \"method\";\n\t      this.parsePropertyName(method);\n\t      if (this.isNonstaticConstructor(method)) {\n\t        this.raise(method.key.start, \"Constructor can't be a generator\");\n\t      }\n\t      if (!method.computed && method.static && (method.key.name === \"prototype\" || method.key.value === \"prototype\")) {\n\t        this.raise(method.key.start, \"Classes may not have static property named prototype\");\n\t      }\n\t      this.parseClassMethod(classBody, method, true, false);\n\t    } else {\n\t      var isSimple = this.match(types.name);\n\t      var _key = this.parsePropertyName(method);\n\t      if (!method.computed && method.static && (method.key.name === \"prototype\" || method.key.value === \"prototype\")) {\n\t        this.raise(method.key.start, \"Classes may not have static property named prototype\");\n\t      }\n\t      if (this.isClassMethod()) {\n\t        // a normal method\n\t        if (this.isNonstaticConstructor(method)) {\n\t          if (hadConstructor) {\n\t            this.raise(_key.start, \"Duplicate constructor in the same class\");\n\t          } else if (method.decorators) {\n\t            this.raise(method.start, \"You can't attach decorators to a class constructor\");\n\t          }\n\t          hadConstructor = true;\n\t          method.kind = \"constructor\";\n\t        } else {\n\t          method.kind = \"method\";\n\t        }\n\t        this.parseClassMethod(classBody, method, false, false);\n\t      } else if (this.isClassProperty()) {\n\t        // a normal property\n\t        if (this.isNonstaticConstructor(method)) {\n\t          this.raise(method.key.start, \"Classes may not have a non-static field named 'constructor'\");\n\t        }\n\t        classBody.body.push(this.parseClassProperty(method));\n\t      } else if (isSimple && _key.name === \"async\" && !this.isLineTerminator()) {\n\t        // an async method\n\t        var isGenerator = this.hasPlugin(\"asyncGenerators\") && this.eat(types.star);\n\t        method.kind = \"method\";\n\t        this.parsePropertyName(method);\n\t        if (this.isNonstaticConstructor(method)) {\n\t          this.raise(method.key.start, \"Constructor can't be an async function\");\n\t        }\n\t        this.parseClassMethod(classBody, method, isGenerator, true);\n\t      } else if (isSimple && (_key.name === \"get\" || _key.name === \"set\") && !(this.isLineTerminator() && this.match(types.star))) {\n\t        // `get\\n*` is an uninitialized property named 'get' followed by a generator.\n\t        // a getter or setter\n\t        method.kind = _key.name;\n\t        this.parsePropertyName(method);\n\t        if (this.isNonstaticConstructor(method)) {\n\t          this.raise(method.key.start, \"Constructor can't have get/set modifier\");\n\t        }\n\t        this.parseClassMethod(classBody, method, false, false);\n\t        this.checkGetterSetterParamCount(method);\n\t      } else if (this.hasPlugin(\"classConstructorCall\") && isSimple && _key.name === \"call\" && this.match(types.name) && this.state.value === \"constructor\") {\n\t        // a (deprecated) call constructor\n\t        if (hadConstructorCall) {\n\t          this.raise(method.start, \"Duplicate constructor call in the same class\");\n\t        } else if (method.decorators) {\n\t          this.raise(method.start, \"You can't attach decorators to a class constructor\");\n\t        }\n\t        hadConstructorCall = true;\n\t        method.kind = \"constructorCall\";\n\t        this.parsePropertyName(method); // consume \"constructor\" and make it the method's name\n\t        this.parseClassMethod(classBody, method, false, false);\n\t      } else if (this.isLineTerminator()) {\n\t        // an uninitialized class property (due to ASI, since we don't otherwise recognize the next token)\n\t        if (this.isNonstaticConstructor(method)) {\n\t          this.raise(method.key.start, \"Classes may not have a non-static field named 'constructor'\");\n\t        }\n\t        classBody.body.push(this.parseClassProperty(method));\n\t      } else {\n\t        this.unexpected();\n\t      }\n\t    }\n\t  }\n\n\t  if (decorators.length) {\n\t    this.raise(this.state.start, \"You have trailing decorators with no method\");\n\t  }\n\n\t  node.body = this.finishNode(classBody, \"ClassBody\");\n\n\t  this.state.strict = oldStrict;\n\t};\n\n\tpp$1.parseClassProperty = function (node) {\n\t  this.state.inClassProperty = true;\n\t  if (this.match(types.eq)) {\n\t    if (!this.hasPlugin(\"classProperties\")) this.unexpected();\n\t    this.next();\n\t    node.value = this.parseMaybeAssign();\n\t  } else {\n\t    node.value = null;\n\t  }\n\t  this.semicolon();\n\t  this.state.inClassProperty = false;\n\t  return this.finishNode(node, \"ClassProperty\");\n\t};\n\n\tpp$1.parseClassMethod = function (classBody, method, isGenerator, isAsync) {\n\t  this.parseMethod(method, isGenerator, isAsync);\n\t  classBody.body.push(this.finishNode(method, \"ClassMethod\"));\n\t};\n\n\tpp$1.parseClassId = function (node, isStatement, optionalId) {\n\t  if (this.match(types.name)) {\n\t    node.id = this.parseIdentifier();\n\t  } else {\n\t    if (optionalId || !isStatement) {\n\t      node.id = null;\n\t    } else {\n\t      this.unexpected();\n\t    }\n\t  }\n\t};\n\n\tpp$1.parseClassSuper = function (node) {\n\t  node.superClass = this.eat(types._extends) ? this.parseExprSubscripts() : null;\n\t};\n\n\t// Parses module export declaration.\n\n\tpp$1.parseExport = function (node) {\n\t  this.next();\n\t  // export * from '...'\n\t  if (this.match(types.star)) {\n\t    var specifier = this.startNode();\n\t    this.next();\n\t    if (this.hasPlugin(\"exportExtensions\") && this.eatContextual(\"as\")) {\n\t      specifier.exported = this.parseIdentifier();\n\t      node.specifiers = [this.finishNode(specifier, \"ExportNamespaceSpecifier\")];\n\t      this.parseExportSpecifiersMaybe(node);\n\t      this.parseExportFrom(node, true);\n\t    } else {\n\t      this.parseExportFrom(node, true);\n\t      return this.finishNode(node, \"ExportAllDeclaration\");\n\t    }\n\t  } else if (this.hasPlugin(\"exportExtensions\") && this.isExportDefaultSpecifier()) {\n\t    var _specifier = this.startNode();\n\t    _specifier.exported = this.parseIdentifier(true);\n\t    node.specifiers = [this.finishNode(_specifier, \"ExportDefaultSpecifier\")];\n\t    if (this.match(types.comma) && this.lookahead().type === types.star) {\n\t      this.expect(types.comma);\n\t      var _specifier2 = this.startNode();\n\t      this.expect(types.star);\n\t      this.expectContextual(\"as\");\n\t      _specifier2.exported = this.parseIdentifier();\n\t      node.specifiers.push(this.finishNode(_specifier2, \"ExportNamespaceSpecifier\"));\n\t    } else {\n\t      this.parseExportSpecifiersMaybe(node);\n\t    }\n\t    this.parseExportFrom(node, true);\n\t  } else if (this.eat(types._default)) {\n\t    // export default ...\n\t    var expr = this.startNode();\n\t    var needsSemi = false;\n\t    if (this.eat(types._function)) {\n\t      expr = this.parseFunction(expr, true, false, false, true);\n\t    } else if (this.match(types._class)) {\n\t      expr = this.parseClass(expr, true, true);\n\t    } else {\n\t      needsSemi = true;\n\t      expr = this.parseMaybeAssign();\n\t    }\n\t    node.declaration = expr;\n\t    if (needsSemi) this.semicolon();\n\t    this.checkExport(node, true, true);\n\t    return this.finishNode(node, \"ExportDefaultDeclaration\");\n\t  } else if (this.shouldParseExportDeclaration()) {\n\t    node.specifiers = [];\n\t    node.source = null;\n\t    node.declaration = this.parseExportDeclaration(node);\n\t  } else {\n\t    // export { x, y as z } [from '...']\n\t    node.declaration = null;\n\t    node.specifiers = this.parseExportSpecifiers();\n\t    this.parseExportFrom(node);\n\t  }\n\t  this.checkExport(node, true);\n\t  return this.finishNode(node, \"ExportNamedDeclaration\");\n\t};\n\n\tpp$1.parseExportDeclaration = function () {\n\t  return this.parseStatement(true);\n\t};\n\n\tpp$1.isExportDefaultSpecifier = function () {\n\t  if (this.match(types.name)) {\n\t    return this.state.value !== \"async\";\n\t  }\n\n\t  if (!this.match(types._default)) {\n\t    return false;\n\t  }\n\n\t  var lookahead = this.lookahead();\n\t  return lookahead.type === types.comma || lookahead.type === types.name && lookahead.value === \"from\";\n\t};\n\n\tpp$1.parseExportSpecifiersMaybe = function (node) {\n\t  if (this.eat(types.comma)) {\n\t    node.specifiers = node.specifiers.concat(this.parseExportSpecifiers());\n\t  }\n\t};\n\n\tpp$1.parseExportFrom = function (node, expect) {\n\t  if (this.eatContextual(\"from\")) {\n\t    node.source = this.match(types.string) ? this.parseExprAtom() : this.unexpected();\n\t    this.checkExport(node);\n\t  } else {\n\t    if (expect) {\n\t      this.unexpected();\n\t    } else {\n\t      node.source = null;\n\t    }\n\t  }\n\n\t  this.semicolon();\n\t};\n\n\tpp$1.shouldParseExportDeclaration = function () {\n\t  return this.state.type.keyword === \"var\" || this.state.type.keyword === \"const\" || this.state.type.keyword === \"let\" || this.state.type.keyword === \"function\" || this.state.type.keyword === \"class\" || this.isContextual(\"async\");\n\t};\n\n\tpp$1.checkExport = function (node, checkNames, isDefault) {\n\t  if (checkNames) {\n\t    // Check for duplicate exports\n\t    if (isDefault) {\n\t      // Default exports\n\t      this.checkDuplicateExports(node, \"default\");\n\t    } else if (node.specifiers && node.specifiers.length) {\n\t      // Named exports\n\t      for (var _iterator2 = node.specifiers, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) {\n\t        var _ref2;\n\n\t        if (_isArray2) {\n\t          if (_i2 >= _iterator2.length) break;\n\t          _ref2 = _iterator2[_i2++];\n\t        } else {\n\t          _i2 = _iterator2.next();\n\t          if (_i2.done) break;\n\t          _ref2 = _i2.value;\n\t        }\n\n\t        var specifier = _ref2;\n\n\t        this.checkDuplicateExports(specifier, specifier.exported.name);\n\t      }\n\t    } else if (node.declaration) {\n\t      // Exported declarations\n\t      if (node.declaration.type === \"FunctionDeclaration\" || node.declaration.type === \"ClassDeclaration\") {\n\t        this.checkDuplicateExports(node, node.declaration.id.name);\n\t      } else if (node.declaration.type === \"VariableDeclaration\") {\n\t        for (var _iterator3 = node.declaration.declarations, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : _iterator3[Symbol.iterator]();;) {\n\t          var _ref3;\n\n\t          if (_isArray3) {\n\t            if (_i3 >= _iterator3.length) break;\n\t            _ref3 = _iterator3[_i3++];\n\t          } else {\n\t            _i3 = _iterator3.next();\n\t            if (_i3.done) break;\n\t            _ref3 = _i3.value;\n\t          }\n\n\t          var declaration = _ref3;\n\n\t          this.checkDeclaration(declaration.id);\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  if (this.state.decorators.length) {\n\t    var isClass = node.declaration && (node.declaration.type === \"ClassDeclaration\" || node.declaration.type === \"ClassExpression\");\n\t    if (!node.declaration || !isClass) {\n\t      this.raise(node.start, \"You can only use decorators on an export when exporting a class\");\n\t    }\n\t    this.takeDecorators(node.declaration);\n\t  }\n\t};\n\n\tpp$1.checkDeclaration = function (node) {\n\t  if (node.type === \"ObjectPattern\") {\n\t    for (var _iterator4 = node.properties, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : _iterator4[Symbol.iterator]();;) {\n\t      var _ref4;\n\n\t      if (_isArray4) {\n\t        if (_i4 >= _iterator4.length) break;\n\t        _ref4 = _iterator4[_i4++];\n\t      } else {\n\t        _i4 = _iterator4.next();\n\t        if (_i4.done) break;\n\t        _ref4 = _i4.value;\n\t      }\n\n\t      var prop = _ref4;\n\n\t      this.checkDeclaration(prop);\n\t    }\n\t  } else if (node.type === \"ArrayPattern\") {\n\t    for (var _iterator5 = node.elements, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : _iterator5[Symbol.iterator]();;) {\n\t      var _ref5;\n\n\t      if (_isArray5) {\n\t        if (_i5 >= _iterator5.length) break;\n\t        _ref5 = _iterator5[_i5++];\n\t      } else {\n\t        _i5 = _iterator5.next();\n\t        if (_i5.done) break;\n\t        _ref5 = _i5.value;\n\t      }\n\n\t      var elem = _ref5;\n\n\t      if (elem) {\n\t        this.checkDeclaration(elem);\n\t      }\n\t    }\n\t  } else if (node.type === \"ObjectProperty\") {\n\t    this.checkDeclaration(node.value);\n\t  } else if (node.type === \"RestElement\" || node.type === \"RestProperty\") {\n\t    this.checkDeclaration(node.argument);\n\t  } else if (node.type === \"Identifier\") {\n\t    this.checkDuplicateExports(node, node.name);\n\t  }\n\t};\n\n\tpp$1.checkDuplicateExports = function (node, name) {\n\t  if (this.state.exportedIdentifiers.indexOf(name) > -1) {\n\t    this.raiseDuplicateExportError(node, name);\n\t  }\n\t  this.state.exportedIdentifiers.push(name);\n\t};\n\n\tpp$1.raiseDuplicateExportError = function (node, name) {\n\t  this.raise(node.start, name === \"default\" ? \"Only one default export allowed per module.\" : \"`\" + name + \"` has already been exported. Exported identifiers must be unique.\");\n\t};\n\n\t// Parses a comma-separated list of module exports.\n\n\tpp$1.parseExportSpecifiers = function () {\n\t  var nodes = [];\n\t  var first = true;\n\t  var needsFrom = void 0;\n\n\t  // export { x, y as z } [from '...']\n\t  this.expect(types.braceL);\n\n\t  while (!this.eat(types.braceR)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      this.expect(types.comma);\n\t      if (this.eat(types.braceR)) break;\n\t    }\n\n\t    var isDefault = this.match(types._default);\n\t    if (isDefault && !needsFrom) needsFrom = true;\n\n\t    var node = this.startNode();\n\t    node.local = this.parseIdentifier(isDefault);\n\t    node.exported = this.eatContextual(\"as\") ? this.parseIdentifier(true) : node.local.__clone();\n\t    nodes.push(this.finishNode(node, \"ExportSpecifier\"));\n\t  }\n\n\t  // https://github.com/ember-cli/ember-cli/pull/3739\n\t  if (needsFrom && !this.isContextual(\"from\")) {\n\t    this.unexpected();\n\t  }\n\n\t  return nodes;\n\t};\n\n\t// Parses import declaration.\n\n\tpp$1.parseImport = function (node) {\n\t  this.eat(types._import);\n\n\t  // import '...'\n\t  if (this.match(types.string)) {\n\t    node.specifiers = [];\n\t    node.source = this.parseExprAtom();\n\t  } else {\n\t    node.specifiers = [];\n\t    this.parseImportSpecifiers(node);\n\t    this.expectContextual(\"from\");\n\t    node.source = this.match(types.string) ? this.parseExprAtom() : this.unexpected();\n\t  }\n\t  this.semicolon();\n\t  return this.finishNode(node, \"ImportDeclaration\");\n\t};\n\n\t// Parses a comma-separated list of module imports.\n\n\tpp$1.parseImportSpecifiers = function (node) {\n\t  var first = true;\n\t  if (this.match(types.name)) {\n\t    // import defaultObj, { x, y as z } from '...'\n\t    var startPos = this.state.start;\n\t    var startLoc = this.state.startLoc;\n\t    node.specifiers.push(this.parseImportSpecifierDefault(this.parseIdentifier(), startPos, startLoc));\n\t    if (!this.eat(types.comma)) return;\n\t  }\n\n\t  if (this.match(types.star)) {\n\t    var specifier = this.startNode();\n\t    this.next();\n\t    this.expectContextual(\"as\");\n\t    specifier.local = this.parseIdentifier();\n\t    this.checkLVal(specifier.local, true, undefined, \"import namespace specifier\");\n\t    node.specifiers.push(this.finishNode(specifier, \"ImportNamespaceSpecifier\"));\n\t    return;\n\t  }\n\n\t  this.expect(types.braceL);\n\t  while (!this.eat(types.braceR)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      // Detect an attempt to deep destructure\n\t      if (this.eat(types.colon)) {\n\t        this.unexpected(null, \"ES2015 named imports do not destructure. Use another statement for destructuring after the import.\");\n\t      }\n\n\t      this.expect(types.comma);\n\t      if (this.eat(types.braceR)) break;\n\t    }\n\n\t    this.parseImportSpecifier(node);\n\t  }\n\t};\n\n\tpp$1.parseImportSpecifier = function (node) {\n\t  var specifier = this.startNode();\n\t  specifier.imported = this.parseIdentifier(true);\n\t  if (this.eatContextual(\"as\")) {\n\t    specifier.local = this.parseIdentifier();\n\t  } else {\n\t    this.checkReservedWord(specifier.imported.name, specifier.start, true, true);\n\t    specifier.local = specifier.imported.__clone();\n\t  }\n\t  this.checkLVal(specifier.local, true, undefined, \"import specifier\");\n\t  node.specifiers.push(this.finishNode(specifier, \"ImportSpecifier\"));\n\t};\n\n\tpp$1.parseImportSpecifierDefault = function (id, startPos, startLoc) {\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  node.local = id;\n\t  this.checkLVal(node.local, true, undefined, \"default import specifier\");\n\t  return this.finishNode(node, \"ImportDefaultSpecifier\");\n\t};\n\n\tvar pp$2 = Parser.prototype;\n\n\t// Convert existing expression atom to assignable pattern\n\t// if possible.\n\n\tpp$2.toAssignable = function (node, isBinding, contextDescription) {\n\t  if (node) {\n\t    switch (node.type) {\n\t      case \"Identifier\":\n\t      case \"ObjectPattern\":\n\t      case \"ArrayPattern\":\n\t      case \"AssignmentPattern\":\n\t        break;\n\n\t      case \"ObjectExpression\":\n\t        node.type = \"ObjectPattern\";\n\t        for (var _iterator = node.properties, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {\n\t          var _ref;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref = _i.value;\n\t          }\n\n\t          var prop = _ref;\n\n\t          if (prop.type === \"ObjectMethod\") {\n\t            if (prop.kind === \"get\" || prop.kind === \"set\") {\n\t              this.raise(prop.key.start, \"Object pattern can't contain getter or setter\");\n\t            } else {\n\t              this.raise(prop.key.start, \"Object pattern can't contain methods\");\n\t            }\n\t          } else {\n\t            this.toAssignable(prop, isBinding, \"object destructuring pattern\");\n\t          }\n\t        }\n\t        break;\n\n\t      case \"ObjectProperty\":\n\t        this.toAssignable(node.value, isBinding, contextDescription);\n\t        break;\n\n\t      case \"SpreadProperty\":\n\t        node.type = \"RestProperty\";\n\t        var arg = node.argument;\n\t        this.toAssignable(arg, isBinding, contextDescription);\n\t        break;\n\n\t      case \"ArrayExpression\":\n\t        node.type = \"ArrayPattern\";\n\t        this.toAssignableList(node.elements, isBinding, contextDescription);\n\t        break;\n\n\t      case \"AssignmentExpression\":\n\t        if (node.operator === \"=\") {\n\t          node.type = \"AssignmentPattern\";\n\t          delete node.operator;\n\t        } else {\n\t          this.raise(node.left.end, \"Only '=' operator can be used for specifying default value.\");\n\t        }\n\t        break;\n\n\t      case \"MemberExpression\":\n\t        if (!isBinding) break;\n\n\t      default:\n\t        {\n\t          var message = \"Invalid left-hand side\" + (contextDescription ? \" in \" + contextDescription : /* istanbul ignore next */\"expression\");\n\t          this.raise(node.start, message);\n\t        }\n\t    }\n\t  }\n\t  return node;\n\t};\n\n\t// Convert list of expression atoms to binding list.\n\n\tpp$2.toAssignableList = function (exprList, isBinding, contextDescription) {\n\t  var end = exprList.length;\n\t  if (end) {\n\t    var last = exprList[end - 1];\n\t    if (last && last.type === \"RestElement\") {\n\t      --end;\n\t    } else if (last && last.type === \"SpreadElement\") {\n\t      last.type = \"RestElement\";\n\t      var arg = last.argument;\n\t      this.toAssignable(arg, isBinding, contextDescription);\n\t      if (arg.type !== \"Identifier\" && arg.type !== \"MemberExpression\" && arg.type !== \"ArrayPattern\") {\n\t        this.unexpected(arg.start);\n\t      }\n\t      --end;\n\t    }\n\t  }\n\t  for (var i = 0; i < end; i++) {\n\t    var elt = exprList[i];\n\t    if (elt) this.toAssignable(elt, isBinding, contextDescription);\n\t  }\n\t  return exprList;\n\t};\n\n\t// Convert list of expression atoms to a list of\n\n\tpp$2.toReferencedList = function (exprList) {\n\t  return exprList;\n\t};\n\n\t// Parses spread element.\n\n\tpp$2.parseSpread = function (refShorthandDefaultPos) {\n\t  var node = this.startNode();\n\t  this.next();\n\t  node.argument = this.parseMaybeAssign(false, refShorthandDefaultPos);\n\t  return this.finishNode(node, \"SpreadElement\");\n\t};\n\n\tpp$2.parseRest = function () {\n\t  var node = this.startNode();\n\t  this.next();\n\t  node.argument = this.parseBindingIdentifier();\n\t  return this.finishNode(node, \"RestElement\");\n\t};\n\n\tpp$2.shouldAllowYieldIdentifier = function () {\n\t  return this.match(types._yield) && !this.state.strict && !this.state.inGenerator;\n\t};\n\n\tpp$2.parseBindingIdentifier = function () {\n\t  return this.parseIdentifier(this.shouldAllowYieldIdentifier());\n\t};\n\n\t// Parses lvalue (assignable) atom.\n\n\tpp$2.parseBindingAtom = function () {\n\t  switch (this.state.type) {\n\t    case types._yield:\n\t      if (this.state.strict || this.state.inGenerator) this.unexpected();\n\t    // fall-through\n\t    case types.name:\n\t      return this.parseIdentifier(true);\n\n\t    case types.bracketL:\n\t      var node = this.startNode();\n\t      this.next();\n\t      node.elements = this.parseBindingList(types.bracketR, true);\n\t      return this.finishNode(node, \"ArrayPattern\");\n\n\t    case types.braceL:\n\t      return this.parseObj(true);\n\n\t    default:\n\t      this.unexpected();\n\t  }\n\t};\n\n\tpp$2.parseBindingList = function (close, allowEmpty) {\n\t  var elts = [];\n\t  var first = true;\n\t  while (!this.eat(close)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      this.expect(types.comma);\n\t    }\n\t    if (allowEmpty && this.match(types.comma)) {\n\t      elts.push(null);\n\t    } else if (this.eat(close)) {\n\t      break;\n\t    } else if (this.match(types.ellipsis)) {\n\t      elts.push(this.parseAssignableListItemTypes(this.parseRest()));\n\t      this.expect(close);\n\t      break;\n\t    } else {\n\t      var decorators = [];\n\t      while (this.match(types.at)) {\n\t        decorators.push(this.parseDecorator());\n\t      }\n\t      var left = this.parseMaybeDefault();\n\t      if (decorators.length) {\n\t        left.decorators = decorators;\n\t      }\n\t      this.parseAssignableListItemTypes(left);\n\t      elts.push(this.parseMaybeDefault(left.start, left.loc.start, left));\n\t    }\n\t  }\n\t  return elts;\n\t};\n\n\tpp$2.parseAssignableListItemTypes = function (param) {\n\t  return param;\n\t};\n\n\t// Parses assignment pattern around given atom if possible.\n\n\tpp$2.parseMaybeDefault = function (startPos, startLoc, left) {\n\t  startLoc = startLoc || this.state.startLoc;\n\t  startPos = startPos || this.state.start;\n\t  left = left || this.parseBindingAtom();\n\t  if (!this.eat(types.eq)) return left;\n\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  node.left = left;\n\t  node.right = this.parseMaybeAssign();\n\t  return this.finishNode(node, \"AssignmentPattern\");\n\t};\n\n\t// Verify that a node is an lval — something that can be assigned\n\t// to.\n\n\tpp$2.checkLVal = function (expr, isBinding, checkClashes, contextDescription) {\n\t  switch (expr.type) {\n\t    case \"Identifier\":\n\t      this.checkReservedWord(expr.name, expr.start, false, true);\n\n\t      if (checkClashes) {\n\t        // we need to prefix this with an underscore for the cases where we have a key of\n\t        // `__proto__`. there's a bug in old V8 where the following wouldn't work:\n\t        //\n\t        //   > var obj = Object.create(null);\n\t        //   undefined\n\t        //   > obj.__proto__\n\t        //   null\n\t        //   > obj.__proto__ = true;\n\t        //   true\n\t        //   > obj.__proto__\n\t        //   null\n\t        var key = \"_\" + expr.name;\n\n\t        if (checkClashes[key]) {\n\t          this.raise(expr.start, \"Argument name clash in strict mode\");\n\t        } else {\n\t          checkClashes[key] = true;\n\t        }\n\t      }\n\t      break;\n\n\t    case \"MemberExpression\":\n\t      if (isBinding) this.raise(expr.start, (isBinding ? \"Binding\" : \"Assigning to\") + \" member expression\");\n\t      break;\n\n\t    case \"ObjectPattern\":\n\t      for (var _iterator2 = expr.properties, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) {\n\t        var _ref2;\n\n\t        if (_isArray2) {\n\t          if (_i2 >= _iterator2.length) break;\n\t          _ref2 = _iterator2[_i2++];\n\t        } else {\n\t          _i2 = _iterator2.next();\n\t          if (_i2.done) break;\n\t          _ref2 = _i2.value;\n\t        }\n\n\t        var prop = _ref2;\n\n\t        if (prop.type === \"ObjectProperty\") prop = prop.value;\n\t        this.checkLVal(prop, isBinding, checkClashes, \"object destructuring pattern\");\n\t      }\n\t      break;\n\n\t    case \"ArrayPattern\":\n\t      for (var _iterator3 = expr.elements, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : _iterator3[Symbol.iterator]();;) {\n\t        var _ref3;\n\n\t        if (_isArray3) {\n\t          if (_i3 >= _iterator3.length) break;\n\t          _ref3 = _iterator3[_i3++];\n\t        } else {\n\t          _i3 = _iterator3.next();\n\t          if (_i3.done) break;\n\t          _ref3 = _i3.value;\n\t        }\n\n\t        var elem = _ref3;\n\n\t        if (elem) this.checkLVal(elem, isBinding, checkClashes, \"array destructuring pattern\");\n\t      }\n\t      break;\n\n\t    case \"AssignmentPattern\":\n\t      this.checkLVal(expr.left, isBinding, checkClashes, \"assignment pattern\");\n\t      break;\n\n\t    case \"RestProperty\":\n\t      this.checkLVal(expr.argument, isBinding, checkClashes, \"rest property\");\n\t      break;\n\n\t    case \"RestElement\":\n\t      this.checkLVal(expr.argument, isBinding, checkClashes, \"rest element\");\n\t      break;\n\n\t    default:\n\t      {\n\t        var message = (isBinding ? /* istanbul ignore next */\"Binding invalid\" : \"Invalid\") + \" left-hand side\" + (contextDescription ? \" in \" + contextDescription : /* istanbul ignore next */\"expression\");\n\t        this.raise(expr.start, message);\n\t      }\n\t  }\n\t};\n\n\t/* eslint max-len: 0 */\n\n\t// A recursive descent parser operates by defining functions for all\n\t// syntactic elements, and recursively calling those, each function\n\t// advancing the input stream and returning an AST node. Precedence\n\t// of constructs (for example, the fact that `!x[1]` means `!(x[1])`\n\t// instead of `(!x)[1]` is handled by the fact that the parser\n\t// function that parses unary prefix operators is called first, and\n\t// in turn calls the function that parses `[]` subscripts — that\n\t// way, it'll receive the node for `x[1]` already parsed, and wraps\n\t// *that* in the unary operator node.\n\t//\n\t// Acorn uses an [operator precedence parser][opp] to handle binary\n\t// operator precedence, because it is much more compact than using\n\t// the technique outlined above, which uses different, nesting\n\t// functions to specify precedence, for all of the ten binary\n\t// precedence levels that JavaScript defines.\n\t//\n\t// [opp]: http://en.wikipedia.org/wiki/Operator-precedence_parser\n\n\tvar pp$3 = Parser.prototype;\n\n\t// Check if property name clashes with already added.\n\t// Object/class getters and setters are not allowed to clash —\n\t// either with each other or with an init property — and in\n\t// strict mode, init properties are also not allowed to be repeated.\n\n\tpp$3.checkPropClash = function (prop, propHash) {\n\t  if (prop.computed || prop.kind) return;\n\n\t  var key = prop.key;\n\t  // It is either an Identifier or a String/NumericLiteral\n\t  var name = key.type === \"Identifier\" ? key.name : String(key.value);\n\n\t  if (name === \"__proto__\") {\n\t    if (propHash.proto) this.raise(key.start, \"Redefinition of __proto__ property\");\n\t    propHash.proto = true;\n\t  }\n\t};\n\n\t// Convenience method to parse an Expression only\n\tpp$3.getExpression = function () {\n\t  this.nextToken();\n\t  var expr = this.parseExpression();\n\t  if (!this.match(types.eof)) {\n\t    this.unexpected();\n\t  }\n\t  return expr;\n\t};\n\n\t// ### Expression parsing\n\n\t// These nest, from the most general expression type at the top to\n\t// 'atomic', nondivisible expression types at the bottom. Most of\n\t// the functions will simply let the function (s) below them parse,\n\t// and, *if* the syntactic construct they handle is present, wrap\n\t// the AST node that the inner parser gave them in another node.\n\n\t// Parse a full expression. The optional arguments are used to\n\t// forbid the `in` operator (in for loops initialization expressions)\n\t// and provide reference for storing '=' operator inside shorthand\n\t// property assignment in contexts where both object expression\n\t// and object pattern might appear (so it's possible to raise\n\t// delayed syntax error at correct position).\n\n\tpp$3.parseExpression = function (noIn, refShorthandDefaultPos) {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var expr = this.parseMaybeAssign(noIn, refShorthandDefaultPos);\n\t  if (this.match(types.comma)) {\n\t    var node = this.startNodeAt(startPos, startLoc);\n\t    node.expressions = [expr];\n\t    while (this.eat(types.comma)) {\n\t      node.expressions.push(this.parseMaybeAssign(noIn, refShorthandDefaultPos));\n\t    }\n\t    this.toReferencedList(node.expressions);\n\t    return this.finishNode(node, \"SequenceExpression\");\n\t  }\n\t  return expr;\n\t};\n\n\t// Parse an assignment expression. This includes applications of\n\t// operators like `+=`.\n\n\tpp$3.parseMaybeAssign = function (noIn, refShorthandDefaultPos, afterLeftParse, refNeedsArrowPos) {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\n\t  if (this.match(types._yield) && this.state.inGenerator) {\n\t    var _left = this.parseYield();\n\t    if (afterLeftParse) _left = afterLeftParse.call(this, _left, startPos, startLoc);\n\t    return _left;\n\t  }\n\n\t  var failOnShorthandAssign = void 0;\n\t  if (refShorthandDefaultPos) {\n\t    failOnShorthandAssign = false;\n\t  } else {\n\t    refShorthandDefaultPos = { start: 0 };\n\t    failOnShorthandAssign = true;\n\t  }\n\n\t  if (this.match(types.parenL) || this.match(types.name)) {\n\t    this.state.potentialArrowAt = this.state.start;\n\t  }\n\n\t  var left = this.parseMaybeConditional(noIn, refShorthandDefaultPos, refNeedsArrowPos);\n\t  if (afterLeftParse) left = afterLeftParse.call(this, left, startPos, startLoc);\n\t  if (this.state.type.isAssign) {\n\t    var node = this.startNodeAt(startPos, startLoc);\n\t    node.operator = this.state.value;\n\t    node.left = this.match(types.eq) ? this.toAssignable(left, undefined, \"assignment expression\") : left;\n\t    refShorthandDefaultPos.start = 0; // reset because shorthand default was used correctly\n\n\t    this.checkLVal(left, undefined, undefined, \"assignment expression\");\n\n\t    if (left.extra && left.extra.parenthesized) {\n\t      var errorMsg = void 0;\n\t      if (left.type === \"ObjectPattern\") {\n\t        errorMsg = \"`({a}) = 0` use `({a} = 0)`\";\n\t      } else if (left.type === \"ArrayPattern\") {\n\t        errorMsg = \"`([a]) = 0` use `([a] = 0)`\";\n\t      }\n\t      if (errorMsg) {\n\t        this.raise(left.start, \"You're trying to assign to a parenthesized expression, eg. instead of \" + errorMsg);\n\t      }\n\t    }\n\n\t    this.next();\n\t    node.right = this.parseMaybeAssign(noIn);\n\t    return this.finishNode(node, \"AssignmentExpression\");\n\t  } else if (failOnShorthandAssign && refShorthandDefaultPos.start) {\n\t    this.unexpected(refShorthandDefaultPos.start);\n\t  }\n\n\t  return left;\n\t};\n\n\t// Parse a ternary conditional (`?:`) operator.\n\n\tpp$3.parseMaybeConditional = function (noIn, refShorthandDefaultPos, refNeedsArrowPos) {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var expr = this.parseExprOps(noIn, refShorthandDefaultPos);\n\t  if (refShorthandDefaultPos && refShorthandDefaultPos.start) return expr;\n\n\t  return this.parseConditional(expr, noIn, startPos, startLoc, refNeedsArrowPos);\n\t};\n\n\tpp$3.parseConditional = function (expr, noIn, startPos, startLoc) {\n\t  if (this.eat(types.question)) {\n\t    var node = this.startNodeAt(startPos, startLoc);\n\t    node.test = expr;\n\t    node.consequent = this.parseMaybeAssign();\n\t    this.expect(types.colon);\n\t    node.alternate = this.parseMaybeAssign(noIn);\n\t    return this.finishNode(node, \"ConditionalExpression\");\n\t  }\n\t  return expr;\n\t};\n\n\t// Start the precedence parser.\n\n\tpp$3.parseExprOps = function (noIn, refShorthandDefaultPos) {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var expr = this.parseMaybeUnary(refShorthandDefaultPos);\n\t  if (refShorthandDefaultPos && refShorthandDefaultPos.start) {\n\t    return expr;\n\t  } else {\n\t    return this.parseExprOp(expr, startPos, startLoc, -1, noIn);\n\t  }\n\t};\n\n\t// Parse binary operators with the operator precedence parsing\n\t// algorithm. `left` is the left-hand side of the operator.\n\t// `minPrec` provides context that allows the function to stop and\n\t// defer further parser to one of its callers when it encounters an\n\t// operator that has a lower precedence than the set it is parsing.\n\n\tpp$3.parseExprOp = function (left, leftStartPos, leftStartLoc, minPrec, noIn) {\n\t  var prec = this.state.type.binop;\n\t  if (prec != null && (!noIn || !this.match(types._in))) {\n\t    if (prec > minPrec) {\n\t      var node = this.startNodeAt(leftStartPos, leftStartLoc);\n\t      node.left = left;\n\t      node.operator = this.state.value;\n\n\t      if (node.operator === \"**\" && left.type === \"UnaryExpression\" && left.extra && !left.extra.parenthesizedArgument && !left.extra.parenthesized) {\n\t        this.raise(left.argument.start, \"Illegal expression. Wrap left hand side or entire exponentiation in parentheses.\");\n\t      }\n\n\t      var op = this.state.type;\n\t      this.next();\n\n\t      var startPos = this.state.start;\n\t      var startLoc = this.state.startLoc;\n\t      node.right = this.parseExprOp(this.parseMaybeUnary(), startPos, startLoc, op.rightAssociative ? prec - 1 : prec, noIn);\n\n\t      this.finishNode(node, op === types.logicalOR || op === types.logicalAND ? \"LogicalExpression\" : \"BinaryExpression\");\n\t      return this.parseExprOp(node, leftStartPos, leftStartLoc, minPrec, noIn);\n\t    }\n\t  }\n\t  return left;\n\t};\n\n\t// Parse unary operators, both prefix and postfix.\n\n\tpp$3.parseMaybeUnary = function (refShorthandDefaultPos) {\n\t  if (this.state.type.prefix) {\n\t    var node = this.startNode();\n\t    var update = this.match(types.incDec);\n\t    node.operator = this.state.value;\n\t    node.prefix = true;\n\t    this.next();\n\n\t    var argType = this.state.type;\n\t    node.argument = this.parseMaybeUnary();\n\n\t    this.addExtra(node, \"parenthesizedArgument\", argType === types.parenL && (!node.argument.extra || !node.argument.extra.parenthesized));\n\n\t    if (refShorthandDefaultPos && refShorthandDefaultPos.start) {\n\t      this.unexpected(refShorthandDefaultPos.start);\n\t    }\n\n\t    if (update) {\n\t      this.checkLVal(node.argument, undefined, undefined, \"prefix operation\");\n\t    } else if (this.state.strict && node.operator === \"delete\" && node.argument.type === \"Identifier\") {\n\t      this.raise(node.start, \"Deleting local variable in strict mode\");\n\t    }\n\n\t    return this.finishNode(node, update ? \"UpdateExpression\" : \"UnaryExpression\");\n\t  }\n\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var expr = this.parseExprSubscripts(refShorthandDefaultPos);\n\t  if (refShorthandDefaultPos && refShorthandDefaultPos.start) return expr;\n\t  while (this.state.type.postfix && !this.canInsertSemicolon()) {\n\t    var _node = this.startNodeAt(startPos, startLoc);\n\t    _node.operator = this.state.value;\n\t    _node.prefix = false;\n\t    _node.argument = expr;\n\t    this.checkLVal(expr, undefined, undefined, \"postfix operation\");\n\t    this.next();\n\t    expr = this.finishNode(_node, \"UpdateExpression\");\n\t  }\n\t  return expr;\n\t};\n\n\t// Parse call, dot, and `[]`-subscript expressions.\n\n\tpp$3.parseExprSubscripts = function (refShorthandDefaultPos) {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var potentialArrowAt = this.state.potentialArrowAt;\n\t  var expr = this.parseExprAtom(refShorthandDefaultPos);\n\n\t  if (expr.type === \"ArrowFunctionExpression\" && expr.start === potentialArrowAt) {\n\t    return expr;\n\t  }\n\n\t  if (refShorthandDefaultPos && refShorthandDefaultPos.start) {\n\t    return expr;\n\t  }\n\n\t  return this.parseSubscripts(expr, startPos, startLoc);\n\t};\n\n\tpp$3.parseSubscripts = function (base, startPos, startLoc, noCalls) {\n\t  for (;;) {\n\t    if (!noCalls && this.eat(types.doubleColon)) {\n\t      var node = this.startNodeAt(startPos, startLoc);\n\t      node.object = base;\n\t      node.callee = this.parseNoCallExpr();\n\t      return this.parseSubscripts(this.finishNode(node, \"BindExpression\"), startPos, startLoc, noCalls);\n\t    } else if (this.eat(types.dot)) {\n\t      var _node2 = this.startNodeAt(startPos, startLoc);\n\t      _node2.object = base;\n\t      _node2.property = this.parseIdentifier(true);\n\t      _node2.computed = false;\n\t      base = this.finishNode(_node2, \"MemberExpression\");\n\t    } else if (this.eat(types.bracketL)) {\n\t      var _node3 = this.startNodeAt(startPos, startLoc);\n\t      _node3.object = base;\n\t      _node3.property = this.parseExpression();\n\t      _node3.computed = true;\n\t      this.expect(types.bracketR);\n\t      base = this.finishNode(_node3, \"MemberExpression\");\n\t    } else if (!noCalls && this.match(types.parenL)) {\n\t      var possibleAsync = this.state.potentialArrowAt === base.start && base.type === \"Identifier\" && base.name === \"async\" && !this.canInsertSemicolon();\n\t      this.next();\n\n\t      var _node4 = this.startNodeAt(startPos, startLoc);\n\t      _node4.callee = base;\n\t      _node4.arguments = this.parseCallExpressionArguments(types.parenR, possibleAsync);\n\t      if (_node4.callee.type === \"Import\" && _node4.arguments.length !== 1) {\n\t        this.raise(_node4.start, \"import() requires exactly one argument\");\n\t      }\n\t      base = this.finishNode(_node4, \"CallExpression\");\n\n\t      if (possibleAsync && this.shouldParseAsyncArrow()) {\n\t        return this.parseAsyncArrowFromCallExpression(this.startNodeAt(startPos, startLoc), _node4);\n\t      } else {\n\t        this.toReferencedList(_node4.arguments);\n\t      }\n\t    } else if (this.match(types.backQuote)) {\n\t      var _node5 = this.startNodeAt(startPos, startLoc);\n\t      _node5.tag = base;\n\t      _node5.quasi = this.parseTemplate(true);\n\t      base = this.finishNode(_node5, \"TaggedTemplateExpression\");\n\t    } else {\n\t      return base;\n\t    }\n\t  }\n\t};\n\n\tpp$3.parseCallExpressionArguments = function (close, possibleAsyncArrow) {\n\t  var elts = [];\n\t  var innerParenStart = void 0;\n\t  var first = true;\n\n\t  while (!this.eat(close)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      this.expect(types.comma);\n\t      if (this.eat(close)) break;\n\t    }\n\n\t    // we need to make sure that if this is an async arrow functions, that we don't allow inner parens inside the params\n\t    if (this.match(types.parenL) && !innerParenStart) {\n\t      innerParenStart = this.state.start;\n\t    }\n\n\t    elts.push(this.parseExprListItem(false, possibleAsyncArrow ? { start: 0 } : undefined, possibleAsyncArrow ? { start: 0 } : undefined));\n\t  }\n\n\t  // we found an async arrow function so let's not allow any inner parens\n\t  if (possibleAsyncArrow && innerParenStart && this.shouldParseAsyncArrow()) {\n\t    this.unexpected();\n\t  }\n\n\t  return elts;\n\t};\n\n\tpp$3.shouldParseAsyncArrow = function () {\n\t  return this.match(types.arrow);\n\t};\n\n\tpp$3.parseAsyncArrowFromCallExpression = function (node, call) {\n\t  this.expect(types.arrow);\n\t  return this.parseArrowExpression(node, call.arguments, true);\n\t};\n\n\t// Parse a no-call expression (like argument of `new` or `::` operators).\n\n\tpp$3.parseNoCallExpr = function () {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  return this.parseSubscripts(this.parseExprAtom(), startPos, startLoc, true);\n\t};\n\n\t// Parse an atomic expression — either a single token that is an\n\t// expression, an expression started by a keyword like `function` or\n\t// `new`, or an expression wrapped in punctuation like `()`, `[]`,\n\t// or `{}`.\n\n\tpp$3.parseExprAtom = function (refShorthandDefaultPos) {\n\t  var canBeArrow = this.state.potentialArrowAt === this.state.start;\n\t  var node = void 0;\n\n\t  switch (this.state.type) {\n\t    case types._super:\n\t      if (!this.state.inMethod && !this.state.inClassProperty && !this.options.allowSuperOutsideMethod) {\n\t        this.raise(this.state.start, \"'super' outside of function or class\");\n\t      }\n\n\t      node = this.startNode();\n\t      this.next();\n\t      if (!this.match(types.parenL) && !this.match(types.bracketL) && !this.match(types.dot)) {\n\t        this.unexpected();\n\t      }\n\t      if (this.match(types.parenL) && this.state.inMethod !== \"constructor\" && !this.options.allowSuperOutsideMethod) {\n\t        this.raise(node.start, \"super() outside of class constructor\");\n\t      }\n\t      return this.finishNode(node, \"Super\");\n\n\t    case types._import:\n\t      if (!this.hasPlugin(\"dynamicImport\")) this.unexpected();\n\n\t      node = this.startNode();\n\t      this.next();\n\t      if (!this.match(types.parenL)) {\n\t        this.unexpected(null, types.parenL);\n\t      }\n\t      return this.finishNode(node, \"Import\");\n\n\t    case types._this:\n\t      node = this.startNode();\n\t      this.next();\n\t      return this.finishNode(node, \"ThisExpression\");\n\n\t    case types._yield:\n\t      if (this.state.inGenerator) this.unexpected();\n\n\t    case types.name:\n\t      node = this.startNode();\n\t      var allowAwait = this.state.value === \"await\" && this.state.inAsync;\n\t      var allowYield = this.shouldAllowYieldIdentifier();\n\t      var id = this.parseIdentifier(allowAwait || allowYield);\n\n\t      if (id.name === \"await\") {\n\t        if (this.state.inAsync || this.inModule) {\n\t          return this.parseAwait(node);\n\t        }\n\t      } else if (id.name === \"async\" && this.match(types._function) && !this.canInsertSemicolon()) {\n\t        this.next();\n\t        return this.parseFunction(node, false, false, true);\n\t      } else if (canBeArrow && id.name === \"async\" && this.match(types.name)) {\n\t        var params = [this.parseIdentifier()];\n\t        this.expect(types.arrow);\n\t        // let foo = bar => {};\n\t        return this.parseArrowExpression(node, params, true);\n\t      }\n\n\t      if (canBeArrow && !this.canInsertSemicolon() && this.eat(types.arrow)) {\n\t        return this.parseArrowExpression(node, [id]);\n\t      }\n\n\t      return id;\n\n\t    case types._do:\n\t      if (this.hasPlugin(\"doExpressions\")) {\n\t        var _node6 = this.startNode();\n\t        this.next();\n\t        var oldInFunction = this.state.inFunction;\n\t        var oldLabels = this.state.labels;\n\t        this.state.labels = [];\n\t        this.state.inFunction = false;\n\t        _node6.body = this.parseBlock(false, true);\n\t        this.state.inFunction = oldInFunction;\n\t        this.state.labels = oldLabels;\n\t        return this.finishNode(_node6, \"DoExpression\");\n\t      }\n\n\t    case types.regexp:\n\t      var value = this.state.value;\n\t      node = this.parseLiteral(value.value, \"RegExpLiteral\");\n\t      node.pattern = value.pattern;\n\t      node.flags = value.flags;\n\t      return node;\n\n\t    case types.num:\n\t      return this.parseLiteral(this.state.value, \"NumericLiteral\");\n\n\t    case types.string:\n\t      return this.parseLiteral(this.state.value, \"StringLiteral\");\n\n\t    case types._null:\n\t      node = this.startNode();\n\t      this.next();\n\t      return this.finishNode(node, \"NullLiteral\");\n\n\t    case types._true:case types._false:\n\t      node = this.startNode();\n\t      node.value = this.match(types._true);\n\t      this.next();\n\t      return this.finishNode(node, \"BooleanLiteral\");\n\n\t    case types.parenL:\n\t      return this.parseParenAndDistinguishExpression(null, null, canBeArrow);\n\n\t    case types.bracketL:\n\t      node = this.startNode();\n\t      this.next();\n\t      node.elements = this.parseExprList(types.bracketR, true, refShorthandDefaultPos);\n\t      this.toReferencedList(node.elements);\n\t      return this.finishNode(node, \"ArrayExpression\");\n\n\t    case types.braceL:\n\t      return this.parseObj(false, refShorthandDefaultPos);\n\n\t    case types._function:\n\t      return this.parseFunctionExpression();\n\n\t    case types.at:\n\t      this.parseDecorators();\n\n\t    case types._class:\n\t      node = this.startNode();\n\t      this.takeDecorators(node);\n\t      return this.parseClass(node, false);\n\n\t    case types._new:\n\t      return this.parseNew();\n\n\t    case types.backQuote:\n\t      return this.parseTemplate(false);\n\n\t    case types.doubleColon:\n\t      node = this.startNode();\n\t      this.next();\n\t      node.object = null;\n\t      var callee = node.callee = this.parseNoCallExpr();\n\t      if (callee.type === \"MemberExpression\") {\n\t        return this.finishNode(node, \"BindExpression\");\n\t      } else {\n\t        this.raise(callee.start, \"Binding should be performed on object property.\");\n\t      }\n\n\t    default:\n\t      this.unexpected();\n\t  }\n\t};\n\n\tpp$3.parseFunctionExpression = function () {\n\t  var node = this.startNode();\n\t  var meta = this.parseIdentifier(true);\n\t  if (this.state.inGenerator && this.eat(types.dot) && this.hasPlugin(\"functionSent\")) {\n\t    return this.parseMetaProperty(node, meta, \"sent\");\n\t  } else {\n\t    return this.parseFunction(node, false);\n\t  }\n\t};\n\n\tpp$3.parseMetaProperty = function (node, meta, propertyName) {\n\t  node.meta = meta;\n\t  node.property = this.parseIdentifier(true);\n\n\t  if (node.property.name !== propertyName) {\n\t    this.raise(node.property.start, \"The only valid meta property for new is \" + meta.name + \".\" + propertyName);\n\t  }\n\n\t  return this.finishNode(node, \"MetaProperty\");\n\t};\n\n\tpp$3.parseLiteral = function (value, type, startPos, startLoc) {\n\t  startPos = startPos || this.state.start;\n\t  startLoc = startLoc || this.state.startLoc;\n\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  this.addExtra(node, \"rawValue\", value);\n\t  this.addExtra(node, \"raw\", this.input.slice(startPos, this.state.end));\n\t  node.value = value;\n\t  this.next();\n\t  return this.finishNode(node, type);\n\t};\n\n\tpp$3.parseParenExpression = function () {\n\t  this.expect(types.parenL);\n\t  var val = this.parseExpression();\n\t  this.expect(types.parenR);\n\t  return val;\n\t};\n\n\tpp$3.parseParenAndDistinguishExpression = function (startPos, startLoc, canBeArrow) {\n\t  startPos = startPos || this.state.start;\n\t  startLoc = startLoc || this.state.startLoc;\n\n\t  var val = void 0;\n\t  this.expect(types.parenL);\n\n\t  var innerStartPos = this.state.start;\n\t  var innerStartLoc = this.state.startLoc;\n\t  var exprList = [];\n\t  var refShorthandDefaultPos = { start: 0 };\n\t  var refNeedsArrowPos = { start: 0 };\n\t  var first = true;\n\t  var spreadStart = void 0;\n\t  var optionalCommaStart = void 0;\n\n\t  while (!this.match(types.parenR)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      this.expect(types.comma, refNeedsArrowPos.start || null);\n\t      if (this.match(types.parenR)) {\n\t        optionalCommaStart = this.state.start;\n\t        break;\n\t      }\n\t    }\n\n\t    if (this.match(types.ellipsis)) {\n\t      var spreadNodeStartPos = this.state.start;\n\t      var spreadNodeStartLoc = this.state.startLoc;\n\t      spreadStart = this.state.start;\n\t      exprList.push(this.parseParenItem(this.parseRest(), spreadNodeStartPos, spreadNodeStartLoc));\n\t      break;\n\t    } else {\n\t      exprList.push(this.parseMaybeAssign(false, refShorthandDefaultPos, this.parseParenItem, refNeedsArrowPos));\n\t    }\n\t  }\n\n\t  var innerEndPos = this.state.start;\n\t  var innerEndLoc = this.state.startLoc;\n\t  this.expect(types.parenR);\n\n\t  var arrowNode = this.startNodeAt(startPos, startLoc);\n\t  if (canBeArrow && this.shouldParseArrow() && (arrowNode = this.parseArrow(arrowNode))) {\n\t    for (var _iterator = exprList, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var param = _ref;\n\n\t      if (param.extra && param.extra.parenthesized) this.unexpected(param.extra.parenStart);\n\t    }\n\n\t    return this.parseArrowExpression(arrowNode, exprList);\n\t  }\n\n\t  if (!exprList.length) {\n\t    this.unexpected(this.state.lastTokStart);\n\t  }\n\t  if (optionalCommaStart) this.unexpected(optionalCommaStart);\n\t  if (spreadStart) this.unexpected(spreadStart);\n\t  if (refShorthandDefaultPos.start) this.unexpected(refShorthandDefaultPos.start);\n\t  if (refNeedsArrowPos.start) this.unexpected(refNeedsArrowPos.start);\n\n\t  if (exprList.length > 1) {\n\t    val = this.startNodeAt(innerStartPos, innerStartLoc);\n\t    val.expressions = exprList;\n\t    this.toReferencedList(val.expressions);\n\t    this.finishNodeAt(val, \"SequenceExpression\", innerEndPos, innerEndLoc);\n\t  } else {\n\t    val = exprList[0];\n\t  }\n\n\t  this.addExtra(val, \"parenthesized\", true);\n\t  this.addExtra(val, \"parenStart\", startPos);\n\n\t  return val;\n\t};\n\n\tpp$3.shouldParseArrow = function () {\n\t  return !this.canInsertSemicolon();\n\t};\n\n\tpp$3.parseArrow = function (node) {\n\t  if (this.eat(types.arrow)) {\n\t    return node;\n\t  }\n\t};\n\n\tpp$3.parseParenItem = function (node) {\n\t  return node;\n\t};\n\n\t// New's precedence is slightly tricky. It must allow its argument\n\t// to be a `[]` or dot subscript expression, but not a call — at\n\t// least, not without wrapping it in parentheses. Thus, it uses the\n\n\tpp$3.parseNew = function () {\n\t  var node = this.startNode();\n\t  var meta = this.parseIdentifier(true);\n\n\t  if (this.eat(types.dot)) {\n\t    var metaProp = this.parseMetaProperty(node, meta, \"target\");\n\n\t    if (!this.state.inFunction) {\n\t      this.raise(metaProp.property.start, \"new.target can only be used in functions\");\n\t    }\n\n\t    return metaProp;\n\t  }\n\n\t  node.callee = this.parseNoCallExpr();\n\n\t  if (this.eat(types.parenL)) {\n\t    node.arguments = this.parseExprList(types.parenR);\n\t    this.toReferencedList(node.arguments);\n\t  } else {\n\t    node.arguments = [];\n\t  }\n\n\t  return this.finishNode(node, \"NewExpression\");\n\t};\n\n\t// Parse template expression.\n\n\tpp$3.parseTemplateElement = function (isTagged) {\n\t  var elem = this.startNode();\n\t  if (this.state.value === null) {\n\t    if (!isTagged || !this.hasPlugin(\"templateInvalidEscapes\")) {\n\t      this.raise(this.state.invalidTemplateEscapePosition, \"Invalid escape sequence in template\");\n\t    } else {\n\t      this.state.invalidTemplateEscapePosition = null;\n\t    }\n\t  }\n\t  elem.value = {\n\t    raw: this.input.slice(this.state.start, this.state.end).replace(/\\r\\n?/g, \"\\n\"),\n\t    cooked: this.state.value\n\t  };\n\t  this.next();\n\t  elem.tail = this.match(types.backQuote);\n\t  return this.finishNode(elem, \"TemplateElement\");\n\t};\n\n\tpp$3.parseTemplate = function (isTagged) {\n\t  var node = this.startNode();\n\t  this.next();\n\t  node.expressions = [];\n\t  var curElt = this.parseTemplateElement(isTagged);\n\t  node.quasis = [curElt];\n\t  while (!curElt.tail) {\n\t    this.expect(types.dollarBraceL);\n\t    node.expressions.push(this.parseExpression());\n\t    this.expect(types.braceR);\n\t    node.quasis.push(curElt = this.parseTemplateElement(isTagged));\n\t  }\n\t  this.next();\n\t  return this.finishNode(node, \"TemplateLiteral\");\n\t};\n\n\t// Parse an object literal or binding pattern.\n\n\tpp$3.parseObj = function (isPattern, refShorthandDefaultPos) {\n\t  var decorators = [];\n\t  var propHash = Object.create(null);\n\t  var first = true;\n\t  var node = this.startNode();\n\n\t  node.properties = [];\n\t  this.next();\n\n\t  var firstRestLocation = null;\n\n\t  while (!this.eat(types.braceR)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      this.expect(types.comma);\n\t      if (this.eat(types.braceR)) break;\n\t    }\n\n\t    while (this.match(types.at)) {\n\t      decorators.push(this.parseDecorator());\n\t    }\n\n\t    var prop = this.startNode(),\n\t        isGenerator = false,\n\t        isAsync = false,\n\t        startPos = void 0,\n\t        startLoc = void 0;\n\t    if (decorators.length) {\n\t      prop.decorators = decorators;\n\t      decorators = [];\n\t    }\n\n\t    if (this.hasPlugin(\"objectRestSpread\") && this.match(types.ellipsis)) {\n\t      prop = this.parseSpread(isPattern ? { start: 0 } : undefined);\n\t      prop.type = isPattern ? \"RestProperty\" : \"SpreadProperty\";\n\t      if (isPattern) this.toAssignable(prop.argument, true, \"object pattern\");\n\t      node.properties.push(prop);\n\t      if (isPattern) {\n\t        var position = this.state.start;\n\t        if (firstRestLocation !== null) {\n\t          this.unexpected(firstRestLocation, \"Cannot have multiple rest elements when destructuring\");\n\t        } else if (this.eat(types.braceR)) {\n\t          break;\n\t        } else if (this.match(types.comma) && this.lookahead().type === types.braceR) {\n\t          // TODO: temporary rollback\n\t          // this.unexpected(position, \"A trailing comma is not permitted after the rest element\");\n\t          continue;\n\t        } else {\n\t          firstRestLocation = position;\n\t          continue;\n\t        }\n\t      } else {\n\t        continue;\n\t      }\n\t    }\n\n\t    prop.method = false;\n\t    prop.shorthand = false;\n\n\t    if (isPattern || refShorthandDefaultPos) {\n\t      startPos = this.state.start;\n\t      startLoc = this.state.startLoc;\n\t    }\n\n\t    if (!isPattern) {\n\t      isGenerator = this.eat(types.star);\n\t    }\n\n\t    if (!isPattern && this.isContextual(\"async\")) {\n\t      if (isGenerator) this.unexpected();\n\n\t      var asyncId = this.parseIdentifier();\n\t      if (this.match(types.colon) || this.match(types.parenL) || this.match(types.braceR) || this.match(types.eq) || this.match(types.comma)) {\n\t        prop.key = asyncId;\n\t        prop.computed = false;\n\t      } else {\n\t        isAsync = true;\n\t        if (this.hasPlugin(\"asyncGenerators\")) isGenerator = this.eat(types.star);\n\t        this.parsePropertyName(prop);\n\t      }\n\t    } else {\n\t      this.parsePropertyName(prop);\n\t    }\n\n\t    this.parseObjPropValue(prop, startPos, startLoc, isGenerator, isAsync, isPattern, refShorthandDefaultPos);\n\t    this.checkPropClash(prop, propHash);\n\n\t    if (prop.shorthand) {\n\t      this.addExtra(prop, \"shorthand\", true);\n\t    }\n\n\t    node.properties.push(prop);\n\t  }\n\n\t  if (firstRestLocation !== null) {\n\t    this.unexpected(firstRestLocation, \"The rest element has to be the last element when destructuring\");\n\t  }\n\n\t  if (decorators.length) {\n\t    this.raise(this.state.start, \"You have trailing decorators with no property\");\n\t  }\n\n\t  return this.finishNode(node, isPattern ? \"ObjectPattern\" : \"ObjectExpression\");\n\t};\n\n\tpp$3.isGetterOrSetterMethod = function (prop, isPattern) {\n\t  return !isPattern && !prop.computed && prop.key.type === \"Identifier\" && (prop.key.name === \"get\" || prop.key.name === \"set\") && (this.match(types.string) || // get \"string\"() {}\n\t  this.match(types.num) || // get 1() {}\n\t  this.match(types.bracketL) || // get [\"string\"]() {}\n\t  this.match(types.name) || // get foo() {}\n\t  this.state.type.keyword // get debugger() {}\n\t  );\n\t};\n\n\t// get methods aren't allowed to have any parameters\n\t// set methods must have exactly 1 parameter\n\tpp$3.checkGetterSetterParamCount = function (method) {\n\t  var paramCount = method.kind === \"get\" ? 0 : 1;\n\t  if (method.params.length !== paramCount) {\n\t    var start = method.start;\n\t    if (method.kind === \"get\") {\n\t      this.raise(start, \"getter should have no params\");\n\t    } else {\n\t      this.raise(start, \"setter should have exactly one param\");\n\t    }\n\t  }\n\t};\n\n\tpp$3.parseObjectMethod = function (prop, isGenerator, isAsync, isPattern) {\n\t  if (isAsync || isGenerator || this.match(types.parenL)) {\n\t    if (isPattern) this.unexpected();\n\t    prop.kind = \"method\";\n\t    prop.method = true;\n\t    this.parseMethod(prop, isGenerator, isAsync);\n\n\t    return this.finishNode(prop, \"ObjectMethod\");\n\t  }\n\n\t  if (this.isGetterOrSetterMethod(prop, isPattern)) {\n\t    if (isGenerator || isAsync) this.unexpected();\n\t    prop.kind = prop.key.name;\n\t    this.parsePropertyName(prop);\n\t    this.parseMethod(prop);\n\t    this.checkGetterSetterParamCount(prop);\n\n\t    return this.finishNode(prop, \"ObjectMethod\");\n\t  }\n\t};\n\n\tpp$3.parseObjectProperty = function (prop, startPos, startLoc, isPattern, refShorthandDefaultPos) {\n\t  if (this.eat(types.colon)) {\n\t    prop.value = isPattern ? this.parseMaybeDefault(this.state.start, this.state.startLoc) : this.parseMaybeAssign(false, refShorthandDefaultPos);\n\n\t    return this.finishNode(prop, \"ObjectProperty\");\n\t  }\n\n\t  if (!prop.computed && prop.key.type === \"Identifier\") {\n\t    this.checkReservedWord(prop.key.name, prop.key.start, true, true);\n\n\t    if (isPattern) {\n\t      prop.value = this.parseMaybeDefault(startPos, startLoc, prop.key.__clone());\n\t    } else if (this.match(types.eq) && refShorthandDefaultPos) {\n\t      if (!refShorthandDefaultPos.start) {\n\t        refShorthandDefaultPos.start = this.state.start;\n\t      }\n\t      prop.value = this.parseMaybeDefault(startPos, startLoc, prop.key.__clone());\n\t    } else {\n\t      prop.value = prop.key.__clone();\n\t    }\n\t    prop.shorthand = true;\n\n\t    return this.finishNode(prop, \"ObjectProperty\");\n\t  }\n\t};\n\n\tpp$3.parseObjPropValue = function (prop, startPos, startLoc, isGenerator, isAsync, isPattern, refShorthandDefaultPos) {\n\t  var node = this.parseObjectMethod(prop, isGenerator, isAsync, isPattern) || this.parseObjectProperty(prop, startPos, startLoc, isPattern, refShorthandDefaultPos);\n\n\t  if (!node) this.unexpected();\n\n\t  return node;\n\t};\n\n\tpp$3.parsePropertyName = function (prop) {\n\t  if (this.eat(types.bracketL)) {\n\t    prop.computed = true;\n\t    prop.key = this.parseMaybeAssign();\n\t    this.expect(types.bracketR);\n\t  } else {\n\t    prop.computed = false;\n\t    var oldInPropertyName = this.state.inPropertyName;\n\t    this.state.inPropertyName = true;\n\t    prop.key = this.match(types.num) || this.match(types.string) ? this.parseExprAtom() : this.parseIdentifier(true);\n\t    this.state.inPropertyName = oldInPropertyName;\n\t  }\n\t  return prop.key;\n\t};\n\n\t// Initialize empty function node.\n\n\tpp$3.initFunction = function (node, isAsync) {\n\t  node.id = null;\n\t  node.generator = false;\n\t  node.expression = false;\n\t  node.async = !!isAsync;\n\t};\n\n\t// Parse object or class method.\n\n\tpp$3.parseMethod = function (node, isGenerator, isAsync) {\n\t  var oldInMethod = this.state.inMethod;\n\t  this.state.inMethod = node.kind || true;\n\t  this.initFunction(node, isAsync);\n\t  this.expect(types.parenL);\n\t  node.params = this.parseBindingList(types.parenR);\n\t  node.generator = !!isGenerator;\n\t  this.parseFunctionBody(node);\n\t  this.state.inMethod = oldInMethod;\n\t  return node;\n\t};\n\n\t// Parse arrow function expression with given parameters.\n\n\tpp$3.parseArrowExpression = function (node, params, isAsync) {\n\t  this.initFunction(node, isAsync);\n\t  node.params = this.toAssignableList(params, true, \"arrow function parameters\");\n\t  this.parseFunctionBody(node, true);\n\t  return this.finishNode(node, \"ArrowFunctionExpression\");\n\t};\n\n\tpp$3.isStrictBody = function (node, isExpression) {\n\t  if (!isExpression && node.body.directives.length) {\n\t    for (var _iterator2 = node.body.directives, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var directive = _ref2;\n\n\t      if (directive.value.value === \"use strict\") {\n\t        return true;\n\t      }\n\t    }\n\t  }\n\n\t  return false;\n\t};\n\n\t// Parse function body and check parameters.\n\tpp$3.parseFunctionBody = function (node, allowExpression) {\n\t  var isExpression = allowExpression && !this.match(types.braceL);\n\n\t  var oldInAsync = this.state.inAsync;\n\t  this.state.inAsync = node.async;\n\t  if (isExpression) {\n\t    node.body = this.parseMaybeAssign();\n\t    node.expression = true;\n\t  } else {\n\t    // Start a new scope with regard to labels and the `inFunction`\n\t    // flag (restore them to their old value afterwards).\n\t    var oldInFunc = this.state.inFunction;\n\t    var oldInGen = this.state.inGenerator;\n\t    var oldLabels = this.state.labels;\n\t    this.state.inFunction = true;this.state.inGenerator = node.generator;this.state.labels = [];\n\t    node.body = this.parseBlock(true);\n\t    node.expression = false;\n\t    this.state.inFunction = oldInFunc;this.state.inGenerator = oldInGen;this.state.labels = oldLabels;\n\t  }\n\t  this.state.inAsync = oldInAsync;\n\n\t  // If this is a strict mode function, verify that argument names\n\t  // are not repeated, and it does not try to bind the words `eval`\n\t  // or `arguments`.\n\t  var isStrict = this.isStrictBody(node, isExpression);\n\t  // Also check when allowExpression === true for arrow functions\n\t  var checkLVal = this.state.strict || allowExpression || isStrict;\n\n\t  if (isStrict && node.id && node.id.type === \"Identifier\" && node.id.name === \"yield\") {\n\t    this.raise(node.id.start, \"Binding yield in strict mode\");\n\t  }\n\n\t  if (checkLVal) {\n\t    var nameHash = Object.create(null);\n\t    var oldStrict = this.state.strict;\n\t    if (isStrict) this.state.strict = true;\n\t    if (node.id) {\n\t      this.checkLVal(node.id, true, undefined, \"function name\");\n\t    }\n\t    for (var _iterator3 = node.params, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : _iterator3[Symbol.iterator]();;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var param = _ref3;\n\n\t      if (isStrict && param.type !== \"Identifier\") {\n\t        this.raise(param.start, \"Non-simple parameter in strict mode\");\n\t      }\n\t      this.checkLVal(param, true, nameHash, \"function parameter list\");\n\t    }\n\t    this.state.strict = oldStrict;\n\t  }\n\t};\n\n\t// Parses a comma-separated list of expressions, and returns them as\n\t// an array. `close` is the token type that ends the list, and\n\t// `allowEmpty` can be turned on to allow subsequent commas with\n\t// nothing in between them to be parsed as `null` (which is needed\n\t// for array literals).\n\n\tpp$3.parseExprList = function (close, allowEmpty, refShorthandDefaultPos) {\n\t  var elts = [];\n\t  var first = true;\n\n\t  while (!this.eat(close)) {\n\t    if (first) {\n\t      first = false;\n\t    } else {\n\t      this.expect(types.comma);\n\t      if (this.eat(close)) break;\n\t    }\n\n\t    elts.push(this.parseExprListItem(allowEmpty, refShorthandDefaultPos));\n\t  }\n\t  return elts;\n\t};\n\n\tpp$3.parseExprListItem = function (allowEmpty, refShorthandDefaultPos, refNeedsArrowPos) {\n\t  var elt = void 0;\n\t  if (allowEmpty && this.match(types.comma)) {\n\t    elt = null;\n\t  } else if (this.match(types.ellipsis)) {\n\t    elt = this.parseSpread(refShorthandDefaultPos);\n\t  } else {\n\t    elt = this.parseMaybeAssign(false, refShorthandDefaultPos, this.parseParenItem, refNeedsArrowPos);\n\t  }\n\t  return elt;\n\t};\n\n\t// Parse the next token as an identifier. If `liberal` is true (used\n\t// when parsing properties), it will also convert keywords into\n\t// identifiers.\n\n\tpp$3.parseIdentifier = function (liberal) {\n\t  var node = this.startNode();\n\t  if (!liberal) {\n\t    this.checkReservedWord(this.state.value, this.state.start, !!this.state.type.keyword, false);\n\t  }\n\n\t  if (this.match(types.name)) {\n\t    node.name = this.state.value;\n\t  } else if (this.state.type.keyword) {\n\t    node.name = this.state.type.keyword;\n\t  } else {\n\t    this.unexpected();\n\t  }\n\n\t  if (!liberal && node.name === \"await\" && this.state.inAsync) {\n\t    this.raise(node.start, \"invalid use of await inside of an async function\");\n\t  }\n\n\t  node.loc.identifierName = node.name;\n\n\t  this.next();\n\t  return this.finishNode(node, \"Identifier\");\n\t};\n\n\tpp$3.checkReservedWord = function (word, startLoc, checkKeywords, isBinding) {\n\t  if (this.isReservedWord(word) || checkKeywords && this.isKeyword(word)) {\n\t    this.raise(startLoc, word + \" is a reserved word\");\n\t  }\n\n\t  if (this.state.strict && (reservedWords.strict(word) || isBinding && reservedWords.strictBind(word))) {\n\t    this.raise(startLoc, word + \" is a reserved word in strict mode\");\n\t  }\n\t};\n\n\t// Parses await expression inside async function.\n\n\tpp$3.parseAwait = function (node) {\n\t  // istanbul ignore next: this condition is checked at the call site so won't be hit here\n\t  if (!this.state.inAsync) {\n\t    this.unexpected();\n\t  }\n\t  if (this.match(types.star)) {\n\t    this.raise(node.start, \"await* has been removed from the async functions proposal. Use Promise.all() instead.\");\n\t  }\n\t  node.argument = this.parseMaybeUnary();\n\t  return this.finishNode(node, \"AwaitExpression\");\n\t};\n\n\t// Parses yield expression inside generator.\n\n\tpp$3.parseYield = function () {\n\t  var node = this.startNode();\n\t  this.next();\n\t  if (this.match(types.semi) || this.canInsertSemicolon() || !this.match(types.star) && !this.state.type.startsExpr) {\n\t    node.delegate = false;\n\t    node.argument = null;\n\t  } else {\n\t    node.delegate = this.eat(types.star);\n\t    node.argument = this.parseMaybeAssign();\n\t  }\n\t  return this.finishNode(node, \"YieldExpression\");\n\t};\n\n\t// Start an AST node, attaching a start offset.\n\n\tvar pp$4 = Parser.prototype;\n\tvar commentKeys = [\"leadingComments\", \"trailingComments\", \"innerComments\"];\n\n\tvar Node = function () {\n\t  function Node(pos, loc, filename) {\n\t    classCallCheck(this, Node);\n\n\t    this.type = \"\";\n\t    this.start = pos;\n\t    this.end = 0;\n\t    this.loc = new SourceLocation(loc);\n\t    if (filename) this.loc.filename = filename;\n\t  }\n\n\t  Node.prototype.__clone = function __clone() {\n\t    var node2 = new Node();\n\t    for (var key in this) {\n\t      // Do not clone comments that are already attached to the node\n\t      if (commentKeys.indexOf(key) < 0) {\n\t        node2[key] = this[key];\n\t      }\n\t    }\n\n\t    return node2;\n\t  };\n\n\t  return Node;\n\t}();\n\n\tpp$4.startNode = function () {\n\t  return new Node(this.state.start, this.state.startLoc, this.filename);\n\t};\n\n\tpp$4.startNodeAt = function (pos, loc) {\n\t  return new Node(pos, loc, this.filename);\n\t};\n\n\tfunction finishNodeAt(node, type, pos, loc) {\n\t  node.type = type;\n\t  node.end = pos;\n\t  node.loc.end = loc;\n\t  this.processComment(node);\n\t  return node;\n\t}\n\n\t// Finish an AST node, adding `type` and `end` properties.\n\n\tpp$4.finishNode = function (node, type) {\n\t  return finishNodeAt.call(this, node, type, this.state.lastTokEnd, this.state.lastTokEndLoc);\n\t};\n\n\t// Finish node at given position\n\n\tpp$4.finishNodeAt = function (node, type, pos, loc) {\n\t  return finishNodeAt.call(this, node, type, pos, loc);\n\t};\n\n\tvar pp$5 = Parser.prototype;\n\n\t// This function is used to raise exceptions on parse errors. It\n\t// takes an offset integer (into the current `input`) to indicate\n\t// the location of the error, attaches the position to the end\n\t// of the error message, and then raises a `SyntaxError` with that\n\t// message.\n\n\tpp$5.raise = function (pos, message) {\n\t  var loc = getLineInfo(this.input, pos);\n\t  message += \" (\" + loc.line + \":\" + loc.column + \")\";\n\t  var err = new SyntaxError(message);\n\t  err.pos = pos;\n\t  err.loc = loc;\n\t  throw err;\n\t};\n\n\t/* eslint max-len: 0 */\n\n\t/**\n\t * Based on the comment attachment algorithm used in espree and estraverse.\n\t *\n\t * Redistribution and use in source and binary forms, with or without\n\t * modification, are permitted provided that the following conditions are met:\n\t *\n\t * * Redistributions of source code must retain the above copyright\n\t *   notice, this list of conditions and the following disclaimer.\n\t * * Redistributions in binary form must reproduce the above copyright\n\t *   notice, this list of conditions and the following disclaimer in the\n\t *   documentation and/or other materials provided with the distribution.\n\t *\n\t * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n\t * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\t * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\t * ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\n\t * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n\t * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n\t * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n\t * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n\t * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t */\n\n\tfunction last(stack) {\n\t  return stack[stack.length - 1];\n\t}\n\n\tvar pp$6 = Parser.prototype;\n\n\tpp$6.addComment = function (comment) {\n\t  if (this.filename) comment.loc.filename = this.filename;\n\t  this.state.trailingComments.push(comment);\n\t  this.state.leadingComments.push(comment);\n\t};\n\n\tpp$6.processComment = function (node) {\n\t  if (node.type === \"Program\" && node.body.length > 0) return;\n\n\t  var stack = this.state.commentStack;\n\n\t  var firstChild = void 0,\n\t      lastChild = void 0,\n\t      trailingComments = void 0,\n\t      i = void 0,\n\t      j = void 0;\n\n\t  if (this.state.trailingComments.length > 0) {\n\t    // If the first comment in trailingComments comes after the\n\t    // current node, then we're good - all comments in the array will\n\t    // come after the node and so it's safe to add them as official\n\t    // trailingComments.\n\t    if (this.state.trailingComments[0].start >= node.end) {\n\t      trailingComments = this.state.trailingComments;\n\t      this.state.trailingComments = [];\n\t    } else {\n\t      // Otherwise, if the first comment doesn't come after the\n\t      // current node, that means we have a mix of leading and trailing\n\t      // comments in the array and that leadingComments contains the\n\t      // same items as trailingComments. Reset trailingComments to\n\t      // zero items and we'll handle this by evaluating leadingComments\n\t      // later.\n\t      this.state.trailingComments.length = 0;\n\t    }\n\t  } else {\n\t    var lastInStack = last(stack);\n\t    if (stack.length > 0 && lastInStack.trailingComments && lastInStack.trailingComments[0].start >= node.end) {\n\t      trailingComments = lastInStack.trailingComments;\n\t      lastInStack.trailingComments = null;\n\t    }\n\t  }\n\n\t  // Eating the stack.\n\t  if (stack.length > 0 && last(stack).start >= node.start) {\n\t    firstChild = stack.pop();\n\t  }\n\n\t  while (stack.length > 0 && last(stack).start >= node.start) {\n\t    lastChild = stack.pop();\n\t  }\n\n\t  if (!lastChild && firstChild) lastChild = firstChild;\n\n\t  // Attach comments that follow a trailing comma on the last\n\t  // property in an object literal or a trailing comma in function arguments\n\t  // as trailing comments\n\t  if (firstChild && this.state.leadingComments.length > 0) {\n\t    var lastComment = last(this.state.leadingComments);\n\n\t    if (firstChild.type === \"ObjectProperty\") {\n\t      if (lastComment.start >= node.start) {\n\t        if (this.state.commentPreviousNode) {\n\t          for (j = 0; j < this.state.leadingComments.length; j++) {\n\t            if (this.state.leadingComments[j].end < this.state.commentPreviousNode.end) {\n\t              this.state.leadingComments.splice(j, 1);\n\t              j--;\n\t            }\n\t          }\n\n\t          if (this.state.leadingComments.length > 0) {\n\t            firstChild.trailingComments = this.state.leadingComments;\n\t            this.state.leadingComments = [];\n\t          }\n\t        }\n\t      }\n\t    } else if (node.type === \"CallExpression\" && node.arguments && node.arguments.length) {\n\t      var lastArg = last(node.arguments);\n\n\t      if (lastArg && lastComment.start >= lastArg.start && lastComment.end <= node.end) {\n\t        if (this.state.commentPreviousNode) {\n\t          if (this.state.leadingComments.length > 0) {\n\t            lastArg.trailingComments = this.state.leadingComments;\n\t            this.state.leadingComments = [];\n\t          }\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  if (lastChild) {\n\t    if (lastChild.leadingComments) {\n\t      if (lastChild !== node && last(lastChild.leadingComments).end <= node.start) {\n\t        node.leadingComments = lastChild.leadingComments;\n\t        lastChild.leadingComments = null;\n\t      } else {\n\t        // A leading comment for an anonymous class had been stolen by its first ClassMethod,\n\t        // so this takes back the leading comment.\n\t        // See also: https://github.com/eslint/espree/issues/158\n\t        for (i = lastChild.leadingComments.length - 2; i >= 0; --i) {\n\t          if (lastChild.leadingComments[i].end <= node.start) {\n\t            node.leadingComments = lastChild.leadingComments.splice(0, i + 1);\n\t            break;\n\t          }\n\t        }\n\t      }\n\t    }\n\t  } else if (this.state.leadingComments.length > 0) {\n\t    if (last(this.state.leadingComments).end <= node.start) {\n\t      if (this.state.commentPreviousNode) {\n\t        for (j = 0; j < this.state.leadingComments.length; j++) {\n\t          if (this.state.leadingComments[j].end < this.state.commentPreviousNode.end) {\n\t            this.state.leadingComments.splice(j, 1);\n\t            j--;\n\t          }\n\t        }\n\t      }\n\t      if (this.state.leadingComments.length > 0) {\n\t        node.leadingComments = this.state.leadingComments;\n\t        this.state.leadingComments = [];\n\t      }\n\t    } else {\n\t      // https://github.com/eslint/espree/issues/2\n\t      //\n\t      // In special cases, such as return (without a value) and\n\t      // debugger, all comments will end up as leadingComments and\n\t      // will otherwise be eliminated. This step runs when the\n\t      // commentStack is empty and there are comments left\n\t      // in leadingComments.\n\t      //\n\t      // This loop figures out the stopping point between the actual\n\t      // leading and trailing comments by finding the location of the\n\t      // first comment that comes after the given node.\n\t      for (i = 0; i < this.state.leadingComments.length; i++) {\n\t        if (this.state.leadingComments[i].end > node.start) {\n\t          break;\n\t        }\n\t      }\n\n\t      // Split the array based on the location of the first comment\n\t      // that comes after the node. Keep in mind that this could\n\t      // result in an empty array, and if so, the array must be\n\t      // deleted.\n\t      node.leadingComments = this.state.leadingComments.slice(0, i);\n\t      if (node.leadingComments.length === 0) {\n\t        node.leadingComments = null;\n\t      }\n\n\t      // Similarly, trailing comments are attached later. The variable\n\t      // must be reset to null if there are no trailing comments.\n\t      trailingComments = this.state.leadingComments.slice(i);\n\t      if (trailingComments.length === 0) {\n\t        trailingComments = null;\n\t      }\n\t    }\n\t  }\n\n\t  this.state.commentPreviousNode = node;\n\n\t  if (trailingComments) {\n\t    if (trailingComments.length && trailingComments[0].start >= node.start && last(trailingComments).end <= node.end) {\n\t      node.innerComments = trailingComments;\n\t    } else {\n\t      node.trailingComments = trailingComments;\n\t    }\n\t  }\n\n\t  stack.push(node);\n\t};\n\n\tvar pp$7 = Parser.prototype;\n\n\tpp$7.estreeParseRegExpLiteral = function (_ref) {\n\t  var pattern = _ref.pattern,\n\t      flags = _ref.flags;\n\n\t  var regex = null;\n\t  try {\n\t    regex = new RegExp(pattern, flags);\n\t  } catch (e) {\n\t    // In environments that don't support these flags value will\n\t    // be null as the regex can't be represented natively.\n\t  }\n\t  var node = this.estreeParseLiteral(regex);\n\t  node.regex = { pattern: pattern, flags: flags };\n\n\t  return node;\n\t};\n\n\tpp$7.estreeParseLiteral = function (value) {\n\t  return this.parseLiteral(value, \"Literal\");\n\t};\n\n\tpp$7.directiveToStmt = function (directive) {\n\t  var directiveLiteral = directive.value;\n\n\t  var stmt = this.startNodeAt(directive.start, directive.loc.start);\n\t  var expression = this.startNodeAt(directiveLiteral.start, directiveLiteral.loc.start);\n\n\t  expression.value = directiveLiteral.value;\n\t  expression.raw = directiveLiteral.extra.raw;\n\n\t  stmt.expression = this.finishNodeAt(expression, \"Literal\", directiveLiteral.end, directiveLiteral.loc.end);\n\t  stmt.directive = directiveLiteral.extra.raw.slice(1, -1);\n\n\t  return this.finishNodeAt(stmt, \"ExpressionStatement\", directive.end, directive.loc.end);\n\t};\n\n\tfunction isSimpleProperty(node) {\n\t  return node && node.type === \"Property\" && node.kind === \"init\" && node.method === false;\n\t}\n\n\tvar estreePlugin = function estreePlugin(instance) {\n\t  instance.extend(\"checkDeclaration\", function (inner) {\n\t    return function (node) {\n\t      if (isSimpleProperty(node)) {\n\t        this.checkDeclaration(node.value);\n\t      } else {\n\t        inner.call(this, node);\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"checkGetterSetterParamCount\", function () {\n\t    return function (prop) {\n\t      var paramCount = prop.kind === \"get\" ? 0 : 1;\n\t      if (prop.value.params.length !== paramCount) {\n\t        var start = prop.start;\n\t        if (prop.kind === \"get\") {\n\t          this.raise(start, \"getter should have no params\");\n\t        } else {\n\t          this.raise(start, \"setter should have exactly one param\");\n\t        }\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"checkLVal\", function (inner) {\n\t    return function (expr, isBinding, checkClashes) {\n\t      var _this = this;\n\n\t      switch (expr.type) {\n\t        case \"ObjectPattern\":\n\t          expr.properties.forEach(function (prop) {\n\t            _this.checkLVal(prop.type === \"Property\" ? prop.value : prop, isBinding, checkClashes, \"object destructuring pattern\");\n\t          });\n\t          break;\n\t        default:\n\t          for (var _len = arguments.length, args = Array(_len > 3 ? _len - 3 : 0), _key = 3; _key < _len; _key++) {\n\t            args[_key - 3] = arguments[_key];\n\t          }\n\n\t          inner.call.apply(inner, [this, expr, isBinding, checkClashes].concat(args));\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"checkPropClash\", function () {\n\t    return function (prop, propHash) {\n\t      if (prop.computed || !isSimpleProperty(prop)) return;\n\n\t      var key = prop.key;\n\t      // It is either an Identifier or a String/NumericLiteral\n\t      var name = key.type === \"Identifier\" ? key.name : String(key.value);\n\n\t      if (name === \"__proto__\") {\n\t        if (propHash.proto) this.raise(key.start, \"Redefinition of __proto__ property\");\n\t        propHash.proto = true;\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"isStrictBody\", function () {\n\t    return function (node, isExpression) {\n\t      if (!isExpression && node.body.body.length > 0) {\n\t        for (var _iterator = node.body.body, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {\n\t          var _ref2;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref2 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref2 = _i.value;\n\t          }\n\n\t          var directive = _ref2;\n\n\t          if (directive.type === \"ExpressionStatement\" && directive.expression.type === \"Literal\") {\n\t            if (directive.expression.value === \"use strict\") return true;\n\t          } else {\n\t            // Break for the first non literal expression\n\t            break;\n\t          }\n\t        }\n\t      }\n\n\t      return false;\n\t    };\n\t  });\n\n\t  instance.extend(\"isValidDirective\", function () {\n\t    return function (stmt) {\n\t      return stmt.type === \"ExpressionStatement\" && stmt.expression.type === \"Literal\" && typeof stmt.expression.value === \"string\" && (!stmt.expression.extra || !stmt.expression.extra.parenthesized);\n\t    };\n\t  });\n\n\t  instance.extend(\"stmtToDirective\", function (inner) {\n\t    return function (stmt) {\n\t      var directive = inner.call(this, stmt);\n\t      var value = stmt.expression.value;\n\n\t      // Reset value to the actual value as in estree mode we want\n\t      // the stmt to have the real value and not the raw value\n\t      directive.value.value = value;\n\n\t      return directive;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseBlockBody\", function (inner) {\n\t    return function (node) {\n\t      var _this2 = this;\n\n\t      for (var _len2 = arguments.length, args = Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n\t        args[_key2 - 1] = arguments[_key2];\n\t      }\n\n\t      inner.call.apply(inner, [this, node].concat(args));\n\n\t      node.directives.reverse().forEach(function (directive) {\n\t        node.body.unshift(_this2.directiveToStmt(directive));\n\t      });\n\t      delete node.directives;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseClassMethod\", function () {\n\t    return function (classBody, method, isGenerator, isAsync) {\n\t      this.parseMethod(method, isGenerator, isAsync);\n\t      if (method.typeParameters) {\n\t        method.value.typeParameters = method.typeParameters;\n\t        delete method.typeParameters;\n\t      }\n\t      classBody.body.push(this.finishNode(method, \"MethodDefinition\"));\n\t    };\n\t  });\n\n\t  instance.extend(\"parseExprAtom\", function (inner) {\n\t    return function () {\n\t      switch (this.state.type) {\n\t        case types.regexp:\n\t          return this.estreeParseRegExpLiteral(this.state.value);\n\n\t        case types.num:\n\t        case types.string:\n\t          return this.estreeParseLiteral(this.state.value);\n\n\t        case types._null:\n\t          return this.estreeParseLiteral(null);\n\n\t        case types._true:\n\t          return this.estreeParseLiteral(true);\n\n\t        case types._false:\n\t          return this.estreeParseLiteral(false);\n\n\t        default:\n\t          for (var _len3 = arguments.length, args = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {\n\t            args[_key3] = arguments[_key3];\n\t          }\n\n\t          return inner.call.apply(inner, [this].concat(args));\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"parseLiteral\", function (inner) {\n\t    return function () {\n\t      for (var _len4 = arguments.length, args = Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {\n\t        args[_key4] = arguments[_key4];\n\t      }\n\n\t      var node = inner.call.apply(inner, [this].concat(args));\n\t      node.raw = node.extra.raw;\n\t      delete node.extra;\n\n\t      return node;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseMethod\", function (inner) {\n\t    return function (node) {\n\t      var funcNode = this.startNode();\n\t      funcNode.kind = node.kind; // provide kind, so inner method correctly sets state\n\n\t      for (var _len5 = arguments.length, args = Array(_len5 > 1 ? _len5 - 1 : 0), _key5 = 1; _key5 < _len5; _key5++) {\n\t        args[_key5 - 1] = arguments[_key5];\n\t      }\n\n\t      funcNode = inner.call.apply(inner, [this, funcNode].concat(args));\n\t      delete funcNode.kind;\n\t      node.value = this.finishNode(funcNode, \"FunctionExpression\");\n\n\t      return node;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseObjectMethod\", function (inner) {\n\t    return function () {\n\t      for (var _len6 = arguments.length, args = Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {\n\t        args[_key6] = arguments[_key6];\n\t      }\n\n\t      var node = inner.call.apply(inner, [this].concat(args));\n\n\t      if (node) {\n\t        if (node.kind === \"method\") node.kind = \"init\";\n\t        node.type = \"Property\";\n\t      }\n\n\t      return node;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseObjectProperty\", function (inner) {\n\t    return function () {\n\t      for (var _len7 = arguments.length, args = Array(_len7), _key7 = 0; _key7 < _len7; _key7++) {\n\t        args[_key7] = arguments[_key7];\n\t      }\n\n\t      var node = inner.call.apply(inner, [this].concat(args));\n\n\t      if (node) {\n\t        node.kind = \"init\";\n\t        node.type = \"Property\";\n\t      }\n\n\t      return node;\n\t    };\n\t  });\n\n\t  instance.extend(\"toAssignable\", function (inner) {\n\t    return function (node, isBinding) {\n\t      for (var _len8 = arguments.length, args = Array(_len8 > 2 ? _len8 - 2 : 0), _key8 = 2; _key8 < _len8; _key8++) {\n\t        args[_key8 - 2] = arguments[_key8];\n\t      }\n\n\t      if (isSimpleProperty(node)) {\n\t        this.toAssignable.apply(this, [node.value, isBinding].concat(args));\n\n\t        return node;\n\t      } else if (node.type === \"ObjectExpression\") {\n\t        node.type = \"ObjectPattern\";\n\t        for (var _iterator2 = node.properties, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : _iterator2[Symbol.iterator]();;) {\n\t          var _ref3;\n\n\t          if (_isArray2) {\n\t            if (_i2 >= _iterator2.length) break;\n\t            _ref3 = _iterator2[_i2++];\n\t          } else {\n\t            _i2 = _iterator2.next();\n\t            if (_i2.done) break;\n\t            _ref3 = _i2.value;\n\t          }\n\n\t          var prop = _ref3;\n\n\t          if (prop.kind === \"get\" || prop.kind === \"set\") {\n\t            this.raise(prop.key.start, \"Object pattern can't contain getter or setter\");\n\t          } else if (prop.method) {\n\t            this.raise(prop.key.start, \"Object pattern can't contain methods\");\n\t          } else {\n\t            this.toAssignable(prop, isBinding, \"object destructuring pattern\");\n\t          }\n\t        }\n\n\t        return node;\n\t      }\n\n\t      return inner.call.apply(inner, [this, node, isBinding].concat(args));\n\t    };\n\t  });\n\t};\n\n\t/* eslint max-len: 0 */\n\n\tvar primitiveTypes = [\"any\", \"mixed\", \"empty\", \"bool\", \"boolean\", \"number\", \"string\", \"void\", \"null\"];\n\n\tvar pp$8 = Parser.prototype;\n\n\tpp$8.flowParseTypeInitialiser = function (tok) {\n\t  var oldInType = this.state.inType;\n\t  this.state.inType = true;\n\t  this.expect(tok || types.colon);\n\n\t  var type = this.flowParseType();\n\t  this.state.inType = oldInType;\n\t  return type;\n\t};\n\n\tpp$8.flowParsePredicate = function () {\n\t  var node = this.startNode();\n\t  var moduloLoc = this.state.startLoc;\n\t  var moduloPos = this.state.start;\n\t  this.expect(types.modulo);\n\t  var checksLoc = this.state.startLoc;\n\t  this.expectContextual(\"checks\");\n\t  // Force '%' and 'checks' to be adjacent\n\t  if (moduloLoc.line !== checksLoc.line || moduloLoc.column !== checksLoc.column - 1) {\n\t    this.raise(moduloPos, \"Spaces between ´%´ and ´checks´ are not allowed here.\");\n\t  }\n\t  if (this.eat(types.parenL)) {\n\t    node.expression = this.parseExpression();\n\t    this.expect(types.parenR);\n\t    return this.finishNode(node, \"DeclaredPredicate\");\n\t  } else {\n\t    return this.finishNode(node, \"InferredPredicate\");\n\t  }\n\t};\n\n\tpp$8.flowParseTypeAndPredicateInitialiser = function () {\n\t  var oldInType = this.state.inType;\n\t  this.state.inType = true;\n\t  this.expect(types.colon);\n\t  var type = null;\n\t  var predicate = null;\n\t  if (this.match(types.modulo)) {\n\t    this.state.inType = oldInType;\n\t    predicate = this.flowParsePredicate();\n\t  } else {\n\t    type = this.flowParseType();\n\t    this.state.inType = oldInType;\n\t    if (this.match(types.modulo)) {\n\t      predicate = this.flowParsePredicate();\n\t    }\n\t  }\n\t  return [type, predicate];\n\t};\n\n\tpp$8.flowParseDeclareClass = function (node) {\n\t  this.next();\n\t  this.flowParseInterfaceish(node, true);\n\t  return this.finishNode(node, \"DeclareClass\");\n\t};\n\n\tpp$8.flowParseDeclareFunction = function (node) {\n\t  this.next();\n\n\t  var id = node.id = this.parseIdentifier();\n\n\t  var typeNode = this.startNode();\n\t  var typeContainer = this.startNode();\n\n\t  if (this.isRelational(\"<\")) {\n\t    typeNode.typeParameters = this.flowParseTypeParameterDeclaration();\n\t  } else {\n\t    typeNode.typeParameters = null;\n\t  }\n\n\t  this.expect(types.parenL);\n\t  var tmp = this.flowParseFunctionTypeParams();\n\t  typeNode.params = tmp.params;\n\t  typeNode.rest = tmp.rest;\n\t  this.expect(types.parenR);\n\t  var predicate = null;\n\n\t  var _flowParseTypeAndPred = this.flowParseTypeAndPredicateInitialiser();\n\n\t  typeNode.returnType = _flowParseTypeAndPred[0];\n\t  predicate = _flowParseTypeAndPred[1];\n\n\t  typeContainer.typeAnnotation = this.finishNode(typeNode, \"FunctionTypeAnnotation\");\n\t  typeContainer.predicate = predicate;\n\t  id.typeAnnotation = this.finishNode(typeContainer, \"TypeAnnotation\");\n\n\t  this.finishNode(id, id.type);\n\n\t  this.semicolon();\n\n\t  return this.finishNode(node, \"DeclareFunction\");\n\t};\n\n\tpp$8.flowParseDeclare = function (node) {\n\t  if (this.match(types._class)) {\n\t    return this.flowParseDeclareClass(node);\n\t  } else if (this.match(types._function)) {\n\t    return this.flowParseDeclareFunction(node);\n\t  } else if (this.match(types._var)) {\n\t    return this.flowParseDeclareVariable(node);\n\t  } else if (this.isContextual(\"module\")) {\n\t    if (this.lookahead().type === types.dot) {\n\t      return this.flowParseDeclareModuleExports(node);\n\t    } else {\n\t      return this.flowParseDeclareModule(node);\n\t    }\n\t  } else if (this.isContextual(\"type\")) {\n\t    return this.flowParseDeclareTypeAlias(node);\n\t  } else if (this.isContextual(\"opaque\")) {\n\t    return this.flowParseDeclareOpaqueType(node);\n\t  } else if (this.isContextual(\"interface\")) {\n\t    return this.flowParseDeclareInterface(node);\n\t  } else if (this.match(types._export)) {\n\t    return this.flowParseDeclareExportDeclaration(node);\n\t  } else {\n\t    this.unexpected();\n\t  }\n\t};\n\n\tpp$8.flowParseDeclareExportDeclaration = function (node) {\n\t  this.expect(types._export);\n\t  if (this.isContextual(\"opaque\") // declare export opaque ...\n\t  ) {\n\t      node.declaration = this.flowParseDeclare(this.startNode());\n\t      node.default = false;\n\n\t      return this.finishNode(node, \"DeclareExportDeclaration\");\n\t    }\n\n\t  throw this.unexpected();\n\t};\n\n\tpp$8.flowParseDeclareVariable = function (node) {\n\t  this.next();\n\t  node.id = this.flowParseTypeAnnotatableIdentifier();\n\t  this.semicolon();\n\t  return this.finishNode(node, \"DeclareVariable\");\n\t};\n\n\tpp$8.flowParseDeclareModule = function (node) {\n\t  this.next();\n\n\t  if (this.match(types.string)) {\n\t    node.id = this.parseExprAtom();\n\t  } else {\n\t    node.id = this.parseIdentifier();\n\t  }\n\n\t  var bodyNode = node.body = this.startNode();\n\t  var body = bodyNode.body = [];\n\t  this.expect(types.braceL);\n\t  while (!this.match(types.braceR)) {\n\t    var _bodyNode = this.startNode();\n\n\t    if (this.match(types._import)) {\n\t      var lookahead = this.lookahead();\n\t      if (lookahead.value !== \"type\" && lookahead.value !== \"typeof\") {\n\t        this.unexpected(null, \"Imports within a `declare module` body must always be `import type` or `import typeof`\");\n\t      }\n\n\t      this.parseImport(_bodyNode);\n\t    } else {\n\t      this.expectContextual(\"declare\", \"Only declares and type imports are allowed inside declare module\");\n\n\t      _bodyNode = this.flowParseDeclare(_bodyNode, true);\n\t    }\n\n\t    body.push(_bodyNode);\n\t  }\n\t  this.expect(types.braceR);\n\n\t  this.finishNode(bodyNode, \"BlockStatement\");\n\t  return this.finishNode(node, \"DeclareModule\");\n\t};\n\n\tpp$8.flowParseDeclareModuleExports = function (node) {\n\t  this.expectContextual(\"module\");\n\t  this.expect(types.dot);\n\t  this.expectContextual(\"exports\");\n\t  node.typeAnnotation = this.flowParseTypeAnnotation();\n\t  this.semicolon();\n\n\t  return this.finishNode(node, \"DeclareModuleExports\");\n\t};\n\n\tpp$8.flowParseDeclareTypeAlias = function (node) {\n\t  this.next();\n\t  this.flowParseTypeAlias(node);\n\t  return this.finishNode(node, \"DeclareTypeAlias\");\n\t};\n\n\tpp$8.flowParseDeclareOpaqueType = function (node) {\n\t  this.next();\n\t  this.flowParseOpaqueType(node, true);\n\t  return this.finishNode(node, \"DeclareOpaqueType\");\n\t};\n\n\tpp$8.flowParseDeclareInterface = function (node) {\n\t  this.next();\n\t  this.flowParseInterfaceish(node);\n\t  return this.finishNode(node, \"DeclareInterface\");\n\t};\n\n\t// Interfaces\n\n\tpp$8.flowParseInterfaceish = function (node) {\n\t  node.id = this.parseIdentifier();\n\n\t  if (this.isRelational(\"<\")) {\n\t    node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t  } else {\n\t    node.typeParameters = null;\n\t  }\n\n\t  node.extends = [];\n\t  node.mixins = [];\n\n\t  if (this.eat(types._extends)) {\n\t    do {\n\t      node.extends.push(this.flowParseInterfaceExtends());\n\t    } while (this.eat(types.comma));\n\t  }\n\n\t  if (this.isContextual(\"mixins\")) {\n\t    this.next();\n\t    do {\n\t      node.mixins.push(this.flowParseInterfaceExtends());\n\t    } while (this.eat(types.comma));\n\t  }\n\n\t  node.body = this.flowParseObjectType(true, false, false);\n\t};\n\n\tpp$8.flowParseInterfaceExtends = function () {\n\t  var node = this.startNode();\n\n\t  node.id = this.flowParseQualifiedTypeIdentifier();\n\t  if (this.isRelational(\"<\")) {\n\t    node.typeParameters = this.flowParseTypeParameterInstantiation();\n\t  } else {\n\t    node.typeParameters = null;\n\t  }\n\n\t  return this.finishNode(node, \"InterfaceExtends\");\n\t};\n\n\tpp$8.flowParseInterface = function (node) {\n\t  this.flowParseInterfaceish(node, false);\n\t  return this.finishNode(node, \"InterfaceDeclaration\");\n\t};\n\n\tpp$8.flowParseRestrictedIdentifier = function (liberal) {\n\t  if (primitiveTypes.indexOf(this.state.value) > -1) {\n\t    this.raise(this.state.start, \"Cannot overwrite primitive type \" + this.state.value);\n\t  }\n\n\t  return this.parseIdentifier(liberal);\n\t};\n\n\t// Type aliases\n\n\tpp$8.flowParseTypeAlias = function (node) {\n\t  node.id = this.flowParseRestrictedIdentifier();\n\n\t  if (this.isRelational(\"<\")) {\n\t    node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t  } else {\n\t    node.typeParameters = null;\n\t  }\n\n\t  node.right = this.flowParseTypeInitialiser(types.eq);\n\t  this.semicolon();\n\n\t  return this.finishNode(node, \"TypeAlias\");\n\t};\n\n\t// Opaque type aliases\n\n\tpp$8.flowParseOpaqueType = function (node, declare) {\n\t  this.expectContextual(\"type\");\n\t  node.id = this.flowParseRestrictedIdentifier();\n\n\t  if (this.isRelational(\"<\")) {\n\t    node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t  } else {\n\t    node.typeParameters = null;\n\t  }\n\n\t  // Parse the supertype\n\t  node.supertype = null;\n\t  if (this.match(types.colon)) {\n\t    node.supertype = this.flowParseTypeInitialiser(types.colon);\n\t  }\n\n\t  node.impltype = null;\n\t  if (!declare) {\n\t    node.impltype = this.flowParseTypeInitialiser(types.eq);\n\t  }\n\t  this.semicolon();\n\n\t  return this.finishNode(node, \"OpaqueType\");\n\t};\n\n\t// Type annotations\n\n\tpp$8.flowParseTypeParameter = function () {\n\t  var node = this.startNode();\n\n\t  var variance = this.flowParseVariance();\n\n\t  var ident = this.flowParseTypeAnnotatableIdentifier();\n\t  node.name = ident.name;\n\t  node.variance = variance;\n\t  node.bound = ident.typeAnnotation;\n\n\t  if (this.match(types.eq)) {\n\t    this.eat(types.eq);\n\t    node.default = this.flowParseType();\n\t  }\n\n\t  return this.finishNode(node, \"TypeParameter\");\n\t};\n\n\tpp$8.flowParseTypeParameterDeclaration = function () {\n\t  var oldInType = this.state.inType;\n\t  var node = this.startNode();\n\t  node.params = [];\n\n\t  this.state.inType = true;\n\n\t  // istanbul ignore else: this condition is already checked at all call sites\n\t  if (this.isRelational(\"<\") || this.match(types.jsxTagStart)) {\n\t    this.next();\n\t  } else {\n\t    this.unexpected();\n\t  }\n\n\t  do {\n\t    node.params.push(this.flowParseTypeParameter());\n\t    if (!this.isRelational(\">\")) {\n\t      this.expect(types.comma);\n\t    }\n\t  } while (!this.isRelational(\">\"));\n\t  this.expectRelational(\">\");\n\n\t  this.state.inType = oldInType;\n\n\t  return this.finishNode(node, \"TypeParameterDeclaration\");\n\t};\n\n\tpp$8.flowParseTypeParameterInstantiation = function () {\n\t  var node = this.startNode();\n\t  var oldInType = this.state.inType;\n\t  node.params = [];\n\n\t  this.state.inType = true;\n\n\t  this.expectRelational(\"<\");\n\t  while (!this.isRelational(\">\")) {\n\t    node.params.push(this.flowParseType());\n\t    if (!this.isRelational(\">\")) {\n\t      this.expect(types.comma);\n\t    }\n\t  }\n\t  this.expectRelational(\">\");\n\n\t  this.state.inType = oldInType;\n\n\t  return this.finishNode(node, \"TypeParameterInstantiation\");\n\t};\n\n\tpp$8.flowParseObjectPropertyKey = function () {\n\t  return this.match(types.num) || this.match(types.string) ? this.parseExprAtom() : this.parseIdentifier(true);\n\t};\n\n\tpp$8.flowParseObjectTypeIndexer = function (node, isStatic, variance) {\n\t  node.static = isStatic;\n\n\t  this.expect(types.bracketL);\n\t  if (this.lookahead().type === types.colon) {\n\t    node.id = this.flowParseObjectPropertyKey();\n\t    node.key = this.flowParseTypeInitialiser();\n\t  } else {\n\t    node.id = null;\n\t    node.key = this.flowParseType();\n\t  }\n\t  this.expect(types.bracketR);\n\t  node.value = this.flowParseTypeInitialiser();\n\t  node.variance = variance;\n\n\t  this.flowObjectTypeSemicolon();\n\t  return this.finishNode(node, \"ObjectTypeIndexer\");\n\t};\n\n\tpp$8.flowParseObjectTypeMethodish = function (node) {\n\t  node.params = [];\n\t  node.rest = null;\n\t  node.typeParameters = null;\n\n\t  if (this.isRelational(\"<\")) {\n\t    node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t  }\n\n\t  this.expect(types.parenL);\n\t  while (!this.match(types.parenR) && !this.match(types.ellipsis)) {\n\t    node.params.push(this.flowParseFunctionTypeParam());\n\t    if (!this.match(types.parenR)) {\n\t      this.expect(types.comma);\n\t    }\n\t  }\n\n\t  if (this.eat(types.ellipsis)) {\n\t    node.rest = this.flowParseFunctionTypeParam();\n\t  }\n\t  this.expect(types.parenR);\n\t  node.returnType = this.flowParseTypeInitialiser();\n\n\t  return this.finishNode(node, \"FunctionTypeAnnotation\");\n\t};\n\n\tpp$8.flowParseObjectTypeMethod = function (startPos, startLoc, isStatic, key) {\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  node.value = this.flowParseObjectTypeMethodish(this.startNodeAt(startPos, startLoc));\n\t  node.static = isStatic;\n\t  node.key = key;\n\t  node.optional = false;\n\t  this.flowObjectTypeSemicolon();\n\t  return this.finishNode(node, \"ObjectTypeProperty\");\n\t};\n\n\tpp$8.flowParseObjectTypeCallProperty = function (node, isStatic) {\n\t  var valueNode = this.startNode();\n\t  node.static = isStatic;\n\t  node.value = this.flowParseObjectTypeMethodish(valueNode);\n\t  this.flowObjectTypeSemicolon();\n\t  return this.finishNode(node, \"ObjectTypeCallProperty\");\n\t};\n\n\tpp$8.flowParseObjectType = function (allowStatic, allowExact, allowSpread) {\n\t  var oldInType = this.state.inType;\n\t  this.state.inType = true;\n\n\t  var nodeStart = this.startNode();\n\t  var node = void 0;\n\t  var propertyKey = void 0;\n\t  var isStatic = false;\n\n\t  nodeStart.callProperties = [];\n\t  nodeStart.properties = [];\n\t  nodeStart.indexers = [];\n\n\t  var endDelim = void 0;\n\t  var exact = void 0;\n\t  if (allowExact && this.match(types.braceBarL)) {\n\t    this.expect(types.braceBarL);\n\t    endDelim = types.braceBarR;\n\t    exact = true;\n\t  } else {\n\t    this.expect(types.braceL);\n\t    endDelim = types.braceR;\n\t    exact = false;\n\t  }\n\n\t  nodeStart.exact = exact;\n\n\t  while (!this.match(endDelim)) {\n\t    var optional = false;\n\t    var startPos = this.state.start;\n\t    var startLoc = this.state.startLoc;\n\t    node = this.startNode();\n\t    if (allowStatic && this.isContextual(\"static\") && this.lookahead().type !== types.colon) {\n\t      this.next();\n\t      isStatic = true;\n\t    }\n\n\t    var variancePos = this.state.start;\n\t    var variance = this.flowParseVariance();\n\n\t    if (this.match(types.bracketL)) {\n\t      nodeStart.indexers.push(this.flowParseObjectTypeIndexer(node, isStatic, variance));\n\t    } else if (this.match(types.parenL) || this.isRelational(\"<\")) {\n\t      if (variance) {\n\t        this.unexpected(variancePos);\n\t      }\n\t      nodeStart.callProperties.push(this.flowParseObjectTypeCallProperty(node, isStatic));\n\t    } else {\n\t      if (this.match(types.ellipsis)) {\n\t        if (!allowSpread) {\n\t          this.unexpected(null, \"Spread operator cannot appear in class or interface definitions\");\n\t        }\n\t        if (variance) {\n\t          this.unexpected(variance.start, \"Spread properties cannot have variance\");\n\t        }\n\t        this.expect(types.ellipsis);\n\t        node.argument = this.flowParseType();\n\t        this.flowObjectTypeSemicolon();\n\t        nodeStart.properties.push(this.finishNode(node, \"ObjectTypeSpreadProperty\"));\n\t      } else {\n\t        propertyKey = this.flowParseObjectPropertyKey();\n\t        if (this.isRelational(\"<\") || this.match(types.parenL)) {\n\t          // This is a method property\n\t          if (variance) {\n\t            this.unexpected(variance.start);\n\t          }\n\t          nodeStart.properties.push(this.flowParseObjectTypeMethod(startPos, startLoc, isStatic, propertyKey));\n\t        } else {\n\t          if (this.eat(types.question)) {\n\t            optional = true;\n\t          }\n\t          node.key = propertyKey;\n\t          node.value = this.flowParseTypeInitialiser();\n\t          node.optional = optional;\n\t          node.static = isStatic;\n\t          node.variance = variance;\n\t          this.flowObjectTypeSemicolon();\n\t          nodeStart.properties.push(this.finishNode(node, \"ObjectTypeProperty\"));\n\t        }\n\t      }\n\t    }\n\n\t    isStatic = false;\n\t  }\n\n\t  this.expect(endDelim);\n\n\t  var out = this.finishNode(nodeStart, \"ObjectTypeAnnotation\");\n\n\t  this.state.inType = oldInType;\n\n\t  return out;\n\t};\n\n\tpp$8.flowObjectTypeSemicolon = function () {\n\t  if (!this.eat(types.semi) && !this.eat(types.comma) && !this.match(types.braceR) && !this.match(types.braceBarR)) {\n\t    this.unexpected();\n\t  }\n\t};\n\n\tpp$8.flowParseQualifiedTypeIdentifier = function (startPos, startLoc, id) {\n\t  startPos = startPos || this.state.start;\n\t  startLoc = startLoc || this.state.startLoc;\n\t  var node = id || this.parseIdentifier();\n\n\t  while (this.eat(types.dot)) {\n\t    var node2 = this.startNodeAt(startPos, startLoc);\n\t    node2.qualification = node;\n\t    node2.id = this.parseIdentifier();\n\t    node = this.finishNode(node2, \"QualifiedTypeIdentifier\");\n\t  }\n\n\t  return node;\n\t};\n\n\tpp$8.flowParseGenericType = function (startPos, startLoc, id) {\n\t  var node = this.startNodeAt(startPos, startLoc);\n\n\t  node.typeParameters = null;\n\t  node.id = this.flowParseQualifiedTypeIdentifier(startPos, startLoc, id);\n\n\t  if (this.isRelational(\"<\")) {\n\t    node.typeParameters = this.flowParseTypeParameterInstantiation();\n\t  }\n\n\t  return this.finishNode(node, \"GenericTypeAnnotation\");\n\t};\n\n\tpp$8.flowParseTypeofType = function () {\n\t  var node = this.startNode();\n\t  this.expect(types._typeof);\n\t  node.argument = this.flowParsePrimaryType();\n\t  return this.finishNode(node, \"TypeofTypeAnnotation\");\n\t};\n\n\tpp$8.flowParseTupleType = function () {\n\t  var node = this.startNode();\n\t  node.types = [];\n\t  this.expect(types.bracketL);\n\t  // We allow trailing commas\n\t  while (this.state.pos < this.input.length && !this.match(types.bracketR)) {\n\t    node.types.push(this.flowParseType());\n\t    if (this.match(types.bracketR)) break;\n\t    this.expect(types.comma);\n\t  }\n\t  this.expect(types.bracketR);\n\t  return this.finishNode(node, \"TupleTypeAnnotation\");\n\t};\n\n\tpp$8.flowParseFunctionTypeParam = function () {\n\t  var name = null;\n\t  var optional = false;\n\t  var typeAnnotation = null;\n\t  var node = this.startNode();\n\t  var lh = this.lookahead();\n\t  if (lh.type === types.colon || lh.type === types.question) {\n\t    name = this.parseIdentifier();\n\t    if (this.eat(types.question)) {\n\t      optional = true;\n\t    }\n\t    typeAnnotation = this.flowParseTypeInitialiser();\n\t  } else {\n\t    typeAnnotation = this.flowParseType();\n\t  }\n\t  node.name = name;\n\t  node.optional = optional;\n\t  node.typeAnnotation = typeAnnotation;\n\t  return this.finishNode(node, \"FunctionTypeParam\");\n\t};\n\n\tpp$8.reinterpretTypeAsFunctionTypeParam = function (type) {\n\t  var node = this.startNodeAt(type.start, type.loc.start);\n\t  node.name = null;\n\t  node.optional = false;\n\t  node.typeAnnotation = type;\n\t  return this.finishNode(node, \"FunctionTypeParam\");\n\t};\n\n\tpp$8.flowParseFunctionTypeParams = function () {\n\t  var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n\n\t  var ret = { params: params, rest: null };\n\t  while (!this.match(types.parenR) && !this.match(types.ellipsis)) {\n\t    ret.params.push(this.flowParseFunctionTypeParam());\n\t    if (!this.match(types.parenR)) {\n\t      this.expect(types.comma);\n\t    }\n\t  }\n\t  if (this.eat(types.ellipsis)) {\n\t    ret.rest = this.flowParseFunctionTypeParam();\n\t  }\n\t  return ret;\n\t};\n\n\tpp$8.flowIdentToTypeAnnotation = function (startPos, startLoc, node, id) {\n\t  switch (id.name) {\n\t    case \"any\":\n\t      return this.finishNode(node, \"AnyTypeAnnotation\");\n\n\t    case \"void\":\n\t      return this.finishNode(node, \"VoidTypeAnnotation\");\n\n\t    case \"bool\":\n\t    case \"boolean\":\n\t      return this.finishNode(node, \"BooleanTypeAnnotation\");\n\n\t    case \"mixed\":\n\t      return this.finishNode(node, \"MixedTypeAnnotation\");\n\n\t    case \"empty\":\n\t      return this.finishNode(node, \"EmptyTypeAnnotation\");\n\n\t    case \"number\":\n\t      return this.finishNode(node, \"NumberTypeAnnotation\");\n\n\t    case \"string\":\n\t      return this.finishNode(node, \"StringTypeAnnotation\");\n\n\t    default:\n\t      return this.flowParseGenericType(startPos, startLoc, id);\n\t  }\n\t};\n\n\t// The parsing of types roughly parallels the parsing of expressions, and\n\t// primary types are kind of like primary expressions...they're the\n\t// primitives with which other types are constructed.\n\tpp$8.flowParsePrimaryType = function () {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var node = this.startNode();\n\t  var tmp = void 0;\n\t  var type = void 0;\n\t  var isGroupedType = false;\n\t  var oldNoAnonFunctionType = this.state.noAnonFunctionType;\n\n\t  switch (this.state.type) {\n\t    case types.name:\n\t      return this.flowIdentToTypeAnnotation(startPos, startLoc, node, this.parseIdentifier());\n\n\t    case types.braceL:\n\t      return this.flowParseObjectType(false, false, true);\n\n\t    case types.braceBarL:\n\t      return this.flowParseObjectType(false, true, true);\n\n\t    case types.bracketL:\n\t      return this.flowParseTupleType();\n\n\t    case types.relational:\n\t      if (this.state.value === \"<\") {\n\t        node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t        this.expect(types.parenL);\n\t        tmp = this.flowParseFunctionTypeParams();\n\t        node.params = tmp.params;\n\t        node.rest = tmp.rest;\n\t        this.expect(types.parenR);\n\n\t        this.expect(types.arrow);\n\n\t        node.returnType = this.flowParseType();\n\n\t        return this.finishNode(node, \"FunctionTypeAnnotation\");\n\t      }\n\t      break;\n\n\t    case types.parenL:\n\t      this.next();\n\n\t      // Check to see if this is actually a grouped type\n\t      if (!this.match(types.parenR) && !this.match(types.ellipsis)) {\n\t        if (this.match(types.name)) {\n\t          var token = this.lookahead().type;\n\t          isGroupedType = token !== types.question && token !== types.colon;\n\t        } else {\n\t          isGroupedType = true;\n\t        }\n\t      }\n\n\t      if (isGroupedType) {\n\t        this.state.noAnonFunctionType = false;\n\t        type = this.flowParseType();\n\t        this.state.noAnonFunctionType = oldNoAnonFunctionType;\n\n\t        // A `,` or a `) =>` means this is an anonymous function type\n\t        if (this.state.noAnonFunctionType || !(this.match(types.comma) || this.match(types.parenR) && this.lookahead().type === types.arrow)) {\n\t          this.expect(types.parenR);\n\t          return type;\n\t        } else {\n\t          // Eat a comma if there is one\n\t          this.eat(types.comma);\n\t        }\n\t      }\n\n\t      if (type) {\n\t        tmp = this.flowParseFunctionTypeParams([this.reinterpretTypeAsFunctionTypeParam(type)]);\n\t      } else {\n\t        tmp = this.flowParseFunctionTypeParams();\n\t      }\n\n\t      node.params = tmp.params;\n\t      node.rest = tmp.rest;\n\n\t      this.expect(types.parenR);\n\n\t      this.expect(types.arrow);\n\n\t      node.returnType = this.flowParseType();\n\n\t      node.typeParameters = null;\n\n\t      return this.finishNode(node, \"FunctionTypeAnnotation\");\n\n\t    case types.string:\n\t      return this.parseLiteral(this.state.value, \"StringLiteralTypeAnnotation\");\n\n\t    case types._true:case types._false:\n\t      node.value = this.match(types._true);\n\t      this.next();\n\t      return this.finishNode(node, \"BooleanLiteralTypeAnnotation\");\n\n\t    case types.plusMin:\n\t      if (this.state.value === \"-\") {\n\t        this.next();\n\t        if (!this.match(types.num)) this.unexpected(null, \"Unexpected token, expected number\");\n\n\t        return this.parseLiteral(-this.state.value, \"NumericLiteralTypeAnnotation\", node.start, node.loc.start);\n\t      }\n\n\t      this.unexpected();\n\t    case types.num:\n\t      return this.parseLiteral(this.state.value, \"NumericLiteralTypeAnnotation\");\n\n\t    case types._null:\n\t      node.value = this.match(types._null);\n\t      this.next();\n\t      return this.finishNode(node, \"NullLiteralTypeAnnotation\");\n\n\t    case types._this:\n\t      node.value = this.match(types._this);\n\t      this.next();\n\t      return this.finishNode(node, \"ThisTypeAnnotation\");\n\n\t    case types.star:\n\t      this.next();\n\t      return this.finishNode(node, \"ExistentialTypeParam\");\n\n\t    default:\n\t      if (this.state.type.keyword === \"typeof\") {\n\t        return this.flowParseTypeofType();\n\t      }\n\t  }\n\n\t  this.unexpected();\n\t};\n\n\tpp$8.flowParsePostfixType = function () {\n\t  var startPos = this.state.start,\n\t      startLoc = this.state.startLoc;\n\t  var type = this.flowParsePrimaryType();\n\t  while (!this.canInsertSemicolon() && this.match(types.bracketL)) {\n\t    var node = this.startNodeAt(startPos, startLoc);\n\t    node.elementType = type;\n\t    this.expect(types.bracketL);\n\t    this.expect(types.bracketR);\n\t    type = this.finishNode(node, \"ArrayTypeAnnotation\");\n\t  }\n\t  return type;\n\t};\n\n\tpp$8.flowParsePrefixType = function () {\n\t  var node = this.startNode();\n\t  if (this.eat(types.question)) {\n\t    node.typeAnnotation = this.flowParsePrefixType();\n\t    return this.finishNode(node, \"NullableTypeAnnotation\");\n\t  } else {\n\t    return this.flowParsePostfixType();\n\t  }\n\t};\n\n\tpp$8.flowParseAnonFunctionWithoutParens = function () {\n\t  var param = this.flowParsePrefixType();\n\t  if (!this.state.noAnonFunctionType && this.eat(types.arrow)) {\n\t    var node = this.startNodeAt(param.start, param.loc.start);\n\t    node.params = [this.reinterpretTypeAsFunctionTypeParam(param)];\n\t    node.rest = null;\n\t    node.returnType = this.flowParseType();\n\t    node.typeParameters = null;\n\t    return this.finishNode(node, \"FunctionTypeAnnotation\");\n\t  }\n\t  return param;\n\t};\n\n\tpp$8.flowParseIntersectionType = function () {\n\t  var node = this.startNode();\n\t  this.eat(types.bitwiseAND);\n\t  var type = this.flowParseAnonFunctionWithoutParens();\n\t  node.types = [type];\n\t  while (this.eat(types.bitwiseAND)) {\n\t    node.types.push(this.flowParseAnonFunctionWithoutParens());\n\t  }\n\t  return node.types.length === 1 ? type : this.finishNode(node, \"IntersectionTypeAnnotation\");\n\t};\n\n\tpp$8.flowParseUnionType = function () {\n\t  var node = this.startNode();\n\t  this.eat(types.bitwiseOR);\n\t  var type = this.flowParseIntersectionType();\n\t  node.types = [type];\n\t  while (this.eat(types.bitwiseOR)) {\n\t    node.types.push(this.flowParseIntersectionType());\n\t  }\n\t  return node.types.length === 1 ? type : this.finishNode(node, \"UnionTypeAnnotation\");\n\t};\n\n\tpp$8.flowParseType = function () {\n\t  var oldInType = this.state.inType;\n\t  this.state.inType = true;\n\t  var type = this.flowParseUnionType();\n\t  this.state.inType = oldInType;\n\t  return type;\n\t};\n\n\tpp$8.flowParseTypeAnnotation = function () {\n\t  var node = this.startNode();\n\t  node.typeAnnotation = this.flowParseTypeInitialiser();\n\t  return this.finishNode(node, \"TypeAnnotation\");\n\t};\n\n\tpp$8.flowParseTypeAndPredicateAnnotation = function () {\n\t  var node = this.startNode();\n\n\t  var _flowParseTypeAndPred2 = this.flowParseTypeAndPredicateInitialiser();\n\n\t  node.typeAnnotation = _flowParseTypeAndPred2[0];\n\t  node.predicate = _flowParseTypeAndPred2[1];\n\n\t  return this.finishNode(node, \"TypeAnnotation\");\n\t};\n\n\tpp$8.flowParseTypeAnnotatableIdentifier = function () {\n\t  var ident = this.flowParseRestrictedIdentifier();\n\t  if (this.match(types.colon)) {\n\t    ident.typeAnnotation = this.flowParseTypeAnnotation();\n\t    this.finishNode(ident, ident.type);\n\t  }\n\t  return ident;\n\t};\n\n\tpp$8.typeCastToParameter = function (node) {\n\t  node.expression.typeAnnotation = node.typeAnnotation;\n\n\t  return this.finishNodeAt(node.expression, node.expression.type, node.typeAnnotation.end, node.typeAnnotation.loc.end);\n\t};\n\n\tpp$8.flowParseVariance = function () {\n\t  var variance = null;\n\t  if (this.match(types.plusMin)) {\n\t    if (this.state.value === \"+\") {\n\t      variance = \"plus\";\n\t    } else if (this.state.value === \"-\") {\n\t      variance = \"minus\";\n\t    }\n\t    this.next();\n\t  }\n\t  return variance;\n\t};\n\n\tvar flowPlugin = function flowPlugin(instance) {\n\t  // plain function return types: function name(): string {}\n\t  instance.extend(\"parseFunctionBody\", function (inner) {\n\t    return function (node, allowExpression) {\n\t      if (this.match(types.colon) && !allowExpression) {\n\t        // if allowExpression is true then we're parsing an arrow function and if\n\t        // there's a return type then it's been handled elsewhere\n\t        node.returnType = this.flowParseTypeAndPredicateAnnotation();\n\t      }\n\n\t      return inner.call(this, node, allowExpression);\n\t    };\n\t  });\n\n\t  // interfaces\n\t  instance.extend(\"parseStatement\", function (inner) {\n\t    return function (declaration, topLevel) {\n\t      // strict mode handling of `interface` since it's a reserved word\n\t      if (this.state.strict && this.match(types.name) && this.state.value === \"interface\") {\n\t        var node = this.startNode();\n\t        this.next();\n\t        return this.flowParseInterface(node);\n\t      } else {\n\t        return inner.call(this, declaration, topLevel);\n\t      }\n\t    };\n\t  });\n\n\t  // declares, interfaces and type aliases\n\t  instance.extend(\"parseExpressionStatement\", function (inner) {\n\t    return function (node, expr) {\n\t      if (expr.type === \"Identifier\") {\n\t        if (expr.name === \"declare\") {\n\t          if (this.match(types._class) || this.match(types.name) || this.match(types._function) || this.match(types._var) || this.match(types._export)) {\n\t            return this.flowParseDeclare(node);\n\t          }\n\t        } else if (this.match(types.name)) {\n\t          if (expr.name === \"interface\") {\n\t            return this.flowParseInterface(node);\n\t          } else if (expr.name === \"type\") {\n\t            return this.flowParseTypeAlias(node);\n\t          } else if (expr.name === \"opaque\") {\n\t            return this.flowParseOpaqueType(node, false);\n\t          }\n\t        }\n\t      }\n\n\t      return inner.call(this, node, expr);\n\t    };\n\t  });\n\n\t  // export type\n\t  instance.extend(\"shouldParseExportDeclaration\", function (inner) {\n\t    return function () {\n\t      return this.isContextual(\"type\") || this.isContextual(\"interface\") || this.isContextual(\"opaque\") || inner.call(this);\n\t    };\n\t  });\n\n\t  instance.extend(\"isExportDefaultSpecifier\", function (inner) {\n\t    return function () {\n\t      if (this.match(types.name) && (this.state.value === \"type\" || this.state.value === \"interface\" || this.state.value === \"opaque\")) {\n\t        return false;\n\t      }\n\n\t      return inner.call(this);\n\t    };\n\t  });\n\n\t  instance.extend(\"parseConditional\", function (inner) {\n\t    return function (expr, noIn, startPos, startLoc, refNeedsArrowPos) {\n\t      // only do the expensive clone if there is a question mark\n\t      // and if we come from inside parens\n\t      if (refNeedsArrowPos && this.match(types.question)) {\n\t        var state = this.state.clone();\n\t        try {\n\t          return inner.call(this, expr, noIn, startPos, startLoc);\n\t        } catch (err) {\n\t          if (err instanceof SyntaxError) {\n\t            this.state = state;\n\t            refNeedsArrowPos.start = err.pos || this.state.start;\n\t            return expr;\n\t          } else {\n\t            // istanbul ignore next: no such error is expected\n\t            throw err;\n\t          }\n\t        }\n\t      }\n\n\t      return inner.call(this, expr, noIn, startPos, startLoc);\n\t    };\n\t  });\n\n\t  instance.extend(\"parseParenItem\", function (inner) {\n\t    return function (node, startPos, startLoc) {\n\t      node = inner.call(this, node, startPos, startLoc);\n\t      if (this.eat(types.question)) {\n\t        node.optional = true;\n\t      }\n\n\t      if (this.match(types.colon)) {\n\t        var typeCastNode = this.startNodeAt(startPos, startLoc);\n\t        typeCastNode.expression = node;\n\t        typeCastNode.typeAnnotation = this.flowParseTypeAnnotation();\n\n\t        return this.finishNode(typeCastNode, \"TypeCastExpression\");\n\t      }\n\n\t      return node;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseExport\", function (inner) {\n\t    return function (node) {\n\t      node = inner.call(this, node);\n\t      if (node.type === \"ExportNamedDeclaration\") {\n\t        node.exportKind = node.exportKind || \"value\";\n\t      }\n\t      return node;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseExportDeclaration\", function (inner) {\n\t    return function (node) {\n\t      if (this.isContextual(\"type\")) {\n\t        node.exportKind = \"type\";\n\n\t        var declarationNode = this.startNode();\n\t        this.next();\n\n\t        if (this.match(types.braceL)) {\n\t          // export type { foo, bar };\n\t          node.specifiers = this.parseExportSpecifiers();\n\t          this.parseExportFrom(node);\n\t          return null;\n\t        } else {\n\t          // export type Foo = Bar;\n\t          return this.flowParseTypeAlias(declarationNode);\n\t        }\n\t      } else if (this.isContextual(\"opaque\")) {\n\t        node.exportKind = \"type\";\n\n\t        var _declarationNode = this.startNode();\n\t        this.next();\n\t        // export opaque type Foo = Bar;\n\t        return this.flowParseOpaqueType(_declarationNode, false);\n\t      } else if (this.isContextual(\"interface\")) {\n\t        node.exportKind = \"type\";\n\t        var _declarationNode2 = this.startNode();\n\t        this.next();\n\t        return this.flowParseInterface(_declarationNode2);\n\t      } else {\n\t        return inner.call(this, node);\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"parseClassId\", function (inner) {\n\t    return function (node) {\n\t      inner.apply(this, arguments);\n\t      if (this.isRelational(\"<\")) {\n\t        node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t      }\n\t    };\n\t  });\n\n\t  // don't consider `void` to be a keyword as then it'll use the void token type\n\t  // and set startExpr\n\t  instance.extend(\"isKeyword\", function (inner) {\n\t    return function (name) {\n\t      if (this.state.inType && name === \"void\") {\n\t        return false;\n\t      } else {\n\t        return inner.call(this, name);\n\t      }\n\t    };\n\t  });\n\n\t  // ensure that inside flow types, we bypass the jsx parser plugin\n\t  instance.extend(\"readToken\", function (inner) {\n\t    return function (code) {\n\t      if (this.state.inType && (code === 62 || code === 60)) {\n\t        return this.finishOp(types.relational, 1);\n\t      } else {\n\t        return inner.call(this, code);\n\t      }\n\t    };\n\t  });\n\n\t  // don't lex any token as a jsx one inside a flow type\n\t  instance.extend(\"jsx_readToken\", function (inner) {\n\t    return function () {\n\t      if (!this.state.inType) return inner.call(this);\n\t    };\n\t  });\n\n\t  instance.extend(\"toAssignable\", function (inner) {\n\t    return function (node, isBinding, contextDescription) {\n\t      if (node.type === \"TypeCastExpression\") {\n\t        return inner.call(this, this.typeCastToParameter(node), isBinding, contextDescription);\n\t      } else {\n\t        return inner.call(this, node, isBinding, contextDescription);\n\t      }\n\t    };\n\t  });\n\n\t  // turn type casts that we found in function parameter head into type annotated params\n\t  instance.extend(\"toAssignableList\", function (inner) {\n\t    return function (exprList, isBinding, contextDescription) {\n\t      for (var i = 0; i < exprList.length; i++) {\n\t        var expr = exprList[i];\n\t        if (expr && expr.type === \"TypeCastExpression\") {\n\t          exprList[i] = this.typeCastToParameter(expr);\n\t        }\n\t      }\n\t      return inner.call(this, exprList, isBinding, contextDescription);\n\t    };\n\t  });\n\n\t  // this is a list of nodes, from something like a call expression, we need to filter the\n\t  // type casts that we've found that are illegal in this context\n\t  instance.extend(\"toReferencedList\", function () {\n\t    return function (exprList) {\n\t      for (var i = 0; i < exprList.length; i++) {\n\t        var expr = exprList[i];\n\t        if (expr && expr._exprListItem && expr.type === \"TypeCastExpression\") {\n\t          this.raise(expr.start, \"Unexpected type cast\");\n\t        }\n\t      }\n\n\t      return exprList;\n\t    };\n\t  });\n\n\t  // parse an item inside a expression list eg. `(NODE, NODE)` where NODE represents\n\t  // the position where this function is called\n\t  instance.extend(\"parseExprListItem\", function (inner) {\n\t    return function () {\n\t      var container = this.startNode();\n\n\t      for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t        args[_key] = arguments[_key];\n\t      }\n\n\t      var node = inner.call.apply(inner, [this].concat(args));\n\t      if (this.match(types.colon)) {\n\t        container._exprListItem = true;\n\t        container.expression = node;\n\t        container.typeAnnotation = this.flowParseTypeAnnotation();\n\t        return this.finishNode(container, \"TypeCastExpression\");\n\t      } else {\n\t        return node;\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"checkLVal\", function (inner) {\n\t    return function (node) {\n\t      if (node.type !== \"TypeCastExpression\") {\n\t        return inner.apply(this, arguments);\n\t      }\n\t    };\n\t  });\n\n\t  // parse class property type annotations\n\t  instance.extend(\"parseClassProperty\", function (inner) {\n\t    return function (node) {\n\t      delete node.variancePos;\n\t      if (this.match(types.colon)) {\n\t        node.typeAnnotation = this.flowParseTypeAnnotation();\n\t      }\n\t      return inner.call(this, node);\n\t    };\n\t  });\n\n\t  // determine whether or not we're currently in the position where a class method would appear\n\t  instance.extend(\"isClassMethod\", function (inner) {\n\t    return function () {\n\t      return this.isRelational(\"<\") || inner.call(this);\n\t    };\n\t  });\n\n\t  // determine whether or not we're currently in the position where a class property would appear\n\t  instance.extend(\"isClassProperty\", function (inner) {\n\t    return function () {\n\t      return this.match(types.colon) || inner.call(this);\n\t    };\n\t  });\n\n\t  instance.extend(\"isNonstaticConstructor\", function (inner) {\n\t    return function (method) {\n\t      return !this.match(types.colon) && inner.call(this, method);\n\t    };\n\t  });\n\n\t  // parse type parameters for class methods\n\t  instance.extend(\"parseClassMethod\", function (inner) {\n\t    return function (classBody, method) {\n\t      if (method.variance) {\n\t        this.unexpected(method.variancePos);\n\t      }\n\t      delete method.variance;\n\t      delete method.variancePos;\n\t      if (this.isRelational(\"<\")) {\n\t        method.typeParameters = this.flowParseTypeParameterDeclaration();\n\t      }\n\n\t      for (var _len2 = arguments.length, args = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {\n\t        args[_key2 - 2] = arguments[_key2];\n\t      }\n\n\t      inner.call.apply(inner, [this, classBody, method].concat(args));\n\t    };\n\t  });\n\n\t  // parse a the super class type parameters and implements\n\t  instance.extend(\"parseClassSuper\", function (inner) {\n\t    return function (node, isStatement) {\n\t      inner.call(this, node, isStatement);\n\t      if (node.superClass && this.isRelational(\"<\")) {\n\t        node.superTypeParameters = this.flowParseTypeParameterInstantiation();\n\t      }\n\t      if (this.isContextual(\"implements\")) {\n\t        this.next();\n\t        var implemented = node.implements = [];\n\t        do {\n\t          var _node = this.startNode();\n\t          _node.id = this.parseIdentifier();\n\t          if (this.isRelational(\"<\")) {\n\t            _node.typeParameters = this.flowParseTypeParameterInstantiation();\n\t          } else {\n\t            _node.typeParameters = null;\n\t          }\n\t          implemented.push(this.finishNode(_node, \"ClassImplements\"));\n\t        } while (this.eat(types.comma));\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"parsePropertyName\", function (inner) {\n\t    return function (node) {\n\t      var variancePos = this.state.start;\n\t      var variance = this.flowParseVariance();\n\t      var key = inner.call(this, node);\n\t      node.variance = variance;\n\t      node.variancePos = variancePos;\n\t      return key;\n\t    };\n\t  });\n\n\t  // parse type parameters for object method shorthand\n\t  instance.extend(\"parseObjPropValue\", function (inner) {\n\t    return function (prop) {\n\t      if (prop.variance) {\n\t        this.unexpected(prop.variancePos);\n\t      }\n\t      delete prop.variance;\n\t      delete prop.variancePos;\n\n\t      var typeParameters = void 0;\n\n\t      // method shorthand\n\t      if (this.isRelational(\"<\")) {\n\t        typeParameters = this.flowParseTypeParameterDeclaration();\n\t        if (!this.match(types.parenL)) this.unexpected();\n\t      }\n\n\t      inner.apply(this, arguments);\n\n\t      // add typeParameters if we found them\n\t      if (typeParameters) {\n\t        (prop.value || prop).typeParameters = typeParameters;\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"parseAssignableListItemTypes\", function () {\n\t    return function (param) {\n\t      if (this.eat(types.question)) {\n\t        param.optional = true;\n\t      }\n\t      if (this.match(types.colon)) {\n\t        param.typeAnnotation = this.flowParseTypeAnnotation();\n\t      }\n\t      this.finishNode(param, param.type);\n\t      return param;\n\t    };\n\t  });\n\n\t  instance.extend(\"parseMaybeDefault\", function (inner) {\n\t    return function () {\n\t      for (var _len3 = arguments.length, args = Array(_len3), _key3 = 0; _key3 < _len3; _key3++) {\n\t        args[_key3] = arguments[_key3];\n\t      }\n\n\t      var node = inner.apply(this, args);\n\n\t      if (node.type === \"AssignmentPattern\" && node.typeAnnotation && node.right.start < node.typeAnnotation.start) {\n\t        this.raise(node.typeAnnotation.start, \"Type annotations must come before default assignments, e.g. instead of `age = 25: number` use `age: number = 25`\");\n\t      }\n\n\t      return node;\n\t    };\n\t  });\n\n\t  // parse typeof and type imports\n\t  instance.extend(\"parseImportSpecifiers\", function (inner) {\n\t    return function (node) {\n\t      node.importKind = \"value\";\n\n\t      var kind = null;\n\t      if (this.match(types._typeof)) {\n\t        kind = \"typeof\";\n\t      } else if (this.isContextual(\"type\")) {\n\t        kind = \"type\";\n\t      }\n\t      if (kind) {\n\t        var lh = this.lookahead();\n\t        if (lh.type === types.name && lh.value !== \"from\" || lh.type === types.braceL || lh.type === types.star) {\n\t          this.next();\n\t          node.importKind = kind;\n\t        }\n\t      }\n\n\t      inner.call(this, node);\n\t    };\n\t  });\n\n\t  // parse import-type/typeof shorthand\n\t  instance.extend(\"parseImportSpecifier\", function () {\n\t    return function (node) {\n\t      var specifier = this.startNode();\n\t      var firstIdentLoc = this.state.start;\n\t      var firstIdent = this.parseIdentifier(true);\n\n\t      var specifierTypeKind = null;\n\t      if (firstIdent.name === \"type\") {\n\t        specifierTypeKind = \"type\";\n\t      } else if (firstIdent.name === \"typeof\") {\n\t        specifierTypeKind = \"typeof\";\n\t      }\n\n\t      var isBinding = false;\n\t      if (this.isContextual(\"as\")) {\n\t        var as_ident = this.parseIdentifier(true);\n\t        if (specifierTypeKind !== null && !this.match(types.name) && !this.state.type.keyword) {\n\t          // `import {type as ,` or `import {type as }`\n\t          specifier.imported = as_ident;\n\t          specifier.importKind = specifierTypeKind;\n\t          specifier.local = as_ident.__clone();\n\t        } else {\n\t          // `import {type as foo`\n\t          specifier.imported = firstIdent;\n\t          specifier.importKind = null;\n\t          specifier.local = this.parseIdentifier();\n\t        }\n\t      } else if (specifierTypeKind !== null && (this.match(types.name) || this.state.type.keyword)) {\n\t        // `import {type foo`\n\t        specifier.imported = this.parseIdentifier(true);\n\t        specifier.importKind = specifierTypeKind;\n\t        if (this.eatContextual(\"as\")) {\n\t          specifier.local = this.parseIdentifier();\n\t        } else {\n\t          isBinding = true;\n\t          specifier.local = specifier.imported.__clone();\n\t        }\n\t      } else {\n\t        isBinding = true;\n\t        specifier.imported = firstIdent;\n\t        specifier.importKind = null;\n\t        specifier.local = specifier.imported.__clone();\n\t      }\n\n\t      if ((node.importKind === \"type\" || node.importKind === \"typeof\") && (specifier.importKind === \"type\" || specifier.importKind === \"typeof\")) {\n\t        this.raise(firstIdentLoc, \"`The `type` and `typeof` keywords on named imports can only be used on regular `import` statements. It cannot be used with `import type` or `import typeof` statements`\");\n\t      }\n\n\t      if (isBinding) this.checkReservedWord(specifier.local.name, specifier.start, true, true);\n\n\t      this.checkLVal(specifier.local, true, undefined, \"import specifier\");\n\t      node.specifiers.push(this.finishNode(specifier, \"ImportSpecifier\"));\n\t    };\n\t  });\n\n\t  // parse function type parameters - function foo<T>() {}\n\t  instance.extend(\"parseFunctionParams\", function (inner) {\n\t    return function (node) {\n\t      if (this.isRelational(\"<\")) {\n\t        node.typeParameters = this.flowParseTypeParameterDeclaration();\n\t      }\n\t      inner.call(this, node);\n\t    };\n\t  });\n\n\t  // parse flow type annotations on variable declarator heads - let foo: string = bar\n\t  instance.extend(\"parseVarHead\", function (inner) {\n\t    return function (decl) {\n\t      inner.call(this, decl);\n\t      if (this.match(types.colon)) {\n\t        decl.id.typeAnnotation = this.flowParseTypeAnnotation();\n\t        this.finishNode(decl.id, decl.id.type);\n\t      }\n\t    };\n\t  });\n\n\t  // parse the return type of an async arrow function - let foo = (async (): number => {});\n\t  instance.extend(\"parseAsyncArrowFromCallExpression\", function (inner) {\n\t    return function (node, call) {\n\t      if (this.match(types.colon)) {\n\t        var oldNoAnonFunctionType = this.state.noAnonFunctionType;\n\t        this.state.noAnonFunctionType = true;\n\t        node.returnType = this.flowParseTypeAnnotation();\n\t        this.state.noAnonFunctionType = oldNoAnonFunctionType;\n\t      }\n\n\t      return inner.call(this, node, call);\n\t    };\n\t  });\n\n\t  // todo description\n\t  instance.extend(\"shouldParseAsyncArrow\", function (inner) {\n\t    return function () {\n\t      return this.match(types.colon) || inner.call(this);\n\t    };\n\t  });\n\n\t  // We need to support type parameter declarations for arrow functions. This\n\t  // is tricky. There are three situations we need to handle\n\t  //\n\t  // 1. This is either JSX or an arrow function. We'll try JSX first. If that\n\t  //    fails, we'll try an arrow function. If that fails, we'll throw the JSX\n\t  //    error.\n\t  // 2. This is an arrow function. We'll parse the type parameter declaration,\n\t  //    parse the rest, make sure the rest is an arrow function, and go from\n\t  //    there\n\t  // 3. This is neither. Just call the inner function\n\t  instance.extend(\"parseMaybeAssign\", function (inner) {\n\t    return function () {\n\t      var jsxError = null;\n\n\t      for (var _len4 = arguments.length, args = Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {\n\t        args[_key4] = arguments[_key4];\n\t      }\n\n\t      if (types.jsxTagStart && this.match(types.jsxTagStart)) {\n\t        var state = this.state.clone();\n\t        try {\n\t          return inner.apply(this, args);\n\t        } catch (err) {\n\t          if (err instanceof SyntaxError) {\n\t            this.state = state;\n\n\t            // Remove `tc.j_expr` and `tc.j_oTag` from context added\n\t            // by parsing `jsxTagStart` to stop the JSX plugin from\n\t            // messing with the tokens\n\t            this.state.context.length -= 2;\n\n\t            jsxError = err;\n\t          } else {\n\t            // istanbul ignore next: no such error is expected\n\t            throw err;\n\t          }\n\t        }\n\t      }\n\n\t      if (jsxError != null || this.isRelational(\"<\")) {\n\t        var arrowExpression = void 0;\n\t        var typeParameters = void 0;\n\t        try {\n\t          typeParameters = this.flowParseTypeParameterDeclaration();\n\n\t          arrowExpression = inner.apply(this, args);\n\t          arrowExpression.typeParameters = typeParameters;\n\t          arrowExpression.start = typeParameters.start;\n\t          arrowExpression.loc.start = typeParameters.loc.start;\n\t        } catch (err) {\n\t          throw jsxError || err;\n\t        }\n\n\t        if (arrowExpression.type === \"ArrowFunctionExpression\") {\n\t          return arrowExpression;\n\t        } else if (jsxError != null) {\n\t          throw jsxError;\n\t        } else {\n\t          this.raise(typeParameters.start, \"Expected an arrow function after this type parameter declaration\");\n\t        }\n\t      }\n\n\t      return inner.apply(this, args);\n\t    };\n\t  });\n\n\t  // handle return types for arrow functions\n\t  instance.extend(\"parseArrow\", function (inner) {\n\t    return function (node) {\n\t      if (this.match(types.colon)) {\n\t        var state = this.state.clone();\n\t        try {\n\t          var oldNoAnonFunctionType = this.state.noAnonFunctionType;\n\t          this.state.noAnonFunctionType = true;\n\t          var returnType = this.flowParseTypeAndPredicateAnnotation();\n\t          this.state.noAnonFunctionType = oldNoAnonFunctionType;\n\n\t          if (this.canInsertSemicolon()) this.unexpected();\n\t          if (!this.match(types.arrow)) this.unexpected();\n\t          // assign after it is clear it is an arrow\n\t          node.returnType = returnType;\n\t        } catch (err) {\n\t          if (err instanceof SyntaxError) {\n\t            this.state = state;\n\t          } else {\n\t            // istanbul ignore next: no such error is expected\n\t            throw err;\n\t          }\n\t        }\n\t      }\n\n\t      return inner.call(this, node);\n\t    };\n\t  });\n\n\t  instance.extend(\"shouldParseArrow\", function (inner) {\n\t    return function () {\n\t      return this.match(types.colon) || inner.call(this);\n\t    };\n\t  });\n\t};\n\n\t// Adapted from String.fromcodepoint to export the function without modifying String\n\t/*! https://mths.be/fromcodepoint v0.2.1 by @mathias */\n\n\t// The MIT License (MIT)\n\t// Copyright (c) Mathias Bynens\n\t//\n\t// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and\n\t// associated documentation files (the \"Software\"), to deal in the Software without restriction,\n\t// including without limitation the rights to use, copy, modify, merge, publish, distribute,\n\t// sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\n\t// furnished to do so, subject to the following conditions:\n\t//\n\t// The above copyright notice and this permission notice shall be included in all copies or\n\t// substantial portions of the Software.\n\t//\n\t// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT\n\t// NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n\t// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n\t// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n\t// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\tvar fromCodePoint = String.fromCodePoint;\n\n\tif (!fromCodePoint) {\n\t  var stringFromCharCode = String.fromCharCode;\n\t  var floor = Math.floor;\n\t  fromCodePoint = function fromCodePoint() {\n\t    var MAX_SIZE = 0x4000;\n\t    var codeUnits = [];\n\t    var highSurrogate = void 0;\n\t    var lowSurrogate = void 0;\n\t    var index = -1;\n\t    var length = arguments.length;\n\t    if (!length) {\n\t      return \"\";\n\t    }\n\t    var result = \"\";\n\t    while (++index < length) {\n\t      var codePoint = Number(arguments[index]);\n\t      if (!isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`\n\t      codePoint < 0 || // not a valid Unicode code point\n\t      codePoint > 0x10FFFF || // not a valid Unicode code point\n\t      floor(codePoint) != codePoint // not an integer\n\t      ) {\n\t          throw RangeError(\"Invalid code point: \" + codePoint);\n\t        }\n\t      if (codePoint <= 0xFFFF) {\n\t        // BMP code point\n\t        codeUnits.push(codePoint);\n\t      } else {\n\t        // Astral code point; split in surrogate halves\n\t        // https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n\t        codePoint -= 0x10000;\n\t        highSurrogate = (codePoint >> 10) + 0xD800;\n\t        lowSurrogate = codePoint % 0x400 + 0xDC00;\n\t        codeUnits.push(highSurrogate, lowSurrogate);\n\t      }\n\t      if (index + 1 == length || codeUnits.length > MAX_SIZE) {\n\t        result += stringFromCharCode.apply(null, codeUnits);\n\t        codeUnits.length = 0;\n\t      }\n\t    }\n\t    return result;\n\t  };\n\t}\n\n\tvar fromCodePoint$1 = fromCodePoint;\n\n\tvar XHTMLEntities = {\n\t  quot: \"\\\"\",\n\t  amp: \"&\",\n\t  apos: \"'\",\n\t  lt: \"<\",\n\t  gt: \">\",\n\t  nbsp: \"\\xA0\",\n\t  iexcl: \"\\xA1\",\n\t  cent: \"\\xA2\",\n\t  pound: \"\\xA3\",\n\t  curren: \"\\xA4\",\n\t  yen: \"\\xA5\",\n\t  brvbar: \"\\xA6\",\n\t  sect: \"\\xA7\",\n\t  uml: \"\\xA8\",\n\t  copy: \"\\xA9\",\n\t  ordf: \"\\xAA\",\n\t  laquo: \"\\xAB\",\n\t  not: \"\\xAC\",\n\t  shy: \"\\xAD\",\n\t  reg: \"\\xAE\",\n\t  macr: \"\\xAF\",\n\t  deg: \"\\xB0\",\n\t  plusmn: \"\\xB1\",\n\t  sup2: \"\\xB2\",\n\t  sup3: \"\\xB3\",\n\t  acute: \"\\xB4\",\n\t  micro: \"\\xB5\",\n\t  para: \"\\xB6\",\n\t  middot: \"\\xB7\",\n\t  cedil: \"\\xB8\",\n\t  sup1: \"\\xB9\",\n\t  ordm: \"\\xBA\",\n\t  raquo: \"\\xBB\",\n\t  frac14: \"\\xBC\",\n\t  frac12: \"\\xBD\",\n\t  frac34: \"\\xBE\",\n\t  iquest: \"\\xBF\",\n\t  Agrave: \"\\xC0\",\n\t  Aacute: \"\\xC1\",\n\t  Acirc: \"\\xC2\",\n\t  Atilde: \"\\xC3\",\n\t  Auml: \"\\xC4\",\n\t  Aring: \"\\xC5\",\n\t  AElig: \"\\xC6\",\n\t  Ccedil: \"\\xC7\",\n\t  Egrave: \"\\xC8\",\n\t  Eacute: \"\\xC9\",\n\t  Ecirc: \"\\xCA\",\n\t  Euml: \"\\xCB\",\n\t  Igrave: \"\\xCC\",\n\t  Iacute: \"\\xCD\",\n\t  Icirc: \"\\xCE\",\n\t  Iuml: \"\\xCF\",\n\t  ETH: \"\\xD0\",\n\t  Ntilde: \"\\xD1\",\n\t  Ograve: \"\\xD2\",\n\t  Oacute: \"\\xD3\",\n\t  Ocirc: \"\\xD4\",\n\t  Otilde: \"\\xD5\",\n\t  Ouml: \"\\xD6\",\n\t  times: \"\\xD7\",\n\t  Oslash: \"\\xD8\",\n\t  Ugrave: \"\\xD9\",\n\t  Uacute: \"\\xDA\",\n\t  Ucirc: \"\\xDB\",\n\t  Uuml: \"\\xDC\",\n\t  Yacute: \"\\xDD\",\n\t  THORN: \"\\xDE\",\n\t  szlig: \"\\xDF\",\n\t  agrave: \"\\xE0\",\n\t  aacute: \"\\xE1\",\n\t  acirc: \"\\xE2\",\n\t  atilde: \"\\xE3\",\n\t  auml: \"\\xE4\",\n\t  aring: \"\\xE5\",\n\t  aelig: \"\\xE6\",\n\t  ccedil: \"\\xE7\",\n\t  egrave: \"\\xE8\",\n\t  eacute: \"\\xE9\",\n\t  ecirc: \"\\xEA\",\n\t  euml: \"\\xEB\",\n\t  igrave: \"\\xEC\",\n\t  iacute: \"\\xED\",\n\t  icirc: \"\\xEE\",\n\t  iuml: \"\\xEF\",\n\t  eth: \"\\xF0\",\n\t  ntilde: \"\\xF1\",\n\t  ograve: \"\\xF2\",\n\t  oacute: \"\\xF3\",\n\t  ocirc: \"\\xF4\",\n\t  otilde: \"\\xF5\",\n\t  ouml: \"\\xF6\",\n\t  divide: \"\\xF7\",\n\t  oslash: \"\\xF8\",\n\t  ugrave: \"\\xF9\",\n\t  uacute: \"\\xFA\",\n\t  ucirc: \"\\xFB\",\n\t  uuml: \"\\xFC\",\n\t  yacute: \"\\xFD\",\n\t  thorn: \"\\xFE\",\n\t  yuml: \"\\xFF\",\n\t  OElig: '\\u0152',\n\t  oelig: '\\u0153',\n\t  Scaron: '\\u0160',\n\t  scaron: '\\u0161',\n\t  Yuml: '\\u0178',\n\t  fnof: '\\u0192',\n\t  circ: '\\u02C6',\n\t  tilde: '\\u02DC',\n\t  Alpha: '\\u0391',\n\t  Beta: '\\u0392',\n\t  Gamma: '\\u0393',\n\t  Delta: '\\u0394',\n\t  Epsilon: '\\u0395',\n\t  Zeta: '\\u0396',\n\t  Eta: '\\u0397',\n\t  Theta: '\\u0398',\n\t  Iota: '\\u0399',\n\t  Kappa: '\\u039A',\n\t  Lambda: '\\u039B',\n\t  Mu: '\\u039C',\n\t  Nu: '\\u039D',\n\t  Xi: '\\u039E',\n\t  Omicron: '\\u039F',\n\t  Pi: '\\u03A0',\n\t  Rho: '\\u03A1',\n\t  Sigma: '\\u03A3',\n\t  Tau: '\\u03A4',\n\t  Upsilon: '\\u03A5',\n\t  Phi: '\\u03A6',\n\t  Chi: '\\u03A7',\n\t  Psi: '\\u03A8',\n\t  Omega: '\\u03A9',\n\t  alpha: '\\u03B1',\n\t  beta: '\\u03B2',\n\t  gamma: '\\u03B3',\n\t  delta: '\\u03B4',\n\t  epsilon: '\\u03B5',\n\t  zeta: '\\u03B6',\n\t  eta: '\\u03B7',\n\t  theta: '\\u03B8',\n\t  iota: '\\u03B9',\n\t  kappa: '\\u03BA',\n\t  lambda: '\\u03BB',\n\t  mu: '\\u03BC',\n\t  nu: '\\u03BD',\n\t  xi: '\\u03BE',\n\t  omicron: '\\u03BF',\n\t  pi: '\\u03C0',\n\t  rho: '\\u03C1',\n\t  sigmaf: '\\u03C2',\n\t  sigma: '\\u03C3',\n\t  tau: '\\u03C4',\n\t  upsilon: '\\u03C5',\n\t  phi: '\\u03C6',\n\t  chi: '\\u03C7',\n\t  psi: '\\u03C8',\n\t  omega: '\\u03C9',\n\t  thetasym: '\\u03D1',\n\t  upsih: '\\u03D2',\n\t  piv: '\\u03D6',\n\t  ensp: '\\u2002',\n\t  emsp: '\\u2003',\n\t  thinsp: '\\u2009',\n\t  zwnj: '\\u200C',\n\t  zwj: '\\u200D',\n\t  lrm: '\\u200E',\n\t  rlm: '\\u200F',\n\t  ndash: '\\u2013',\n\t  mdash: '\\u2014',\n\t  lsquo: '\\u2018',\n\t  rsquo: '\\u2019',\n\t  sbquo: '\\u201A',\n\t  ldquo: '\\u201C',\n\t  rdquo: '\\u201D',\n\t  bdquo: '\\u201E',\n\t  dagger: '\\u2020',\n\t  Dagger: '\\u2021',\n\t  bull: '\\u2022',\n\t  hellip: '\\u2026',\n\t  permil: '\\u2030',\n\t  prime: '\\u2032',\n\t  Prime: '\\u2033',\n\t  lsaquo: '\\u2039',\n\t  rsaquo: '\\u203A',\n\t  oline: '\\u203E',\n\t  frasl: '\\u2044',\n\t  euro: '\\u20AC',\n\t  image: '\\u2111',\n\t  weierp: '\\u2118',\n\t  real: '\\u211C',\n\t  trade: '\\u2122',\n\t  alefsym: '\\u2135',\n\t  larr: '\\u2190',\n\t  uarr: '\\u2191',\n\t  rarr: '\\u2192',\n\t  darr: '\\u2193',\n\t  harr: '\\u2194',\n\t  crarr: '\\u21B5',\n\t  lArr: '\\u21D0',\n\t  uArr: '\\u21D1',\n\t  rArr: '\\u21D2',\n\t  dArr: '\\u21D3',\n\t  hArr: '\\u21D4',\n\t  forall: '\\u2200',\n\t  part: '\\u2202',\n\t  exist: '\\u2203',\n\t  empty: '\\u2205',\n\t  nabla: '\\u2207',\n\t  isin: '\\u2208',\n\t  notin: '\\u2209',\n\t  ni: '\\u220B',\n\t  prod: '\\u220F',\n\t  sum: '\\u2211',\n\t  minus: '\\u2212',\n\t  lowast: '\\u2217',\n\t  radic: '\\u221A',\n\t  prop: '\\u221D',\n\t  infin: '\\u221E',\n\t  ang: '\\u2220',\n\t  and: '\\u2227',\n\t  or: '\\u2228',\n\t  cap: '\\u2229',\n\t  cup: '\\u222A',\n\t  \"int\": '\\u222B',\n\t  there4: '\\u2234',\n\t  sim: '\\u223C',\n\t  cong: '\\u2245',\n\t  asymp: '\\u2248',\n\t  ne: '\\u2260',\n\t  equiv: '\\u2261',\n\t  le: '\\u2264',\n\t  ge: '\\u2265',\n\t  sub: '\\u2282',\n\t  sup: '\\u2283',\n\t  nsub: '\\u2284',\n\t  sube: '\\u2286',\n\t  supe: '\\u2287',\n\t  oplus: '\\u2295',\n\t  otimes: '\\u2297',\n\t  perp: '\\u22A5',\n\t  sdot: '\\u22C5',\n\t  lceil: '\\u2308',\n\t  rceil: '\\u2309',\n\t  lfloor: '\\u230A',\n\t  rfloor: '\\u230B',\n\t  lang: '\\u2329',\n\t  rang: '\\u232A',\n\t  loz: '\\u25CA',\n\t  spades: '\\u2660',\n\t  clubs: '\\u2663',\n\t  hearts: '\\u2665',\n\t  diams: '\\u2666'\n\t};\n\n\tvar HEX_NUMBER = /^[\\da-fA-F]+$/;\n\tvar DECIMAL_NUMBER = /^\\d+$/;\n\n\ttypes$1.j_oTag = new TokContext(\"<tag\", false);\n\ttypes$1.j_cTag = new TokContext(\"</tag\", false);\n\ttypes$1.j_expr = new TokContext(\"<tag>...</tag>\", true, true);\n\n\ttypes.jsxName = new TokenType(\"jsxName\");\n\ttypes.jsxText = new TokenType(\"jsxText\", { beforeExpr: true });\n\ttypes.jsxTagStart = new TokenType(\"jsxTagStart\", { startsExpr: true });\n\ttypes.jsxTagEnd = new TokenType(\"jsxTagEnd\");\n\n\ttypes.jsxTagStart.updateContext = function () {\n\t  this.state.context.push(types$1.j_expr); // treat as beginning of JSX expression\n\t  this.state.context.push(types$1.j_oTag); // start opening tag context\n\t  this.state.exprAllowed = false;\n\t};\n\n\ttypes.jsxTagEnd.updateContext = function (prevType) {\n\t  var out = this.state.context.pop();\n\t  if (out === types$1.j_oTag && prevType === types.slash || out === types$1.j_cTag) {\n\t    this.state.context.pop();\n\t    this.state.exprAllowed = this.curContext() === types$1.j_expr;\n\t  } else {\n\t    this.state.exprAllowed = true;\n\t  }\n\t};\n\n\tvar pp$9 = Parser.prototype;\n\n\t// Reads inline JSX contents token.\n\n\tpp$9.jsxReadToken = function () {\n\t  var out = \"\";\n\t  var chunkStart = this.state.pos;\n\t  for (;;) {\n\t    if (this.state.pos >= this.input.length) {\n\t      this.raise(this.state.start, \"Unterminated JSX contents\");\n\t    }\n\n\t    var ch = this.input.charCodeAt(this.state.pos);\n\n\t    switch (ch) {\n\t      case 60: // \"<\"\n\t      case 123:\n\t        // \"{\"\n\t        if (this.state.pos === this.state.start) {\n\t          if (ch === 60 && this.state.exprAllowed) {\n\t            ++this.state.pos;\n\t            return this.finishToken(types.jsxTagStart);\n\t          }\n\t          return this.getTokenFromCode(ch);\n\t        }\n\t        out += this.input.slice(chunkStart, this.state.pos);\n\t        return this.finishToken(types.jsxText, out);\n\n\t      case 38:\n\t        // \"&\"\n\t        out += this.input.slice(chunkStart, this.state.pos);\n\t        out += this.jsxReadEntity();\n\t        chunkStart = this.state.pos;\n\t        break;\n\n\t      default:\n\t        if (isNewLine(ch)) {\n\t          out += this.input.slice(chunkStart, this.state.pos);\n\t          out += this.jsxReadNewLine(true);\n\t          chunkStart = this.state.pos;\n\t        } else {\n\t          ++this.state.pos;\n\t        }\n\t    }\n\t  }\n\t};\n\n\tpp$9.jsxReadNewLine = function (normalizeCRLF) {\n\t  var ch = this.input.charCodeAt(this.state.pos);\n\t  var out = void 0;\n\t  ++this.state.pos;\n\t  if (ch === 13 && this.input.charCodeAt(this.state.pos) === 10) {\n\t    ++this.state.pos;\n\t    out = normalizeCRLF ? \"\\n\" : \"\\r\\n\";\n\t  } else {\n\t    out = String.fromCharCode(ch);\n\t  }\n\t  ++this.state.curLine;\n\t  this.state.lineStart = this.state.pos;\n\n\t  return out;\n\t};\n\n\tpp$9.jsxReadString = function (quote) {\n\t  var out = \"\";\n\t  var chunkStart = ++this.state.pos;\n\t  for (;;) {\n\t    if (this.state.pos >= this.input.length) {\n\t      this.raise(this.state.start, \"Unterminated string constant\");\n\t    }\n\n\t    var ch = this.input.charCodeAt(this.state.pos);\n\t    if (ch === quote) break;\n\t    if (ch === 38) {\n\t      // \"&\"\n\t      out += this.input.slice(chunkStart, this.state.pos);\n\t      out += this.jsxReadEntity();\n\t      chunkStart = this.state.pos;\n\t    } else if (isNewLine(ch)) {\n\t      out += this.input.slice(chunkStart, this.state.pos);\n\t      out += this.jsxReadNewLine(false);\n\t      chunkStart = this.state.pos;\n\t    } else {\n\t      ++this.state.pos;\n\t    }\n\t  }\n\t  out += this.input.slice(chunkStart, this.state.pos++);\n\t  return this.finishToken(types.string, out);\n\t};\n\n\tpp$9.jsxReadEntity = function () {\n\t  var str = \"\";\n\t  var count = 0;\n\t  var entity = void 0;\n\t  var ch = this.input[this.state.pos];\n\n\t  var startPos = ++this.state.pos;\n\t  while (this.state.pos < this.input.length && count++ < 10) {\n\t    ch = this.input[this.state.pos++];\n\t    if (ch === \";\") {\n\t      if (str[0] === \"#\") {\n\t        if (str[1] === \"x\") {\n\t          str = str.substr(2);\n\t          if (HEX_NUMBER.test(str)) entity = fromCodePoint$1(parseInt(str, 16));\n\t        } else {\n\t          str = str.substr(1);\n\t          if (DECIMAL_NUMBER.test(str)) entity = fromCodePoint$1(parseInt(str, 10));\n\t        }\n\t      } else {\n\t        entity = XHTMLEntities[str];\n\t      }\n\t      break;\n\t    }\n\t    str += ch;\n\t  }\n\t  if (!entity) {\n\t    this.state.pos = startPos;\n\t    return \"&\";\n\t  }\n\t  return entity;\n\t};\n\n\t// Read a JSX identifier (valid tag or attribute name).\n\t//\n\t// Optimized version since JSX identifiers can\"t contain\n\t// escape characters and so can be read as single slice.\n\t// Also assumes that first character was already checked\n\t// by isIdentifierStart in readToken.\n\n\tpp$9.jsxReadWord = function () {\n\t  var ch = void 0;\n\t  var start = this.state.pos;\n\t  do {\n\t    ch = this.input.charCodeAt(++this.state.pos);\n\t  } while (isIdentifierChar(ch) || ch === 45); // \"-\"\n\t  return this.finishToken(types.jsxName, this.input.slice(start, this.state.pos));\n\t};\n\n\t// Transforms JSX element name to string.\n\n\tfunction getQualifiedJSXName(object) {\n\t  if (object.type === \"JSXIdentifier\") {\n\t    return object.name;\n\t  }\n\n\t  if (object.type === \"JSXNamespacedName\") {\n\t    return object.namespace.name + \":\" + object.name.name;\n\t  }\n\n\t  if (object.type === \"JSXMemberExpression\") {\n\t    return getQualifiedJSXName(object.object) + \".\" + getQualifiedJSXName(object.property);\n\t  }\n\t}\n\n\t// Parse next token as JSX identifier\n\n\tpp$9.jsxParseIdentifier = function () {\n\t  var node = this.startNode();\n\t  if (this.match(types.jsxName)) {\n\t    node.name = this.state.value;\n\t  } else if (this.state.type.keyword) {\n\t    node.name = this.state.type.keyword;\n\t  } else {\n\t    this.unexpected();\n\t  }\n\t  this.next();\n\t  return this.finishNode(node, \"JSXIdentifier\");\n\t};\n\n\t// Parse namespaced identifier.\n\n\tpp$9.jsxParseNamespacedName = function () {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var name = this.jsxParseIdentifier();\n\t  if (!this.eat(types.colon)) return name;\n\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  node.namespace = name;\n\t  node.name = this.jsxParseIdentifier();\n\t  return this.finishNode(node, \"JSXNamespacedName\");\n\t};\n\n\t// Parses element name in any form - namespaced, member\n\t// or single identifier.\n\n\tpp$9.jsxParseElementName = function () {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  var node = this.jsxParseNamespacedName();\n\t  while (this.eat(types.dot)) {\n\t    var newNode = this.startNodeAt(startPos, startLoc);\n\t    newNode.object = node;\n\t    newNode.property = this.jsxParseIdentifier();\n\t    node = this.finishNode(newNode, \"JSXMemberExpression\");\n\t  }\n\t  return node;\n\t};\n\n\t// Parses any type of JSX attribute value.\n\n\tpp$9.jsxParseAttributeValue = function () {\n\t  var node = void 0;\n\t  switch (this.state.type) {\n\t    case types.braceL:\n\t      node = this.jsxParseExpressionContainer();\n\t      if (node.expression.type === \"JSXEmptyExpression\") {\n\t        this.raise(node.start, \"JSX attributes must only be assigned a non-empty expression\");\n\t      } else {\n\t        return node;\n\t      }\n\n\t    case types.jsxTagStart:\n\t    case types.string:\n\t      node = this.parseExprAtom();\n\t      node.extra = null;\n\t      return node;\n\n\t    default:\n\t      this.raise(this.state.start, \"JSX value should be either an expression or a quoted JSX text\");\n\t  }\n\t};\n\n\t// JSXEmptyExpression is unique type since it doesn't actually parse anything,\n\t// and so it should start at the end of last read token (left brace) and finish\n\t// at the beginning of the next one (right brace).\n\n\tpp$9.jsxParseEmptyExpression = function () {\n\t  var node = this.startNodeAt(this.state.lastTokEnd, this.state.lastTokEndLoc);\n\t  return this.finishNodeAt(node, \"JSXEmptyExpression\", this.state.start, this.state.startLoc);\n\t};\n\n\t// Parse JSX spread child\n\n\tpp$9.jsxParseSpreadChild = function () {\n\t  var node = this.startNode();\n\t  this.expect(types.braceL);\n\t  this.expect(types.ellipsis);\n\t  node.expression = this.parseExpression();\n\t  this.expect(types.braceR);\n\n\t  return this.finishNode(node, \"JSXSpreadChild\");\n\t};\n\n\t// Parses JSX expression enclosed into curly brackets.\n\n\n\tpp$9.jsxParseExpressionContainer = function () {\n\t  var node = this.startNode();\n\t  this.next();\n\t  if (this.match(types.braceR)) {\n\t    node.expression = this.jsxParseEmptyExpression();\n\t  } else {\n\t    node.expression = this.parseExpression();\n\t  }\n\t  this.expect(types.braceR);\n\t  return this.finishNode(node, \"JSXExpressionContainer\");\n\t};\n\n\t// Parses following JSX attribute name-value pair.\n\n\tpp$9.jsxParseAttribute = function () {\n\t  var node = this.startNode();\n\t  if (this.eat(types.braceL)) {\n\t    this.expect(types.ellipsis);\n\t    node.argument = this.parseMaybeAssign();\n\t    this.expect(types.braceR);\n\t    return this.finishNode(node, \"JSXSpreadAttribute\");\n\t  }\n\t  node.name = this.jsxParseNamespacedName();\n\t  node.value = this.eat(types.eq) ? this.jsxParseAttributeValue() : null;\n\t  return this.finishNode(node, \"JSXAttribute\");\n\t};\n\n\t// Parses JSX opening tag starting after \"<\".\n\n\tpp$9.jsxParseOpeningElementAt = function (startPos, startLoc) {\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  node.attributes = [];\n\t  node.name = this.jsxParseElementName();\n\t  while (!this.match(types.slash) && !this.match(types.jsxTagEnd)) {\n\t    node.attributes.push(this.jsxParseAttribute());\n\t  }\n\t  node.selfClosing = this.eat(types.slash);\n\t  this.expect(types.jsxTagEnd);\n\t  return this.finishNode(node, \"JSXOpeningElement\");\n\t};\n\n\t// Parses JSX closing tag starting after \"</\".\n\n\tpp$9.jsxParseClosingElementAt = function (startPos, startLoc) {\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  node.name = this.jsxParseElementName();\n\t  this.expect(types.jsxTagEnd);\n\t  return this.finishNode(node, \"JSXClosingElement\");\n\t};\n\n\t// Parses entire JSX element, including it\"s opening tag\n\t// (starting after \"<\"), attributes, contents and closing tag.\n\n\tpp$9.jsxParseElementAt = function (startPos, startLoc) {\n\t  var node = this.startNodeAt(startPos, startLoc);\n\t  var children = [];\n\t  var openingElement = this.jsxParseOpeningElementAt(startPos, startLoc);\n\t  var closingElement = null;\n\n\t  if (!openingElement.selfClosing) {\n\t    contents: for (;;) {\n\t      switch (this.state.type) {\n\t        case types.jsxTagStart:\n\t          startPos = this.state.start;startLoc = this.state.startLoc;\n\t          this.next();\n\t          if (this.eat(types.slash)) {\n\t            closingElement = this.jsxParseClosingElementAt(startPos, startLoc);\n\t            break contents;\n\t          }\n\t          children.push(this.jsxParseElementAt(startPos, startLoc));\n\t          break;\n\n\t        case types.jsxText:\n\t          children.push(this.parseExprAtom());\n\t          break;\n\n\t        case types.braceL:\n\t          if (this.lookahead().type === types.ellipsis) {\n\t            children.push(this.jsxParseSpreadChild());\n\t          } else {\n\t            children.push(this.jsxParseExpressionContainer());\n\t          }\n\n\t          break;\n\n\t        // istanbul ignore next - should never happen\n\t        default:\n\t          this.unexpected();\n\t      }\n\t    }\n\n\t    if (getQualifiedJSXName(closingElement.name) !== getQualifiedJSXName(openingElement.name)) {\n\t      this.raise(closingElement.start, \"Expected corresponding JSX closing tag for <\" + getQualifiedJSXName(openingElement.name) + \">\");\n\t    }\n\t  }\n\n\t  node.openingElement = openingElement;\n\t  node.closingElement = closingElement;\n\t  node.children = children;\n\t  if (this.match(types.relational) && this.state.value === \"<\") {\n\t    this.raise(this.state.start, \"Adjacent JSX elements must be wrapped in an enclosing tag\");\n\t  }\n\t  return this.finishNode(node, \"JSXElement\");\n\t};\n\n\t// Parses entire JSX element from current position.\n\n\tpp$9.jsxParseElement = function () {\n\t  var startPos = this.state.start;\n\t  var startLoc = this.state.startLoc;\n\t  this.next();\n\t  return this.jsxParseElementAt(startPos, startLoc);\n\t};\n\n\tvar jsxPlugin = function jsxPlugin(instance) {\n\t  instance.extend(\"parseExprAtom\", function (inner) {\n\t    return function (refShortHandDefaultPos) {\n\t      if (this.match(types.jsxText)) {\n\t        var node = this.parseLiteral(this.state.value, \"JSXText\");\n\t        // https://github.com/babel/babel/issues/2078\n\t        node.extra = null;\n\t        return node;\n\t      } else if (this.match(types.jsxTagStart)) {\n\t        return this.jsxParseElement();\n\t      } else {\n\t        return inner.call(this, refShortHandDefaultPos);\n\t      }\n\t    };\n\t  });\n\n\t  instance.extend(\"readToken\", function (inner) {\n\t    return function (code) {\n\t      if (this.state.inPropertyName) return inner.call(this, code);\n\n\t      var context = this.curContext();\n\n\t      if (context === types$1.j_expr) {\n\t        return this.jsxReadToken();\n\t      }\n\n\t      if (context === types$1.j_oTag || context === types$1.j_cTag) {\n\t        if (isIdentifierStart(code)) {\n\t          return this.jsxReadWord();\n\t        }\n\n\t        if (code === 62) {\n\t          ++this.state.pos;\n\t          return this.finishToken(types.jsxTagEnd);\n\t        }\n\n\t        if ((code === 34 || code === 39) && context === types$1.j_oTag) {\n\t          return this.jsxReadString(code);\n\t        }\n\t      }\n\n\t      if (code === 60 && this.state.exprAllowed) {\n\t        ++this.state.pos;\n\t        return this.finishToken(types.jsxTagStart);\n\t      }\n\n\t      return inner.call(this, code);\n\t    };\n\t  });\n\n\t  instance.extend(\"updateContext\", function (inner) {\n\t    return function (prevType) {\n\t      if (this.match(types.braceL)) {\n\t        var curContext = this.curContext();\n\t        if (curContext === types$1.j_oTag) {\n\t          this.state.context.push(types$1.braceExpression);\n\t        } else if (curContext === types$1.j_expr) {\n\t          this.state.context.push(types$1.templateQuasi);\n\t        } else {\n\t          inner.call(this, prevType);\n\t        }\n\t        this.state.exprAllowed = true;\n\t      } else if (this.match(types.slash) && prevType === types.jsxTagStart) {\n\t        this.state.context.length -= 2; // do not consider JSX expr -> JSX open tag -> ... anymore\n\t        this.state.context.push(types$1.j_cTag); // reconsider as closing tag context\n\t        this.state.exprAllowed = false;\n\t      } else {\n\t        return inner.call(this, prevType);\n\t      }\n\t    };\n\t  });\n\t};\n\n\tplugins.estree = estreePlugin;\n\tplugins.flow = flowPlugin;\n\tplugins.jsx = jsxPlugin;\n\n\tfunction parse(input, options) {\n\t  return new Parser(options, input).parse();\n\t}\n\n\tfunction parseExpression(input, options) {\n\t  var parser = new Parser(options, input);\n\t  if (parser.options.strictMode) {\n\t    parser.state.strict = true;\n\t  }\n\t  return parser.getExpression();\n\t}\n\n\texports.parse = parse;\n\texports.parseExpression = parseExpression;\n\texports.tokTypes = types;\n\n/***/ }),\n/* 90 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\n\tvar anObject = __webpack_require__(21);\n\tvar dPs = __webpack_require__(431);\n\tvar enumBugKeys = __webpack_require__(141);\n\tvar IE_PROTO = __webpack_require__(150)('IE_PROTO');\n\tvar Empty = function Empty() {/* empty */};\n\tvar PROTOTYPE = 'prototype';\n\n\t// Create object with fake `null` prototype: use iframe Object with cleared prototype\n\tvar _createDict = function createDict() {\n\t  // Thrash, waste and sodomy: IE GC bug\n\t  var iframe = __webpack_require__(230)('iframe');\n\t  var i = enumBugKeys.length;\n\t  var lt = '<';\n\t  var gt = '>';\n\t  var iframeDocument;\n\t  iframe.style.display = 'none';\n\t  __webpack_require__(426).appendChild(iframe);\n\t  iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n\t  // createDict = iframe.contentWindow.Object;\n\t  // html.removeChild(iframe);\n\t  iframeDocument = iframe.contentWindow.document;\n\t  iframeDocument.open();\n\t  iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n\t  iframeDocument.close();\n\t  _createDict = iframeDocument.F;\n\t  while (i--) {\n\t    delete _createDict[PROTOTYPE][enumBugKeys[i]];\n\t  }return _createDict();\n\t};\n\n\tmodule.exports = Object.create || function create(O, Properties) {\n\t  var result;\n\t  if (O !== null) {\n\t    Empty[PROTOTYPE] = anObject(O);\n\t    result = new Empty();\n\t    Empty[PROTOTYPE] = null;\n\t    // add \"__proto__\" for Object.getPrototypeOf polyfill\n\t    result[IE_PROTO] = O;\n\t  } else result = _createDict();\n\t  return Properties === undefined ? result : dPs(result, Properties);\n\t};\n\n/***/ }),\n/* 91 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.f = {}.propertyIsEnumerable;\n\n/***/ }),\n/* 92 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = function (bitmap, value) {\n\t  return {\n\t    enumerable: !(bitmap & 1),\n\t    configurable: !(bitmap & 2),\n\t    writable: !(bitmap & 4),\n\t    value: value\n\t  };\n\t};\n\n/***/ }),\n/* 93 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar def = __webpack_require__(23).f;\n\tvar has = __webpack_require__(28);\n\tvar TAG = __webpack_require__(13)('toStringTag');\n\n\tmodule.exports = function (it, tag, stat) {\n\t  if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n\t};\n\n/***/ }),\n/* 94 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 7.1.13 ToObject(argument)\n\tvar defined = __webpack_require__(140);\n\tmodule.exports = function (it) {\n\t  return Object(defined(it));\n\t};\n\n/***/ }),\n/* 95 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar id = 0;\n\tvar px = Math.random();\n\tmodule.exports = function (key) {\n\t  return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n\t};\n\n/***/ }),\n/* 96 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n/***/ }),\n/* 97 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/*\n\t  Copyright (C) 2013 Yusuke Suzuki <utatane.tea@gmail.com>\n\n\t  Redistribution and use in source and binary forms, with or without\n\t  modification, are permitted provided that the following conditions are met:\n\n\t    * Redistributions of source code must retain the above copyright\n\t      notice, this list of conditions and the following disclaimer.\n\t    * Redistributions in binary form must reproduce the above copyright\n\t      notice, this list of conditions and the following disclaimer in the\n\t      documentation and/or other materials provided with the distribution.\n\n\t  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n\t  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\t  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\t  ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\n\t  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n\t  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n\t  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n\t  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n\t  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t*/\n\n\t(function () {\n\t  'use strict';\n\n\t  exports.ast = __webpack_require__(461);\n\t  exports.code = __webpack_require__(240);\n\t  exports.keyword = __webpack_require__(462);\n\t})();\n\t/* vim: set sw=4 ts=4 et tw=80 : */\n\n/***/ }),\n/* 98 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar listCacheClear = __webpack_require__(546),\n\t    listCacheDelete = __webpack_require__(547),\n\t    listCacheGet = __webpack_require__(548),\n\t    listCacheHas = __webpack_require__(549),\n\t    listCacheSet = __webpack_require__(550);\n\n\t/**\n\t * Creates an list cache object.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction ListCache(entries) {\n\t    var index = -1,\n\t        length = entries == null ? 0 : entries.length;\n\n\t    this.clear();\n\t    while (++index < length) {\n\t        var entry = entries[index];\n\t        this.set(entry[0], entry[1]);\n\t    }\n\t}\n\n\t// Add methods to `ListCache`.\n\tListCache.prototype.clear = listCacheClear;\n\tListCache.prototype['delete'] = listCacheDelete;\n\tListCache.prototype.get = listCacheGet;\n\tListCache.prototype.has = listCacheHas;\n\tListCache.prototype.set = listCacheSet;\n\n\tmodule.exports = ListCache;\n\n/***/ }),\n/* 99 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar ListCache = __webpack_require__(98),\n\t    stackClear = __webpack_require__(565),\n\t    stackDelete = __webpack_require__(566),\n\t    stackGet = __webpack_require__(567),\n\t    stackHas = __webpack_require__(568),\n\t    stackSet = __webpack_require__(569);\n\n\t/**\n\t * Creates a stack cache object to store key-value pairs.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction Stack(entries) {\n\t  var data = this.__data__ = new ListCache(entries);\n\t  this.size = data.size;\n\t}\n\n\t// Add methods to `Stack`.\n\tStack.prototype.clear = stackClear;\n\tStack.prototype['delete'] = stackDelete;\n\tStack.prototype.get = stackGet;\n\tStack.prototype.has = stackHas;\n\tStack.prototype.set = stackSet;\n\n\tmodule.exports = Stack;\n\n/***/ }),\n/* 100 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar eq = __webpack_require__(46);\n\n\t/**\n\t * Gets the index at which the `key` is found in `array` of key-value pairs.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {*} key The key to search for.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction assocIndexOf(array, key) {\n\t  var length = array.length;\n\t  while (length--) {\n\t    if (eq(array[length][0], key)) {\n\t      return length;\n\t    }\n\t  }\n\t  return -1;\n\t}\n\n\tmodule.exports = assocIndexOf;\n\n/***/ }),\n/* 101 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar identity = __webpack_require__(110),\n\t    overRest = __webpack_require__(560),\n\t    setToString = __webpack_require__(563);\n\n\t/**\n\t * The base implementation of `_.rest` which doesn't validate or coerce arguments.\n\t *\n\t * @private\n\t * @param {Function} func The function to apply a rest parameter to.\n\t * @param {number} [start=func.length-1] The start position of the rest parameter.\n\t * @returns {Function} Returns the new function.\n\t */\n\tfunction baseRest(func, start) {\n\t  return setToString(overRest(func, start, identity), func + '');\n\t}\n\n\tmodule.exports = baseRest;\n\n/***/ }),\n/* 102 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.unary` without support for storing metadata.\n\t *\n\t * @private\n\t * @param {Function} func The function to cap arguments for.\n\t * @returns {Function} Returns the new capped function.\n\t */\n\tfunction baseUnary(func) {\n\t  return function (value) {\n\t    return func(value);\n\t  };\n\t}\n\n\tmodule.exports = baseUnary;\n\n/***/ }),\n/* 103 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseRest = __webpack_require__(101),\n\t    isIterateeCall = __webpack_require__(172);\n\n\t/**\n\t * Creates a function like `_.assign`.\n\t *\n\t * @private\n\t * @param {Function} assigner The function to assign values.\n\t * @returns {Function} Returns the new assigner function.\n\t */\n\tfunction createAssigner(assigner) {\n\t  return baseRest(function (object, sources) {\n\t    var index = -1,\n\t        length = sources.length,\n\t        customizer = length > 1 ? sources[length - 1] : undefined,\n\t        guard = length > 2 ? sources[2] : undefined;\n\n\t    customizer = assigner.length > 3 && typeof customizer == 'function' ? (length--, customizer) : undefined;\n\n\t    if (guard && isIterateeCall(sources[0], sources[1], guard)) {\n\t      customizer = length < 3 ? undefined : customizer;\n\t      length = 1;\n\t    }\n\t    object = Object(object);\n\t    while (++index < length) {\n\t      var source = sources[index];\n\t      if (source) {\n\t        assigner(object, source, index, customizer);\n\t      }\n\t    }\n\t    return object;\n\t  });\n\t}\n\n\tmodule.exports = createAssigner;\n\n/***/ }),\n/* 104 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isKeyable = __webpack_require__(544);\n\n\t/**\n\t * Gets the data for `map`.\n\t *\n\t * @private\n\t * @param {Object} map The map to query.\n\t * @param {string} key The reference key.\n\t * @returns {*} Returns the map data.\n\t */\n\tfunction getMapData(map, key) {\n\t  var data = map.__data__;\n\t  return isKeyable(key) ? data[typeof key == 'string' ? 'string' : 'hash'] : data.map;\n\t}\n\n\tmodule.exports = getMapData;\n\n/***/ }),\n/* 105 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/**\n\t * Checks if `value` is likely a prototype object.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\n\t */\n\tfunction isPrototype(value) {\n\t  var Ctor = value && value.constructor,\n\t      proto = typeof Ctor == 'function' && Ctor.prototype || objectProto;\n\n\t  return value === proto;\n\t}\n\n\tmodule.exports = isPrototype;\n\n/***/ }),\n/* 106 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar nativeCreate = getNative(Object, 'create');\n\n\tmodule.exports = nativeCreate;\n\n/***/ }),\n/* 107 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Converts `set` to an array of its values.\n\t *\n\t * @private\n\t * @param {Object} set The set to convert.\n\t * @returns {Array} Returns the values.\n\t */\n\tfunction setToArray(set) {\n\t  var index = -1,\n\t      result = Array(set.size);\n\n\t  set.forEach(function (value) {\n\t    result[++index] = value;\n\t  });\n\t  return result;\n\t}\n\n\tmodule.exports = setToArray;\n\n/***/ }),\n/* 108 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isSymbol = __webpack_require__(62);\n\n\t/** Used as references for various `Number` constants. */\n\tvar INFINITY = 1 / 0;\n\n\t/**\n\t * Converts `value` to a string key if it's not a string or symbol.\n\t *\n\t * @private\n\t * @param {*} value The value to inspect.\n\t * @returns {string|symbol} Returns the key.\n\t */\n\tfunction toKey(value) {\n\t  if (typeof value == 'string' || isSymbol(value)) {\n\t    return value;\n\t  }\n\t  var result = value + '';\n\t  return result == '0' && 1 / value == -INFINITY ? '-0' : result;\n\t}\n\n\tmodule.exports = toKey;\n\n/***/ }),\n/* 109 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseClone = __webpack_require__(164);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_SYMBOLS_FLAG = 4;\n\n\t/**\n\t * Creates a shallow clone of `value`.\n\t *\n\t * **Note:** This method is loosely based on the\n\t * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm)\n\t * and supports cloning arrays, array buffers, booleans, date objects, maps,\n\t * numbers, `Object` objects, regexes, sets, strings, symbols, and typed\n\t * arrays. The own enumerable properties of `arguments` objects are cloned\n\t * as plain objects. An empty object is returned for uncloneable values such\n\t * as error objects, functions, DOM nodes, and WeakMaps.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to clone.\n\t * @returns {*} Returns the cloned value.\n\t * @see _.cloneDeep\n\t * @example\n\t *\n\t * var objects = [{ 'a': 1 }, { 'b': 2 }];\n\t *\n\t * var shallow = _.clone(objects);\n\t * console.log(shallow[0] === objects[0]);\n\t * // => true\n\t */\n\tfunction clone(value) {\n\t  return baseClone(value, CLONE_SYMBOLS_FLAG);\n\t}\n\n\tmodule.exports = clone;\n\n/***/ }),\n/* 110 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This method returns the first argument it receives.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Util\n\t * @param {*} value Any value.\n\t * @returns {*} Returns `value`.\n\t * @example\n\t *\n\t * var object = { 'a': 1 };\n\t *\n\t * console.log(_.identity(object) === object);\n\t * // => true\n\t */\n\tfunction identity(value) {\n\t  return value;\n\t}\n\n\tmodule.exports = identity;\n\n/***/ }),\n/* 111 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIndexOf = __webpack_require__(166),\n\t    isArrayLike = __webpack_require__(24),\n\t    isString = __webpack_require__(587),\n\t    toInteger = __webpack_require__(48),\n\t    values = __webpack_require__(280);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeMax = Math.max;\n\n\t/**\n\t * Checks if `value` is in `collection`. If `collection` is a string, it's\n\t * checked for a substring of `value`, otherwise\n\t * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * is used for equality comparisons. If `fromIndex` is negative, it's used as\n\t * the offset from the end of `collection`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Collection\n\t * @param {Array|Object|string} collection The collection to inspect.\n\t * @param {*} value The value to search for.\n\t * @param {number} [fromIndex=0] The index to search from.\n\t * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`.\n\t * @returns {boolean} Returns `true` if `value` is found, else `false`.\n\t * @example\n\t *\n\t * _.includes([1, 2, 3], 1);\n\t * // => true\n\t *\n\t * _.includes([1, 2, 3], 1, 2);\n\t * // => false\n\t *\n\t * _.includes({ 'a': 1, 'b': 2 }, 1);\n\t * // => true\n\t *\n\t * _.includes('abcd', 'bc');\n\t * // => true\n\t */\n\tfunction includes(collection, value, fromIndex, guard) {\n\t  collection = isArrayLike(collection) ? collection : values(collection);\n\t  fromIndex = fromIndex && !guard ? toInteger(fromIndex) : 0;\n\n\t  var length = collection.length;\n\t  if (fromIndex < 0) {\n\t    fromIndex = nativeMax(length + fromIndex, 0);\n\t  }\n\t  return isString(collection) ? fromIndex <= length && collection.indexOf(value, fromIndex) > -1 : !!length && baseIndexOf(collection, value, fromIndex) > -1;\n\t}\n\n\tmodule.exports = includes;\n\n/***/ }),\n/* 112 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsArguments = __webpack_require__(493),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/** Built-in value references. */\n\tvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n\t/**\n\t * Checks if `value` is likely an `arguments` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n\t *  else `false`.\n\t * @example\n\t *\n\t * _.isArguments(function() { return arguments; }());\n\t * // => true\n\t *\n\t * _.isArguments([1, 2, 3]);\n\t * // => false\n\t */\n\tvar isArguments = baseIsArguments(function () {\n\t    return arguments;\n\t}()) ? baseIsArguments : function (value) {\n\t    return isObjectLike(value) && hasOwnProperty.call(value, 'callee') && !propertyIsEnumerable.call(value, 'callee');\n\t};\n\n\tmodule.exports = isArguments;\n\n/***/ }),\n/* 113 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(module) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar root = __webpack_require__(17),\n\t    stubFalse = __webpack_require__(596);\n\n\t/** Detect free variable `exports`. */\n\tvar freeExports = ( false ? 'undefined' : _typeof(exports)) == 'object' && exports && !exports.nodeType && exports;\n\n\t/** Detect free variable `module`. */\n\tvar freeModule = freeExports && ( false ? 'undefined' : _typeof(module)) == 'object' && module && !module.nodeType && module;\n\n\t/** Detect the popular CommonJS extension `module.exports`. */\n\tvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n\t/** Built-in value references. */\n\tvar Buffer = moduleExports ? root.Buffer : undefined;\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;\n\n\t/**\n\t * Checks if `value` is a buffer.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.3.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\n\t * @example\n\t *\n\t * _.isBuffer(new Buffer(2));\n\t * // => true\n\t *\n\t * _.isBuffer(new Uint8Array(2));\n\t * // => false\n\t */\n\tvar isBuffer = nativeIsBuffer || stubFalse;\n\n\tmodule.exports = isBuffer;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module)))\n\n/***/ }),\n/* 114 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseToString = __webpack_require__(253);\n\n\t/**\n\t * Converts `value` to a string. An empty string is returned for `null`\n\t * and `undefined` values. The sign of `-0` is preserved.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to convert.\n\t * @returns {string} Returns the converted string.\n\t * @example\n\t *\n\t * _.toString(null);\n\t * // => ''\n\t *\n\t * _.toString(-0);\n\t * // => '-0'\n\t *\n\t * _.toString([1, 2, 3]);\n\t * // => '1,2,3'\n\t */\n\tfunction toString(value) {\n\t  return value == null ? '' : baseToString(value);\n\t}\n\n\tmodule.exports = toString;\n\n/***/ }),\n/* 115 */\n96,\n/* 116 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.runtimeProperty = runtimeProperty;\n\texports.isReference = isReference;\n\texports.replaceWithOrRemove = replaceWithOrRemove;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction runtimeProperty(name) {\n\t  return t.memberExpression(t.identifier(\"regeneratorRuntime\"), t.identifier(name), false);\n\t} /**\n\t   * Copyright (c) 2014, Facebook, Inc.\n\t   * All rights reserved.\n\t   *\n\t   * This source code is licensed under the BSD-style license found in the\n\t   * https://raw.github.com/facebook/regenerator/master/LICENSE file. An\n\t   * additional grant of patent rights can be found in the PATENTS file in\n\t   * the same directory.\n\t   */\n\n\tfunction isReference(path) {\n\t  return path.isReferenced() || path.parentPath.isAssignmentExpression({ left: path.node });\n\t}\n\n\tfunction replaceWithOrRemove(path, replacement) {\n\t  if (replacement) {\n\t    path.replaceWith(replacement);\n\t  } else {\n\t    path.remove();\n\t  }\n\t}\n\n/***/ }),\n/* 117 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(global, process) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t// Copyright Joyent, Inc. and other Node contributors.\n\t//\n\t// Permission is hereby granted, free of charge, to any person obtaining a\n\t// copy of this software and associated documentation files (the\n\t// \"Software\"), to deal in the Software without restriction, including\n\t// without limitation the rights to use, copy, modify, merge, publish,\n\t// distribute, sublicense, and/or sell copies of the Software, and to permit\n\t// persons to whom the Software is furnished to do so, subject to the\n\t// following conditions:\n\t//\n\t// The above copyright notice and this permission notice shall be included\n\t// in all copies or substantial portions of the Software.\n\t//\n\t// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS\n\t// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n\t// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n\t// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n\t// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR\n\t// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n\t// USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\tvar formatRegExp = /%[sdj%]/g;\n\texports.format = function (f) {\n\t  if (!isString(f)) {\n\t    var objects = [];\n\t    for (var i = 0; i < arguments.length; i++) {\n\t      objects.push(inspect(arguments[i]));\n\t    }\n\t    return objects.join(' ');\n\t  }\n\n\t  var i = 1;\n\t  var args = arguments;\n\t  var len = args.length;\n\t  var str = String(f).replace(formatRegExp, function (x) {\n\t    if (x === '%%') return '%';\n\t    if (i >= len) return x;\n\t    switch (x) {\n\t      case '%s':\n\t        return String(args[i++]);\n\t      case '%d':\n\t        return Number(args[i++]);\n\t      case '%j':\n\t        try {\n\t          return JSON.stringify(args[i++]);\n\t        } catch (_) {\n\t          return '[Circular]';\n\t        }\n\t      default:\n\t        return x;\n\t    }\n\t  });\n\t  for (var x = args[i]; i < len; x = args[++i]) {\n\t    if (isNull(x) || !isObject(x)) {\n\t      str += ' ' + x;\n\t    } else {\n\t      str += ' ' + inspect(x);\n\t    }\n\t  }\n\t  return str;\n\t};\n\n\t// Mark that a method should not be used.\n\t// Returns a modified function which warns once by default.\n\t// If --no-deprecation is set, then it is a no-op.\n\texports.deprecate = function (fn, msg) {\n\t  // Allow for deprecating things in the process of starting up.\n\t  if (isUndefined(global.process)) {\n\t    return function () {\n\t      return exports.deprecate(fn, msg).apply(this, arguments);\n\t    };\n\t  }\n\n\t  if (process.noDeprecation === true) {\n\t    return fn;\n\t  }\n\n\t  var warned = false;\n\t  function deprecated() {\n\t    if (!warned) {\n\t      if (process.throwDeprecation) {\n\t        throw new Error(msg);\n\t      } else if (process.traceDeprecation) {\n\t        console.trace(msg);\n\t      } else {\n\t        console.error(msg);\n\t      }\n\t      warned = true;\n\t    }\n\t    return fn.apply(this, arguments);\n\t  }\n\n\t  return deprecated;\n\t};\n\n\tvar debugs = {};\n\tvar debugEnviron;\n\texports.debuglog = function (set) {\n\t  if (isUndefined(debugEnviron)) debugEnviron = process.env.NODE_DEBUG || '';\n\t  set = set.toUpperCase();\n\t  if (!debugs[set]) {\n\t    if (new RegExp('\\\\b' + set + '\\\\b', 'i').test(debugEnviron)) {\n\t      var pid = process.pid;\n\t      debugs[set] = function () {\n\t        var msg = exports.format.apply(exports, arguments);\n\t        console.error('%s %d: %s', set, pid, msg);\n\t      };\n\t    } else {\n\t      debugs[set] = function () {};\n\t    }\n\t  }\n\t  return debugs[set];\n\t};\n\n\t/**\n\t * Echos the value of a value. Trys to print the value out\n\t * in the best way possible given the different types.\n\t *\n\t * @param {Object} obj The object to print out.\n\t * @param {Object} opts Optional options object that alters the output.\n\t */\n\t/* legacy: obj, showHidden, depth, colors*/\n\tfunction inspect(obj, opts) {\n\t  // default options\n\t  var ctx = {\n\t    seen: [],\n\t    stylize: stylizeNoColor\n\t  };\n\t  // legacy...\n\t  if (arguments.length >= 3) ctx.depth = arguments[2];\n\t  if (arguments.length >= 4) ctx.colors = arguments[3];\n\t  if (isBoolean(opts)) {\n\t    // legacy...\n\t    ctx.showHidden = opts;\n\t  } else if (opts) {\n\t    // got an \"options\" object\n\t    exports._extend(ctx, opts);\n\t  }\n\t  // set default options\n\t  if (isUndefined(ctx.showHidden)) ctx.showHidden = false;\n\t  if (isUndefined(ctx.depth)) ctx.depth = 2;\n\t  if (isUndefined(ctx.colors)) ctx.colors = false;\n\t  if (isUndefined(ctx.customInspect)) ctx.customInspect = true;\n\t  if (ctx.colors) ctx.stylize = stylizeWithColor;\n\t  return formatValue(ctx, obj, ctx.depth);\n\t}\n\texports.inspect = inspect;\n\n\t// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics\n\tinspect.colors = {\n\t  'bold': [1, 22],\n\t  'italic': [3, 23],\n\t  'underline': [4, 24],\n\t  'inverse': [7, 27],\n\t  'white': [37, 39],\n\t  'grey': [90, 39],\n\t  'black': [30, 39],\n\t  'blue': [34, 39],\n\t  'cyan': [36, 39],\n\t  'green': [32, 39],\n\t  'magenta': [35, 39],\n\t  'red': [31, 39],\n\t  'yellow': [33, 39]\n\t};\n\n\t// Don't use 'blue' not visible on cmd.exe\n\tinspect.styles = {\n\t  'special': 'cyan',\n\t  'number': 'yellow',\n\t  'boolean': 'yellow',\n\t  'undefined': 'grey',\n\t  'null': 'bold',\n\t  'string': 'green',\n\t  'date': 'magenta',\n\t  // \"name\": intentionally not styling\n\t  'regexp': 'red'\n\t};\n\n\tfunction stylizeWithColor(str, styleType) {\n\t  var style = inspect.styles[styleType];\n\n\t  if (style) {\n\t    return '\\x1B[' + inspect.colors[style][0] + 'm' + str + '\\x1B[' + inspect.colors[style][1] + 'm';\n\t  } else {\n\t    return str;\n\t  }\n\t}\n\n\tfunction stylizeNoColor(str, styleType) {\n\t  return str;\n\t}\n\n\tfunction arrayToHash(array) {\n\t  var hash = {};\n\n\t  array.forEach(function (val, idx) {\n\t    hash[val] = true;\n\t  });\n\n\t  return hash;\n\t}\n\n\tfunction formatValue(ctx, value, recurseTimes) {\n\t  // Provide a hook for user-specified inspect functions.\n\t  // Check that value is an object with an inspect function on it\n\t  if (ctx.customInspect && value && isFunction(value.inspect) &&\n\t  // Filter out the util module, it's inspect function is special\n\t  value.inspect !== exports.inspect &&\n\t  // Also filter out any prototype objects using the circular check.\n\t  !(value.constructor && value.constructor.prototype === value)) {\n\t    var ret = value.inspect(recurseTimes, ctx);\n\t    if (!isString(ret)) {\n\t      ret = formatValue(ctx, ret, recurseTimes);\n\t    }\n\t    return ret;\n\t  }\n\n\t  // Primitive types cannot have properties\n\t  var primitive = formatPrimitive(ctx, value);\n\t  if (primitive) {\n\t    return primitive;\n\t  }\n\n\t  // Look up the keys of the object.\n\t  var keys = Object.keys(value);\n\t  var visibleKeys = arrayToHash(keys);\n\n\t  if (ctx.showHidden) {\n\t    keys = Object.getOwnPropertyNames(value);\n\t  }\n\n\t  // IE doesn't make error fields non-enumerable\n\t  // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx\n\t  if (isError(value) && (keys.indexOf('message') >= 0 || keys.indexOf('description') >= 0)) {\n\t    return formatError(value);\n\t  }\n\n\t  // Some type of object without properties can be shortcutted.\n\t  if (keys.length === 0) {\n\t    if (isFunction(value)) {\n\t      var name = value.name ? ': ' + value.name : '';\n\t      return ctx.stylize('[Function' + name + ']', 'special');\n\t    }\n\t    if (isRegExp(value)) {\n\t      return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n\t    }\n\t    if (isDate(value)) {\n\t      return ctx.stylize(Date.prototype.toString.call(value), 'date');\n\t    }\n\t    if (isError(value)) {\n\t      return formatError(value);\n\t    }\n\t  }\n\n\t  var base = '',\n\t      array = false,\n\t      braces = ['{', '}'];\n\n\t  // Make Array say that they are Array\n\t  if (isArray(value)) {\n\t    array = true;\n\t    braces = ['[', ']'];\n\t  }\n\n\t  // Make functions say that they are functions\n\t  if (isFunction(value)) {\n\t    var n = value.name ? ': ' + value.name : '';\n\t    base = ' [Function' + n + ']';\n\t  }\n\n\t  // Make RegExps say that they are RegExps\n\t  if (isRegExp(value)) {\n\t    base = ' ' + RegExp.prototype.toString.call(value);\n\t  }\n\n\t  // Make dates with properties first say the date\n\t  if (isDate(value)) {\n\t    base = ' ' + Date.prototype.toUTCString.call(value);\n\t  }\n\n\t  // Make error with message first say the error\n\t  if (isError(value)) {\n\t    base = ' ' + formatError(value);\n\t  }\n\n\t  if (keys.length === 0 && (!array || value.length == 0)) {\n\t    return braces[0] + base + braces[1];\n\t  }\n\n\t  if (recurseTimes < 0) {\n\t    if (isRegExp(value)) {\n\t      return ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');\n\t    } else {\n\t      return ctx.stylize('[Object]', 'special');\n\t    }\n\t  }\n\n\t  ctx.seen.push(value);\n\n\t  var output;\n\t  if (array) {\n\t    output = formatArray(ctx, value, recurseTimes, visibleKeys, keys);\n\t  } else {\n\t    output = keys.map(function (key) {\n\t      return formatProperty(ctx, value, recurseTimes, visibleKeys, key, array);\n\t    });\n\t  }\n\n\t  ctx.seen.pop();\n\n\t  return reduceToSingleString(output, base, braces);\n\t}\n\n\tfunction formatPrimitive(ctx, value) {\n\t  if (isUndefined(value)) return ctx.stylize('undefined', 'undefined');\n\t  if (isString(value)) {\n\t    var simple = '\\'' + JSON.stringify(value).replace(/^\"|\"$/g, '').replace(/'/g, \"\\\\'\").replace(/\\\\\"/g, '\"') + '\\'';\n\t    return ctx.stylize(simple, 'string');\n\t  }\n\t  if (isNumber(value)) return ctx.stylize('' + value, 'number');\n\t  if (isBoolean(value)) return ctx.stylize('' + value, 'boolean');\n\t  // For some reason typeof null is \"object\", so special case here.\n\t  if (isNull(value)) return ctx.stylize('null', 'null');\n\t}\n\n\tfunction formatError(value) {\n\t  return '[' + Error.prototype.toString.call(value) + ']';\n\t}\n\n\tfunction formatArray(ctx, value, recurseTimes, visibleKeys, keys) {\n\t  var output = [];\n\t  for (var i = 0, l = value.length; i < l; ++i) {\n\t    if (hasOwnProperty(value, String(i))) {\n\t      output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, String(i), true));\n\t    } else {\n\t      output.push('');\n\t    }\n\t  }\n\t  keys.forEach(function (key) {\n\t    if (!key.match(/^\\d+$/)) {\n\t      output.push(formatProperty(ctx, value, recurseTimes, visibleKeys, key, true));\n\t    }\n\t  });\n\t  return output;\n\t}\n\n\tfunction formatProperty(ctx, value, recurseTimes, visibleKeys, key, array) {\n\t  var name, str, desc;\n\t  desc = Object.getOwnPropertyDescriptor(value, key) || { value: value[key] };\n\t  if (desc.get) {\n\t    if (desc.set) {\n\t      str = ctx.stylize('[Getter/Setter]', 'special');\n\t    } else {\n\t      str = ctx.stylize('[Getter]', 'special');\n\t    }\n\t  } else {\n\t    if (desc.set) {\n\t      str = ctx.stylize('[Setter]', 'special');\n\t    }\n\t  }\n\t  if (!hasOwnProperty(visibleKeys, key)) {\n\t    name = '[' + key + ']';\n\t  }\n\t  if (!str) {\n\t    if (ctx.seen.indexOf(desc.value) < 0) {\n\t      if (isNull(recurseTimes)) {\n\t        str = formatValue(ctx, desc.value, null);\n\t      } else {\n\t        str = formatValue(ctx, desc.value, recurseTimes - 1);\n\t      }\n\t      if (str.indexOf('\\n') > -1) {\n\t        if (array) {\n\t          str = str.split('\\n').map(function (line) {\n\t            return '  ' + line;\n\t          }).join('\\n').substr(2);\n\t        } else {\n\t          str = '\\n' + str.split('\\n').map(function (line) {\n\t            return '   ' + line;\n\t          }).join('\\n');\n\t        }\n\t      }\n\t    } else {\n\t      str = ctx.stylize('[Circular]', 'special');\n\t    }\n\t  }\n\t  if (isUndefined(name)) {\n\t    if (array && key.match(/^\\d+$/)) {\n\t      return str;\n\t    }\n\t    name = JSON.stringify('' + key);\n\t    if (name.match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)) {\n\t      name = name.substr(1, name.length - 2);\n\t      name = ctx.stylize(name, 'name');\n\t    } else {\n\t      name = name.replace(/'/g, \"\\\\'\").replace(/\\\\\"/g, '\"').replace(/(^\"|\"$)/g, \"'\");\n\t      name = ctx.stylize(name, 'string');\n\t    }\n\t  }\n\n\t  return name + ': ' + str;\n\t}\n\n\tfunction reduceToSingleString(output, base, braces) {\n\t  var numLinesEst = 0;\n\t  var length = output.reduce(function (prev, cur) {\n\t    numLinesEst++;\n\t    if (cur.indexOf('\\n') >= 0) numLinesEst++;\n\t    return prev + cur.replace(/\\u001b\\[\\d\\d?m/g, '').length + 1;\n\t  }, 0);\n\n\t  if (length > 60) {\n\t    return braces[0] + (base === '' ? '' : base + '\\n ') + ' ' + output.join(',\\n  ') + ' ' + braces[1];\n\t  }\n\n\t  return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];\n\t}\n\n\t// NOTE: These type checking functions intentionally don't use `instanceof`\n\t// because it is fragile and can be easily faked with `Object.create()`.\n\tfunction isArray(ar) {\n\t  return Array.isArray(ar);\n\t}\n\texports.isArray = isArray;\n\n\tfunction isBoolean(arg) {\n\t  return typeof arg === 'boolean';\n\t}\n\texports.isBoolean = isBoolean;\n\n\tfunction isNull(arg) {\n\t  return arg === null;\n\t}\n\texports.isNull = isNull;\n\n\tfunction isNullOrUndefined(arg) {\n\t  return arg == null;\n\t}\n\texports.isNullOrUndefined = isNullOrUndefined;\n\n\tfunction isNumber(arg) {\n\t  return typeof arg === 'number';\n\t}\n\texports.isNumber = isNumber;\n\n\tfunction isString(arg) {\n\t  return typeof arg === 'string';\n\t}\n\texports.isString = isString;\n\n\tfunction isSymbol(arg) {\n\t  return (typeof arg === 'undefined' ? 'undefined' : _typeof(arg)) === 'symbol';\n\t}\n\texports.isSymbol = isSymbol;\n\n\tfunction isUndefined(arg) {\n\t  return arg === void 0;\n\t}\n\texports.isUndefined = isUndefined;\n\n\tfunction isRegExp(re) {\n\t  return isObject(re) && objectToString(re) === '[object RegExp]';\n\t}\n\texports.isRegExp = isRegExp;\n\n\tfunction isObject(arg) {\n\t  return (typeof arg === 'undefined' ? 'undefined' : _typeof(arg)) === 'object' && arg !== null;\n\t}\n\texports.isObject = isObject;\n\n\tfunction isDate(d) {\n\t  return isObject(d) && objectToString(d) === '[object Date]';\n\t}\n\texports.isDate = isDate;\n\n\tfunction isError(e) {\n\t  return isObject(e) && (objectToString(e) === '[object Error]' || e instanceof Error);\n\t}\n\texports.isError = isError;\n\n\tfunction isFunction(arg) {\n\t  return typeof arg === 'function';\n\t}\n\texports.isFunction = isFunction;\n\n\tfunction isPrimitive(arg) {\n\t  return arg === null || typeof arg === 'boolean' || typeof arg === 'number' || typeof arg === 'string' || (typeof arg === 'undefined' ? 'undefined' : _typeof(arg)) === 'symbol' || // ES6 symbol\n\t  typeof arg === 'undefined';\n\t}\n\texports.isPrimitive = isPrimitive;\n\n\texports.isBuffer = __webpack_require__(627);\n\n\tfunction objectToString(o) {\n\t  return Object.prototype.toString.call(o);\n\t}\n\n\tfunction pad(n) {\n\t  return n < 10 ? '0' + n.toString(10) : n.toString(10);\n\t}\n\n\tvar months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];\n\n\t// 26 Feb 16:19:34\n\tfunction timestamp() {\n\t  var d = new Date();\n\t  var time = [pad(d.getHours()), pad(d.getMinutes()), pad(d.getSeconds())].join(':');\n\t  return [d.getDate(), months[d.getMonth()], time].join(' ');\n\t}\n\n\t// log is just a thin wrapper to console.log that prepends a timestamp\n\texports.log = function () {\n\t  console.log('%s - %s', timestamp(), exports.format.apply(exports, arguments));\n\t};\n\n\t/**\n\t * Inherit the prototype methods from one constructor into another.\n\t *\n\t * The Function.prototype.inherits from lang.js rewritten as a standalone\n\t * function (not on Function.prototype). NOTE: If this file is to be loaded\n\t * during bootstrapping this function needs to be rewritten using some native\n\t * functions as prototype setup using normal JavaScript does not work as\n\t * expected during bootstrapping (see mirror.js in r114903).\n\t *\n\t * @param {function} ctor Constructor function which needs to inherit the\n\t *     prototype.\n\t * @param {function} superCtor Constructor function to inherit prototype from.\n\t */\n\texports.inherits = __webpack_require__(626);\n\n\texports._extend = function (origin, add) {\n\t  // Don't do anything if add isn't an object\n\t  if (!add || !isObject(add)) return origin;\n\n\t  var keys = Object.keys(add);\n\t  var i = keys.length;\n\t  while (i--) {\n\t    origin[keys[i]] = add[keys[i]];\n\t  }\n\t  return origin;\n\t};\n\n\tfunction hasOwnProperty(obj, prop) {\n\t  return Object.prototype.hasOwnProperty.call(obj, prop);\n\t}\n\t/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(8)))\n\n/***/ }),\n/* 118 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\texports.default = function (loc) {\n\t  var relative = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : process.cwd();\n\n\t  if ((typeof _module2.default === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(_module2.default)) === \"object\") return null;\n\n\t  var relativeMod = relativeModules[relative];\n\n\t  if (!relativeMod) {\n\t    relativeMod = new _module2.default();\n\n\t    var filename = _path2.default.join(relative, \".babelrc\");\n\t    relativeMod.id = filename;\n\t    relativeMod.filename = filename;\n\n\t    relativeMod.paths = _module2.default._nodeModulePaths(relative);\n\t    relativeModules[relative] = relativeMod;\n\t  }\n\n\t  try {\n\t    return _module2.default._resolveFilename(loc, relativeMod);\n\t  } catch (err) {\n\t    return null;\n\t  }\n\t};\n\n\tvar _module = __webpack_require__(115);\n\n\tvar _module2 = _interopRequireDefault(_module);\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _path2 = _interopRequireDefault(_path);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar relativeModules = {};\n\n\tmodule.exports = exports[\"default\"];\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 119 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _map = __webpack_require__(133);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _possibleConstructorReturn2 = __webpack_require__(42);\n\n\tvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\n\tvar _inherits2 = __webpack_require__(41);\n\n\tvar _inherits3 = _interopRequireDefault(_inherits2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar Store = function (_Map) {\n\t  (0, _inherits3.default)(Store, _Map);\n\n\t  function Store() {\n\t    (0, _classCallCheck3.default)(this, Store);\n\n\t    var _this = (0, _possibleConstructorReturn3.default)(this, _Map.call(this));\n\n\t    _this.dynamicData = {};\n\t    return _this;\n\t  }\n\n\t  Store.prototype.setDynamic = function setDynamic(key, fn) {\n\t    this.dynamicData[key] = fn;\n\t  };\n\n\t  Store.prototype.get = function get(key) {\n\t    if (this.has(key)) {\n\t      return _Map.prototype.get.call(this, key);\n\t    } else {\n\t      if (Object.prototype.hasOwnProperty.call(this.dynamicData, key)) {\n\t        var val = this.dynamicData[key]();\n\t        this.set(key, val);\n\t        return val;\n\t      }\n\t    }\n\t  };\n\n\t  return Store;\n\t}(_map2.default);\n\n\texports.default = Store;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 120 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _node = __webpack_require__(239);\n\n\tvar _node2 = _interopRequireDefault(_node);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar verboseDebug = (0, _node2.default)(\"babel:verbose\");\n\tvar generalDebug = (0, _node2.default)(\"babel\");\n\n\tvar seenDeprecatedMessages = [];\n\n\tvar Logger = function () {\n\t  function Logger(file, filename) {\n\t    (0, _classCallCheck3.default)(this, Logger);\n\n\t    this.filename = filename;\n\t    this.file = file;\n\t  }\n\n\t  Logger.prototype._buildMessage = function _buildMessage(msg) {\n\t    var parts = \"[BABEL] \" + this.filename;\n\t    if (msg) parts += \": \" + msg;\n\t    return parts;\n\t  };\n\n\t  Logger.prototype.warn = function warn(msg) {\n\t    console.warn(this._buildMessage(msg));\n\t  };\n\n\t  Logger.prototype.error = function error(msg) {\n\t    var Constructor = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : Error;\n\n\t    throw new Constructor(this._buildMessage(msg));\n\t  };\n\n\t  Logger.prototype.deprecate = function deprecate(msg) {\n\t    if (this.file.opts && this.file.opts.suppressDeprecationMessages) return;\n\n\t    msg = this._buildMessage(msg);\n\n\t    if (seenDeprecatedMessages.indexOf(msg) >= 0) return;\n\n\t    seenDeprecatedMessages.push(msg);\n\n\t    console.error(msg);\n\t  };\n\n\t  Logger.prototype.verbose = function verbose(msg) {\n\t    if (verboseDebug.enabled) verboseDebug(this._buildMessage(msg));\n\t  };\n\n\t  Logger.prototype.debug = function debug(msg) {\n\t    if (generalDebug.enabled) generalDebug(this._buildMessage(msg));\n\t  };\n\n\t  Logger.prototype.deopt = function deopt(node, msg) {\n\t    this.debug(msg);\n\t  };\n\n\t  return Logger;\n\t}();\n\n\texports.default = Logger;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 121 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.ImportDeclaration = exports.ModuleDeclaration = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.ExportDeclaration = ExportDeclaration;\n\texports.Scope = Scope;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar ModuleDeclaration = exports.ModuleDeclaration = {\n\t  enter: function enter(path, file) {\n\t    var node = path.node;\n\n\t    if (node.source) {\n\t      node.source.value = file.resolveModuleSource(node.source.value);\n\t    }\n\t  }\n\t};\n\n\tvar ImportDeclaration = exports.ImportDeclaration = {\n\t  exit: function exit(path, file) {\n\t    var node = path.node;\n\n\t    var specifiers = [];\n\t    var imported = [];\n\t    file.metadata.modules.imports.push({\n\t      source: node.source.value,\n\t      imported: imported,\n\t      specifiers: specifiers\n\t    });\n\n\t    for (var _iterator = path.get(\"specifiers\"), _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var specifier = _ref;\n\n\t      var local = specifier.node.local.name;\n\n\t      if (specifier.isImportDefaultSpecifier()) {\n\t        imported.push(\"default\");\n\t        specifiers.push({\n\t          kind: \"named\",\n\t          imported: \"default\",\n\t          local: local\n\t        });\n\t      }\n\n\t      if (specifier.isImportSpecifier()) {\n\t        var importedName = specifier.node.imported.name;\n\t        imported.push(importedName);\n\t        specifiers.push({\n\t          kind: \"named\",\n\t          imported: importedName,\n\t          local: local\n\t        });\n\t      }\n\n\t      if (specifier.isImportNamespaceSpecifier()) {\n\t        imported.push(\"*\");\n\t        specifiers.push({\n\t          kind: \"namespace\",\n\t          local: local\n\t        });\n\t      }\n\t    }\n\t  }\n\t};\n\n\tfunction ExportDeclaration(path, file) {\n\t  var node = path.node;\n\n\t  var source = node.source ? node.source.value : null;\n\t  var exports = file.metadata.modules.exports;\n\n\t  var declar = path.get(\"declaration\");\n\t  if (declar.isStatement()) {\n\t    var bindings = declar.getBindingIdentifiers();\n\n\t    for (var name in bindings) {\n\t      exports.exported.push(name);\n\t      exports.specifiers.push({\n\t        kind: \"local\",\n\t        local: name,\n\t        exported: path.isExportDefaultDeclaration() ? \"default\" : name\n\t      });\n\t    }\n\t  }\n\n\t  if (path.isExportNamedDeclaration() && node.specifiers) {\n\t    for (var _iterator2 = node.specifiers, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var specifier = _ref2;\n\n\t      var exported = specifier.exported.name;\n\t      exports.exported.push(exported);\n\n\t      if (t.isExportDefaultSpecifier(specifier)) {\n\t        exports.specifiers.push({\n\t          kind: \"external\",\n\t          local: exported,\n\t          exported: exported,\n\t          source: source\n\t        });\n\t      }\n\n\t      if (t.isExportNamespaceSpecifier(specifier)) {\n\t        exports.specifiers.push({\n\t          kind: \"external-namespace\",\n\t          exported: exported,\n\t          source: source\n\t        });\n\t      }\n\n\t      var local = specifier.local;\n\t      if (!local) continue;\n\n\t      if (source) {\n\t        exports.specifiers.push({\n\t          kind: \"external\",\n\t          local: local.name,\n\t          exported: exported,\n\t          source: source\n\t        });\n\t      }\n\n\t      if (!source) {\n\t        exports.specifiers.push({\n\t          kind: \"local\",\n\t          local: local.name,\n\t          exported: exported\n\t        });\n\t      }\n\t    }\n\t  }\n\n\t  if (path.isExportAllDeclaration()) {\n\t    exports.specifiers.push({\n\t      kind: \"external-all\",\n\t      source: source\n\t    });\n\t  }\n\t}\n\n\tfunction Scope(path) {\n\t  path.skip();\n\t}\n\n/***/ }),\n/* 122 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.inspect = exports.inherits = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _util = __webpack_require__(117);\n\n\tObject.defineProperty(exports, \"inherits\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _util.inherits;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"inspect\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _util.inspect;\n\t  }\n\t});\n\texports.canCompile = canCompile;\n\texports.list = list;\n\texports.regexify = regexify;\n\texports.arrayify = arrayify;\n\texports.booleanify = booleanify;\n\texports.shouldIgnore = shouldIgnore;\n\n\tvar _escapeRegExp = __webpack_require__(577);\n\n\tvar _escapeRegExp2 = _interopRequireDefault(_escapeRegExp);\n\n\tvar _startsWith = __webpack_require__(595);\n\n\tvar _startsWith2 = _interopRequireDefault(_startsWith);\n\n\tvar _minimatch = __webpack_require__(601);\n\n\tvar _minimatch2 = _interopRequireDefault(_minimatch);\n\n\tvar _includes = __webpack_require__(111);\n\n\tvar _includes2 = _interopRequireDefault(_includes);\n\n\tvar _isRegExp = __webpack_require__(276);\n\n\tvar _isRegExp2 = _interopRequireDefault(_isRegExp);\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _path2 = _interopRequireDefault(_path);\n\n\tvar _slash = __webpack_require__(284);\n\n\tvar _slash2 = _interopRequireDefault(_slash);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction canCompile(filename, altExts) {\n\t  var exts = altExts || canCompile.EXTENSIONS;\n\t  var ext = _path2.default.extname(filename);\n\t  return (0, _includes2.default)(exts, ext);\n\t}\n\n\tcanCompile.EXTENSIONS = [\".js\", \".jsx\", \".es6\", \".es\"];\n\n\tfunction list(val) {\n\t  if (!val) {\n\t    return [];\n\t  } else if (Array.isArray(val)) {\n\t    return val;\n\t  } else if (typeof val === \"string\") {\n\t    return val.split(\",\");\n\t  } else {\n\t    return [val];\n\t  }\n\t}\n\n\tfunction regexify(val) {\n\t  if (!val) {\n\t    return new RegExp(/.^/);\n\t  }\n\n\t  if (Array.isArray(val)) {\n\t    val = new RegExp(val.map(_escapeRegExp2.default).join(\"|\"), \"i\");\n\t  }\n\n\t  if (typeof val === \"string\") {\n\t    val = (0, _slash2.default)(val);\n\n\t    if ((0, _startsWith2.default)(val, \"./\") || (0, _startsWith2.default)(val, \"*/\")) val = val.slice(2);\n\t    if ((0, _startsWith2.default)(val, \"**/\")) val = val.slice(3);\n\n\t    var regex = _minimatch2.default.makeRe(val, { nocase: true });\n\t    return new RegExp(regex.source.slice(1, -1), \"i\");\n\t  }\n\n\t  if ((0, _isRegExp2.default)(val)) {\n\t    return val;\n\t  }\n\n\t  throw new TypeError(\"illegal type for regexify\");\n\t}\n\n\tfunction arrayify(val, mapFn) {\n\t  if (!val) return [];\n\t  if (typeof val === \"boolean\") return arrayify([val], mapFn);\n\t  if (typeof val === \"string\") return arrayify(list(val), mapFn);\n\n\t  if (Array.isArray(val)) {\n\t    if (mapFn) val = val.map(mapFn);\n\t    return val;\n\t  }\n\n\t  return [val];\n\t}\n\n\tfunction booleanify(val) {\n\t  if (val === \"true\" || val == 1) {\n\t    return true;\n\t  }\n\n\t  if (val === \"false\" || val == 0 || !val) {\n\t    return false;\n\t  }\n\n\t  return val;\n\t}\n\n\tfunction shouldIgnore(filename) {\n\t  var ignore = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];\n\t  var only = arguments[2];\n\n\t  filename = filename.replace(/\\\\/g, \"/\");\n\n\t  if (only) {\n\t    for (var _iterator = only, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var pattern = _ref;\n\n\t      if (_shouldIgnore(pattern, filename)) return false;\n\t    }\n\t    return true;\n\t  } else if (ignore.length) {\n\t    for (var _iterator2 = ignore, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var _pattern = _ref2;\n\n\t      if (_shouldIgnore(_pattern, filename)) return true;\n\t    }\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction _shouldIgnore(pattern, filename) {\n\t  if (typeof pattern === \"function\") {\n\t    return pattern(filename);\n\t  } else {\n\t    return pattern.test(filename);\n\t  }\n\t}\n\n/***/ }),\n/* 123 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.ArrayPattern = exports.ObjectPattern = exports.RestProperty = exports.SpreadProperty = exports.SpreadElement = undefined;\n\texports.Identifier = Identifier;\n\texports.RestElement = RestElement;\n\texports.ObjectExpression = ObjectExpression;\n\texports.ObjectMethod = ObjectMethod;\n\texports.ObjectProperty = ObjectProperty;\n\texports.ArrayExpression = ArrayExpression;\n\texports.RegExpLiteral = RegExpLiteral;\n\texports.BooleanLiteral = BooleanLiteral;\n\texports.NullLiteral = NullLiteral;\n\texports.NumericLiteral = NumericLiteral;\n\texports.StringLiteral = StringLiteral;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _jsesc = __webpack_require__(469);\n\n\tvar _jsesc2 = _interopRequireDefault(_jsesc);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction Identifier(node) {\n\t  if (node.variance) {\n\t    if (node.variance === \"plus\") {\n\t      this.token(\"+\");\n\t    } else if (node.variance === \"minus\") {\n\t      this.token(\"-\");\n\t    }\n\t  }\n\n\t  this.word(node.name);\n\t}\n\n\tfunction RestElement(node) {\n\t  this.token(\"...\");\n\t  this.print(node.argument, node);\n\t}\n\n\texports.SpreadElement = RestElement;\n\texports.SpreadProperty = RestElement;\n\texports.RestProperty = RestElement;\n\tfunction ObjectExpression(node) {\n\t  var props = node.properties;\n\n\t  this.token(\"{\");\n\t  this.printInnerComments(node);\n\n\t  if (props.length) {\n\t    this.space();\n\t    this.printList(props, node, { indent: true, statement: true });\n\t    this.space();\n\t  }\n\n\t  this.token(\"}\");\n\t}\n\n\texports.ObjectPattern = ObjectExpression;\n\tfunction ObjectMethod(node) {\n\t  this.printJoin(node.decorators, node);\n\t  this._method(node);\n\t}\n\n\tfunction ObjectProperty(node) {\n\t  this.printJoin(node.decorators, node);\n\n\t  if (node.computed) {\n\t    this.token(\"[\");\n\t    this.print(node.key, node);\n\t    this.token(\"]\");\n\t  } else {\n\t    if (t.isAssignmentPattern(node.value) && t.isIdentifier(node.key) && node.key.name === node.value.left.name) {\n\t      this.print(node.value, node);\n\t      return;\n\t    }\n\n\t    this.print(node.key, node);\n\n\t    if (node.shorthand && t.isIdentifier(node.key) && t.isIdentifier(node.value) && node.key.name === node.value.name) {\n\t      return;\n\t    }\n\t  }\n\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.value, node);\n\t}\n\n\tfunction ArrayExpression(node) {\n\t  var elems = node.elements;\n\t  var len = elems.length;\n\n\t  this.token(\"[\");\n\t  this.printInnerComments(node);\n\n\t  for (var i = 0; i < elems.length; i++) {\n\t    var elem = elems[i];\n\t    if (elem) {\n\t      if (i > 0) this.space();\n\t      this.print(elem, node);\n\t      if (i < len - 1) this.token(\",\");\n\t    } else {\n\t      this.token(\",\");\n\t    }\n\t  }\n\n\t  this.token(\"]\");\n\t}\n\n\texports.ArrayPattern = ArrayExpression;\n\tfunction RegExpLiteral(node) {\n\t  this.word(\"/\" + node.pattern + \"/\" + node.flags);\n\t}\n\n\tfunction BooleanLiteral(node) {\n\t  this.word(node.value ? \"true\" : \"false\");\n\t}\n\n\tfunction NullLiteral() {\n\t  this.word(\"null\");\n\t}\n\n\tfunction NumericLiteral(node) {\n\t  var raw = this.getPossibleRaw(node);\n\t  var value = node.value + \"\";\n\t  if (raw == null) {\n\t    this.number(value);\n\t  } else if (this.format.minified) {\n\t    this.number(raw.length < value.length ? raw : value);\n\t  } else {\n\t    this.number(raw);\n\t  }\n\t}\n\n\tfunction StringLiteral(node, parent) {\n\t  var raw = this.getPossibleRaw(node);\n\t  if (!this.format.minified && raw != null) {\n\t    this.token(raw);\n\t    return;\n\t  }\n\n\t  var opts = {\n\t    quotes: t.isJSX(parent) ? \"double\" : this.format.quotes,\n\t    wrap: true\n\t  };\n\t  if (this.format.jsonCompatibleStrings) {\n\t    opts.json = true;\n\t  }\n\t  var val = (0, _jsesc2.default)(node.value, opts);\n\n\t  return this.token(val);\n\t}\n\n/***/ }),\n/* 124 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (path, file, helpers) {\n\t  if (!helpers) {\n\t    helpers = { wrapAsync: file };\n\t    file = null;\n\t  }\n\t  path.traverse(awaitVisitor, {\n\t    file: file,\n\t    wrapAwait: helpers.wrapAwait\n\t  });\n\n\t  if (path.isClassMethod() || path.isObjectMethod()) {\n\t    classOrObjectMethod(path, helpers.wrapAsync);\n\t  } else {\n\t    plainFunction(path, helpers.wrapAsync);\n\t  }\n\t};\n\n\tvar _babelHelperFunctionName = __webpack_require__(40);\n\n\tvar _babelHelperFunctionName2 = _interopRequireDefault(_babelHelperFunctionName);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _forAwait = __webpack_require__(320);\n\n\tvar _forAwait2 = _interopRequireDefault(_forAwait);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildWrapper = (0, _babelTemplate2.default)(\"\\n  (() => {\\n    var REF = FUNCTION;\\n    return function NAME(PARAMS) {\\n      return REF.apply(this, arguments);\\n    };\\n  })\\n\");\n\n\tvar namedBuildWrapper = (0, _babelTemplate2.default)(\"\\n  (() => {\\n    var REF = FUNCTION;\\n    function NAME(PARAMS) {\\n      return REF.apply(this, arguments);\\n    }\\n    return NAME;\\n  })\\n\");\n\n\tvar awaitVisitor = {\n\t  Function: function Function(path) {\n\t    if (path.isArrowFunctionExpression() && !path.node.async) {\n\t      path.arrowFunctionToShadowed();\n\t      return;\n\t    }\n\t    path.skip();\n\t  },\n\t  AwaitExpression: function AwaitExpression(_ref, _ref2) {\n\t    var node = _ref.node;\n\t    var wrapAwait = _ref2.wrapAwait;\n\n\t    node.type = \"YieldExpression\";\n\t    if (wrapAwait) {\n\t      node.argument = t.callExpression(wrapAwait, [node.argument]);\n\t    }\n\t  },\n\t  ForAwaitStatement: function ForAwaitStatement(path, _ref3) {\n\t    var file = _ref3.file,\n\t        wrapAwait = _ref3.wrapAwait;\n\t    var node = path.node;\n\n\t    var build = (0, _forAwait2.default)(path, {\n\t      getAsyncIterator: file.addHelper(\"asyncIterator\"),\n\t      wrapAwait: wrapAwait\n\t    });\n\n\t    var declar = build.declar,\n\t        loop = build.loop;\n\n\t    var block = loop.body;\n\n\t    path.ensureBlock();\n\n\t    if (declar) {\n\t      block.body.push(declar);\n\t    }\n\n\t    block.body = block.body.concat(node.body.body);\n\n\t    t.inherits(loop, node);\n\t    t.inherits(loop.body, node.body);\n\n\t    if (build.replaceParent) {\n\t      path.parentPath.replaceWithMultiple(build.node);\n\t      path.remove();\n\t    } else {\n\t      path.replaceWithMultiple(build.node);\n\t    }\n\t  }\n\t};\n\n\tfunction classOrObjectMethod(path, callId) {\n\t  var node = path.node;\n\t  var body = node.body;\n\n\t  node.async = false;\n\n\t  var container = t.functionExpression(null, [], t.blockStatement(body.body), true);\n\t  container.shadow = true;\n\t  body.body = [t.returnStatement(t.callExpression(t.callExpression(callId, [container]), []))];\n\n\t  node.generator = false;\n\t}\n\n\tfunction plainFunction(path, callId) {\n\t  var node = path.node;\n\t  var isDeclaration = path.isFunctionDeclaration();\n\t  var asyncFnId = node.id;\n\t  var wrapper = buildWrapper;\n\n\t  if (path.isArrowFunctionExpression()) {\n\t    path.arrowFunctionToShadowed();\n\t  } else if (!isDeclaration && asyncFnId) {\n\t    wrapper = namedBuildWrapper;\n\t  }\n\n\t  node.async = false;\n\t  node.generator = true;\n\n\t  node.id = null;\n\n\t  if (isDeclaration) {\n\t    node.type = \"FunctionExpression\";\n\t  }\n\n\t  var built = t.callExpression(callId, [node]);\n\t  var container = wrapper({\n\t    NAME: asyncFnId,\n\t    REF: path.scope.generateUidIdentifier(\"ref\"),\n\t    FUNCTION: built,\n\t    PARAMS: node.params.reduce(function (acc, param) {\n\t      acc.done = acc.done || t.isAssignmentPattern(param) || t.isRestElement(param);\n\n\t      if (!acc.done) {\n\t        acc.params.push(path.scope.generateUidIdentifier(\"x\"));\n\t      }\n\n\t      return acc;\n\t    }, {\n\t      params: [],\n\t      done: false\n\t    }).params\n\t  }).expression;\n\n\t  if (isDeclaration) {\n\t    var declar = t.variableDeclaration(\"let\", [t.variableDeclarator(t.identifier(asyncFnId.name), t.callExpression(container, []))]);\n\t    declar._blockHoist = true;\n\n\t    path.replaceWith(declar);\n\t  } else {\n\t    var retFunction = container.body.body[1].argument;\n\t    if (!asyncFnId) {\n\t      (0, _babelHelperFunctionName2.default)({\n\t        node: retFunction,\n\t        parent: path.parent,\n\t        scope: path.scope\n\t      });\n\t    }\n\n\t    if (!retFunction || retFunction.id || node.params.length) {\n\t      path.replaceWith(t.callExpression(container, []));\n\t    } else {\n\t      path.replaceWith(built);\n\t    }\n\t  }\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 125 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"decorators\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 126 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"flow\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 127 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"jsx\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 128 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"trailingFunctionCommas\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 129 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    inherits: __webpack_require__(67),\n\n\t    visitor: {\n\t      Function: function Function(path, state) {\n\t        if (!path.node.async || path.node.generator) return;\n\n\t        (0, _babelHelperRemapAsyncToGenerator2.default)(path, state.file, {\n\t          wrapAsync: state.addHelper(\"asyncToGenerator\")\n\t        });\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperRemapAsyncToGenerator = __webpack_require__(124);\n\n\tvar _babelHelperRemapAsyncToGenerator2 = _interopRequireDefault(_babelHelperRemapAsyncToGenerator);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 130 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      ObjectExpression: function ObjectExpression(path) {\n\t        var node = path.node;\n\n\t        var plainProps = node.properties.filter(function (prop) {\n\t          return !t.isSpreadProperty(prop) && !prop.computed;\n\t        });\n\n\t        var alreadySeenData = (0, _create2.default)(null);\n\t        var alreadySeenGetters = (0, _create2.default)(null);\n\t        var alreadySeenSetters = (0, _create2.default)(null);\n\n\t        for (var _iterator = plainProps, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref = _i.value;\n\t          }\n\n\t          var prop = _ref;\n\n\t          var name = getName(prop.key);\n\t          var isDuplicate = false;\n\t          switch (prop.kind) {\n\t            case \"get\":\n\t              if (alreadySeenData[name] || alreadySeenGetters[name]) {\n\t                isDuplicate = true;\n\t              }\n\t              alreadySeenGetters[name] = true;\n\t              break;\n\t            case \"set\":\n\t              if (alreadySeenData[name] || alreadySeenSetters[name]) {\n\t                isDuplicate = true;\n\t              }\n\t              alreadySeenSetters[name] = true;\n\t              break;\n\t            default:\n\t              if (alreadySeenData[name] || alreadySeenGetters[name] || alreadySeenSetters[name]) {\n\t                isDuplicate = true;\n\t              }\n\t              alreadySeenData[name] = true;\n\t          }\n\n\t          if (isDuplicate) {\n\t            prop.computed = true;\n\t            prop.key = t.stringLiteral(name);\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction getName(key) {\n\t  if (t.isIdentifier(key)) {\n\t    return key.name;\n\t  }\n\t  return key.value.toString();\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 131 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function isValidRequireCall(path) {\n\t    if (!path.isCallExpression()) return false;\n\t    if (!path.get(\"callee\").isIdentifier({ name: \"require\" })) return false;\n\t    if (path.scope.getBinding(\"require\")) return false;\n\n\t    var args = path.get(\"arguments\");\n\t    if (args.length !== 1) return false;\n\n\t    var arg = args[0];\n\t    if (!arg.isStringLiteral()) return false;\n\n\t    return true;\n\t  }\n\n\t  var amdVisitor = {\n\t    ReferencedIdentifier: function ReferencedIdentifier(_ref2) {\n\t      var node = _ref2.node,\n\t          scope = _ref2.scope;\n\n\t      if (node.name === \"exports\" && !scope.getBinding(\"exports\")) {\n\t        this.hasExports = true;\n\t      }\n\n\t      if (node.name === \"module\" && !scope.getBinding(\"module\")) {\n\t        this.hasModule = true;\n\t      }\n\t    },\n\t    CallExpression: function CallExpression(path) {\n\t      if (!isValidRequireCall(path)) return;\n\t      this.bareSources.push(path.node.arguments[0]);\n\t      path.remove();\n\t    },\n\t    VariableDeclarator: function VariableDeclarator(path) {\n\t      var id = path.get(\"id\");\n\t      if (!id.isIdentifier()) return;\n\n\t      var init = path.get(\"init\");\n\t      if (!isValidRequireCall(init)) return;\n\n\t      var source = init.node.arguments[0];\n\t      this.sourceNames[source.value] = true;\n\t      this.sources.push([id.node, source]);\n\n\t      path.remove();\n\t    }\n\t  };\n\n\t  return {\n\t    inherits: __webpack_require__(77),\n\n\t    pre: function pre() {\n\t      this.sources = [];\n\t      this.sourceNames = (0, _create2.default)(null);\n\n\t      this.bareSources = [];\n\n\t      this.hasExports = false;\n\t      this.hasModule = false;\n\t    },\n\n\t    visitor: {\n\t      Program: {\n\t        exit: function exit(path) {\n\t          var _this = this;\n\n\t          if (this.ran) return;\n\t          this.ran = true;\n\n\t          path.traverse(amdVisitor, this);\n\n\t          var params = this.sources.map(function (source) {\n\t            return source[0];\n\t          });\n\t          var sources = this.sources.map(function (source) {\n\t            return source[1];\n\t          });\n\n\t          sources = sources.concat(this.bareSources.filter(function (str) {\n\t            return !_this.sourceNames[str.value];\n\t          }));\n\n\t          var moduleName = this.getModuleName();\n\t          if (moduleName) moduleName = t.stringLiteral(moduleName);\n\n\t          if (this.hasExports) {\n\t            sources.unshift(t.stringLiteral(\"exports\"));\n\t            params.unshift(t.identifier(\"exports\"));\n\t          }\n\n\t          if (this.hasModule) {\n\t            sources.unshift(t.stringLiteral(\"module\"));\n\t            params.unshift(t.identifier(\"module\"));\n\t          }\n\n\t          var node = path.node;\n\n\t          var factory = buildFactory({\n\t            PARAMS: params,\n\t            BODY: node.body\n\t          });\n\t          factory.expression.body.directives = node.directives;\n\t          node.directives = [];\n\n\t          node.body = [buildDefine({\n\t            MODULE_NAME: moduleName,\n\t            SOURCES: sources,\n\t            FACTORY: factory\n\t          })];\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildDefine = (0, _babelTemplate2.default)(\"\\n  define(MODULE_NAME, [SOURCES], FACTORY);\\n\");\n\n\tvar buildFactory = (0, _babelTemplate2.default)(\"\\n  (function (PARAMS) {\\n    BODY;\\n  })\\n\");\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 132 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    inherits: __webpack_require__(199),\n\n\t    visitor: (0, _babelHelperBuilderBinaryAssignmentOperatorVisitor2.default)({\n\t      operator: \"**\",\n\n\t      build: function build(left, right) {\n\t        return t.callExpression(t.memberExpression(t.identifier(\"Math\"), t.identifier(\"pow\")), [left, right]);\n\t      }\n\t    })\n\t  };\n\t};\n\n\tvar _babelHelperBuilderBinaryAssignmentOperatorVisitor = __webpack_require__(316);\n\n\tvar _babelHelperBuilderBinaryAssignmentOperatorVisitor2 = _interopRequireDefault(_babelHelperBuilderBinaryAssignmentOperatorVisitor);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 133 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(406), __esModule: true };\n\n/***/ }),\n/* 134 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _map = __webpack_require__(133);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _includes = __webpack_require__(111);\n\n\tvar _includes2 = _interopRequireDefault(_includes);\n\n\tvar _repeat = __webpack_require__(278);\n\n\tvar _repeat2 = _interopRequireDefault(_repeat);\n\n\tvar _renamer = __webpack_require__(383);\n\n\tvar _renamer2 = _interopRequireDefault(_renamer);\n\n\tvar _index = __webpack_require__(7);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tvar _defaults = __webpack_require__(273);\n\n\tvar _defaults2 = _interopRequireDefault(_defaults);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _binding2 = __webpack_require__(225);\n\n\tvar _binding3 = _interopRequireDefault(_binding2);\n\n\tvar _globals = __webpack_require__(463);\n\n\tvar _globals2 = _interopRequireDefault(_globals);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _cache = __webpack_require__(88);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar _crawlCallsCount = 0;\n\n\tfunction getCache(path, parentScope, self) {\n\t  var scopes = _cache.scope.get(path.node) || [];\n\n\t  for (var _iterator = scopes, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var scope = _ref;\n\n\t    if (scope.parent === parentScope && scope.path === path) return scope;\n\t  }\n\n\t  scopes.push(self);\n\n\t  if (!_cache.scope.has(path.node)) {\n\t    _cache.scope.set(path.node, scopes);\n\t  }\n\t}\n\n\tfunction gatherNodeParts(node, parts) {\n\t  if (t.isModuleDeclaration(node)) {\n\t    if (node.source) {\n\t      gatherNodeParts(node.source, parts);\n\t    } else if (node.specifiers && node.specifiers.length) {\n\t      for (var _iterator2 = node.specifiers, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t        var _ref2;\n\n\t        if (_isArray2) {\n\t          if (_i2 >= _iterator2.length) break;\n\t          _ref2 = _iterator2[_i2++];\n\t        } else {\n\t          _i2 = _iterator2.next();\n\t          if (_i2.done) break;\n\t          _ref2 = _i2.value;\n\t        }\n\n\t        var specifier = _ref2;\n\n\t        gatherNodeParts(specifier, parts);\n\t      }\n\t    } else if (node.declaration) {\n\t      gatherNodeParts(node.declaration, parts);\n\t    }\n\t  } else if (t.isModuleSpecifier(node)) {\n\t    gatherNodeParts(node.local, parts);\n\t  } else if (t.isMemberExpression(node)) {\n\t    gatherNodeParts(node.object, parts);\n\t    gatherNodeParts(node.property, parts);\n\t  } else if (t.isIdentifier(node)) {\n\t    parts.push(node.name);\n\t  } else if (t.isLiteral(node)) {\n\t    parts.push(node.value);\n\t  } else if (t.isCallExpression(node)) {\n\t    gatherNodeParts(node.callee, parts);\n\t  } else if (t.isObjectExpression(node) || t.isObjectPattern(node)) {\n\t    for (var _iterator3 = node.properties, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var prop = _ref3;\n\n\t      gatherNodeParts(prop.key || prop.argument, parts);\n\t    }\n\t  }\n\t}\n\n\tvar collectorVisitor = {\n\t  For: function For(path) {\n\t    for (var _iterator4 = t.FOR_INIT_KEYS, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t      var _ref4;\n\n\t      if (_isArray4) {\n\t        if (_i4 >= _iterator4.length) break;\n\t        _ref4 = _iterator4[_i4++];\n\t      } else {\n\t        _i4 = _iterator4.next();\n\t        if (_i4.done) break;\n\t        _ref4 = _i4.value;\n\t      }\n\n\t      var key = _ref4;\n\n\t      var declar = path.get(key);\n\t      if (declar.isVar()) path.scope.getFunctionParent().registerBinding(\"var\", declar);\n\t    }\n\t  },\n\t  Declaration: function Declaration(path) {\n\t    if (path.isBlockScoped()) return;\n\n\t    if (path.isExportDeclaration() && path.get(\"declaration\").isDeclaration()) return;\n\n\t    path.scope.getFunctionParent().registerDeclaration(path);\n\t  },\n\t  ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t    state.references.push(path);\n\t  },\n\t  ForXStatement: function ForXStatement(path, state) {\n\t    var left = path.get(\"left\");\n\t    if (left.isPattern() || left.isIdentifier()) {\n\t      state.constantViolations.push(left);\n\t    }\n\t  },\n\n\t  ExportDeclaration: {\n\t    exit: function exit(path) {\n\t      var node = path.node,\n\t          scope = path.scope;\n\n\t      var declar = node.declaration;\n\t      if (t.isClassDeclaration(declar) || t.isFunctionDeclaration(declar)) {\n\t        var _id = declar.id;\n\t        if (!_id) return;\n\n\t        var binding = scope.getBinding(_id.name);\n\t        if (binding) binding.reference(path);\n\t      } else if (t.isVariableDeclaration(declar)) {\n\t        for (var _iterator5 = declar.declarations, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t          var _ref5;\n\n\t          if (_isArray5) {\n\t            if (_i5 >= _iterator5.length) break;\n\t            _ref5 = _iterator5[_i5++];\n\t          } else {\n\t            _i5 = _iterator5.next();\n\t            if (_i5.done) break;\n\t            _ref5 = _i5.value;\n\t          }\n\n\t          var decl = _ref5;\n\n\t          var ids = t.getBindingIdentifiers(decl);\n\t          for (var name in ids) {\n\t            var _binding = scope.getBinding(name);\n\t            if (_binding) _binding.reference(path);\n\t          }\n\t        }\n\t      }\n\t    }\n\t  },\n\n\t  LabeledStatement: function LabeledStatement(path) {\n\t    path.scope.getProgramParent().addGlobal(path.node);\n\t    path.scope.getBlockParent().registerDeclaration(path);\n\t  },\n\t  AssignmentExpression: function AssignmentExpression(path, state) {\n\t    state.assignments.push(path);\n\t  },\n\t  UpdateExpression: function UpdateExpression(path, state) {\n\t    state.constantViolations.push(path.get(\"argument\"));\n\t  },\n\t  UnaryExpression: function UnaryExpression(path, state) {\n\t    if (path.node.operator === \"delete\") {\n\t      state.constantViolations.push(path.get(\"argument\"));\n\t    }\n\t  },\n\t  BlockScoped: function BlockScoped(path) {\n\t    var scope = path.scope;\n\t    if (scope.path === path) scope = scope.parent;\n\t    scope.getBlockParent().registerDeclaration(path);\n\t  },\n\t  ClassDeclaration: function ClassDeclaration(path) {\n\t    var id = path.node.id;\n\t    if (!id) return;\n\n\t    var name = id.name;\n\t    path.scope.bindings[name] = path.scope.getBinding(name);\n\t  },\n\t  Block: function Block(path) {\n\t    var paths = path.get(\"body\");\n\t    for (var _iterator6 = paths, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : (0, _getIterator3.default)(_iterator6);;) {\n\t      var _ref6;\n\n\t      if (_isArray6) {\n\t        if (_i6 >= _iterator6.length) break;\n\t        _ref6 = _iterator6[_i6++];\n\t      } else {\n\t        _i6 = _iterator6.next();\n\t        if (_i6.done) break;\n\t        _ref6 = _i6.value;\n\t      }\n\n\t      var bodyPath = _ref6;\n\n\t      if (bodyPath.isFunctionDeclaration()) {\n\t        path.scope.getBlockParent().registerDeclaration(bodyPath);\n\t      }\n\t    }\n\t  }\n\t};\n\n\tvar uid = 0;\n\n\tvar Scope = function () {\n\t  function Scope(path, parentScope) {\n\t    (0, _classCallCheck3.default)(this, Scope);\n\n\t    if (parentScope && parentScope.block === path.node) {\n\t      return parentScope;\n\t    }\n\n\t    var cached = getCache(path, parentScope, this);\n\t    if (cached) return cached;\n\n\t    this.uid = uid++;\n\t    this.parent = parentScope;\n\t    this.hub = path.hub;\n\n\t    this.parentBlock = path.parent;\n\t    this.block = path.node;\n\t    this.path = path;\n\n\t    this.labels = new _map2.default();\n\t  }\n\n\t  Scope.prototype.traverse = function traverse(node, opts, state) {\n\t    (0, _index2.default)(node, opts, this, state, this.path);\n\t  };\n\n\t  Scope.prototype.generateDeclaredUidIdentifier = function generateDeclaredUidIdentifier() {\n\t    var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : \"temp\";\n\n\t    var id = this.generateUidIdentifier(name);\n\t    this.push({ id: id });\n\t    return id;\n\t  };\n\n\t  Scope.prototype.generateUidIdentifier = function generateUidIdentifier() {\n\t    var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : \"temp\";\n\n\t    return t.identifier(this.generateUid(name));\n\t  };\n\n\t  Scope.prototype.generateUid = function generateUid() {\n\t    var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : \"temp\";\n\n\t    name = t.toIdentifier(name).replace(/^_+/, \"\").replace(/[0-9]+$/g, \"\");\n\n\t    var uid = void 0;\n\t    var i = 0;\n\t    do {\n\t      uid = this._generateUid(name, i);\n\t      i++;\n\t    } while (this.hasLabel(uid) || this.hasBinding(uid) || this.hasGlobal(uid) || this.hasReference(uid));\n\n\t    var program = this.getProgramParent();\n\t    program.references[uid] = true;\n\t    program.uids[uid] = true;\n\n\t    return uid;\n\t  };\n\n\t  Scope.prototype._generateUid = function _generateUid(name, i) {\n\t    var id = name;\n\t    if (i > 1) id += i;\n\t    return \"_\" + id;\n\t  };\n\n\t  Scope.prototype.generateUidIdentifierBasedOnNode = function generateUidIdentifierBasedOnNode(parent, defaultName) {\n\t    var node = parent;\n\n\t    if (t.isAssignmentExpression(parent)) {\n\t      node = parent.left;\n\t    } else if (t.isVariableDeclarator(parent)) {\n\t      node = parent.id;\n\t    } else if (t.isObjectProperty(node) || t.isObjectMethod(node)) {\n\t      node = node.key;\n\t    }\n\n\t    var parts = [];\n\t    gatherNodeParts(node, parts);\n\n\t    var id = parts.join(\"$\");\n\t    id = id.replace(/^_/, \"\") || defaultName || \"ref\";\n\n\t    return this.generateUidIdentifier(id.slice(0, 20));\n\t  };\n\n\t  Scope.prototype.isStatic = function isStatic(node) {\n\t    if (t.isThisExpression(node) || t.isSuper(node)) {\n\t      return true;\n\t    }\n\n\t    if (t.isIdentifier(node)) {\n\t      var binding = this.getBinding(node.name);\n\t      if (binding) {\n\t        return binding.constant;\n\t      } else {\n\t        return this.hasBinding(node.name);\n\t      }\n\t    }\n\n\t    return false;\n\t  };\n\n\t  Scope.prototype.maybeGenerateMemoised = function maybeGenerateMemoised(node, dontPush) {\n\t    if (this.isStatic(node)) {\n\t      return null;\n\t    } else {\n\t      var _id2 = this.generateUidIdentifierBasedOnNode(node);\n\t      if (!dontPush) this.push({ id: _id2 });\n\t      return _id2;\n\t    }\n\t  };\n\n\t  Scope.prototype.checkBlockScopedCollisions = function checkBlockScopedCollisions(local, kind, name, id) {\n\t    if (kind === \"param\") return;\n\n\t    if (kind === \"hoisted\" && local.kind === \"let\") return;\n\n\t    var duplicate = kind === \"let\" || local.kind === \"let\" || local.kind === \"const\" || local.kind === \"module\" || local.kind === \"param\" && (kind === \"let\" || kind === \"const\");\n\n\t    if (duplicate) {\n\t      throw this.hub.file.buildCodeFrameError(id, messages.get(\"scopeDuplicateDeclaration\", name), TypeError);\n\t    }\n\t  };\n\n\t  Scope.prototype.rename = function rename(oldName, newName, block) {\n\t    var binding = this.getBinding(oldName);\n\t    if (binding) {\n\t      newName = newName || this.generateUidIdentifier(oldName).name;\n\t      return new _renamer2.default(binding, oldName, newName).rename(block);\n\t    }\n\t  };\n\n\t  Scope.prototype._renameFromMap = function _renameFromMap(map, oldName, newName, value) {\n\t    if (map[oldName]) {\n\t      map[newName] = value;\n\t      map[oldName] = null;\n\t    }\n\t  };\n\n\t  Scope.prototype.dump = function dump() {\n\t    var sep = (0, _repeat2.default)(\"-\", 60);\n\t    console.log(sep);\n\t    var scope = this;\n\t    do {\n\t      console.log(\"#\", scope.block.type);\n\t      for (var name in scope.bindings) {\n\t        var binding = scope.bindings[name];\n\t        console.log(\" -\", name, {\n\t          constant: binding.constant,\n\t          references: binding.references,\n\t          violations: binding.constantViolations.length,\n\t          kind: binding.kind\n\t        });\n\t      }\n\t    } while (scope = scope.parent);\n\t    console.log(sep);\n\t  };\n\n\t  Scope.prototype.toArray = function toArray(node, i) {\n\t    var file = this.hub.file;\n\n\t    if (t.isIdentifier(node)) {\n\t      var binding = this.getBinding(node.name);\n\t      if (binding && binding.constant && binding.path.isGenericType(\"Array\")) return node;\n\t    }\n\n\t    if (t.isArrayExpression(node)) {\n\t      return node;\n\t    }\n\n\t    if (t.isIdentifier(node, { name: \"arguments\" })) {\n\t      return t.callExpression(t.memberExpression(t.memberExpression(t.memberExpression(t.identifier(\"Array\"), t.identifier(\"prototype\")), t.identifier(\"slice\")), t.identifier(\"call\")), [node]);\n\t    }\n\n\t    var helperName = \"toArray\";\n\t    var args = [node];\n\t    if (i === true) {\n\t      helperName = \"toConsumableArray\";\n\t    } else if (i) {\n\t      args.push(t.numericLiteral(i));\n\t      helperName = \"slicedToArray\";\n\t    }\n\t    return t.callExpression(file.addHelper(helperName), args);\n\t  };\n\n\t  Scope.prototype.hasLabel = function hasLabel(name) {\n\t    return !!this.getLabel(name);\n\t  };\n\n\t  Scope.prototype.getLabel = function getLabel(name) {\n\t    return this.labels.get(name);\n\t  };\n\n\t  Scope.prototype.registerLabel = function registerLabel(path) {\n\t    this.labels.set(path.node.label.name, path);\n\t  };\n\n\t  Scope.prototype.registerDeclaration = function registerDeclaration(path) {\n\t    if (path.isLabeledStatement()) {\n\t      this.registerLabel(path);\n\t    } else if (path.isFunctionDeclaration()) {\n\t      this.registerBinding(\"hoisted\", path.get(\"id\"), path);\n\t    } else if (path.isVariableDeclaration()) {\n\t      var declarations = path.get(\"declarations\");\n\t      for (var _iterator7 = declarations, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : (0, _getIterator3.default)(_iterator7);;) {\n\t        var _ref7;\n\n\t        if (_isArray7) {\n\t          if (_i7 >= _iterator7.length) break;\n\t          _ref7 = _iterator7[_i7++];\n\t        } else {\n\t          _i7 = _iterator7.next();\n\t          if (_i7.done) break;\n\t          _ref7 = _i7.value;\n\t        }\n\n\t        var declar = _ref7;\n\n\t        this.registerBinding(path.node.kind, declar);\n\t      }\n\t    } else if (path.isClassDeclaration()) {\n\t      this.registerBinding(\"let\", path);\n\t    } else if (path.isImportDeclaration()) {\n\t      var specifiers = path.get(\"specifiers\");\n\t      for (var _iterator8 = specifiers, _isArray8 = Array.isArray(_iterator8), _i8 = 0, _iterator8 = _isArray8 ? _iterator8 : (0, _getIterator3.default)(_iterator8);;) {\n\t        var _ref8;\n\n\t        if (_isArray8) {\n\t          if (_i8 >= _iterator8.length) break;\n\t          _ref8 = _iterator8[_i8++];\n\t        } else {\n\t          _i8 = _iterator8.next();\n\t          if (_i8.done) break;\n\t          _ref8 = _i8.value;\n\t        }\n\n\t        var specifier = _ref8;\n\n\t        this.registerBinding(\"module\", specifier);\n\t      }\n\t    } else if (path.isExportDeclaration()) {\n\t      var _declar = path.get(\"declaration\");\n\t      if (_declar.isClassDeclaration() || _declar.isFunctionDeclaration() || _declar.isVariableDeclaration()) {\n\t        this.registerDeclaration(_declar);\n\t      }\n\t    } else {\n\t      this.registerBinding(\"unknown\", path);\n\t    }\n\t  };\n\n\t  Scope.prototype.buildUndefinedNode = function buildUndefinedNode() {\n\t    if (this.hasBinding(\"undefined\")) {\n\t      return t.unaryExpression(\"void\", t.numericLiteral(0), true);\n\t    } else {\n\t      return t.identifier(\"undefined\");\n\t    }\n\t  };\n\n\t  Scope.prototype.registerConstantViolation = function registerConstantViolation(path) {\n\t    var ids = path.getBindingIdentifiers();\n\t    for (var name in ids) {\n\t      var binding = this.getBinding(name);\n\t      if (binding) binding.reassign(path);\n\t    }\n\t  };\n\n\t  Scope.prototype.registerBinding = function registerBinding(kind, path) {\n\t    var bindingPath = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : path;\n\n\t    if (!kind) throw new ReferenceError(\"no `kind`\");\n\n\t    if (path.isVariableDeclaration()) {\n\t      var declarators = path.get(\"declarations\");\n\t      for (var _iterator9 = declarators, _isArray9 = Array.isArray(_iterator9), _i9 = 0, _iterator9 = _isArray9 ? _iterator9 : (0, _getIterator3.default)(_iterator9);;) {\n\t        var _ref9;\n\n\t        if (_isArray9) {\n\t          if (_i9 >= _iterator9.length) break;\n\t          _ref9 = _iterator9[_i9++];\n\t        } else {\n\t          _i9 = _iterator9.next();\n\t          if (_i9.done) break;\n\t          _ref9 = _i9.value;\n\t        }\n\n\t        var declar = _ref9;\n\n\t        this.registerBinding(kind, declar);\n\t      }\n\t      return;\n\t    }\n\n\t    var parent = this.getProgramParent();\n\t    var ids = path.getBindingIdentifiers(true);\n\n\t    for (var name in ids) {\n\t      for (var _iterator10 = ids[name], _isArray10 = Array.isArray(_iterator10), _i10 = 0, _iterator10 = _isArray10 ? _iterator10 : (0, _getIterator3.default)(_iterator10);;) {\n\t        var _ref10;\n\n\t        if (_isArray10) {\n\t          if (_i10 >= _iterator10.length) break;\n\t          _ref10 = _iterator10[_i10++];\n\t        } else {\n\t          _i10 = _iterator10.next();\n\t          if (_i10.done) break;\n\t          _ref10 = _i10.value;\n\t        }\n\n\t        var _id3 = _ref10;\n\n\t        var local = this.getOwnBinding(name);\n\t        if (local) {\n\t          if (local.identifier === _id3) continue;\n\n\t          this.checkBlockScopedCollisions(local, kind, name, _id3);\n\t        }\n\n\t        if (local && local.path.isFlow()) local = null;\n\n\t        parent.references[name] = true;\n\n\t        this.bindings[name] = new _binding3.default({\n\t          identifier: _id3,\n\t          existing: local,\n\t          scope: this,\n\t          path: bindingPath,\n\t          kind: kind\n\t        });\n\t      }\n\t    }\n\t  };\n\n\t  Scope.prototype.addGlobal = function addGlobal(node) {\n\t    this.globals[node.name] = node;\n\t  };\n\n\t  Scope.prototype.hasUid = function hasUid(name) {\n\t    var scope = this;\n\n\t    do {\n\t      if (scope.uids[name]) return true;\n\t    } while (scope = scope.parent);\n\n\t    return false;\n\t  };\n\n\t  Scope.prototype.hasGlobal = function hasGlobal(name) {\n\t    var scope = this;\n\n\t    do {\n\t      if (scope.globals[name]) return true;\n\t    } while (scope = scope.parent);\n\n\t    return false;\n\t  };\n\n\t  Scope.prototype.hasReference = function hasReference(name) {\n\t    var scope = this;\n\n\t    do {\n\t      if (scope.references[name]) return true;\n\t    } while (scope = scope.parent);\n\n\t    return false;\n\t  };\n\n\t  Scope.prototype.isPure = function isPure(node, constantsOnly) {\n\t    if (t.isIdentifier(node)) {\n\t      var binding = this.getBinding(node.name);\n\t      if (!binding) return false;\n\t      if (constantsOnly) return binding.constant;\n\t      return true;\n\t    } else if (t.isClass(node)) {\n\t      if (node.superClass && !this.isPure(node.superClass, constantsOnly)) return false;\n\t      return this.isPure(node.body, constantsOnly);\n\t    } else if (t.isClassBody(node)) {\n\t      for (var _iterator11 = node.body, _isArray11 = Array.isArray(_iterator11), _i11 = 0, _iterator11 = _isArray11 ? _iterator11 : (0, _getIterator3.default)(_iterator11);;) {\n\t        var _ref11;\n\n\t        if (_isArray11) {\n\t          if (_i11 >= _iterator11.length) break;\n\t          _ref11 = _iterator11[_i11++];\n\t        } else {\n\t          _i11 = _iterator11.next();\n\t          if (_i11.done) break;\n\t          _ref11 = _i11.value;\n\t        }\n\n\t        var method = _ref11;\n\n\t        if (!this.isPure(method, constantsOnly)) return false;\n\t      }\n\t      return true;\n\t    } else if (t.isBinary(node)) {\n\t      return this.isPure(node.left, constantsOnly) && this.isPure(node.right, constantsOnly);\n\t    } else if (t.isArrayExpression(node)) {\n\t      for (var _iterator12 = node.elements, _isArray12 = Array.isArray(_iterator12), _i12 = 0, _iterator12 = _isArray12 ? _iterator12 : (0, _getIterator3.default)(_iterator12);;) {\n\t        var _ref12;\n\n\t        if (_isArray12) {\n\t          if (_i12 >= _iterator12.length) break;\n\t          _ref12 = _iterator12[_i12++];\n\t        } else {\n\t          _i12 = _iterator12.next();\n\t          if (_i12.done) break;\n\t          _ref12 = _i12.value;\n\t        }\n\n\t        var elem = _ref12;\n\n\t        if (!this.isPure(elem, constantsOnly)) return false;\n\t      }\n\t      return true;\n\t    } else if (t.isObjectExpression(node)) {\n\t      for (var _iterator13 = node.properties, _isArray13 = Array.isArray(_iterator13), _i13 = 0, _iterator13 = _isArray13 ? _iterator13 : (0, _getIterator3.default)(_iterator13);;) {\n\t        var _ref13;\n\n\t        if (_isArray13) {\n\t          if (_i13 >= _iterator13.length) break;\n\t          _ref13 = _iterator13[_i13++];\n\t        } else {\n\t          _i13 = _iterator13.next();\n\t          if (_i13.done) break;\n\t          _ref13 = _i13.value;\n\t        }\n\n\t        var prop = _ref13;\n\n\t        if (!this.isPure(prop, constantsOnly)) return false;\n\t      }\n\t      return true;\n\t    } else if (t.isClassMethod(node)) {\n\t      if (node.computed && !this.isPure(node.key, constantsOnly)) return false;\n\t      if (node.kind === \"get\" || node.kind === \"set\") return false;\n\t      return true;\n\t    } else if (t.isClassProperty(node) || t.isObjectProperty(node)) {\n\t      if (node.computed && !this.isPure(node.key, constantsOnly)) return false;\n\t      return this.isPure(node.value, constantsOnly);\n\t    } else if (t.isUnaryExpression(node)) {\n\t      return this.isPure(node.argument, constantsOnly);\n\t    } else {\n\t      return t.isPureish(node);\n\t    }\n\t  };\n\n\t  Scope.prototype.setData = function setData(key, val) {\n\t    return this.data[key] = val;\n\t  };\n\n\t  Scope.prototype.getData = function getData(key) {\n\t    var scope = this;\n\t    do {\n\t      var data = scope.data[key];\n\t      if (data != null) return data;\n\t    } while (scope = scope.parent);\n\t  };\n\n\t  Scope.prototype.removeData = function removeData(key) {\n\t    var scope = this;\n\t    do {\n\t      var data = scope.data[key];\n\t      if (data != null) scope.data[key] = null;\n\t    } while (scope = scope.parent);\n\t  };\n\n\t  Scope.prototype.init = function init() {\n\t    if (!this.references) this.crawl();\n\t  };\n\n\t  Scope.prototype.crawl = function crawl() {\n\t    _crawlCallsCount++;\n\t    this._crawl();\n\t    _crawlCallsCount--;\n\t  };\n\n\t  Scope.prototype._crawl = function _crawl() {\n\t    var path = this.path;\n\n\t    this.references = (0, _create2.default)(null);\n\t    this.bindings = (0, _create2.default)(null);\n\t    this.globals = (0, _create2.default)(null);\n\t    this.uids = (0, _create2.default)(null);\n\t    this.data = (0, _create2.default)(null);\n\n\t    if (path.isLoop()) {\n\t      for (var _iterator14 = t.FOR_INIT_KEYS, _isArray14 = Array.isArray(_iterator14), _i14 = 0, _iterator14 = _isArray14 ? _iterator14 : (0, _getIterator3.default)(_iterator14);;) {\n\t        var _ref14;\n\n\t        if (_isArray14) {\n\t          if (_i14 >= _iterator14.length) break;\n\t          _ref14 = _iterator14[_i14++];\n\t        } else {\n\t          _i14 = _iterator14.next();\n\t          if (_i14.done) break;\n\t          _ref14 = _i14.value;\n\t        }\n\n\t        var key = _ref14;\n\n\t        var node = path.get(key);\n\t        if (node.isBlockScoped()) this.registerBinding(node.node.kind, node);\n\t      }\n\t    }\n\n\t    if (path.isFunctionExpression() && path.has(\"id\")) {\n\t      if (!path.get(\"id\").node[t.NOT_LOCAL_BINDING]) {\n\t        this.registerBinding(\"local\", path.get(\"id\"), path);\n\t      }\n\t    }\n\n\t    if (path.isClassExpression() && path.has(\"id\")) {\n\t      if (!path.get(\"id\").node[t.NOT_LOCAL_BINDING]) {\n\t        this.registerBinding(\"local\", path);\n\t      }\n\t    }\n\n\t    if (path.isFunction()) {\n\t      var params = path.get(\"params\");\n\t      for (var _iterator15 = params, _isArray15 = Array.isArray(_iterator15), _i15 = 0, _iterator15 = _isArray15 ? _iterator15 : (0, _getIterator3.default)(_iterator15);;) {\n\t        var _ref15;\n\n\t        if (_isArray15) {\n\t          if (_i15 >= _iterator15.length) break;\n\t          _ref15 = _iterator15[_i15++];\n\t        } else {\n\t          _i15 = _iterator15.next();\n\t          if (_i15.done) break;\n\t          _ref15 = _i15.value;\n\t        }\n\n\t        var param = _ref15;\n\n\t        this.registerBinding(\"param\", param);\n\t      }\n\t    }\n\n\t    if (path.isCatchClause()) {\n\t      this.registerBinding(\"let\", path);\n\t    }\n\n\t    var parent = this.getProgramParent();\n\t    if (parent.crawling) return;\n\n\t    var state = {\n\t      references: [],\n\t      constantViolations: [],\n\t      assignments: []\n\t    };\n\n\t    this.crawling = true;\n\t    path.traverse(collectorVisitor, state);\n\t    this.crawling = false;\n\n\t    for (var _iterator16 = state.assignments, _isArray16 = Array.isArray(_iterator16), _i16 = 0, _iterator16 = _isArray16 ? _iterator16 : (0, _getIterator3.default)(_iterator16);;) {\n\t      var _ref16;\n\n\t      if (_isArray16) {\n\t        if (_i16 >= _iterator16.length) break;\n\t        _ref16 = _iterator16[_i16++];\n\t      } else {\n\t        _i16 = _iterator16.next();\n\t        if (_i16.done) break;\n\t        _ref16 = _i16.value;\n\t      }\n\n\t      var _path = _ref16;\n\n\t      var ids = _path.getBindingIdentifiers();\n\t      var programParent = void 0;\n\t      for (var name in ids) {\n\t        if (_path.scope.getBinding(name)) continue;\n\n\t        programParent = programParent || _path.scope.getProgramParent();\n\t        programParent.addGlobal(ids[name]);\n\t      }\n\n\t      _path.scope.registerConstantViolation(_path);\n\t    }\n\n\t    for (var _iterator17 = state.references, _isArray17 = Array.isArray(_iterator17), _i17 = 0, _iterator17 = _isArray17 ? _iterator17 : (0, _getIterator3.default)(_iterator17);;) {\n\t      var _ref17;\n\n\t      if (_isArray17) {\n\t        if (_i17 >= _iterator17.length) break;\n\t        _ref17 = _iterator17[_i17++];\n\t      } else {\n\t        _i17 = _iterator17.next();\n\t        if (_i17.done) break;\n\t        _ref17 = _i17.value;\n\t      }\n\n\t      var ref = _ref17;\n\n\t      var binding = ref.scope.getBinding(ref.node.name);\n\t      if (binding) {\n\t        binding.reference(ref);\n\t      } else {\n\t        ref.scope.getProgramParent().addGlobal(ref.node);\n\t      }\n\t    }\n\n\t    for (var _iterator18 = state.constantViolations, _isArray18 = Array.isArray(_iterator18), _i18 = 0, _iterator18 = _isArray18 ? _iterator18 : (0, _getIterator3.default)(_iterator18);;) {\n\t      var _ref18;\n\n\t      if (_isArray18) {\n\t        if (_i18 >= _iterator18.length) break;\n\t        _ref18 = _iterator18[_i18++];\n\t      } else {\n\t        _i18 = _iterator18.next();\n\t        if (_i18.done) break;\n\t        _ref18 = _i18.value;\n\t      }\n\n\t      var _path2 = _ref18;\n\n\t      _path2.scope.registerConstantViolation(_path2);\n\t    }\n\t  };\n\n\t  Scope.prototype.push = function push(opts) {\n\t    var path = this.path;\n\n\t    if (!path.isBlockStatement() && !path.isProgram()) {\n\t      path = this.getBlockParent().path;\n\t    }\n\n\t    if (path.isSwitchStatement()) {\n\t      path = this.getFunctionParent().path;\n\t    }\n\n\t    if (path.isLoop() || path.isCatchClause() || path.isFunction()) {\n\t      t.ensureBlock(path.node);\n\t      path = path.get(\"body\");\n\t    }\n\n\t    var unique = opts.unique;\n\t    var kind = opts.kind || \"var\";\n\t    var blockHoist = opts._blockHoist == null ? 2 : opts._blockHoist;\n\n\t    var dataKey = \"declaration:\" + kind + \":\" + blockHoist;\n\t    var declarPath = !unique && path.getData(dataKey);\n\n\t    if (!declarPath) {\n\t      var declar = t.variableDeclaration(kind, []);\n\t      declar._generated = true;\n\t      declar._blockHoist = blockHoist;\n\n\t      var _path$unshiftContaine = path.unshiftContainer(\"body\", [declar]);\n\n\t      declarPath = _path$unshiftContaine[0];\n\n\t      if (!unique) path.setData(dataKey, declarPath);\n\t    }\n\n\t    var declarator = t.variableDeclarator(opts.id, opts.init);\n\t    declarPath.node.declarations.push(declarator);\n\t    this.registerBinding(kind, declarPath.get(\"declarations\").pop());\n\t  };\n\n\t  Scope.prototype.getProgramParent = function getProgramParent() {\n\t    var scope = this;\n\t    do {\n\t      if (scope.path.isProgram()) {\n\t        return scope;\n\t      }\n\t    } while (scope = scope.parent);\n\t    throw new Error(\"We couldn't find a Function or Program...\");\n\t  };\n\n\t  Scope.prototype.getFunctionParent = function getFunctionParent() {\n\t    var scope = this;\n\t    do {\n\t      if (scope.path.isFunctionParent()) {\n\t        return scope;\n\t      }\n\t    } while (scope = scope.parent);\n\t    throw new Error(\"We couldn't find a Function or Program...\");\n\t  };\n\n\t  Scope.prototype.getBlockParent = function getBlockParent() {\n\t    var scope = this;\n\t    do {\n\t      if (scope.path.isBlockParent()) {\n\t        return scope;\n\t      }\n\t    } while (scope = scope.parent);\n\t    throw new Error(\"We couldn't find a BlockStatement, For, Switch, Function, Loop or Program...\");\n\t  };\n\n\t  Scope.prototype.getAllBindings = function getAllBindings() {\n\t    var ids = (0, _create2.default)(null);\n\n\t    var scope = this;\n\t    do {\n\t      (0, _defaults2.default)(ids, scope.bindings);\n\t      scope = scope.parent;\n\t    } while (scope);\n\n\t    return ids;\n\t  };\n\n\t  Scope.prototype.getAllBindingsOfKind = function getAllBindingsOfKind() {\n\t    var ids = (0, _create2.default)(null);\n\n\t    for (var _iterator19 = arguments, _isArray19 = Array.isArray(_iterator19), _i19 = 0, _iterator19 = _isArray19 ? _iterator19 : (0, _getIterator3.default)(_iterator19);;) {\n\t      var _ref19;\n\n\t      if (_isArray19) {\n\t        if (_i19 >= _iterator19.length) break;\n\t        _ref19 = _iterator19[_i19++];\n\t      } else {\n\t        _i19 = _iterator19.next();\n\t        if (_i19.done) break;\n\t        _ref19 = _i19.value;\n\t      }\n\n\t      var kind = _ref19;\n\n\t      var scope = this;\n\t      do {\n\t        for (var name in scope.bindings) {\n\t          var binding = scope.bindings[name];\n\t          if (binding.kind === kind) ids[name] = binding;\n\t        }\n\t        scope = scope.parent;\n\t      } while (scope);\n\t    }\n\n\t    return ids;\n\t  };\n\n\t  Scope.prototype.bindingIdentifierEquals = function bindingIdentifierEquals(name, node) {\n\t    return this.getBindingIdentifier(name) === node;\n\t  };\n\n\t  Scope.prototype.warnOnFlowBinding = function warnOnFlowBinding(binding) {\n\t    if (_crawlCallsCount === 0 && binding && binding.path.isFlow()) {\n\t      console.warn(\"\\n        You or one of the Babel plugins you are using are using Flow declarations as bindings.\\n        Support for this will be removed in version 7. To find out the caller, grep for this\\n        message and change it to a `console.trace()`.\\n      \");\n\t    }\n\t    return binding;\n\t  };\n\n\t  Scope.prototype.getBinding = function getBinding(name) {\n\t    var scope = this;\n\n\t    do {\n\t      var binding = scope.getOwnBinding(name);\n\t      if (binding) return this.warnOnFlowBinding(binding);\n\t    } while (scope = scope.parent);\n\t  };\n\n\t  Scope.prototype.getOwnBinding = function getOwnBinding(name) {\n\t    return this.warnOnFlowBinding(this.bindings[name]);\n\t  };\n\n\t  Scope.prototype.getBindingIdentifier = function getBindingIdentifier(name) {\n\t    var info = this.getBinding(name);\n\t    return info && info.identifier;\n\t  };\n\n\t  Scope.prototype.getOwnBindingIdentifier = function getOwnBindingIdentifier(name) {\n\t    var binding = this.bindings[name];\n\t    return binding && binding.identifier;\n\t  };\n\n\t  Scope.prototype.hasOwnBinding = function hasOwnBinding(name) {\n\t    return !!this.getOwnBinding(name);\n\t  };\n\n\t  Scope.prototype.hasBinding = function hasBinding(name, noGlobals) {\n\t    if (!name) return false;\n\t    if (this.hasOwnBinding(name)) return true;\n\t    if (this.parentHasBinding(name, noGlobals)) return true;\n\t    if (this.hasUid(name)) return true;\n\t    if (!noGlobals && (0, _includes2.default)(Scope.globals, name)) return true;\n\t    if (!noGlobals && (0, _includes2.default)(Scope.contextVariables, name)) return true;\n\t    return false;\n\t  };\n\n\t  Scope.prototype.parentHasBinding = function parentHasBinding(name, noGlobals) {\n\t    return this.parent && this.parent.hasBinding(name, noGlobals);\n\t  };\n\n\t  Scope.prototype.moveBindingTo = function moveBindingTo(name, scope) {\n\t    var info = this.getBinding(name);\n\t    if (info) {\n\t      info.scope.removeOwnBinding(name);\n\t      info.scope = scope;\n\t      scope.bindings[name] = info;\n\t    }\n\t  };\n\n\t  Scope.prototype.removeOwnBinding = function removeOwnBinding(name) {\n\t    delete this.bindings[name];\n\t  };\n\n\t  Scope.prototype.removeBinding = function removeBinding(name) {\n\t    var info = this.getBinding(name);\n\t    if (info) {\n\t      info.scope.removeOwnBinding(name);\n\t    }\n\n\t    var scope = this;\n\t    do {\n\t      if (scope.uids[name]) {\n\t        scope.uids[name] = false;\n\t      }\n\t    } while (scope = scope.parent);\n\t  };\n\n\t  return Scope;\n\t}();\n\n\tScope.globals = (0, _keys2.default)(_globals2.default.builtin);\n\tScope.contextVariables = [\"arguments\", \"undefined\", \"Infinity\", \"NaN\"];\n\texports.default = Scope;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 135 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.NOT_LOCAL_BINDING = exports.BLOCK_SCOPED_SYMBOL = exports.INHERIT_KEYS = exports.UNARY_OPERATORS = exports.STRING_UNARY_OPERATORS = exports.NUMBER_UNARY_OPERATORS = exports.BOOLEAN_UNARY_OPERATORS = exports.BINARY_OPERATORS = exports.NUMBER_BINARY_OPERATORS = exports.BOOLEAN_BINARY_OPERATORS = exports.COMPARISON_BINARY_OPERATORS = exports.EQUALITY_BINARY_OPERATORS = exports.BOOLEAN_NUMBER_BINARY_OPERATORS = exports.UPDATE_OPERATORS = exports.LOGICAL_OPERATORS = exports.COMMENT_KEYS = exports.FOR_INIT_KEYS = exports.FLATTENABLE_KEYS = exports.STATEMENT_OR_BLOCK_KEYS = undefined;\n\n\tvar _for = __webpack_require__(362);\n\n\tvar _for2 = _interopRequireDefault(_for);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar STATEMENT_OR_BLOCK_KEYS = exports.STATEMENT_OR_BLOCK_KEYS = [\"consequent\", \"body\", \"alternate\"];\n\tvar FLATTENABLE_KEYS = exports.FLATTENABLE_KEYS = [\"body\", \"expressions\"];\n\tvar FOR_INIT_KEYS = exports.FOR_INIT_KEYS = [\"left\", \"init\"];\n\tvar COMMENT_KEYS = exports.COMMENT_KEYS = [\"leadingComments\", \"trailingComments\", \"innerComments\"];\n\n\tvar LOGICAL_OPERATORS = exports.LOGICAL_OPERATORS = [\"||\", \"&&\"];\n\tvar UPDATE_OPERATORS = exports.UPDATE_OPERATORS = [\"++\", \"--\"];\n\n\tvar BOOLEAN_NUMBER_BINARY_OPERATORS = exports.BOOLEAN_NUMBER_BINARY_OPERATORS = [\">\", \"<\", \">=\", \"<=\"];\n\tvar EQUALITY_BINARY_OPERATORS = exports.EQUALITY_BINARY_OPERATORS = [\"==\", \"===\", \"!=\", \"!==\"];\n\tvar COMPARISON_BINARY_OPERATORS = exports.COMPARISON_BINARY_OPERATORS = [].concat(EQUALITY_BINARY_OPERATORS, [\"in\", \"instanceof\"]);\n\tvar BOOLEAN_BINARY_OPERATORS = exports.BOOLEAN_BINARY_OPERATORS = [].concat(COMPARISON_BINARY_OPERATORS, BOOLEAN_NUMBER_BINARY_OPERATORS);\n\tvar NUMBER_BINARY_OPERATORS = exports.NUMBER_BINARY_OPERATORS = [\"-\", \"/\", \"%\", \"*\", \"**\", \"&\", \"|\", \">>\", \">>>\", \"<<\", \"^\"];\n\tvar BINARY_OPERATORS = exports.BINARY_OPERATORS = [\"+\"].concat(NUMBER_BINARY_OPERATORS, BOOLEAN_BINARY_OPERATORS);\n\n\tvar BOOLEAN_UNARY_OPERATORS = exports.BOOLEAN_UNARY_OPERATORS = [\"delete\", \"!\"];\n\tvar NUMBER_UNARY_OPERATORS = exports.NUMBER_UNARY_OPERATORS = [\"+\", \"-\", \"++\", \"--\", \"~\"];\n\tvar STRING_UNARY_OPERATORS = exports.STRING_UNARY_OPERATORS = [\"typeof\"];\n\tvar UNARY_OPERATORS = exports.UNARY_OPERATORS = [\"void\"].concat(BOOLEAN_UNARY_OPERATORS, NUMBER_UNARY_OPERATORS, STRING_UNARY_OPERATORS);\n\n\tvar INHERIT_KEYS = exports.INHERIT_KEYS = {\n\t  optional: [\"typeAnnotation\", \"typeParameters\", \"returnType\"],\n\t  force: [\"start\", \"loc\", \"end\"]\n\t};\n\n\tvar BLOCK_SCOPED_SYMBOL = exports.BLOCK_SCOPED_SYMBOL = (0, _for2.default)(\"var used to be block scoped\");\n\tvar NOT_LOCAL_BINDING = exports.NOT_LOCAL_BINDING = (0, _for2.default)(\"should not be considered a local binding\");\n\n/***/ }),\n/* 136 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function (it, Constructor, name, forbiddenField) {\n\t  if (!(it instanceof Constructor) || forbiddenField !== undefined && forbiddenField in it) {\n\t    throw TypeError(name + ': incorrect invocation!');\n\t  }return it;\n\t};\n\n/***/ }),\n/* 137 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 0 -> Array#forEach\n\t// 1 -> Array#map\n\t// 2 -> Array#filter\n\t// 3 -> Array#some\n\t// 4 -> Array#every\n\t// 5 -> Array#find\n\t// 6 -> Array#findIndex\n\tvar ctx = __webpack_require__(43);\n\tvar IObject = __webpack_require__(142);\n\tvar toObject = __webpack_require__(94);\n\tvar toLength = __webpack_require__(153);\n\tvar asc = __webpack_require__(422);\n\tmodule.exports = function (TYPE, $create) {\n\t  var IS_MAP = TYPE == 1;\n\t  var IS_FILTER = TYPE == 2;\n\t  var IS_SOME = TYPE == 3;\n\t  var IS_EVERY = TYPE == 4;\n\t  var IS_FIND_INDEX = TYPE == 6;\n\t  var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n\t  var create = $create || asc;\n\t  return function ($this, callbackfn, that) {\n\t    var O = toObject($this);\n\t    var self = IObject(O);\n\t    var f = ctx(callbackfn, that, 3);\n\t    var length = toLength(self.length);\n\t    var index = 0;\n\t    var result = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n\t    var val, res;\n\t    for (; length > index; index++) {\n\t      if (NO_HOLES || index in self) {\n\t        val = self[index];\n\t        res = f(val, index, O);\n\t        if (TYPE) {\n\t          if (IS_MAP) result[index] = res; // map\n\t          else if (res) switch (TYPE) {\n\t              case 3:\n\t                return true; // some\n\t              case 5:\n\t                return val; // find\n\t              case 6:\n\t                return index; // findIndex\n\t              case 2:\n\t                result.push(val); // filter\n\t            } else if (IS_EVERY) return false; // every\n\t        }\n\t      }\n\t    }return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : result;\n\t  };\n\t};\n\n/***/ }),\n/* 138 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tvar toString = {}.toString;\n\n\tmodule.exports = function (it) {\n\t  return toString.call(it).slice(8, -1);\n\t};\n\n/***/ }),\n/* 139 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar global = __webpack_require__(15);\n\tvar $export = __webpack_require__(12);\n\tvar meta = __webpack_require__(57);\n\tvar fails = __webpack_require__(27);\n\tvar hide = __webpack_require__(29);\n\tvar redefineAll = __webpack_require__(146);\n\tvar forOf = __webpack_require__(55);\n\tvar anInstance = __webpack_require__(136);\n\tvar isObject = __webpack_require__(16);\n\tvar setToStringTag = __webpack_require__(93);\n\tvar dP = __webpack_require__(23).f;\n\tvar each = __webpack_require__(137)(0);\n\tvar DESCRIPTORS = __webpack_require__(22);\n\n\tmodule.exports = function (NAME, wrapper, methods, common, IS_MAP, IS_WEAK) {\n\t  var Base = global[NAME];\n\t  var C = Base;\n\t  var ADDER = IS_MAP ? 'set' : 'add';\n\t  var proto = C && C.prototype;\n\t  var O = {};\n\t  if (!DESCRIPTORS || typeof C != 'function' || !(IS_WEAK || proto.forEach && !fails(function () {\n\t    new C().entries().next();\n\t  }))) {\n\t    // create collection constructor\n\t    C = common.getConstructor(wrapper, NAME, IS_MAP, ADDER);\n\t    redefineAll(C.prototype, methods);\n\t    meta.NEED = true;\n\t  } else {\n\t    C = wrapper(function (target, iterable) {\n\t      anInstance(target, C, NAME, '_c');\n\t      target._c = new Base();\n\t      if (iterable != undefined) forOf(iterable, IS_MAP, target[ADDER], target);\n\t    });\n\t    each('add,clear,delete,forEach,get,has,set,keys,values,entries,toJSON'.split(','), function (KEY) {\n\t      var IS_ADDER = KEY == 'add' || KEY == 'set';\n\t      if (KEY in proto && !(IS_WEAK && KEY == 'clear')) hide(C.prototype, KEY, function (a, b) {\n\t        anInstance(this, C, KEY);\n\t        if (!IS_ADDER && IS_WEAK && !isObject(a)) return KEY == 'get' ? undefined : false;\n\t        var result = this._c[KEY](a === 0 ? 0 : a, b);\n\t        return IS_ADDER ? this : result;\n\t      });\n\t    });\n\t    IS_WEAK || dP(C.prototype, 'size', {\n\t      get: function get() {\n\t        return this._c.size;\n\t      }\n\t    });\n\t  }\n\n\t  setToStringTag(C, NAME);\n\n\t  O[NAME] = C;\n\t  $export($export.G + $export.W + $export.F, O);\n\n\t  if (!IS_WEAK) common.setStrong(C, NAME, IS_MAP);\n\n\t  return C;\n\t};\n\n/***/ }),\n/* 140 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t// 7.2.1 RequireObjectCoercible(argument)\n\tmodule.exports = function (it) {\n\t  if (it == undefined) throw TypeError(\"Can't call method on  \" + it);\n\t  return it;\n\t};\n\n/***/ }),\n/* 141 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t// IE 8- don't enum bug keys\n\tmodule.exports = 'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'.split(',');\n\n/***/ }),\n/* 142 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// fallback for non-array-like ES3 and non-enumerable old V8 strings\n\tvar cof = __webpack_require__(138);\n\t// eslint-disable-next-line no-prototype-builtins\n\tmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n\t  return cof(it) == 'String' ? it.split('') : Object(it);\n\t};\n\n/***/ }),\n/* 143 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar LIBRARY = __webpack_require__(144);\n\tvar $export = __webpack_require__(12);\n\tvar redefine = __webpack_require__(147);\n\tvar hide = __webpack_require__(29);\n\tvar has = __webpack_require__(28);\n\tvar Iterators = __webpack_require__(56);\n\tvar $iterCreate = __webpack_require__(429);\n\tvar setToStringTag = __webpack_require__(93);\n\tvar getPrototypeOf = __webpack_require__(433);\n\tvar ITERATOR = __webpack_require__(13)('iterator');\n\tvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\n\tvar FF_ITERATOR = '@@iterator';\n\tvar KEYS = 'keys';\n\tvar VALUES = 'values';\n\n\tvar returnThis = function returnThis() {\n\t  return this;\n\t};\n\n\tmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n\t  $iterCreate(Constructor, NAME, next);\n\t  var getMethod = function getMethod(kind) {\n\t    if (!BUGGY && kind in proto) return proto[kind];\n\t    switch (kind) {\n\t      case KEYS:\n\t        return function keys() {\n\t          return new Constructor(this, kind);\n\t        };\n\t      case VALUES:\n\t        return function values() {\n\t          return new Constructor(this, kind);\n\t        };\n\t    }return function entries() {\n\t      return new Constructor(this, kind);\n\t    };\n\t  };\n\t  var TAG = NAME + ' Iterator';\n\t  var DEF_VALUES = DEFAULT == VALUES;\n\t  var VALUES_BUG = false;\n\t  var proto = Base.prototype;\n\t  var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n\t  var $default = $native || getMethod(DEFAULT);\n\t  var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n\t  var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n\t  var methods, key, IteratorPrototype;\n\t  // Fix native\n\t  if ($anyNative) {\n\t    IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n\t    if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n\t      // Set @@toStringTag to native iterators\n\t      setToStringTag(IteratorPrototype, TAG, true);\n\t      // fix for some old engines\n\t      if (!LIBRARY && !has(IteratorPrototype, ITERATOR)) hide(IteratorPrototype, ITERATOR, returnThis);\n\t    }\n\t  }\n\t  // fix Array#{values, @@iterator}.name in V8 / FF\n\t  if (DEF_VALUES && $native && $native.name !== VALUES) {\n\t    VALUES_BUG = true;\n\t    $default = function values() {\n\t      return $native.call(this);\n\t    };\n\t  }\n\t  // Define iterator\n\t  if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n\t    hide(proto, ITERATOR, $default);\n\t  }\n\t  // Plug for library\n\t  Iterators[NAME] = $default;\n\t  Iterators[TAG] = returnThis;\n\t  if (DEFAULT) {\n\t    methods = {\n\t      values: DEF_VALUES ? $default : getMethod(VALUES),\n\t      keys: IS_SET ? $default : getMethod(KEYS),\n\t      entries: $entries\n\t    };\n\t    if (FORCED) for (key in methods) {\n\t      if (!(key in proto)) redefine(proto, key, methods[key]);\n\t    } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n\t  }\n\t  return methods;\n\t};\n\n/***/ }),\n/* 144 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = true;\n\n/***/ }),\n/* 145 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.f = Object.getOwnPropertySymbols;\n\n/***/ }),\n/* 146 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar hide = __webpack_require__(29);\n\tmodule.exports = function (target, src, safe) {\n\t  for (var key in src) {\n\t    if (safe && target[key]) target[key] = src[key];else hide(target, key, src[key]);\n\t  }return target;\n\t};\n\n/***/ }),\n/* 147 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tmodule.exports = __webpack_require__(29);\n\n/***/ }),\n/* 148 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// https://tc39.github.io/proposal-setmap-offrom/\n\n\tvar $export = __webpack_require__(12);\n\tvar aFunction = __webpack_require__(227);\n\tvar ctx = __webpack_require__(43);\n\tvar forOf = __webpack_require__(55);\n\n\tmodule.exports = function (COLLECTION) {\n\t  $export($export.S, COLLECTION, { from: function from(source /* , mapFn, thisArg */) {\n\t      var mapFn = arguments[1];\n\t      var mapping, A, n, cb;\n\t      aFunction(this);\n\t      mapping = mapFn !== undefined;\n\t      if (mapping) aFunction(mapFn);\n\t      if (source == undefined) return new this();\n\t      A = [];\n\t      if (mapping) {\n\t        n = 0;\n\t        cb = ctx(mapFn, arguments[2], 2);\n\t        forOf(source, false, function (nextItem) {\n\t          A.push(cb(nextItem, n++));\n\t        });\n\t      } else {\n\t        forOf(source, false, A.push, A);\n\t      }\n\t      return new this(A);\n\t    } });\n\t};\n\n/***/ }),\n/* 149 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// https://tc39.github.io/proposal-setmap-offrom/\n\n\tvar $export = __webpack_require__(12);\n\n\tmodule.exports = function (COLLECTION) {\n\t  $export($export.S, COLLECTION, { of: function of() {\n\t      var length = arguments.length;\n\t      var A = Array(length);\n\t      while (length--) {\n\t        A[length] = arguments[length];\n\t      }return new this(A);\n\t    } });\n\t};\n\n/***/ }),\n/* 150 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar shared = __webpack_require__(151)('keys');\n\tvar uid = __webpack_require__(95);\n\tmodule.exports = function (key) {\n\t  return shared[key] || (shared[key] = uid(key));\n\t};\n\n/***/ }),\n/* 151 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar global = __webpack_require__(15);\n\tvar SHARED = '__core-js_shared__';\n\tvar store = global[SHARED] || (global[SHARED] = {});\n\tmodule.exports = function (key) {\n\t  return store[key] || (store[key] = {});\n\t};\n\n/***/ }),\n/* 152 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t// 7.1.4 ToInteger\n\tvar ceil = Math.ceil;\n\tvar floor = Math.floor;\n\tmodule.exports = function (it) {\n\t  return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n\t};\n\n/***/ }),\n/* 153 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 7.1.15 ToLength\n\tvar toInteger = __webpack_require__(152);\n\tvar min = Math.min;\n\tmodule.exports = function (it) {\n\t  return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n\t};\n\n/***/ }),\n/* 154 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 7.1.1 ToPrimitive(input [, PreferredType])\n\tvar isObject = __webpack_require__(16);\n\t// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n\t// and the second argument - flag - preferred type is a string\n\tmodule.exports = function (it, S) {\n\t  if (!isObject(it)) return it;\n\t  var fn, val;\n\t  if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n\t  if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n\t  if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n\t  throw TypeError(\"Can't convert object to primitive value\");\n\t};\n\n/***/ }),\n/* 155 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar global = __webpack_require__(15);\n\tvar core = __webpack_require__(5);\n\tvar LIBRARY = __webpack_require__(144);\n\tvar wksExt = __webpack_require__(156);\n\tvar defineProperty = __webpack_require__(23).f;\n\tmodule.exports = function (name) {\n\t  var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {});\n\t  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) });\n\t};\n\n/***/ }),\n/* 156 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\texports.f = __webpack_require__(13);\n\n/***/ }),\n/* 157 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar $at = __webpack_require__(437)(true);\n\n\t// 21.1.3.27 String.prototype[@@iterator]()\n\t__webpack_require__(143)(String, 'String', function (iterated) {\n\t  this._t = String(iterated); // target\n\t  this._i = 0; // next index\n\t  // 21.1.5.2.1 %StringIteratorPrototype%.next()\n\t}, function () {\n\t  var O = this._t;\n\t  var index = this._i;\n\t  var point;\n\t  if (index >= O.length) return { value: undefined, done: true };\n\t  point = $at(O, index);\n\t  this._i += point.length;\n\t  return { value: point, done: false };\n\t});\n\n/***/ }),\n/* 158 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// ECMAScript 6 symbols shim\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar global = __webpack_require__(15);\n\tvar has = __webpack_require__(28);\n\tvar DESCRIPTORS = __webpack_require__(22);\n\tvar $export = __webpack_require__(12);\n\tvar redefine = __webpack_require__(147);\n\tvar META = __webpack_require__(57).KEY;\n\tvar $fails = __webpack_require__(27);\n\tvar shared = __webpack_require__(151);\n\tvar setToStringTag = __webpack_require__(93);\n\tvar uid = __webpack_require__(95);\n\tvar wks = __webpack_require__(13);\n\tvar wksExt = __webpack_require__(156);\n\tvar wksDefine = __webpack_require__(155);\n\tvar keyOf = __webpack_require__(430);\n\tvar enumKeys = __webpack_require__(425);\n\tvar isArray = __webpack_require__(232);\n\tvar anObject = __webpack_require__(21);\n\tvar toIObject = __webpack_require__(37);\n\tvar toPrimitive = __webpack_require__(154);\n\tvar createDesc = __webpack_require__(92);\n\tvar _create = __webpack_require__(90);\n\tvar gOPNExt = __webpack_require__(432);\n\tvar $GOPD = __webpack_require__(235);\n\tvar $DP = __webpack_require__(23);\n\tvar $keys = __webpack_require__(44);\n\tvar gOPD = $GOPD.f;\n\tvar dP = $DP.f;\n\tvar gOPN = gOPNExt.f;\n\tvar $Symbol = global.Symbol;\n\tvar $JSON = global.JSON;\n\tvar _stringify = $JSON && $JSON.stringify;\n\tvar PROTOTYPE = 'prototype';\n\tvar HIDDEN = wks('_hidden');\n\tvar TO_PRIMITIVE = wks('toPrimitive');\n\tvar isEnum = {}.propertyIsEnumerable;\n\tvar SymbolRegistry = shared('symbol-registry');\n\tvar AllSymbols = shared('symbols');\n\tvar OPSymbols = shared('op-symbols');\n\tvar ObjectProto = Object[PROTOTYPE];\n\tvar USE_NATIVE = typeof $Symbol == 'function';\n\tvar QObject = global.QObject;\n\t// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173\n\tvar setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;\n\n\t// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687\n\tvar setSymbolDesc = DESCRIPTORS && $fails(function () {\n\t  return _create(dP({}, 'a', {\n\t    get: function get() {\n\t      return dP(this, 'a', { value: 7 }).a;\n\t    }\n\t  })).a != 7;\n\t}) ? function (it, key, D) {\n\t  var protoDesc = gOPD(ObjectProto, key);\n\t  if (protoDesc) delete ObjectProto[key];\n\t  dP(it, key, D);\n\t  if (protoDesc && it !== ObjectProto) dP(ObjectProto, key, protoDesc);\n\t} : dP;\n\n\tvar wrap = function wrap(tag) {\n\t  var sym = AllSymbols[tag] = _create($Symbol[PROTOTYPE]);\n\t  sym._k = tag;\n\t  return sym;\n\t};\n\n\tvar isSymbol = USE_NATIVE && _typeof($Symbol.iterator) == 'symbol' ? function (it) {\n\t  return (typeof it === 'undefined' ? 'undefined' : _typeof(it)) == 'symbol';\n\t} : function (it) {\n\t  return it instanceof $Symbol;\n\t};\n\n\tvar $defineProperty = function defineProperty(it, key, D) {\n\t  if (it === ObjectProto) $defineProperty(OPSymbols, key, D);\n\t  anObject(it);\n\t  key = toPrimitive(key, true);\n\t  anObject(D);\n\t  if (has(AllSymbols, key)) {\n\t    if (!D.enumerable) {\n\t      if (!has(it, HIDDEN)) dP(it, HIDDEN, createDesc(1, {}));\n\t      it[HIDDEN][key] = true;\n\t    } else {\n\t      if (has(it, HIDDEN) && it[HIDDEN][key]) it[HIDDEN][key] = false;\n\t      D = _create(D, { enumerable: createDesc(0, false) });\n\t    }return setSymbolDesc(it, key, D);\n\t  }return dP(it, key, D);\n\t};\n\tvar $defineProperties = function defineProperties(it, P) {\n\t  anObject(it);\n\t  var keys = enumKeys(P = toIObject(P));\n\t  var i = 0;\n\t  var l = keys.length;\n\t  var key;\n\t  while (l > i) {\n\t    $defineProperty(it, key = keys[i++], P[key]);\n\t  }return it;\n\t};\n\tvar $create = function create(it, P) {\n\t  return P === undefined ? _create(it) : $defineProperties(_create(it), P);\n\t};\n\tvar $propertyIsEnumerable = function propertyIsEnumerable(key) {\n\t  var E = isEnum.call(this, key = toPrimitive(key, true));\n\t  if (this === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return false;\n\t  return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key] ? E : true;\n\t};\n\tvar $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(it, key) {\n\t  it = toIObject(it);\n\t  key = toPrimitive(key, true);\n\t  if (it === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return;\n\t  var D = gOPD(it, key);\n\t  if (D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) D.enumerable = true;\n\t  return D;\n\t};\n\tvar $getOwnPropertyNames = function getOwnPropertyNames(it) {\n\t  var names = gOPN(toIObject(it));\n\t  var result = [];\n\t  var i = 0;\n\t  var key;\n\t  while (names.length > i) {\n\t    if (!has(AllSymbols, key = names[i++]) && key != HIDDEN && key != META) result.push(key);\n\t  }return result;\n\t};\n\tvar $getOwnPropertySymbols = function getOwnPropertySymbols(it) {\n\t  var IS_OP = it === ObjectProto;\n\t  var names = gOPN(IS_OP ? OPSymbols : toIObject(it));\n\t  var result = [];\n\t  var i = 0;\n\t  var key;\n\t  while (names.length > i) {\n\t    if (has(AllSymbols, key = names[i++]) && (IS_OP ? has(ObjectProto, key) : true)) result.push(AllSymbols[key]);\n\t  }return result;\n\t};\n\n\t// 19.4.1.1 Symbol([description])\n\tif (!USE_NATIVE) {\n\t  $Symbol = function _Symbol() {\n\t    if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor!');\n\t    var tag = uid(arguments.length > 0 ? arguments[0] : undefined);\n\t    var $set = function $set(value) {\n\t      if (this === ObjectProto) $set.call(OPSymbols, value);\n\t      if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;\n\t      setSymbolDesc(this, tag, createDesc(1, value));\n\t    };\n\t    if (DESCRIPTORS && setter) setSymbolDesc(ObjectProto, tag, { configurable: true, set: $set });\n\t    return wrap(tag);\n\t  };\n\t  redefine($Symbol[PROTOTYPE], 'toString', function toString() {\n\t    return this._k;\n\t  });\n\n\t  $GOPD.f = $getOwnPropertyDescriptor;\n\t  $DP.f = $defineProperty;\n\t  __webpack_require__(236).f = gOPNExt.f = $getOwnPropertyNames;\n\t  __webpack_require__(91).f = $propertyIsEnumerable;\n\t  __webpack_require__(145).f = $getOwnPropertySymbols;\n\n\t  if (DESCRIPTORS && !__webpack_require__(144)) {\n\t    redefine(ObjectProto, 'propertyIsEnumerable', $propertyIsEnumerable, true);\n\t  }\n\n\t  wksExt.f = function (name) {\n\t    return wrap(wks(name));\n\t  };\n\t}\n\n\t$export($export.G + $export.W + $export.F * !USE_NATIVE, { Symbol: $Symbol });\n\n\tfor (var es6Symbols =\n\t// 19.4.2.2, 19.4.2.3, 19.4.2.4, 19.4.2.6, 19.4.2.8, 19.4.2.9, 19.4.2.10, 19.4.2.11, 19.4.2.12, 19.4.2.13, 19.4.2.14\n\t'hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'.split(','), j = 0; es6Symbols.length > j;) {\n\t  wks(es6Symbols[j++]);\n\t}for (var wellKnownSymbols = $keys(wks.store), k = 0; wellKnownSymbols.length > k;) {\n\t  wksDefine(wellKnownSymbols[k++]);\n\t}$export($export.S + $export.F * !USE_NATIVE, 'Symbol', {\n\t  // 19.4.2.1 Symbol.for(key)\n\t  'for': function _for(key) {\n\t    return has(SymbolRegistry, key += '') ? SymbolRegistry[key] : SymbolRegistry[key] = $Symbol(key);\n\t  },\n\t  // 19.4.2.5 Symbol.keyFor(sym)\n\t  keyFor: function keyFor(key) {\n\t    if (isSymbol(key)) return keyOf(SymbolRegistry, key);\n\t    throw TypeError(key + ' is not a symbol!');\n\t  },\n\t  useSetter: function useSetter() {\n\t    setter = true;\n\t  },\n\t  useSimple: function useSimple() {\n\t    setter = false;\n\t  }\n\t});\n\n\t$export($export.S + $export.F * !USE_NATIVE, 'Object', {\n\t  // 19.1.2.2 Object.create(O [, Properties])\n\t  create: $create,\n\t  // 19.1.2.4 Object.defineProperty(O, P, Attributes)\n\t  defineProperty: $defineProperty,\n\t  // 19.1.2.3 Object.defineProperties(O, Properties)\n\t  defineProperties: $defineProperties,\n\t  // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\n\t  getOwnPropertyDescriptor: $getOwnPropertyDescriptor,\n\t  // 19.1.2.7 Object.getOwnPropertyNames(O)\n\t  getOwnPropertyNames: $getOwnPropertyNames,\n\t  // 19.1.2.8 Object.getOwnPropertySymbols(O)\n\t  getOwnPropertySymbols: $getOwnPropertySymbols\n\t});\n\n\t// 24.3.2 JSON.stringify(value [, replacer [, space]])\n\t$JSON && $export($export.S + $export.F * (!USE_NATIVE || $fails(function () {\n\t  var S = $Symbol();\n\t  // MS Edge converts symbol values to JSON as {}\n\t  // WebKit converts symbol values to JSON as null\n\t  // V8 throws on boxed symbols\n\t  return _stringify([S]) != '[null]' || _stringify({ a: S }) != '{}' || _stringify(Object(S)) != '{}';\n\t})), 'JSON', {\n\t  stringify: function stringify(it) {\n\t    if (it === undefined || isSymbol(it)) return; // IE8 returns string on undefined\n\t    var args = [it];\n\t    var i = 1;\n\t    var replacer, $replacer;\n\t    while (arguments.length > i) {\n\t      args.push(arguments[i++]);\n\t    }replacer = args[1];\n\t    if (typeof replacer == 'function') $replacer = replacer;\n\t    if ($replacer || !isArray(replacer)) replacer = function replacer(key, value) {\n\t      if ($replacer) value = $replacer.call(this, key, value);\n\t      if (!isSymbol(value)) return value;\n\t    };\n\t    args[1] = replacer;\n\t    return _stringify.apply($JSON, args);\n\t  }\n\t});\n\n\t// 19.4.3.4 Symbol.prototype[@@toPrimitive](hint)\n\t$Symbol[PROTOTYPE][TO_PRIMITIVE] || __webpack_require__(29)($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);\n\t// 19.4.3.5 Symbol.prototype[@@toStringTag]\n\tsetToStringTag($Symbol, 'Symbol');\n\t// 20.2.1.9 Math[@@toStringTag]\n\tsetToStringTag(Math, 'Math', true);\n\t// 24.3.3 JSON[@@toStringTag]\n\tsetToStringTag(global.JSON, 'JSON', true);\n\n/***/ }),\n/* 159 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38),\n\t    root = __webpack_require__(17);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar Map = getNative(root, 'Map');\n\n\tmodule.exports = Map;\n\n/***/ }),\n/* 160 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar mapCacheClear = __webpack_require__(551),\n\t    mapCacheDelete = __webpack_require__(552),\n\t    mapCacheGet = __webpack_require__(553),\n\t    mapCacheHas = __webpack_require__(554),\n\t    mapCacheSet = __webpack_require__(555);\n\n\t/**\n\t * Creates a map cache object to store key-value pairs.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction MapCache(entries) {\n\t    var index = -1,\n\t        length = entries == null ? 0 : entries.length;\n\n\t    this.clear();\n\t    while (++index < length) {\n\t        var entry = entries[index];\n\t        this.set(entry[0], entry[1]);\n\t    }\n\t}\n\n\t// Add methods to `MapCache`.\n\tMapCache.prototype.clear = mapCacheClear;\n\tMapCache.prototype['delete'] = mapCacheDelete;\n\tMapCache.prototype.get = mapCacheGet;\n\tMapCache.prototype.has = mapCacheHas;\n\tMapCache.prototype.set = mapCacheSet;\n\n\tmodule.exports = MapCache;\n\n/***/ }),\n/* 161 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Appends the elements of `values` to `array`.\n\t *\n\t * @private\n\t * @param {Array} array The array to modify.\n\t * @param {Array} values The values to append.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction arrayPush(array, values) {\n\t  var index = -1,\n\t      length = values.length,\n\t      offset = array.length;\n\n\t  while (++index < length) {\n\t    array[offset + index] = values[index];\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = arrayPush;\n\n/***/ }),\n/* 162 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseAssignValue = __webpack_require__(163),\n\t    eq = __webpack_require__(46);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Assigns `value` to `key` of `object` if the existing value is not equivalent\n\t * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * for equality comparisons.\n\t *\n\t * @private\n\t * @param {Object} object The object to modify.\n\t * @param {string} key The key of the property to assign.\n\t * @param {*} value The value to assign.\n\t */\n\tfunction assignValue(object, key, value) {\n\t  var objValue = object[key];\n\t  if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || value === undefined && !(key in object)) {\n\t    baseAssignValue(object, key, value);\n\t  }\n\t}\n\n\tmodule.exports = assignValue;\n\n/***/ }),\n/* 163 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar defineProperty = __webpack_require__(259);\n\n\t/**\n\t * The base implementation of `assignValue` and `assignMergeValue` without\n\t * value checks.\n\t *\n\t * @private\n\t * @param {Object} object The object to modify.\n\t * @param {string} key The key of the property to assign.\n\t * @param {*} value The value to assign.\n\t */\n\tfunction baseAssignValue(object, key, value) {\n\t  if (key == '__proto__' && defineProperty) {\n\t    defineProperty(object, key, {\n\t      'configurable': true,\n\t      'enumerable': true,\n\t      'value': value,\n\t      'writable': true\n\t    });\n\t  } else {\n\t    object[key] = value;\n\t  }\n\t}\n\n\tmodule.exports = baseAssignValue;\n\n/***/ }),\n/* 164 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Stack = __webpack_require__(99),\n\t    arrayEach = __webpack_require__(478),\n\t    assignValue = __webpack_require__(162),\n\t    baseAssign = __webpack_require__(483),\n\t    baseAssignIn = __webpack_require__(484),\n\t    cloneBuffer = __webpack_require__(256),\n\t    copyArray = __webpack_require__(168),\n\t    copySymbols = __webpack_require__(523),\n\t    copySymbolsIn = __webpack_require__(524),\n\t    getAllKeys = __webpack_require__(262),\n\t    getAllKeysIn = __webpack_require__(532),\n\t    getTag = __webpack_require__(264),\n\t    initCloneArray = __webpack_require__(541),\n\t    initCloneByTag = __webpack_require__(542),\n\t    initCloneObject = __webpack_require__(266),\n\t    isArray = __webpack_require__(6),\n\t    isBuffer = __webpack_require__(113),\n\t    isObject = __webpack_require__(18),\n\t    keys = __webpack_require__(32);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1,\n\t    CLONE_FLAT_FLAG = 2,\n\t    CLONE_SYMBOLS_FLAG = 4;\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]',\n\t    arrayTag = '[object Array]',\n\t    boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    errorTag = '[object Error]',\n\t    funcTag = '[object Function]',\n\t    genTag = '[object GeneratorFunction]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    objectTag = '[object Object]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    symbolTag = '[object Symbol]',\n\t    weakMapTag = '[object WeakMap]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]',\n\t    float32Tag = '[object Float32Array]',\n\t    float64Tag = '[object Float64Array]',\n\t    int8Tag = '[object Int8Array]',\n\t    int16Tag = '[object Int16Array]',\n\t    int32Tag = '[object Int32Array]',\n\t    uint8Tag = '[object Uint8Array]',\n\t    uint8ClampedTag = '[object Uint8ClampedArray]',\n\t    uint16Tag = '[object Uint16Array]',\n\t    uint32Tag = '[object Uint32Array]';\n\n\t/** Used to identify `toStringTag` values supported by `_.clone`. */\n\tvar cloneableTags = {};\n\tcloneableTags[argsTag] = cloneableTags[arrayTag] = cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = cloneableTags[boolTag] = cloneableTags[dateTag] = cloneableTags[float32Tag] = cloneableTags[float64Tag] = cloneableTags[int8Tag] = cloneableTags[int16Tag] = cloneableTags[int32Tag] = cloneableTags[mapTag] = cloneableTags[numberTag] = cloneableTags[objectTag] = cloneableTags[regexpTag] = cloneableTags[setTag] = cloneableTags[stringTag] = cloneableTags[symbolTag] = cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;\n\tcloneableTags[errorTag] = cloneableTags[funcTag] = cloneableTags[weakMapTag] = false;\n\n\t/**\n\t * The base implementation of `_.clone` and `_.cloneDeep` which tracks\n\t * traversed objects.\n\t *\n\t * @private\n\t * @param {*} value The value to clone.\n\t * @param {boolean} bitmask The bitmask flags.\n\t *  1 - Deep clone\n\t *  2 - Flatten inherited properties\n\t *  4 - Clone symbols\n\t * @param {Function} [customizer] The function to customize cloning.\n\t * @param {string} [key] The key of `value`.\n\t * @param {Object} [object] The parent object of `value`.\n\t * @param {Object} [stack] Tracks traversed objects and their clone counterparts.\n\t * @returns {*} Returns the cloned value.\n\t */\n\tfunction baseClone(value, bitmask, customizer, key, object, stack) {\n\t  var result,\n\t      isDeep = bitmask & CLONE_DEEP_FLAG,\n\t      isFlat = bitmask & CLONE_FLAT_FLAG,\n\t      isFull = bitmask & CLONE_SYMBOLS_FLAG;\n\n\t  if (customizer) {\n\t    result = object ? customizer(value, key, object, stack) : customizer(value);\n\t  }\n\t  if (result !== undefined) {\n\t    return result;\n\t  }\n\t  if (!isObject(value)) {\n\t    return value;\n\t  }\n\t  var isArr = isArray(value);\n\t  if (isArr) {\n\t    result = initCloneArray(value);\n\t    if (!isDeep) {\n\t      return copyArray(value, result);\n\t    }\n\t  } else {\n\t    var tag = getTag(value),\n\t        isFunc = tag == funcTag || tag == genTag;\n\n\t    if (isBuffer(value)) {\n\t      return cloneBuffer(value, isDeep);\n\t    }\n\t    if (tag == objectTag || tag == argsTag || isFunc && !object) {\n\t      result = isFlat || isFunc ? {} : initCloneObject(value);\n\t      if (!isDeep) {\n\t        return isFlat ? copySymbolsIn(value, baseAssignIn(result, value)) : copySymbols(value, baseAssign(result, value));\n\t      }\n\t    } else {\n\t      if (!cloneableTags[tag]) {\n\t        return object ? value : {};\n\t      }\n\t      result = initCloneByTag(value, tag, baseClone, isDeep);\n\t    }\n\t  }\n\t  // Check for circular references and return its corresponding clone.\n\t  stack || (stack = new Stack());\n\t  var stacked = stack.get(value);\n\t  if (stacked) {\n\t    return stacked;\n\t  }\n\t  stack.set(value, result);\n\n\t  var keysFunc = isFull ? isFlat ? getAllKeysIn : getAllKeys : isFlat ? keysIn : keys;\n\n\t  var props = isArr ? undefined : keysFunc(value);\n\t  arrayEach(props || value, function (subValue, key) {\n\t    if (props) {\n\t      key = subValue;\n\t      subValue = value[key];\n\t    }\n\t    // Recursively populate clone (susceptible to call stack limits).\n\t    assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack));\n\t  });\n\t  return result;\n\t}\n\n\tmodule.exports = baseClone;\n\n/***/ }),\n/* 165 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.findIndex` and `_.findLastIndex` without\n\t * support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {Function} predicate The function invoked per iteration.\n\t * @param {number} fromIndex The index to search from.\n\t * @param {boolean} [fromRight] Specify iterating from right to left.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction baseFindIndex(array, predicate, fromIndex, fromRight) {\n\t  var length = array.length,\n\t      index = fromIndex + (fromRight ? 1 : -1);\n\n\t  while (fromRight ? index-- : ++index < length) {\n\t    if (predicate(array[index], index, array)) {\n\t      return index;\n\t    }\n\t  }\n\t  return -1;\n\t}\n\n\tmodule.exports = baseFindIndex;\n\n/***/ }),\n/* 166 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseFindIndex = __webpack_require__(165),\n\t    baseIsNaN = __webpack_require__(496),\n\t    strictIndexOf = __webpack_require__(570);\n\n\t/**\n\t * The base implementation of `_.indexOf` without `fromIndex` bounds checks.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {*} value The value to search for.\n\t * @param {number} fromIndex The index to search from.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction baseIndexOf(array, value, fromIndex) {\n\t    return value === value ? strictIndexOf(array, value, fromIndex) : baseFindIndex(array, baseIsNaN, fromIndex);\n\t}\n\n\tmodule.exports = baseIndexOf;\n\n/***/ }),\n/* 167 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Uint8Array = __webpack_require__(243);\n\n\t/**\n\t * Creates a clone of `arrayBuffer`.\n\t *\n\t * @private\n\t * @param {ArrayBuffer} arrayBuffer The array buffer to clone.\n\t * @returns {ArrayBuffer} Returns the cloned array buffer.\n\t */\n\tfunction cloneArrayBuffer(arrayBuffer) {\n\t  var result = new arrayBuffer.constructor(arrayBuffer.byteLength);\n\t  new Uint8Array(result).set(new Uint8Array(arrayBuffer));\n\t  return result;\n\t}\n\n\tmodule.exports = cloneArrayBuffer;\n\n/***/ }),\n/* 168 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Copies the values of `source` to `array`.\n\t *\n\t * @private\n\t * @param {Array} source The array to copy values from.\n\t * @param {Array} [array=[]] The array to copy values to.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction copyArray(source, array) {\n\t  var index = -1,\n\t      length = source.length;\n\n\t  array || (array = Array(length));\n\t  while (++index < length) {\n\t    array[index] = source[index];\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = copyArray;\n\n/***/ }),\n/* 169 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar overArg = __webpack_require__(271);\n\n\t/** Built-in value references. */\n\tvar getPrototype = overArg(Object.getPrototypeOf, Object);\n\n\tmodule.exports = getPrototype;\n\n/***/ }),\n/* 170 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayFilter = __webpack_require__(479),\n\t    stubArray = __webpack_require__(279);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Built-in value references. */\n\tvar propertyIsEnumerable = objectProto.propertyIsEnumerable;\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeGetSymbols = Object.getOwnPropertySymbols;\n\n\t/**\n\t * Creates an array of the own enumerable symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of symbols.\n\t */\n\tvar getSymbols = !nativeGetSymbols ? stubArray : function (object) {\n\t  if (object == null) {\n\t    return [];\n\t  }\n\t  object = Object(object);\n\t  return arrayFilter(nativeGetSymbols(object), function (symbol) {\n\t    return propertyIsEnumerable.call(object, symbol);\n\t  });\n\t};\n\n\tmodule.exports = getSymbols;\n\n/***/ }),\n/* 171 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used as references for various `Number` constants. */\n\tvar MAX_SAFE_INTEGER = 9007199254740991;\n\n\t/** Used to detect unsigned integer values. */\n\tvar reIsUint = /^(?:0|[1-9]\\d*)$/;\n\n\t/**\n\t * Checks if `value` is a valid array-like index.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\n\t * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\n\t */\n\tfunction isIndex(value, length) {\n\t  length = length == null ? MAX_SAFE_INTEGER : length;\n\t  return !!length && (typeof value == 'number' || reIsUint.test(value)) && value > -1 && value % 1 == 0 && value < length;\n\t}\n\n\tmodule.exports = isIndex;\n\n/***/ }),\n/* 172 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar eq = __webpack_require__(46),\n\t    isArrayLike = __webpack_require__(24),\n\t    isIndex = __webpack_require__(171),\n\t    isObject = __webpack_require__(18);\n\n\t/**\n\t * Checks if the given arguments are from an iteratee call.\n\t *\n\t * @private\n\t * @param {*} value The potential iteratee value argument.\n\t * @param {*} index The potential iteratee index or key argument.\n\t * @param {*} object The potential iteratee object argument.\n\t * @returns {boolean} Returns `true` if the arguments are from an iteratee call,\n\t *  else `false`.\n\t */\n\tfunction isIterateeCall(value, index, object) {\n\t  if (!isObject(object)) {\n\t    return false;\n\t  }\n\t  var type = typeof index === 'undefined' ? 'undefined' : _typeof(index);\n\t  if (type == 'number' ? isArrayLike(object) && isIndex(index, object.length) : type == 'string' && index in object) {\n\t    return eq(object[index], value);\n\t  }\n\t  return false;\n\t}\n\n\tmodule.exports = isIterateeCall;\n\n/***/ }),\n/* 173 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar isArray = __webpack_require__(6),\n\t    isSymbol = __webpack_require__(62);\n\n\t/** Used to match property names within property paths. */\n\tvar reIsDeepProp = /\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\\\]|\\\\.)*?\\1)\\]/,\n\t    reIsPlainProp = /^\\w*$/;\n\n\t/**\n\t * Checks if `value` is a property name and not a property path.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @param {Object} [object] The object to query keys on.\n\t * @returns {boolean} Returns `true` if `value` is a property name, else `false`.\n\t */\n\tfunction isKey(value, object) {\n\t  if (isArray(value)) {\n\t    return false;\n\t  }\n\t  var type = typeof value === 'undefined' ? 'undefined' : _typeof(value);\n\t  if (type == 'number' || type == 'symbol' || type == 'boolean' || value == null || isSymbol(value)) {\n\t    return true;\n\t  }\n\t  return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || object != null && value in Object(object);\n\t}\n\n\tmodule.exports = isKey;\n\n/***/ }),\n/* 174 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assignValue = __webpack_require__(162),\n\t    copyObject = __webpack_require__(31),\n\t    createAssigner = __webpack_require__(103),\n\t    isArrayLike = __webpack_require__(24),\n\t    isPrototype = __webpack_require__(105),\n\t    keys = __webpack_require__(32);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Assigns own enumerable string keyed properties of source objects to the\n\t * destination object. Source objects are applied from left to right.\n\t * Subsequent sources overwrite property assignments of previous sources.\n\t *\n\t * **Note:** This method mutates `object` and is loosely based on\n\t * [`Object.assign`](https://mdn.io/Object/assign).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.10.0\n\t * @category Object\n\t * @param {Object} object The destination object.\n\t * @param {...Object} [sources] The source objects.\n\t * @returns {Object} Returns `object`.\n\t * @see _.assignIn\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t * }\n\t *\n\t * function Bar() {\n\t *   this.c = 3;\n\t * }\n\t *\n\t * Foo.prototype.b = 2;\n\t * Bar.prototype.d = 4;\n\t *\n\t * _.assign({ 'a': 0 }, new Foo, new Bar);\n\t * // => { 'a': 1, 'c': 3 }\n\t */\n\tvar assign = createAssigner(function (object, source) {\n\t  if (isPrototype(source) || isArrayLike(source)) {\n\t    copyObject(source, keys(source), object);\n\t    return;\n\t  }\n\t  for (var key in source) {\n\t    if (hasOwnProperty.call(source, key)) {\n\t      assignValue(object, key, source[key]);\n\t    }\n\t  }\n\t});\n\n\tmodule.exports = assign;\n\n/***/ }),\n/* 175 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    isObject = __webpack_require__(18);\n\n\t/** `Object#toString` result references. */\n\tvar asyncTag = '[object AsyncFunction]',\n\t    funcTag = '[object Function]',\n\t    genTag = '[object GeneratorFunction]',\n\t    proxyTag = '[object Proxy]';\n\n\t/**\n\t * Checks if `value` is classified as a `Function` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a function, else `false`.\n\t * @example\n\t *\n\t * _.isFunction(_);\n\t * // => true\n\t *\n\t * _.isFunction(/abc/);\n\t * // => false\n\t */\n\tfunction isFunction(value) {\n\t    if (!isObject(value)) {\n\t        return false;\n\t    }\n\t    // The use of `Object#toString` avoids issues with the `typeof` operator\n\t    // in Safari 9 which returns 'object' for typed arrays and other constructors.\n\t    var tag = baseGetTag(value);\n\t    return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;\n\t}\n\n\tmodule.exports = isFunction;\n\n/***/ }),\n/* 176 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used as references for various `Number` constants. */\n\tvar MAX_SAFE_INTEGER = 9007199254740991;\n\n\t/**\n\t * Checks if `value` is a valid array-like length.\n\t *\n\t * **Note:** This method is loosely based on\n\t * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\n\t * @example\n\t *\n\t * _.isLength(3);\n\t * // => true\n\t *\n\t * _.isLength(Number.MIN_VALUE);\n\t * // => false\n\t *\n\t * _.isLength(Infinity);\n\t * // => false\n\t *\n\t * _.isLength('3');\n\t * // => false\n\t */\n\tfunction isLength(value) {\n\t  return typeof value == 'number' && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\n\t}\n\n\tmodule.exports = isLength;\n\n/***/ }),\n/* 177 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsTypedArray = __webpack_require__(499),\n\t    baseUnary = __webpack_require__(102),\n\t    nodeUtil = __webpack_require__(270);\n\n\t/* Node.js helper references. */\n\tvar nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;\n\n\t/**\n\t * Checks if `value` is classified as a typed array.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n\t * @example\n\t *\n\t * _.isTypedArray(new Uint8Array);\n\t * // => true\n\t *\n\t * _.isTypedArray([]);\n\t * // => false\n\t */\n\tvar isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;\n\n\tmodule.exports = isTypedArray;\n\n/***/ }),\n/* 178 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar map = {\n\t\t\"./index\": 50,\n\t\t\"./index.js\": 50,\n\t\t\"./logger\": 120,\n\t\t\"./logger.js\": 120,\n\t\t\"./metadata\": 121,\n\t\t\"./metadata.js\": 121,\n\t\t\"./options/build-config-chain\": 51,\n\t\t\"./options/build-config-chain.js\": 51,\n\t\t\"./options/config\": 33,\n\t\t\"./options/config.js\": 33,\n\t\t\"./options/index\": 52,\n\t\t\"./options/index.js\": 52,\n\t\t\"./options/option-manager\": 34,\n\t\t\"./options/option-manager.js\": 34,\n\t\t\"./options/parsers\": 53,\n\t\t\"./options/parsers.js\": 53,\n\t\t\"./options/removed\": 54,\n\t\t\"./options/removed.js\": 54\n\t};\n\tfunction webpackContext(req) {\n\t\treturn __webpack_require__(webpackContextResolve(req));\n\t};\n\tfunction webpackContextResolve(req) {\n\t\treturn map[req] || (function() { throw new Error(\"Cannot find module '\" + req + \"'.\") }());\n\t};\n\twebpackContext.keys = function webpackContextKeys() {\n\t\treturn Object.keys(map);\n\t};\n\twebpackContext.resolve = webpackContextResolve;\n\tmodule.exports = webpackContext;\n\twebpackContext.id = 178;\n\n\n/***/ }),\n/* 179 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar map = {\n\t\t\"./build-config-chain\": 51,\n\t\t\"./build-config-chain.js\": 51,\n\t\t\"./config\": 33,\n\t\t\"./config.js\": 33,\n\t\t\"./index\": 52,\n\t\t\"./index.js\": 52,\n\t\t\"./option-manager\": 34,\n\t\t\"./option-manager.js\": 34,\n\t\t\"./parsers\": 53,\n\t\t\"./parsers.js\": 53,\n\t\t\"./removed\": 54,\n\t\t\"./removed.js\": 54\n\t};\n\tfunction webpackContext(req) {\n\t\treturn __webpack_require__(webpackContextResolve(req));\n\t};\n\tfunction webpackContextResolve(req) {\n\t\treturn map[req] || (function() { throw new Error(\"Cannot find module '\" + req + \"'.\") }());\n\t};\n\twebpackContext.keys = function webpackContextKeys() {\n\t\treturn Object.keys(map);\n\t};\n\twebpackContext.resolve = webpackContextResolve;\n\tmodule.exports = webpackContext;\n\twebpackContext.id = 179;\n\n\n/***/ }),\n/* 180 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function () {\n\t\treturn (/[\\u001b\\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-PRZcf-nqry=><]/g\n\t\t);\n\t};\n\n/***/ }),\n/* 181 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (rawLines, lineNumber, colNumber) {\n\t  var opts = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};\n\n\t  colNumber = Math.max(colNumber, 0);\n\n\t  var highlighted = opts.highlightCode && _chalk2.default.supportsColor || opts.forceColor;\n\t  var chalk = _chalk2.default;\n\t  if (opts.forceColor) {\n\t    chalk = new _chalk2.default.constructor({ enabled: true });\n\t  }\n\t  var maybeHighlight = function maybeHighlight(chalkFn, string) {\n\t    return highlighted ? chalkFn(string) : string;\n\t  };\n\t  var defs = getDefs(chalk);\n\t  if (highlighted) rawLines = highlight(defs, rawLines);\n\n\t  var linesAbove = opts.linesAbove || 2;\n\t  var linesBelow = opts.linesBelow || 3;\n\n\t  var lines = rawLines.split(NEWLINE);\n\t  var start = Math.max(lineNumber - (linesAbove + 1), 0);\n\t  var end = Math.min(lines.length, lineNumber + linesBelow);\n\n\t  if (!lineNumber && !colNumber) {\n\t    start = 0;\n\t    end = lines.length;\n\t  }\n\n\t  var numberMaxWidth = String(end).length;\n\n\t  var frame = lines.slice(start, end).map(function (line, index) {\n\t    var number = start + 1 + index;\n\t    var paddedNumber = (\" \" + number).slice(-numberMaxWidth);\n\t    var gutter = \" \" + paddedNumber + \" | \";\n\t    if (number === lineNumber) {\n\t      var markerLine = \"\";\n\t      if (colNumber) {\n\t        var markerSpacing = line.slice(0, colNumber - 1).replace(/[^\\t]/g, \" \");\n\t        markerLine = [\"\\n \", maybeHighlight(defs.gutter, gutter.replace(/\\d/g, \" \")), markerSpacing, maybeHighlight(defs.marker, \"^\")].join(\"\");\n\t      }\n\t      return [maybeHighlight(defs.marker, \">\"), maybeHighlight(defs.gutter, gutter), line, markerLine].join(\"\");\n\t    } else {\n\t      return \" \" + maybeHighlight(defs.gutter, gutter) + line;\n\t    }\n\t  }).join(\"\\n\");\n\n\t  if (highlighted) {\n\t    return chalk.reset(frame);\n\t  } else {\n\t    return frame;\n\t  }\n\t};\n\n\tvar _jsTokens = __webpack_require__(468);\n\n\tvar _jsTokens2 = _interopRequireDefault(_jsTokens);\n\n\tvar _esutils = __webpack_require__(97);\n\n\tvar _esutils2 = _interopRequireDefault(_esutils);\n\n\tvar _chalk = __webpack_require__(401);\n\n\tvar _chalk2 = _interopRequireDefault(_chalk);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction getDefs(chalk) {\n\t  return {\n\t    keyword: chalk.cyan,\n\t    capitalized: chalk.yellow,\n\t    jsx_tag: chalk.yellow,\n\t    punctuator: chalk.yellow,\n\n\t    number: chalk.magenta,\n\t    string: chalk.green,\n\t    regex: chalk.magenta,\n\t    comment: chalk.grey,\n\t    invalid: chalk.white.bgRed.bold,\n\t    gutter: chalk.grey,\n\t    marker: chalk.red.bold\n\t  };\n\t}\n\n\tvar NEWLINE = /\\r\\n|[\\n\\r\\u2028\\u2029]/;\n\n\tvar JSX_TAG = /^[a-z][\\w-]*$/i;\n\n\tvar BRACKET = /^[()\\[\\]{}]$/;\n\n\tfunction getTokenType(match) {\n\t  var _match$slice = match.slice(-2),\n\t      offset = _match$slice[0],\n\t      text = _match$slice[1];\n\n\t  var token = (0, _jsTokens.matchToToken)(match);\n\n\t  if (token.type === \"name\") {\n\t    if (_esutils2.default.keyword.isReservedWordES6(token.value)) {\n\t      return \"keyword\";\n\t    }\n\n\t    if (JSX_TAG.test(token.value) && (text[offset - 1] === \"<\" || text.substr(offset - 2, 2) == \"</\")) {\n\t      return \"jsx_tag\";\n\t    }\n\n\t    if (token.value[0] !== token.value[0].toLowerCase()) {\n\t      return \"capitalized\";\n\t    }\n\t  }\n\n\t  if (token.type === \"punctuator\" && BRACKET.test(token.value)) {\n\t    return \"bracket\";\n\t  }\n\n\t  return token.type;\n\t}\n\n\tfunction highlight(defs, text) {\n\t  return text.replace(_jsTokens2.default, function () {\n\t    for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {\n\t      args[_key] = arguments[_key];\n\t    }\n\n\t    var type = getTokenType(args);\n\t    var colorize = defs[type];\n\t    if (colorize) {\n\t      return args[0].split(NEWLINE).map(function (str) {\n\t        return colorize(str);\n\t      }).join(\"\\n\");\n\t    } else {\n\t      return args[0];\n\t    }\n\t  });\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 182 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.transformFromAst = exports.transform = exports.analyse = exports.Pipeline = exports.OptionManager = exports.traverse = exports.types = exports.messages = exports.util = exports.version = exports.resolvePreset = exports.resolvePlugin = exports.template = exports.buildExternalHelpers = exports.options = exports.File = undefined;\n\n\tvar _file = __webpack_require__(50);\n\n\tObject.defineProperty(exports, \"File\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_file).default;\n\t  }\n\t});\n\n\tvar _config = __webpack_require__(33);\n\n\tObject.defineProperty(exports, \"options\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_config).default;\n\t  }\n\t});\n\n\tvar _buildExternalHelpers = __webpack_require__(295);\n\n\tObject.defineProperty(exports, \"buildExternalHelpers\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_buildExternalHelpers).default;\n\t  }\n\t});\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tObject.defineProperty(exports, \"template\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_babelTemplate).default;\n\t  }\n\t});\n\n\tvar _resolvePlugin = __webpack_require__(184);\n\n\tObject.defineProperty(exports, \"resolvePlugin\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_resolvePlugin).default;\n\t  }\n\t});\n\n\tvar _resolvePreset = __webpack_require__(185);\n\n\tObject.defineProperty(exports, \"resolvePreset\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_resolvePreset).default;\n\t  }\n\t});\n\n\tvar _package = __webpack_require__(628);\n\n\tObject.defineProperty(exports, \"version\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _package.version;\n\t  }\n\t});\n\texports.Plugin = Plugin;\n\texports.transformFile = transformFile;\n\texports.transformFileSync = transformFileSync;\n\n\tvar _fs = __webpack_require__(115);\n\n\tvar _fs2 = _interopRequireDefault(_fs);\n\n\tvar _util = __webpack_require__(122);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelTraverse2 = _interopRequireDefault(_babelTraverse);\n\n\tvar _optionManager = __webpack_require__(34);\n\n\tvar _optionManager2 = _interopRequireDefault(_optionManager);\n\n\tvar _pipeline = __webpack_require__(298);\n\n\tvar _pipeline2 = _interopRequireDefault(_pipeline);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.util = util;\n\texports.messages = messages;\n\texports.types = t;\n\texports.traverse = _babelTraverse2.default;\n\texports.OptionManager = _optionManager2.default;\n\tfunction Plugin(alias) {\n\t  throw new Error(\"The (\" + alias + \") Babel 5 plugin is being run with Babel 6.\");\n\t}\n\n\texports.Pipeline = _pipeline2.default;\n\n\tvar pipeline = new _pipeline2.default();\n\tvar analyse = exports.analyse = pipeline.analyse.bind(pipeline);\n\tvar transform = exports.transform = pipeline.transform.bind(pipeline);\n\tvar transformFromAst = exports.transformFromAst = pipeline.transformFromAst.bind(pipeline);\n\n\tfunction transformFile(filename, opts, callback) {\n\t  if (typeof opts === \"function\") {\n\t    callback = opts;\n\t    opts = {};\n\t  }\n\n\t  opts.filename = filename;\n\n\t  _fs2.default.readFile(filename, function (err, code) {\n\t    var result = void 0;\n\n\t    if (!err) {\n\t      try {\n\t        result = transform(code, opts);\n\t      } catch (_err) {\n\t        err = _err;\n\t      }\n\t    }\n\n\t    if (err) {\n\t      callback(err);\n\t    } else {\n\t      callback(null, result);\n\t    }\n\t  });\n\t}\n\n\tfunction transformFileSync(filename) {\n\t  var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t  opts.filename = filename;\n\t  return transform(_fs2.default.readFileSync(filename, \"utf8\"), opts);\n\t}\n\n/***/ }),\n/* 183 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.default = resolveFromPossibleNames;\n\n\tvar _resolve = __webpack_require__(118);\n\n\tvar _resolve2 = _interopRequireDefault(_resolve);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction resolveFromPossibleNames(possibleNames, dirname) {\n\t  return possibleNames.reduce(function (accum, curr) {\n\t    return accum || (0, _resolve2.default)(curr, dirname);\n\t  }, null);\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 184 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {\"use strict\";\n\n\texports.__esModule = true;\n\texports.default = resolvePlugin;\n\n\tvar _resolveFromPossibleNames = __webpack_require__(183);\n\n\tvar _resolveFromPossibleNames2 = _interopRequireDefault(_resolveFromPossibleNames);\n\n\tvar _getPossiblePluginNames = __webpack_require__(291);\n\n\tvar _getPossiblePluginNames2 = _interopRequireDefault(_getPossiblePluginNames);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction resolvePlugin(pluginName) {\n\t  var dirname = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : process.cwd();\n\n\t  return (0, _resolveFromPossibleNames2.default)((0, _getPossiblePluginNames2.default)(pluginName), dirname);\n\t}\n\tmodule.exports = exports[\"default\"];\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 185 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {\"use strict\";\n\n\texports.__esModule = true;\n\texports.default = resolvePreset;\n\n\tvar _resolveFromPossibleNames = __webpack_require__(183);\n\n\tvar _resolveFromPossibleNames2 = _interopRequireDefault(_resolveFromPossibleNames);\n\n\tvar _getPossiblePresetNames = __webpack_require__(292);\n\n\tvar _getPossiblePresetNames2 = _interopRequireDefault(_getPossiblePresetNames);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction resolvePreset(presetName) {\n\t  var dirname = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : process.cwd();\n\n\t  return (0, _resolveFromPossibleNames2.default)((0, _getPossiblePresetNames2.default)(presetName), dirname);\n\t}\n\tmodule.exports = exports[\"default\"];\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 186 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.CodeGenerator = undefined;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _possibleConstructorReturn2 = __webpack_require__(42);\n\n\tvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\n\tvar _inherits2 = __webpack_require__(41);\n\n\tvar _inherits3 = _interopRequireDefault(_inherits2);\n\n\texports.default = function (ast, opts, code) {\n\t  var gen = new Generator(ast, opts, code);\n\t  return gen.generate();\n\t};\n\n\tvar _detectIndent = __webpack_require__(459);\n\n\tvar _detectIndent2 = _interopRequireDefault(_detectIndent);\n\n\tvar _sourceMap = __webpack_require__(313);\n\n\tvar _sourceMap2 = _interopRequireDefault(_sourceMap);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _printer = __webpack_require__(312);\n\n\tvar _printer2 = _interopRequireDefault(_printer);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar Generator = function (_Printer) {\n\t  (0, _inherits3.default)(Generator, _Printer);\n\n\t  function Generator(ast) {\n\t    var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t    var code = arguments[2];\n\t    (0, _classCallCheck3.default)(this, Generator);\n\n\t    var tokens = ast.tokens || [];\n\t    var format = normalizeOptions(code, opts, tokens);\n\t    var map = opts.sourceMaps ? new _sourceMap2.default(opts, code) : null;\n\n\t    var _this = (0, _possibleConstructorReturn3.default)(this, _Printer.call(this, format, map, tokens));\n\n\t    _this.ast = ast;\n\t    return _this;\n\t  }\n\n\t  Generator.prototype.generate = function generate() {\n\t    return _Printer.prototype.generate.call(this, this.ast);\n\t  };\n\n\t  return Generator;\n\t}(_printer2.default);\n\n\tfunction normalizeOptions(code, opts, tokens) {\n\t  var style = \"  \";\n\t  if (code && typeof code === \"string\") {\n\t    var indent = (0, _detectIndent2.default)(code).indent;\n\t    if (indent && indent !== \" \") style = indent;\n\t  }\n\n\t  var format = {\n\t    auxiliaryCommentBefore: opts.auxiliaryCommentBefore,\n\t    auxiliaryCommentAfter: opts.auxiliaryCommentAfter,\n\t    shouldPrintComment: opts.shouldPrintComment,\n\t    retainLines: opts.retainLines,\n\t    retainFunctionParens: opts.retainFunctionParens,\n\t    comments: opts.comments == null || opts.comments,\n\t    compact: opts.compact,\n\t    minified: opts.minified,\n\t    concise: opts.concise,\n\t    quotes: opts.quotes || findCommonStringDelimiter(code, tokens),\n\t    jsonCompatibleStrings: opts.jsonCompatibleStrings,\n\t    indent: {\n\t      adjustMultilineComment: true,\n\t      style: style,\n\t      base: 0\n\t    },\n\t    flowCommaSeparator: opts.flowCommaSeparator\n\t  };\n\n\t  if (format.minified) {\n\t    format.compact = true;\n\n\t    format.shouldPrintComment = format.shouldPrintComment || function () {\n\t      return format.comments;\n\t    };\n\t  } else {\n\t    format.shouldPrintComment = format.shouldPrintComment || function (value) {\n\t      return format.comments || value.indexOf(\"@license\") >= 0 || value.indexOf(\"@preserve\") >= 0;\n\t    };\n\t  }\n\n\t  if (format.compact === \"auto\") {\n\t    format.compact = code.length > 500000;\n\n\t    if (format.compact) {\n\t      console.error(\"[BABEL] \" + messages.get(\"codeGeneratorDeopt\", opts.filename, \"500KB\"));\n\t    }\n\t  }\n\n\t  if (format.compact) {\n\t    format.indent.adjustMultilineComment = false;\n\t  }\n\n\t  return format;\n\t}\n\n\tfunction findCommonStringDelimiter(code, tokens) {\n\t  var DEFAULT_STRING_DELIMITER = \"double\";\n\t  if (!code) {\n\t    return DEFAULT_STRING_DELIMITER;\n\t  }\n\n\t  var occurrences = {\n\t    single: 0,\n\t    double: 0\n\t  };\n\n\t  var checked = 0;\n\n\t  for (var i = 0; i < tokens.length; i++) {\n\t    var token = tokens[i];\n\t    if (token.type.label !== \"string\") continue;\n\n\t    var raw = code.slice(token.start, token.end);\n\t    if (raw[0] === \"'\") {\n\t      occurrences.single++;\n\t    } else {\n\t      occurrences.double++;\n\t    }\n\n\t    checked++;\n\t    if (checked >= 3) break;\n\t  }\n\t  if (occurrences.single > occurrences.double) {\n\t    return \"single\";\n\t  } else {\n\t    return \"double\";\n\t  }\n\t}\n\n\tvar CodeGenerator = exports.CodeGenerator = function () {\n\t  function CodeGenerator(ast, opts, code) {\n\t    (0, _classCallCheck3.default)(this, CodeGenerator);\n\n\t    this._generator = new Generator(ast, opts, code);\n\t  }\n\n\t  CodeGenerator.prototype.generate = function generate() {\n\t    return this._generator.generate();\n\t  };\n\n\t  return CodeGenerator;\n\t}();\n\n/***/ }),\n/* 187 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\texports.needsWhitespace = needsWhitespace;\n\texports.needsWhitespaceBefore = needsWhitespaceBefore;\n\texports.needsWhitespaceAfter = needsWhitespaceAfter;\n\texports.needsParens = needsParens;\n\n\tvar _whitespace = __webpack_require__(311);\n\n\tvar _whitespace2 = _interopRequireDefault(_whitespace);\n\n\tvar _parentheses = __webpack_require__(310);\n\n\tvar parens = _interopRequireWildcard(_parentheses);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction expandAliases(obj) {\n\t  var newObj = {};\n\n\t  function add(type, func) {\n\t    var fn = newObj[type];\n\t    newObj[type] = fn ? function (node, parent, stack) {\n\t      var result = fn(node, parent, stack);\n\n\t      return result == null ? func(node, parent, stack) : result;\n\t    } : func;\n\t  }\n\n\t  for (var _iterator = (0, _keys2.default)(obj), _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var type = _ref;\n\n\t    var aliases = t.FLIPPED_ALIAS_KEYS[type];\n\t    if (aliases) {\n\t      for (var _iterator2 = aliases, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t        var _ref2;\n\n\t        if (_isArray2) {\n\t          if (_i2 >= _iterator2.length) break;\n\t          _ref2 = _iterator2[_i2++];\n\t        } else {\n\t          _i2 = _iterator2.next();\n\t          if (_i2.done) break;\n\t          _ref2 = _i2.value;\n\t        }\n\n\t        var alias = _ref2;\n\n\t        add(alias, obj[type]);\n\t      }\n\t    } else {\n\t      add(type, obj[type]);\n\t    }\n\t  }\n\n\t  return newObj;\n\t}\n\n\tvar expandedParens = expandAliases(parens);\n\tvar expandedWhitespaceNodes = expandAliases(_whitespace2.default.nodes);\n\tvar expandedWhitespaceList = expandAliases(_whitespace2.default.list);\n\n\tfunction find(obj, node, parent, printStack) {\n\t  var fn = obj[node.type];\n\t  return fn ? fn(node, parent, printStack) : null;\n\t}\n\n\tfunction isOrHasCallExpression(node) {\n\t  if (t.isCallExpression(node)) {\n\t    return true;\n\t  }\n\n\t  if (t.isMemberExpression(node)) {\n\t    return isOrHasCallExpression(node.object) || !node.computed && isOrHasCallExpression(node.property);\n\t  } else {\n\t    return false;\n\t  }\n\t}\n\n\tfunction needsWhitespace(node, parent, type) {\n\t  if (!node) return 0;\n\n\t  if (t.isExpressionStatement(node)) {\n\t    node = node.expression;\n\t  }\n\n\t  var linesInfo = find(expandedWhitespaceNodes, node, parent);\n\n\t  if (!linesInfo) {\n\t    var items = find(expandedWhitespaceList, node, parent);\n\t    if (items) {\n\t      for (var i = 0; i < items.length; i++) {\n\t        linesInfo = needsWhitespace(items[i], node, type);\n\t        if (linesInfo) break;\n\t      }\n\t    }\n\t  }\n\n\t  return linesInfo && linesInfo[type] || 0;\n\t}\n\n\tfunction needsWhitespaceBefore(node, parent) {\n\t  return needsWhitespace(node, parent, \"before\");\n\t}\n\n\tfunction needsWhitespaceAfter(node, parent) {\n\t  return needsWhitespace(node, parent, \"after\");\n\t}\n\n\tfunction needsParens(node, parent, printStack) {\n\t  if (!parent) return false;\n\n\t  if (t.isNewExpression(parent) && parent.callee === node) {\n\t    if (isOrHasCallExpression(node)) return true;\n\t  }\n\n\t  return find(expandedParens, node, parent, printStack);\n\t}\n\n/***/ }),\n/* 188 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\texports.push = push;\n\texports.hasComputed = hasComputed;\n\texports.toComputedObjectFromClass = toComputedObjectFromClass;\n\texports.toClassObject = toClassObject;\n\texports.toDefineObject = toDefineObject;\n\n\tvar _babelHelperFunctionName = __webpack_require__(40);\n\n\tvar _babelHelperFunctionName2 = _interopRequireDefault(_babelHelperFunctionName);\n\n\tvar _has = __webpack_require__(274);\n\n\tvar _has2 = _interopRequireDefault(_has);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction toKind(node) {\n\t  if (t.isClassMethod(node) || t.isObjectMethod(node)) {\n\t    if (node.kind === \"get\" || node.kind === \"set\") {\n\t      return node.kind;\n\t    }\n\t  }\n\n\t  return \"value\";\n\t}\n\n\tfunction push(mutatorMap, node, kind, file, scope) {\n\t  var alias = t.toKeyAlias(node);\n\n\t  var map = {};\n\t  if ((0, _has2.default)(mutatorMap, alias)) map = mutatorMap[alias];\n\t  mutatorMap[alias] = map;\n\n\t  map._inherits = map._inherits || [];\n\t  map._inherits.push(node);\n\n\t  map._key = node.key;\n\n\t  if (node.computed) {\n\t    map._computed = true;\n\t  }\n\n\t  if (node.decorators) {\n\t    var decorators = map.decorators = map.decorators || t.arrayExpression([]);\n\t    decorators.elements = decorators.elements.concat(node.decorators.map(function (dec) {\n\t      return dec.expression;\n\t    }).reverse());\n\t  }\n\n\t  if (map.value || map.initializer) {\n\t    throw file.buildCodeFrameError(node, \"Key conflict with sibling node\");\n\t  }\n\n\t  var key = void 0,\n\t      value = void 0;\n\n\t  if (t.isObjectProperty(node) || t.isObjectMethod(node) || t.isClassMethod(node)) {\n\t    key = t.toComputedKey(node, node.key);\n\t  }\n\n\t  if (t.isObjectProperty(node) || t.isClassProperty(node)) {\n\t    value = node.value;\n\t  } else if (t.isObjectMethod(node) || t.isClassMethod(node)) {\n\t    value = t.functionExpression(null, node.params, node.body, node.generator, node.async);\n\t    value.returnType = node.returnType;\n\t  }\n\n\t  var inheritedKind = toKind(node);\n\t  if (!kind || inheritedKind !== \"value\") {\n\t    kind = inheritedKind;\n\t  }\n\n\t  if (scope && t.isStringLiteral(key) && (kind === \"value\" || kind === \"initializer\") && t.isFunctionExpression(value)) {\n\t    value = (0, _babelHelperFunctionName2.default)({ id: key, node: value, scope: scope });\n\t  }\n\n\t  if (value) {\n\t    t.inheritsComments(value, node);\n\t    map[kind] = value;\n\t  }\n\n\t  return map;\n\t}\n\n\tfunction hasComputed(mutatorMap) {\n\t  for (var key in mutatorMap) {\n\t    if (mutatorMap[key]._computed) {\n\t      return true;\n\t    }\n\t  }\n\t  return false;\n\t}\n\n\tfunction toComputedObjectFromClass(obj) {\n\t  var objExpr = t.arrayExpression([]);\n\n\t  for (var i = 0; i < obj.properties.length; i++) {\n\t    var prop = obj.properties[i];\n\t    var val = prop.value;\n\t    val.properties.unshift(t.objectProperty(t.identifier(\"key\"), t.toComputedKey(prop)));\n\t    objExpr.elements.push(val);\n\t  }\n\n\t  return objExpr;\n\t}\n\n\tfunction toClassObject(mutatorMap) {\n\t  var objExpr = t.objectExpression([]);\n\n\t  (0, _keys2.default)(mutatorMap).forEach(function (mutatorMapKey) {\n\t    var map = mutatorMap[mutatorMapKey];\n\t    var mapNode = t.objectExpression([]);\n\n\t    var propNode = t.objectProperty(map._key, mapNode, map._computed);\n\n\t    (0, _keys2.default)(map).forEach(function (key) {\n\t      var node = map[key];\n\t      if (key[0] === \"_\") return;\n\n\t      var inheritNode = node;\n\t      if (t.isClassMethod(node) || t.isClassProperty(node)) node = node.value;\n\n\t      var prop = t.objectProperty(t.identifier(key), node);\n\t      t.inheritsComments(prop, inheritNode);\n\t      t.removeComments(inheritNode);\n\n\t      mapNode.properties.push(prop);\n\t    });\n\n\t    objExpr.properties.push(propNode);\n\t  });\n\n\t  return objExpr;\n\t}\n\n\tfunction toDefineObject(mutatorMap) {\n\t  (0, _keys2.default)(mutatorMap).forEach(function (key) {\n\t    var map = mutatorMap[key];\n\t    if (map.value) map.writable = t.booleanLiteral(true);\n\t    map.configurable = t.booleanLiteral(true);\n\t    map.enumerable = t.booleanLiteral(true);\n\t  });\n\n\t  return toClassObject(mutatorMap);\n\t}\n\n/***/ }),\n/* 189 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (node) {\n\t  var params = node.params;\n\t  for (var i = 0; i < params.length; i++) {\n\t    var param = params[i];\n\t    if (t.isAssignmentPattern(param) || t.isRestElement(param)) {\n\t      return i;\n\t    }\n\t  }\n\t  return params.length;\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 190 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (path, emit) {\n\t  var kind = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : \"var\";\n\n\t  path.traverse(visitor, { kind: kind, emit: emit });\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar visitor = {\n\t  Scope: function Scope(path, state) {\n\t    if (state.kind === \"let\") path.skip();\n\t  },\n\t  Function: function Function(path) {\n\t    path.skip();\n\t  },\n\t  VariableDeclaration: function VariableDeclaration(path, state) {\n\t    if (state.kind && path.node.kind !== state.kind) return;\n\n\t    var nodes = [];\n\n\t    var declarations = path.get(\"declarations\");\n\t    var firstId = void 0;\n\n\t    for (var _iterator = declarations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var declar = _ref;\n\n\t      firstId = declar.node.id;\n\n\t      if (declar.node.init) {\n\t        nodes.push(t.expressionStatement(t.assignmentExpression(\"=\", declar.node.id, declar.node.init)));\n\t      }\n\n\t      for (var name in declar.getBindingIdentifiers()) {\n\t        state.emit(t.identifier(name), name);\n\t      }\n\t    }\n\n\t    if (path.parentPath.isFor({ left: path.node })) {\n\t      path.replaceWith(firstId);\n\t    } else {\n\t      path.replaceWithMultiple(nodes);\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 191 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (callee, thisNode, args) {\n\t  if (args.length === 1 && t.isSpreadElement(args[0]) && t.isIdentifier(args[0].argument, { name: \"arguments\" })) {\n\t    return t.callExpression(t.memberExpression(callee, t.identifier(\"apply\")), [thisNode, args[0].argument]);\n\t  } else {\n\t    return t.callExpression(t.memberExpression(callee, t.identifier(\"call\")), [thisNode].concat(args));\n\t  }\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 192 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.is = is;\n\texports.pullFlag = pullFlag;\n\n\tvar _pull = __webpack_require__(277);\n\n\tvar _pull2 = _interopRequireDefault(_pull);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction is(node, flag) {\n\t  return t.isRegExpLiteral(node) && node.flags.indexOf(flag) >= 0;\n\t}\n\n\tfunction pullFlag(node, flag) {\n\t  var flags = node.flags.split(\"\");\n\t  if (node.flags.indexOf(flag) < 0) return;\n\t  (0, _pull2.default)(flags, flag);\n\t  node.flags = flags.join(\"\");\n\t}\n\n/***/ }),\n/* 193 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\tvar _babelHelperOptimiseCallExpression = __webpack_require__(191);\n\n\tvar _babelHelperOptimiseCallExpression2 = _interopRequireDefault(_babelHelperOptimiseCallExpression);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar HARDCORE_THIS_REF = (0, _symbol2.default)();\n\n\tfunction isIllegalBareSuper(node, parent) {\n\t  if (!t.isSuper(node)) return false;\n\t  if (t.isMemberExpression(parent, { computed: false })) return false;\n\t  if (t.isCallExpression(parent, { callee: node })) return false;\n\t  return true;\n\t}\n\n\tfunction isMemberExpressionSuper(node) {\n\t  return t.isMemberExpression(node) && t.isSuper(node.object);\n\t}\n\n\tfunction getPrototypeOfExpression(objectRef, isStatic) {\n\t  var targetRef = isStatic ? objectRef : t.memberExpression(objectRef, t.identifier(\"prototype\"));\n\n\t  return t.logicalExpression(\"||\", t.memberExpression(targetRef, t.identifier(\"__proto__\")), t.callExpression(t.memberExpression(t.identifier(\"Object\"), t.identifier(\"getPrototypeOf\")), [targetRef]));\n\t}\n\n\tvar visitor = {\n\t  Function: function Function(path) {\n\t    if (!path.inShadow(\"this\")) {\n\t      path.skip();\n\t    }\n\t  },\n\t  ReturnStatement: function ReturnStatement(path, state) {\n\t    if (!path.inShadow(\"this\")) {\n\t      state.returns.push(path);\n\t    }\n\t  },\n\t  ThisExpression: function ThisExpression(path, state) {\n\t    if (!path.node[HARDCORE_THIS_REF]) {\n\t      state.thises.push(path);\n\t    }\n\t  },\n\t  enter: function enter(path, state) {\n\t    var callback = state.specHandle;\n\t    if (state.isLoose) callback = state.looseHandle;\n\n\t    var isBareSuper = path.isCallExpression() && path.get(\"callee\").isSuper();\n\n\t    var result = callback.call(state, path);\n\n\t    if (result) {\n\t      state.hasSuper = true;\n\t    }\n\n\t    if (isBareSuper) {\n\t      state.bareSupers.push(path);\n\t    }\n\n\t    if (result === true) {\n\t      path.requeue();\n\t    }\n\n\t    if (result !== true && result) {\n\t      if (Array.isArray(result)) {\n\t        path.replaceWithMultiple(result);\n\t      } else {\n\t        path.replaceWith(result);\n\t      }\n\t    }\n\t  }\n\t};\n\n\tvar ReplaceSupers = function () {\n\t  function ReplaceSupers(opts) {\n\t    var inClass = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\t    (0, _classCallCheck3.default)(this, ReplaceSupers);\n\n\t    this.forceSuperMemoisation = opts.forceSuperMemoisation;\n\t    this.methodPath = opts.methodPath;\n\t    this.methodNode = opts.methodNode;\n\t    this.superRef = opts.superRef;\n\t    this.isStatic = opts.isStatic;\n\t    this.hasSuper = false;\n\t    this.inClass = inClass;\n\t    this.isLoose = opts.isLoose;\n\t    this.scope = this.methodPath.scope;\n\t    this.file = opts.file;\n\t    this.opts = opts;\n\n\t    this.bareSupers = [];\n\t    this.returns = [];\n\t    this.thises = [];\n\t  }\n\n\t  ReplaceSupers.prototype.getObjectRef = function getObjectRef() {\n\t    return this.opts.objectRef || this.opts.getObjectRef();\n\t  };\n\n\t  ReplaceSupers.prototype.setSuperProperty = function setSuperProperty(property, value, isComputed) {\n\t    return t.callExpression(this.file.addHelper(\"set\"), [getPrototypeOfExpression(this.getObjectRef(), this.isStatic), isComputed ? property : t.stringLiteral(property.name), value, t.thisExpression()]);\n\t  };\n\n\t  ReplaceSupers.prototype.getSuperProperty = function getSuperProperty(property, isComputed) {\n\t    return t.callExpression(this.file.addHelper(\"get\"), [getPrototypeOfExpression(this.getObjectRef(), this.isStatic), isComputed ? property : t.stringLiteral(property.name), t.thisExpression()]);\n\t  };\n\n\t  ReplaceSupers.prototype.replace = function replace() {\n\t    this.methodPath.traverse(visitor, this);\n\t  };\n\n\t  ReplaceSupers.prototype.getLooseSuperProperty = function getLooseSuperProperty(id, parent) {\n\t    var methodNode = this.methodNode;\n\t    var superRef = this.superRef || t.identifier(\"Function\");\n\n\t    if (parent.property === id) {\n\t      return;\n\t    } else if (t.isCallExpression(parent, { callee: id })) {\n\t      return;\n\t    } else if (t.isMemberExpression(parent) && !methodNode.static) {\n\t      return t.memberExpression(superRef, t.identifier(\"prototype\"));\n\t    } else {\n\t      return superRef;\n\t    }\n\t  };\n\n\t  ReplaceSupers.prototype.looseHandle = function looseHandle(path) {\n\t    var node = path.node;\n\t    if (path.isSuper()) {\n\t      return this.getLooseSuperProperty(node, path.parent);\n\t    } else if (path.isCallExpression()) {\n\t      var callee = node.callee;\n\t      if (!t.isMemberExpression(callee)) return;\n\t      if (!t.isSuper(callee.object)) return;\n\n\t      t.appendToMemberExpression(callee, t.identifier(\"call\"));\n\t      node.arguments.unshift(t.thisExpression());\n\t      return true;\n\t    }\n\t  };\n\n\t  ReplaceSupers.prototype.specHandleAssignmentExpression = function specHandleAssignmentExpression(ref, path, node) {\n\t    if (node.operator === \"=\") {\n\t      return this.setSuperProperty(node.left.property, node.right, node.left.computed);\n\t    } else {\n\t      ref = ref || path.scope.generateUidIdentifier(\"ref\");\n\t      return [t.variableDeclaration(\"var\", [t.variableDeclarator(ref, node.left)]), t.expressionStatement(t.assignmentExpression(\"=\", node.left, t.binaryExpression(node.operator[0], ref, node.right)))];\n\t    }\n\t  };\n\n\t  ReplaceSupers.prototype.specHandle = function specHandle(path) {\n\t    var property = void 0;\n\t    var computed = void 0;\n\t    var args = void 0;\n\n\t    var parent = path.parent;\n\t    var node = path.node;\n\n\t    if (isIllegalBareSuper(node, parent)) {\n\t      throw path.buildCodeFrameError(messages.get(\"classesIllegalBareSuper\"));\n\t    }\n\n\t    if (t.isCallExpression(node)) {\n\t      var callee = node.callee;\n\t      if (t.isSuper(callee)) {\n\t        return;\n\t      } else if (isMemberExpressionSuper(callee)) {\n\t        property = callee.property;\n\t        computed = callee.computed;\n\t        args = node.arguments;\n\t      }\n\t    } else if (t.isMemberExpression(node) && t.isSuper(node.object)) {\n\t      property = node.property;\n\t      computed = node.computed;\n\t    } else if (t.isUpdateExpression(node) && isMemberExpressionSuper(node.argument)) {\n\t      var binary = t.binaryExpression(node.operator[0], node.argument, t.numericLiteral(1));\n\t      if (node.prefix) {\n\t        return this.specHandleAssignmentExpression(null, path, binary);\n\t      } else {\n\t        var ref = path.scope.generateUidIdentifier(\"ref\");\n\t        return this.specHandleAssignmentExpression(ref, path, binary).concat(t.expressionStatement(ref));\n\t      }\n\t    } else if (t.isAssignmentExpression(node) && isMemberExpressionSuper(node.left)) {\n\t      return this.specHandleAssignmentExpression(null, path, node);\n\t    }\n\n\t    if (!property) return;\n\n\t    var superProperty = this.getSuperProperty(property, computed);\n\n\t    if (args) {\n\t      return this.optimiseCall(superProperty, args);\n\t    } else {\n\t      return superProperty;\n\t    }\n\t  };\n\n\t  ReplaceSupers.prototype.optimiseCall = function optimiseCall(callee, args) {\n\t    var thisNode = t.thisExpression();\n\t    thisNode[HARDCORE_THIS_REF] = true;\n\t    return (0, _babelHelperOptimiseCallExpression2.default)(callee, thisNode, args);\n\t  };\n\n\t  return ReplaceSupers;\n\t}();\n\n\texports.default = ReplaceSupers;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 194 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.list = undefined;\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\texports.get = get;\n\n\tvar _helpers = __webpack_require__(321);\n\n\tvar _helpers2 = _interopRequireDefault(_helpers);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction get(name) {\n\t  var fn = _helpers2.default[name];\n\t  if (!fn) throw new ReferenceError(\"Unknown helper \" + name);\n\n\t  return fn().expression;\n\t}\n\n\tvar list = exports.list = (0, _keys2.default)(_helpers2.default).map(function (name) {\n\t  return name.replace(/^_/, \"\");\n\t}).filter(function (name) {\n\t  return name !== \"__esModule\";\n\t});\n\n\texports.default = get;\n\n/***/ }),\n/* 195 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"asyncGenerators\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 196 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"classConstructorCall\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 197 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"classProperties\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 198 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"doExpressions\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 199 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"exponentiationOperator\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 200 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"exportExtensions\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 201 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"functionBind\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 202 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"objectRestSpread\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 203 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var ALREADY_VISITED = (0, _symbol2.default)();\n\n\t  function findConstructorCall(path) {\n\t    var methods = path.get(\"body.body\");\n\n\t    for (var _iterator = methods, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref2;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref2 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref2 = _i.value;\n\t      }\n\n\t      var method = _ref2;\n\n\t      if (method.node.kind === \"constructorCall\") {\n\t        return method;\n\t      }\n\t    }\n\n\t    return null;\n\t  }\n\n\t  function handleClassWithCall(constructorCall, classPath) {\n\t    var _classPath = classPath,\n\t        node = _classPath.node;\n\n\t    var ref = node.id || classPath.scope.generateUidIdentifier(\"class\");\n\n\t    if (classPath.parentPath.isExportDefaultDeclaration()) {\n\t      classPath = classPath.parentPath;\n\t      classPath.insertAfter(t.exportDefaultDeclaration(ref));\n\t    }\n\n\t    classPath.replaceWithMultiple(buildWrapper({\n\t      CLASS_REF: classPath.scope.generateUidIdentifier(ref.name),\n\t      CALL_REF: classPath.scope.generateUidIdentifier(ref.name + \"Call\"),\n\t      CALL: t.functionExpression(null, constructorCall.node.params, constructorCall.node.body),\n\t      CLASS: t.toExpression(node),\n\t      WRAPPER_REF: ref\n\t    }));\n\n\t    constructorCall.remove();\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(196),\n\n\t    visitor: {\n\t      Class: function Class(path) {\n\t        if (path.node[ALREADY_VISITED]) return;\n\t        path.node[ALREADY_VISITED] = true;\n\n\t        var constructorCall = findConstructorCall(path);\n\n\t        if (constructorCall) {\n\t          handleClassWithCall(constructorCall, path);\n\t        } else {\n\t          return;\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildWrapper = (0, _babelTemplate2.default)(\"\\n  let CLASS_REF = CLASS;\\n  var CALL_REF = CALL;\\n  var WRAPPER_REF = function (...args) {\\n    if (this instanceof WRAPPER_REF) {\\n      return Reflect.construct(CLASS_REF, args);\\n    } else {\\n      return CALL_REF.apply(this, args);\\n    }\\n  };\\n  WRAPPER_REF.__proto__ = CLASS_REF;\\n  WRAPPER_REF;\\n\");\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 204 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var findBareSupers = {\n\t    Super: function Super(path) {\n\t      if (path.parentPath.isCallExpression({ callee: path.node })) {\n\t        this.push(path.parentPath);\n\t      }\n\t    }\n\t  };\n\n\t  var referenceVisitor = {\n\t    ReferencedIdentifier: function ReferencedIdentifier(path) {\n\t      if (this.scope.hasOwnBinding(path.node.name)) {\n\t        this.collision = true;\n\t        path.skip();\n\t      }\n\t    }\n\t  };\n\n\t  var buildObjectDefineProperty = (0, _babelTemplate2.default)(\"\\n    Object.defineProperty(REF, KEY, {\\n      // configurable is false by default\\n      enumerable: true,\\n      writable: true,\\n      value: VALUE\\n    });\\n  \");\n\n\t  var buildClassPropertySpec = function buildClassPropertySpec(ref, _ref2) {\n\t    var key = _ref2.key,\n\t        value = _ref2.value,\n\t        computed = _ref2.computed;\n\t    return buildObjectDefineProperty({\n\t      REF: ref,\n\t      KEY: t.isIdentifier(key) && !computed ? t.stringLiteral(key.name) : key,\n\t      VALUE: value ? value : t.identifier(\"undefined\")\n\t    });\n\t  };\n\n\t  var buildClassPropertyNonSpec = function buildClassPropertyNonSpec(ref, _ref3) {\n\t    var key = _ref3.key,\n\t        value = _ref3.value,\n\t        computed = _ref3.computed;\n\t    return t.expressionStatement(t.assignmentExpression(\"=\", t.memberExpression(ref, key, computed || t.isLiteral(key)), value));\n\t  };\n\n\t  return {\n\t    inherits: __webpack_require__(197),\n\n\t    visitor: {\n\t      Class: function Class(path, state) {\n\t        var buildClassProperty = state.opts.spec ? buildClassPropertySpec : buildClassPropertyNonSpec;\n\t        var isDerived = !!path.node.superClass;\n\t        var constructor = void 0;\n\t        var props = [];\n\t        var body = path.get(\"body\");\n\n\t        for (var _iterator = body.get(\"body\"), _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref4;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref4 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref4 = _i.value;\n\t          }\n\n\t          var _path = _ref4;\n\n\t          if (_path.isClassProperty()) {\n\t            props.push(_path);\n\t          } else if (_path.isClassMethod({ kind: \"constructor\" })) {\n\t            constructor = _path;\n\t          }\n\t        }\n\n\t        if (!props.length) return;\n\n\t        var nodes = [];\n\t        var ref = void 0;\n\n\t        if (path.isClassExpression() || !path.node.id) {\n\t          (0, _babelHelperFunctionName2.default)(path);\n\t          ref = path.scope.generateUidIdentifier(\"class\");\n\t        } else {\n\t          ref = path.node.id;\n\t        }\n\n\t        var instanceBody = [];\n\n\t        for (var _iterator2 = props, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t          var _ref5;\n\n\t          if (_isArray2) {\n\t            if (_i2 >= _iterator2.length) break;\n\t            _ref5 = _iterator2[_i2++];\n\t          } else {\n\t            _i2 = _iterator2.next();\n\t            if (_i2.done) break;\n\t            _ref5 = _i2.value;\n\t          }\n\n\t          var _prop = _ref5;\n\n\t          var propNode = _prop.node;\n\t          if (propNode.decorators && propNode.decorators.length > 0) continue;\n\n\t          if (!state.opts.spec && !propNode.value) continue;\n\n\t          var isStatic = propNode.static;\n\n\t          if (isStatic) {\n\t            nodes.push(buildClassProperty(ref, propNode));\n\t          } else {\n\t            if (!propNode.value) continue;\n\t            instanceBody.push(buildClassProperty(t.thisExpression(), propNode));\n\t          }\n\t        }\n\n\t        if (instanceBody.length) {\n\t          if (!constructor) {\n\t            var newConstructor = t.classMethod(\"constructor\", t.identifier(\"constructor\"), [], t.blockStatement([]));\n\t            if (isDerived) {\n\t              newConstructor.params = [t.restElement(t.identifier(\"args\"))];\n\t              newConstructor.body.body.push(t.returnStatement(t.callExpression(t.super(), [t.spreadElement(t.identifier(\"args\"))])));\n\t            }\n\n\t            var _body$unshiftContaine = body.unshiftContainer(\"body\", newConstructor);\n\n\t            constructor = _body$unshiftContaine[0];\n\t          }\n\n\t          var collisionState = {\n\t            collision: false,\n\t            scope: constructor.scope\n\t          };\n\n\t          for (var _iterator3 = props, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t            var _ref6;\n\n\t            if (_isArray3) {\n\t              if (_i3 >= _iterator3.length) break;\n\t              _ref6 = _iterator3[_i3++];\n\t            } else {\n\t              _i3 = _iterator3.next();\n\t              if (_i3.done) break;\n\t              _ref6 = _i3.value;\n\t            }\n\n\t            var prop = _ref6;\n\n\t            prop.traverse(referenceVisitor, collisionState);\n\t            if (collisionState.collision) break;\n\t          }\n\n\t          if (collisionState.collision) {\n\t            var initialisePropsRef = path.scope.generateUidIdentifier(\"initialiseProps\");\n\n\t            nodes.push(t.variableDeclaration(\"var\", [t.variableDeclarator(initialisePropsRef, t.functionExpression(null, [], t.blockStatement(instanceBody)))]));\n\n\t            instanceBody = [t.expressionStatement(t.callExpression(t.memberExpression(initialisePropsRef, t.identifier(\"call\")), [t.thisExpression()]))];\n\t          }\n\n\t          if (isDerived) {\n\t            var bareSupers = [];\n\t            constructor.traverse(findBareSupers, bareSupers);\n\t            for (var _iterator4 = bareSupers, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t              var _ref7;\n\n\t              if (_isArray4) {\n\t                if (_i4 >= _iterator4.length) break;\n\t                _ref7 = _iterator4[_i4++];\n\t              } else {\n\t                _i4 = _iterator4.next();\n\t                if (_i4.done) break;\n\t                _ref7 = _i4.value;\n\t              }\n\n\t              var bareSuper = _ref7;\n\n\t              bareSuper.insertAfter(instanceBody);\n\t            }\n\t          } else {\n\t            constructor.get(\"body\").unshiftContainer(\"body\", instanceBody);\n\t          }\n\t        }\n\n\t        for (var _iterator5 = props, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t          var _ref8;\n\n\t          if (_isArray5) {\n\t            if (_i5 >= _iterator5.length) break;\n\t            _ref8 = _iterator5[_i5++];\n\t          } else {\n\t            _i5 = _iterator5.next();\n\t            if (_i5.done) break;\n\t            _ref8 = _i5.value;\n\t          }\n\n\t          var _prop2 = _ref8;\n\n\t          _prop2.remove();\n\t        }\n\n\t        if (!nodes.length) return;\n\n\t        if (path.isClassExpression()) {\n\t          path.scope.push({ id: ref });\n\t          path.replaceWith(t.assignmentExpression(\"=\", ref, path.node));\n\t        } else {\n\t          if (!path.node.id) {\n\t            path.node.id = ref;\n\t          }\n\n\t          if (path.parentPath.isExportDeclaration()) {\n\t            path = path.parentPath;\n\t          }\n\t        }\n\n\t        path.insertAfter(nodes);\n\t      },\n\t      ArrowFunctionExpression: function ArrowFunctionExpression(path) {\n\t        var classExp = path.get(\"body\");\n\t        if (!classExp.isClassExpression()) return;\n\n\t        var body = classExp.get(\"body\");\n\t        var members = body.get(\"body\");\n\t        if (members.some(function (member) {\n\t          return member.isClassProperty();\n\t        })) {\n\t          path.ensureBlock();\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperFunctionName = __webpack_require__(40);\n\n\tvar _babelHelperFunctionName2 = _interopRequireDefault(_babelHelperFunctionName);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 205 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function cleanDecorators(decorators) {\n\t    return decorators.reverse().map(function (dec) {\n\t      return dec.expression;\n\t    });\n\t  }\n\n\t  function transformClass(path, ref, state) {\n\t    var nodes = [];\n\n\t    state;\n\n\t    var classDecorators = path.node.decorators;\n\t    if (classDecorators) {\n\t      path.node.decorators = null;\n\t      classDecorators = cleanDecorators(classDecorators);\n\n\t      for (var _iterator = classDecorators, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref2;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref2 = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref2 = _i.value;\n\t        }\n\n\t        var decorator = _ref2;\n\n\t        nodes.push(buildClassDecorator({\n\t          CLASS_REF: ref,\n\t          DECORATOR: decorator\n\t        }));\n\t      }\n\t    }\n\n\t    var map = (0, _create2.default)(null);\n\n\t    for (var _iterator2 = path.get(\"body.body\"), _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref3;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref3 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref3 = _i2.value;\n\t      }\n\n\t      var method = _ref3;\n\n\t      var decorators = method.node.decorators;\n\t      if (!decorators) continue;\n\n\t      var _alias = t.toKeyAlias(method.node);\n\t      map[_alias] = map[_alias] || [];\n\t      map[_alias].push(method.node);\n\n\t      method.remove();\n\t    }\n\n\t    for (var alias in map) {\n\t      var items = map[alias];\n\n\t      items;\n\t    }\n\n\t    return nodes;\n\t  }\n\n\t  function hasDecorators(path) {\n\t    if (path.isClass()) {\n\t      if (path.node.decorators) return true;\n\n\t      for (var _iterator3 = path.node.body.body, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t        var _ref4;\n\n\t        if (_isArray3) {\n\t          if (_i3 >= _iterator3.length) break;\n\t          _ref4 = _iterator3[_i3++];\n\t        } else {\n\t          _i3 = _iterator3.next();\n\t          if (_i3.done) break;\n\t          _ref4 = _i3.value;\n\t        }\n\n\t        var method = _ref4;\n\n\t        if (method.decorators) {\n\t          return true;\n\t        }\n\t      }\n\t    } else if (path.isObjectExpression()) {\n\t      for (var _iterator4 = path.node.properties, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t        var _ref5;\n\n\t        if (_isArray4) {\n\t          if (_i4 >= _iterator4.length) break;\n\t          _ref5 = _iterator4[_i4++];\n\t        } else {\n\t          _i4 = _iterator4.next();\n\t          if (_i4.done) break;\n\t          _ref5 = _i4.value;\n\t        }\n\n\t        var prop = _ref5;\n\n\t        if (prop.decorators) {\n\t          return true;\n\t        }\n\t      }\n\t    }\n\n\t    return false;\n\t  }\n\n\t  function doError(path) {\n\t    throw path.buildCodeFrameError(\"Decorators are not officially supported yet in 6.x pending a proposal update.\\nHowever, if you need to use them you can install the legacy decorators transform with:\\n\\nnpm install babel-plugin-transform-decorators-legacy --save-dev\\n\\nand add the following line to your .babelrc file:\\n\\n{\\n  \\\"plugins\\\": [\\\"transform-decorators-legacy\\\"]\\n}\\n\\nThe repo url is: https://github.com/loganfsmyth/babel-plugin-transform-decorators-legacy.\\n    \");\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(125),\n\n\t    visitor: {\n\t      ClassExpression: function ClassExpression(path) {\n\t        if (!hasDecorators(path)) return;\n\t        doError(path);\n\n\t        (0, _babelHelperExplodeClass2.default)(path);\n\n\t        var ref = path.scope.generateDeclaredUidIdentifier(\"ref\");\n\t        var nodes = [];\n\n\t        nodes.push(t.assignmentExpression(\"=\", ref, path.node));\n\n\t        nodes = nodes.concat(transformClass(path, ref, this));\n\n\t        nodes.push(ref);\n\n\t        path.replaceWith(t.sequenceExpression(nodes));\n\t      },\n\t      ClassDeclaration: function ClassDeclaration(path) {\n\t        if (!hasDecorators(path)) return;\n\t        doError(path);\n\t        (0, _babelHelperExplodeClass2.default)(path);\n\n\t        var ref = path.node.id;\n\t        var nodes = [];\n\n\t        nodes = nodes.concat(transformClass(path, ref, this).map(function (expr) {\n\t          return t.expressionStatement(expr);\n\t        }));\n\t        nodes.push(t.expressionStatement(ref));\n\n\t        path.insertAfter(nodes);\n\t      },\n\t      ObjectExpression: function ObjectExpression(path) {\n\t        if (!hasDecorators(path)) return;\n\t        doError(path);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelHelperExplodeClass = __webpack_require__(319);\n\n\tvar _babelHelperExplodeClass2 = _interopRequireDefault(_babelHelperExplodeClass);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildClassDecorator = (0, _babelTemplate2.default)(\"\\n  CLASS_REF = DECORATOR(CLASS_REF) || CLASS_REF;\\n\");\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 206 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    inherits: __webpack_require__(198),\n\n\t    visitor: {\n\t      DoExpression: function DoExpression(path) {\n\t        var body = path.node.body.body;\n\t        if (body.length) {\n\t          path.replaceWithMultiple(body);\n\t        } else {\n\t          path.replaceWith(path.scope.buildUndefinedNode());\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 207 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelHelperReplaceSupers = __webpack_require__(193);\n\n\tvar _babelHelperReplaceSupers2 = _interopRequireDefault(_babelHelperReplaceSupers);\n\n\tvar _babelHelperOptimiseCallExpression = __webpack_require__(191);\n\n\tvar _babelHelperOptimiseCallExpression2 = _interopRequireDefault(_babelHelperOptimiseCallExpression);\n\n\tvar _babelHelperDefineMap = __webpack_require__(188);\n\n\tvar defineMap = _interopRequireWildcard(_babelHelperDefineMap);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildDerivedConstructor = (0, _babelTemplate2.default)(\"\\n  (function () {\\n    super(...arguments);\\n  })\\n\");\n\n\tvar noMethodVisitor = {\n\t  \"FunctionExpression|FunctionDeclaration\": function FunctionExpressionFunctionDeclaration(path) {\n\t    if (!path.is(\"shadow\")) {\n\t      path.skip();\n\t    }\n\t  },\n\t  Method: function Method(path) {\n\t    path.skip();\n\t  }\n\t};\n\n\tvar verifyConstructorVisitor = _babelTraverse.visitors.merge([noMethodVisitor, {\n\t  Super: function Super(path) {\n\t    if (this.isDerived && !this.hasBareSuper && !path.parentPath.isCallExpression({ callee: path.node })) {\n\t      throw path.buildCodeFrameError(\"'super.*' is not allowed before super()\");\n\t    }\n\t  },\n\n\t  CallExpression: {\n\t    exit: function exit(path) {\n\t      if (path.get(\"callee\").isSuper()) {\n\t        this.hasBareSuper = true;\n\n\t        if (!this.isDerived) {\n\t          throw path.buildCodeFrameError(\"super() is only allowed in a derived constructor\");\n\t        }\n\t      }\n\t    }\n\t  },\n\n\t  ThisExpression: function ThisExpression(path) {\n\t    if (this.isDerived && !this.hasBareSuper) {\n\t      if (!path.inShadow(\"this\")) {\n\t        throw path.buildCodeFrameError(\"'this' is not allowed before super()\");\n\t      }\n\t    }\n\t  }\n\t}]);\n\n\tvar findThisesVisitor = _babelTraverse.visitors.merge([noMethodVisitor, {\n\t  ThisExpression: function ThisExpression(path) {\n\t    this.superThises.push(path);\n\t  }\n\t}]);\n\n\tvar ClassTransformer = function () {\n\t  function ClassTransformer(path, file) {\n\t    (0, _classCallCheck3.default)(this, ClassTransformer);\n\n\t    this.parent = path.parent;\n\t    this.scope = path.scope;\n\t    this.node = path.node;\n\t    this.path = path;\n\t    this.file = file;\n\n\t    this.clearDescriptors();\n\n\t    this.instancePropBody = [];\n\t    this.instancePropRefs = {};\n\t    this.staticPropBody = [];\n\t    this.body = [];\n\n\t    this.bareSuperAfter = [];\n\t    this.bareSupers = [];\n\n\t    this.pushedConstructor = false;\n\t    this.pushedInherits = false;\n\t    this.isLoose = false;\n\n\t    this.superThises = [];\n\n\t    this.classId = this.node.id;\n\n\t    this.classRef = this.node.id ? t.identifier(this.node.id.name) : this.scope.generateUidIdentifier(\"class\");\n\n\t    this.superName = this.node.superClass || t.identifier(\"Function\");\n\t    this.isDerived = !!this.node.superClass;\n\t  }\n\n\t  ClassTransformer.prototype.run = function run() {\n\t    var _this = this;\n\n\t    var superName = this.superName;\n\t    var file = this.file;\n\t    var body = this.body;\n\n\t    var constructorBody = this.constructorBody = t.blockStatement([]);\n\t    this.constructor = this.buildConstructor();\n\n\t    var closureParams = [];\n\t    var closureArgs = [];\n\n\t    if (this.isDerived) {\n\t      closureArgs.push(superName);\n\n\t      superName = this.scope.generateUidIdentifierBasedOnNode(superName);\n\t      closureParams.push(superName);\n\n\t      this.superName = superName;\n\t    }\n\n\t    this.buildBody();\n\n\t    constructorBody.body.unshift(t.expressionStatement(t.callExpression(file.addHelper(\"classCallCheck\"), [t.thisExpression(), this.classRef])));\n\n\t    body = body.concat(this.staticPropBody.map(function (fn) {\n\t      return fn(_this.classRef);\n\t    }));\n\n\t    if (this.classId) {\n\t      if (body.length === 1) return t.toExpression(body[0]);\n\t    }\n\n\t    body.push(t.returnStatement(this.classRef));\n\n\t    var container = t.functionExpression(null, closureParams, t.blockStatement(body));\n\t    container.shadow = true;\n\t    return t.callExpression(container, closureArgs);\n\t  };\n\n\t  ClassTransformer.prototype.buildConstructor = function buildConstructor() {\n\t    var func = t.functionDeclaration(this.classRef, [], this.constructorBody);\n\t    t.inherits(func, this.node);\n\t    return func;\n\t  };\n\n\t  ClassTransformer.prototype.pushToMap = function pushToMap(node, enumerable) {\n\t    var kind = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : \"value\";\n\t    var scope = arguments[3];\n\n\t    var mutatorMap = void 0;\n\t    if (node.static) {\n\t      this.hasStaticDescriptors = true;\n\t      mutatorMap = this.staticMutatorMap;\n\t    } else {\n\t      this.hasInstanceDescriptors = true;\n\t      mutatorMap = this.instanceMutatorMap;\n\t    }\n\n\t    var map = defineMap.push(mutatorMap, node, kind, this.file, scope);\n\n\t    if (enumerable) {\n\t      map.enumerable = t.booleanLiteral(true);\n\t    }\n\n\t    return map;\n\t  };\n\n\t  ClassTransformer.prototype.constructorMeMaybe = function constructorMeMaybe() {\n\t    var hasConstructor = false;\n\t    var paths = this.path.get(\"body.body\");\n\t    for (var _iterator = paths, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var path = _ref;\n\n\t      hasConstructor = path.equals(\"kind\", \"constructor\");\n\t      if (hasConstructor) break;\n\t    }\n\t    if (hasConstructor) return;\n\n\t    var params = void 0,\n\t        body = void 0;\n\n\t    if (this.isDerived) {\n\t      var _constructor = buildDerivedConstructor().expression;\n\t      params = _constructor.params;\n\t      body = _constructor.body;\n\t    } else {\n\t      params = [];\n\t      body = t.blockStatement([]);\n\t    }\n\n\t    this.path.get(\"body\").unshiftContainer(\"body\", t.classMethod(\"constructor\", t.identifier(\"constructor\"), params, body));\n\t  };\n\n\t  ClassTransformer.prototype.buildBody = function buildBody() {\n\t    this.constructorMeMaybe();\n\t    this.pushBody();\n\t    this.verifyConstructor();\n\n\t    if (this.userConstructor) {\n\t      var constructorBody = this.constructorBody;\n\t      constructorBody.body = constructorBody.body.concat(this.userConstructor.body.body);\n\t      t.inherits(this.constructor, this.userConstructor);\n\t      t.inherits(constructorBody, this.userConstructor.body);\n\t    }\n\n\t    this.pushDescriptors();\n\t  };\n\n\t  ClassTransformer.prototype.pushBody = function pushBody() {\n\t    var classBodyPaths = this.path.get(\"body.body\");\n\n\t    for (var _iterator2 = classBodyPaths, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var path = _ref2;\n\n\t      var node = path.node;\n\n\t      if (path.isClassProperty()) {\n\t        throw path.buildCodeFrameError(\"Missing class properties transform.\");\n\t      }\n\n\t      if (node.decorators) {\n\t        throw path.buildCodeFrameError(\"Method has decorators, put the decorator plugin before the classes one.\");\n\t      }\n\n\t      if (t.isClassMethod(node)) {\n\t        var isConstructor = node.kind === \"constructor\";\n\n\t        if (isConstructor) {\n\t          path.traverse(verifyConstructorVisitor, this);\n\n\t          if (!this.hasBareSuper && this.isDerived) {\n\t            throw path.buildCodeFrameError(\"missing super() call in constructor\");\n\t          }\n\t        }\n\n\t        var replaceSupers = new _babelHelperReplaceSupers2.default({\n\t          forceSuperMemoisation: isConstructor,\n\t          methodPath: path,\n\t          methodNode: node,\n\t          objectRef: this.classRef,\n\t          superRef: this.superName,\n\t          isStatic: node.static,\n\t          isLoose: this.isLoose,\n\t          scope: this.scope,\n\t          file: this.file\n\t        }, true);\n\n\t        replaceSupers.replace();\n\n\t        if (isConstructor) {\n\t          this.pushConstructor(replaceSupers, node, path);\n\t        } else {\n\t          this.pushMethod(node, path);\n\t        }\n\t      }\n\t    }\n\t  };\n\n\t  ClassTransformer.prototype.clearDescriptors = function clearDescriptors() {\n\t    this.hasInstanceDescriptors = false;\n\t    this.hasStaticDescriptors = false;\n\n\t    this.instanceMutatorMap = {};\n\t    this.staticMutatorMap = {};\n\t  };\n\n\t  ClassTransformer.prototype.pushDescriptors = function pushDescriptors() {\n\t    this.pushInherits();\n\n\t    var body = this.body;\n\n\t    var instanceProps = void 0;\n\t    var staticProps = void 0;\n\n\t    if (this.hasInstanceDescriptors) {\n\t      instanceProps = defineMap.toClassObject(this.instanceMutatorMap);\n\t    }\n\n\t    if (this.hasStaticDescriptors) {\n\t      staticProps = defineMap.toClassObject(this.staticMutatorMap);\n\t    }\n\n\t    if (instanceProps || staticProps) {\n\t      if (instanceProps) instanceProps = defineMap.toComputedObjectFromClass(instanceProps);\n\t      if (staticProps) staticProps = defineMap.toComputedObjectFromClass(staticProps);\n\n\t      var nullNode = t.nullLiteral();\n\n\t      var args = [this.classRef, nullNode, nullNode, nullNode, nullNode];\n\n\t      if (instanceProps) args[1] = instanceProps;\n\t      if (staticProps) args[2] = staticProps;\n\n\t      if (this.instanceInitializersId) {\n\t        args[3] = this.instanceInitializersId;\n\t        body.unshift(this.buildObjectAssignment(this.instanceInitializersId));\n\t      }\n\n\t      if (this.staticInitializersId) {\n\t        args[4] = this.staticInitializersId;\n\t        body.unshift(this.buildObjectAssignment(this.staticInitializersId));\n\t      }\n\n\t      var lastNonNullIndex = 0;\n\t      for (var i = 0; i < args.length; i++) {\n\t        if (args[i] !== nullNode) lastNonNullIndex = i;\n\t      }\n\t      args = args.slice(0, lastNonNullIndex + 1);\n\n\t      body.push(t.expressionStatement(t.callExpression(this.file.addHelper(\"createClass\"), args)));\n\t    }\n\n\t    this.clearDescriptors();\n\t  };\n\n\t  ClassTransformer.prototype.buildObjectAssignment = function buildObjectAssignment(id) {\n\t    return t.variableDeclaration(\"var\", [t.variableDeclarator(id, t.objectExpression([]))]);\n\t  };\n\n\t  ClassTransformer.prototype.wrapSuperCall = function wrapSuperCall(bareSuper, superRef, thisRef, body) {\n\t    var bareSuperNode = bareSuper.node;\n\n\t    if (this.isLoose) {\n\t      bareSuperNode.arguments.unshift(t.thisExpression());\n\t      if (bareSuperNode.arguments.length === 2 && t.isSpreadElement(bareSuperNode.arguments[1]) && t.isIdentifier(bareSuperNode.arguments[1].argument, { name: \"arguments\" })) {\n\t        bareSuperNode.arguments[1] = bareSuperNode.arguments[1].argument;\n\t        bareSuperNode.callee = t.memberExpression(superRef, t.identifier(\"apply\"));\n\t      } else {\n\t        bareSuperNode.callee = t.memberExpression(superRef, t.identifier(\"call\"));\n\t      }\n\t    } else {\n\t      bareSuperNode = (0, _babelHelperOptimiseCallExpression2.default)(t.logicalExpression(\"||\", t.memberExpression(this.classRef, t.identifier(\"__proto__\")), t.callExpression(t.memberExpression(t.identifier(\"Object\"), t.identifier(\"getPrototypeOf\")), [this.classRef])), t.thisExpression(), bareSuperNode.arguments);\n\t    }\n\n\t    var call = t.callExpression(this.file.addHelper(\"possibleConstructorReturn\"), [t.thisExpression(), bareSuperNode]);\n\n\t    var bareSuperAfter = this.bareSuperAfter.map(function (fn) {\n\t      return fn(thisRef);\n\t    });\n\n\t    if (bareSuper.parentPath.isExpressionStatement() && bareSuper.parentPath.container === body.node.body && body.node.body.length - 1 === bareSuper.parentPath.key) {\n\n\t      if (this.superThises.length || bareSuperAfter.length) {\n\t        bareSuper.scope.push({ id: thisRef });\n\t        call = t.assignmentExpression(\"=\", thisRef, call);\n\t      }\n\n\t      if (bareSuperAfter.length) {\n\t        call = t.toSequenceExpression([call].concat(bareSuperAfter, [thisRef]));\n\t      }\n\n\t      bareSuper.parentPath.replaceWith(t.returnStatement(call));\n\t    } else {\n\t      bareSuper.replaceWithMultiple([t.variableDeclaration(\"var\", [t.variableDeclarator(thisRef, call)])].concat(bareSuperAfter, [t.expressionStatement(thisRef)]));\n\t    }\n\t  };\n\n\t  ClassTransformer.prototype.verifyConstructor = function verifyConstructor() {\n\t    var _this2 = this;\n\n\t    if (!this.isDerived) return;\n\n\t    var path = this.userConstructorPath;\n\t    var body = path.get(\"body\");\n\n\t    path.traverse(findThisesVisitor, this);\n\n\t    var guaranteedSuperBeforeFinish = !!this.bareSupers.length;\n\n\t    var superRef = this.superName || t.identifier(\"Function\");\n\t    var thisRef = path.scope.generateUidIdentifier(\"this\");\n\n\t    for (var _iterator3 = this.bareSupers, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var bareSuper = _ref3;\n\n\t      this.wrapSuperCall(bareSuper, superRef, thisRef, body);\n\n\t      if (guaranteedSuperBeforeFinish) {\n\t        bareSuper.find(function (parentPath) {\n\t          if (parentPath === path) {\n\t            return true;\n\t          }\n\n\t          if (parentPath.isLoop() || parentPath.isConditional()) {\n\t            guaranteedSuperBeforeFinish = false;\n\t            return true;\n\t          }\n\t        });\n\t      }\n\t    }\n\n\t    for (var _iterator4 = this.superThises, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t      var _ref4;\n\n\t      if (_isArray4) {\n\t        if (_i4 >= _iterator4.length) break;\n\t        _ref4 = _iterator4[_i4++];\n\t      } else {\n\t        _i4 = _iterator4.next();\n\t        if (_i4.done) break;\n\t        _ref4 = _i4.value;\n\t      }\n\n\t      var thisPath = _ref4;\n\n\t      thisPath.replaceWith(thisRef);\n\t    }\n\n\t    var wrapReturn = function wrapReturn(returnArg) {\n\t      return t.callExpression(_this2.file.addHelper(\"possibleConstructorReturn\"), [thisRef].concat(returnArg || []));\n\t    };\n\n\t    var bodyPaths = body.get(\"body\");\n\t    if (bodyPaths.length && !bodyPaths.pop().isReturnStatement()) {\n\t      body.pushContainer(\"body\", t.returnStatement(guaranteedSuperBeforeFinish ? thisRef : wrapReturn()));\n\t    }\n\n\t    for (var _iterator5 = this.superReturns, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t      var _ref5;\n\n\t      if (_isArray5) {\n\t        if (_i5 >= _iterator5.length) break;\n\t        _ref5 = _iterator5[_i5++];\n\t      } else {\n\t        _i5 = _iterator5.next();\n\t        if (_i5.done) break;\n\t        _ref5 = _i5.value;\n\t      }\n\n\t      var returnPath = _ref5;\n\n\t      if (returnPath.node.argument) {\n\t        var ref = returnPath.scope.generateDeclaredUidIdentifier(\"ret\");\n\t        returnPath.get(\"argument\").replaceWithMultiple([t.assignmentExpression(\"=\", ref, returnPath.node.argument), wrapReturn(ref)]);\n\t      } else {\n\t        returnPath.get(\"argument\").replaceWith(wrapReturn());\n\t      }\n\t    }\n\t  };\n\n\t  ClassTransformer.prototype.pushMethod = function pushMethod(node, path) {\n\t    var scope = path ? path.scope : this.scope;\n\n\t    if (node.kind === \"method\") {\n\t      if (this._processMethod(node, scope)) return;\n\t    }\n\n\t    this.pushToMap(node, false, null, scope);\n\t  };\n\n\t  ClassTransformer.prototype._processMethod = function _processMethod() {\n\t    return false;\n\t  };\n\n\t  ClassTransformer.prototype.pushConstructor = function pushConstructor(replaceSupers, method, path) {\n\t    this.bareSupers = replaceSupers.bareSupers;\n\t    this.superReturns = replaceSupers.returns;\n\n\t    if (path.scope.hasOwnBinding(this.classRef.name)) {\n\t      path.scope.rename(this.classRef.name);\n\t    }\n\n\t    var construct = this.constructor;\n\n\t    this.userConstructorPath = path;\n\t    this.userConstructor = method;\n\t    this.hasConstructor = true;\n\n\t    t.inheritsComments(construct, method);\n\n\t    construct._ignoreUserWhitespace = true;\n\t    construct.params = method.params;\n\n\t    t.inherits(construct.body, method.body);\n\t    construct.body.directives = method.body.directives;\n\n\t    this._pushConstructor();\n\t  };\n\n\t  ClassTransformer.prototype._pushConstructor = function _pushConstructor() {\n\t    if (this.pushedConstructor) return;\n\t    this.pushedConstructor = true;\n\n\t    if (this.hasInstanceDescriptors || this.hasStaticDescriptors) {\n\t      this.pushDescriptors();\n\t    }\n\n\t    this.body.push(this.constructor);\n\n\t    this.pushInherits();\n\t  };\n\n\t  ClassTransformer.prototype.pushInherits = function pushInherits() {\n\t    if (!this.isDerived || this.pushedInherits) return;\n\n\t    this.pushedInherits = true;\n\t    this.body.unshift(t.expressionStatement(t.callExpression(this.file.addHelper(\"inherits\"), [this.classRef, this.superName])));\n\t  };\n\n\t  return ClassTransformer;\n\t}();\n\n\texports.default = ClassTransformer;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 208 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var IGNORE_REASSIGNMENT_SYMBOL = (0, _symbol2.default)();\n\n\t  var reassignmentVisitor = {\n\t    \"AssignmentExpression|UpdateExpression\": function AssignmentExpressionUpdateExpression(path) {\n\t      if (path.node[IGNORE_REASSIGNMENT_SYMBOL]) return;\n\t      path.node[IGNORE_REASSIGNMENT_SYMBOL] = true;\n\n\t      var arg = path.get(path.isAssignmentExpression() ? \"left\" : \"argument\");\n\t      if (!arg.isIdentifier()) return;\n\n\t      var name = arg.node.name;\n\n\t      if (this.scope.getBinding(name) !== path.scope.getBinding(name)) return;\n\n\t      var exportedNames = this.exports[name];\n\t      if (!exportedNames) return;\n\n\t      var node = path.node;\n\n\t      var isPostUpdateExpression = path.isUpdateExpression() && !node.prefix;\n\t      if (isPostUpdateExpression) {\n\t        if (node.operator === \"++\") node = t.binaryExpression(\"+\", node.argument, t.numericLiteral(1));else if (node.operator === \"--\") node = t.binaryExpression(\"-\", node.argument, t.numericLiteral(1));else isPostUpdateExpression = false;\n\t      }\n\n\t      for (var _iterator = exportedNames, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref2;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref2 = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref2 = _i.value;\n\t        }\n\n\t        var exportedName = _ref2;\n\n\t        node = this.buildCall(exportedName, node).expression;\n\t      }\n\n\t      if (isPostUpdateExpression) node = t.sequenceExpression([node, path.node]);\n\n\t      path.replaceWith(node);\n\t    }\n\t  };\n\n\t  return {\n\t    visitor: {\n\t      CallExpression: function CallExpression(path, state) {\n\t        if (path.node.callee.type === TYPE_IMPORT) {\n\t          var contextIdent = state.contextIdent;\n\t          path.replaceWith(t.callExpression(t.memberExpression(contextIdent, t.identifier(\"import\")), path.node.arguments));\n\t        }\n\t      },\n\t      ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t        if (path.node.name == \"__moduleName\" && !path.scope.hasBinding(\"__moduleName\")) {\n\t          path.replaceWith(t.memberExpression(state.contextIdent, t.identifier(\"id\")));\n\t        }\n\t      },\n\n\t      Program: {\n\t        enter: function enter(path, state) {\n\t          state.contextIdent = path.scope.generateUidIdentifier(\"context\");\n\t        },\n\t        exit: function exit(path, state) {\n\t          var exportIdent = path.scope.generateUidIdentifier(\"export\");\n\t          var contextIdent = state.contextIdent;\n\n\t          var exportNames = (0, _create2.default)(null);\n\t          var modules = [];\n\n\t          var beforeBody = [];\n\t          var setters = [];\n\t          var sources = [];\n\t          var variableIds = [];\n\t          var removedPaths = [];\n\n\t          function addExportName(key, val) {\n\t            exportNames[key] = exportNames[key] || [];\n\t            exportNames[key].push(val);\n\t          }\n\n\t          function pushModule(source, key, specifiers) {\n\t            var module = void 0;\n\t            modules.forEach(function (m) {\n\t              if (m.key === source) {\n\t                module = m;\n\t              }\n\t            });\n\t            if (!module) {\n\t              modules.push(module = { key: source, imports: [], exports: [] });\n\t            }\n\t            module[key] = module[key].concat(specifiers);\n\t          }\n\n\t          function buildExportCall(name, val) {\n\t            return t.expressionStatement(t.callExpression(exportIdent, [t.stringLiteral(name), val]));\n\t          }\n\n\t          var body = path.get(\"body\");\n\n\t          var canHoist = true;\n\t          for (var _iterator2 = body, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t            var _ref3;\n\n\t            if (_isArray2) {\n\t              if (_i2 >= _iterator2.length) break;\n\t              _ref3 = _iterator2[_i2++];\n\t            } else {\n\t              _i2 = _iterator2.next();\n\t              if (_i2.done) break;\n\t              _ref3 = _i2.value;\n\t            }\n\n\t            var _path = _ref3;\n\n\t            if (_path.isExportDeclaration()) _path = _path.get(\"declaration\");\n\t            if (_path.isVariableDeclaration() && _path.node.kind !== \"var\") {\n\t              canHoist = false;\n\t              break;\n\t            }\n\t          }\n\n\t          for (var _iterator3 = body, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t            var _ref4;\n\n\t            if (_isArray3) {\n\t              if (_i3 >= _iterator3.length) break;\n\t              _ref4 = _iterator3[_i3++];\n\t            } else {\n\t              _i3 = _iterator3.next();\n\t              if (_i3.done) break;\n\t              _ref4 = _i3.value;\n\t            }\n\n\t            var _path2 = _ref4;\n\n\t            if (canHoist && _path2.isFunctionDeclaration()) {\n\t              beforeBody.push(_path2.node);\n\t              removedPaths.push(_path2);\n\t            } else if (_path2.isImportDeclaration()) {\n\t              var source = _path2.node.source.value;\n\t              pushModule(source, \"imports\", _path2.node.specifiers);\n\t              for (var name in _path2.getBindingIdentifiers()) {\n\t                _path2.scope.removeBinding(name);\n\t                variableIds.push(t.identifier(name));\n\t              }\n\t              _path2.remove();\n\t            } else if (_path2.isExportAllDeclaration()) {\n\t              pushModule(_path2.node.source.value, \"exports\", _path2.node);\n\t              _path2.remove();\n\t            } else if (_path2.isExportDefaultDeclaration()) {\n\t              var declar = _path2.get(\"declaration\");\n\t              if (declar.isClassDeclaration() || declar.isFunctionDeclaration()) {\n\t                var id = declar.node.id;\n\t                var nodes = [];\n\n\t                if (id) {\n\t                  nodes.push(declar.node);\n\t                  nodes.push(buildExportCall(\"default\", id));\n\t                  addExportName(id.name, \"default\");\n\t                } else {\n\t                  nodes.push(buildExportCall(\"default\", t.toExpression(declar.node)));\n\t                }\n\n\t                if (!canHoist || declar.isClassDeclaration()) {\n\t                  _path2.replaceWithMultiple(nodes);\n\t                } else {\n\t                  beforeBody = beforeBody.concat(nodes);\n\t                  removedPaths.push(_path2);\n\t                }\n\t              } else {\n\t                _path2.replaceWith(buildExportCall(\"default\", declar.node));\n\t              }\n\t            } else if (_path2.isExportNamedDeclaration()) {\n\t              var _declar = _path2.get(\"declaration\");\n\n\t              if (_declar.node) {\n\t                _path2.replaceWith(_declar);\n\n\t                var _nodes = [];\n\t                var bindingIdentifiers = void 0;\n\t                if (_path2.isFunction()) {\n\t                  var node = _declar.node;\n\t                  var _name = node.id.name;\n\t                  if (canHoist) {\n\t                    addExportName(_name, _name);\n\t                    beforeBody.push(node);\n\t                    beforeBody.push(buildExportCall(_name, node.id));\n\t                    removedPaths.push(_path2);\n\t                  } else {\n\t                    var _bindingIdentifiers;\n\n\t                    bindingIdentifiers = (_bindingIdentifiers = {}, _bindingIdentifiers[_name] = node.id, _bindingIdentifiers);\n\t                  }\n\t                } else {\n\t                  bindingIdentifiers = _declar.getBindingIdentifiers();\n\t                }\n\t                for (var _name2 in bindingIdentifiers) {\n\t                  addExportName(_name2, _name2);\n\t                  _nodes.push(buildExportCall(_name2, t.identifier(_name2)));\n\t                }\n\t                _path2.insertAfter(_nodes);\n\t              } else {\n\t                var specifiers = _path2.node.specifiers;\n\t                if (specifiers && specifiers.length) {\n\t                  if (_path2.node.source) {\n\t                    pushModule(_path2.node.source.value, \"exports\", specifiers);\n\t                    _path2.remove();\n\t                  } else {\n\t                    var _nodes2 = [];\n\n\t                    for (var _iterator7 = specifiers, _isArray7 = Array.isArray(_iterator7), _i7 = 0, _iterator7 = _isArray7 ? _iterator7 : (0, _getIterator3.default)(_iterator7);;) {\n\t                      var _ref8;\n\n\t                      if (_isArray7) {\n\t                        if (_i7 >= _iterator7.length) break;\n\t                        _ref8 = _iterator7[_i7++];\n\t                      } else {\n\t                        _i7 = _iterator7.next();\n\t                        if (_i7.done) break;\n\t                        _ref8 = _i7.value;\n\t                      }\n\n\t                      var specifier = _ref8;\n\n\t                      _nodes2.push(buildExportCall(specifier.exported.name, specifier.local));\n\t                      addExportName(specifier.local.name, specifier.exported.name);\n\t                    }\n\n\t                    _path2.replaceWithMultiple(_nodes2);\n\t                  }\n\t                }\n\t              }\n\t            }\n\t          }\n\n\t          modules.forEach(function (specifiers) {\n\t            var setterBody = [];\n\t            var target = path.scope.generateUidIdentifier(specifiers.key);\n\n\t            for (var _iterator4 = specifiers.imports, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t              var _ref5;\n\n\t              if (_isArray4) {\n\t                if (_i4 >= _iterator4.length) break;\n\t                _ref5 = _iterator4[_i4++];\n\t              } else {\n\t                _i4 = _iterator4.next();\n\t                if (_i4.done) break;\n\t                _ref5 = _i4.value;\n\t              }\n\n\t              var specifier = _ref5;\n\n\t              if (t.isImportNamespaceSpecifier(specifier)) {\n\t                setterBody.push(t.expressionStatement(t.assignmentExpression(\"=\", specifier.local, target)));\n\t              } else if (t.isImportDefaultSpecifier(specifier)) {\n\t                specifier = t.importSpecifier(specifier.local, t.identifier(\"default\"));\n\t              }\n\n\t              if (t.isImportSpecifier(specifier)) {\n\t                setterBody.push(t.expressionStatement(t.assignmentExpression(\"=\", specifier.local, t.memberExpression(target, specifier.imported))));\n\t              }\n\t            }\n\n\t            if (specifiers.exports.length) {\n\t              var exportObjRef = path.scope.generateUidIdentifier(\"exportObj\");\n\n\t              setterBody.push(t.variableDeclaration(\"var\", [t.variableDeclarator(exportObjRef, t.objectExpression([]))]));\n\n\t              for (var _iterator5 = specifiers.exports, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t                var _ref6;\n\n\t                if (_isArray5) {\n\t                  if (_i5 >= _iterator5.length) break;\n\t                  _ref6 = _iterator5[_i5++];\n\t                } else {\n\t                  _i5 = _iterator5.next();\n\t                  if (_i5.done) break;\n\t                  _ref6 = _i5.value;\n\t                }\n\n\t                var node = _ref6;\n\n\t                if (t.isExportAllDeclaration(node)) {\n\t                  setterBody.push(buildExportAll({\n\t                    KEY: path.scope.generateUidIdentifier(\"key\"),\n\t                    EXPORT_OBJ: exportObjRef,\n\t                    TARGET: target\n\t                  }));\n\t                } else if (t.isExportSpecifier(node)) {\n\t                  setterBody.push(t.expressionStatement(t.assignmentExpression(\"=\", t.memberExpression(exportObjRef, node.exported), t.memberExpression(target, node.local))));\n\t                } else {}\n\t              }\n\n\t              setterBody.push(t.expressionStatement(t.callExpression(exportIdent, [exportObjRef])));\n\t            }\n\n\t            sources.push(t.stringLiteral(specifiers.key));\n\t            setters.push(t.functionExpression(null, [target], t.blockStatement(setterBody)));\n\t          });\n\n\t          var moduleName = this.getModuleName();\n\t          if (moduleName) moduleName = t.stringLiteral(moduleName);\n\n\t          if (canHoist) {\n\t            (0, _babelHelperHoistVariables2.default)(path, function (id) {\n\t              return variableIds.push(id);\n\t            });\n\t          }\n\n\t          if (variableIds.length) {\n\t            beforeBody.unshift(t.variableDeclaration(\"var\", variableIds.map(function (id) {\n\t              return t.variableDeclarator(id);\n\t            })));\n\t          }\n\n\t          path.traverse(reassignmentVisitor, {\n\t            exports: exportNames,\n\t            buildCall: buildExportCall,\n\t            scope: path.scope\n\t          });\n\n\t          for (var _iterator6 = removedPaths, _isArray6 = Array.isArray(_iterator6), _i6 = 0, _iterator6 = _isArray6 ? _iterator6 : (0, _getIterator3.default)(_iterator6);;) {\n\t            var _ref7;\n\n\t            if (_isArray6) {\n\t              if (_i6 >= _iterator6.length) break;\n\t              _ref7 = _iterator6[_i6++];\n\t            } else {\n\t              _i6 = _iterator6.next();\n\t              if (_i6.done) break;\n\t              _ref7 = _i6.value;\n\t            }\n\n\t            var _path3 = _ref7;\n\n\t            _path3.remove();\n\t          }\n\n\t          path.node.body = [buildTemplate({\n\t            SYSTEM_REGISTER: t.memberExpression(t.identifier(state.opts.systemGlobal || \"System\"), t.identifier(\"register\")),\n\t            BEFORE_BODY: beforeBody,\n\t            MODULE_NAME: moduleName,\n\t            SETTERS: setters,\n\t            SOURCES: sources,\n\t            BODY: path.node.body,\n\t            EXPORT_IDENTIFIER: exportIdent,\n\t            CONTEXT_IDENTIFIER: contextIdent\n\t          })];\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperHoistVariables = __webpack_require__(190);\n\n\tvar _babelHelperHoistVariables2 = _interopRequireDefault(_babelHelperHoistVariables);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildTemplate = (0, _babelTemplate2.default)(\"\\n  SYSTEM_REGISTER(MODULE_NAME, [SOURCES], function (EXPORT_IDENTIFIER, CONTEXT_IDENTIFIER) {\\n    \\\"use strict\\\";\\n    BEFORE_BODY;\\n    return {\\n      setters: [SETTERS],\\n      execute: function () {\\n        BODY;\\n      }\\n    };\\n  });\\n\");\n\n\tvar buildExportAll = (0, _babelTemplate2.default)(\"\\n  for (var KEY in TARGET) {\\n    if (KEY !== \\\"default\\\" && KEY !== \\\"__esModule\\\") EXPORT_OBJ[KEY] = TARGET[KEY];\\n  }\\n\");\n\n\tvar TYPE_IMPORT = \"Import\";\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 209 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function isValidDefine(path) {\n\t    if (!path.isExpressionStatement()) return;\n\n\t    var expr = path.get(\"expression\");\n\t    if (!expr.isCallExpression()) return false;\n\t    if (!expr.get(\"callee\").isIdentifier({ name: \"define\" })) return false;\n\n\t    var args = expr.get(\"arguments\");\n\t    if (args.length === 3 && !args.shift().isStringLiteral()) return false;\n\t    if (args.length !== 2) return false;\n\t    if (!args.shift().isArrayExpression()) return false;\n\t    if (!args.shift().isFunctionExpression()) return false;\n\n\t    return true;\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(131),\n\n\t    visitor: {\n\t      Program: {\n\t        exit: function exit(path, state) {\n\t          var last = path.get(\"body\").pop();\n\t          if (!isValidDefine(last)) return;\n\n\t          var call = last.node.expression;\n\t          var args = call.arguments;\n\n\t          var moduleName = args.length === 3 ? args.shift() : null;\n\t          var amdArgs = call.arguments[0];\n\t          var func = call.arguments[1];\n\t          var browserGlobals = state.opts.globals || {};\n\n\t          var commonArgs = amdArgs.elements.map(function (arg) {\n\t            if (arg.value === \"module\" || arg.value === \"exports\") {\n\t              return t.identifier(arg.value);\n\t            } else {\n\t              return t.callExpression(t.identifier(\"require\"), [arg]);\n\t            }\n\t          });\n\n\t          var browserArgs = amdArgs.elements.map(function (arg) {\n\t            if (arg.value === \"module\") {\n\t              return t.identifier(\"mod\");\n\t            } else if (arg.value === \"exports\") {\n\t              return t.memberExpression(t.identifier(\"mod\"), t.identifier(\"exports\"));\n\t            } else {\n\t              var memberExpression = void 0;\n\n\t              if (state.opts.exactGlobals) {\n\t                var globalRef = browserGlobals[arg.value];\n\t                if (globalRef) {\n\t                  memberExpression = globalRef.split(\".\").reduce(function (accum, curr) {\n\t                    return t.memberExpression(accum, t.identifier(curr));\n\t                  }, t.identifier(\"global\"));\n\t                } else {\n\t                  memberExpression = t.memberExpression(t.identifier(\"global\"), t.identifier(t.toIdentifier(arg.value)));\n\t                }\n\t              } else {\n\t                var requireName = (0, _path.basename)(arg.value, (0, _path.extname)(arg.value));\n\t                var globalName = browserGlobals[requireName] || requireName;\n\t                memberExpression = t.memberExpression(t.identifier(\"global\"), t.identifier(t.toIdentifier(globalName)));\n\t              }\n\n\t              return memberExpression;\n\t            }\n\t          });\n\n\t          var moduleNameOrBasename = moduleName ? moduleName.value : this.file.opts.basename;\n\t          var globalToAssign = t.memberExpression(t.identifier(\"global\"), t.identifier(t.toIdentifier(moduleNameOrBasename)));\n\t          var prerequisiteAssignments = null;\n\n\t          if (state.opts.exactGlobals) {\n\t            var globalName = browserGlobals[moduleNameOrBasename];\n\n\t            if (globalName) {\n\t              prerequisiteAssignments = [];\n\n\t              var members = globalName.split(\".\");\n\t              globalToAssign = members.slice(1).reduce(function (accum, curr) {\n\t                prerequisiteAssignments.push(buildPrerequisiteAssignment({ GLOBAL_REFERENCE: accum }));\n\t                return t.memberExpression(accum, t.identifier(curr));\n\t              }, t.memberExpression(t.identifier(\"global\"), t.identifier(members[0])));\n\t            }\n\t          }\n\n\t          var globalExport = buildGlobalExport({\n\t            BROWSER_ARGUMENTS: browserArgs,\n\t            PREREQUISITE_ASSIGNMENTS: prerequisiteAssignments,\n\t            GLOBAL_TO_ASSIGN: globalToAssign\n\t          });\n\n\t          last.replaceWith(buildWrapper({\n\t            MODULE_NAME: moduleName,\n\t            AMD_ARGUMENTS: amdArgs,\n\t            COMMON_ARGUMENTS: commonArgs,\n\t            GLOBAL_EXPORT: globalExport,\n\t            FUNC: func\n\t          }));\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildPrerequisiteAssignment = (0, _babelTemplate2.default)(\"\\n  GLOBAL_REFERENCE = GLOBAL_REFERENCE || {}\\n\");\n\n\tvar buildGlobalExport = (0, _babelTemplate2.default)(\"\\n  var mod = { exports: {} };\\n  factory(BROWSER_ARGUMENTS);\\n  PREREQUISITE_ASSIGNMENTS\\n  GLOBAL_TO_ASSIGN = mod.exports;\\n\");\n\n\tvar buildWrapper = (0, _babelTemplate2.default)(\"\\n  (function (global, factory) {\\n    if (typeof define === \\\"function\\\" && define.amd) {\\n      define(MODULE_NAME, AMD_ARGUMENTS, factory);\\n    } else if (typeof exports !== \\\"undefined\\\") {\\n      factory(COMMON_ARGUMENTS);\\n    } else {\\n      GLOBAL_EXPORT\\n    }\\n  })(this, FUNC);\\n\");\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 210 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function build(node, nodes, scope) {\n\t    var first = node.specifiers[0];\n\t    if (!t.isExportNamespaceSpecifier(first) && !t.isExportDefaultSpecifier(first)) return;\n\n\t    var specifier = node.specifiers.shift();\n\t    var uid = scope.generateUidIdentifier(specifier.exported.name);\n\n\t    var newSpecifier = void 0;\n\t    if (t.isExportNamespaceSpecifier(specifier)) {\n\t      newSpecifier = t.importNamespaceSpecifier(uid);\n\t    } else {\n\t      newSpecifier = t.importDefaultSpecifier(uid);\n\t    }\n\n\t    nodes.push(t.importDeclaration([newSpecifier], node.source));\n\t    nodes.push(t.exportNamedDeclaration(null, [t.exportSpecifier(uid, specifier.exported)]));\n\n\t    build(node, nodes, scope);\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(200),\n\n\t    visitor: {\n\t      ExportNamedDeclaration: function ExportNamedDeclaration(path) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var nodes = [];\n\t        build(node, nodes, scope);\n\t        if (!nodes.length) return;\n\n\t        if (node.specifiers.length >= 1) {\n\t          nodes.push(node);\n\t        }\n\t        path.replaceWithMultiple(nodes);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 211 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var FLOW_DIRECTIVE = \"@flow\";\n\n\t  return {\n\t    inherits: __webpack_require__(126),\n\n\t    visitor: {\n\t      Program: function Program(path, _ref2) {\n\t        var comments = _ref2.file.ast.comments;\n\n\t        for (var _iterator = comments, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref3;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref3 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref3 = _i.value;\n\t          }\n\n\t          var comment = _ref3;\n\n\t          if (comment.value.indexOf(FLOW_DIRECTIVE) >= 0) {\n\t            comment.value = comment.value.replace(FLOW_DIRECTIVE, \"\");\n\n\t            if (!comment.value.replace(/\\*/g, \"\").trim()) comment.ignore = true;\n\t          }\n\t        }\n\t      },\n\t      Flow: function Flow(path) {\n\t        path.remove();\n\t      },\n\t      ClassProperty: function ClassProperty(path) {\n\t        path.node.variance = null;\n\t        path.node.typeAnnotation = null;\n\t        if (!path.node.value) path.remove();\n\t      },\n\t      Class: function Class(path) {\n\t        path.node.implements = null;\n\n\t        path.get(\"body.body\").forEach(function (child) {\n\t          if (child.isClassProperty()) {\n\t            child.node.typeAnnotation = null;\n\t            if (!child.node.value) child.remove();\n\t          }\n\t        });\n\t      },\n\t      AssignmentPattern: function AssignmentPattern(_ref4) {\n\t        var node = _ref4.node;\n\n\t        node.left.optional = false;\n\t      },\n\t      Function: function Function(_ref5) {\n\t        var node = _ref5.node;\n\n\t        for (var i = 0; i < node.params.length; i++) {\n\t          var param = node.params[i];\n\t          param.optional = false;\n\t        }\n\t      },\n\t      TypeCastExpression: function TypeCastExpression(path) {\n\t        var node = path.node;\n\n\t        do {\n\t          node = node.expression;\n\t        } while (t.isTypeCastExpression(node));\n\t        path.replaceWith(node);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 212 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function getTempId(scope) {\n\t    var id = scope.path.getData(\"functionBind\");\n\t    if (id) return id;\n\n\t    id = scope.generateDeclaredUidIdentifier(\"context\");\n\t    return scope.path.setData(\"functionBind\", id);\n\t  }\n\n\t  function getStaticContext(bind, scope) {\n\t    var object = bind.object || bind.callee.object;\n\t    return scope.isStatic(object) && object;\n\t  }\n\n\t  function inferBindContext(bind, scope) {\n\t    var staticContext = getStaticContext(bind, scope);\n\t    if (staticContext) return staticContext;\n\n\t    var tempId = getTempId(scope);\n\t    if (bind.object) {\n\t      bind.callee = t.sequenceExpression([t.assignmentExpression(\"=\", tempId, bind.object), bind.callee]);\n\t    } else {\n\t      bind.callee.object = t.assignmentExpression(\"=\", tempId, bind.callee.object);\n\t    }\n\t    return tempId;\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(201),\n\n\t    visitor: {\n\t      CallExpression: function CallExpression(_ref2) {\n\t        var node = _ref2.node,\n\t            scope = _ref2.scope;\n\n\t        var bind = node.callee;\n\t        if (!t.isBindExpression(bind)) return;\n\n\t        var context = inferBindContext(bind, scope);\n\t        node.callee = t.memberExpression(bind.callee, t.identifier(\"call\"));\n\t        node.arguments.unshift(context);\n\t      },\n\t      BindExpression: function BindExpression(path) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var context = inferBindContext(node, scope);\n\t        path.replaceWith(t.callExpression(t.memberExpression(node.callee, t.identifier(\"bind\")), [context]));\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 213 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function hasRestProperty(path) {\n\t    var foundRestProperty = false;\n\t    path.traverse({\n\t      RestProperty: function RestProperty() {\n\t        foundRestProperty = true;\n\t        path.stop();\n\t      }\n\t    });\n\t    return foundRestProperty;\n\t  }\n\n\t  function hasSpread(node) {\n\t    for (var _iterator = node.properties, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref2;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref2 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref2 = _i.value;\n\t      }\n\n\t      var prop = _ref2;\n\n\t      if (t.isSpreadProperty(prop)) {\n\t        return true;\n\t      }\n\t    }\n\t    return false;\n\t  }\n\n\t  function createObjectSpread(file, props, objRef) {\n\t    var restProperty = props.pop();\n\n\t    var keys = [];\n\t    for (var _iterator2 = props, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref3;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref3 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref3 = _i2.value;\n\t      }\n\n\t      var prop = _ref3;\n\n\t      var key = prop.key;\n\t      if (t.isIdentifier(key) && !prop.computed) {\n\t        key = t.stringLiteral(prop.key.name);\n\t      }\n\t      keys.push(key);\n\t    }\n\n\t    return [restProperty.argument, t.callExpression(file.addHelper(\"objectWithoutProperties\"), [objRef, t.arrayExpression(keys)])];\n\t  }\n\n\t  function replaceRestProperty(parentPath, paramPath, i, numParams) {\n\t    if (paramPath.isAssignmentPattern()) {\n\t      replaceRestProperty(parentPath, paramPath.get(\"left\"), i, numParams);\n\t      return;\n\t    }\n\n\t    if (paramPath.isObjectPattern() && hasRestProperty(paramPath)) {\n\t      var uid = parentPath.scope.generateUidIdentifier(\"ref\");\n\n\t      var declar = t.variableDeclaration(\"let\", [t.variableDeclarator(paramPath.node, uid)]);\n\t      declar._blockHoist = i ? numParams - i : 1;\n\n\t      parentPath.ensureBlock();\n\t      parentPath.get(\"body\").unshiftContainer(\"body\", declar);\n\t      paramPath.replaceWith(uid);\n\t    }\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(202),\n\n\t    visitor: {\n\t      Function: function Function(path) {\n\t        var params = path.get(\"params\");\n\t        for (var i = 0; i < params.length; i++) {\n\t          replaceRestProperty(params[i].parentPath, params[i], i, params.length);\n\t        }\n\t      },\n\t      VariableDeclarator: function VariableDeclarator(path, file) {\n\t        if (!path.get(\"id\").isObjectPattern()) {\n\t          return;\n\t        }\n\n\t        var insertionPath = path;\n\n\t        path.get(\"id\").traverse({\n\t          RestProperty: function RestProperty(path) {\n\t            if (this.originalPath.node.id.properties.length > 1 && !t.isIdentifier(this.originalPath.node.init)) {\n\t              var initRef = path.scope.generateUidIdentifierBasedOnNode(this.originalPath.node.init, \"ref\");\n\n\t              this.originalPath.insertBefore(t.variableDeclarator(initRef, this.originalPath.node.init));\n\n\t              this.originalPath.replaceWith(t.variableDeclarator(this.originalPath.node.id, initRef));\n\n\t              return;\n\t            }\n\n\t            var ref = this.originalPath.node.init;\n\t            var refPropertyPath = [];\n\n\t            path.findParent(function (path) {\n\t              if (path.isObjectProperty()) {\n\t                refPropertyPath.unshift(path.node.key.name);\n\t              } else if (path.isVariableDeclarator()) {\n\t                return true;\n\t              }\n\t            });\n\n\t            if (refPropertyPath.length) {\n\t              refPropertyPath.forEach(function (prop) {\n\t                ref = t.memberExpression(ref, t.identifier(prop));\n\t              });\n\t            }\n\n\t            var _createObjectSpread = createObjectSpread(file, path.parentPath.node.properties, ref),\n\t                argument = _createObjectSpread[0],\n\t                callExpression = _createObjectSpread[1];\n\n\t            insertionPath.insertAfter(t.variableDeclarator(argument, callExpression));\n\n\t            insertionPath = insertionPath.getSibling(insertionPath.key + 1);\n\n\t            if (path.parentPath.node.properties.length === 0) {\n\t              path.findParent(function (path) {\n\t                return path.isObjectProperty() || path.isVariableDeclarator();\n\t              }).remove();\n\t            }\n\t          }\n\t        }, {\n\t          originalPath: path\n\t        });\n\t      },\n\t      ExportNamedDeclaration: function ExportNamedDeclaration(path) {\n\t        var declaration = path.get(\"declaration\");\n\t        if (!declaration.isVariableDeclaration()) return;\n\t        if (!hasRestProperty(declaration)) return;\n\n\t        var specifiers = [];\n\n\t        for (var name in path.getOuterBindingIdentifiers(path)) {\n\t          var id = t.identifier(name);\n\t          specifiers.push(t.exportSpecifier(id, id));\n\t        }\n\n\t        path.replaceWith(declaration.node);\n\t        path.insertAfter(t.exportNamedDeclaration(null, specifiers));\n\t      },\n\t      CatchClause: function CatchClause(path) {\n\t        var paramPath = path.get(\"param\");\n\t        replaceRestProperty(paramPath.parentPath, paramPath);\n\t      },\n\t      AssignmentExpression: function AssignmentExpression(path, file) {\n\t        var leftPath = path.get(\"left\");\n\t        if (leftPath.isObjectPattern() && hasRestProperty(leftPath)) {\n\t          var nodes = [];\n\n\t          var ref = void 0;\n\t          if (path.isCompletionRecord() || path.parentPath.isExpressionStatement()) {\n\t            ref = path.scope.generateUidIdentifierBasedOnNode(path.node.right, \"ref\");\n\n\t            nodes.push(t.variableDeclaration(\"var\", [t.variableDeclarator(ref, path.node.right)]));\n\t          }\n\n\t          var _createObjectSpread2 = createObjectSpread(file, path.node.left.properties, ref),\n\t              argument = _createObjectSpread2[0],\n\t              callExpression = _createObjectSpread2[1];\n\n\t          var nodeWithoutSpread = t.clone(path.node);\n\t          nodeWithoutSpread.right = ref;\n\t          nodes.push(t.expressionStatement(nodeWithoutSpread));\n\t          nodes.push(t.toStatement(t.assignmentExpression(\"=\", argument, callExpression)));\n\n\t          if (ref) {\n\t            nodes.push(t.expressionStatement(ref));\n\t          }\n\n\t          path.replaceWithMultiple(nodes);\n\t        }\n\t      },\n\t      ForXStatement: function ForXStatement(path) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var leftPath = path.get(\"left\");\n\t        var left = node.left;\n\n\t        if (t.isObjectPattern(left) && hasRestProperty(leftPath)) {\n\t          var temp = scope.generateUidIdentifier(\"ref\");\n\n\t          node.left = t.variableDeclaration(\"var\", [t.variableDeclarator(temp)]);\n\n\t          path.ensureBlock();\n\n\t          node.body.body.unshift(t.variableDeclaration(\"var\", [t.variableDeclarator(left, temp)]));\n\n\t          return;\n\t        }\n\n\t        if (!t.isVariableDeclaration(left)) return;\n\n\t        var pattern = left.declarations[0].id;\n\t        if (!t.isObjectPattern(pattern)) return;\n\n\t        var key = scope.generateUidIdentifier(\"ref\");\n\t        node.left = t.variableDeclaration(left.kind, [t.variableDeclarator(key, null)]);\n\n\t        path.ensureBlock();\n\n\t        node.body.body.unshift(t.variableDeclaration(node.left.kind, [t.variableDeclarator(pattern, key)]));\n\t      },\n\t      ObjectExpression: function ObjectExpression(path, file) {\n\t        if (!hasSpread(path.node)) return;\n\n\t        var useBuiltIns = file.opts.useBuiltIns || false;\n\t        if (typeof useBuiltIns !== \"boolean\") {\n\t          throw new Error(\"transform-object-rest-spread currently only accepts a boolean \" + \"option for useBuiltIns (defaults to false)\");\n\t        }\n\n\t        var args = [];\n\t        var props = [];\n\n\t        function push() {\n\t          if (!props.length) return;\n\t          args.push(t.objectExpression(props));\n\t          props = [];\n\t        }\n\n\t        for (var _iterator3 = path.node.properties, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t          var _ref4;\n\n\t          if (_isArray3) {\n\t            if (_i3 >= _iterator3.length) break;\n\t            _ref4 = _iterator3[_i3++];\n\t          } else {\n\t            _i3 = _iterator3.next();\n\t            if (_i3.done) break;\n\t            _ref4 = _i3.value;\n\t          }\n\n\t          var prop = _ref4;\n\n\t          if (t.isSpreadProperty(prop)) {\n\t            push();\n\t            args.push(prop.argument);\n\t          } else {\n\t            props.push(prop);\n\t          }\n\t        }\n\n\t        push();\n\n\t        if (!t.isObjectExpression(args[0])) {\n\t          args.unshift(t.objectExpression([]));\n\t        }\n\n\t        var helper = useBuiltIns ? t.memberExpression(t.identifier(\"Object\"), t.identifier(\"assign\")) : file.addHelper(\"extends\");\n\n\t        path.replaceWith(t.callExpression(helper, args));\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 214 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function addDisplayName(id, call) {\n\t    var props = call.arguments[0].properties;\n\t    var safe = true;\n\n\t    for (var i = 0; i < props.length; i++) {\n\t      var prop = props[i];\n\t      var key = t.toComputedKey(prop);\n\t      if (t.isLiteral(key, { value: \"displayName\" })) {\n\t        safe = false;\n\t        break;\n\t      }\n\t    }\n\n\t    if (safe) {\n\t      props.unshift(t.objectProperty(t.identifier(\"displayName\"), t.stringLiteral(id)));\n\t    }\n\t  }\n\n\t  var isCreateClassCallExpression = t.buildMatchMemberExpression(\"React.createClass\");\n\t  var isCreateClassAddon = function isCreateClassAddon(callee) {\n\t    return callee.name === \"createReactClass\";\n\t  };\n\n\t  function isCreateClass(node) {\n\t    if (!node || !t.isCallExpression(node)) return false;\n\n\t    if (!isCreateClassCallExpression(node.callee) && !isCreateClassAddon(node.callee)) return false;\n\n\t    var args = node.arguments;\n\t    if (args.length !== 1) return false;\n\n\t    var first = args[0];\n\t    if (!t.isObjectExpression(first)) return false;\n\n\t    return true;\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      ExportDefaultDeclaration: function ExportDefaultDeclaration(_ref2, state) {\n\t        var node = _ref2.node;\n\n\t        if (isCreateClass(node.declaration)) {\n\t          var displayName = state.file.opts.basename;\n\n\t          if (displayName === \"index\") {\n\t            displayName = _path2.default.basename(_path2.default.dirname(state.file.opts.filename));\n\t          }\n\n\t          addDisplayName(displayName, node.declaration);\n\t        }\n\t      },\n\t      CallExpression: function CallExpression(path) {\n\t        var node = path.node;\n\n\t        if (!isCreateClass(node)) return;\n\n\t        var id = void 0;\n\n\t        path.find(function (path) {\n\t          if (path.isAssignmentExpression()) {\n\t            id = path.node.left;\n\t          } else if (path.isObjectProperty()) {\n\t            id = path.node.key;\n\t          } else if (path.isVariableDeclarator()) {\n\t            id = path.node.id;\n\t          } else if (path.isStatement()) {\n\t            return true;\n\t          }\n\n\t          if (id) return true;\n\t        });\n\n\t        if (!id) return;\n\n\t        if (t.isMemberExpression(id)) {\n\t          id = id.property;\n\t        }\n\n\t        if (t.isIdentifier(id)) {\n\t          addDisplayName(id.name, node);\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _path = __webpack_require__(19);\n\n\tvar _path2 = _interopRequireDefault(_path);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 215 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var JSX_ANNOTATION_REGEX = /\\*?\\s*@jsx\\s+([^\\s]+)/;\n\n\t  var visitor = (0, _babelHelperBuilderReactJsx2.default)({\n\t    pre: function pre(state) {\n\t      var tagName = state.tagName;\n\t      var args = state.args;\n\t      if (t.react.isCompatTag(tagName)) {\n\t        args.push(t.stringLiteral(tagName));\n\t      } else {\n\t        args.push(state.tagExpr);\n\t      }\n\t    },\n\t    post: function post(state, pass) {\n\t      state.callee = pass.get(\"jsxIdentifier\")();\n\t    }\n\t  });\n\n\t  visitor.Program = function (path, state) {\n\t    var file = state.file;\n\n\t    var id = state.opts.pragma || \"React.createElement\";\n\n\t    for (var _iterator = file.ast.comments, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref2;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref2 = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref2 = _i.value;\n\t      }\n\n\t      var comment = _ref2;\n\n\t      var matches = JSX_ANNOTATION_REGEX.exec(comment.value);\n\t      if (matches) {\n\t        id = matches[1];\n\t        if (id === \"React.DOM\") {\n\t          throw file.buildCodeFrameError(comment, \"The @jsx React.DOM pragma has been deprecated as of React 0.12\");\n\t        } else {\n\t          break;\n\t        }\n\t      }\n\t    }\n\n\t    state.set(\"jsxIdentifier\", function () {\n\t      return id.split(\".\").map(function (name) {\n\t        return t.identifier(name);\n\t      }).reduce(function (object, property) {\n\t        return t.memberExpression(object, property);\n\t      });\n\t    });\n\t  };\n\n\t  return {\n\t    inherits: _babelPluginSyntaxJsx2.default,\n\t    visitor: visitor\n\t  };\n\t};\n\n\tvar _babelPluginSyntaxJsx = __webpack_require__(127);\n\n\tvar _babelPluginSyntaxJsx2 = _interopRequireDefault(_babelPluginSyntaxJsx);\n\n\tvar _babelHelperBuilderReactJsx = __webpack_require__(351);\n\n\tvar _babelHelperBuilderReactJsx2 = _interopRequireDefault(_babelHelperBuilderReactJsx);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 216 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      Program: function Program(path, state) {\n\t        if (state.opts.strict === false || state.opts.strictMode === false) return;\n\n\t        var node = path.node;\n\n\t        for (var _iterator = node.directives, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref = _i.value;\n\t          }\n\n\t          var directive = _ref;\n\n\t          if (directive.value.value === \"use strict\") return;\n\t        }\n\n\t        path.unshiftContainer(\"directives\", t.directive(t.directiveLiteral(\"use strict\")));\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 217 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPluginTransformEs2015TemplateLiterals = __webpack_require__(83);\n\n\tvar _babelPluginTransformEs2015TemplateLiterals2 = _interopRequireDefault(_babelPluginTransformEs2015TemplateLiterals);\n\n\tvar _babelPluginTransformEs2015Literals = __webpack_require__(76);\n\n\tvar _babelPluginTransformEs2015Literals2 = _interopRequireDefault(_babelPluginTransformEs2015Literals);\n\n\tvar _babelPluginTransformEs2015FunctionName = __webpack_require__(75);\n\n\tvar _babelPluginTransformEs2015FunctionName2 = _interopRequireDefault(_babelPluginTransformEs2015FunctionName);\n\n\tvar _babelPluginTransformEs2015ArrowFunctions = __webpack_require__(68);\n\n\tvar _babelPluginTransformEs2015ArrowFunctions2 = _interopRequireDefault(_babelPluginTransformEs2015ArrowFunctions);\n\n\tvar _babelPluginTransformEs2015BlockScopedFunctions = __webpack_require__(69);\n\n\tvar _babelPluginTransformEs2015BlockScopedFunctions2 = _interopRequireDefault(_babelPluginTransformEs2015BlockScopedFunctions);\n\n\tvar _babelPluginTransformEs2015Classes = __webpack_require__(71);\n\n\tvar _babelPluginTransformEs2015Classes2 = _interopRequireDefault(_babelPluginTransformEs2015Classes);\n\n\tvar _babelPluginTransformEs2015ObjectSuper = __webpack_require__(78);\n\n\tvar _babelPluginTransformEs2015ObjectSuper2 = _interopRequireDefault(_babelPluginTransformEs2015ObjectSuper);\n\n\tvar _babelPluginTransformEs2015ShorthandProperties = __webpack_require__(80);\n\n\tvar _babelPluginTransformEs2015ShorthandProperties2 = _interopRequireDefault(_babelPluginTransformEs2015ShorthandProperties);\n\n\tvar _babelPluginTransformEs2015DuplicateKeys = __webpack_require__(130);\n\n\tvar _babelPluginTransformEs2015DuplicateKeys2 = _interopRequireDefault(_babelPluginTransformEs2015DuplicateKeys);\n\n\tvar _babelPluginTransformEs2015ComputedProperties = __webpack_require__(72);\n\n\tvar _babelPluginTransformEs2015ComputedProperties2 = _interopRequireDefault(_babelPluginTransformEs2015ComputedProperties);\n\n\tvar _babelPluginTransformEs2015ForOf = __webpack_require__(74);\n\n\tvar _babelPluginTransformEs2015ForOf2 = _interopRequireDefault(_babelPluginTransformEs2015ForOf);\n\n\tvar _babelPluginTransformEs2015StickyRegex = __webpack_require__(82);\n\n\tvar _babelPluginTransformEs2015StickyRegex2 = _interopRequireDefault(_babelPluginTransformEs2015StickyRegex);\n\n\tvar _babelPluginTransformEs2015UnicodeRegex = __webpack_require__(85);\n\n\tvar _babelPluginTransformEs2015UnicodeRegex2 = _interopRequireDefault(_babelPluginTransformEs2015UnicodeRegex);\n\n\tvar _babelPluginCheckEs2015Constants = __webpack_require__(66);\n\n\tvar _babelPluginCheckEs2015Constants2 = _interopRequireDefault(_babelPluginCheckEs2015Constants);\n\n\tvar _babelPluginTransformEs2015Spread = __webpack_require__(81);\n\n\tvar _babelPluginTransformEs2015Spread2 = _interopRequireDefault(_babelPluginTransformEs2015Spread);\n\n\tvar _babelPluginTransformEs2015Parameters = __webpack_require__(79);\n\n\tvar _babelPluginTransformEs2015Parameters2 = _interopRequireDefault(_babelPluginTransformEs2015Parameters);\n\n\tvar _babelPluginTransformEs2015Destructuring = __webpack_require__(73);\n\n\tvar _babelPluginTransformEs2015Destructuring2 = _interopRequireDefault(_babelPluginTransformEs2015Destructuring);\n\n\tvar _babelPluginTransformEs2015BlockScoping = __webpack_require__(70);\n\n\tvar _babelPluginTransformEs2015BlockScoping2 = _interopRequireDefault(_babelPluginTransformEs2015BlockScoping);\n\n\tvar _babelPluginTransformEs2015TypeofSymbol = __webpack_require__(84);\n\n\tvar _babelPluginTransformEs2015TypeofSymbol2 = _interopRequireDefault(_babelPluginTransformEs2015TypeofSymbol);\n\n\tvar _babelPluginTransformEs2015ModulesCommonjs = __webpack_require__(77);\n\n\tvar _babelPluginTransformEs2015ModulesCommonjs2 = _interopRequireDefault(_babelPluginTransformEs2015ModulesCommonjs);\n\n\tvar _babelPluginTransformEs2015ModulesSystemjs = __webpack_require__(208);\n\n\tvar _babelPluginTransformEs2015ModulesSystemjs2 = _interopRequireDefault(_babelPluginTransformEs2015ModulesSystemjs);\n\n\tvar _babelPluginTransformEs2015ModulesAmd = __webpack_require__(131);\n\n\tvar _babelPluginTransformEs2015ModulesAmd2 = _interopRequireDefault(_babelPluginTransformEs2015ModulesAmd);\n\n\tvar _babelPluginTransformEs2015ModulesUmd = __webpack_require__(209);\n\n\tvar _babelPluginTransformEs2015ModulesUmd2 = _interopRequireDefault(_babelPluginTransformEs2015ModulesUmd);\n\n\tvar _babelPluginTransformRegenerator = __webpack_require__(86);\n\n\tvar _babelPluginTransformRegenerator2 = _interopRequireDefault(_babelPluginTransformRegenerator);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction preset(context) {\n\t  var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t  var moduleTypes = [\"commonjs\", \"amd\", \"umd\", \"systemjs\"];\n\t  var loose = false;\n\t  var modules = \"commonjs\";\n\t  var spec = false;\n\n\t  if (opts !== undefined) {\n\t    if (opts.loose !== undefined) loose = opts.loose;\n\t    if (opts.modules !== undefined) modules = opts.modules;\n\t    if (opts.spec !== undefined) spec = opts.spec;\n\t  }\n\n\t  if (typeof loose !== \"boolean\") throw new Error(\"Preset es2015 'loose' option must be a boolean.\");\n\t  if (typeof spec !== \"boolean\") throw new Error(\"Preset es2015 'spec' option must be a boolean.\");\n\t  if (modules !== false && moduleTypes.indexOf(modules) === -1) {\n\t    throw new Error(\"Preset es2015 'modules' option must be 'false' to indicate no modules\\n\" + \"or a module type which be be one of: 'commonjs' (default), 'amd', 'umd', 'systemjs'\");\n\t  }\n\n\t  var optsLoose = { loose: loose };\n\n\t  return {\n\t    plugins: [[_babelPluginTransformEs2015TemplateLiterals2.default, { loose: loose, spec: spec }], _babelPluginTransformEs2015Literals2.default, _babelPluginTransformEs2015FunctionName2.default, [_babelPluginTransformEs2015ArrowFunctions2.default, { spec: spec }], _babelPluginTransformEs2015BlockScopedFunctions2.default, [_babelPluginTransformEs2015Classes2.default, optsLoose], _babelPluginTransformEs2015ObjectSuper2.default, _babelPluginTransformEs2015ShorthandProperties2.default, _babelPluginTransformEs2015DuplicateKeys2.default, [_babelPluginTransformEs2015ComputedProperties2.default, optsLoose], [_babelPluginTransformEs2015ForOf2.default, optsLoose], _babelPluginTransformEs2015StickyRegex2.default, _babelPluginTransformEs2015UnicodeRegex2.default, _babelPluginCheckEs2015Constants2.default, [_babelPluginTransformEs2015Spread2.default, optsLoose], _babelPluginTransformEs2015Parameters2.default, [_babelPluginTransformEs2015Destructuring2.default, optsLoose], _babelPluginTransformEs2015BlockScoping2.default, _babelPluginTransformEs2015TypeofSymbol2.default, modules === \"commonjs\" && [_babelPluginTransformEs2015ModulesCommonjs2.default, optsLoose], modules === \"systemjs\" && [_babelPluginTransformEs2015ModulesSystemjs2.default, optsLoose], modules === \"amd\" && [_babelPluginTransformEs2015ModulesAmd2.default, optsLoose], modules === \"umd\" && [_babelPluginTransformEs2015ModulesUmd2.default, optsLoose], [_babelPluginTransformRegenerator2.default, { async: false, asyncGenerators: false }]].filter(Boolean) };\n\t}\n\n\tvar oldConfig = preset({});\n\n\texports.default = oldConfig;\n\n\tObject.defineProperty(oldConfig, \"buildPreset\", {\n\t  configurable: true,\n\t  writable: true,\n\n\t  enumerable: false,\n\t  value: preset\n\t});\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 218 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPluginTransformExponentiationOperator = __webpack_require__(132);\n\n\tvar _babelPluginTransformExponentiationOperator2 = _interopRequireDefault(_babelPluginTransformExponentiationOperator);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  plugins: [_babelPluginTransformExponentiationOperator2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 219 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPluginSyntaxTrailingFunctionCommas = __webpack_require__(128);\n\n\tvar _babelPluginSyntaxTrailingFunctionCommas2 = _interopRequireDefault(_babelPluginSyntaxTrailingFunctionCommas);\n\n\tvar _babelPluginTransformAsyncToGenerator = __webpack_require__(129);\n\n\tvar _babelPluginTransformAsyncToGenerator2 = _interopRequireDefault(_babelPluginTransformAsyncToGenerator);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  plugins: [_babelPluginSyntaxTrailingFunctionCommas2.default, _babelPluginTransformAsyncToGenerator2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 220 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPresetStage = __webpack_require__(221);\n\n\tvar _babelPresetStage2 = _interopRequireDefault(_babelPresetStage);\n\n\tvar _babelPluginTransformClassConstructorCall = __webpack_require__(203);\n\n\tvar _babelPluginTransformClassConstructorCall2 = _interopRequireDefault(_babelPluginTransformClassConstructorCall);\n\n\tvar _babelPluginTransformExportExtensions = __webpack_require__(210);\n\n\tvar _babelPluginTransformExportExtensions2 = _interopRequireDefault(_babelPluginTransformExportExtensions);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  presets: [_babelPresetStage2.default],\n\t  plugins: [_babelPluginTransformClassConstructorCall2.default, _babelPluginTransformExportExtensions2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 221 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPresetStage = __webpack_require__(222);\n\n\tvar _babelPresetStage2 = _interopRequireDefault(_babelPresetStage);\n\n\tvar _babelPluginTransformClassProperties = __webpack_require__(204);\n\n\tvar _babelPluginTransformClassProperties2 = _interopRequireDefault(_babelPluginTransformClassProperties);\n\n\tvar _babelPluginTransformDecorators = __webpack_require__(205);\n\n\tvar _babelPluginTransformDecorators2 = _interopRequireDefault(_babelPluginTransformDecorators);\n\n\tvar _babelPluginSyntaxDynamicImport = __webpack_require__(324);\n\n\tvar _babelPluginSyntaxDynamicImport2 = _interopRequireDefault(_babelPluginSyntaxDynamicImport);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  presets: [_babelPresetStage2.default],\n\t  plugins: [_babelPluginSyntaxDynamicImport2.default, _babelPluginTransformClassProperties2.default, _babelPluginTransformDecorators2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 222 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPluginSyntaxTrailingFunctionCommas = __webpack_require__(128);\n\n\tvar _babelPluginSyntaxTrailingFunctionCommas2 = _interopRequireDefault(_babelPluginSyntaxTrailingFunctionCommas);\n\n\tvar _babelPluginTransformAsyncToGenerator = __webpack_require__(129);\n\n\tvar _babelPluginTransformAsyncToGenerator2 = _interopRequireDefault(_babelPluginTransformAsyncToGenerator);\n\n\tvar _babelPluginTransformExponentiationOperator = __webpack_require__(132);\n\n\tvar _babelPluginTransformExponentiationOperator2 = _interopRequireDefault(_babelPluginTransformExponentiationOperator);\n\n\tvar _babelPluginTransformObjectRestSpread = __webpack_require__(213);\n\n\tvar _babelPluginTransformObjectRestSpread2 = _interopRequireDefault(_babelPluginTransformObjectRestSpread);\n\n\tvar _babelPluginTransformAsyncGeneratorFunctions = __webpack_require__(327);\n\n\tvar _babelPluginTransformAsyncGeneratorFunctions2 = _interopRequireDefault(_babelPluginTransformAsyncGeneratorFunctions);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  plugins: [_babelPluginSyntaxTrailingFunctionCommas2.default, _babelPluginTransformAsyncToGenerator2.default, _babelPluginTransformExponentiationOperator2.default, _babelPluginTransformAsyncGeneratorFunctions2.default, _babelPluginTransformObjectRestSpread2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 223 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar Hub = function Hub(file, options) {\n\t  (0, _classCallCheck3.default)(this, Hub);\n\n\t  this.file = file;\n\t  this.options = options;\n\t};\n\n\texports.default = Hub;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 224 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.Flow = exports.Pure = exports.Generated = exports.User = exports.Var = exports.BlockScoped = exports.Referenced = exports.Scope = exports.Expression = exports.Statement = exports.BindingIdentifier = exports.ReferencedMemberExpression = exports.ReferencedIdentifier = undefined;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tvar ReferencedIdentifier = exports.ReferencedIdentifier = {\n\t  types: [\"Identifier\", \"JSXIdentifier\"],\n\t  checkPath: function checkPath(_ref, opts) {\n\t    var node = _ref.node,\n\t        parent = _ref.parent;\n\n\t    if (!t.isIdentifier(node, opts) && !t.isJSXMemberExpression(parent, opts)) {\n\t      if (t.isJSXIdentifier(node, opts)) {\n\t        if (_babelTypes.react.isCompatTag(node.name)) return false;\n\t      } else {\n\t        return false;\n\t      }\n\t    }\n\n\t    return t.isReferenced(node, parent);\n\t  }\n\t};\n\n\tvar ReferencedMemberExpression = exports.ReferencedMemberExpression = {\n\t  types: [\"MemberExpression\"],\n\t  checkPath: function checkPath(_ref2) {\n\t    var node = _ref2.node,\n\t        parent = _ref2.parent;\n\n\t    return t.isMemberExpression(node) && t.isReferenced(node, parent);\n\t  }\n\t};\n\n\tvar BindingIdentifier = exports.BindingIdentifier = {\n\t  types: [\"Identifier\"],\n\t  checkPath: function checkPath(_ref3) {\n\t    var node = _ref3.node,\n\t        parent = _ref3.parent;\n\n\t    return t.isIdentifier(node) && t.isBinding(node, parent);\n\t  }\n\t};\n\n\tvar Statement = exports.Statement = {\n\t  types: [\"Statement\"],\n\t  checkPath: function checkPath(_ref4) {\n\t    var node = _ref4.node,\n\t        parent = _ref4.parent;\n\n\t    if (t.isStatement(node)) {\n\t      if (t.isVariableDeclaration(node)) {\n\t        if (t.isForXStatement(parent, { left: node })) return false;\n\t        if (t.isForStatement(parent, { init: node })) return false;\n\t      }\n\n\t      return true;\n\t    } else {\n\t      return false;\n\t    }\n\t  }\n\t};\n\n\tvar Expression = exports.Expression = {\n\t  types: [\"Expression\"],\n\t  checkPath: function checkPath(path) {\n\t    if (path.isIdentifier()) {\n\t      return path.isReferencedIdentifier();\n\t    } else {\n\t      return t.isExpression(path.node);\n\t    }\n\t  }\n\t};\n\n\tvar Scope = exports.Scope = {\n\t  types: [\"Scopable\"],\n\t  checkPath: function checkPath(path) {\n\t    return t.isScope(path.node, path.parent);\n\t  }\n\t};\n\n\tvar Referenced = exports.Referenced = {\n\t  checkPath: function checkPath(path) {\n\t    return t.isReferenced(path.node, path.parent);\n\t  }\n\t};\n\n\tvar BlockScoped = exports.BlockScoped = {\n\t  checkPath: function checkPath(path) {\n\t    return t.isBlockScoped(path.node);\n\t  }\n\t};\n\n\tvar Var = exports.Var = {\n\t  types: [\"VariableDeclaration\"],\n\t  checkPath: function checkPath(path) {\n\t    return t.isVar(path.node);\n\t  }\n\t};\n\n\tvar User = exports.User = {\n\t  checkPath: function checkPath(path) {\n\t    return path.node && !!path.node.loc;\n\t  }\n\t};\n\n\tvar Generated = exports.Generated = {\n\t  checkPath: function checkPath(path) {\n\t    return !path.isUser();\n\t  }\n\t};\n\n\tvar Pure = exports.Pure = {\n\t  checkPath: function checkPath(path, opts) {\n\t    return path.scope.isPure(path.node, opts);\n\t  }\n\t};\n\n\tvar Flow = exports.Flow = {\n\t  types: [\"Flow\", \"ImportDeclaration\", \"ExportDeclaration\", \"ImportSpecifier\"],\n\t  checkPath: function checkPath(_ref5) {\n\t    var node = _ref5.node;\n\n\t    if (t.isFlow(node)) {\n\t      return true;\n\t    } else if (t.isImportDeclaration(node)) {\n\t      return node.importKind === \"type\" || node.importKind === \"typeof\";\n\t    } else if (t.isExportDeclaration(node)) {\n\t      return node.exportKind === \"type\";\n\t    } else if (t.isImportSpecifier(node)) {\n\t      return node.importKind === \"type\" || node.importKind === \"typeof\";\n\t    } else {\n\t      return false;\n\t    }\n\t  }\n\t};\n\n/***/ }),\n/* 225 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar Binding = function () {\n\t  function Binding(_ref) {\n\t    var existing = _ref.existing,\n\t        identifier = _ref.identifier,\n\t        scope = _ref.scope,\n\t        path = _ref.path,\n\t        kind = _ref.kind;\n\t    (0, _classCallCheck3.default)(this, Binding);\n\n\t    this.identifier = identifier;\n\t    this.scope = scope;\n\t    this.path = path;\n\t    this.kind = kind;\n\n\t    this.constantViolations = [];\n\t    this.constant = true;\n\n\t    this.referencePaths = [];\n\t    this.referenced = false;\n\t    this.references = 0;\n\n\t    this.clearValue();\n\n\t    if (existing) {\n\t      this.constantViolations = [].concat(existing.path, existing.constantViolations, this.constantViolations);\n\t    }\n\t  }\n\n\t  Binding.prototype.deoptValue = function deoptValue() {\n\t    this.clearValue();\n\t    this.hasDeoptedValue = true;\n\t  };\n\n\t  Binding.prototype.setValue = function setValue(value) {\n\t    if (this.hasDeoptedValue) return;\n\t    this.hasValue = true;\n\t    this.value = value;\n\t  };\n\n\t  Binding.prototype.clearValue = function clearValue() {\n\t    this.hasDeoptedValue = false;\n\t    this.hasValue = false;\n\t    this.value = null;\n\t  };\n\n\t  Binding.prototype.reassign = function reassign(path) {\n\t    this.constant = false;\n\t    if (this.constantViolations.indexOf(path) !== -1) {\n\t      return;\n\t    }\n\t    this.constantViolations.push(path);\n\t  };\n\n\t  Binding.prototype.reference = function reference(path) {\n\t    if (this.referencePaths.indexOf(path) !== -1) {\n\t      return;\n\t    }\n\t    this.referenced = true;\n\t    this.references++;\n\t    this.referencePaths.push(path);\n\t  };\n\n\t  Binding.prototype.dereference = function dereference() {\n\t    this.references--;\n\t    this.referenced = !!this.references;\n\t  };\n\n\t  return Binding;\n\t}();\n\n\texports.default = Binding;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 226 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\texports.getBindingIdentifiers = getBindingIdentifiers;\n\texports.getOuterBindingIdentifiers = getOuterBindingIdentifiers;\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction getBindingIdentifiers(node, duplicates, outerOnly) {\n\t  var search = [].concat(node);\n\t  var ids = (0, _create2.default)(null);\n\n\t  while (search.length) {\n\t    var id = search.shift();\n\t    if (!id) continue;\n\n\t    var keys = t.getBindingIdentifiers.keys[id.type];\n\n\t    if (t.isIdentifier(id)) {\n\t      if (duplicates) {\n\t        var _ids = ids[id.name] = ids[id.name] || [];\n\t        _ids.push(id);\n\t      } else {\n\t        ids[id.name] = id;\n\t      }\n\t      continue;\n\t    }\n\n\t    if (t.isExportDeclaration(id)) {\n\t      if (t.isDeclaration(id.declaration)) {\n\t        search.push(id.declaration);\n\t      }\n\t      continue;\n\t    }\n\n\t    if (outerOnly) {\n\t      if (t.isFunctionDeclaration(id)) {\n\t        search.push(id.id);\n\t        continue;\n\t      }\n\n\t      if (t.isFunctionExpression(id)) {\n\t        continue;\n\t      }\n\t    }\n\n\t    if (keys) {\n\t      for (var i = 0; i < keys.length; i++) {\n\t        var key = keys[i];\n\t        if (id[key]) {\n\t          search = search.concat(id[key]);\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  return ids;\n\t}\n\n\tgetBindingIdentifiers.keys = {\n\t  DeclareClass: [\"id\"],\n\t  DeclareFunction: [\"id\"],\n\t  DeclareModule: [\"id\"],\n\t  DeclareVariable: [\"id\"],\n\t  InterfaceDeclaration: [\"id\"],\n\t  TypeAlias: [\"id\"],\n\t  OpaqueType: [\"id\"],\n\n\t  CatchClause: [\"param\"],\n\t  LabeledStatement: [\"label\"],\n\t  UnaryExpression: [\"argument\"],\n\t  AssignmentExpression: [\"left\"],\n\n\t  ImportSpecifier: [\"local\"],\n\t  ImportNamespaceSpecifier: [\"local\"],\n\t  ImportDefaultSpecifier: [\"local\"],\n\t  ImportDeclaration: [\"specifiers\"],\n\n\t  ExportSpecifier: [\"exported\"],\n\t  ExportNamespaceSpecifier: [\"exported\"],\n\t  ExportDefaultSpecifier: [\"exported\"],\n\n\t  FunctionDeclaration: [\"id\", \"params\"],\n\t  FunctionExpression: [\"id\", \"params\"],\n\n\t  ClassDeclaration: [\"id\"],\n\t  ClassExpression: [\"id\"],\n\n\t  RestElement: [\"argument\"],\n\t  UpdateExpression: [\"argument\"],\n\n\t  RestProperty: [\"argument\"],\n\t  ObjectProperty: [\"value\"],\n\n\t  AssignmentPattern: [\"left\"],\n\t  ArrayPattern: [\"elements\"],\n\t  ObjectPattern: [\"properties\"],\n\n\t  VariableDeclaration: [\"declarations\"],\n\t  VariableDeclarator: [\"id\"]\n\t};\n\n\tfunction getOuterBindingIdentifiers(node, duplicates) {\n\t  return getBindingIdentifiers(node, duplicates, true);\n\t}\n\n/***/ }),\n/* 227 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function (it) {\n\t  if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n\t  return it;\n\t};\n\n/***/ }),\n/* 228 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// getting tag from 19.1.3.6 Object.prototype.toString()\n\tvar cof = __webpack_require__(138);\n\tvar TAG = __webpack_require__(13)('toStringTag');\n\t// ES3 wrong here\n\tvar ARG = cof(function () {\n\t  return arguments;\n\t}()) == 'Arguments';\n\n\t// fallback for IE11 Script Access Denied error\n\tvar tryGet = function tryGet(it, key) {\n\t  try {\n\t    return it[key];\n\t  } catch (e) {/* empty */}\n\t};\n\n\tmodule.exports = function (it) {\n\t  var O, T, B;\n\t  return it === undefined ? 'Undefined' : it === null ? 'Null'\n\t  // @@toStringTag case\n\t  : typeof (T = tryGet(O = Object(it), TAG)) == 'string' ? T\n\t  // builtinTag case\n\t  : ARG ? cof(O)\n\t  // ES3 arguments fallback\n\t  : (B = cof(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : B;\n\t};\n\n/***/ }),\n/* 229 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar redefineAll = __webpack_require__(146);\n\tvar getWeak = __webpack_require__(57).getWeak;\n\tvar anObject = __webpack_require__(21);\n\tvar isObject = __webpack_require__(16);\n\tvar anInstance = __webpack_require__(136);\n\tvar forOf = __webpack_require__(55);\n\tvar createArrayMethod = __webpack_require__(137);\n\tvar $has = __webpack_require__(28);\n\tvar validate = __webpack_require__(58);\n\tvar arrayFind = createArrayMethod(5);\n\tvar arrayFindIndex = createArrayMethod(6);\n\tvar id = 0;\n\n\t// fallback for uncaught frozen keys\n\tvar uncaughtFrozenStore = function uncaughtFrozenStore(that) {\n\t  return that._l || (that._l = new UncaughtFrozenStore());\n\t};\n\tvar UncaughtFrozenStore = function UncaughtFrozenStore() {\n\t  this.a = [];\n\t};\n\tvar findUncaughtFrozen = function findUncaughtFrozen(store, key) {\n\t  return arrayFind(store.a, function (it) {\n\t    return it[0] === key;\n\t  });\n\t};\n\tUncaughtFrozenStore.prototype = {\n\t  get: function get(key) {\n\t    var entry = findUncaughtFrozen(this, key);\n\t    if (entry) return entry[1];\n\t  },\n\t  has: function has(key) {\n\t    return !!findUncaughtFrozen(this, key);\n\t  },\n\t  set: function set(key, value) {\n\t    var entry = findUncaughtFrozen(this, key);\n\t    if (entry) entry[1] = value;else this.a.push([key, value]);\n\t  },\n\t  'delete': function _delete(key) {\n\t    var index = arrayFindIndex(this.a, function (it) {\n\t      return it[0] === key;\n\t    });\n\t    if (~index) this.a.splice(index, 1);\n\t    return !!~index;\n\t  }\n\t};\n\n\tmodule.exports = {\n\t  getConstructor: function getConstructor(wrapper, NAME, IS_MAP, ADDER) {\n\t    var C = wrapper(function (that, iterable) {\n\t      anInstance(that, C, NAME, '_i');\n\t      that._t = NAME; // collection type\n\t      that._i = id++; // collection id\n\t      that._l = undefined; // leak store for uncaught frozen objects\n\t      if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n\t    });\n\t    redefineAll(C.prototype, {\n\t      // 23.3.3.2 WeakMap.prototype.delete(key)\n\t      // 23.4.3.3 WeakSet.prototype.delete(value)\n\t      'delete': function _delete(key) {\n\t        if (!isObject(key)) return false;\n\t        var data = getWeak(key);\n\t        if (data === true) return uncaughtFrozenStore(validate(this, NAME))['delete'](key);\n\t        return data && $has(data, this._i) && delete data[this._i];\n\t      },\n\t      // 23.3.3.4 WeakMap.prototype.has(key)\n\t      // 23.4.3.4 WeakSet.prototype.has(value)\n\t      has: function has(key) {\n\t        if (!isObject(key)) return false;\n\t        var data = getWeak(key);\n\t        if (data === true) return uncaughtFrozenStore(validate(this, NAME)).has(key);\n\t        return data && $has(data, this._i);\n\t      }\n\t    });\n\t    return C;\n\t  },\n\t  def: function def(that, key, value) {\n\t    var data = getWeak(anObject(key), true);\n\t    if (data === true) uncaughtFrozenStore(that).set(key, value);else data[that._i] = value;\n\t    return that;\n\t  },\n\t  ufstore: uncaughtFrozenStore\n\t};\n\n/***/ }),\n/* 230 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(16);\n\tvar document = __webpack_require__(15).document;\n\t// typeof document.createElement is 'object' in old IE\n\tvar is = isObject(document) && isObject(document.createElement);\n\tmodule.exports = function (it) {\n\t  return is ? document.createElement(it) : {};\n\t};\n\n/***/ }),\n/* 231 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tmodule.exports = !__webpack_require__(22) && !__webpack_require__(27)(function () {\n\t  return Object.defineProperty(__webpack_require__(230)('div'), 'a', { get: function get() {\n\t      return 7;\n\t    } }).a != 7;\n\t});\n\n/***/ }),\n/* 232 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 7.2.2 IsArray(argument)\n\tvar cof = __webpack_require__(138);\n\tmodule.exports = Array.isArray || function isArray(arg) {\n\t  return cof(arg) == 'Array';\n\t};\n\n/***/ }),\n/* 233 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = function (done, value) {\n\t  return { value: value, done: !!done };\n\t};\n\n/***/ }),\n/* 234 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t// 19.1.2.1 Object.assign(target, source, ...)\n\n\tvar getKeys = __webpack_require__(44);\n\tvar gOPS = __webpack_require__(145);\n\tvar pIE = __webpack_require__(91);\n\tvar toObject = __webpack_require__(94);\n\tvar IObject = __webpack_require__(142);\n\tvar $assign = Object.assign;\n\n\t// should work with symbols and should have deterministic property order (V8 bug)\n\tmodule.exports = !$assign || __webpack_require__(27)(function () {\n\t  var A = {};\n\t  var B = {};\n\t  // eslint-disable-next-line no-undef\n\t  var S = Symbol();\n\t  var K = 'abcdefghijklmnopqrst';\n\t  A[S] = 7;\n\t  K.split('').forEach(function (k) {\n\t    B[k] = k;\n\t  });\n\t  return $assign({}, A)[S] != 7 || Object.keys($assign({}, B)).join('') != K;\n\t}) ? function assign(target, source) {\n\t  // eslint-disable-line no-unused-vars\n\t  var T = toObject(target);\n\t  var aLen = arguments.length;\n\t  var index = 1;\n\t  var getSymbols = gOPS.f;\n\t  var isEnum = pIE.f;\n\t  while (aLen > index) {\n\t    var S = IObject(arguments[index++]);\n\t    var keys = getSymbols ? getKeys(S).concat(getSymbols(S)) : getKeys(S);\n\t    var length = keys.length;\n\t    var j = 0;\n\t    var key;\n\t    while (length > j) {\n\t      if (isEnum.call(S, key = keys[j++])) T[key] = S[key];\n\t    }\n\t  }return T;\n\t} : $assign;\n\n/***/ }),\n/* 235 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar pIE = __webpack_require__(91);\n\tvar createDesc = __webpack_require__(92);\n\tvar toIObject = __webpack_require__(37);\n\tvar toPrimitive = __webpack_require__(154);\n\tvar has = __webpack_require__(28);\n\tvar IE8_DOM_DEFINE = __webpack_require__(231);\n\tvar gOPD = Object.getOwnPropertyDescriptor;\n\n\texports.f = __webpack_require__(22) ? gOPD : function getOwnPropertyDescriptor(O, P) {\n\t  O = toIObject(O);\n\t  P = toPrimitive(P, true);\n\t  if (IE8_DOM_DEFINE) try {\n\t    return gOPD(O, P);\n\t  } catch (e) {/* empty */}\n\t  if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n\t};\n\n/***/ }),\n/* 236 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\n\tvar $keys = __webpack_require__(237);\n\tvar hiddenKeys = __webpack_require__(141).concat('length', 'prototype');\n\n\texports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n\t  return $keys(O, hiddenKeys);\n\t};\n\n/***/ }),\n/* 237 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar has = __webpack_require__(28);\n\tvar toIObject = __webpack_require__(37);\n\tvar arrayIndexOf = __webpack_require__(420)(false);\n\tvar IE_PROTO = __webpack_require__(150)('IE_PROTO');\n\n\tmodule.exports = function (object, names) {\n\t  var O = toIObject(object);\n\t  var i = 0;\n\t  var result = [];\n\t  var key;\n\t  for (key in O) {\n\t    if (key != IE_PROTO) has(O, key) && result.push(key);\n\t  } // Don't enum bug & hidden keys\n\t  while (names.length > i) {\n\t    if (has(O, key = names[i++])) {\n\t      ~arrayIndexOf(result, key) || result.push(key);\n\t    }\n\t  }return result;\n\t};\n\n/***/ }),\n/* 238 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar classof = __webpack_require__(228);\n\tvar ITERATOR = __webpack_require__(13)('iterator');\n\tvar Iterators = __webpack_require__(56);\n\tmodule.exports = __webpack_require__(5).getIteratorMethod = function (it) {\n\t  if (it != undefined) return it[ITERATOR] || it['@@iterator'] || Iterators[classof(it)];\n\t};\n\n/***/ }),\n/* 239 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/**\n\t * This is the web browser implementation of `debug()`.\n\t *\n\t * Expose `debug()` as the module.\n\t */\n\n\texports = module.exports = __webpack_require__(458);\n\texports.log = log;\n\texports.formatArgs = formatArgs;\n\texports.save = save;\n\texports.load = load;\n\texports.useColors = useColors;\n\texports.storage = 'undefined' != typeof chrome && 'undefined' != typeof chrome.storage ? chrome.storage.local : localstorage();\n\n\t/**\n\t * Colors.\n\t */\n\n\texports.colors = ['lightseagreen', 'forestgreen', 'goldenrod', 'dodgerblue', 'darkorchid', 'crimson'];\n\n\t/**\n\t * Currently only WebKit-based Web Inspectors, Firefox >= v31,\n\t * and the Firebug extension (any Firefox version) are known\n\t * to support \"%c\" CSS customizations.\n\t *\n\t * TODO: add a `localStorage` variable to explicitly enable/disable colors\n\t */\n\n\tfunction useColors() {\n\t  // NB: In an Electron preload script, document will be defined but not fully\n\t  // initialized. Since we know we're in Chrome, we'll just detect this case\n\t  // explicitly\n\t  if (typeof window !== 'undefined' && window.process && window.process.type === 'renderer') {\n\t    return true;\n\t  }\n\n\t  // is webkit? http://stackoverflow.com/a/16459606/376773\n\t  // document is undefined in react-native: https://github.com/facebook/react-native/pull/1632\n\t  return typeof document !== 'undefined' && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance ||\n\t  // is firebug? http://stackoverflow.com/a/398120/376773\n\t  typeof window !== 'undefined' && window.console && (window.console.firebug || window.console.exception && window.console.table) ||\n\t  // is firefox >= v31?\n\t  // https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages\n\t  typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\\/(\\d+)/) && parseInt(RegExp.$1, 10) >= 31 ||\n\t  // double check webkit in userAgent just in case we are in a worker\n\t  typeof navigator !== 'undefined' && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\\/(\\d+)/);\n\t}\n\n\t/**\n\t * Map %j to `JSON.stringify()`, since no Web Inspectors do that by default.\n\t */\n\n\texports.formatters.j = function (v) {\n\t  try {\n\t    return JSON.stringify(v);\n\t  } catch (err) {\n\t    return '[UnexpectedJSONParseError]: ' + err.message;\n\t  }\n\t};\n\n\t/**\n\t * Colorize log arguments if enabled.\n\t *\n\t * @api public\n\t */\n\n\tfunction formatArgs(args) {\n\t  var useColors = this.useColors;\n\n\t  args[0] = (useColors ? '%c' : '') + this.namespace + (useColors ? ' %c' : ' ') + args[0] + (useColors ? '%c ' : ' ') + '+' + exports.humanize(this.diff);\n\n\t  if (!useColors) return;\n\n\t  var c = 'color: ' + this.color;\n\t  args.splice(1, 0, c, 'color: inherit');\n\n\t  // the final \"%c\" is somewhat tricky, because there could be other\n\t  // arguments passed either before or after the %c, so we need to\n\t  // figure out the correct index to insert the CSS into\n\t  var index = 0;\n\t  var lastC = 0;\n\t  args[0].replace(/%[a-zA-Z%]/g, function (match) {\n\t    if ('%%' === match) return;\n\t    index++;\n\t    if ('%c' === match) {\n\t      // we only are interested in the *last* %c\n\t      // (the user may have provided their own)\n\t      lastC = index;\n\t    }\n\t  });\n\n\t  args.splice(lastC, 0, c);\n\t}\n\n\t/**\n\t * Invokes `console.log()` when available.\n\t * No-op when `console.log` is not a \"function\".\n\t *\n\t * @api public\n\t */\n\n\tfunction log() {\n\t  // this hackery is required for IE8/9, where\n\t  // the `console.log` function doesn't have 'apply'\n\t  return 'object' === (typeof console === 'undefined' ? 'undefined' : _typeof(console)) && console.log && Function.prototype.apply.call(console.log, console, arguments);\n\t}\n\n\t/**\n\t * Save `namespaces`.\n\t *\n\t * @param {String} namespaces\n\t * @api private\n\t */\n\n\tfunction save(namespaces) {\n\t  try {\n\t    if (null == namespaces) {\n\t      exports.storage.removeItem('debug');\n\t    } else {\n\t      exports.storage.debug = namespaces;\n\t    }\n\t  } catch (e) {}\n\t}\n\n\t/**\n\t * Load `namespaces`.\n\t *\n\t * @return {String} returns the previously persisted debug modes\n\t * @api private\n\t */\n\n\tfunction load() {\n\t  var r;\n\t  try {\n\t    r = exports.storage.debug;\n\t  } catch (e) {}\n\n\t  // If debug isn't set in LS, and we're in Electron, try to load $DEBUG\n\t  if (!r && typeof process !== 'undefined' && 'env' in process) {\n\t    r = process.env.DEBUG;\n\t  }\n\n\t  return r;\n\t}\n\n\t/**\n\t * Enable namespaces listed in `localStorage.debug` initially.\n\t */\n\n\texports.enable(load());\n\n\t/**\n\t * Localstorage attempts to return the localstorage.\n\t *\n\t * This is necessary because safari throws\n\t * when a user disables cookies/localstorage\n\t * and you attempt to access it.\n\t *\n\t * @return {LocalStorage}\n\t * @api private\n\t */\n\n\tfunction localstorage() {\n\t  try {\n\t    return window.localStorage;\n\t  } catch (e) {}\n\t}\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 240 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/*\n\t  Copyright (C) 2013-2014 Yusuke Suzuki <utatane.tea@gmail.com>\n\t  Copyright (C) 2014 Ivan Nikulin <ifaaan@gmail.com>\n\n\t  Redistribution and use in source and binary forms, with or without\n\t  modification, are permitted provided that the following conditions are met:\n\n\t    * Redistributions of source code must retain the above copyright\n\t      notice, this list of conditions and the following disclaimer.\n\t    * Redistributions in binary form must reproduce the above copyright\n\t      notice, this list of conditions and the following disclaimer in the\n\t      documentation and/or other materials provided with the distribution.\n\n\t  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n\t  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\t  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\t  ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\n\t  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n\t  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n\t  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n\t  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n\t  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t*/\n\n\t(function () {\n\t    'use strict';\n\n\t    var ES6Regex, ES5Regex, NON_ASCII_WHITESPACES, IDENTIFIER_START, IDENTIFIER_PART, ch;\n\n\t    // See `tools/generate-identifier-regex.js`.\n\t    ES5Regex = {\n\t        // ECMAScript 5.1/Unicode v7.0.0 NonAsciiIdentifierStart:\n\t        NonAsciiIdentifierStart: /[\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0-\\u08B2\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA69D\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uA9E0-\\uA9E4\\uA9E6-\\uA9EF\\uA9FA-\\uA9FE\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA7E-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]/,\n\t        // ECMAScript 5.1/Unicode v7.0.0 NonAsciiIdentifierPart:\n\t        NonAsciiIdentifierPart: /[\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0300-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u0483-\\u0487\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0610-\\u061A\\u0620-\\u0669\\u066E-\\u06D3\\u06D5-\\u06DC\\u06DF-\\u06E8\\u06EA-\\u06FC\\u06FF\\u0710-\\u074A\\u074D-\\u07B1\\u07C0-\\u07F5\\u07FA\\u0800-\\u082D\\u0840-\\u085B\\u08A0-\\u08B2\\u08E4-\\u0963\\u0966-\\u096F\\u0971-\\u0983\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BC-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CE\\u09D7\\u09DC\\u09DD\\u09DF-\\u09E3\\u09E6-\\u09F1\\u0A01-\\u0A03\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A59-\\u0A5C\\u0A5E\\u0A66-\\u0A75\\u0A81-\\u0A83\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABC-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AD0\\u0AE0-\\u0AE3\\u0AE6-\\u0AEF\\u0B01-\\u0B03\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3C-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B5C\\u0B5D\\u0B5F-\\u0B63\\u0B66-\\u0B6F\\u0B71\\u0B82\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD0\\u0BD7\\u0BE6-\\u0BEF\\u0C00-\\u0C03\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C58\\u0C59\\u0C60-\\u0C63\\u0C66-\\u0C6F\\u0C81-\\u0C83\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBC-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CDE\\u0CE0-\\u0CE3\\u0CE6-\\u0CEF\\u0CF1\\u0CF2\\u0D01-\\u0D03\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4E\\u0D57\\u0D60-\\u0D63\\u0D66-\\u0D6F\\u0D7A-\\u0D7F\\u0D82\\u0D83\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DE6-\\u0DEF\\u0DF2\\u0DF3\\u0E01-\\u0E3A\\u0E40-\\u0E4E\\u0E50-\\u0E59\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB9\\u0EBB-\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EC8-\\u0ECD\\u0ED0-\\u0ED9\\u0EDC-\\u0EDF\\u0F00\\u0F18\\u0F19\\u0F20-\\u0F29\\u0F35\\u0F37\\u0F39\\u0F3E-\\u0F47\\u0F49-\\u0F6C\\u0F71-\\u0F84\\u0F86-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u1000-\\u1049\\u1050-\\u109D\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u135D-\\u135F\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1714\\u1720-\\u1734\\u1740-\\u1753\\u1760-\\u176C\\u176E-\\u1770\\u1772\\u1773\\u1780-\\u17D3\\u17D7\\u17DC\\u17DD\\u17E0-\\u17E9\\u180B-\\u180D\\u1810-\\u1819\\u1820-\\u1877\\u1880-\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1920-\\u192B\\u1930-\\u193B\\u1946-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19B0-\\u19C9\\u19D0-\\u19D9\\u1A00-\\u1A1B\\u1A20-\\u1A5E\\u1A60-\\u1A7C\\u1A7F-\\u1A89\\u1A90-\\u1A99\\u1AA7\\u1AB0-\\u1ABD\\u1B00-\\u1B4B\\u1B50-\\u1B59\\u1B6B-\\u1B73\\u1B80-\\u1BF3\\u1C00-\\u1C37\\u1C40-\\u1C49\\u1C4D-\\u1C7D\\u1CD0-\\u1CD2\\u1CD4-\\u1CF6\\u1CF8\\u1CF9\\u1D00-\\u1DF5\\u1DFC-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u200C\\u200D\\u203F\\u2040\\u2054\\u2071\\u207F\\u2090-\\u209C\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D7F-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2DE0-\\u2DFF\\u2E2F\\u3005-\\u3007\\u3021-\\u302F\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u3099\\u309A\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA62B\\uA640-\\uA66F\\uA674-\\uA67D\\uA67F-\\uA69D\\uA69F-\\uA6F1\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA827\\uA840-\\uA873\\uA880-\\uA8C4\\uA8D0-\\uA8D9\\uA8E0-\\uA8F7\\uA8FB\\uA900-\\uA92D\\uA930-\\uA953\\uA960-\\uA97C\\uA980-\\uA9C0\\uA9CF-\\uA9D9\\uA9E0-\\uA9FE\\uAA00-\\uAA36\\uAA40-\\uAA4D\\uAA50-\\uAA59\\uAA60-\\uAA76\\uAA7A-\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEF\\uAAF2-\\uAAF6\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABEA\\uABEC\\uABED\\uABF0-\\uABF9\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE00-\\uFE0F\\uFE20-\\uFE2D\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF10-\\uFF19\\uFF21-\\uFF3A\\uFF3F\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]/\n\t    };\n\n\t    ES6Regex = {\n\t        // ECMAScript 6/Unicode v7.0.0 NonAsciiIdentifierStart:\n\t        NonAsciiIdentifierStart: /[\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0-\\u08B2\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2118-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309B-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA69D\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uA9E0-\\uA9E4\\uA9E6-\\uA9EF\\uA9FA-\\uA9FE\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA7E-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]|\\uD800[\\uDC00-\\uDC0B\\uDC0D-\\uDC26\\uDC28-\\uDC3A\\uDC3C\\uDC3D\\uDC3F-\\uDC4D\\uDC50-\\uDC5D\\uDC80-\\uDCFA\\uDD40-\\uDD74\\uDE80-\\uDE9C\\uDEA0-\\uDED0\\uDF00-\\uDF1F\\uDF30-\\uDF4A\\uDF50-\\uDF75\\uDF80-\\uDF9D\\uDFA0-\\uDFC3\\uDFC8-\\uDFCF\\uDFD1-\\uDFD5]|\\uD801[\\uDC00-\\uDC9D\\uDD00-\\uDD27\\uDD30-\\uDD63\\uDE00-\\uDF36\\uDF40-\\uDF55\\uDF60-\\uDF67]|\\uD802[\\uDC00-\\uDC05\\uDC08\\uDC0A-\\uDC35\\uDC37\\uDC38\\uDC3C\\uDC3F-\\uDC55\\uDC60-\\uDC76\\uDC80-\\uDC9E\\uDD00-\\uDD15\\uDD20-\\uDD39\\uDD80-\\uDDB7\\uDDBE\\uDDBF\\uDE00\\uDE10-\\uDE13\\uDE15-\\uDE17\\uDE19-\\uDE33\\uDE60-\\uDE7C\\uDE80-\\uDE9C\\uDEC0-\\uDEC7\\uDEC9-\\uDEE4\\uDF00-\\uDF35\\uDF40-\\uDF55\\uDF60-\\uDF72\\uDF80-\\uDF91]|\\uD803[\\uDC00-\\uDC48]|\\uD804[\\uDC03-\\uDC37\\uDC83-\\uDCAF\\uDCD0-\\uDCE8\\uDD03-\\uDD26\\uDD50-\\uDD72\\uDD76\\uDD83-\\uDDB2\\uDDC1-\\uDDC4\\uDDDA\\uDE00-\\uDE11\\uDE13-\\uDE2B\\uDEB0-\\uDEDE\\uDF05-\\uDF0C\\uDF0F\\uDF10\\uDF13-\\uDF28\\uDF2A-\\uDF30\\uDF32\\uDF33\\uDF35-\\uDF39\\uDF3D\\uDF5D-\\uDF61]|\\uD805[\\uDC80-\\uDCAF\\uDCC4\\uDCC5\\uDCC7\\uDD80-\\uDDAE\\uDE00-\\uDE2F\\uDE44\\uDE80-\\uDEAA]|\\uD806[\\uDCA0-\\uDCDF\\uDCFF\\uDEC0-\\uDEF8]|\\uD808[\\uDC00-\\uDF98]|\\uD809[\\uDC00-\\uDC6E]|[\\uD80C\\uD840-\\uD868\\uD86A-\\uD86C][\\uDC00-\\uDFFF]|\\uD80D[\\uDC00-\\uDC2E]|\\uD81A[\\uDC00-\\uDE38\\uDE40-\\uDE5E\\uDED0-\\uDEED\\uDF00-\\uDF2F\\uDF40-\\uDF43\\uDF63-\\uDF77\\uDF7D-\\uDF8F]|\\uD81B[\\uDF00-\\uDF44\\uDF50\\uDF93-\\uDF9F]|\\uD82C[\\uDC00\\uDC01]|\\uD82F[\\uDC00-\\uDC6A\\uDC70-\\uDC7C\\uDC80-\\uDC88\\uDC90-\\uDC99]|\\uD835[\\uDC00-\\uDC54\\uDC56-\\uDC9C\\uDC9E\\uDC9F\\uDCA2\\uDCA5\\uDCA6\\uDCA9-\\uDCAC\\uDCAE-\\uDCB9\\uDCBB\\uDCBD-\\uDCC3\\uDCC5-\\uDD05\\uDD07-\\uDD0A\\uDD0D-\\uDD14\\uDD16-\\uDD1C\\uDD1E-\\uDD39\\uDD3B-\\uDD3E\\uDD40-\\uDD44\\uDD46\\uDD4A-\\uDD50\\uDD52-\\uDEA5\\uDEA8-\\uDEC0\\uDEC2-\\uDEDA\\uDEDC-\\uDEFA\\uDEFC-\\uDF14\\uDF16-\\uDF34\\uDF36-\\uDF4E\\uDF50-\\uDF6E\\uDF70-\\uDF88\\uDF8A-\\uDFA8\\uDFAA-\\uDFC2\\uDFC4-\\uDFCB]|\\uD83A[\\uDC00-\\uDCC4]|\\uD83B[\\uDE00-\\uDE03\\uDE05-\\uDE1F\\uDE21\\uDE22\\uDE24\\uDE27\\uDE29-\\uDE32\\uDE34-\\uDE37\\uDE39\\uDE3B\\uDE42\\uDE47\\uDE49\\uDE4B\\uDE4D-\\uDE4F\\uDE51\\uDE52\\uDE54\\uDE57\\uDE59\\uDE5B\\uDE5D\\uDE5F\\uDE61\\uDE62\\uDE64\\uDE67-\\uDE6A\\uDE6C-\\uDE72\\uDE74-\\uDE77\\uDE79-\\uDE7C\\uDE7E\\uDE80-\\uDE89\\uDE8B-\\uDE9B\\uDEA1-\\uDEA3\\uDEA5-\\uDEA9\\uDEAB-\\uDEBB]|\\uD869[\\uDC00-\\uDED6\\uDF00-\\uDFFF]|\\uD86D[\\uDC00-\\uDF34\\uDF40-\\uDFFF]|\\uD86E[\\uDC00-\\uDC1D]|\\uD87E[\\uDC00-\\uDE1D]/,\n\t        // ECMAScript 6/Unicode v7.0.0 NonAsciiIdentifierPart:\n\t        NonAsciiIdentifierPart: /[\\xAA\\xB5\\xB7\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0300-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u0483-\\u0487\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0610-\\u061A\\u0620-\\u0669\\u066E-\\u06D3\\u06D5-\\u06DC\\u06DF-\\u06E8\\u06EA-\\u06FC\\u06FF\\u0710-\\u074A\\u074D-\\u07B1\\u07C0-\\u07F5\\u07FA\\u0800-\\u082D\\u0840-\\u085B\\u08A0-\\u08B2\\u08E4-\\u0963\\u0966-\\u096F\\u0971-\\u0983\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BC-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CE\\u09D7\\u09DC\\u09DD\\u09DF-\\u09E3\\u09E6-\\u09F1\\u0A01-\\u0A03\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A59-\\u0A5C\\u0A5E\\u0A66-\\u0A75\\u0A81-\\u0A83\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABC-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AD0\\u0AE0-\\u0AE3\\u0AE6-\\u0AEF\\u0B01-\\u0B03\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3C-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B5C\\u0B5D\\u0B5F-\\u0B63\\u0B66-\\u0B6F\\u0B71\\u0B82\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD0\\u0BD7\\u0BE6-\\u0BEF\\u0C00-\\u0C03\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C58\\u0C59\\u0C60-\\u0C63\\u0C66-\\u0C6F\\u0C81-\\u0C83\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBC-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CDE\\u0CE0-\\u0CE3\\u0CE6-\\u0CEF\\u0CF1\\u0CF2\\u0D01-\\u0D03\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4E\\u0D57\\u0D60-\\u0D63\\u0D66-\\u0D6F\\u0D7A-\\u0D7F\\u0D82\\u0D83\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DE6-\\u0DEF\\u0DF2\\u0DF3\\u0E01-\\u0E3A\\u0E40-\\u0E4E\\u0E50-\\u0E59\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB9\\u0EBB-\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EC8-\\u0ECD\\u0ED0-\\u0ED9\\u0EDC-\\u0EDF\\u0F00\\u0F18\\u0F19\\u0F20-\\u0F29\\u0F35\\u0F37\\u0F39\\u0F3E-\\u0F47\\u0F49-\\u0F6C\\u0F71-\\u0F84\\u0F86-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u1000-\\u1049\\u1050-\\u109D\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u135D-\\u135F\\u1369-\\u1371\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1714\\u1720-\\u1734\\u1740-\\u1753\\u1760-\\u176C\\u176E-\\u1770\\u1772\\u1773\\u1780-\\u17D3\\u17D7\\u17DC\\u17DD\\u17E0-\\u17E9\\u180B-\\u180D\\u1810-\\u1819\\u1820-\\u1877\\u1880-\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1920-\\u192B\\u1930-\\u193B\\u1946-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19B0-\\u19C9\\u19D0-\\u19DA\\u1A00-\\u1A1B\\u1A20-\\u1A5E\\u1A60-\\u1A7C\\u1A7F-\\u1A89\\u1A90-\\u1A99\\u1AA7\\u1AB0-\\u1ABD\\u1B00-\\u1B4B\\u1B50-\\u1B59\\u1B6B-\\u1B73\\u1B80-\\u1BF3\\u1C00-\\u1C37\\u1C40-\\u1C49\\u1C4D-\\u1C7D\\u1CD0-\\u1CD2\\u1CD4-\\u1CF6\\u1CF8\\u1CF9\\u1D00-\\u1DF5\\u1DFC-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u200C\\u200D\\u203F\\u2040\\u2054\\u2071\\u207F\\u2090-\\u209C\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2118-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D7F-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2DE0-\\u2DFF\\u3005-\\u3007\\u3021-\\u302F\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u3099-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA62B\\uA640-\\uA66F\\uA674-\\uA67D\\uA67F-\\uA69D\\uA69F-\\uA6F1\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA827\\uA840-\\uA873\\uA880-\\uA8C4\\uA8D0-\\uA8D9\\uA8E0-\\uA8F7\\uA8FB\\uA900-\\uA92D\\uA930-\\uA953\\uA960-\\uA97C\\uA980-\\uA9C0\\uA9CF-\\uA9D9\\uA9E0-\\uA9FE\\uAA00-\\uAA36\\uAA40-\\uAA4D\\uAA50-\\uAA59\\uAA60-\\uAA76\\uAA7A-\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEF\\uAAF2-\\uAAF6\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABEA\\uABEC\\uABED\\uABF0-\\uABF9\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE00-\\uFE0F\\uFE20-\\uFE2D\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF10-\\uFF19\\uFF21-\\uFF3A\\uFF3F\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]|\\uD800[\\uDC00-\\uDC0B\\uDC0D-\\uDC26\\uDC28-\\uDC3A\\uDC3C\\uDC3D\\uDC3F-\\uDC4D\\uDC50-\\uDC5D\\uDC80-\\uDCFA\\uDD40-\\uDD74\\uDDFD\\uDE80-\\uDE9C\\uDEA0-\\uDED0\\uDEE0\\uDF00-\\uDF1F\\uDF30-\\uDF4A\\uDF50-\\uDF7A\\uDF80-\\uDF9D\\uDFA0-\\uDFC3\\uDFC8-\\uDFCF\\uDFD1-\\uDFD5]|\\uD801[\\uDC00-\\uDC9D\\uDCA0-\\uDCA9\\uDD00-\\uDD27\\uDD30-\\uDD63\\uDE00-\\uDF36\\uDF40-\\uDF55\\uDF60-\\uDF67]|\\uD802[\\uDC00-\\uDC05\\uDC08\\uDC0A-\\uDC35\\uDC37\\uDC38\\uDC3C\\uDC3F-\\uDC55\\uDC60-\\uDC76\\uDC80-\\uDC9E\\uDD00-\\uDD15\\uDD20-\\uDD39\\uDD80-\\uDDB7\\uDDBE\\uDDBF\\uDE00-\\uDE03\\uDE05\\uDE06\\uDE0C-\\uDE13\\uDE15-\\uDE17\\uDE19-\\uDE33\\uDE38-\\uDE3A\\uDE3F\\uDE60-\\uDE7C\\uDE80-\\uDE9C\\uDEC0-\\uDEC7\\uDEC9-\\uDEE6\\uDF00-\\uDF35\\uDF40-\\uDF55\\uDF60-\\uDF72\\uDF80-\\uDF91]|\\uD803[\\uDC00-\\uDC48]|\\uD804[\\uDC00-\\uDC46\\uDC66-\\uDC6F\\uDC7F-\\uDCBA\\uDCD0-\\uDCE8\\uDCF0-\\uDCF9\\uDD00-\\uDD34\\uDD36-\\uDD3F\\uDD50-\\uDD73\\uDD76\\uDD80-\\uDDC4\\uDDD0-\\uDDDA\\uDE00-\\uDE11\\uDE13-\\uDE37\\uDEB0-\\uDEEA\\uDEF0-\\uDEF9\\uDF01-\\uDF03\\uDF05-\\uDF0C\\uDF0F\\uDF10\\uDF13-\\uDF28\\uDF2A-\\uDF30\\uDF32\\uDF33\\uDF35-\\uDF39\\uDF3C-\\uDF44\\uDF47\\uDF48\\uDF4B-\\uDF4D\\uDF57\\uDF5D-\\uDF63\\uDF66-\\uDF6C\\uDF70-\\uDF74]|\\uD805[\\uDC80-\\uDCC5\\uDCC7\\uDCD0-\\uDCD9\\uDD80-\\uDDB5\\uDDB8-\\uDDC0\\uDE00-\\uDE40\\uDE44\\uDE50-\\uDE59\\uDE80-\\uDEB7\\uDEC0-\\uDEC9]|\\uD806[\\uDCA0-\\uDCE9\\uDCFF\\uDEC0-\\uDEF8]|\\uD808[\\uDC00-\\uDF98]|\\uD809[\\uDC00-\\uDC6E]|[\\uD80C\\uD840-\\uD868\\uD86A-\\uD86C][\\uDC00-\\uDFFF]|\\uD80D[\\uDC00-\\uDC2E]|\\uD81A[\\uDC00-\\uDE38\\uDE40-\\uDE5E\\uDE60-\\uDE69\\uDED0-\\uDEED\\uDEF0-\\uDEF4\\uDF00-\\uDF36\\uDF40-\\uDF43\\uDF50-\\uDF59\\uDF63-\\uDF77\\uDF7D-\\uDF8F]|\\uD81B[\\uDF00-\\uDF44\\uDF50-\\uDF7E\\uDF8F-\\uDF9F]|\\uD82C[\\uDC00\\uDC01]|\\uD82F[\\uDC00-\\uDC6A\\uDC70-\\uDC7C\\uDC80-\\uDC88\\uDC90-\\uDC99\\uDC9D\\uDC9E]|\\uD834[\\uDD65-\\uDD69\\uDD6D-\\uDD72\\uDD7B-\\uDD82\\uDD85-\\uDD8B\\uDDAA-\\uDDAD\\uDE42-\\uDE44]|\\uD835[\\uDC00-\\uDC54\\uDC56-\\uDC9C\\uDC9E\\uDC9F\\uDCA2\\uDCA5\\uDCA6\\uDCA9-\\uDCAC\\uDCAE-\\uDCB9\\uDCBB\\uDCBD-\\uDCC3\\uDCC5-\\uDD05\\uDD07-\\uDD0A\\uDD0D-\\uDD14\\uDD16-\\uDD1C\\uDD1E-\\uDD39\\uDD3B-\\uDD3E\\uDD40-\\uDD44\\uDD46\\uDD4A-\\uDD50\\uDD52-\\uDEA5\\uDEA8-\\uDEC0\\uDEC2-\\uDEDA\\uDEDC-\\uDEFA\\uDEFC-\\uDF14\\uDF16-\\uDF34\\uDF36-\\uDF4E\\uDF50-\\uDF6E\\uDF70-\\uDF88\\uDF8A-\\uDFA8\\uDFAA-\\uDFC2\\uDFC4-\\uDFCB\\uDFCE-\\uDFFF]|\\uD83A[\\uDC00-\\uDCC4\\uDCD0-\\uDCD6]|\\uD83B[\\uDE00-\\uDE03\\uDE05-\\uDE1F\\uDE21\\uDE22\\uDE24\\uDE27\\uDE29-\\uDE32\\uDE34-\\uDE37\\uDE39\\uDE3B\\uDE42\\uDE47\\uDE49\\uDE4B\\uDE4D-\\uDE4F\\uDE51\\uDE52\\uDE54\\uDE57\\uDE59\\uDE5B\\uDE5D\\uDE5F\\uDE61\\uDE62\\uDE64\\uDE67-\\uDE6A\\uDE6C-\\uDE72\\uDE74-\\uDE77\\uDE79-\\uDE7C\\uDE7E\\uDE80-\\uDE89\\uDE8B-\\uDE9B\\uDEA1-\\uDEA3\\uDEA5-\\uDEA9\\uDEAB-\\uDEBB]|\\uD869[\\uDC00-\\uDED6\\uDF00-\\uDFFF]|\\uD86D[\\uDC00-\\uDF34\\uDF40-\\uDFFF]|\\uD86E[\\uDC00-\\uDC1D]|\\uD87E[\\uDC00-\\uDE1D]|\\uDB40[\\uDD00-\\uDDEF]/\n\t    };\n\n\t    function isDecimalDigit(ch) {\n\t        return 0x30 <= ch && ch <= 0x39; // 0..9\n\t    }\n\n\t    function isHexDigit(ch) {\n\t        return 0x30 <= ch && ch <= 0x39 || // 0..9\n\t        0x61 <= ch && ch <= 0x66 || // a..f\n\t        0x41 <= ch && ch <= 0x46; // A..F\n\t    }\n\n\t    function isOctalDigit(ch) {\n\t        return ch >= 0x30 && ch <= 0x37; // 0..7\n\t    }\n\n\t    // 7.2 White Space\n\n\t    NON_ASCII_WHITESPACES = [0x1680, 0x180E, 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005, 0x2006, 0x2007, 0x2008, 0x2009, 0x200A, 0x202F, 0x205F, 0x3000, 0xFEFF];\n\n\t    function isWhiteSpace(ch) {\n\t        return ch === 0x20 || ch === 0x09 || ch === 0x0B || ch === 0x0C || ch === 0xA0 || ch >= 0x1680 && NON_ASCII_WHITESPACES.indexOf(ch) >= 0;\n\t    }\n\n\t    // 7.3 Line Terminators\n\n\t    function isLineTerminator(ch) {\n\t        return ch === 0x0A || ch === 0x0D || ch === 0x2028 || ch === 0x2029;\n\t    }\n\n\t    // 7.6 Identifier Names and Identifiers\n\n\t    function fromCodePoint(cp) {\n\t        if (cp <= 0xFFFF) {\n\t            return String.fromCharCode(cp);\n\t        }\n\t        var cu1 = String.fromCharCode(Math.floor((cp - 0x10000) / 0x400) + 0xD800);\n\t        var cu2 = String.fromCharCode((cp - 0x10000) % 0x400 + 0xDC00);\n\t        return cu1 + cu2;\n\t    }\n\n\t    IDENTIFIER_START = new Array(0x80);\n\t    for (ch = 0; ch < 0x80; ++ch) {\n\t        IDENTIFIER_START[ch] = ch >= 0x61 && ch <= 0x7A || // a..z\n\t        ch >= 0x41 && ch <= 0x5A || // A..Z\n\t        ch === 0x24 || ch === 0x5F; // $ (dollar) and _ (underscore)\n\t    }\n\n\t    IDENTIFIER_PART = new Array(0x80);\n\t    for (ch = 0; ch < 0x80; ++ch) {\n\t        IDENTIFIER_PART[ch] = ch >= 0x61 && ch <= 0x7A || // a..z\n\t        ch >= 0x41 && ch <= 0x5A || // A..Z\n\t        ch >= 0x30 && ch <= 0x39 || // 0..9\n\t        ch === 0x24 || ch === 0x5F; // $ (dollar) and _ (underscore)\n\t    }\n\n\t    function isIdentifierStartES5(ch) {\n\t        return ch < 0x80 ? IDENTIFIER_START[ch] : ES5Regex.NonAsciiIdentifierStart.test(fromCodePoint(ch));\n\t    }\n\n\t    function isIdentifierPartES5(ch) {\n\t        return ch < 0x80 ? IDENTIFIER_PART[ch] : ES5Regex.NonAsciiIdentifierPart.test(fromCodePoint(ch));\n\t    }\n\n\t    function isIdentifierStartES6(ch) {\n\t        return ch < 0x80 ? IDENTIFIER_START[ch] : ES6Regex.NonAsciiIdentifierStart.test(fromCodePoint(ch));\n\t    }\n\n\t    function isIdentifierPartES6(ch) {\n\t        return ch < 0x80 ? IDENTIFIER_PART[ch] : ES6Regex.NonAsciiIdentifierPart.test(fromCodePoint(ch));\n\t    }\n\n\t    module.exports = {\n\t        isDecimalDigit: isDecimalDigit,\n\t        isHexDigit: isHexDigit,\n\t        isOctalDigit: isOctalDigit,\n\t        isWhiteSpace: isWhiteSpace,\n\t        isLineTerminator: isLineTerminator,\n\t        isIdentifierStartES5: isIdentifierStartES5,\n\t        isIdentifierPartES5: isIdentifierPartES5,\n\t        isIdentifierStartES6: isIdentifierStartES6,\n\t        isIdentifierPartES6: isIdentifierPartES6\n\t    };\n\t})();\n\t/* vim: set sw=4 ts=4 et tw=80 : */\n\n/***/ }),\n/* 241 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38),\n\t    root = __webpack_require__(17);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar Set = getNative(root, 'Set');\n\n\tmodule.exports = Set;\n\n/***/ }),\n/* 242 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar MapCache = __webpack_require__(160),\n\t    setCacheAdd = __webpack_require__(561),\n\t    setCacheHas = __webpack_require__(562);\n\n\t/**\n\t *\n\t * Creates an array cache object to store unique values.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [values] The values to cache.\n\t */\n\tfunction SetCache(values) {\n\t    var index = -1,\n\t        length = values == null ? 0 : values.length;\n\n\t    this.__data__ = new MapCache();\n\t    while (++index < length) {\n\t        this.add(values[index]);\n\t    }\n\t}\n\n\t// Add methods to `SetCache`.\n\tSetCache.prototype.add = SetCache.prototype.push = setCacheAdd;\n\tSetCache.prototype.has = setCacheHas;\n\n\tmodule.exports = SetCache;\n\n/***/ }),\n/* 243 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar root = __webpack_require__(17);\n\n\t/** Built-in value references. */\n\tvar Uint8Array = root.Uint8Array;\n\n\tmodule.exports = Uint8Array;\n\n/***/ }),\n/* 244 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A faster alternative to `Function#apply`, this function invokes `func`\n\t * with the `this` binding of `thisArg` and the arguments of `args`.\n\t *\n\t * @private\n\t * @param {Function} func The function to invoke.\n\t * @param {*} thisArg The `this` binding of `func`.\n\t * @param {Array} args The arguments to invoke `func` with.\n\t * @returns {*} Returns the result of `func`.\n\t */\n\tfunction apply(func, thisArg, args) {\n\t  switch (args.length) {\n\t    case 0:\n\t      return func.call(thisArg);\n\t    case 1:\n\t      return func.call(thisArg, args[0]);\n\t    case 2:\n\t      return func.call(thisArg, args[0], args[1]);\n\t    case 3:\n\t      return func.call(thisArg, args[0], args[1], args[2]);\n\t  }\n\t  return func.apply(thisArg, args);\n\t}\n\n\tmodule.exports = apply;\n\n/***/ }),\n/* 245 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseTimes = __webpack_require__(513),\n\t    isArguments = __webpack_require__(112),\n\t    isArray = __webpack_require__(6),\n\t    isBuffer = __webpack_require__(113),\n\t    isIndex = __webpack_require__(171),\n\t    isTypedArray = __webpack_require__(177);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Creates an array of the enumerable property names of the array-like `value`.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @param {boolean} inherited Specify returning inherited property names.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction arrayLikeKeys(value, inherited) {\n\t  var isArr = isArray(value),\n\t      isArg = !isArr && isArguments(value),\n\t      isBuff = !isArr && !isArg && isBuffer(value),\n\t      isType = !isArr && !isArg && !isBuff && isTypedArray(value),\n\t      skipIndexes = isArr || isArg || isBuff || isType,\n\t      result = skipIndexes ? baseTimes(value.length, String) : [],\n\t      length = result.length;\n\n\t  for (var key in value) {\n\t    if ((inherited || hasOwnProperty.call(value, key)) && !(skipIndexes && (\n\t    // Safari 9 has enumerable `arguments.length` in strict mode.\n\t    key == 'length' ||\n\t    // Node.js 0.10 has enumerable non-index properties on buffers.\n\t    isBuff && (key == 'offset' || key == 'parent') ||\n\t    // PhantomJS 2 has enumerable non-index properties on typed arrays.\n\t    isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset') ||\n\t    // Skip index properties.\n\t    isIndex(key, length)))) {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = arrayLikeKeys;\n\n/***/ }),\n/* 246 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `_.reduce` for arrays without support for\n\t * iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @param {*} [accumulator] The initial value.\n\t * @param {boolean} [initAccum] Specify using the first element of `array` as\n\t *  the initial value.\n\t * @returns {*} Returns the accumulated value.\n\t */\n\tfunction arrayReduce(array, iteratee, accumulator, initAccum) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length;\n\n\t  if (initAccum && length) {\n\t    accumulator = array[++index];\n\t  }\n\t  while (++index < length) {\n\t    accumulator = iteratee(accumulator, array[index], index, array);\n\t  }\n\t  return accumulator;\n\t}\n\n\tmodule.exports = arrayReduce;\n\n/***/ }),\n/* 247 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseAssignValue = __webpack_require__(163),\n\t    eq = __webpack_require__(46);\n\n\t/**\n\t * This function is like `assignValue` except that it doesn't assign\n\t * `undefined` values.\n\t *\n\t * @private\n\t * @param {Object} object The object to modify.\n\t * @param {string} key The key of the property to assign.\n\t * @param {*} value The value to assign.\n\t */\n\tfunction assignMergeValue(object, key, value) {\n\t  if (value !== undefined && !eq(object[key], value) || value === undefined && !(key in object)) {\n\t    baseAssignValue(object, key, value);\n\t  }\n\t}\n\n\tmodule.exports = assignMergeValue;\n\n/***/ }),\n/* 248 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar createBaseFor = __webpack_require__(527);\n\n\t/**\n\t * The base implementation of `baseForOwn` which iterates over `object`\n\t * properties returned by `keysFunc` and invokes `iteratee` for each property.\n\t * Iteratee functions may exit iteration early by explicitly returning `false`.\n\t *\n\t * @private\n\t * @param {Object} object The object to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @param {Function} keysFunc The function to get the keys of `object`.\n\t * @returns {Object} Returns `object`.\n\t */\n\tvar baseFor = createBaseFor();\n\n\tmodule.exports = baseFor;\n\n/***/ }),\n/* 249 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar castPath = __webpack_require__(255),\n\t    toKey = __webpack_require__(108);\n\n\t/**\n\t * The base implementation of `_.get` without support for default values.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path of the property to get.\n\t * @returns {*} Returns the resolved value.\n\t */\n\tfunction baseGet(object, path) {\n\t  path = castPath(path, object);\n\n\t  var index = 0,\n\t      length = path.length;\n\n\t  while (object != null && index < length) {\n\t    object = object[toKey(path[index++])];\n\t  }\n\t  return index && index == length ? object : undefined;\n\t}\n\n\tmodule.exports = baseGet;\n\n/***/ }),\n/* 250 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayPush = __webpack_require__(161),\n\t    isArray = __webpack_require__(6);\n\n\t/**\n\t * The base implementation of `getAllKeys` and `getAllKeysIn` which uses\n\t * `keysFunc` and `symbolsFunc` to get the enumerable property names and\n\t * symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {Function} keysFunc The function to get the keys of `object`.\n\t * @param {Function} symbolsFunc The function to get the symbols of `object`.\n\t * @returns {Array} Returns the array of property names and symbols.\n\t */\n\tfunction baseGetAllKeys(object, keysFunc, symbolsFunc) {\n\t  var result = keysFunc(object);\n\t  return isArray(object) ? result : arrayPush(result, symbolsFunc(object));\n\t}\n\n\tmodule.exports = baseGetAllKeys;\n\n/***/ }),\n/* 251 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsEqualDeep = __webpack_require__(494),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/**\n\t * The base implementation of `_.isEqual` which supports partial comparisons\n\t * and tracks traversed objects.\n\t *\n\t * @private\n\t * @param {*} value The value to compare.\n\t * @param {*} other The other value to compare.\n\t * @param {boolean} bitmask The bitmask flags.\n\t *  1 - Unordered comparison\n\t *  2 - Partial comparison\n\t * @param {Function} [customizer] The function to customize comparisons.\n\t * @param {Object} [stack] Tracks traversed `value` and `other` objects.\n\t * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n\t */\n\tfunction baseIsEqual(value, other, bitmask, customizer, stack) {\n\t  if (value === other) {\n\t    return true;\n\t  }\n\t  if (value == null || other == null || !isObjectLike(value) && !isObjectLike(other)) {\n\t    return value !== value && other !== other;\n\t  }\n\t  return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);\n\t}\n\n\tmodule.exports = baseIsEqual;\n\n/***/ }),\n/* 252 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseEach = __webpack_require__(487),\n\t    isArrayLike = __webpack_require__(24);\n\n\t/**\n\t * The base implementation of `_.map` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array} Returns the new mapped array.\n\t */\n\tfunction baseMap(collection, iteratee) {\n\t  var index = -1,\n\t      result = isArrayLike(collection) ? Array(collection.length) : [];\n\n\t  baseEach(collection, function (value, key, collection) {\n\t    result[++index] = iteratee(value, key, collection);\n\t  });\n\t  return result;\n\t}\n\n\tmodule.exports = baseMap;\n\n/***/ }),\n/* 253 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _Symbol = __webpack_require__(45),\n\t    arrayMap = __webpack_require__(60),\n\t    isArray = __webpack_require__(6),\n\t    isSymbol = __webpack_require__(62);\n\n\t/** Used as references for various `Number` constants. */\n\tvar INFINITY = 1 / 0;\n\n\t/** Used to convert symbols to primitives and strings. */\n\tvar symbolProto = _Symbol ? _Symbol.prototype : undefined,\n\t    symbolToString = symbolProto ? symbolProto.toString : undefined;\n\n\t/**\n\t * The base implementation of `_.toString` which doesn't convert nullish\n\t * values to empty strings.\n\t *\n\t * @private\n\t * @param {*} value The value to process.\n\t * @returns {string} Returns the string.\n\t */\n\tfunction baseToString(value) {\n\t  // Exit early for strings to avoid a performance hit in some environments.\n\t  if (typeof value == 'string') {\n\t    return value;\n\t  }\n\t  if (isArray(value)) {\n\t    // Recursively convert values (susceptible to call stack limits).\n\t    return arrayMap(value, baseToString) + '';\n\t  }\n\t  if (isSymbol(value)) {\n\t    return symbolToString ? symbolToString.call(value) : '';\n\t  }\n\t  var result = value + '';\n\t  return result == '0' && 1 / value == -INFINITY ? '-0' : result;\n\t}\n\n\tmodule.exports = baseToString;\n\n/***/ }),\n/* 254 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Checks if a `cache` value for `key` exists.\n\t *\n\t * @private\n\t * @param {Object} cache The cache to query.\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction cacheHas(cache, key) {\n\t  return cache.has(key);\n\t}\n\n\tmodule.exports = cacheHas;\n\n/***/ }),\n/* 255 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isArray = __webpack_require__(6),\n\t    isKey = __webpack_require__(173),\n\t    stringToPath = __webpack_require__(571),\n\t    toString = __webpack_require__(114);\n\n\t/**\n\t * Casts `value` to a path array if it's not one.\n\t *\n\t * @private\n\t * @param {*} value The value to inspect.\n\t * @param {Object} [object] The object to query keys on.\n\t * @returns {Array} Returns the cast property path array.\n\t */\n\tfunction castPath(value, object) {\n\t  if (isArray(value)) {\n\t    return value;\n\t  }\n\t  return isKey(value, object) ? [value] : stringToPath(toString(value));\n\t}\n\n\tmodule.exports = castPath;\n\n/***/ }),\n/* 256 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(module) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar root = __webpack_require__(17);\n\n\t/** Detect free variable `exports`. */\n\tvar freeExports = ( false ? 'undefined' : _typeof(exports)) == 'object' && exports && !exports.nodeType && exports;\n\n\t/** Detect free variable `module`. */\n\tvar freeModule = freeExports && ( false ? 'undefined' : _typeof(module)) == 'object' && module && !module.nodeType && module;\n\n\t/** Detect the popular CommonJS extension `module.exports`. */\n\tvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n\t/** Built-in value references. */\n\tvar Buffer = moduleExports ? root.Buffer : undefined,\n\t    allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;\n\n\t/**\n\t * Creates a clone of  `buffer`.\n\t *\n\t * @private\n\t * @param {Buffer} buffer The buffer to clone.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Buffer} Returns the cloned buffer.\n\t */\n\tfunction cloneBuffer(buffer, isDeep) {\n\t  if (isDeep) {\n\t    return buffer.slice();\n\t  }\n\t  var length = buffer.length,\n\t      result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);\n\n\t  buffer.copy(result);\n\t  return result;\n\t}\n\n\tmodule.exports = cloneBuffer;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module)))\n\n/***/ }),\n/* 257 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar cloneArrayBuffer = __webpack_require__(167);\n\n\t/**\n\t * Creates a clone of `typedArray`.\n\t *\n\t * @private\n\t * @param {Object} typedArray The typed array to clone.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the cloned typed array.\n\t */\n\tfunction cloneTypedArray(typedArray, isDeep) {\n\t  var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;\n\t  return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);\n\t}\n\n\tmodule.exports = cloneTypedArray;\n\n/***/ }),\n/* 258 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIteratee = __webpack_require__(61),\n\t    isArrayLike = __webpack_require__(24),\n\t    keys = __webpack_require__(32);\n\n\t/**\n\t * Creates a `_.find` or `_.findLast` function.\n\t *\n\t * @private\n\t * @param {Function} findIndexFunc The function to find the collection index.\n\t * @returns {Function} Returns the new find function.\n\t */\n\tfunction createFind(findIndexFunc) {\n\t  return function (collection, predicate, fromIndex) {\n\t    var iterable = Object(collection);\n\t    if (!isArrayLike(collection)) {\n\t      var iteratee = baseIteratee(predicate, 3);\n\t      collection = keys(collection);\n\t      predicate = function predicate(key) {\n\t        return iteratee(iterable[key], key, iterable);\n\t      };\n\t    }\n\t    var index = findIndexFunc(collection, predicate, fromIndex);\n\t    return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined;\n\t  };\n\t}\n\n\tmodule.exports = createFind;\n\n/***/ }),\n/* 259 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38);\n\n\tvar defineProperty = function () {\n\t  try {\n\t    var func = getNative(Object, 'defineProperty');\n\t    func({}, '', {});\n\t    return func;\n\t  } catch (e) {}\n\t}();\n\n\tmodule.exports = defineProperty;\n\n/***/ }),\n/* 260 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar SetCache = __webpack_require__(242),\n\t    arraySome = __webpack_require__(482),\n\t    cacheHas = __webpack_require__(254);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1,\n\t    COMPARE_UNORDERED_FLAG = 2;\n\n\t/**\n\t * A specialized version of `baseIsEqualDeep` for arrays with support for\n\t * partial deep comparisons.\n\t *\n\t * @private\n\t * @param {Array} array The array to compare.\n\t * @param {Array} other The other array to compare.\n\t * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n\t * @param {Function} customizer The function to customize comparisons.\n\t * @param {Function} equalFunc The function to determine equivalents of values.\n\t * @param {Object} stack Tracks traversed `array` and `other` objects.\n\t * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.\n\t */\n\tfunction equalArrays(array, other, bitmask, customizer, equalFunc, stack) {\n\t  var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\n\t      arrLength = array.length,\n\t      othLength = other.length;\n\n\t  if (arrLength != othLength && !(isPartial && othLength > arrLength)) {\n\t    return false;\n\t  }\n\t  // Assume cyclic values are equal.\n\t  var stacked = stack.get(array);\n\t  if (stacked && stack.get(other)) {\n\t    return stacked == other;\n\t  }\n\t  var index = -1,\n\t      result = true,\n\t      seen = bitmask & COMPARE_UNORDERED_FLAG ? new SetCache() : undefined;\n\n\t  stack.set(array, other);\n\t  stack.set(other, array);\n\n\t  // Ignore non-index properties.\n\t  while (++index < arrLength) {\n\t    var arrValue = array[index],\n\t        othValue = other[index];\n\n\t    if (customizer) {\n\t      var compared = isPartial ? customizer(othValue, arrValue, index, other, array, stack) : customizer(arrValue, othValue, index, array, other, stack);\n\t    }\n\t    if (compared !== undefined) {\n\t      if (compared) {\n\t        continue;\n\t      }\n\t      result = false;\n\t      break;\n\t    }\n\t    // Recursively compare arrays (susceptible to call stack limits).\n\t    if (seen) {\n\t      if (!arraySome(other, function (othValue, othIndex) {\n\t        if (!cacheHas(seen, othIndex) && (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {\n\t          return seen.push(othIndex);\n\t        }\n\t      })) {\n\t        result = false;\n\t        break;\n\t      }\n\t    } else if (!(arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {\n\t      result = false;\n\t      break;\n\t    }\n\t  }\n\t  stack['delete'](array);\n\t  stack['delete'](other);\n\t  return result;\n\t}\n\n\tmodule.exports = equalArrays;\n\n/***/ }),\n/* 261 */\n/***/ (function(module, exports) {\n\n\t/* WEBPACK VAR INJECTION */(function(global) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/** Detect free variable `global` from Node.js. */\n\tvar freeGlobal = (typeof global === 'undefined' ? 'undefined' : _typeof(global)) == 'object' && global && global.Object === Object && global;\n\n\tmodule.exports = freeGlobal;\n\t/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))\n\n/***/ }),\n/* 262 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetAllKeys = __webpack_require__(250),\n\t    getSymbols = __webpack_require__(170),\n\t    keys = __webpack_require__(32);\n\n\t/**\n\t * Creates an array of own enumerable property names and symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names and symbols.\n\t */\n\tfunction getAllKeys(object) {\n\t  return baseGetAllKeys(object, keys, getSymbols);\n\t}\n\n\tmodule.exports = getAllKeys;\n\n/***/ }),\n/* 263 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayPush = __webpack_require__(161),\n\t    getPrototype = __webpack_require__(169),\n\t    getSymbols = __webpack_require__(170),\n\t    stubArray = __webpack_require__(279);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeGetSymbols = Object.getOwnPropertySymbols;\n\n\t/**\n\t * Creates an array of the own and inherited enumerable symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of symbols.\n\t */\n\tvar getSymbolsIn = !nativeGetSymbols ? stubArray : function (object) {\n\t  var result = [];\n\t  while (object) {\n\t    arrayPush(result, getSymbols(object));\n\t    object = getPrototype(object);\n\t  }\n\t  return result;\n\t};\n\n\tmodule.exports = getSymbolsIn;\n\n/***/ }),\n/* 264 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar DataView = __webpack_require__(472),\n\t    Map = __webpack_require__(159),\n\t    Promise = __webpack_require__(474),\n\t    Set = __webpack_require__(241),\n\t    WeakMap = __webpack_require__(475),\n\t    baseGetTag = __webpack_require__(30),\n\t    toSource = __webpack_require__(272);\n\n\t/** `Object#toString` result references. */\n\tvar mapTag = '[object Map]',\n\t    objectTag = '[object Object]',\n\t    promiseTag = '[object Promise]',\n\t    setTag = '[object Set]',\n\t    weakMapTag = '[object WeakMap]';\n\n\tvar dataViewTag = '[object DataView]';\n\n\t/** Used to detect maps, sets, and weakmaps. */\n\tvar dataViewCtorString = toSource(DataView),\n\t    mapCtorString = toSource(Map),\n\t    promiseCtorString = toSource(Promise),\n\t    setCtorString = toSource(Set),\n\t    weakMapCtorString = toSource(WeakMap);\n\n\t/**\n\t * Gets the `toStringTag` of `value`.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @returns {string} Returns the `toStringTag`.\n\t */\n\tvar getTag = baseGetTag;\n\n\t// Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6.\n\tif (DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag || Map && getTag(new Map()) != mapTag || Promise && getTag(Promise.resolve()) != promiseTag || Set && getTag(new Set()) != setTag || WeakMap && getTag(new WeakMap()) != weakMapTag) {\n\t    getTag = function getTag(value) {\n\t        var result = baseGetTag(value),\n\t            Ctor = result == objectTag ? value.constructor : undefined,\n\t            ctorString = Ctor ? toSource(Ctor) : '';\n\n\t        if (ctorString) {\n\t            switch (ctorString) {\n\t                case dataViewCtorString:\n\t                    return dataViewTag;\n\t                case mapCtorString:\n\t                    return mapTag;\n\t                case promiseCtorString:\n\t                    return promiseTag;\n\t                case setCtorString:\n\t                    return setTag;\n\t                case weakMapCtorString:\n\t                    return weakMapTag;\n\t            }\n\t        }\n\t        return result;\n\t    };\n\t}\n\n\tmodule.exports = getTag;\n\n/***/ }),\n/* 265 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar castPath = __webpack_require__(255),\n\t    isArguments = __webpack_require__(112),\n\t    isArray = __webpack_require__(6),\n\t    isIndex = __webpack_require__(171),\n\t    isLength = __webpack_require__(176),\n\t    toKey = __webpack_require__(108);\n\n\t/**\n\t * Checks if `path` exists on `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path to check.\n\t * @param {Function} hasFunc The function to check properties.\n\t * @returns {boolean} Returns `true` if `path` exists, else `false`.\n\t */\n\tfunction hasPath(object, path, hasFunc) {\n\t  path = castPath(path, object);\n\n\t  var index = -1,\n\t      length = path.length,\n\t      result = false;\n\n\t  while (++index < length) {\n\t    var key = toKey(path[index]);\n\t    if (!(result = object != null && hasFunc(object, key))) {\n\t      break;\n\t    }\n\t    object = object[key];\n\t  }\n\t  if (result || ++index != length) {\n\t    return result;\n\t  }\n\t  length = object == null ? 0 : object.length;\n\t  return !!length && isLength(length) && isIndex(key, length) && (isArray(object) || isArguments(object));\n\t}\n\n\tmodule.exports = hasPath;\n\n/***/ }),\n/* 266 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseCreate = __webpack_require__(486),\n\t    getPrototype = __webpack_require__(169),\n\t    isPrototype = __webpack_require__(105);\n\n\t/**\n\t * Initializes an object clone.\n\t *\n\t * @private\n\t * @param {Object} object The object to clone.\n\t * @returns {Object} Returns the initialized clone.\n\t */\n\tfunction initCloneObject(object) {\n\t    return typeof object.constructor == 'function' && !isPrototype(object) ? baseCreate(getPrototype(object)) : {};\n\t}\n\n\tmodule.exports = initCloneObject;\n\n/***/ }),\n/* 267 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(18);\n\n\t/**\n\t * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` if suitable for strict\n\t *  equality comparisons, else `false`.\n\t */\n\tfunction isStrictComparable(value) {\n\t  return value === value && !isObject(value);\n\t}\n\n\tmodule.exports = isStrictComparable;\n\n/***/ }),\n/* 268 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Converts `map` to its key-value pairs.\n\t *\n\t * @private\n\t * @param {Object} map The map to convert.\n\t * @returns {Array} Returns the key-value pairs.\n\t */\n\tfunction mapToArray(map) {\n\t  var index = -1,\n\t      result = Array(map.size);\n\n\t  map.forEach(function (value, key) {\n\t    result[++index] = [key, value];\n\t  });\n\t  return result;\n\t}\n\n\tmodule.exports = mapToArray;\n\n/***/ }),\n/* 269 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `matchesProperty` for source values suitable\n\t * for strict equality comparisons, i.e. `===`.\n\t *\n\t * @private\n\t * @param {string} key The key of the property to get.\n\t * @param {*} srcValue The value to match.\n\t * @returns {Function} Returns the new spec function.\n\t */\n\tfunction matchesStrictComparable(key, srcValue) {\n\t  return function (object) {\n\t    if (object == null) {\n\t      return false;\n\t    }\n\t    return object[key] === srcValue && (srcValue !== undefined || key in Object(object));\n\t  };\n\t}\n\n\tmodule.exports = matchesStrictComparable;\n\n/***/ }),\n/* 270 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(module) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar freeGlobal = __webpack_require__(261);\n\n\t/** Detect free variable `exports`. */\n\tvar freeExports = ( false ? 'undefined' : _typeof(exports)) == 'object' && exports && !exports.nodeType && exports;\n\n\t/** Detect free variable `module`. */\n\tvar freeModule = freeExports && ( false ? 'undefined' : _typeof(module)) == 'object' && module && !module.nodeType && module;\n\n\t/** Detect the popular CommonJS extension `module.exports`. */\n\tvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n\t/** Detect free variable `process` from Node.js. */\n\tvar freeProcess = moduleExports && freeGlobal.process;\n\n\t/** Used to access faster Node.js helpers. */\n\tvar nodeUtil = function () {\n\t  try {\n\t    return freeProcess && freeProcess.binding && freeProcess.binding('util');\n\t  } catch (e) {}\n\t}();\n\n\tmodule.exports = nodeUtil;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module)))\n\n/***/ }),\n/* 271 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Creates a unary function that invokes `func` with its argument transformed.\n\t *\n\t * @private\n\t * @param {Function} func The function to wrap.\n\t * @param {Function} transform The argument transform.\n\t * @returns {Function} Returns the new function.\n\t */\n\tfunction overArg(func, transform) {\n\t  return function (arg) {\n\t    return func(transform(arg));\n\t  };\n\t}\n\n\tmodule.exports = overArg;\n\n/***/ }),\n/* 272 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used for built-in method references. */\n\tvar funcProto = Function.prototype;\n\n\t/** Used to resolve the decompiled source of functions. */\n\tvar funcToString = funcProto.toString;\n\n\t/**\n\t * Converts `func` to its source code.\n\t *\n\t * @private\n\t * @param {Function} func The function to convert.\n\t * @returns {string} Returns the source code.\n\t */\n\tfunction toSource(func) {\n\t  if (func != null) {\n\t    try {\n\t      return funcToString.call(func);\n\t    } catch (e) {}\n\t    try {\n\t      return func + '';\n\t    } catch (e) {}\n\t  }\n\t  return '';\n\t}\n\n\tmodule.exports = toSource;\n\n/***/ }),\n/* 273 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar apply = __webpack_require__(244),\n\t    assignInWith = __webpack_require__(573),\n\t    baseRest = __webpack_require__(101),\n\t    customDefaultsAssignIn = __webpack_require__(529);\n\n\t/**\n\t * Assigns own and inherited enumerable string keyed properties of source\n\t * objects to the destination object for all destination properties that\n\t * resolve to `undefined`. Source objects are applied from left to right.\n\t * Once a property is set, additional values of the same property are ignored.\n\t *\n\t * **Note:** This method mutates `object`.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Object\n\t * @param {Object} object The destination object.\n\t * @param {...Object} [sources] The source objects.\n\t * @returns {Object} Returns `object`.\n\t * @see _.defaultsDeep\n\t * @example\n\t *\n\t * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\n\t * // => { 'a': 1, 'b': 2 }\n\t */\n\tvar defaults = baseRest(function (args) {\n\t  args.push(undefined, customDefaultsAssignIn);\n\t  return apply(assignInWith, undefined, args);\n\t});\n\n\tmodule.exports = defaults;\n\n/***/ }),\n/* 274 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseHas = __webpack_require__(490),\n\t    hasPath = __webpack_require__(265);\n\n\t/**\n\t * Checks if `path` is a direct property of `object`.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path to check.\n\t * @returns {boolean} Returns `true` if `path` exists, else `false`.\n\t * @example\n\t *\n\t * var object = { 'a': { 'b': 2 } };\n\t * var other = _.create({ 'a': _.create({ 'b': 2 }) });\n\t *\n\t * _.has(object, 'a');\n\t * // => true\n\t *\n\t * _.has(object, 'a.b');\n\t * // => true\n\t *\n\t * _.has(object, ['a', 'b']);\n\t * // => true\n\t *\n\t * _.has(other, 'a');\n\t * // => false\n\t */\n\tfunction has(object, path) {\n\t  return object != null && hasPath(object, path, baseHas);\n\t}\n\n\tmodule.exports = has;\n\n/***/ }),\n/* 275 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    getPrototype = __webpack_require__(169),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** `Object#toString` result references. */\n\tvar objectTag = '[object Object]';\n\n\t/** Used for built-in method references. */\n\tvar funcProto = Function.prototype,\n\t    objectProto = Object.prototype;\n\n\t/** Used to resolve the decompiled source of functions. */\n\tvar funcToString = funcProto.toString;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/** Used to infer the `Object` constructor. */\n\tvar objectCtorString = funcToString.call(Object);\n\n\t/**\n\t * Checks if `value` is a plain object, that is, an object created by the\n\t * `Object` constructor or one with a `[[Prototype]]` of `null`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.8.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t * }\n\t *\n\t * _.isPlainObject(new Foo);\n\t * // => false\n\t *\n\t * _.isPlainObject([1, 2, 3]);\n\t * // => false\n\t *\n\t * _.isPlainObject({ 'x': 0, 'y': 0 });\n\t * // => true\n\t *\n\t * _.isPlainObject(Object.create(null));\n\t * // => true\n\t */\n\tfunction isPlainObject(value) {\n\t  if (!isObjectLike(value) || baseGetTag(value) != objectTag) {\n\t    return false;\n\t  }\n\t  var proto = getPrototype(value);\n\t  if (proto === null) {\n\t    return true;\n\t  }\n\t  var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;\n\t  return typeof Ctor == 'function' && Ctor instanceof Ctor && funcToString.call(Ctor) == objectCtorString;\n\t}\n\n\tmodule.exports = isPlainObject;\n\n/***/ }),\n/* 276 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsRegExp = __webpack_require__(498),\n\t    baseUnary = __webpack_require__(102),\n\t    nodeUtil = __webpack_require__(270);\n\n\t/* Node.js helper references. */\n\tvar nodeIsRegExp = nodeUtil && nodeUtil.isRegExp;\n\n\t/**\n\t * Checks if `value` is classified as a `RegExp` object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a regexp, else `false`.\n\t * @example\n\t *\n\t * _.isRegExp(/abc/);\n\t * // => true\n\t *\n\t * _.isRegExp('/abc/');\n\t * // => false\n\t */\n\tvar isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp;\n\n\tmodule.exports = isRegExp;\n\n/***/ }),\n/* 277 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseRest = __webpack_require__(101),\n\t    pullAll = __webpack_require__(593);\n\n\t/**\n\t * Removes all given values from `array` using\n\t * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * for equality comparisons.\n\t *\n\t * **Note:** Unlike `_.without`, this method mutates `array`. Use `_.remove`\n\t * to remove elements from an array by predicate.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.0.0\n\t * @category Array\n\t * @param {Array} array The array to modify.\n\t * @param {...*} [values] The values to remove.\n\t * @returns {Array} Returns `array`.\n\t * @example\n\t *\n\t * var array = ['a', 'b', 'c', 'a', 'b', 'c'];\n\t *\n\t * _.pull(array, 'a', 'c');\n\t * console.log(array);\n\t * // => ['b', 'b']\n\t */\n\tvar pull = baseRest(pullAll);\n\n\tmodule.exports = pull;\n\n/***/ }),\n/* 278 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseRepeat = __webpack_require__(510),\n\t    isIterateeCall = __webpack_require__(172),\n\t    toInteger = __webpack_require__(48),\n\t    toString = __webpack_require__(114);\n\n\t/**\n\t * Repeats the given string `n` times.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category String\n\t * @param {string} [string=''] The string to repeat.\n\t * @param {number} [n=1] The number of times to repeat the string.\n\t * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\n\t * @returns {string} Returns the repeated string.\n\t * @example\n\t *\n\t * _.repeat('*', 3);\n\t * // => '***'\n\t *\n\t * _.repeat('abc', 2);\n\t * // => 'abcabc'\n\t *\n\t * _.repeat('abc', 0);\n\t * // => ''\n\t */\n\tfunction repeat(string, n, guard) {\n\t  if (guard ? isIterateeCall(string, n, guard) : n === undefined) {\n\t    n = 1;\n\t  } else {\n\t    n = toInteger(n);\n\t  }\n\t  return baseRepeat(toString(string), n);\n\t}\n\n\tmodule.exports = repeat;\n\n/***/ }),\n/* 279 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This method returns a new empty array.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.13.0\n\t * @category Util\n\t * @returns {Array} Returns the new empty array.\n\t * @example\n\t *\n\t * var arrays = _.times(2, _.stubArray);\n\t *\n\t * console.log(arrays);\n\t * // => [[], []]\n\t *\n\t * console.log(arrays[0] === arrays[1]);\n\t * // => false\n\t */\n\tfunction stubArray() {\n\t  return [];\n\t}\n\n\tmodule.exports = stubArray;\n\n/***/ }),\n/* 280 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseValues = __webpack_require__(515),\n\t    keys = __webpack_require__(32);\n\n\t/**\n\t * Creates an array of the own enumerable string keyed property values of `object`.\n\t *\n\t * **Note:** Non-object values are coerced to objects.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property values.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t *   this.b = 2;\n\t * }\n\t *\n\t * Foo.prototype.c = 3;\n\t *\n\t * _.values(new Foo);\n\t * // => [1, 2] (iteration order is not guaranteed)\n\t *\n\t * _.values('hi');\n\t * // => ['h', 'i']\n\t */\n\tfunction values(object) {\n\t  return object == null ? [] : baseValues(object, keys(object));\n\t}\n\n\tmodule.exports = values;\n\n/***/ }),\n/* 281 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tvar originalObject = Object;\n\tvar originalDefProp = Object.defineProperty;\n\tvar originalCreate = Object.create;\n\n\tfunction defProp(obj, name, value) {\n\t  if (originalDefProp) try {\n\t    originalDefProp.call(originalObject, obj, name, { value: value });\n\t  } catch (definePropertyIsBrokenInIE8) {\n\t    obj[name] = value;\n\t  } else {\n\t    obj[name] = value;\n\t  }\n\t}\n\n\t// For functions that will be invoked using .call or .apply, we need to\n\t// define those methods on the function objects themselves, rather than\n\t// inheriting them from Function.prototype, so that a malicious or clumsy\n\t// third party cannot interfere with the functionality of this module by\n\t// redefining Function.prototype.call or .apply.\n\tfunction makeSafeToCall(fun) {\n\t  if (fun) {\n\t    defProp(fun, \"call\", fun.call);\n\t    defProp(fun, \"apply\", fun.apply);\n\t  }\n\t  return fun;\n\t}\n\n\tmakeSafeToCall(originalDefProp);\n\tmakeSafeToCall(originalCreate);\n\n\tvar hasOwn = makeSafeToCall(Object.prototype.hasOwnProperty);\n\tvar numToStr = makeSafeToCall(Number.prototype.toString);\n\tvar strSlice = makeSafeToCall(String.prototype.slice);\n\n\tvar cloner = function cloner() {};\n\tfunction create(prototype) {\n\t  if (originalCreate) {\n\t    return originalCreate.call(originalObject, prototype);\n\t  }\n\t  cloner.prototype = prototype || null;\n\t  return new cloner();\n\t}\n\n\tvar rand = Math.random;\n\tvar uniqueKeys = create(null);\n\n\tfunction makeUniqueKey() {\n\t  // Collisions are highly unlikely, but this module is in the business of\n\t  // making guarantees rather than safe bets.\n\t  do {\n\t    var uniqueKey = internString(strSlice.call(numToStr.call(rand(), 36), 2));\n\t  } while (hasOwn.call(uniqueKeys, uniqueKey));\n\t  return uniqueKeys[uniqueKey] = uniqueKey;\n\t}\n\n\tfunction internString(str) {\n\t  var obj = {};\n\t  obj[str] = true;\n\t  return Object.keys(obj)[0];\n\t}\n\n\t// External users might find this function useful, but it is not necessary\n\t// for the typical use of this module.\n\texports.makeUniqueKey = makeUniqueKey;\n\n\t// Object.getOwnPropertyNames is the only way to enumerate non-enumerable\n\t// properties, so if we wrap it to ignore our secret keys, there should be\n\t// no way (except guessing) to access those properties.\n\tvar originalGetOPNs = Object.getOwnPropertyNames;\n\tObject.getOwnPropertyNames = function getOwnPropertyNames(object) {\n\t  for (var names = originalGetOPNs(object), src = 0, dst = 0, len = names.length; src < len; ++src) {\n\t    if (!hasOwn.call(uniqueKeys, names[src])) {\n\t      if (src > dst) {\n\t        names[dst] = names[src];\n\t      }\n\t      ++dst;\n\t    }\n\t  }\n\t  names.length = dst;\n\t  return names;\n\t};\n\n\tfunction defaultCreatorFn(object) {\n\t  return create(null);\n\t}\n\n\tfunction makeAccessor(secretCreatorFn) {\n\t  var brand = makeUniqueKey();\n\t  var passkey = create(null);\n\n\t  secretCreatorFn = secretCreatorFn || defaultCreatorFn;\n\n\t  function register(object) {\n\t    var secret; // Created lazily.\n\n\t    function vault(key, forget) {\n\t      // Only code that has access to the passkey can retrieve (or forget)\n\t      // the secret object.\n\t      if (key === passkey) {\n\t        return forget ? secret = null : secret || (secret = secretCreatorFn(object));\n\t      }\n\t    }\n\n\t    defProp(object, brand, vault);\n\t  }\n\n\t  function accessor(object) {\n\t    if (!hasOwn.call(object, brand)) register(object);\n\t    return object[brand](passkey);\n\t  }\n\n\t  accessor.forget = function (object) {\n\t    if (hasOwn.call(object, brand)) object[brand](passkey, true);\n\t  };\n\n\t  return accessor;\n\t}\n\n\texports.makeAccessor = makeAccessor;\n\n/***/ }),\n/* 282 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module, global) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/*! https://mths.be/regenerate v1.3.2 by @mathias | MIT license */\n\t;(function (root) {\n\n\t\t// Detect free variables `exports`.\n\t\tvar freeExports = ( false ? 'undefined' : _typeof(exports)) == 'object' && exports;\n\n\t\t// Detect free variable `module`.\n\t\tvar freeModule = ( false ? 'undefined' : _typeof(module)) == 'object' && module && module.exports == freeExports && module;\n\n\t\t// Detect free variable `global`, from Node.js/io.js or Browserified code,\n\t\t// and use it as `root`.\n\t\tvar freeGlobal = (typeof global === 'undefined' ? 'undefined' : _typeof(global)) == 'object' && global;\n\t\tif (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal) {\n\t\t\troot = freeGlobal;\n\t\t}\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\tvar ERRORS = {\n\t\t\t'rangeOrder': 'A range\\u2019s `stop` value must be greater than or equal ' + 'to the `start` value.',\n\t\t\t'codePointRange': 'Invalid code point value. Code points range from ' + 'U+000000 to U+10FFFF.'\n\t\t};\n\n\t\t// https://mathiasbynens.be/notes/javascript-encoding#surrogate-pairs\n\t\tvar HIGH_SURROGATE_MIN = 0xD800;\n\t\tvar HIGH_SURROGATE_MAX = 0xDBFF;\n\t\tvar LOW_SURROGATE_MIN = 0xDC00;\n\t\tvar LOW_SURROGATE_MAX = 0xDFFF;\n\n\t\t// In Regenerate output, `\\0` is never preceded by `\\` because we sort by\n\t\t// code point value, so let’s keep this regular expression simple.\n\t\tvar regexNull = /\\\\x00([^0123456789]|$)/g;\n\n\t\tvar object = {};\n\t\tvar hasOwnProperty = object.hasOwnProperty;\n\t\tvar extend = function extend(destination, source) {\n\t\t\tvar key;\n\t\t\tfor (key in source) {\n\t\t\t\tif (hasOwnProperty.call(source, key)) {\n\t\t\t\t\tdestination[key] = source[key];\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn destination;\n\t\t};\n\n\t\tvar forEach = function forEach(array, callback) {\n\t\t\tvar index = -1;\n\t\t\tvar length = array.length;\n\t\t\twhile (++index < length) {\n\t\t\t\tcallback(array[index], index);\n\t\t\t}\n\t\t};\n\n\t\tvar toString = object.toString;\n\t\tvar isArray = function isArray(value) {\n\t\t\treturn toString.call(value) == '[object Array]';\n\t\t};\n\t\tvar isNumber = function isNumber(value) {\n\t\t\treturn typeof value == 'number' || toString.call(value) == '[object Number]';\n\t\t};\n\n\t\t// This assumes that `number` is a positive integer that `toString()`s nicely\n\t\t// (which is the case for all code point values).\n\t\tvar zeroes = '0000';\n\t\tvar pad = function pad(number, totalCharacters) {\n\t\t\tvar string = String(number);\n\t\t\treturn string.length < totalCharacters ? (zeroes + string).slice(-totalCharacters) : string;\n\t\t};\n\n\t\tvar hex = function hex(number) {\n\t\t\treturn Number(number).toString(16).toUpperCase();\n\t\t};\n\n\t\tvar slice = [].slice;\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\tvar dataFromCodePoints = function dataFromCodePoints(codePoints) {\n\t\t\tvar index = -1;\n\t\t\tvar length = codePoints.length;\n\t\t\tvar max = length - 1;\n\t\t\tvar result = [];\n\t\t\tvar isStart = true;\n\t\t\tvar tmp;\n\t\t\tvar previous = 0;\n\t\t\twhile (++index < length) {\n\t\t\t\ttmp = codePoints[index];\n\t\t\t\tif (isStart) {\n\t\t\t\t\tresult.push(tmp);\n\t\t\t\t\tprevious = tmp;\n\t\t\t\t\tisStart = false;\n\t\t\t\t} else {\n\t\t\t\t\tif (tmp == previous + 1) {\n\t\t\t\t\t\tif (index != max) {\n\t\t\t\t\t\t\tprevious = tmp;\n\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tisStart = true;\n\t\t\t\t\t\t\tresult.push(tmp + 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// End the previous range and start a new one.\n\t\t\t\t\t\tresult.push(previous + 1, tmp);\n\t\t\t\t\t\tprevious = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (!isStart) {\n\t\t\t\tresult.push(tmp + 1);\n\t\t\t}\n\t\t\treturn result;\n\t\t};\n\n\t\tvar dataRemove = function dataRemove(data, codePoint) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar length = data.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1];\n\t\t\t\tif (codePoint >= start && codePoint < end) {\n\t\t\t\t\t// Modify this pair.\n\t\t\t\t\tif (codePoint == start) {\n\t\t\t\t\t\tif (end == start + 1) {\n\t\t\t\t\t\t\t// Just remove `start` and `end`.\n\t\t\t\t\t\t\tdata.splice(index, 2);\n\t\t\t\t\t\t\treturn data;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Just replace `start` with a new value.\n\t\t\t\t\t\t\tdata[index] = codePoint + 1;\n\t\t\t\t\t\t\treturn data;\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (codePoint == end - 1) {\n\t\t\t\t\t\t// Just replace `end` with a new value.\n\t\t\t\t\t\tdata[index + 1] = codePoint;\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t// Replace `[start, end]` with `[startA, endA, startB, endB]`.\n\t\t\t\t\t\tdata.splice(index, 2, start, codePoint, codePoint + 1, end);\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn data;\n\t\t};\n\n\t\tvar dataRemoveRange = function dataRemoveRange(data, rangeStart, rangeEnd) {\n\t\t\tif (rangeEnd < rangeStart) {\n\t\t\t\tthrow Error(ERRORS.rangeOrder);\n\t\t\t}\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\twhile (index < data.length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1] - 1; // Note: the `- 1` makes `end` inclusive.\n\n\t\t\t\t// Exit as soon as no more matching pairs can be found.\n\t\t\t\tif (start > rangeEnd) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Check if this range pair is equal to, or forms a subset of, the range\n\t\t\t\t// to be removed.\n\t\t\t\t// E.g. we have `[0, 11, 40, 51]` and want to remove 0-10 → `[40, 51]`.\n\t\t\t\t// E.g. we have `[40, 51]` and want to remove 0-100 → `[]`.\n\t\t\t\tif (rangeStart <= start && rangeEnd >= end) {\n\t\t\t\t\t// Remove this pair.\n\t\t\t\t\tdata.splice(index, 2);\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Check if both `rangeStart` and `rangeEnd` are within the bounds of\n\t\t\t\t// this pair.\n\t\t\t\t// E.g. we have `[0, 11]` and want to remove 4-6 → `[0, 4, 7, 11]`.\n\t\t\t\tif (rangeStart >= start && rangeEnd < end) {\n\t\t\t\t\tif (rangeStart == start) {\n\t\t\t\t\t\t// Replace `[start, end]` with `[startB, endB]`.\n\t\t\t\t\t\tdata[index] = rangeEnd + 1;\n\t\t\t\t\t\tdata[index + 1] = end + 1;\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t}\n\t\t\t\t\t// Replace `[start, end]` with `[startA, endA, startB, endB]`.\n\t\t\t\t\tdata.splice(index, 2, start, rangeStart, rangeEnd + 1, end + 1);\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Check if only `rangeStart` is within the bounds of this pair.\n\t\t\t\t// E.g. we have `[0, 11]` and want to remove 4-20 → `[0, 4]`.\n\t\t\t\tif (rangeStart >= start && rangeStart <= end) {\n\t\t\t\t\t// Replace `end` with `rangeStart`.\n\t\t\t\t\tdata[index + 1] = rangeStart;\n\t\t\t\t\t// Note: we cannot `return` just yet, in case any following pairs still\n\t\t\t\t\t// contain matching code points.\n\t\t\t\t\t// E.g. we have `[0, 11, 14, 31]` and want to remove 4-20\n\t\t\t\t\t// → `[0, 4, 21, 31]`.\n\t\t\t\t}\n\n\t\t\t\t// Check if only `rangeEnd` is within the bounds of this pair.\n\t\t\t\t// E.g. we have `[14, 31]` and want to remove 4-20 → `[21, 31]`.\n\t\t\t\telse if (rangeEnd >= start && rangeEnd <= end) {\n\t\t\t\t\t\t// Just replace `start`.\n\t\t\t\t\t\tdata[index] = rangeEnd + 1;\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t}\n\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn data;\n\t\t};\n\n\t\tvar dataAdd = function dataAdd(data, codePoint) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar lastIndex = null;\n\t\t\tvar length = data.length;\n\t\t\tif (codePoint < 0x0 || codePoint > 0x10FFFF) {\n\t\t\t\tthrow RangeError(ERRORS.codePointRange);\n\t\t\t}\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1];\n\n\t\t\t\t// Check if the code point is already in the set.\n\t\t\t\tif (codePoint >= start && codePoint < end) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\tif (codePoint == start - 1) {\n\t\t\t\t\t// Just replace `start` with a new value.\n\t\t\t\t\tdata[index] = codePoint;\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// At this point, if `start` is `greater` than `codePoint`, insert a new\n\t\t\t\t// `[start, end]` pair before the current pair, or after the current pair\n\t\t\t\t// if there is a known `lastIndex`.\n\t\t\t\tif (start > codePoint) {\n\t\t\t\t\tdata.splice(lastIndex != null ? lastIndex + 2 : 0, 0, codePoint, codePoint + 1);\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\tif (codePoint == end) {\n\t\t\t\t\t// Check if adding this code point causes two separate ranges to become\n\t\t\t\t\t// a single range, e.g. `dataAdd([0, 4, 5, 10], 4)` → `[0, 10]`.\n\t\t\t\t\tif (codePoint + 1 == data[index + 2]) {\n\t\t\t\t\t\tdata.splice(index, 4, start, data[index + 3]);\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t}\n\t\t\t\t\t// Else, just replace `end` with a new value.\n\t\t\t\t\tdata[index + 1] = codePoint + 1;\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\t\t\t\tlastIndex = index;\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\t// The loop has finished; add the new pair to the end of the data set.\n\t\t\tdata.push(codePoint, codePoint + 1);\n\t\t\treturn data;\n\t\t};\n\n\t\tvar dataAddData = function dataAddData(dataA, dataB) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar data = dataA.slice();\n\t\t\tvar length = dataB.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = dataB[index];\n\t\t\t\tend = dataB[index + 1] - 1;\n\t\t\t\tif (start == end) {\n\t\t\t\t\tdata = dataAdd(data, start);\n\t\t\t\t} else {\n\t\t\t\t\tdata = dataAddRange(data, start, end);\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn data;\n\t\t};\n\n\t\tvar dataRemoveData = function dataRemoveData(dataA, dataB) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar data = dataA.slice();\n\t\t\tvar length = dataB.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = dataB[index];\n\t\t\t\tend = dataB[index + 1] - 1;\n\t\t\t\tif (start == end) {\n\t\t\t\t\tdata = dataRemove(data, start);\n\t\t\t\t} else {\n\t\t\t\t\tdata = dataRemoveRange(data, start, end);\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn data;\n\t\t};\n\n\t\tvar dataAddRange = function dataAddRange(data, rangeStart, rangeEnd) {\n\t\t\tif (rangeEnd < rangeStart) {\n\t\t\t\tthrow Error(ERRORS.rangeOrder);\n\t\t\t}\n\t\t\tif (rangeStart < 0x0 || rangeStart > 0x10FFFF || rangeEnd < 0x0 || rangeEnd > 0x10FFFF) {\n\t\t\t\tthrow RangeError(ERRORS.codePointRange);\n\t\t\t}\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar added = false;\n\t\t\tvar length = data.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1];\n\n\t\t\t\tif (added) {\n\t\t\t\t\t// The range has already been added to the set; at this point, we just\n\t\t\t\t\t// need to get rid of the following ranges in case they overlap.\n\n\t\t\t\t\t// Check if this range can be combined with the previous range.\n\t\t\t\t\tif (start == rangeEnd + 1) {\n\t\t\t\t\t\tdata.splice(index - 1, 2);\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Exit as soon as no more possibly overlapping pairs can be found.\n\t\t\t\t\tif (start > rangeEnd) {\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t}\n\n\t\t\t\t\t// E.g. `[0, 11, 12, 16]` and we’ve added 5-15, so we now have\n\t\t\t\t\t// `[0, 16, 12, 16]`. Remove the `12,16` part, as it lies within the\n\t\t\t\t\t// `0,16` range that was previously added.\n\t\t\t\t\tif (start >= rangeStart && start <= rangeEnd) {\n\t\t\t\t\t\t// `start` lies within the range that was previously added.\n\n\t\t\t\t\t\tif (end > rangeStart && end - 1 <= rangeEnd) {\n\t\t\t\t\t\t\t// `end` lies within the range that was previously added as well,\n\t\t\t\t\t\t\t// so remove this pair.\n\t\t\t\t\t\t\tdata.splice(index, 2);\n\t\t\t\t\t\t\tindex -= 2;\n\t\t\t\t\t\t\t// Note: we cannot `return` just yet, as there may still be other\n\t\t\t\t\t\t\t// overlapping pairs.\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// `start` lies within the range that was previously added, but\n\t\t\t\t\t\t\t// `end` doesn’t. E.g. `[0, 11, 12, 31]` and we’ve added 5-15, so\n\t\t\t\t\t\t\t// now we have `[0, 16, 12, 31]`. This must be written as `[0, 31]`.\n\t\t\t\t\t\t\t// Remove the previously added `end` and the current `start`.\n\t\t\t\t\t\t\tdata.splice(index - 1, 2);\n\t\t\t\t\t\t\tindex -= 2;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Note: we cannot return yet.\n\t\t\t\t\t}\n\t\t\t\t} else if (start == rangeEnd + 1) {\n\t\t\t\t\tdata[index] = rangeStart;\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Check if a new pair must be inserted *before* the current one.\n\t\t\t\telse if (start > rangeEnd) {\n\t\t\t\t\t\tdata.splice(index, 0, rangeStart, rangeEnd + 1);\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t} else if (rangeStart >= start && rangeStart < end && rangeEnd + 1 <= end) {\n\t\t\t\t\t\t// The new range lies entirely within an existing range pair. No action\n\t\t\t\t\t\t// needed.\n\t\t\t\t\t\treturn data;\n\t\t\t\t\t} else if (\n\t\t\t\t\t// E.g. `[0, 11]` and you add 5-15 → `[0, 16]`.\n\t\t\t\t\trangeStart >= start && rangeStart < end ||\n\t\t\t\t\t// E.g. `[0, 3]` and you add 3-6 → `[0, 7]`.\n\t\t\t\t\tend == rangeStart) {\n\t\t\t\t\t\t// Replace `end` with the new value.\n\t\t\t\t\t\tdata[index + 1] = rangeEnd + 1;\n\t\t\t\t\t\t// Make sure the next range pair doesn’t overlap, e.g. `[0, 11, 12, 14]`\n\t\t\t\t\t\t// and you add 5-15 → `[0, 16]`, i.e. remove the `12,14` part.\n\t\t\t\t\t\tadded = true;\n\t\t\t\t\t\t// Note: we cannot `return` just yet.\n\t\t\t\t\t} else if (rangeStart <= start && rangeEnd + 1 >= end) {\n\t\t\t\t\t\t// The new range is a superset of the old range.\n\t\t\t\t\t\tdata[index] = rangeStart;\n\t\t\t\t\t\tdata[index + 1] = rangeEnd + 1;\n\t\t\t\t\t\tadded = true;\n\t\t\t\t\t}\n\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\t// The loop has finished without doing anything; add the new pair to the end\n\t\t\t// of the data set.\n\t\t\tif (!added) {\n\t\t\t\tdata.push(rangeStart, rangeEnd + 1);\n\t\t\t}\n\t\t\treturn data;\n\t\t};\n\n\t\tvar dataContains = function dataContains(data, codePoint) {\n\t\t\tvar index = 0;\n\t\t\tvar length = data.length;\n\t\t\t// Exit early if `codePoint` is not within `data`’s overall range.\n\t\t\tvar start = data[index];\n\t\t\tvar end = data[length - 1];\n\t\t\tif (length >= 2) {\n\t\t\t\tif (codePoint < start || codePoint > end) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1];\n\t\t\t\tif (codePoint >= start && codePoint < end) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t\tvar dataIntersection = function dataIntersection(data, codePoints) {\n\t\t\tvar index = 0;\n\t\t\tvar length = codePoints.length;\n\t\t\tvar codePoint;\n\t\t\tvar result = [];\n\t\t\twhile (index < length) {\n\t\t\t\tcodePoint = codePoints[index];\n\t\t\t\tif (dataContains(data, codePoint)) {\n\t\t\t\t\tresult.push(codePoint);\n\t\t\t\t}\n\t\t\t\t++index;\n\t\t\t}\n\t\t\treturn dataFromCodePoints(result);\n\t\t};\n\n\t\tvar dataIsEmpty = function dataIsEmpty(data) {\n\t\t\treturn !data.length;\n\t\t};\n\n\t\tvar dataIsSingleton = function dataIsSingleton(data) {\n\t\t\t// Check if the set only represents a single code point.\n\t\t\treturn data.length == 2 && data[0] + 1 == data[1];\n\t\t};\n\n\t\tvar dataToArray = function dataToArray(data) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar result = [];\n\t\t\tvar length = data.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1];\n\t\t\t\twhile (start < end) {\n\t\t\t\t\tresult.push(start);\n\t\t\t\t\t++start;\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn result;\n\t\t};\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\t// https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n\t\tvar floor = Math.floor;\n\t\tvar highSurrogate = function highSurrogate(codePoint) {\n\t\t\treturn parseInt(floor((codePoint - 0x10000) / 0x400) + HIGH_SURROGATE_MIN, 10);\n\t\t};\n\n\t\tvar lowSurrogate = function lowSurrogate(codePoint) {\n\t\t\treturn parseInt((codePoint - 0x10000) % 0x400 + LOW_SURROGATE_MIN, 10);\n\t\t};\n\n\t\tvar stringFromCharCode = String.fromCharCode;\n\t\tvar codePointToString = function codePointToString(codePoint) {\n\t\t\tvar string;\n\t\t\t// https://mathiasbynens.be/notes/javascript-escapes#single\n\t\t\t// Note: the `\\b` escape sequence for U+0008 BACKSPACE in strings has a\n\t\t\t// different meaning in regular expressions (word boundary), so it cannot\n\t\t\t// be used here.\n\t\t\tif (codePoint == 0x09) {\n\t\t\t\tstring = '\\\\t';\n\t\t\t}\n\t\t\t// Note: IE < 9 treats `'\\v'` as `'v'`, so avoid using it.\n\t\t\t// else if (codePoint == 0x0B) {\n\t\t\t// \tstring = '\\\\v';\n\t\t\t// }\n\t\t\telse if (codePoint == 0x0A) {\n\t\t\t\t\tstring = '\\\\n';\n\t\t\t\t} else if (codePoint == 0x0C) {\n\t\t\t\t\tstring = '\\\\f';\n\t\t\t\t} else if (codePoint == 0x0D) {\n\t\t\t\t\tstring = '\\\\r';\n\t\t\t\t} else if (codePoint == 0x5C) {\n\t\t\t\t\tstring = '\\\\\\\\';\n\t\t\t\t} else if (codePoint == 0x24 || codePoint >= 0x28 && codePoint <= 0x2B || codePoint == 0x2D || codePoint == 0x2E || codePoint == 0x3F || codePoint >= 0x5B && codePoint <= 0x5E || codePoint >= 0x7B && codePoint <= 0x7D) {\n\t\t\t\t\t// The code point maps to an unsafe printable ASCII character;\n\t\t\t\t\t// backslash-escape it. Here’s the list of those symbols:\n\t\t\t\t\t//\n\t\t\t\t\t//     $()*+-.?[\\]^{|}\n\t\t\t\t\t//\n\t\t\t\t\t// See #7 for more info.\n\t\t\t\t\tstring = '\\\\' + stringFromCharCode(codePoint);\n\t\t\t\t} else if (codePoint >= 0x20 && codePoint <= 0x7E) {\n\t\t\t\t\t// The code point maps to one of these printable ASCII symbols\n\t\t\t\t\t// (including the space character):\n\t\t\t\t\t//\n\t\t\t\t\t//      !\"#%&',/0123456789:;<=>@ABCDEFGHIJKLMNO\n\t\t\t\t\t//     PQRSTUVWXYZ_`abcdefghijklmnopqrstuvwxyz~\n\t\t\t\t\t//\n\t\t\t\t\t// These can safely be used directly.\n\t\t\t\t\tstring = stringFromCharCode(codePoint);\n\t\t\t\t} else if (codePoint <= 0xFF) {\n\t\t\t\t\t// https://mathiasbynens.be/notes/javascript-escapes#hexadecimal\n\t\t\t\t\tstring = '\\\\x' + pad(hex(codePoint), 2);\n\t\t\t\t} else {\n\t\t\t\t\t// `codePoint <= 0xFFFF` holds true.\n\t\t\t\t\t// https://mathiasbynens.be/notes/javascript-escapes#unicode\n\t\t\t\t\tstring = '\\\\u' + pad(hex(codePoint), 4);\n\t\t\t\t}\n\n\t\t\t// There’s no need to account for astral symbols / surrogate pairs here,\n\t\t\t// since `codePointToString` is private and only used for BMP code points.\n\t\t\t// But if that’s what you need, just add an `else` block with this code:\n\t\t\t//\n\t\t\t//     string = '\\\\u' + pad(hex(highSurrogate(codePoint)), 4)\n\t\t\t//     \t+ '\\\\u' + pad(hex(lowSurrogate(codePoint)), 4);\n\n\t\t\treturn string;\n\t\t};\n\n\t\tvar codePointToStringUnicode = function codePointToStringUnicode(codePoint) {\n\t\t\tif (codePoint <= 0xFFFF) {\n\t\t\t\treturn codePointToString(codePoint);\n\t\t\t}\n\t\t\treturn '\\\\u{' + codePoint.toString(16).toUpperCase() + '}';\n\t\t};\n\n\t\tvar symbolToCodePoint = function symbolToCodePoint(symbol) {\n\t\t\tvar length = symbol.length;\n\t\t\tvar first = symbol.charCodeAt(0);\n\t\t\tvar second;\n\t\t\tif (first >= HIGH_SURROGATE_MIN && first <= HIGH_SURROGATE_MAX && length > 1 // There is a next code unit.\n\t\t\t) {\n\t\t\t\t\t// `first` is a high surrogate, and there is a next character. Assume\n\t\t\t\t\t// it’s a low surrogate (else it’s invalid usage of Regenerate anyway).\n\t\t\t\t\tsecond = symbol.charCodeAt(1);\n\t\t\t\t\t// https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n\t\t\t\t\treturn (first - HIGH_SURROGATE_MIN) * 0x400 + second - LOW_SURROGATE_MIN + 0x10000;\n\t\t\t\t}\n\t\t\treturn first;\n\t\t};\n\n\t\tvar createBMPCharacterClasses = function createBMPCharacterClasses(data) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar result = '';\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar length = data.length;\n\t\t\tif (dataIsSingleton(data)) {\n\t\t\t\treturn codePointToString(data[0]);\n\t\t\t}\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1] - 1; // Note: the `- 1` makes `end` inclusive.\n\t\t\t\tif (start == end) {\n\t\t\t\t\tresult += codePointToString(start);\n\t\t\t\t} else if (start + 1 == end) {\n\t\t\t\t\tresult += codePointToString(start) + codePointToString(end);\n\t\t\t\t} else {\n\t\t\t\t\tresult += codePointToString(start) + '-' + codePointToString(end);\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn '[' + result + ']';\n\t\t};\n\n\t\tvar createUnicodeCharacterClasses = function createUnicodeCharacterClasses(data) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar result = '';\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar length = data.length;\n\t\t\tif (dataIsSingleton(data)) {\n\t\t\t\treturn codePointToStringUnicode(data[0]);\n\t\t\t}\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1] - 1; // Note: the `- 1` makes `end` inclusive.\n\t\t\t\tif (start == end) {\n\t\t\t\t\tresult += codePointToStringUnicode(start);\n\t\t\t\t} else if (start + 1 == end) {\n\t\t\t\t\tresult += codePointToStringUnicode(start) + codePointToStringUnicode(end);\n\t\t\t\t} else {\n\t\t\t\t\tresult += codePointToStringUnicode(start) + '-' + codePointToStringUnicode(end);\n\t\t\t\t}\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn '[' + result + ']';\n\t\t};\n\n\t\tvar splitAtBMP = function splitAtBMP(data) {\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar loneHighSurrogates = [];\n\t\t\tvar loneLowSurrogates = [];\n\t\t\tvar bmp = [];\n\t\t\tvar astral = [];\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar length = data.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1] - 1; // Note: the `- 1` makes `end` inclusive.\n\n\t\t\t\tif (start < HIGH_SURROGATE_MIN) {\n\n\t\t\t\t\t// The range starts and ends before the high surrogate range.\n\t\t\t\t\t// E.g. (0, 0x10).\n\t\t\t\t\tif (end < HIGH_SURROGATE_MIN) {\n\t\t\t\t\t\tbmp.push(start, end + 1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The range starts before the high surrogate range and ends within it.\n\t\t\t\t\t// E.g. (0, 0xD855).\n\t\t\t\t\tif (end >= HIGH_SURROGATE_MIN && end <= HIGH_SURROGATE_MAX) {\n\t\t\t\t\t\tbmp.push(start, HIGH_SURROGATE_MIN);\n\t\t\t\t\t\tloneHighSurrogates.push(HIGH_SURROGATE_MIN, end + 1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The range starts before the high surrogate range and ends in the low\n\t\t\t\t\t// surrogate range. E.g. (0, 0xDCFF).\n\t\t\t\t\tif (end >= LOW_SURROGATE_MIN && end <= LOW_SURROGATE_MAX) {\n\t\t\t\t\t\tbmp.push(start, HIGH_SURROGATE_MIN);\n\t\t\t\t\t\tloneHighSurrogates.push(HIGH_SURROGATE_MIN, HIGH_SURROGATE_MAX + 1);\n\t\t\t\t\t\tloneLowSurrogates.push(LOW_SURROGATE_MIN, end + 1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The range starts before the high surrogate range and ends after the\n\t\t\t\t\t// low surrogate range. E.g. (0, 0x10FFFF).\n\t\t\t\t\tif (end > LOW_SURROGATE_MAX) {\n\t\t\t\t\t\tbmp.push(start, HIGH_SURROGATE_MIN);\n\t\t\t\t\t\tloneHighSurrogates.push(HIGH_SURROGATE_MIN, HIGH_SURROGATE_MAX + 1);\n\t\t\t\t\t\tloneLowSurrogates.push(LOW_SURROGATE_MIN, LOW_SURROGATE_MAX + 1);\n\t\t\t\t\t\tif (end <= 0xFFFF) {\n\t\t\t\t\t\t\tbmp.push(LOW_SURROGATE_MAX + 1, end + 1);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tbmp.push(LOW_SURROGATE_MAX + 1, 0xFFFF + 1);\n\t\t\t\t\t\t\tastral.push(0xFFFF + 1, end + 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else if (start >= HIGH_SURROGATE_MIN && start <= HIGH_SURROGATE_MAX) {\n\n\t\t\t\t\t// The range starts and ends in the high surrogate range.\n\t\t\t\t\t// E.g. (0xD855, 0xD866).\n\t\t\t\t\tif (end >= HIGH_SURROGATE_MIN && end <= HIGH_SURROGATE_MAX) {\n\t\t\t\t\t\tloneHighSurrogates.push(start, end + 1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The range starts in the high surrogate range and ends in the low\n\t\t\t\t\t// surrogate range. E.g. (0xD855, 0xDCFF).\n\t\t\t\t\tif (end >= LOW_SURROGATE_MIN && end <= LOW_SURROGATE_MAX) {\n\t\t\t\t\t\tloneHighSurrogates.push(start, HIGH_SURROGATE_MAX + 1);\n\t\t\t\t\t\tloneLowSurrogates.push(LOW_SURROGATE_MIN, end + 1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The range starts in the high surrogate range and ends after the low\n\t\t\t\t\t// surrogate range. E.g. (0xD855, 0x10FFFF).\n\t\t\t\t\tif (end > LOW_SURROGATE_MAX) {\n\t\t\t\t\t\tloneHighSurrogates.push(start, HIGH_SURROGATE_MAX + 1);\n\t\t\t\t\t\tloneLowSurrogates.push(LOW_SURROGATE_MIN, LOW_SURROGATE_MAX + 1);\n\t\t\t\t\t\tif (end <= 0xFFFF) {\n\t\t\t\t\t\t\tbmp.push(LOW_SURROGATE_MAX + 1, end + 1);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tbmp.push(LOW_SURROGATE_MAX + 1, 0xFFFF + 1);\n\t\t\t\t\t\t\tastral.push(0xFFFF + 1, end + 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else if (start >= LOW_SURROGATE_MIN && start <= LOW_SURROGATE_MAX) {\n\n\t\t\t\t\t// The range starts and ends in the low surrogate range.\n\t\t\t\t\t// E.g. (0xDCFF, 0xDDFF).\n\t\t\t\t\tif (end >= LOW_SURROGATE_MIN && end <= LOW_SURROGATE_MAX) {\n\t\t\t\t\t\tloneLowSurrogates.push(start, end + 1);\n\t\t\t\t\t}\n\n\t\t\t\t\t// The range starts in the low surrogate range and ends after the low\n\t\t\t\t\t// surrogate range. E.g. (0xDCFF, 0x10FFFF).\n\t\t\t\t\tif (end > LOW_SURROGATE_MAX) {\n\t\t\t\t\t\tloneLowSurrogates.push(start, LOW_SURROGATE_MAX + 1);\n\t\t\t\t\t\tif (end <= 0xFFFF) {\n\t\t\t\t\t\t\tbmp.push(LOW_SURROGATE_MAX + 1, end + 1);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tbmp.push(LOW_SURROGATE_MAX + 1, 0xFFFF + 1);\n\t\t\t\t\t\t\tastral.push(0xFFFF + 1, end + 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else if (start > LOW_SURROGATE_MAX && start <= 0xFFFF) {\n\n\t\t\t\t\t// The range starts and ends after the low surrogate range.\n\t\t\t\t\t// E.g. (0xFFAA, 0x10FFFF).\n\t\t\t\t\tif (end <= 0xFFFF) {\n\t\t\t\t\t\tbmp.push(start, end + 1);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tbmp.push(start, 0xFFFF + 1);\n\t\t\t\t\t\tastral.push(0xFFFF + 1, end + 1);\n\t\t\t\t\t}\n\t\t\t\t} else {\n\n\t\t\t\t\t// The range starts and ends in the astral range.\n\t\t\t\t\tastral.push(start, end + 1);\n\t\t\t\t}\n\n\t\t\t\tindex += 2;\n\t\t\t}\n\t\t\treturn {\n\t\t\t\t'loneHighSurrogates': loneHighSurrogates,\n\t\t\t\t'loneLowSurrogates': loneLowSurrogates,\n\t\t\t\t'bmp': bmp,\n\t\t\t\t'astral': astral\n\t\t\t};\n\t\t};\n\n\t\tvar optimizeSurrogateMappings = function optimizeSurrogateMappings(surrogateMappings) {\n\t\t\tvar result = [];\n\t\t\tvar tmpLow = [];\n\t\t\tvar addLow = false;\n\t\t\tvar mapping;\n\t\t\tvar nextMapping;\n\t\t\tvar highSurrogates;\n\t\t\tvar lowSurrogates;\n\t\t\tvar nextHighSurrogates;\n\t\t\tvar nextLowSurrogates;\n\t\t\tvar index = -1;\n\t\t\tvar length = surrogateMappings.length;\n\t\t\twhile (++index < length) {\n\t\t\t\tmapping = surrogateMappings[index];\n\t\t\t\tnextMapping = surrogateMappings[index + 1];\n\t\t\t\tif (!nextMapping) {\n\t\t\t\t\tresult.push(mapping);\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\thighSurrogates = mapping[0];\n\t\t\t\tlowSurrogates = mapping[1];\n\t\t\t\tnextHighSurrogates = nextMapping[0];\n\t\t\t\tnextLowSurrogates = nextMapping[1];\n\n\t\t\t\t// Check for identical high surrogate ranges.\n\t\t\t\ttmpLow = lowSurrogates;\n\t\t\t\twhile (nextHighSurrogates && highSurrogates[0] == nextHighSurrogates[0] && highSurrogates[1] == nextHighSurrogates[1]) {\n\t\t\t\t\t// Merge with the next item.\n\t\t\t\t\tif (dataIsSingleton(nextLowSurrogates)) {\n\t\t\t\t\t\ttmpLow = dataAdd(tmpLow, nextLowSurrogates[0]);\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttmpLow = dataAddRange(tmpLow, nextLowSurrogates[0], nextLowSurrogates[1] - 1);\n\t\t\t\t\t}\n\t\t\t\t\t++index;\n\t\t\t\t\tmapping = surrogateMappings[index];\n\t\t\t\t\thighSurrogates = mapping[0];\n\t\t\t\t\tlowSurrogates = mapping[1];\n\t\t\t\t\tnextMapping = surrogateMappings[index + 1];\n\t\t\t\t\tnextHighSurrogates = nextMapping && nextMapping[0];\n\t\t\t\t\tnextLowSurrogates = nextMapping && nextMapping[1];\n\t\t\t\t\taddLow = true;\n\t\t\t\t}\n\t\t\t\tresult.push([highSurrogates, addLow ? tmpLow : lowSurrogates]);\n\t\t\t\taddLow = false;\n\t\t\t}\n\t\t\treturn optimizeByLowSurrogates(result);\n\t\t};\n\n\t\tvar optimizeByLowSurrogates = function optimizeByLowSurrogates(surrogateMappings) {\n\t\t\tif (surrogateMappings.length == 1) {\n\t\t\t\treturn surrogateMappings;\n\t\t\t}\n\t\t\tvar index = -1;\n\t\t\tvar innerIndex = -1;\n\t\t\twhile (++index < surrogateMappings.length) {\n\t\t\t\tvar mapping = surrogateMappings[index];\n\t\t\t\tvar lowSurrogates = mapping[1];\n\t\t\t\tvar lowSurrogateStart = lowSurrogates[0];\n\t\t\t\tvar lowSurrogateEnd = lowSurrogates[1];\n\t\t\t\tinnerIndex = index; // Note: the loop starts at the next index.\n\t\t\t\twhile (++innerIndex < surrogateMappings.length) {\n\t\t\t\t\tvar otherMapping = surrogateMappings[innerIndex];\n\t\t\t\t\tvar otherLowSurrogates = otherMapping[1];\n\t\t\t\t\tvar otherLowSurrogateStart = otherLowSurrogates[0];\n\t\t\t\t\tvar otherLowSurrogateEnd = otherLowSurrogates[1];\n\t\t\t\t\tif (lowSurrogateStart == otherLowSurrogateStart && lowSurrogateEnd == otherLowSurrogateEnd) {\n\t\t\t\t\t\t// Add the code points in the other item to this one.\n\t\t\t\t\t\tif (dataIsSingleton(otherMapping[0])) {\n\t\t\t\t\t\t\tmapping[0] = dataAdd(mapping[0], otherMapping[0][0]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tmapping[0] = dataAddRange(mapping[0], otherMapping[0][0], otherMapping[0][1] - 1);\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Remove the other, now redundant, item.\n\t\t\t\t\t\tsurrogateMappings.splice(innerIndex, 1);\n\t\t\t\t\t\t--innerIndex;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn surrogateMappings;\n\t\t};\n\n\t\tvar surrogateSet = function surrogateSet(data) {\n\t\t\t// Exit early if `data` is an empty set.\n\t\t\tif (!data.length) {\n\t\t\t\treturn [];\n\t\t\t}\n\n\t\t\t// Iterate over the data per `(start, end)` pair.\n\t\t\tvar index = 0;\n\t\t\tvar start;\n\t\t\tvar end;\n\t\t\tvar startHigh;\n\t\t\tvar startLow;\n\t\t\tvar endHigh;\n\t\t\tvar endLow;\n\t\t\tvar surrogateMappings = [];\n\t\t\tvar length = data.length;\n\t\t\twhile (index < length) {\n\t\t\t\tstart = data[index];\n\t\t\t\tend = data[index + 1] - 1;\n\n\t\t\t\tstartHigh = highSurrogate(start);\n\t\t\t\tstartLow = lowSurrogate(start);\n\t\t\t\tendHigh = highSurrogate(end);\n\t\t\t\tendLow = lowSurrogate(end);\n\n\t\t\t\tvar startsWithLowestLowSurrogate = startLow == LOW_SURROGATE_MIN;\n\t\t\t\tvar endsWithHighestLowSurrogate = endLow == LOW_SURROGATE_MAX;\n\t\t\t\tvar complete = false;\n\n\t\t\t\t// Append the previous high-surrogate-to-low-surrogate mappings.\n\t\t\t\t// Step 1: `(startHigh, startLow)` to `(startHigh, LOW_SURROGATE_MAX)`.\n\t\t\t\tif (startHigh == endHigh || startsWithLowestLowSurrogate && endsWithHighestLowSurrogate) {\n\t\t\t\t\tsurrogateMappings.push([[startHigh, endHigh + 1], [startLow, endLow + 1]]);\n\t\t\t\t\tcomplete = true;\n\t\t\t\t} else {\n\t\t\t\t\tsurrogateMappings.push([[startHigh, startHigh + 1], [startLow, LOW_SURROGATE_MAX + 1]]);\n\t\t\t\t}\n\n\t\t\t\t// Step 2: `(startHigh + 1, LOW_SURROGATE_MIN)` to\n\t\t\t\t// `(endHigh - 1, LOW_SURROGATE_MAX)`.\n\t\t\t\tif (!complete && startHigh + 1 < endHigh) {\n\t\t\t\t\tif (endsWithHighestLowSurrogate) {\n\t\t\t\t\t\t// Combine step 2 and step 3.\n\t\t\t\t\t\tsurrogateMappings.push([[startHigh + 1, endHigh + 1], [LOW_SURROGATE_MIN, endLow + 1]]);\n\t\t\t\t\t\tcomplete = true;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsurrogateMappings.push([[startHigh + 1, endHigh], [LOW_SURROGATE_MIN, LOW_SURROGATE_MAX + 1]]);\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Step 3. `(endHigh, LOW_SURROGATE_MIN)` to `(endHigh, endLow)`.\n\t\t\t\tif (!complete) {\n\t\t\t\t\tsurrogateMappings.push([[endHigh, endHigh + 1], [LOW_SURROGATE_MIN, endLow + 1]]);\n\t\t\t\t}\n\n\t\t\t\tindex += 2;\n\t\t\t}\n\n\t\t\t// The format of `surrogateMappings` is as follows:\n\t\t\t//\n\t\t\t//     [ surrogateMapping1, surrogateMapping2 ]\n\t\t\t//\n\t\t\t// i.e.:\n\t\t\t//\n\t\t\t//     [\n\t\t\t//       [ highSurrogates1, lowSurrogates1 ],\n\t\t\t//       [ highSurrogates2, lowSurrogates2 ]\n\t\t\t//     ]\n\t\t\treturn optimizeSurrogateMappings(surrogateMappings);\n\t\t};\n\n\t\tvar createSurrogateCharacterClasses = function createSurrogateCharacterClasses(surrogateMappings) {\n\t\t\tvar result = [];\n\t\t\tforEach(surrogateMappings, function (surrogateMapping) {\n\t\t\t\tvar highSurrogates = surrogateMapping[0];\n\t\t\t\tvar lowSurrogates = surrogateMapping[1];\n\t\t\t\tresult.push(createBMPCharacterClasses(highSurrogates) + createBMPCharacterClasses(lowSurrogates));\n\t\t\t});\n\t\t\treturn result.join('|');\n\t\t};\n\n\t\tvar createCharacterClassesFromData = function createCharacterClassesFromData(data, bmpOnly, hasUnicodeFlag) {\n\t\t\tif (hasUnicodeFlag) {\n\t\t\t\treturn createUnicodeCharacterClasses(data);\n\t\t\t}\n\t\t\tvar result = [];\n\n\t\t\tvar parts = splitAtBMP(data);\n\t\t\tvar loneHighSurrogates = parts.loneHighSurrogates;\n\t\t\tvar loneLowSurrogates = parts.loneLowSurrogates;\n\t\t\tvar bmp = parts.bmp;\n\t\t\tvar astral = parts.astral;\n\t\t\tvar hasLoneHighSurrogates = !dataIsEmpty(loneHighSurrogates);\n\t\t\tvar hasLoneLowSurrogates = !dataIsEmpty(loneLowSurrogates);\n\n\t\t\tvar surrogateMappings = surrogateSet(astral);\n\n\t\t\tif (bmpOnly) {\n\t\t\t\tbmp = dataAddData(bmp, loneHighSurrogates);\n\t\t\t\thasLoneHighSurrogates = false;\n\t\t\t\tbmp = dataAddData(bmp, loneLowSurrogates);\n\t\t\t\thasLoneLowSurrogates = false;\n\t\t\t}\n\n\t\t\tif (!dataIsEmpty(bmp)) {\n\t\t\t\t// The data set contains BMP code points that are not high surrogates\n\t\t\t\t// needed for astral code points in the set.\n\t\t\t\tresult.push(createBMPCharacterClasses(bmp));\n\t\t\t}\n\t\t\tif (surrogateMappings.length) {\n\t\t\t\t// The data set contains astral code points; append character classes\n\t\t\t\t// based on their surrogate pairs.\n\t\t\t\tresult.push(createSurrogateCharacterClasses(surrogateMappings));\n\t\t\t}\n\t\t\t// https://gist.github.com/mathiasbynens/bbe7f870208abcfec860\n\t\t\tif (hasLoneHighSurrogates) {\n\t\t\t\tresult.push(createBMPCharacterClasses(loneHighSurrogates) +\n\t\t\t\t// Make sure the high surrogates aren’t part of a surrogate pair.\n\t\t\t\t'(?![\\\\uDC00-\\\\uDFFF])');\n\t\t\t}\n\t\t\tif (hasLoneLowSurrogates) {\n\t\t\t\tresult.push(\n\t\t\t\t// It is not possible to accurately assert the low surrogates aren’t\n\t\t\t\t// part of a surrogate pair, since JavaScript regular expressions do\n\t\t\t\t// not support lookbehind.\n\t\t\t\t'(?:[^\\\\uD800-\\\\uDBFF]|^)' + createBMPCharacterClasses(loneLowSurrogates));\n\t\t\t}\n\t\t\treturn result.join('|');\n\t\t};\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\t// `regenerate` can be used as a constructor (and new methods can be added to\n\t\t// its prototype) but also as a regular function, the latter of which is the\n\t\t// documented and most common usage. For that reason, it’s not capitalized.\n\t\tvar regenerate = function regenerate(value) {\n\t\t\tif (arguments.length > 1) {\n\t\t\t\tvalue = slice.call(arguments);\n\t\t\t}\n\t\t\tif (this instanceof regenerate) {\n\t\t\t\tthis.data = [];\n\t\t\t\treturn value ? this.add(value) : this;\n\t\t\t}\n\t\t\treturn new regenerate().add(value);\n\t\t};\n\n\t\tregenerate.version = '1.3.2';\n\n\t\tvar proto = regenerate.prototype;\n\t\textend(proto, {\n\t\t\t'add': function add(value) {\n\t\t\t\tvar $this = this;\n\t\t\t\tif (value == null) {\n\t\t\t\t\treturn $this;\n\t\t\t\t}\n\t\t\t\tif (value instanceof regenerate) {\n\t\t\t\t\t// Allow passing other Regenerate instances.\n\t\t\t\t\t$this.data = dataAddData($this.data, value.data);\n\t\t\t\t\treturn $this;\n\t\t\t\t}\n\t\t\t\tif (arguments.length > 1) {\n\t\t\t\t\tvalue = slice.call(arguments);\n\t\t\t\t}\n\t\t\t\tif (isArray(value)) {\n\t\t\t\t\tforEach(value, function (item) {\n\t\t\t\t\t\t$this.add(item);\n\t\t\t\t\t});\n\t\t\t\t\treturn $this;\n\t\t\t\t}\n\t\t\t\t$this.data = dataAdd($this.data, isNumber(value) ? value : symbolToCodePoint(value));\n\t\t\t\treturn $this;\n\t\t\t},\n\t\t\t'remove': function remove(value) {\n\t\t\t\tvar $this = this;\n\t\t\t\tif (value == null) {\n\t\t\t\t\treturn $this;\n\t\t\t\t}\n\t\t\t\tif (value instanceof regenerate) {\n\t\t\t\t\t// Allow passing other Regenerate instances.\n\t\t\t\t\t$this.data = dataRemoveData($this.data, value.data);\n\t\t\t\t\treturn $this;\n\t\t\t\t}\n\t\t\t\tif (arguments.length > 1) {\n\t\t\t\t\tvalue = slice.call(arguments);\n\t\t\t\t}\n\t\t\t\tif (isArray(value)) {\n\t\t\t\t\tforEach(value, function (item) {\n\t\t\t\t\t\t$this.remove(item);\n\t\t\t\t\t});\n\t\t\t\t\treturn $this;\n\t\t\t\t}\n\t\t\t\t$this.data = dataRemove($this.data, isNumber(value) ? value : symbolToCodePoint(value));\n\t\t\t\treturn $this;\n\t\t\t},\n\t\t\t'addRange': function addRange(start, end) {\n\t\t\t\tvar $this = this;\n\t\t\t\t$this.data = dataAddRange($this.data, isNumber(start) ? start : symbolToCodePoint(start), isNumber(end) ? end : symbolToCodePoint(end));\n\t\t\t\treturn $this;\n\t\t\t},\n\t\t\t'removeRange': function removeRange(start, end) {\n\t\t\t\tvar $this = this;\n\t\t\t\tvar startCodePoint = isNumber(start) ? start : symbolToCodePoint(start);\n\t\t\t\tvar endCodePoint = isNumber(end) ? end : symbolToCodePoint(end);\n\t\t\t\t$this.data = dataRemoveRange($this.data, startCodePoint, endCodePoint);\n\t\t\t\treturn $this;\n\t\t\t},\n\t\t\t'intersection': function intersection(argument) {\n\t\t\t\tvar $this = this;\n\t\t\t\t// Allow passing other Regenerate instances.\n\t\t\t\t// TODO: Optimize this by writing and using `dataIntersectionData()`.\n\t\t\t\tvar array = argument instanceof regenerate ? dataToArray(argument.data) : argument;\n\t\t\t\t$this.data = dataIntersection($this.data, array);\n\t\t\t\treturn $this;\n\t\t\t},\n\t\t\t'contains': function contains(codePoint) {\n\t\t\t\treturn dataContains(this.data, isNumber(codePoint) ? codePoint : symbolToCodePoint(codePoint));\n\t\t\t},\n\t\t\t'clone': function clone() {\n\t\t\t\tvar set = new regenerate();\n\t\t\t\tset.data = this.data.slice(0);\n\t\t\t\treturn set;\n\t\t\t},\n\t\t\t'toString': function toString(options) {\n\t\t\t\tvar result = createCharacterClassesFromData(this.data, options ? options.bmpOnly : false, options ? options.hasUnicodeFlag : false);\n\t\t\t\tif (!result) {\n\t\t\t\t\t// For an empty set, return something that can be inserted `/here/` to\n\t\t\t\t\t// form a valid regular expression. Avoid `(?:)` since that matches the\n\t\t\t\t\t// empty string.\n\t\t\t\t\treturn '[]';\n\t\t\t\t}\n\t\t\t\t// Use `\\0` instead of `\\x00` where possible.\n\t\t\t\treturn result.replace(regexNull, '\\\\0$1');\n\t\t\t},\n\t\t\t'toRegExp': function toRegExp(flags) {\n\t\t\t\tvar pattern = this.toString(flags && flags.indexOf('u') != -1 ? { 'hasUnicodeFlag': true } : null);\n\t\t\t\treturn RegExp(pattern, flags || '');\n\t\t\t},\n\t\t\t'valueOf': function valueOf() {\n\t\t\t\t// Note: `valueOf` is aliased as `toArray`.\n\t\t\t\treturn dataToArray(this.data);\n\t\t\t}\n\t\t});\n\n\t\tproto.toArray = proto.valueOf;\n\n\t\t// Some AMD build optimizers, like r.js, check for specific condition patterns\n\t\t// like the following:\n\t\tif (\"function\" == 'function' && _typeof(__webpack_require__(49)) == 'object' && __webpack_require__(49)) {\n\t\t\t!(__WEBPACK_AMD_DEFINE_RESULT__ = function () {\n\t\t\t\treturn regenerate;\n\t\t\t}.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n\t\t} else if (freeExports && !freeExports.nodeType) {\n\t\t\tif (freeModule) {\n\t\t\t\t// in Node.js, io.js, or RingoJS v0.8.0+\n\t\t\t\tfreeModule.exports = regenerate;\n\t\t\t} else {\n\t\t\t\t// in Narwhal or RingoJS v0.7.0-\n\t\t\t\tfreeExports.regenerate = regenerate;\n\t\t\t}\n\t\t} else {\n\t\t\t// in Rhino or a web browser\n\t\t\troot.regenerate = regenerate;\n\t\t}\n\t})(undefined);\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module), (function() { return this; }())))\n\n/***/ }),\n/* 283 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\tvar _assert = __webpack_require__(64);\n\n\tvar _assert2 = _interopRequireDefault(_assert);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _leap = __webpack_require__(607);\n\n\tvar leap = _interopRequireWildcard(_leap);\n\n\tvar _meta = __webpack_require__(608);\n\n\tvar meta = _interopRequireWildcard(_meta);\n\n\tvar _util = __webpack_require__(116);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar hasOwn = Object.prototype.hasOwnProperty; /**\n\t                                               * Copyright (c) 2014, Facebook, Inc.\n\t                                               * All rights reserved.\n\t                                               *\n\t                                               * This source code is licensed under the BSD-style license found in the\n\t                                               * https://raw.github.com/facebook/regenerator/master/LICENSE file. An\n\t                                               * additional grant of patent rights can be found in the PATENTS file in\n\t                                               * the same directory.\n\t                                               */\n\n\tfunction Emitter(contextId) {\n\t  _assert2.default.ok(this instanceof Emitter);\n\t  t.assertIdentifier(contextId);\n\n\t  // Used to generate unique temporary names.\n\t  this.nextTempId = 0;\n\n\t  // In order to make sure the context object does not collide with\n\t  // anything in the local scope, we might have to rename it, so we\n\t  // refer to it symbolically instead of just assuming that it will be\n\t  // called \"context\".\n\t  this.contextId = contextId;\n\n\t  // An append-only list of Statements that grows each time this.emit is\n\t  // called.\n\t  this.listing = [];\n\n\t  // A sparse array whose keys correspond to locations in this.listing\n\t  // that have been marked as branch/jump targets.\n\t  this.marked = [true];\n\n\t  // The last location will be marked when this.getDispatchLoop is\n\t  // called.\n\t  this.finalLoc = loc();\n\n\t  // A list of all leap.TryEntry statements emitted.\n\t  this.tryEntries = [];\n\n\t  // Each time we evaluate the body of a loop, we tell this.leapManager\n\t  // to enter a nested loop context that determines the meaning of break\n\t  // and continue statements therein.\n\t  this.leapManager = new leap.LeapManager(this);\n\t}\n\n\tvar Ep = Emitter.prototype;\n\texports.Emitter = Emitter;\n\n\t// Offsets into this.listing that could be used as targets for branches or\n\t// jumps are represented as numeric Literal nodes. This representation has\n\t// the amazingly convenient benefit of allowing the exact value of the\n\t// location to be determined at any time, even after generating code that\n\t// refers to the location.\n\tfunction loc() {\n\t  return t.numericLiteral(-1);\n\t}\n\n\t// Sets the exact value of the given location to the offset of the next\n\t// Statement emitted.\n\tEp.mark = function (loc) {\n\t  t.assertLiteral(loc);\n\t  var index = this.listing.length;\n\t  if (loc.value === -1) {\n\t    loc.value = index;\n\t  } else {\n\t    // Locations can be marked redundantly, but their values cannot change\n\t    // once set the first time.\n\t    _assert2.default.strictEqual(loc.value, index);\n\t  }\n\t  this.marked[index] = true;\n\t  return loc;\n\t};\n\n\tEp.emit = function (node) {\n\t  if (t.isExpression(node)) {\n\t    node = t.expressionStatement(node);\n\t  }\n\n\t  t.assertStatement(node);\n\t  this.listing.push(node);\n\t};\n\n\t// Shorthand for emitting assignment statements. This will come in handy\n\t// for assignments to temporary variables.\n\tEp.emitAssign = function (lhs, rhs) {\n\t  this.emit(this.assign(lhs, rhs));\n\t  return lhs;\n\t};\n\n\t// Shorthand for an assignment statement.\n\tEp.assign = function (lhs, rhs) {\n\t  return t.expressionStatement(t.assignmentExpression(\"=\", lhs, rhs));\n\t};\n\n\t// Convenience function for generating expressions like context.next,\n\t// context.sent, and context.rval.\n\tEp.contextProperty = function (name, computed) {\n\t  return t.memberExpression(this.contextId, computed ? t.stringLiteral(name) : t.identifier(name), !!computed);\n\t};\n\n\t// Shorthand for setting context.rval and jumping to `context.stop()`.\n\tEp.stop = function (rval) {\n\t  if (rval) {\n\t    this.setReturnValue(rval);\n\t  }\n\n\t  this.jump(this.finalLoc);\n\t};\n\n\tEp.setReturnValue = function (valuePath) {\n\t  t.assertExpression(valuePath.value);\n\n\t  this.emitAssign(this.contextProperty(\"rval\"), this.explodeExpression(valuePath));\n\t};\n\n\tEp.clearPendingException = function (tryLoc, assignee) {\n\t  t.assertLiteral(tryLoc);\n\n\t  var catchCall = t.callExpression(this.contextProperty(\"catch\", true), [tryLoc]);\n\n\t  if (assignee) {\n\t    this.emitAssign(assignee, catchCall);\n\t  } else {\n\t    this.emit(catchCall);\n\t  }\n\t};\n\n\t// Emits code for an unconditional jump to the given location, even if the\n\t// exact value of the location is not yet known.\n\tEp.jump = function (toLoc) {\n\t  this.emitAssign(this.contextProperty(\"next\"), toLoc);\n\t  this.emit(t.breakStatement());\n\t};\n\n\t// Conditional jump.\n\tEp.jumpIf = function (test, toLoc) {\n\t  t.assertExpression(test);\n\t  t.assertLiteral(toLoc);\n\n\t  this.emit(t.ifStatement(test, t.blockStatement([this.assign(this.contextProperty(\"next\"), toLoc), t.breakStatement()])));\n\t};\n\n\t// Conditional jump, with the condition negated.\n\tEp.jumpIfNot = function (test, toLoc) {\n\t  t.assertExpression(test);\n\t  t.assertLiteral(toLoc);\n\n\t  var negatedTest = void 0;\n\t  if (t.isUnaryExpression(test) && test.operator === \"!\") {\n\t    // Avoid double negation.\n\t    negatedTest = test.argument;\n\t  } else {\n\t    negatedTest = t.unaryExpression(\"!\", test);\n\t  }\n\n\t  this.emit(t.ifStatement(negatedTest, t.blockStatement([this.assign(this.contextProperty(\"next\"), toLoc), t.breakStatement()])));\n\t};\n\n\t// Returns a unique MemberExpression that can be used to store and\n\t// retrieve temporary values. Since the object of the member expression is\n\t// the context object, which is presumed to coexist peacefully with all\n\t// other local variables, and since we just increment `nextTempId`\n\t// monotonically, uniqueness is assured.\n\tEp.makeTempVar = function () {\n\t  return this.contextProperty(\"t\" + this.nextTempId++);\n\t};\n\n\tEp.getContextFunction = function (id) {\n\t  return t.functionExpression(id || null /*Anonymous*/\n\t  , [this.contextId], t.blockStatement([this.getDispatchLoop()]), false, // Not a generator anymore!\n\t  false // Nor an expression.\n\t  );\n\t};\n\n\t// Turns this.listing into a loop of the form\n\t//\n\t//   while (1) switch (context.next) {\n\t//   case 0:\n\t//   ...\n\t//   case n:\n\t//     return context.stop();\n\t//   }\n\t//\n\t// Each marked location in this.listing will correspond to one generated\n\t// case statement.\n\tEp.getDispatchLoop = function () {\n\t  var self = this;\n\t  var cases = [];\n\t  var current = void 0;\n\n\t  // If we encounter a break, continue, or return statement in a switch\n\t  // case, we can skip the rest of the statements until the next case.\n\t  var alreadyEnded = false;\n\n\t  self.listing.forEach(function (stmt, i) {\n\t    if (self.marked.hasOwnProperty(i)) {\n\t      cases.push(t.switchCase(t.numericLiteral(i), current = []));\n\t      alreadyEnded = false;\n\t    }\n\n\t    if (!alreadyEnded) {\n\t      current.push(stmt);\n\t      if (t.isCompletionStatement(stmt)) alreadyEnded = true;\n\t    }\n\t  });\n\n\t  // Now that we know how many statements there will be in this.listing,\n\t  // we can finally resolve this.finalLoc.value.\n\t  this.finalLoc.value = this.listing.length;\n\n\t  cases.push(t.switchCase(this.finalLoc, [\n\t    // Intentionally fall through to the \"end\" case...\n\t  ]),\n\n\t  // So that the runtime can jump to the final location without having\n\t  // to know its offset, we provide the \"end\" case as a synonym.\n\t  t.switchCase(t.stringLiteral(\"end\"), [\n\t  // This will check/clear both context.thrown and context.rval.\n\t  t.returnStatement(t.callExpression(this.contextProperty(\"stop\"), []))]));\n\n\t  return t.whileStatement(t.numericLiteral(1), t.switchStatement(t.assignmentExpression(\"=\", this.contextProperty(\"prev\"), this.contextProperty(\"next\")), cases));\n\t};\n\n\tEp.getTryLocsList = function () {\n\t  if (this.tryEntries.length === 0) {\n\t    // To avoid adding a needless [] to the majority of runtime.wrap\n\t    // argument lists, force the caller to handle this case specially.\n\t    return null;\n\t  }\n\n\t  var lastLocValue = 0;\n\n\t  return t.arrayExpression(this.tryEntries.map(function (tryEntry) {\n\t    var thisLocValue = tryEntry.firstLoc.value;\n\t    _assert2.default.ok(thisLocValue >= lastLocValue, \"try entries out of order\");\n\t    lastLocValue = thisLocValue;\n\n\t    var ce = tryEntry.catchEntry;\n\t    var fe = tryEntry.finallyEntry;\n\n\t    var locs = [tryEntry.firstLoc,\n\t    // The null here makes a hole in the array.\n\t    ce ? ce.firstLoc : null];\n\n\t    if (fe) {\n\t      locs[2] = fe.firstLoc;\n\t      locs[3] = fe.afterLoc;\n\t    }\n\n\t    return t.arrayExpression(locs);\n\t  }));\n\t};\n\n\t// All side effects must be realized in order.\n\n\t// If any subexpression harbors a leap, all subexpressions must be\n\t// neutered of side effects.\n\n\t// No destructive modification of AST nodes.\n\n\tEp.explode = function (path, ignoreResult) {\n\t  var node = path.node;\n\t  var self = this;\n\n\t  t.assertNode(node);\n\n\t  if (t.isDeclaration(node)) throw getDeclError(node);\n\n\t  if (t.isStatement(node)) return self.explodeStatement(path);\n\n\t  if (t.isExpression(node)) return self.explodeExpression(path, ignoreResult);\n\n\t  switch (node.type) {\n\t    case \"Program\":\n\t      return path.get(\"body\").map(self.explodeStatement, self);\n\n\t    case \"VariableDeclarator\":\n\t      throw getDeclError(node);\n\n\t    // These node types should be handled by their parent nodes\n\t    // (ObjectExpression, SwitchStatement, and TryStatement, respectively).\n\t    case \"Property\":\n\t    case \"SwitchCase\":\n\t    case \"CatchClause\":\n\t      throw new Error(node.type + \" nodes should be handled by their parents\");\n\n\t    default:\n\t      throw new Error(\"unknown Node of type \" + (0, _stringify2.default)(node.type));\n\t  }\n\t};\n\n\tfunction getDeclError(node) {\n\t  return new Error(\"all declarations should have been transformed into \" + \"assignments before the Exploder began its work: \" + (0, _stringify2.default)(node));\n\t}\n\n\tEp.explodeStatement = function (path, labelId) {\n\t  var stmt = path.node;\n\t  var self = this;\n\t  var before = void 0,\n\t      after = void 0,\n\t      head = void 0;\n\n\t  t.assertStatement(stmt);\n\n\t  if (labelId) {\n\t    t.assertIdentifier(labelId);\n\t  } else {\n\t    labelId = null;\n\t  }\n\n\t  // Explode BlockStatement nodes even if they do not contain a yield,\n\t  // because we don't want or need the curly braces.\n\t  if (t.isBlockStatement(stmt)) {\n\t    path.get(\"body\").forEach(function (path) {\n\t      self.explodeStatement(path);\n\t    });\n\t    return;\n\t  }\n\n\t  if (!meta.containsLeap(stmt)) {\n\t    // Technically we should be able to avoid emitting the statement\n\t    // altogether if !meta.hasSideEffects(stmt), but that leads to\n\t    // confusing generated code (for instance, `while (true) {}` just\n\t    // disappears) and is probably a more appropriate job for a dedicated\n\t    // dead code elimination pass.\n\t    self.emit(stmt);\n\t    return;\n\t  }\n\n\t  switch (stmt.type) {\n\t    case \"ExpressionStatement\":\n\t      self.explodeExpression(path.get(\"expression\"), true);\n\t      break;\n\n\t    case \"LabeledStatement\":\n\t      after = loc();\n\n\t      // Did you know you can break from any labeled block statement or\n\t      // control structure? Well, you can! Note: when a labeled loop is\n\t      // encountered, the leap.LabeledEntry created here will immediately\n\t      // enclose a leap.LoopEntry on the leap manager's stack, and both\n\t      // entries will have the same label. Though this works just fine, it\n\t      // may seem a bit redundant. In theory, we could check here to\n\t      // determine if stmt knows how to handle its own label; for example,\n\t      // stmt happens to be a WhileStatement and so we know it's going to\n\t      // establish its own LoopEntry when we explode it (below). Then this\n\t      // LabeledEntry would be unnecessary. Alternatively, we might be\n\t      // tempted not to pass stmt.label down into self.explodeStatement,\n\t      // because we've handled the label here, but that's a mistake because\n\t      // labeled loops may contain labeled continue statements, which is not\n\t      // something we can handle in this generic case. All in all, I think a\n\t      // little redundancy greatly simplifies the logic of this case, since\n\t      // it's clear that we handle all possible LabeledStatements correctly\n\t      // here, regardless of whether they interact with the leap manager\n\t      // themselves. Also remember that labels and break/continue-to-label\n\t      // statements are rare, and all of this logic happens at transform\n\t      // time, so it has no additional runtime cost.\n\t      self.leapManager.withEntry(new leap.LabeledEntry(after, stmt.label), function () {\n\t        self.explodeStatement(path.get(\"body\"), stmt.label);\n\t      });\n\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"WhileStatement\":\n\t      before = loc();\n\t      after = loc();\n\n\t      self.mark(before);\n\t      self.jumpIfNot(self.explodeExpression(path.get(\"test\")), after);\n\t      self.leapManager.withEntry(new leap.LoopEntry(after, before, labelId), function () {\n\t        self.explodeStatement(path.get(\"body\"));\n\t      });\n\t      self.jump(before);\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"DoWhileStatement\":\n\t      var first = loc();\n\t      var test = loc();\n\t      after = loc();\n\n\t      self.mark(first);\n\t      self.leapManager.withEntry(new leap.LoopEntry(after, test, labelId), function () {\n\t        self.explode(path.get(\"body\"));\n\t      });\n\t      self.mark(test);\n\t      self.jumpIf(self.explodeExpression(path.get(\"test\")), first);\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"ForStatement\":\n\t      head = loc();\n\t      var update = loc();\n\t      after = loc();\n\n\t      if (stmt.init) {\n\t        // We pass true here to indicate that if stmt.init is an expression\n\t        // then we do not care about its result.\n\t        self.explode(path.get(\"init\"), true);\n\t      }\n\n\t      self.mark(head);\n\n\t      if (stmt.test) {\n\t        self.jumpIfNot(self.explodeExpression(path.get(\"test\")), after);\n\t      } else {\n\t        // No test means continue unconditionally.\n\t      }\n\n\t      self.leapManager.withEntry(new leap.LoopEntry(after, update, labelId), function () {\n\t        self.explodeStatement(path.get(\"body\"));\n\t      });\n\n\t      self.mark(update);\n\n\t      if (stmt.update) {\n\t        // We pass true here to indicate that if stmt.update is an\n\t        // expression then we do not care about its result.\n\t        self.explode(path.get(\"update\"), true);\n\t      }\n\n\t      self.jump(head);\n\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"TypeCastExpression\":\n\t      return self.explodeExpression(path.get(\"expression\"));\n\n\t    case \"ForInStatement\":\n\t      head = loc();\n\t      after = loc();\n\n\t      var keyIterNextFn = self.makeTempVar();\n\t      self.emitAssign(keyIterNextFn, t.callExpression(util.runtimeProperty(\"keys\"), [self.explodeExpression(path.get(\"right\"))]));\n\n\t      self.mark(head);\n\n\t      var keyInfoTmpVar = self.makeTempVar();\n\t      self.jumpIf(t.memberExpression(t.assignmentExpression(\"=\", keyInfoTmpVar, t.callExpression(keyIterNextFn, [])), t.identifier(\"done\"), false), after);\n\n\t      self.emitAssign(stmt.left, t.memberExpression(keyInfoTmpVar, t.identifier(\"value\"), false));\n\n\t      self.leapManager.withEntry(new leap.LoopEntry(after, head, labelId), function () {\n\t        self.explodeStatement(path.get(\"body\"));\n\t      });\n\n\t      self.jump(head);\n\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"BreakStatement\":\n\t      self.emitAbruptCompletion({\n\t        type: \"break\",\n\t        target: self.leapManager.getBreakLoc(stmt.label)\n\t      });\n\n\t      break;\n\n\t    case \"ContinueStatement\":\n\t      self.emitAbruptCompletion({\n\t        type: \"continue\",\n\t        target: self.leapManager.getContinueLoc(stmt.label)\n\t      });\n\n\t      break;\n\n\t    case \"SwitchStatement\":\n\t      // Always save the discriminant into a temporary variable in case the\n\t      // test expressions overwrite values like context.sent.\n\t      var disc = self.emitAssign(self.makeTempVar(), self.explodeExpression(path.get(\"discriminant\")));\n\n\t      after = loc();\n\t      var defaultLoc = loc();\n\t      var condition = defaultLoc;\n\t      var caseLocs = [];\n\n\t      // If there are no cases, .cases might be undefined.\n\t      var cases = stmt.cases || [];\n\n\t      for (var i = cases.length - 1; i >= 0; --i) {\n\t        var c = cases[i];\n\t        t.assertSwitchCase(c);\n\n\t        if (c.test) {\n\t          condition = t.conditionalExpression(t.binaryExpression(\"===\", disc, c.test), caseLocs[i] = loc(), condition);\n\t        } else {\n\t          caseLocs[i] = defaultLoc;\n\t        }\n\t      }\n\n\t      var discriminant = path.get(\"discriminant\");\n\t      util.replaceWithOrRemove(discriminant, condition);\n\t      self.jump(self.explodeExpression(discriminant));\n\n\t      self.leapManager.withEntry(new leap.SwitchEntry(after), function () {\n\t        path.get(\"cases\").forEach(function (casePath) {\n\t          var i = casePath.key;\n\t          self.mark(caseLocs[i]);\n\n\t          casePath.get(\"consequent\").forEach(function (path) {\n\t            self.explodeStatement(path);\n\t          });\n\t        });\n\t      });\n\n\t      self.mark(after);\n\t      if (defaultLoc.value === -1) {\n\t        self.mark(defaultLoc);\n\t        _assert2.default.strictEqual(after.value, defaultLoc.value);\n\t      }\n\n\t      break;\n\n\t    case \"IfStatement\":\n\t      var elseLoc = stmt.alternate && loc();\n\t      after = loc();\n\n\t      self.jumpIfNot(self.explodeExpression(path.get(\"test\")), elseLoc || after);\n\n\t      self.explodeStatement(path.get(\"consequent\"));\n\n\t      if (elseLoc) {\n\t        self.jump(after);\n\t        self.mark(elseLoc);\n\t        self.explodeStatement(path.get(\"alternate\"));\n\t      }\n\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"ReturnStatement\":\n\t      self.emitAbruptCompletion({\n\t        type: \"return\",\n\t        value: self.explodeExpression(path.get(\"argument\"))\n\t      });\n\n\t      break;\n\n\t    case \"WithStatement\":\n\t      throw new Error(\"WithStatement not supported in generator functions.\");\n\n\t    case \"TryStatement\":\n\t      after = loc();\n\n\t      var handler = stmt.handler;\n\n\t      var catchLoc = handler && loc();\n\t      var catchEntry = catchLoc && new leap.CatchEntry(catchLoc, handler.param);\n\n\t      var finallyLoc = stmt.finalizer && loc();\n\t      var finallyEntry = finallyLoc && new leap.FinallyEntry(finallyLoc, after);\n\n\t      var tryEntry = new leap.TryEntry(self.getUnmarkedCurrentLoc(), catchEntry, finallyEntry);\n\n\t      self.tryEntries.push(tryEntry);\n\t      self.updateContextPrevLoc(tryEntry.firstLoc);\n\n\t      self.leapManager.withEntry(tryEntry, function () {\n\t        self.explodeStatement(path.get(\"block\"));\n\n\t        if (catchLoc) {\n\t          if (finallyLoc) {\n\t            // If we have both a catch block and a finally block, then\n\t            // because we emit the catch block first, we need to jump over\n\t            // it to the finally block.\n\t            self.jump(finallyLoc);\n\t          } else {\n\t            // If there is no finally block, then we need to jump over the\n\t            // catch block to the fall-through location.\n\t            self.jump(after);\n\t          }\n\n\t          self.updateContextPrevLoc(self.mark(catchLoc));\n\n\t          var bodyPath = path.get(\"handler.body\");\n\t          var safeParam = self.makeTempVar();\n\t          self.clearPendingException(tryEntry.firstLoc, safeParam);\n\n\t          bodyPath.traverse(catchParamVisitor, {\n\t            safeParam: safeParam,\n\t            catchParamName: handler.param.name\n\t          });\n\n\t          self.leapManager.withEntry(catchEntry, function () {\n\t            self.explodeStatement(bodyPath);\n\t          });\n\t        }\n\n\t        if (finallyLoc) {\n\t          self.updateContextPrevLoc(self.mark(finallyLoc));\n\n\t          self.leapManager.withEntry(finallyEntry, function () {\n\t            self.explodeStatement(path.get(\"finalizer\"));\n\t          });\n\n\t          self.emit(t.returnStatement(t.callExpression(self.contextProperty(\"finish\"), [finallyEntry.firstLoc])));\n\t        }\n\t      });\n\n\t      self.mark(after);\n\n\t      break;\n\n\t    case \"ThrowStatement\":\n\t      self.emit(t.throwStatement(self.explodeExpression(path.get(\"argument\"))));\n\n\t      break;\n\n\t    default:\n\t      throw new Error(\"unknown Statement of type \" + (0, _stringify2.default)(stmt.type));\n\t  }\n\t};\n\n\tvar catchParamVisitor = {\n\t  Identifier: function Identifier(path, state) {\n\t    if (path.node.name === state.catchParamName && util.isReference(path)) {\n\t      util.replaceWithOrRemove(path, state.safeParam);\n\t    }\n\t  },\n\n\t  Scope: function Scope(path, state) {\n\t    if (path.scope.hasOwnBinding(state.catchParamName)) {\n\t      // Don't descend into nested scopes that shadow the catch\n\t      // parameter with their own declarations.\n\t      path.skip();\n\t    }\n\t  }\n\t};\n\n\tEp.emitAbruptCompletion = function (record) {\n\t  if (!isValidCompletion(record)) {\n\t    _assert2.default.ok(false, \"invalid completion record: \" + (0, _stringify2.default)(record));\n\t  }\n\n\t  _assert2.default.notStrictEqual(record.type, \"normal\", \"normal completions are not abrupt\");\n\n\t  var abruptArgs = [t.stringLiteral(record.type)];\n\n\t  if (record.type === \"break\" || record.type === \"continue\") {\n\t    t.assertLiteral(record.target);\n\t    abruptArgs[1] = record.target;\n\t  } else if (record.type === \"return\" || record.type === \"throw\") {\n\t    if (record.value) {\n\t      t.assertExpression(record.value);\n\t      abruptArgs[1] = record.value;\n\t    }\n\t  }\n\n\t  this.emit(t.returnStatement(t.callExpression(this.contextProperty(\"abrupt\"), abruptArgs)));\n\t};\n\n\tfunction isValidCompletion(record) {\n\t  var type = record.type;\n\n\t  if (type === \"normal\") {\n\t    return !hasOwn.call(record, \"target\");\n\t  }\n\n\t  if (type === \"break\" || type === \"continue\") {\n\t    return !hasOwn.call(record, \"value\") && t.isLiteral(record.target);\n\t  }\n\n\t  if (type === \"return\" || type === \"throw\") {\n\t    return hasOwn.call(record, \"value\") && !hasOwn.call(record, \"target\");\n\t  }\n\n\t  return false;\n\t}\n\n\t// Not all offsets into emitter.listing are potential jump targets. For\n\t// example, execution typically falls into the beginning of a try block\n\t// without jumping directly there. This method returns the current offset\n\t// without marking it, so that a switch case will not necessarily be\n\t// generated for this offset (I say \"not necessarily\" because the same\n\t// location might end up being marked in the process of emitting other\n\t// statements). There's no logical harm in marking such locations as jump\n\t// targets, but minimizing the number of switch cases keeps the generated\n\t// code shorter.\n\tEp.getUnmarkedCurrentLoc = function () {\n\t  return t.numericLiteral(this.listing.length);\n\t};\n\n\t// The context.prev property takes the value of context.next whenever we\n\t// evaluate the switch statement discriminant, which is generally good\n\t// enough for tracking the last location we jumped to, but sometimes\n\t// context.prev needs to be more precise, such as when we fall\n\t// successfully out of a try block and into a finally block without\n\t// jumping. This method exists to update context.prev to the freshest\n\t// available location. If we were implementing a full interpreter, we\n\t// would know the location of the current instruction with complete\n\t// precision at all times, but we don't have that luxury here, as it would\n\t// be costly and verbose to set context.prev before every statement.\n\tEp.updateContextPrevLoc = function (loc) {\n\t  if (loc) {\n\t    t.assertLiteral(loc);\n\n\t    if (loc.value === -1) {\n\t      // If an uninitialized location literal was passed in, set its value\n\t      // to the current this.listing.length.\n\t      loc.value = this.listing.length;\n\t    } else {\n\t      // Otherwise assert that the location matches the current offset.\n\t      _assert2.default.strictEqual(loc.value, this.listing.length);\n\t    }\n\t  } else {\n\t    loc = this.getUnmarkedCurrentLoc();\n\t  }\n\n\t  // Make sure context.prev is up to date in case we fell into this try\n\t  // statement without jumping to it. TODO Consider avoiding this\n\t  // assignment when we know control must have jumped here.\n\t  this.emitAssign(this.contextProperty(\"prev\"), loc);\n\t};\n\n\tEp.explodeExpression = function (path, ignoreResult) {\n\t  var expr = path.node;\n\t  if (expr) {\n\t    t.assertExpression(expr);\n\t  } else {\n\t    return expr;\n\t  }\n\n\t  var self = this;\n\t  var result = void 0; // Used optionally by several cases below.\n\t  var after = void 0;\n\n\t  function finish(expr) {\n\t    t.assertExpression(expr);\n\t    if (ignoreResult) {\n\t      self.emit(expr);\n\t    } else {\n\t      return expr;\n\t    }\n\t  }\n\n\t  // If the expression does not contain a leap, then we either emit the\n\t  // expression as a standalone statement or return it whole.\n\t  if (!meta.containsLeap(expr)) {\n\t    return finish(expr);\n\t  }\n\n\t  // If any child contains a leap (such as a yield or labeled continue or\n\t  // break statement), then any sibling subexpressions will almost\n\t  // certainly have to be exploded in order to maintain the order of their\n\t  // side effects relative to the leaping child(ren).\n\t  var hasLeapingChildren = meta.containsLeap.onlyChildren(expr);\n\n\t  // In order to save the rest of explodeExpression from a combinatorial\n\t  // trainwreck of special cases, explodeViaTempVar is responsible for\n\t  // deciding when a subexpression needs to be \"exploded,\" which is my\n\t  // very technical term for emitting the subexpression as an assignment\n\t  // to a temporary variable and the substituting the temporary variable\n\t  // for the original subexpression. Think of exploded view diagrams, not\n\t  // Michael Bay movies. The point of exploding subexpressions is to\n\t  // control the precise order in which the generated code realizes the\n\t  // side effects of those subexpressions.\n\t  function explodeViaTempVar(tempVar, childPath, ignoreChildResult) {\n\t    _assert2.default.ok(!ignoreChildResult || !tempVar, \"Ignoring the result of a child expression but forcing it to \" + \"be assigned to a temporary variable?\");\n\n\t    var result = self.explodeExpression(childPath, ignoreChildResult);\n\n\t    if (ignoreChildResult) {\n\t      // Side effects already emitted above.\n\n\t    } else if (tempVar || hasLeapingChildren && !t.isLiteral(result)) {\n\t      // If tempVar was provided, then the result will always be assigned\n\t      // to it, even if the result does not otherwise need to be assigned\n\t      // to a temporary variable.  When no tempVar is provided, we have\n\t      // the flexibility to decide whether a temporary variable is really\n\t      // necessary.  Unfortunately, in general, a temporary variable is\n\t      // required whenever any child contains a yield expression, since it\n\t      // is difficult to prove (at all, let alone efficiently) whether\n\t      // this result would evaluate to the same value before and after the\n\t      // yield (see #206).  One narrow case where we can prove it doesn't\n\t      // matter (and thus we do not need a temporary variable) is when the\n\t      // result in question is a Literal value.\n\t      result = self.emitAssign(tempVar || self.makeTempVar(), result);\n\t    }\n\t    return result;\n\t  }\n\n\t  // If ignoreResult is true, then we must take full responsibility for\n\t  // emitting the expression with all its side effects, and we should not\n\t  // return a result.\n\n\t  switch (expr.type) {\n\t    case \"MemberExpression\":\n\t      return finish(t.memberExpression(self.explodeExpression(path.get(\"object\")), expr.computed ? explodeViaTempVar(null, path.get(\"property\")) : expr.property, expr.computed));\n\n\t    case \"CallExpression\":\n\t      var calleePath = path.get(\"callee\");\n\t      var argsPath = path.get(\"arguments\");\n\n\t      var newCallee = void 0;\n\t      var newArgs = [];\n\n\t      var hasLeapingArgs = false;\n\t      argsPath.forEach(function (argPath) {\n\t        hasLeapingArgs = hasLeapingArgs || meta.containsLeap(argPath.node);\n\t      });\n\n\t      if (t.isMemberExpression(calleePath.node)) {\n\t        if (hasLeapingArgs) {\n\t          // If the arguments of the CallExpression contained any yield\n\t          // expressions, then we need to be sure to evaluate the callee\n\t          // before evaluating the arguments, but if the callee was a member\n\t          // expression, then we must be careful that the object of the\n\t          // member expression still gets bound to `this` for the call.\n\n\t          var newObject = explodeViaTempVar(\n\t          // Assign the exploded callee.object expression to a temporary\n\t          // variable so that we can use it twice without reevaluating it.\n\t          self.makeTempVar(), calleePath.get(\"object\"));\n\n\t          var newProperty = calleePath.node.computed ? explodeViaTempVar(null, calleePath.get(\"property\")) : calleePath.node.property;\n\n\t          newArgs.unshift(newObject);\n\n\t          newCallee = t.memberExpression(t.memberExpression(newObject, newProperty, calleePath.node.computed), t.identifier(\"call\"), false);\n\t        } else {\n\t          newCallee = self.explodeExpression(calleePath);\n\t        }\n\t      } else {\n\t        newCallee = explodeViaTempVar(null, calleePath);\n\n\t        if (t.isMemberExpression(newCallee)) {\n\t          // If the callee was not previously a MemberExpression, then the\n\t          // CallExpression was \"unqualified,\" meaning its `this` object\n\t          // should be the global object. If the exploded expression has\n\t          // become a MemberExpression (e.g. a context property, probably a\n\t          // temporary variable), then we need to force it to be unqualified\n\t          // by using the (0, object.property)(...) trick; otherwise, it\n\t          // will receive the object of the MemberExpression as its `this`\n\t          // object.\n\t          newCallee = t.sequenceExpression([t.numericLiteral(0), newCallee]);\n\t        }\n\t      }\n\n\t      argsPath.forEach(function (argPath) {\n\t        newArgs.push(explodeViaTempVar(null, argPath));\n\t      });\n\n\t      return finish(t.callExpression(newCallee, newArgs));\n\n\t    case \"NewExpression\":\n\t      return finish(t.newExpression(explodeViaTempVar(null, path.get(\"callee\")), path.get(\"arguments\").map(function (argPath) {\n\t        return explodeViaTempVar(null, argPath);\n\t      })));\n\n\t    case \"ObjectExpression\":\n\t      return finish(t.objectExpression(path.get(\"properties\").map(function (propPath) {\n\t        if (propPath.isObjectProperty()) {\n\t          return t.objectProperty(propPath.node.key, explodeViaTempVar(null, propPath.get(\"value\")), propPath.node.computed);\n\t        } else {\n\t          return propPath.node;\n\t        }\n\t      })));\n\n\t    case \"ArrayExpression\":\n\t      return finish(t.arrayExpression(path.get(\"elements\").map(function (elemPath) {\n\t        return explodeViaTempVar(null, elemPath);\n\t      })));\n\n\t    case \"SequenceExpression\":\n\t      var lastIndex = expr.expressions.length - 1;\n\n\t      path.get(\"expressions\").forEach(function (exprPath) {\n\t        if (exprPath.key === lastIndex) {\n\t          result = self.explodeExpression(exprPath, ignoreResult);\n\t        } else {\n\t          self.explodeExpression(exprPath, true);\n\t        }\n\t      });\n\n\t      return result;\n\n\t    case \"LogicalExpression\":\n\t      after = loc();\n\n\t      if (!ignoreResult) {\n\t        result = self.makeTempVar();\n\t      }\n\n\t      var left = explodeViaTempVar(result, path.get(\"left\"));\n\n\t      if (expr.operator === \"&&\") {\n\t        self.jumpIfNot(left, after);\n\t      } else {\n\t        _assert2.default.strictEqual(expr.operator, \"||\");\n\t        self.jumpIf(left, after);\n\t      }\n\n\t      explodeViaTempVar(result, path.get(\"right\"), ignoreResult);\n\n\t      self.mark(after);\n\n\t      return result;\n\n\t    case \"ConditionalExpression\":\n\t      var elseLoc = loc();\n\t      after = loc();\n\t      var test = self.explodeExpression(path.get(\"test\"));\n\n\t      self.jumpIfNot(test, elseLoc);\n\n\t      if (!ignoreResult) {\n\t        result = self.makeTempVar();\n\t      }\n\n\t      explodeViaTempVar(result, path.get(\"consequent\"), ignoreResult);\n\t      self.jump(after);\n\n\t      self.mark(elseLoc);\n\t      explodeViaTempVar(result, path.get(\"alternate\"), ignoreResult);\n\n\t      self.mark(after);\n\n\t      return result;\n\n\t    case \"UnaryExpression\":\n\t      return finish(t.unaryExpression(expr.operator,\n\t      // Can't (and don't need to) break up the syntax of the argument.\n\t      // Think about delete a[b].\n\t      self.explodeExpression(path.get(\"argument\")), !!expr.prefix));\n\n\t    case \"BinaryExpression\":\n\t      return finish(t.binaryExpression(expr.operator, explodeViaTempVar(null, path.get(\"left\")), explodeViaTempVar(null, path.get(\"right\"))));\n\n\t    case \"AssignmentExpression\":\n\t      return finish(t.assignmentExpression(expr.operator, self.explodeExpression(path.get(\"left\")), self.explodeExpression(path.get(\"right\"))));\n\n\t    case \"UpdateExpression\":\n\t      return finish(t.updateExpression(expr.operator, self.explodeExpression(path.get(\"argument\")), expr.prefix));\n\n\t    case \"YieldExpression\":\n\t      after = loc();\n\t      var arg = expr.argument && self.explodeExpression(path.get(\"argument\"));\n\n\t      if (arg && expr.delegate) {\n\t        var _result = self.makeTempVar();\n\n\t        self.emit(t.returnStatement(t.callExpression(self.contextProperty(\"delegateYield\"), [arg, t.stringLiteral(_result.property.name), after])));\n\n\t        self.mark(after);\n\n\t        return _result;\n\t      }\n\n\t      self.emitAssign(self.contextProperty(\"next\"), after);\n\t      self.emit(t.returnStatement(arg || null));\n\t      self.mark(after);\n\n\t      return self.contextProperty(\"sent\");\n\n\t    default:\n\t      throw new Error(\"unknown Expression of type \" + (0, _stringify2.default)(expr.type));\n\t  }\n\t};\n\n/***/ }),\n/* 284 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function (str) {\n\t\tvar isExtendedLengthPath = /^\\\\\\\\\\?\\\\/.test(str);\n\t\tvar hasNonAscii = /[^\\x00-\\x80]+/.test(str);\n\n\t\tif (isExtendedLengthPath || hasNonAscii) {\n\t\t\treturn str;\n\t\t}\n\n\t\treturn str.replace(/\\\\/g, '/');\n\t};\n\n/***/ }),\n/* 285 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\tvar util = __webpack_require__(63);\n\tvar has = Object.prototype.hasOwnProperty;\n\n\t/**\n\t * A data structure which is a combination of an array and a set. Adding a new\n\t * member is O(1), testing for membership is O(1), and finding the index of an\n\t * element is O(1). Removing elements from the set is not supported. Only\n\t * strings are supported for membership.\n\t */\n\tfunction ArraySet() {\n\t  this._array = [];\n\t  this._set = Object.create(null);\n\t}\n\n\t/**\n\t * Static method for creating ArraySet instances from an existing array.\n\t */\n\tArraySet.fromArray = function ArraySet_fromArray(aArray, aAllowDuplicates) {\n\t  var set = new ArraySet();\n\t  for (var i = 0, len = aArray.length; i < len; i++) {\n\t    set.add(aArray[i], aAllowDuplicates);\n\t  }\n\t  return set;\n\t};\n\n\t/**\n\t * Return how many unique items are in this ArraySet. If duplicates have been\n\t * added, than those do not count towards the size.\n\t *\n\t * @returns Number\n\t */\n\tArraySet.prototype.size = function ArraySet_size() {\n\t  return Object.getOwnPropertyNames(this._set).length;\n\t};\n\n\t/**\n\t * Add the given string to this set.\n\t *\n\t * @param String aStr\n\t */\n\tArraySet.prototype.add = function ArraySet_add(aStr, aAllowDuplicates) {\n\t  var sStr = util.toSetString(aStr);\n\t  var isDuplicate = has.call(this._set, sStr);\n\t  var idx = this._array.length;\n\t  if (!isDuplicate || aAllowDuplicates) {\n\t    this._array.push(aStr);\n\t  }\n\t  if (!isDuplicate) {\n\t    this._set[sStr] = idx;\n\t  }\n\t};\n\n\t/**\n\t * Is the given string a member of this set?\n\t *\n\t * @param String aStr\n\t */\n\tArraySet.prototype.has = function ArraySet_has(aStr) {\n\t  var sStr = util.toSetString(aStr);\n\t  return has.call(this._set, sStr);\n\t};\n\n\t/**\n\t * What is the index of the given string in the array?\n\t *\n\t * @param String aStr\n\t */\n\tArraySet.prototype.indexOf = function ArraySet_indexOf(aStr) {\n\t  var sStr = util.toSetString(aStr);\n\t  if (has.call(this._set, sStr)) {\n\t    return this._set[sStr];\n\t  }\n\t  throw new Error('\"' + aStr + '\" is not in the set.');\n\t};\n\n\t/**\n\t * What is the element at the given index?\n\t *\n\t * @param Number aIdx\n\t */\n\tArraySet.prototype.at = function ArraySet_at(aIdx) {\n\t  if (aIdx >= 0 && aIdx < this._array.length) {\n\t    return this._array[aIdx];\n\t  }\n\t  throw new Error('No element indexed by ' + aIdx);\n\t};\n\n\t/**\n\t * Returns the array representation of this set (which has the proper indices\n\t * indicated by indexOf). Note that this is a copy of the internal array used\n\t * for storing the members so that no one can mess with internal state.\n\t */\n\tArraySet.prototype.toArray = function ArraySet_toArray() {\n\t  return this._array.slice();\n\t};\n\n\texports.ArraySet = ArraySet;\n\n/***/ }),\n/* 286 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t *\n\t * Based on the Base 64 VLQ implementation in Closure Compiler:\n\t * https://code.google.com/p/closure-compiler/source/browse/trunk/src/com/google/debugging/sourcemap/Base64VLQ.java\n\t *\n\t * Copyright 2011 The Closure Compiler Authors. All rights reserved.\n\t * Redistribution and use in source and binary forms, with or without\n\t * modification, are permitted provided that the following conditions are\n\t * met:\n\t *\n\t *  * Redistributions of source code must retain the above copyright\n\t *    notice, this list of conditions and the following disclaimer.\n\t *  * Redistributions in binary form must reproduce the above\n\t *    copyright notice, this list of conditions and the following\n\t *    disclaimer in the documentation and/or other materials provided\n\t *    with the distribution.\n\t *  * Neither the name of Google Inc. nor the names of its\n\t *    contributors may be used to endorse or promote products derived\n\t *    from this software without specific prior written permission.\n\t *\n\t * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\t * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\t * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\t * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\t * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\t * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\t * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\t * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\t * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\t * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t */\n\n\tvar base64 = __webpack_require__(616);\n\n\t// A single base 64 digit can contain 6 bits of data. For the base 64 variable\n\t// length quantities we use in the source map spec, the first bit is the sign,\n\t// the next four bits are the actual value, and the 6th bit is the\n\t// continuation bit. The continuation bit tells us whether there are more\n\t// digits in this value following this digit.\n\t//\n\t//   Continuation\n\t//   |    Sign\n\t//   |    |\n\t//   V    V\n\t//   101011\n\n\tvar VLQ_BASE_SHIFT = 5;\n\n\t// binary: 100000\n\tvar VLQ_BASE = 1 << VLQ_BASE_SHIFT;\n\n\t// binary: 011111\n\tvar VLQ_BASE_MASK = VLQ_BASE - 1;\n\n\t// binary: 100000\n\tvar VLQ_CONTINUATION_BIT = VLQ_BASE;\n\n\t/**\n\t * Converts from a two-complement value to a value where the sign bit is\n\t * placed in the least significant bit.  For example, as decimals:\n\t *   1 becomes 2 (10 binary), -1 becomes 3 (11 binary)\n\t *   2 becomes 4 (100 binary), -2 becomes 5 (101 binary)\n\t */\n\tfunction toVLQSigned(aValue) {\n\t  return aValue < 0 ? (-aValue << 1) + 1 : (aValue << 1) + 0;\n\t}\n\n\t/**\n\t * Converts to a two-complement value from a value where the sign bit is\n\t * placed in the least significant bit.  For example, as decimals:\n\t *   2 (10 binary) becomes 1, 3 (11 binary) becomes -1\n\t *   4 (100 binary) becomes 2, 5 (101 binary) becomes -2\n\t */\n\tfunction fromVLQSigned(aValue) {\n\t  var isNegative = (aValue & 1) === 1;\n\t  var shifted = aValue >> 1;\n\t  return isNegative ? -shifted : shifted;\n\t}\n\n\t/**\n\t * Returns the base 64 VLQ encoded value.\n\t */\n\texports.encode = function base64VLQ_encode(aValue) {\n\t  var encoded = \"\";\n\t  var digit;\n\n\t  var vlq = toVLQSigned(aValue);\n\n\t  do {\n\t    digit = vlq & VLQ_BASE_MASK;\n\t    vlq >>>= VLQ_BASE_SHIFT;\n\t    if (vlq > 0) {\n\t      // There are still more digits in this value, so we must make sure the\n\t      // continuation bit is marked.\n\t      digit |= VLQ_CONTINUATION_BIT;\n\t    }\n\t    encoded += base64.encode(digit);\n\t  } while (vlq > 0);\n\n\t  return encoded;\n\t};\n\n\t/**\n\t * Decodes the next base 64 VLQ value from the given string and returns the\n\t * value and the rest of the string via the out parameter.\n\t */\n\texports.decode = function base64VLQ_decode(aStr, aIndex, aOutParam) {\n\t  var strLen = aStr.length;\n\t  var result = 0;\n\t  var shift = 0;\n\t  var continuation, digit;\n\n\t  do {\n\t    if (aIndex >= strLen) {\n\t      throw new Error(\"Expected more digits in base 64 VLQ value.\");\n\t    }\n\n\t    digit = base64.decode(aStr.charCodeAt(aIndex++));\n\t    if (digit === -1) {\n\t      throw new Error(\"Invalid base64 digit: \" + aStr.charAt(aIndex - 1));\n\t    }\n\n\t    continuation = !!(digit & VLQ_CONTINUATION_BIT);\n\t    digit &= VLQ_BASE_MASK;\n\t    result = result + (digit << shift);\n\t    shift += VLQ_BASE_SHIFT;\n\t  } while (continuation);\n\n\t  aOutParam.value = fromVLQSigned(result);\n\t  aOutParam.rest = aIndex;\n\t};\n\n/***/ }),\n/* 287 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\tvar base64VLQ = __webpack_require__(286);\n\tvar util = __webpack_require__(63);\n\tvar ArraySet = __webpack_require__(285).ArraySet;\n\tvar MappingList = __webpack_require__(618).MappingList;\n\n\t/**\n\t * An instance of the SourceMapGenerator represents a source map which is\n\t * being built incrementally. You may pass an object with the following\n\t * properties:\n\t *\n\t *   - file: The filename of the generated source.\n\t *   - sourceRoot: A root for all relative URLs in this source map.\n\t */\n\tfunction SourceMapGenerator(aArgs) {\n\t  if (!aArgs) {\n\t    aArgs = {};\n\t  }\n\t  this._file = util.getArg(aArgs, 'file', null);\n\t  this._sourceRoot = util.getArg(aArgs, 'sourceRoot', null);\n\t  this._skipValidation = util.getArg(aArgs, 'skipValidation', false);\n\t  this._sources = new ArraySet();\n\t  this._names = new ArraySet();\n\t  this._mappings = new MappingList();\n\t  this._sourcesContents = null;\n\t}\n\n\tSourceMapGenerator.prototype._version = 3;\n\n\t/**\n\t * Creates a new SourceMapGenerator based on a SourceMapConsumer\n\t *\n\t * @param aSourceMapConsumer The SourceMap.\n\t */\n\tSourceMapGenerator.fromSourceMap = function SourceMapGenerator_fromSourceMap(aSourceMapConsumer) {\n\t  var sourceRoot = aSourceMapConsumer.sourceRoot;\n\t  var generator = new SourceMapGenerator({\n\t    file: aSourceMapConsumer.file,\n\t    sourceRoot: sourceRoot\n\t  });\n\t  aSourceMapConsumer.eachMapping(function (mapping) {\n\t    var newMapping = {\n\t      generated: {\n\t        line: mapping.generatedLine,\n\t        column: mapping.generatedColumn\n\t      }\n\t    };\n\n\t    if (mapping.source != null) {\n\t      newMapping.source = mapping.source;\n\t      if (sourceRoot != null) {\n\t        newMapping.source = util.relative(sourceRoot, newMapping.source);\n\t      }\n\n\t      newMapping.original = {\n\t        line: mapping.originalLine,\n\t        column: mapping.originalColumn\n\t      };\n\n\t      if (mapping.name != null) {\n\t        newMapping.name = mapping.name;\n\t      }\n\t    }\n\n\t    generator.addMapping(newMapping);\n\t  });\n\t  aSourceMapConsumer.sources.forEach(function (sourceFile) {\n\t    var content = aSourceMapConsumer.sourceContentFor(sourceFile);\n\t    if (content != null) {\n\t      generator.setSourceContent(sourceFile, content);\n\t    }\n\t  });\n\t  return generator;\n\t};\n\n\t/**\n\t * Add a single mapping from original source line and column to the generated\n\t * source's line and column for this source map being created. The mapping\n\t * object should have the following properties:\n\t *\n\t *   - generated: An object with the generated line and column positions.\n\t *   - original: An object with the original line and column positions.\n\t *   - source: The original source file (relative to the sourceRoot).\n\t *   - name: An optional original token name for this mapping.\n\t */\n\tSourceMapGenerator.prototype.addMapping = function SourceMapGenerator_addMapping(aArgs) {\n\t  var generated = util.getArg(aArgs, 'generated');\n\t  var original = util.getArg(aArgs, 'original', null);\n\t  var source = util.getArg(aArgs, 'source', null);\n\t  var name = util.getArg(aArgs, 'name', null);\n\n\t  if (!this._skipValidation) {\n\t    this._validateMapping(generated, original, source, name);\n\t  }\n\n\t  if (source != null) {\n\t    source = String(source);\n\t    if (!this._sources.has(source)) {\n\t      this._sources.add(source);\n\t    }\n\t  }\n\n\t  if (name != null) {\n\t    name = String(name);\n\t    if (!this._names.has(name)) {\n\t      this._names.add(name);\n\t    }\n\t  }\n\n\t  this._mappings.add({\n\t    generatedLine: generated.line,\n\t    generatedColumn: generated.column,\n\t    originalLine: original != null && original.line,\n\t    originalColumn: original != null && original.column,\n\t    source: source,\n\t    name: name\n\t  });\n\t};\n\n\t/**\n\t * Set the source content for a source file.\n\t */\n\tSourceMapGenerator.prototype.setSourceContent = function SourceMapGenerator_setSourceContent(aSourceFile, aSourceContent) {\n\t  var source = aSourceFile;\n\t  if (this._sourceRoot != null) {\n\t    source = util.relative(this._sourceRoot, source);\n\t  }\n\n\t  if (aSourceContent != null) {\n\t    // Add the source content to the _sourcesContents map.\n\t    // Create a new _sourcesContents map if the property is null.\n\t    if (!this._sourcesContents) {\n\t      this._sourcesContents = Object.create(null);\n\t    }\n\t    this._sourcesContents[util.toSetString(source)] = aSourceContent;\n\t  } else if (this._sourcesContents) {\n\t    // Remove the source file from the _sourcesContents map.\n\t    // If the _sourcesContents map is empty, set the property to null.\n\t    delete this._sourcesContents[util.toSetString(source)];\n\t    if (Object.keys(this._sourcesContents).length === 0) {\n\t      this._sourcesContents = null;\n\t    }\n\t  }\n\t};\n\n\t/**\n\t * Applies the mappings of a sub-source-map for a specific source file to the\n\t * source map being generated. Each mapping to the supplied source file is\n\t * rewritten using the supplied source map. Note: The resolution for the\n\t * resulting mappings is the minimium of this map and the supplied map.\n\t *\n\t * @param aSourceMapConsumer The source map to be applied.\n\t * @param aSourceFile Optional. The filename of the source file.\n\t *        If omitted, SourceMapConsumer's file property will be used.\n\t * @param aSourceMapPath Optional. The dirname of the path to the source map\n\t *        to be applied. If relative, it is relative to the SourceMapConsumer.\n\t *        This parameter is needed when the two source maps aren't in the same\n\t *        directory, and the source map to be applied contains relative source\n\t *        paths. If so, those relative source paths need to be rewritten\n\t *        relative to the SourceMapGenerator.\n\t */\n\tSourceMapGenerator.prototype.applySourceMap = function SourceMapGenerator_applySourceMap(aSourceMapConsumer, aSourceFile, aSourceMapPath) {\n\t  var sourceFile = aSourceFile;\n\t  // If aSourceFile is omitted, we will use the file property of the SourceMap\n\t  if (aSourceFile == null) {\n\t    if (aSourceMapConsumer.file == null) {\n\t      throw new Error('SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, ' + 'or the source map\\'s \"file\" property. Both were omitted.');\n\t    }\n\t    sourceFile = aSourceMapConsumer.file;\n\t  }\n\t  var sourceRoot = this._sourceRoot;\n\t  // Make \"sourceFile\" relative if an absolute Url is passed.\n\t  if (sourceRoot != null) {\n\t    sourceFile = util.relative(sourceRoot, sourceFile);\n\t  }\n\t  // Applying the SourceMap can add and remove items from the sources and\n\t  // the names array.\n\t  var newSources = new ArraySet();\n\t  var newNames = new ArraySet();\n\n\t  // Find mappings for the \"sourceFile\"\n\t  this._mappings.unsortedForEach(function (mapping) {\n\t    if (mapping.source === sourceFile && mapping.originalLine != null) {\n\t      // Check if it can be mapped by the source map, then update the mapping.\n\t      var original = aSourceMapConsumer.originalPositionFor({\n\t        line: mapping.originalLine,\n\t        column: mapping.originalColumn\n\t      });\n\t      if (original.source != null) {\n\t        // Copy mapping\n\t        mapping.source = original.source;\n\t        if (aSourceMapPath != null) {\n\t          mapping.source = util.join(aSourceMapPath, mapping.source);\n\t        }\n\t        if (sourceRoot != null) {\n\t          mapping.source = util.relative(sourceRoot, mapping.source);\n\t        }\n\t        mapping.originalLine = original.line;\n\t        mapping.originalColumn = original.column;\n\t        if (original.name != null) {\n\t          mapping.name = original.name;\n\t        }\n\t      }\n\t    }\n\n\t    var source = mapping.source;\n\t    if (source != null && !newSources.has(source)) {\n\t      newSources.add(source);\n\t    }\n\n\t    var name = mapping.name;\n\t    if (name != null && !newNames.has(name)) {\n\t      newNames.add(name);\n\t    }\n\t  }, this);\n\t  this._sources = newSources;\n\t  this._names = newNames;\n\n\t  // Copy sourcesContents of applied map.\n\t  aSourceMapConsumer.sources.forEach(function (sourceFile) {\n\t    var content = aSourceMapConsumer.sourceContentFor(sourceFile);\n\t    if (content != null) {\n\t      if (aSourceMapPath != null) {\n\t        sourceFile = util.join(aSourceMapPath, sourceFile);\n\t      }\n\t      if (sourceRoot != null) {\n\t        sourceFile = util.relative(sourceRoot, sourceFile);\n\t      }\n\t      this.setSourceContent(sourceFile, content);\n\t    }\n\t  }, this);\n\t};\n\n\t/**\n\t * A mapping can have one of the three levels of data:\n\t *\n\t *   1. Just the generated position.\n\t *   2. The Generated position, original position, and original source.\n\t *   3. Generated and original position, original source, as well as a name\n\t *      token.\n\t *\n\t * To maintain consistency, we validate that any new mapping being added falls\n\t * in to one of these categories.\n\t */\n\tSourceMapGenerator.prototype._validateMapping = function SourceMapGenerator_validateMapping(aGenerated, aOriginal, aSource, aName) {\n\t  if (aGenerated && 'line' in aGenerated && 'column' in aGenerated && aGenerated.line > 0 && aGenerated.column >= 0 && !aOriginal && !aSource && !aName) {\n\t    // Case 1.\n\t    return;\n\t  } else if (aGenerated && 'line' in aGenerated && 'column' in aGenerated && aOriginal && 'line' in aOriginal && 'column' in aOriginal && aGenerated.line > 0 && aGenerated.column >= 0 && aOriginal.line > 0 && aOriginal.column >= 0 && aSource) {\n\t    // Cases 2 and 3.\n\t    return;\n\t  } else {\n\t    throw new Error('Invalid mapping: ' + JSON.stringify({\n\t      generated: aGenerated,\n\t      source: aSource,\n\t      original: aOriginal,\n\t      name: aName\n\t    }));\n\t  }\n\t};\n\n\t/**\n\t * Serialize the accumulated mappings in to the stream of base 64 VLQs\n\t * specified by the source map format.\n\t */\n\tSourceMapGenerator.prototype._serializeMappings = function SourceMapGenerator_serializeMappings() {\n\t  var previousGeneratedColumn = 0;\n\t  var previousGeneratedLine = 1;\n\t  var previousOriginalColumn = 0;\n\t  var previousOriginalLine = 0;\n\t  var previousName = 0;\n\t  var previousSource = 0;\n\t  var result = '';\n\t  var next;\n\t  var mapping;\n\t  var nameIdx;\n\t  var sourceIdx;\n\n\t  var mappings = this._mappings.toArray();\n\t  for (var i = 0, len = mappings.length; i < len; i++) {\n\t    mapping = mappings[i];\n\t    next = '';\n\n\t    if (mapping.generatedLine !== previousGeneratedLine) {\n\t      previousGeneratedColumn = 0;\n\t      while (mapping.generatedLine !== previousGeneratedLine) {\n\t        next += ';';\n\t        previousGeneratedLine++;\n\t      }\n\t    } else {\n\t      if (i > 0) {\n\t        if (!util.compareByGeneratedPositionsInflated(mapping, mappings[i - 1])) {\n\t          continue;\n\t        }\n\t        next += ',';\n\t      }\n\t    }\n\n\t    next += base64VLQ.encode(mapping.generatedColumn - previousGeneratedColumn);\n\t    previousGeneratedColumn = mapping.generatedColumn;\n\n\t    if (mapping.source != null) {\n\t      sourceIdx = this._sources.indexOf(mapping.source);\n\t      next += base64VLQ.encode(sourceIdx - previousSource);\n\t      previousSource = sourceIdx;\n\n\t      // lines are stored 0-based in SourceMap spec version 3\n\t      next += base64VLQ.encode(mapping.originalLine - 1 - previousOriginalLine);\n\t      previousOriginalLine = mapping.originalLine - 1;\n\n\t      next += base64VLQ.encode(mapping.originalColumn - previousOriginalColumn);\n\t      previousOriginalColumn = mapping.originalColumn;\n\n\t      if (mapping.name != null) {\n\t        nameIdx = this._names.indexOf(mapping.name);\n\t        next += base64VLQ.encode(nameIdx - previousName);\n\t        previousName = nameIdx;\n\t      }\n\t    }\n\n\t    result += next;\n\t  }\n\n\t  return result;\n\t};\n\n\tSourceMapGenerator.prototype._generateSourcesContent = function SourceMapGenerator_generateSourcesContent(aSources, aSourceRoot) {\n\t  return aSources.map(function (source) {\n\t    if (!this._sourcesContents) {\n\t      return null;\n\t    }\n\t    if (aSourceRoot != null) {\n\t      source = util.relative(aSourceRoot, source);\n\t    }\n\t    var key = util.toSetString(source);\n\t    return Object.prototype.hasOwnProperty.call(this._sourcesContents, key) ? this._sourcesContents[key] : null;\n\t  }, this);\n\t};\n\n\t/**\n\t * Externalize the source map.\n\t */\n\tSourceMapGenerator.prototype.toJSON = function SourceMapGenerator_toJSON() {\n\t  var map = {\n\t    version: this._version,\n\t    sources: this._sources.toArray(),\n\t    names: this._names.toArray(),\n\t    mappings: this._serializeMappings()\n\t  };\n\t  if (this._file != null) {\n\t    map.file = this._file;\n\t  }\n\t  if (this._sourceRoot != null) {\n\t    map.sourceRoot = this._sourceRoot;\n\t  }\n\t  if (this._sourcesContents) {\n\t    map.sourcesContent = this._generateSourcesContent(map.sources, map.sourceRoot);\n\t  }\n\n\t  return map;\n\t};\n\n\t/**\n\t * Render the source map being generated to a string.\n\t */\n\tSourceMapGenerator.prototype.toString = function SourceMapGenerator_toString() {\n\t  return JSON.stringify(this.toJSON());\n\t};\n\n\texports.SourceMapGenerator = SourceMapGenerator;\n\n/***/ }),\n/* 288 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/*\n\t * Copyright 2009-2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE.txt or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\texports.SourceMapGenerator = __webpack_require__(287).SourceMapGenerator;\n\texports.SourceMapConsumer = __webpack_require__(620).SourceMapConsumer;\n\texports.SourceNode = __webpack_require__(621).SourceNode;\n\n/***/ }),\n/* 289 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(module) {'use strict';\n\n\tfunction assembleStyles() {\n\t\tvar styles = {\n\t\t\tmodifiers: {\n\t\t\t\treset: [0, 0],\n\t\t\t\tbold: [1, 22], // 21 isn't widely supported and 22 does the same thing\n\t\t\t\tdim: [2, 22],\n\t\t\t\titalic: [3, 23],\n\t\t\t\tunderline: [4, 24],\n\t\t\t\tinverse: [7, 27],\n\t\t\t\thidden: [8, 28],\n\t\t\t\tstrikethrough: [9, 29]\n\t\t\t},\n\t\t\tcolors: {\n\t\t\t\tblack: [30, 39],\n\t\t\t\tred: [31, 39],\n\t\t\t\tgreen: [32, 39],\n\t\t\t\tyellow: [33, 39],\n\t\t\t\tblue: [34, 39],\n\t\t\t\tmagenta: [35, 39],\n\t\t\t\tcyan: [36, 39],\n\t\t\t\twhite: [37, 39],\n\t\t\t\tgray: [90, 39]\n\t\t\t},\n\t\t\tbgColors: {\n\t\t\t\tbgBlack: [40, 49],\n\t\t\t\tbgRed: [41, 49],\n\t\t\t\tbgGreen: [42, 49],\n\t\t\t\tbgYellow: [43, 49],\n\t\t\t\tbgBlue: [44, 49],\n\t\t\t\tbgMagenta: [45, 49],\n\t\t\t\tbgCyan: [46, 49],\n\t\t\t\tbgWhite: [47, 49]\n\t\t\t}\n\t\t};\n\n\t\t// fix humans\n\t\tstyles.colors.grey = styles.colors.gray;\n\n\t\tObject.keys(styles).forEach(function (groupName) {\n\t\t\tvar group = styles[groupName];\n\n\t\t\tObject.keys(group).forEach(function (styleName) {\n\t\t\t\tvar style = group[styleName];\n\n\t\t\t\tstyles[styleName] = group[styleName] = {\n\t\t\t\t\topen: '\\x1B[' + style[0] + 'm',\n\t\t\t\t\tclose: '\\x1B[' + style[1] + 'm'\n\t\t\t\t};\n\t\t\t});\n\n\t\t\tObject.defineProperty(styles, groupName, {\n\t\t\t\tvalue: group,\n\t\t\t\tenumerable: false\n\t\t\t});\n\t\t});\n\n\t\treturn styles;\n\t}\n\n\tObject.defineProperty(module, 'exports', {\n\t\tenumerable: true,\n\t\tget: assembleStyles\n\t});\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module)))\n\n/***/ }),\n/* 290 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = __webpack_require__(182);\n\n/***/ }),\n/* 291 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.default = getPossiblePluginNames;\n\tfunction getPossiblePluginNames(pluginName) {\n\t  return [\"babel-plugin-\" + pluginName, pluginName];\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 292 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.default = getPossiblePresetNames;\n\tfunction getPossiblePresetNames(presetName) {\n\t  var possibleNames = [\"babel-preset-\" + presetName, presetName];\n\n\t  var matches = presetName.match(/^(@[^/]+)\\/(.+)$/);\n\t  if (matches) {\n\t    var orgName = matches[1],\n\t        presetPath = matches[2];\n\n\t    possibleNames.push(orgName + \"/babel-preset-\" + presetPath);\n\t  }\n\n\t  return possibleNames;\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 293 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (dest, src) {\n\t  if (!dest || !src) return;\n\n\t  return (0, _mergeWith2.default)(dest, src, function (a, b) {\n\t    if (b && Array.isArray(a)) {\n\t      var newArray = b.slice(0);\n\n\t      for (var _iterator = a, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref = _i.value;\n\t        }\n\n\t        var item = _ref;\n\n\t        if (newArray.indexOf(item) < 0) {\n\t          newArray.push(item);\n\t        }\n\t      }\n\n\t      return newArray;\n\t    }\n\t  });\n\t};\n\n\tvar _mergeWith = __webpack_require__(590);\n\n\tvar _mergeWith2 = _interopRequireDefault(_mergeWith);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 294 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (ast, comments, tokens) {\n\t  if (ast) {\n\t    if (ast.type === \"Program\") {\n\t      return t.file(ast, comments || [], tokens || []);\n\t    } else if (ast.type === \"File\") {\n\t      return ast;\n\t    }\n\t  }\n\n\t  throw new Error(\"Not a valid ast?\");\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 295 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (whitelist) {\n\t  var outputType = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : \"global\";\n\n\t  var namespace = t.identifier(\"babelHelpers\");\n\n\t  var builder = function builder(body) {\n\t    return buildHelpers(body, namespace, whitelist);\n\t  };\n\n\t  var tree = void 0;\n\n\t  var build = {\n\t    global: buildGlobal,\n\t    umd: buildUmd,\n\t    var: buildVar\n\t  }[outputType];\n\n\t  if (build) {\n\t    tree = build(namespace, builder);\n\t  } else {\n\t    throw new Error(messages.get(\"unsupportedOutputType\", outputType));\n\t  }\n\n\t  return (0, _babelGenerator2.default)(tree).code;\n\t};\n\n\tvar _babelHelpers = __webpack_require__(194);\n\n\tvar helpers = _interopRequireWildcard(_babelHelpers);\n\n\tvar _babelGenerator = __webpack_require__(186);\n\n\tvar _babelGenerator2 = _interopRequireDefault(_babelGenerator);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tvar buildUmdWrapper = (0, _babelTemplate2.default)(\"\\n  (function (root, factory) {\\n    if (typeof define === \\\"function\\\" && define.amd) {\\n      define(AMD_ARGUMENTS, factory);\\n    } else if (typeof exports === \\\"object\\\") {\\n      factory(COMMON_ARGUMENTS);\\n    } else {\\n      factory(BROWSER_ARGUMENTS);\\n    }\\n  })(UMD_ROOT, function (FACTORY_PARAMETERS) {\\n    FACTORY_BODY\\n  });\\n\");\n\n\tfunction buildGlobal(namespace, builder) {\n\t  var body = [];\n\t  var container = t.functionExpression(null, [t.identifier(\"global\")], t.blockStatement(body));\n\t  var tree = t.program([t.expressionStatement(t.callExpression(container, [helpers.get(\"selfGlobal\")]))]);\n\n\t  body.push(t.variableDeclaration(\"var\", [t.variableDeclarator(namespace, t.assignmentExpression(\"=\", t.memberExpression(t.identifier(\"global\"), namespace), t.objectExpression([])))]));\n\n\t  builder(body);\n\n\t  return tree;\n\t}\n\n\tfunction buildUmd(namespace, builder) {\n\t  var body = [];\n\t  body.push(t.variableDeclaration(\"var\", [t.variableDeclarator(namespace, t.identifier(\"global\"))]));\n\n\t  builder(body);\n\n\t  return t.program([buildUmdWrapper({\n\t    FACTORY_PARAMETERS: t.identifier(\"global\"),\n\t    BROWSER_ARGUMENTS: t.assignmentExpression(\"=\", t.memberExpression(t.identifier(\"root\"), namespace), t.objectExpression([])),\n\t    COMMON_ARGUMENTS: t.identifier(\"exports\"),\n\t    AMD_ARGUMENTS: t.arrayExpression([t.stringLiteral(\"exports\")]),\n\t    FACTORY_BODY: body,\n\t    UMD_ROOT: t.identifier(\"this\")\n\t  })]);\n\t}\n\n\tfunction buildVar(namespace, builder) {\n\t  var body = [];\n\t  body.push(t.variableDeclaration(\"var\", [t.variableDeclarator(namespace, t.objectExpression([]))]));\n\t  builder(body);\n\t  body.push(t.expressionStatement(namespace));\n\t  return t.program(body);\n\t}\n\n\tfunction buildHelpers(body, namespace, whitelist) {\n\t  helpers.list.forEach(function (name) {\n\t    if (whitelist && whitelist.indexOf(name) < 0) return;\n\n\t    var key = t.identifier(name);\n\t    body.push(t.expressionStatement(t.assignmentExpression(\"=\", t.memberExpression(namespace, key), helpers.get(name))));\n\t  });\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 296 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _plugin = __webpack_require__(65);\n\n\tvar _plugin2 = _interopRequireDefault(_plugin);\n\n\tvar _sortBy = __webpack_require__(594);\n\n\tvar _sortBy2 = _interopRequireDefault(_sortBy);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = new _plugin2.default({\n\n\t  name: \"internal.blockHoist\",\n\n\t  visitor: {\n\t    Block: {\n\t      exit: function exit(_ref) {\n\t        var node = _ref.node;\n\n\t        var hasChange = false;\n\t        for (var i = 0; i < node.body.length; i++) {\n\t          var bodyNode = node.body[i];\n\t          if (bodyNode && bodyNode._blockHoist != null) {\n\t            hasChange = true;\n\t            break;\n\t          }\n\t        }\n\t        if (!hasChange) return;\n\n\t        node.body = (0, _sortBy2.default)(node.body, function (bodyNode) {\n\t          var priority = bodyNode && bodyNode._blockHoist;\n\t          if (priority == null) priority = 1;\n\t          if (priority === true) priority = 2;\n\n\t          return -1 * priority;\n\t        });\n\t      }\n\t    }\n\t  }\n\t});\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 297 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _symbol = __webpack_require__(10);\n\n\tvar _symbol2 = _interopRequireDefault(_symbol);\n\n\tvar _plugin = __webpack_require__(65);\n\n\tvar _plugin2 = _interopRequireDefault(_plugin);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar SUPER_THIS_BOUND = (0, _symbol2.default)(\"super this bound\");\n\n\tvar superVisitor = {\n\t  CallExpression: function CallExpression(path) {\n\t    if (!path.get(\"callee\").isSuper()) return;\n\n\t    var node = path.node;\n\n\t    if (node[SUPER_THIS_BOUND]) return;\n\t    node[SUPER_THIS_BOUND] = true;\n\n\t    path.replaceWith(t.assignmentExpression(\"=\", this.id, node));\n\t  }\n\t};\n\n\texports.default = new _plugin2.default({\n\t  name: \"internal.shadowFunctions\",\n\n\t  visitor: {\n\t    ThisExpression: function ThisExpression(path) {\n\t      remap(path, \"this\");\n\t    },\n\t    ReferencedIdentifier: function ReferencedIdentifier(path) {\n\t      if (path.node.name === \"arguments\") {\n\t        remap(path, \"arguments\");\n\t      }\n\t    }\n\t  }\n\t});\n\n\tfunction shouldShadow(path, shadowPath) {\n\t  if (path.is(\"_forceShadow\")) {\n\t    return true;\n\t  } else {\n\t    return shadowPath;\n\t  }\n\t}\n\n\tfunction remap(path, key) {\n\t  var shadowPath = path.inShadow(key);\n\t  if (!shouldShadow(path, shadowPath)) return;\n\n\t  var shadowFunction = path.node._shadowedFunctionLiteral;\n\n\t  var currentFunction = void 0;\n\t  var passedShadowFunction = false;\n\n\t  var fnPath = path.find(function (innerPath) {\n\t    if (innerPath.parentPath && innerPath.parentPath.isClassProperty() && innerPath.key === \"value\") {\n\t      return true;\n\t    }\n\t    if (path === innerPath) return false;\n\t    if (innerPath.isProgram() || innerPath.isFunction()) {\n\t      currentFunction = currentFunction || innerPath;\n\t    }\n\n\t    if (innerPath.isProgram()) {\n\t      passedShadowFunction = true;\n\n\t      return true;\n\t    } else if (innerPath.isFunction() && !innerPath.isArrowFunctionExpression()) {\n\t      if (shadowFunction) {\n\t        if (innerPath === shadowFunction || innerPath.node === shadowFunction.node) return true;\n\t      } else {\n\t        if (!innerPath.is(\"shadow\")) return true;\n\t      }\n\n\t      passedShadowFunction = true;\n\t      return false;\n\t    }\n\n\t    return false;\n\t  });\n\n\t  if (shadowFunction && fnPath.isProgram() && !shadowFunction.isProgram()) {\n\t    fnPath = path.findParent(function (p) {\n\t      return p.isProgram() || p.isFunction();\n\t    });\n\t  }\n\n\t  if (fnPath === currentFunction) return;\n\n\t  if (!passedShadowFunction) return;\n\n\t  var cached = fnPath.getData(key);\n\t  if (cached) return path.replaceWith(cached);\n\n\t  var id = path.scope.generateUidIdentifier(key);\n\n\t  fnPath.setData(key, id);\n\n\t  var classPath = fnPath.findParent(function (p) {\n\t    return p.isClass();\n\t  });\n\t  var hasSuperClass = !!(classPath && classPath.node && classPath.node.superClass);\n\n\t  if (key === \"this\" && fnPath.isMethod({ kind: \"constructor\" }) && hasSuperClass) {\n\t    fnPath.scope.push({ id: id });\n\n\t    fnPath.traverse(superVisitor, { id: id });\n\t  } else {\n\t    var init = key === \"this\" ? t.thisExpression() : t.identifier(key);\n\n\t    if (shadowFunction) init._shadowedFunctionLiteral = shadowFunction;\n\n\t    fnPath.scope.push({ id: id, init: init });\n\t  }\n\n\t  return path.replaceWith(id);\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 298 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _normalizeAst = __webpack_require__(294);\n\n\tvar _normalizeAst2 = _interopRequireDefault(_normalizeAst);\n\n\tvar _plugin = __webpack_require__(65);\n\n\tvar _plugin2 = _interopRequireDefault(_plugin);\n\n\tvar _file = __webpack_require__(50);\n\n\tvar _file2 = _interopRequireDefault(_file);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar Pipeline = function () {\n\t  function Pipeline() {\n\t    (0, _classCallCheck3.default)(this, Pipeline);\n\t  }\n\n\t  Pipeline.prototype.lint = function lint(code) {\n\t    var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t    opts.code = false;\n\t    opts.mode = \"lint\";\n\t    return this.transform(code, opts);\n\t  };\n\n\t  Pipeline.prototype.pretransform = function pretransform(code, opts) {\n\t    var file = new _file2.default(opts, this);\n\t    return file.wrap(code, function () {\n\t      file.addCode(code);\n\t      file.parseCode(code);\n\t      return file;\n\t    });\n\t  };\n\n\t  Pipeline.prototype.transform = function transform(code, opts) {\n\t    var file = new _file2.default(opts, this);\n\t    return file.wrap(code, function () {\n\t      file.addCode(code);\n\t      file.parseCode(code);\n\t      return file.transform();\n\t    });\n\t  };\n\n\t  Pipeline.prototype.analyse = function analyse(code) {\n\t    var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\t    var visitor = arguments[2];\n\n\t    opts.code = false;\n\t    if (visitor) {\n\t      opts.plugins = opts.plugins || [];\n\t      opts.plugins.push(new _plugin2.default({ visitor: visitor }));\n\t    }\n\t    return this.transform(code, opts).metadata;\n\t  };\n\n\t  Pipeline.prototype.transformFromAst = function transformFromAst(ast, code, opts) {\n\t    ast = (0, _normalizeAst2.default)(ast);\n\n\t    var file = new _file2.default(opts, this);\n\t    return file.wrap(code, function () {\n\t      file.addCode(code);\n\t      file.addAst(ast);\n\t      return file.transform();\n\t    });\n\t  };\n\n\t  return Pipeline;\n\t}();\n\n\texports.default = Pipeline;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 299 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _possibleConstructorReturn2 = __webpack_require__(42);\n\n\tvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\n\tvar _inherits2 = __webpack_require__(41);\n\n\tvar _inherits3 = _interopRequireDefault(_inherits2);\n\n\tvar _store = __webpack_require__(119);\n\n\tvar _store2 = _interopRequireDefault(_store);\n\n\tvar _file5 = __webpack_require__(50);\n\n\tvar _file6 = _interopRequireDefault(_file5);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar PluginPass = function (_Store) {\n\t  (0, _inherits3.default)(PluginPass, _Store);\n\n\t  function PluginPass(file, plugin) {\n\t    var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\t    (0, _classCallCheck3.default)(this, PluginPass);\n\n\t    var _this = (0, _possibleConstructorReturn3.default)(this, _Store.call(this));\n\n\t    _this.plugin = plugin;\n\t    _this.key = plugin.key;\n\t    _this.file = file;\n\t    _this.opts = options;\n\t    return _this;\n\t  }\n\n\t  PluginPass.prototype.addHelper = function addHelper() {\n\t    var _file;\n\n\t    return (_file = this.file).addHelper.apply(_file, arguments);\n\t  };\n\n\t  PluginPass.prototype.addImport = function addImport() {\n\t    var _file2;\n\n\t    return (_file2 = this.file).addImport.apply(_file2, arguments);\n\t  };\n\n\t  PluginPass.prototype.getModuleName = function getModuleName() {\n\t    var _file3;\n\n\t    return (_file3 = this.file).getModuleName.apply(_file3, arguments);\n\t  };\n\n\t  PluginPass.prototype.buildCodeFrameError = function buildCodeFrameError() {\n\t    var _file4;\n\n\t    return (_file4 = this.file).buildCodeFrameError.apply(_file4, arguments);\n\t  };\n\n\t  return PluginPass;\n\t}(_store2.default);\n\n\texports.default = PluginPass;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 300 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _trimRight = __webpack_require__(625);\n\n\tvar _trimRight2 = _interopRequireDefault(_trimRight);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar SPACES_RE = /^[ \\t]+$/;\n\n\tvar Buffer = function () {\n\t  function Buffer(map) {\n\t    (0, _classCallCheck3.default)(this, Buffer);\n\t    this._map = null;\n\t    this._buf = [];\n\t    this._last = \"\";\n\t    this._queue = [];\n\t    this._position = {\n\t      line: 1,\n\t      column: 0\n\t    };\n\t    this._sourcePosition = {\n\t      identifierName: null,\n\t      line: null,\n\t      column: null,\n\t      filename: null\n\t    };\n\n\t    this._map = map;\n\t  }\n\n\t  Buffer.prototype.get = function get() {\n\t    this._flush();\n\n\t    var map = this._map;\n\t    var result = {\n\t      code: (0, _trimRight2.default)(this._buf.join(\"\")),\n\t      map: null,\n\t      rawMappings: map && map.getRawMappings()\n\t    };\n\n\t    if (map) {\n\t      Object.defineProperty(result, \"map\", {\n\t        configurable: true,\n\t        enumerable: true,\n\t        get: function get() {\n\t          return this.map = map.get();\n\t        },\n\t        set: function set(value) {\n\t          Object.defineProperty(this, \"map\", { value: value, writable: true });\n\t        }\n\t      });\n\t    }\n\n\t    return result;\n\t  };\n\n\t  Buffer.prototype.append = function append(str) {\n\t    this._flush();\n\t    var _sourcePosition = this._sourcePosition,\n\t        line = _sourcePosition.line,\n\t        column = _sourcePosition.column,\n\t        filename = _sourcePosition.filename,\n\t        identifierName = _sourcePosition.identifierName;\n\n\t    this._append(str, line, column, identifierName, filename);\n\t  };\n\n\t  Buffer.prototype.queue = function queue(str) {\n\t    if (str === \"\\n\") while (this._queue.length > 0 && SPACES_RE.test(this._queue[0][0])) {\n\t      this._queue.shift();\n\t    }var _sourcePosition2 = this._sourcePosition,\n\t        line = _sourcePosition2.line,\n\t        column = _sourcePosition2.column,\n\t        filename = _sourcePosition2.filename,\n\t        identifierName = _sourcePosition2.identifierName;\n\n\t    this._queue.unshift([str, line, column, identifierName, filename]);\n\t  };\n\n\t  Buffer.prototype._flush = function _flush() {\n\t    var item = void 0;\n\t    while (item = this._queue.pop()) {\n\t      this._append.apply(this, item);\n\t    }\n\t  };\n\n\t  Buffer.prototype._append = function _append(str, line, column, identifierName, filename) {\n\t    if (this._map && str[0] !== \"\\n\") {\n\t      this._map.mark(this._position.line, this._position.column, line, column, identifierName, filename);\n\t    }\n\n\t    this._buf.push(str);\n\t    this._last = str[str.length - 1];\n\n\t    for (var i = 0; i < str.length; i++) {\n\t      if (str[i] === \"\\n\") {\n\t        this._position.line++;\n\t        this._position.column = 0;\n\t      } else {\n\t        this._position.column++;\n\t      }\n\t    }\n\t  };\n\n\t  Buffer.prototype.removeTrailingNewline = function removeTrailingNewline() {\n\t    if (this._queue.length > 0 && this._queue[0][0] === \"\\n\") this._queue.shift();\n\t  };\n\n\t  Buffer.prototype.removeLastSemicolon = function removeLastSemicolon() {\n\t    if (this._queue.length > 0 && this._queue[0][0] === \";\") this._queue.shift();\n\t  };\n\n\t  Buffer.prototype.endsWith = function endsWith(suffix) {\n\t    if (suffix.length === 1) {\n\t      var last = void 0;\n\t      if (this._queue.length > 0) {\n\t        var str = this._queue[0][0];\n\t        last = str[str.length - 1];\n\t      } else {\n\t        last = this._last;\n\t      }\n\n\t      return last === suffix;\n\t    }\n\n\t    var end = this._last + this._queue.reduce(function (acc, item) {\n\t      return item[0] + acc;\n\t    }, \"\");\n\t    if (suffix.length <= end.length) {\n\t      return end.slice(-suffix.length) === suffix;\n\t    }\n\n\t    return false;\n\t  };\n\n\t  Buffer.prototype.hasContent = function hasContent() {\n\t    return this._queue.length > 0 || !!this._last;\n\t  };\n\n\t  Buffer.prototype.source = function source(prop, loc) {\n\t    if (prop && !loc) return;\n\n\t    var pos = loc ? loc[prop] : null;\n\n\t    this._sourcePosition.identifierName = loc && loc.identifierName || null;\n\t    this._sourcePosition.line = pos ? pos.line : null;\n\t    this._sourcePosition.column = pos ? pos.column : null;\n\t    this._sourcePosition.filename = loc && loc.filename || null;\n\t  };\n\n\t  Buffer.prototype.withSource = function withSource(prop, loc, cb) {\n\t    if (!this._map) return cb();\n\n\t    var originalLine = this._sourcePosition.line;\n\t    var originalColumn = this._sourcePosition.column;\n\t    var originalFilename = this._sourcePosition.filename;\n\t    var originalIdentifierName = this._sourcePosition.identifierName;\n\n\t    this.source(prop, loc);\n\n\t    cb();\n\n\t    this._sourcePosition.line = originalLine;\n\t    this._sourcePosition.column = originalColumn;\n\t    this._sourcePosition.filename = originalFilename;\n\t    this._sourcePosition.identifierName = originalIdentifierName;\n\t  };\n\n\t  Buffer.prototype.getCurrentColumn = function getCurrentColumn() {\n\t    var extra = this._queue.reduce(function (acc, item) {\n\t      return item[0] + acc;\n\t    }, \"\");\n\t    var lastIndex = extra.lastIndexOf(\"\\n\");\n\n\t    return lastIndex === -1 ? this._position.column + extra.length : extra.length - 1 - lastIndex;\n\t  };\n\n\t  Buffer.prototype.getCurrentLine = function getCurrentLine() {\n\t    var extra = this._queue.reduce(function (acc, item) {\n\t      return item[0] + acc;\n\t    }, \"\");\n\n\t    var count = 0;\n\t    for (var i = 0; i < extra.length; i++) {\n\t      if (extra[i] === \"\\n\") count++;\n\t    }\n\n\t    return this._position.line + count;\n\t  };\n\n\t  return Buffer;\n\t}();\n\n\texports.default = Buffer;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 301 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.File = File;\n\texports.Program = Program;\n\texports.BlockStatement = BlockStatement;\n\texports.Noop = Noop;\n\texports.Directive = Directive;\n\n\tvar _types = __webpack_require__(123);\n\n\tObject.defineProperty(exports, \"DirectiveLiteral\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _types.StringLiteral;\n\t  }\n\t});\n\tfunction File(node) {\n\t  this.print(node.program, node);\n\t}\n\n\tfunction Program(node) {\n\t  this.printInnerComments(node, false);\n\n\t  this.printSequence(node.directives, node);\n\t  if (node.directives && node.directives.length) this.newline();\n\n\t  this.printSequence(node.body, node);\n\t}\n\n\tfunction BlockStatement(node) {\n\t  this.token(\"{\");\n\t  this.printInnerComments(node);\n\n\t  var hasDirectives = node.directives && node.directives.length;\n\n\t  if (node.body.length || hasDirectives) {\n\t    this.newline();\n\n\t    this.printSequence(node.directives, node, { indent: true });\n\t    if (hasDirectives) this.newline();\n\n\t    this.printSequence(node.body, node, { indent: true });\n\t    this.removeTrailingNewline();\n\n\t    this.source(\"end\", node.loc);\n\n\t    if (!this.endsWith(\"\\n\")) this.newline();\n\n\t    this.rightBrace();\n\t  } else {\n\t    this.source(\"end\", node.loc);\n\t    this.token(\"}\");\n\t  }\n\t}\n\n\tfunction Noop() {}\n\n\tfunction Directive(node) {\n\t  this.print(node.value, node);\n\t  this.semicolon();\n\t}\n\n/***/ }),\n/* 302 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.ClassDeclaration = ClassDeclaration;\n\texports.ClassBody = ClassBody;\n\texports.ClassProperty = ClassProperty;\n\texports.ClassMethod = ClassMethod;\n\tfunction ClassDeclaration(node) {\n\t  this.printJoin(node.decorators, node);\n\t  this.word(\"class\");\n\n\t  if (node.id) {\n\t    this.space();\n\t    this.print(node.id, node);\n\t  }\n\n\t  this.print(node.typeParameters, node);\n\n\t  if (node.superClass) {\n\t    this.space();\n\t    this.word(\"extends\");\n\t    this.space();\n\t    this.print(node.superClass, node);\n\t    this.print(node.superTypeParameters, node);\n\t  }\n\n\t  if (node.implements) {\n\t    this.space();\n\t    this.word(\"implements\");\n\t    this.space();\n\t    this.printList(node.implements, node);\n\t  }\n\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\texports.ClassExpression = ClassDeclaration;\n\tfunction ClassBody(node) {\n\t  this.token(\"{\");\n\t  this.printInnerComments(node);\n\t  if (node.body.length === 0) {\n\t    this.token(\"}\");\n\t  } else {\n\t    this.newline();\n\n\t    this.indent();\n\t    this.printSequence(node.body, node);\n\t    this.dedent();\n\n\t    if (!this.endsWith(\"\\n\")) this.newline();\n\n\t    this.rightBrace();\n\t  }\n\t}\n\n\tfunction ClassProperty(node) {\n\t  this.printJoin(node.decorators, node);\n\n\t  if (node.static) {\n\t    this.word(\"static\");\n\t    this.space();\n\t  }\n\t  if (node.computed) {\n\t    this.token(\"[\");\n\t    this.print(node.key, node);\n\t    this.token(\"]\");\n\t  } else {\n\t    this._variance(node);\n\t    this.print(node.key, node);\n\t  }\n\t  this.print(node.typeAnnotation, node);\n\t  if (node.value) {\n\t    this.space();\n\t    this.token(\"=\");\n\t    this.space();\n\t    this.print(node.value, node);\n\t  }\n\t  this.semicolon();\n\t}\n\n\tfunction ClassMethod(node) {\n\t  this.printJoin(node.decorators, node);\n\n\t  if (node.static) {\n\t    this.word(\"static\");\n\t    this.space();\n\t  }\n\n\t  if (node.kind === \"constructorCall\") {\n\t    this.word(\"call\");\n\t    this.space();\n\t  }\n\n\t  this._method(node);\n\t}\n\n/***/ }),\n/* 303 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.LogicalExpression = exports.BinaryExpression = exports.AwaitExpression = exports.YieldExpression = undefined;\n\texports.UnaryExpression = UnaryExpression;\n\texports.DoExpression = DoExpression;\n\texports.ParenthesizedExpression = ParenthesizedExpression;\n\texports.UpdateExpression = UpdateExpression;\n\texports.ConditionalExpression = ConditionalExpression;\n\texports.NewExpression = NewExpression;\n\texports.SequenceExpression = SequenceExpression;\n\texports.ThisExpression = ThisExpression;\n\texports.Super = Super;\n\texports.Decorator = Decorator;\n\texports.CallExpression = CallExpression;\n\texports.Import = Import;\n\texports.EmptyStatement = EmptyStatement;\n\texports.ExpressionStatement = ExpressionStatement;\n\texports.AssignmentPattern = AssignmentPattern;\n\texports.AssignmentExpression = AssignmentExpression;\n\texports.BindExpression = BindExpression;\n\texports.MemberExpression = MemberExpression;\n\texports.MetaProperty = MetaProperty;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _node = __webpack_require__(187);\n\n\tvar n = _interopRequireWildcard(_node);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction UnaryExpression(node) {\n\t  if (node.operator === \"void\" || node.operator === \"delete\" || node.operator === \"typeof\") {\n\t    this.word(node.operator);\n\t    this.space();\n\t  } else {\n\t    this.token(node.operator);\n\t  }\n\n\t  this.print(node.argument, node);\n\t}\n\n\tfunction DoExpression(node) {\n\t  this.word(\"do\");\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\tfunction ParenthesizedExpression(node) {\n\t  this.token(\"(\");\n\t  this.print(node.expression, node);\n\t  this.token(\")\");\n\t}\n\n\tfunction UpdateExpression(node) {\n\t  if (node.prefix) {\n\t    this.token(node.operator);\n\t    this.print(node.argument, node);\n\t  } else {\n\t    this.print(node.argument, node);\n\t    this.token(node.operator);\n\t  }\n\t}\n\n\tfunction ConditionalExpression(node) {\n\t  this.print(node.test, node);\n\t  this.space();\n\t  this.token(\"?\");\n\t  this.space();\n\t  this.print(node.consequent, node);\n\t  this.space();\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.alternate, node);\n\t}\n\n\tfunction NewExpression(node, parent) {\n\t  this.word(\"new\");\n\t  this.space();\n\t  this.print(node.callee, node);\n\t  if (node.arguments.length === 0 && this.format.minified && !t.isCallExpression(parent, { callee: node }) && !t.isMemberExpression(parent) && !t.isNewExpression(parent)) return;\n\n\t  this.token(\"(\");\n\t  this.printList(node.arguments, node);\n\t  this.token(\")\");\n\t}\n\n\tfunction SequenceExpression(node) {\n\t  this.printList(node.expressions, node);\n\t}\n\n\tfunction ThisExpression() {\n\t  this.word(\"this\");\n\t}\n\n\tfunction Super() {\n\t  this.word(\"super\");\n\t}\n\n\tfunction Decorator(node) {\n\t  this.token(\"@\");\n\t  this.print(node.expression, node);\n\t  this.newline();\n\t}\n\n\tfunction commaSeparatorNewline() {\n\t  this.token(\",\");\n\t  this.newline();\n\n\t  if (!this.endsWith(\"\\n\")) this.space();\n\t}\n\n\tfunction CallExpression(node) {\n\t  this.print(node.callee, node);\n\n\t  this.token(\"(\");\n\n\t  var isPrettyCall = node._prettyCall;\n\n\t  var separator = void 0;\n\t  if (isPrettyCall) {\n\t    separator = commaSeparatorNewline;\n\t    this.newline();\n\t    this.indent();\n\t  }\n\n\t  this.printList(node.arguments, node, { separator: separator });\n\n\t  if (isPrettyCall) {\n\t    this.newline();\n\t    this.dedent();\n\t  }\n\n\t  this.token(\")\");\n\t}\n\n\tfunction Import() {\n\t  this.word(\"import\");\n\t}\n\n\tfunction buildYieldAwait(keyword) {\n\t  return function (node) {\n\t    this.word(keyword);\n\n\t    if (node.delegate) {\n\t      this.token(\"*\");\n\t    }\n\n\t    if (node.argument) {\n\t      this.space();\n\t      var terminatorState = this.startTerminatorless();\n\t      this.print(node.argument, node);\n\t      this.endTerminatorless(terminatorState);\n\t    }\n\t  };\n\t}\n\n\tvar YieldExpression = exports.YieldExpression = buildYieldAwait(\"yield\");\n\tvar AwaitExpression = exports.AwaitExpression = buildYieldAwait(\"await\");\n\n\tfunction EmptyStatement() {\n\t  this.semicolon(true);\n\t}\n\n\tfunction ExpressionStatement(node) {\n\t  this.print(node.expression, node);\n\t  this.semicolon();\n\t}\n\n\tfunction AssignmentPattern(node) {\n\t  this.print(node.left, node);\n\t  if (node.left.optional) this.token(\"?\");\n\t  this.print(node.left.typeAnnotation, node);\n\t  this.space();\n\t  this.token(\"=\");\n\t  this.space();\n\t  this.print(node.right, node);\n\t}\n\n\tfunction AssignmentExpression(node, parent) {\n\t  var parens = this.inForStatementInitCounter && node.operator === \"in\" && !n.needsParens(node, parent);\n\n\t  if (parens) {\n\t    this.token(\"(\");\n\t  }\n\n\t  this.print(node.left, node);\n\n\t  this.space();\n\t  if (node.operator === \"in\" || node.operator === \"instanceof\") {\n\t    this.word(node.operator);\n\t  } else {\n\t    this.token(node.operator);\n\t  }\n\t  this.space();\n\n\t  this.print(node.right, node);\n\n\t  if (parens) {\n\t    this.token(\")\");\n\t  }\n\t}\n\n\tfunction BindExpression(node) {\n\t  this.print(node.object, node);\n\t  this.token(\"::\");\n\t  this.print(node.callee, node);\n\t}\n\n\texports.BinaryExpression = AssignmentExpression;\n\texports.LogicalExpression = AssignmentExpression;\n\tfunction MemberExpression(node) {\n\t  this.print(node.object, node);\n\n\t  if (!node.computed && t.isMemberExpression(node.property)) {\n\t    throw new TypeError(\"Got a MemberExpression for MemberExpression property\");\n\t  }\n\n\t  var computed = node.computed;\n\t  if (t.isLiteral(node.property) && typeof node.property.value === \"number\") {\n\t    computed = true;\n\t  }\n\n\t  if (computed) {\n\t    this.token(\"[\");\n\t    this.print(node.property, node);\n\t    this.token(\"]\");\n\t  } else {\n\t    this.token(\".\");\n\t    this.print(node.property, node);\n\t  }\n\t}\n\n\tfunction MetaProperty(node) {\n\t  this.print(node.meta, node);\n\t  this.token(\".\");\n\t  this.print(node.property, node);\n\t}\n\n/***/ }),\n/* 304 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.TypeParameterDeclaration = exports.StringLiteralTypeAnnotation = exports.NumericLiteralTypeAnnotation = exports.GenericTypeAnnotation = exports.ClassImplements = undefined;\n\texports.AnyTypeAnnotation = AnyTypeAnnotation;\n\texports.ArrayTypeAnnotation = ArrayTypeAnnotation;\n\texports.BooleanTypeAnnotation = BooleanTypeAnnotation;\n\texports.BooleanLiteralTypeAnnotation = BooleanLiteralTypeAnnotation;\n\texports.NullLiteralTypeAnnotation = NullLiteralTypeAnnotation;\n\texports.DeclareClass = DeclareClass;\n\texports.DeclareFunction = DeclareFunction;\n\texports.DeclareInterface = DeclareInterface;\n\texports.DeclareModule = DeclareModule;\n\texports.DeclareModuleExports = DeclareModuleExports;\n\texports.DeclareTypeAlias = DeclareTypeAlias;\n\texports.DeclareOpaqueType = DeclareOpaqueType;\n\texports.DeclareVariable = DeclareVariable;\n\texports.DeclareExportDeclaration = DeclareExportDeclaration;\n\texports.ExistentialTypeParam = ExistentialTypeParam;\n\texports.FunctionTypeAnnotation = FunctionTypeAnnotation;\n\texports.FunctionTypeParam = FunctionTypeParam;\n\texports.InterfaceExtends = InterfaceExtends;\n\texports._interfaceish = _interfaceish;\n\texports._variance = _variance;\n\texports.InterfaceDeclaration = InterfaceDeclaration;\n\texports.IntersectionTypeAnnotation = IntersectionTypeAnnotation;\n\texports.MixedTypeAnnotation = MixedTypeAnnotation;\n\texports.EmptyTypeAnnotation = EmptyTypeAnnotation;\n\texports.NullableTypeAnnotation = NullableTypeAnnotation;\n\n\tvar _types = __webpack_require__(123);\n\n\tObject.defineProperty(exports, \"NumericLiteralTypeAnnotation\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _types.NumericLiteral;\n\t  }\n\t});\n\tObject.defineProperty(exports, \"StringLiteralTypeAnnotation\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _types.StringLiteral;\n\t  }\n\t});\n\texports.NumberTypeAnnotation = NumberTypeAnnotation;\n\texports.StringTypeAnnotation = StringTypeAnnotation;\n\texports.ThisTypeAnnotation = ThisTypeAnnotation;\n\texports.TupleTypeAnnotation = TupleTypeAnnotation;\n\texports.TypeofTypeAnnotation = TypeofTypeAnnotation;\n\texports.TypeAlias = TypeAlias;\n\texports.OpaqueType = OpaqueType;\n\texports.TypeAnnotation = TypeAnnotation;\n\texports.TypeParameter = TypeParameter;\n\texports.TypeParameterInstantiation = TypeParameterInstantiation;\n\texports.ObjectTypeAnnotation = ObjectTypeAnnotation;\n\texports.ObjectTypeCallProperty = ObjectTypeCallProperty;\n\texports.ObjectTypeIndexer = ObjectTypeIndexer;\n\texports.ObjectTypeProperty = ObjectTypeProperty;\n\texports.ObjectTypeSpreadProperty = ObjectTypeSpreadProperty;\n\texports.QualifiedTypeIdentifier = QualifiedTypeIdentifier;\n\texports.UnionTypeAnnotation = UnionTypeAnnotation;\n\texports.TypeCastExpression = TypeCastExpression;\n\texports.VoidTypeAnnotation = VoidTypeAnnotation;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction AnyTypeAnnotation() {\n\t  this.word(\"any\");\n\t}\n\n\tfunction ArrayTypeAnnotation(node) {\n\t  this.print(node.elementType, node);\n\t  this.token(\"[\");\n\t  this.token(\"]\");\n\t}\n\n\tfunction BooleanTypeAnnotation() {\n\t  this.word(\"boolean\");\n\t}\n\n\tfunction BooleanLiteralTypeAnnotation(node) {\n\t  this.word(node.value ? \"true\" : \"false\");\n\t}\n\n\tfunction NullLiteralTypeAnnotation() {\n\t  this.word(\"null\");\n\t}\n\n\tfunction DeclareClass(node, parent) {\n\t  if (!t.isDeclareExportDeclaration(parent)) {\n\t    this.word(\"declare\");\n\t    this.space();\n\t  }\n\t  this.word(\"class\");\n\t  this.space();\n\t  this._interfaceish(node);\n\t}\n\n\tfunction DeclareFunction(node, parent) {\n\t  if (!t.isDeclareExportDeclaration(parent)) {\n\t    this.word(\"declare\");\n\t    this.space();\n\t  }\n\t  this.word(\"function\");\n\t  this.space();\n\t  this.print(node.id, node);\n\t  this.print(node.id.typeAnnotation.typeAnnotation, node);\n\t  this.semicolon();\n\t}\n\n\tfunction DeclareInterface(node) {\n\t  this.word(\"declare\");\n\t  this.space();\n\t  this.InterfaceDeclaration(node);\n\t}\n\n\tfunction DeclareModule(node) {\n\t  this.word(\"declare\");\n\t  this.space();\n\t  this.word(\"module\");\n\t  this.space();\n\t  this.print(node.id, node);\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\tfunction DeclareModuleExports(node) {\n\t  this.word(\"declare\");\n\t  this.space();\n\t  this.word(\"module\");\n\t  this.token(\".\");\n\t  this.word(\"exports\");\n\t  this.print(node.typeAnnotation, node);\n\t}\n\n\tfunction DeclareTypeAlias(node) {\n\t  this.word(\"declare\");\n\t  this.space();\n\t  this.TypeAlias(node);\n\t}\n\n\tfunction DeclareOpaqueType(node, parent) {\n\t  if (!t.isDeclareExportDeclaration(parent)) {\n\t    this.word(\"declare\");\n\t    this.space();\n\t  }\n\t  this.OpaqueType(node);\n\t}\n\n\tfunction DeclareVariable(node, parent) {\n\t  if (!t.isDeclareExportDeclaration(parent)) {\n\t    this.word(\"declare\");\n\t    this.space();\n\t  }\n\t  this.word(\"var\");\n\t  this.space();\n\t  this.print(node.id, node);\n\t  this.print(node.id.typeAnnotation, node);\n\t  this.semicolon();\n\t}\n\n\tfunction DeclareExportDeclaration(node) {\n\t  this.word(\"declare\");\n\t  this.space();\n\t  this.word(\"export\");\n\t  this.space();\n\t  if (node.default) {\n\t    this.word(\"default\");\n\t    this.space();\n\t  }\n\n\t  FlowExportDeclaration.apply(this, arguments);\n\t}\n\n\tfunction FlowExportDeclaration(node) {\n\t  if (node.declaration) {\n\t    var declar = node.declaration;\n\t    this.print(declar, node);\n\t    if (!t.isStatement(declar)) this.semicolon();\n\t  } else {\n\t    this.token(\"{\");\n\t    if (node.specifiers.length) {\n\t      this.space();\n\t      this.printList(node.specifiers, node);\n\t      this.space();\n\t    }\n\t    this.token(\"}\");\n\n\t    if (node.source) {\n\t      this.space();\n\t      this.word(\"from\");\n\t      this.space();\n\t      this.print(node.source, node);\n\t    }\n\n\t    this.semicolon();\n\t  }\n\t}\n\n\tfunction ExistentialTypeParam() {\n\t  this.token(\"*\");\n\t}\n\n\tfunction FunctionTypeAnnotation(node, parent) {\n\t  this.print(node.typeParameters, node);\n\t  this.token(\"(\");\n\t  this.printList(node.params, node);\n\n\t  if (node.rest) {\n\t    if (node.params.length) {\n\t      this.token(\",\");\n\t      this.space();\n\t    }\n\t    this.token(\"...\");\n\t    this.print(node.rest, node);\n\t  }\n\n\t  this.token(\")\");\n\n\t  if (parent.type === \"ObjectTypeCallProperty\" || parent.type === \"DeclareFunction\") {\n\t    this.token(\":\");\n\t  } else {\n\t    this.space();\n\t    this.token(\"=>\");\n\t  }\n\n\t  this.space();\n\t  this.print(node.returnType, node);\n\t}\n\n\tfunction FunctionTypeParam(node) {\n\t  this.print(node.name, node);\n\t  if (node.optional) this.token(\"?\");\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.typeAnnotation, node);\n\t}\n\n\tfunction InterfaceExtends(node) {\n\t  this.print(node.id, node);\n\t  this.print(node.typeParameters, node);\n\t}\n\n\texports.ClassImplements = InterfaceExtends;\n\texports.GenericTypeAnnotation = InterfaceExtends;\n\tfunction _interfaceish(node) {\n\t  this.print(node.id, node);\n\t  this.print(node.typeParameters, node);\n\t  if (node.extends.length) {\n\t    this.space();\n\t    this.word(\"extends\");\n\t    this.space();\n\t    this.printList(node.extends, node);\n\t  }\n\t  if (node.mixins && node.mixins.length) {\n\t    this.space();\n\t    this.word(\"mixins\");\n\t    this.space();\n\t    this.printList(node.mixins, node);\n\t  }\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\tfunction _variance(node) {\n\t  if (node.variance === \"plus\") {\n\t    this.token(\"+\");\n\t  } else if (node.variance === \"minus\") {\n\t    this.token(\"-\");\n\t  }\n\t}\n\n\tfunction InterfaceDeclaration(node) {\n\t  this.word(\"interface\");\n\t  this.space();\n\t  this._interfaceish(node);\n\t}\n\n\tfunction andSeparator() {\n\t  this.space();\n\t  this.token(\"&\");\n\t  this.space();\n\t}\n\n\tfunction IntersectionTypeAnnotation(node) {\n\t  this.printJoin(node.types, node, { separator: andSeparator });\n\t}\n\n\tfunction MixedTypeAnnotation() {\n\t  this.word(\"mixed\");\n\t}\n\n\tfunction EmptyTypeAnnotation() {\n\t  this.word(\"empty\");\n\t}\n\n\tfunction NullableTypeAnnotation(node) {\n\t  this.token(\"?\");\n\t  this.print(node.typeAnnotation, node);\n\t}\n\n\tfunction NumberTypeAnnotation() {\n\t  this.word(\"number\");\n\t}\n\n\tfunction StringTypeAnnotation() {\n\t  this.word(\"string\");\n\t}\n\n\tfunction ThisTypeAnnotation() {\n\t  this.word(\"this\");\n\t}\n\n\tfunction TupleTypeAnnotation(node) {\n\t  this.token(\"[\");\n\t  this.printList(node.types, node);\n\t  this.token(\"]\");\n\t}\n\n\tfunction TypeofTypeAnnotation(node) {\n\t  this.word(\"typeof\");\n\t  this.space();\n\t  this.print(node.argument, node);\n\t}\n\n\tfunction TypeAlias(node) {\n\t  this.word(\"type\");\n\t  this.space();\n\t  this.print(node.id, node);\n\t  this.print(node.typeParameters, node);\n\t  this.space();\n\t  this.token(\"=\");\n\t  this.space();\n\t  this.print(node.right, node);\n\t  this.semicolon();\n\t}\n\tfunction OpaqueType(node) {\n\t  this.word(\"opaque\");\n\t  this.space();\n\t  this.word(\"type\");\n\t  this.space();\n\t  this.print(node.id, node);\n\t  this.print(node.typeParameters, node);\n\t  if (node.supertype) {\n\t    this.token(\":\");\n\t    this.space();\n\t    this.print(node.supertype, node);\n\t  }\n\t  if (node.impltype) {\n\t    this.space();\n\t    this.token(\"=\");\n\t    this.space();\n\t    this.print(node.impltype, node);\n\t  }\n\t  this.semicolon();\n\t}\n\n\tfunction TypeAnnotation(node) {\n\t  this.token(\":\");\n\t  this.space();\n\t  if (node.optional) this.token(\"?\");\n\t  this.print(node.typeAnnotation, node);\n\t}\n\n\tfunction TypeParameter(node) {\n\t  this._variance(node);\n\n\t  this.word(node.name);\n\n\t  if (node.bound) {\n\t    this.print(node.bound, node);\n\t  }\n\n\t  if (node.default) {\n\t    this.space();\n\t    this.token(\"=\");\n\t    this.space();\n\t    this.print(node.default, node);\n\t  }\n\t}\n\n\tfunction TypeParameterInstantiation(node) {\n\t  this.token(\"<\");\n\t  this.printList(node.params, node, {});\n\t  this.token(\">\");\n\t}\n\n\texports.TypeParameterDeclaration = TypeParameterInstantiation;\n\tfunction ObjectTypeAnnotation(node) {\n\t  var _this = this;\n\n\t  if (node.exact) {\n\t    this.token(\"{|\");\n\t  } else {\n\t    this.token(\"{\");\n\t  }\n\n\t  var props = node.properties.concat(node.callProperties, node.indexers);\n\n\t  if (props.length) {\n\t    this.space();\n\n\t    this.printJoin(props, node, {\n\t      addNewlines: function addNewlines(leading) {\n\t        if (leading && !props[0]) return 1;\n\t      },\n\n\t      indent: true,\n\t      statement: true,\n\t      iterator: function iterator() {\n\t        if (props.length !== 1) {\n\t          if (_this.format.flowCommaSeparator) {\n\t            _this.token(\",\");\n\t          } else {\n\t            _this.semicolon();\n\t          }\n\t          _this.space();\n\t        }\n\t      }\n\t    });\n\n\t    this.space();\n\t  }\n\n\t  if (node.exact) {\n\t    this.token(\"|}\");\n\t  } else {\n\t    this.token(\"}\");\n\t  }\n\t}\n\n\tfunction ObjectTypeCallProperty(node) {\n\t  if (node.static) {\n\t    this.word(\"static\");\n\t    this.space();\n\t  }\n\t  this.print(node.value, node);\n\t}\n\n\tfunction ObjectTypeIndexer(node) {\n\t  if (node.static) {\n\t    this.word(\"static\");\n\t    this.space();\n\t  }\n\t  this._variance(node);\n\t  this.token(\"[\");\n\t  this.print(node.id, node);\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.key, node);\n\t  this.token(\"]\");\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.value, node);\n\t}\n\n\tfunction ObjectTypeProperty(node) {\n\t  if (node.static) {\n\t    this.word(\"static\");\n\t    this.space();\n\t  }\n\t  this._variance(node);\n\t  this.print(node.key, node);\n\t  if (node.optional) this.token(\"?\");\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.value, node);\n\t}\n\n\tfunction ObjectTypeSpreadProperty(node) {\n\t  this.token(\"...\");\n\t  this.print(node.argument, node);\n\t}\n\n\tfunction QualifiedTypeIdentifier(node) {\n\t  this.print(node.qualification, node);\n\t  this.token(\".\");\n\t  this.print(node.id, node);\n\t}\n\n\tfunction orSeparator() {\n\t  this.space();\n\t  this.token(\"|\");\n\t  this.space();\n\t}\n\n\tfunction UnionTypeAnnotation(node) {\n\t  this.printJoin(node.types, node, { separator: orSeparator });\n\t}\n\n\tfunction TypeCastExpression(node) {\n\t  this.token(\"(\");\n\t  this.print(node.expression, node);\n\t  this.print(node.typeAnnotation, node);\n\t  this.token(\")\");\n\t}\n\n\tfunction VoidTypeAnnotation() {\n\t  this.word(\"void\");\n\t}\n\n/***/ }),\n/* 305 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.JSXAttribute = JSXAttribute;\n\texports.JSXIdentifier = JSXIdentifier;\n\texports.JSXNamespacedName = JSXNamespacedName;\n\texports.JSXMemberExpression = JSXMemberExpression;\n\texports.JSXSpreadAttribute = JSXSpreadAttribute;\n\texports.JSXExpressionContainer = JSXExpressionContainer;\n\texports.JSXSpreadChild = JSXSpreadChild;\n\texports.JSXText = JSXText;\n\texports.JSXElement = JSXElement;\n\texports.JSXOpeningElement = JSXOpeningElement;\n\texports.JSXClosingElement = JSXClosingElement;\n\texports.JSXEmptyExpression = JSXEmptyExpression;\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction JSXAttribute(node) {\n\t  this.print(node.name, node);\n\t  if (node.value) {\n\t    this.token(\"=\");\n\t    this.print(node.value, node);\n\t  }\n\t}\n\n\tfunction JSXIdentifier(node) {\n\t  this.word(node.name);\n\t}\n\n\tfunction JSXNamespacedName(node) {\n\t  this.print(node.namespace, node);\n\t  this.token(\":\");\n\t  this.print(node.name, node);\n\t}\n\n\tfunction JSXMemberExpression(node) {\n\t  this.print(node.object, node);\n\t  this.token(\".\");\n\t  this.print(node.property, node);\n\t}\n\n\tfunction JSXSpreadAttribute(node) {\n\t  this.token(\"{\");\n\t  this.token(\"...\");\n\t  this.print(node.argument, node);\n\t  this.token(\"}\");\n\t}\n\n\tfunction JSXExpressionContainer(node) {\n\t  this.token(\"{\");\n\t  this.print(node.expression, node);\n\t  this.token(\"}\");\n\t}\n\n\tfunction JSXSpreadChild(node) {\n\t  this.token(\"{\");\n\t  this.token(\"...\");\n\t  this.print(node.expression, node);\n\t  this.token(\"}\");\n\t}\n\n\tfunction JSXText(node) {\n\t  this.token(node.value);\n\t}\n\n\tfunction JSXElement(node) {\n\t  var open = node.openingElement;\n\t  this.print(open, node);\n\t  if (open.selfClosing) return;\n\n\t  this.indent();\n\t  for (var _iterator = node.children, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var child = _ref;\n\n\t    this.print(child, node);\n\t  }\n\t  this.dedent();\n\n\t  this.print(node.closingElement, node);\n\t}\n\n\tfunction spaceSeparator() {\n\t  this.space();\n\t}\n\n\tfunction JSXOpeningElement(node) {\n\t  this.token(\"<\");\n\t  this.print(node.name, node);\n\t  if (node.attributes.length > 0) {\n\t    this.space();\n\t    this.printJoin(node.attributes, node, { separator: spaceSeparator });\n\t  }\n\t  if (node.selfClosing) {\n\t    this.space();\n\t    this.token(\"/>\");\n\t  } else {\n\t    this.token(\">\");\n\t  }\n\t}\n\n\tfunction JSXClosingElement(node) {\n\t  this.token(\"</\");\n\t  this.print(node.name, node);\n\t  this.token(\">\");\n\t}\n\n\tfunction JSXEmptyExpression() {}\n\n/***/ }),\n/* 306 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.FunctionDeclaration = undefined;\n\texports._params = _params;\n\texports._method = _method;\n\texports.FunctionExpression = FunctionExpression;\n\texports.ArrowFunctionExpression = ArrowFunctionExpression;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _params(node) {\n\t  var _this = this;\n\n\t  this.print(node.typeParameters, node);\n\t  this.token(\"(\");\n\t  this.printList(node.params, node, {\n\t    iterator: function iterator(node) {\n\t      if (node.optional) _this.token(\"?\");\n\t      _this.print(node.typeAnnotation, node);\n\t    }\n\t  });\n\t  this.token(\")\");\n\n\t  if (node.returnType) {\n\t    this.print(node.returnType, node);\n\t  }\n\t}\n\n\tfunction _method(node) {\n\t  var kind = node.kind;\n\t  var key = node.key;\n\n\t  if (kind === \"method\" || kind === \"init\") {\n\t    if (node.generator) {\n\t      this.token(\"*\");\n\t    }\n\t  }\n\n\t  if (kind === \"get\" || kind === \"set\") {\n\t    this.word(kind);\n\t    this.space();\n\t  }\n\n\t  if (node.async) {\n\t    this.word(\"async\");\n\t    this.space();\n\t  }\n\n\t  if (node.computed) {\n\t    this.token(\"[\");\n\t    this.print(key, node);\n\t    this.token(\"]\");\n\t  } else {\n\t    this.print(key, node);\n\t  }\n\n\t  this._params(node);\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\tfunction FunctionExpression(node) {\n\t  if (node.async) {\n\t    this.word(\"async\");\n\t    this.space();\n\t  }\n\t  this.word(\"function\");\n\t  if (node.generator) this.token(\"*\");\n\n\t  if (node.id) {\n\t    this.space();\n\t    this.print(node.id, node);\n\t  } else {\n\t    this.space();\n\t  }\n\n\t  this._params(node);\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\texports.FunctionDeclaration = FunctionExpression;\n\tfunction ArrowFunctionExpression(node) {\n\t  if (node.async) {\n\t    this.word(\"async\");\n\t    this.space();\n\t  }\n\n\t  var firstParam = node.params[0];\n\n\t  if (node.params.length === 1 && t.isIdentifier(firstParam) && !hasTypes(node, firstParam)) {\n\t    this.print(firstParam, node);\n\t  } else {\n\t    this._params(node);\n\t  }\n\n\t  this.space();\n\t  this.token(\"=>\");\n\t  this.space();\n\n\t  this.print(node.body, node);\n\t}\n\n\tfunction hasTypes(node, param) {\n\t  return node.typeParameters || node.returnType || param.typeAnnotation || param.optional || param.trailingComments;\n\t}\n\n/***/ }),\n/* 307 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.ImportSpecifier = ImportSpecifier;\n\texports.ImportDefaultSpecifier = ImportDefaultSpecifier;\n\texports.ExportDefaultSpecifier = ExportDefaultSpecifier;\n\texports.ExportSpecifier = ExportSpecifier;\n\texports.ExportNamespaceSpecifier = ExportNamespaceSpecifier;\n\texports.ExportAllDeclaration = ExportAllDeclaration;\n\texports.ExportNamedDeclaration = ExportNamedDeclaration;\n\texports.ExportDefaultDeclaration = ExportDefaultDeclaration;\n\texports.ImportDeclaration = ImportDeclaration;\n\texports.ImportNamespaceSpecifier = ImportNamespaceSpecifier;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction ImportSpecifier(node) {\n\t  if (node.importKind === \"type\" || node.importKind === \"typeof\") {\n\t    this.word(node.importKind);\n\t    this.space();\n\t  }\n\n\t  this.print(node.imported, node);\n\t  if (node.local && node.local.name !== node.imported.name) {\n\t    this.space();\n\t    this.word(\"as\");\n\t    this.space();\n\t    this.print(node.local, node);\n\t  }\n\t}\n\n\tfunction ImportDefaultSpecifier(node) {\n\t  this.print(node.local, node);\n\t}\n\n\tfunction ExportDefaultSpecifier(node) {\n\t  this.print(node.exported, node);\n\t}\n\n\tfunction ExportSpecifier(node) {\n\t  this.print(node.local, node);\n\t  if (node.exported && node.local.name !== node.exported.name) {\n\t    this.space();\n\t    this.word(\"as\");\n\t    this.space();\n\t    this.print(node.exported, node);\n\t  }\n\t}\n\n\tfunction ExportNamespaceSpecifier(node) {\n\t  this.token(\"*\");\n\t  this.space();\n\t  this.word(\"as\");\n\t  this.space();\n\t  this.print(node.exported, node);\n\t}\n\n\tfunction ExportAllDeclaration(node) {\n\t  this.word(\"export\");\n\t  this.space();\n\t  this.token(\"*\");\n\t  this.space();\n\t  this.word(\"from\");\n\t  this.space();\n\t  this.print(node.source, node);\n\t  this.semicolon();\n\t}\n\n\tfunction ExportNamedDeclaration() {\n\t  this.word(\"export\");\n\t  this.space();\n\t  ExportDeclaration.apply(this, arguments);\n\t}\n\n\tfunction ExportDefaultDeclaration() {\n\t  this.word(\"export\");\n\t  this.space();\n\t  this.word(\"default\");\n\t  this.space();\n\t  ExportDeclaration.apply(this, arguments);\n\t}\n\n\tfunction ExportDeclaration(node) {\n\t  if (node.declaration) {\n\t    var declar = node.declaration;\n\t    this.print(declar, node);\n\t    if (!t.isStatement(declar)) this.semicolon();\n\t  } else {\n\t    if (node.exportKind === \"type\") {\n\t      this.word(\"type\");\n\t      this.space();\n\t    }\n\n\t    var specifiers = node.specifiers.slice(0);\n\n\t    var hasSpecial = false;\n\t    while (true) {\n\t      var first = specifiers[0];\n\t      if (t.isExportDefaultSpecifier(first) || t.isExportNamespaceSpecifier(first)) {\n\t        hasSpecial = true;\n\t        this.print(specifiers.shift(), node);\n\t        if (specifiers.length) {\n\t          this.token(\",\");\n\t          this.space();\n\t        }\n\t      } else {\n\t        break;\n\t      }\n\t    }\n\n\t    if (specifiers.length || !specifiers.length && !hasSpecial) {\n\t      this.token(\"{\");\n\t      if (specifiers.length) {\n\t        this.space();\n\t        this.printList(specifiers, node);\n\t        this.space();\n\t      }\n\t      this.token(\"}\");\n\t    }\n\n\t    if (node.source) {\n\t      this.space();\n\t      this.word(\"from\");\n\t      this.space();\n\t      this.print(node.source, node);\n\t    }\n\n\t    this.semicolon();\n\t  }\n\t}\n\n\tfunction ImportDeclaration(node) {\n\t  this.word(\"import\");\n\t  this.space();\n\n\t  if (node.importKind === \"type\" || node.importKind === \"typeof\") {\n\t    this.word(node.importKind);\n\t    this.space();\n\t  }\n\n\t  var specifiers = node.specifiers.slice(0);\n\t  if (specifiers && specifiers.length) {\n\t    while (true) {\n\t      var first = specifiers[0];\n\t      if (t.isImportDefaultSpecifier(first) || t.isImportNamespaceSpecifier(first)) {\n\t        this.print(specifiers.shift(), node);\n\t        if (specifiers.length) {\n\t          this.token(\",\");\n\t          this.space();\n\t        }\n\t      } else {\n\t        break;\n\t      }\n\t    }\n\n\t    if (specifiers.length) {\n\t      this.token(\"{\");\n\t      this.space();\n\t      this.printList(specifiers, node);\n\t      this.space();\n\t      this.token(\"}\");\n\t    }\n\n\t    this.space();\n\t    this.word(\"from\");\n\t    this.space();\n\t  }\n\n\t  this.print(node.source, node);\n\t  this.semicolon();\n\t}\n\n\tfunction ImportNamespaceSpecifier(node) {\n\t  this.token(\"*\");\n\t  this.space();\n\t  this.word(\"as\");\n\t  this.space();\n\t  this.print(node.local, node);\n\t}\n\n/***/ }),\n/* 308 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.ThrowStatement = exports.BreakStatement = exports.ReturnStatement = exports.ContinueStatement = exports.ForAwaitStatement = exports.ForOfStatement = exports.ForInStatement = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.WithStatement = WithStatement;\n\texports.IfStatement = IfStatement;\n\texports.ForStatement = ForStatement;\n\texports.WhileStatement = WhileStatement;\n\texports.DoWhileStatement = DoWhileStatement;\n\texports.LabeledStatement = LabeledStatement;\n\texports.TryStatement = TryStatement;\n\texports.CatchClause = CatchClause;\n\texports.SwitchStatement = SwitchStatement;\n\texports.SwitchCase = SwitchCase;\n\texports.DebuggerStatement = DebuggerStatement;\n\texports.VariableDeclaration = VariableDeclaration;\n\texports.VariableDeclarator = VariableDeclarator;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction WithStatement(node) {\n\t  this.word(\"with\");\n\t  this.space();\n\t  this.token(\"(\");\n\t  this.print(node.object, node);\n\t  this.token(\")\");\n\t  this.printBlock(node);\n\t}\n\n\tfunction IfStatement(node) {\n\t  this.word(\"if\");\n\t  this.space();\n\t  this.token(\"(\");\n\t  this.print(node.test, node);\n\t  this.token(\")\");\n\t  this.space();\n\n\t  var needsBlock = node.alternate && t.isIfStatement(getLastStatement(node.consequent));\n\t  if (needsBlock) {\n\t    this.token(\"{\");\n\t    this.newline();\n\t    this.indent();\n\t  }\n\n\t  this.printAndIndentOnComments(node.consequent, node);\n\n\t  if (needsBlock) {\n\t    this.dedent();\n\t    this.newline();\n\t    this.token(\"}\");\n\t  }\n\n\t  if (node.alternate) {\n\t    if (this.endsWith(\"}\")) this.space();\n\t    this.word(\"else\");\n\t    this.space();\n\t    this.printAndIndentOnComments(node.alternate, node);\n\t  }\n\t}\n\n\tfunction getLastStatement(statement) {\n\t  if (!t.isStatement(statement.body)) return statement;\n\t  return getLastStatement(statement.body);\n\t}\n\n\tfunction ForStatement(node) {\n\t  this.word(\"for\");\n\t  this.space();\n\t  this.token(\"(\");\n\n\t  this.inForStatementInitCounter++;\n\t  this.print(node.init, node);\n\t  this.inForStatementInitCounter--;\n\t  this.token(\";\");\n\n\t  if (node.test) {\n\t    this.space();\n\t    this.print(node.test, node);\n\t  }\n\t  this.token(\";\");\n\n\t  if (node.update) {\n\t    this.space();\n\t    this.print(node.update, node);\n\t  }\n\n\t  this.token(\")\");\n\t  this.printBlock(node);\n\t}\n\n\tfunction WhileStatement(node) {\n\t  this.word(\"while\");\n\t  this.space();\n\t  this.token(\"(\");\n\t  this.print(node.test, node);\n\t  this.token(\")\");\n\t  this.printBlock(node);\n\t}\n\n\tvar buildForXStatement = function buildForXStatement(op) {\n\t  return function (node) {\n\t    this.word(\"for\");\n\t    this.space();\n\t    if (op === \"await\") {\n\t      this.word(\"await\");\n\t      this.space();\n\t    }\n\t    this.token(\"(\");\n\n\t    this.print(node.left, node);\n\t    this.space();\n\t    this.word(op === \"await\" ? \"of\" : op);\n\t    this.space();\n\t    this.print(node.right, node);\n\t    this.token(\")\");\n\t    this.printBlock(node);\n\t  };\n\t};\n\n\tvar ForInStatement = exports.ForInStatement = buildForXStatement(\"in\");\n\tvar ForOfStatement = exports.ForOfStatement = buildForXStatement(\"of\");\n\tvar ForAwaitStatement = exports.ForAwaitStatement = buildForXStatement(\"await\");\n\n\tfunction DoWhileStatement(node) {\n\t  this.word(\"do\");\n\t  this.space();\n\t  this.print(node.body, node);\n\t  this.space();\n\t  this.word(\"while\");\n\t  this.space();\n\t  this.token(\"(\");\n\t  this.print(node.test, node);\n\t  this.token(\")\");\n\t  this.semicolon();\n\t}\n\n\tfunction buildLabelStatement(prefix) {\n\t  var key = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : \"label\";\n\n\t  return function (node) {\n\t    this.word(prefix);\n\n\t    var label = node[key];\n\t    if (label) {\n\t      this.space();\n\n\t      var terminatorState = this.startTerminatorless();\n\t      this.print(label, node);\n\t      this.endTerminatorless(terminatorState);\n\t    }\n\n\t    this.semicolon();\n\t  };\n\t}\n\n\tvar ContinueStatement = exports.ContinueStatement = buildLabelStatement(\"continue\");\n\tvar ReturnStatement = exports.ReturnStatement = buildLabelStatement(\"return\", \"argument\");\n\tvar BreakStatement = exports.BreakStatement = buildLabelStatement(\"break\");\n\tvar ThrowStatement = exports.ThrowStatement = buildLabelStatement(\"throw\", \"argument\");\n\n\tfunction LabeledStatement(node) {\n\t  this.print(node.label, node);\n\t  this.token(\":\");\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\tfunction TryStatement(node) {\n\t  this.word(\"try\");\n\t  this.space();\n\t  this.print(node.block, node);\n\t  this.space();\n\n\t  if (node.handlers) {\n\t    this.print(node.handlers[0], node);\n\t  } else {\n\t    this.print(node.handler, node);\n\t  }\n\n\t  if (node.finalizer) {\n\t    this.space();\n\t    this.word(\"finally\");\n\t    this.space();\n\t    this.print(node.finalizer, node);\n\t  }\n\t}\n\n\tfunction CatchClause(node) {\n\t  this.word(\"catch\");\n\t  this.space();\n\t  this.token(\"(\");\n\t  this.print(node.param, node);\n\t  this.token(\")\");\n\t  this.space();\n\t  this.print(node.body, node);\n\t}\n\n\tfunction SwitchStatement(node) {\n\t  this.word(\"switch\");\n\t  this.space();\n\t  this.token(\"(\");\n\t  this.print(node.discriminant, node);\n\t  this.token(\")\");\n\t  this.space();\n\t  this.token(\"{\");\n\n\t  this.printSequence(node.cases, node, {\n\t    indent: true,\n\t    addNewlines: function addNewlines(leading, cas) {\n\t      if (!leading && node.cases[node.cases.length - 1] === cas) return -1;\n\t    }\n\t  });\n\n\t  this.token(\"}\");\n\t}\n\n\tfunction SwitchCase(node) {\n\t  if (node.test) {\n\t    this.word(\"case\");\n\t    this.space();\n\t    this.print(node.test, node);\n\t    this.token(\":\");\n\t  } else {\n\t    this.word(\"default\");\n\t    this.token(\":\");\n\t  }\n\n\t  if (node.consequent.length) {\n\t    this.newline();\n\t    this.printSequence(node.consequent, node, { indent: true });\n\t  }\n\t}\n\n\tfunction DebuggerStatement() {\n\t  this.word(\"debugger\");\n\t  this.semicolon();\n\t}\n\n\tfunction variableDeclarationIdent() {\n\t  this.token(\",\");\n\t  this.newline();\n\t  if (this.endsWith(\"\\n\")) for (var i = 0; i < 4; i++) {\n\t    this.space(true);\n\t  }\n\t}\n\n\tfunction constDeclarationIdent() {\n\t  this.token(\",\");\n\t  this.newline();\n\t  if (this.endsWith(\"\\n\")) for (var i = 0; i < 6; i++) {\n\t    this.space(true);\n\t  }\n\t}\n\n\tfunction VariableDeclaration(node, parent) {\n\t  this.word(node.kind);\n\t  this.space();\n\n\t  var hasInits = false;\n\n\t  if (!t.isFor(parent)) {\n\t    for (var _iterator = node.declarations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var declar = _ref;\n\n\t      if (declar.init) {\n\t        hasInits = true;\n\t      }\n\t    }\n\t  }\n\n\t  var separator = void 0;\n\t  if (hasInits) {\n\t    separator = node.kind === \"const\" ? constDeclarationIdent : variableDeclarationIdent;\n\t  }\n\n\t  this.printList(node.declarations, node, { separator: separator });\n\n\t  if (t.isFor(parent)) {\n\t    if (parent.left === node || parent.init === node) return;\n\t  }\n\n\t  this.semicolon();\n\t}\n\n\tfunction VariableDeclarator(node) {\n\t  this.print(node.id, node);\n\t  this.print(node.id.typeAnnotation, node);\n\t  if (node.init) {\n\t    this.space();\n\t    this.token(\"=\");\n\t    this.space();\n\t    this.print(node.init, node);\n\t  }\n\t}\n\n/***/ }),\n/* 309 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.TaggedTemplateExpression = TaggedTemplateExpression;\n\texports.TemplateElement = TemplateElement;\n\texports.TemplateLiteral = TemplateLiteral;\n\tfunction TaggedTemplateExpression(node) {\n\t  this.print(node.tag, node);\n\t  this.print(node.quasi, node);\n\t}\n\n\tfunction TemplateElement(node, parent) {\n\t  var isFirst = parent.quasis[0] === node;\n\t  var isLast = parent.quasis[parent.quasis.length - 1] === node;\n\n\t  var value = (isFirst ? \"`\" : \"}\") + node.value.raw + (isLast ? \"`\" : \"${\");\n\n\t  this.token(value);\n\t}\n\n\tfunction TemplateLiteral(node) {\n\t  var quasis = node.quasis;\n\n\t  for (var i = 0; i < quasis.length; i++) {\n\t    this.print(quasis[i], node);\n\n\t    if (i + 1 < quasis.length) {\n\t      this.print(node.expressions[i], node);\n\t    }\n\t  }\n\t}\n\n/***/ }),\n/* 310 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.AwaitExpression = exports.FunctionTypeAnnotation = undefined;\n\texports.NullableTypeAnnotation = NullableTypeAnnotation;\n\texports.UpdateExpression = UpdateExpression;\n\texports.ObjectExpression = ObjectExpression;\n\texports.DoExpression = DoExpression;\n\texports.Binary = Binary;\n\texports.BinaryExpression = BinaryExpression;\n\texports.SequenceExpression = SequenceExpression;\n\texports.YieldExpression = YieldExpression;\n\texports.ClassExpression = ClassExpression;\n\texports.UnaryLike = UnaryLike;\n\texports.FunctionExpression = FunctionExpression;\n\texports.ArrowFunctionExpression = ArrowFunctionExpression;\n\texports.ConditionalExpression = ConditionalExpression;\n\texports.AssignmentExpression = AssignmentExpression;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tvar PRECEDENCE = {\n\t  \"||\": 0,\n\t  \"&&\": 1,\n\t  \"|\": 2,\n\t  \"^\": 3,\n\t  \"&\": 4,\n\t  \"==\": 5,\n\t  \"===\": 5,\n\t  \"!=\": 5,\n\t  \"!==\": 5,\n\t  \"<\": 6,\n\t  \">\": 6,\n\t  \"<=\": 6,\n\t  \">=\": 6,\n\t  in: 6,\n\t  instanceof: 6,\n\t  \">>\": 7,\n\t  \"<<\": 7,\n\t  \">>>\": 7,\n\t  \"+\": 8,\n\t  \"-\": 8,\n\t  \"*\": 9,\n\t  \"/\": 9,\n\t  \"%\": 9,\n\t  \"**\": 10\n\t};\n\n\tfunction NullableTypeAnnotation(node, parent) {\n\t  return t.isArrayTypeAnnotation(parent);\n\t}\n\n\texports.FunctionTypeAnnotation = NullableTypeAnnotation;\n\tfunction UpdateExpression(node, parent) {\n\t  return t.isMemberExpression(parent) && parent.object === node;\n\t}\n\n\tfunction ObjectExpression(node, parent, printStack) {\n\t  return isFirstInStatement(printStack, { considerArrow: true });\n\t}\n\n\tfunction DoExpression(node, parent, printStack) {\n\t  return isFirstInStatement(printStack);\n\t}\n\n\tfunction Binary(node, parent) {\n\t  if ((t.isCallExpression(parent) || t.isNewExpression(parent)) && parent.callee === node || t.isUnaryLike(parent) || t.isMemberExpression(parent) && parent.object === node || t.isAwaitExpression(parent)) {\n\t    return true;\n\t  }\n\n\t  if (t.isBinary(parent)) {\n\t    var parentOp = parent.operator;\n\t    var parentPos = PRECEDENCE[parentOp];\n\n\t    var nodeOp = node.operator;\n\t    var nodePos = PRECEDENCE[nodeOp];\n\n\t    if (parentPos === nodePos && parent.right === node && !t.isLogicalExpression(parent) || parentPos > nodePos) {\n\t      return true;\n\t    }\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction BinaryExpression(node, parent) {\n\t  return node.operator === \"in\" && (t.isVariableDeclarator(parent) || t.isFor(parent));\n\t}\n\n\tfunction SequenceExpression(node, parent) {\n\n\t  if (t.isForStatement(parent) || t.isThrowStatement(parent) || t.isReturnStatement(parent) || t.isIfStatement(parent) && parent.test === node || t.isWhileStatement(parent) && parent.test === node || t.isForInStatement(parent) && parent.right === node || t.isSwitchStatement(parent) && parent.discriminant === node || t.isExpressionStatement(parent) && parent.expression === node) {\n\t    return false;\n\t  }\n\n\t  return true;\n\t}\n\n\tfunction YieldExpression(node, parent) {\n\t  return t.isBinary(parent) || t.isUnaryLike(parent) || t.isCallExpression(parent) || t.isMemberExpression(parent) || t.isNewExpression(parent) || t.isConditionalExpression(parent) && node === parent.test;\n\t}\n\n\texports.AwaitExpression = YieldExpression;\n\tfunction ClassExpression(node, parent, printStack) {\n\t  return isFirstInStatement(printStack, { considerDefaultExports: true });\n\t}\n\n\tfunction UnaryLike(node, parent) {\n\t  return t.isMemberExpression(parent, { object: node }) || t.isCallExpression(parent, { callee: node }) || t.isNewExpression(parent, { callee: node });\n\t}\n\n\tfunction FunctionExpression(node, parent, printStack) {\n\t  return isFirstInStatement(printStack, { considerDefaultExports: true });\n\t}\n\n\tfunction ArrowFunctionExpression(node, parent) {\n\t  if (t.isExportDeclaration(parent) || t.isBinaryExpression(parent) || t.isLogicalExpression(parent) || t.isUnaryExpression(parent) || t.isTaggedTemplateExpression(parent)) {\n\t    return true;\n\t  }\n\n\t  return UnaryLike(node, parent);\n\t}\n\n\tfunction ConditionalExpression(node, parent) {\n\t  if (t.isUnaryLike(parent) || t.isBinary(parent) || t.isConditionalExpression(parent, { test: node }) || t.isAwaitExpression(parent)) {\n\t    return true;\n\t  }\n\n\t  return UnaryLike(node, parent);\n\t}\n\n\tfunction AssignmentExpression(node) {\n\t  if (t.isObjectPattern(node.left)) {\n\t    return true;\n\t  } else {\n\t    return ConditionalExpression.apply(undefined, arguments);\n\t  }\n\t}\n\n\tfunction isFirstInStatement(printStack) {\n\t  var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},\n\t      _ref$considerArrow = _ref.considerArrow,\n\t      considerArrow = _ref$considerArrow === undefined ? false : _ref$considerArrow,\n\t      _ref$considerDefaultE = _ref.considerDefaultExports,\n\t      considerDefaultExports = _ref$considerDefaultE === undefined ? false : _ref$considerDefaultE;\n\n\t  var i = printStack.length - 1;\n\t  var node = printStack[i];\n\t  i--;\n\t  var parent = printStack[i];\n\t  while (i > 0) {\n\t    if (t.isExpressionStatement(parent, { expression: node }) || t.isTaggedTemplateExpression(parent) || considerDefaultExports && t.isExportDefaultDeclaration(parent, { declaration: node }) || considerArrow && t.isArrowFunctionExpression(parent, { body: node })) {\n\t      return true;\n\t    }\n\n\t    if (t.isCallExpression(parent, { callee: node }) || t.isSequenceExpression(parent) && parent.expressions[0] === node || t.isMemberExpression(parent, { object: node }) || t.isConditional(parent, { test: node }) || t.isBinary(parent, { left: node }) || t.isAssignmentExpression(parent, { left: node })) {\n\t      node = parent;\n\t      i--;\n\t      parent = printStack[i];\n\t    } else {\n\t      return false;\n\t    }\n\t  }\n\n\t  return false;\n\t}\n\n/***/ }),\n/* 311 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _map = __webpack_require__(588);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction crawl(node) {\n\t  var state = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t  if (t.isMemberExpression(node)) {\n\t    crawl(node.object, state);\n\t    if (node.computed) crawl(node.property, state);\n\t  } else if (t.isBinary(node) || t.isAssignmentExpression(node)) {\n\t    crawl(node.left, state);\n\t    crawl(node.right, state);\n\t  } else if (t.isCallExpression(node)) {\n\t    state.hasCall = true;\n\t    crawl(node.callee, state);\n\t  } else if (t.isFunction(node)) {\n\t    state.hasFunction = true;\n\t  } else if (t.isIdentifier(node)) {\n\t    state.hasHelper = state.hasHelper || isHelper(node.callee);\n\t  }\n\n\t  return state;\n\t}\n\n\tfunction isHelper(node) {\n\t  if (t.isMemberExpression(node)) {\n\t    return isHelper(node.object) || isHelper(node.property);\n\t  } else if (t.isIdentifier(node)) {\n\t    return node.name === \"require\" || node.name[0] === \"_\";\n\t  } else if (t.isCallExpression(node)) {\n\t    return isHelper(node.callee);\n\t  } else if (t.isBinary(node) || t.isAssignmentExpression(node)) {\n\t    return t.isIdentifier(node.left) && isHelper(node.left) || isHelper(node.right);\n\t  } else {\n\t    return false;\n\t  }\n\t}\n\n\tfunction isType(node) {\n\t  return t.isLiteral(node) || t.isObjectExpression(node) || t.isArrayExpression(node) || t.isIdentifier(node) || t.isMemberExpression(node);\n\t}\n\n\texports.nodes = {\n\t  AssignmentExpression: function AssignmentExpression(node) {\n\t    var state = crawl(node.right);\n\t    if (state.hasCall && state.hasHelper || state.hasFunction) {\n\t      return {\n\t        before: state.hasFunction,\n\t        after: true\n\t      };\n\t    }\n\t  },\n\t  SwitchCase: function SwitchCase(node, parent) {\n\t    return {\n\t      before: node.consequent.length || parent.cases[0] === node\n\t    };\n\t  },\n\t  LogicalExpression: function LogicalExpression(node) {\n\t    if (t.isFunction(node.left) || t.isFunction(node.right)) {\n\t      return {\n\t        after: true\n\t      };\n\t    }\n\t  },\n\t  Literal: function Literal(node) {\n\t    if (node.value === \"use strict\") {\n\t      return {\n\t        after: true\n\t      };\n\t    }\n\t  },\n\t  CallExpression: function CallExpression(node) {\n\t    if (t.isFunction(node.callee) || isHelper(node)) {\n\t      return {\n\t        before: true,\n\t        after: true\n\t      };\n\t    }\n\t  },\n\t  VariableDeclaration: function VariableDeclaration(node) {\n\t    for (var i = 0; i < node.declarations.length; i++) {\n\t      var declar = node.declarations[i];\n\n\t      var enabled = isHelper(declar.id) && !isType(declar.init);\n\t      if (!enabled) {\n\t        var state = crawl(declar.init);\n\t        enabled = isHelper(declar.init) && state.hasCall || state.hasFunction;\n\t      }\n\n\t      if (enabled) {\n\t        return {\n\t          before: true,\n\t          after: true\n\t        };\n\t      }\n\t    }\n\t  },\n\t  IfStatement: function IfStatement(node) {\n\t    if (t.isBlockStatement(node.consequent)) {\n\t      return {\n\t        before: true,\n\t        after: true\n\t      };\n\t    }\n\t  }\n\t};\n\n\texports.nodes.ObjectProperty = exports.nodes.ObjectTypeProperty = exports.nodes.ObjectMethod = exports.nodes.SpreadProperty = function (node, parent) {\n\t  if (parent.properties[0] === node) {\n\t    return {\n\t      before: true\n\t    };\n\t  }\n\t};\n\n\texports.list = {\n\t  VariableDeclaration: function VariableDeclaration(node) {\n\t    return (0, _map2.default)(node.declarations, \"init\");\n\t  },\n\t  ArrayExpression: function ArrayExpression(node) {\n\t    return node.elements;\n\t  },\n\t  ObjectExpression: function ObjectExpression(node) {\n\t    return node.properties;\n\t  }\n\t};\n\n\t[[\"Function\", true], [\"Class\", true], [\"Loop\", true], [\"LabeledStatement\", true], [\"SwitchStatement\", true], [\"TryStatement\", true]].forEach(function (_ref) {\n\t  var type = _ref[0],\n\t      amounts = _ref[1];\n\n\t  if (typeof amounts === \"boolean\") {\n\t    amounts = { after: amounts, before: amounts };\n\t  }\n\t  [type].concat(t.FLIPPED_ALIAS_KEYS[type] || []).forEach(function (type) {\n\t    exports.nodes[type] = function () {\n\t      return amounts;\n\t    };\n\t  });\n\t});\n\n/***/ }),\n/* 312 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _assign = __webpack_require__(87);\n\n\tvar _assign2 = _interopRequireDefault(_assign);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\tvar _weakSet = __webpack_require__(365);\n\n\tvar _weakSet2 = _interopRequireDefault(_weakSet);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _find = __webpack_require__(579);\n\n\tvar _find2 = _interopRequireDefault(_find);\n\n\tvar _findLast = __webpack_require__(581);\n\n\tvar _findLast2 = _interopRequireDefault(_findLast);\n\n\tvar _isInteger = __webpack_require__(586);\n\n\tvar _isInteger2 = _interopRequireDefault(_isInteger);\n\n\tvar _repeat = __webpack_require__(278);\n\n\tvar _repeat2 = _interopRequireDefault(_repeat);\n\n\tvar _buffer = __webpack_require__(300);\n\n\tvar _buffer2 = _interopRequireDefault(_buffer);\n\n\tvar _node = __webpack_require__(187);\n\n\tvar n = _interopRequireWildcard(_node);\n\n\tvar _whitespace = __webpack_require__(314);\n\n\tvar _whitespace2 = _interopRequireDefault(_whitespace);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar SCIENTIFIC_NOTATION = /e/i;\n\tvar ZERO_DECIMAL_INTEGER = /\\.0+$/;\n\tvar NON_DECIMAL_LITERAL = /^0[box]/;\n\n\tvar Printer = function () {\n\t  function Printer(format, map, tokens) {\n\t    (0, _classCallCheck3.default)(this, Printer);\n\t    this.inForStatementInitCounter = 0;\n\t    this._printStack = [];\n\t    this._indent = 0;\n\t    this._insideAux = false;\n\t    this._printedCommentStarts = {};\n\t    this._parenPushNewlineState = null;\n\t    this._printAuxAfterOnNextUserNode = false;\n\t    this._printedComments = new _weakSet2.default();\n\t    this._endsWithInteger = false;\n\t    this._endsWithWord = false;\n\n\t    this.format = format || {};\n\t    this._buf = new _buffer2.default(map);\n\t    this._whitespace = tokens.length > 0 ? new _whitespace2.default(tokens) : null;\n\t  }\n\n\t  Printer.prototype.generate = function generate(ast) {\n\t    this.print(ast);\n\t    this._maybeAddAuxComment();\n\n\t    return this._buf.get();\n\t  };\n\n\t  Printer.prototype.indent = function indent() {\n\t    if (this.format.compact || this.format.concise) return;\n\n\t    this._indent++;\n\t  };\n\n\t  Printer.prototype.dedent = function dedent() {\n\t    if (this.format.compact || this.format.concise) return;\n\n\t    this._indent--;\n\t  };\n\n\t  Printer.prototype.semicolon = function semicolon() {\n\t    var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;\n\n\t    this._maybeAddAuxComment();\n\t    this._append(\";\", !force);\n\t  };\n\n\t  Printer.prototype.rightBrace = function rightBrace() {\n\t    if (this.format.minified) {\n\t      this._buf.removeLastSemicolon();\n\t    }\n\t    this.token(\"}\");\n\t  };\n\n\t  Printer.prototype.space = function space() {\n\t    var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;\n\n\t    if (this.format.compact) return;\n\n\t    if (this._buf.hasContent() && !this.endsWith(\" \") && !this.endsWith(\"\\n\") || force) {\n\t      this._space();\n\t    }\n\t  };\n\n\t  Printer.prototype.word = function word(str) {\n\t    if (this._endsWithWord) this._space();\n\n\t    this._maybeAddAuxComment();\n\t    this._append(str);\n\n\t    this._endsWithWord = true;\n\t  };\n\n\t  Printer.prototype.number = function number(str) {\n\t    this.word(str);\n\n\t    this._endsWithInteger = (0, _isInteger2.default)(+str) && !NON_DECIMAL_LITERAL.test(str) && !SCIENTIFIC_NOTATION.test(str) && !ZERO_DECIMAL_INTEGER.test(str) && str[str.length - 1] !== \".\";\n\t  };\n\n\t  Printer.prototype.token = function token(str) {\n\t    if (str === \"--\" && this.endsWith(\"!\") || str[0] === \"+\" && this.endsWith(\"+\") || str[0] === \"-\" && this.endsWith(\"-\") || str[0] === \".\" && this._endsWithInteger) {\n\t      this._space();\n\t    }\n\n\t    this._maybeAddAuxComment();\n\t    this._append(str);\n\t  };\n\n\t  Printer.prototype.newline = function newline(i) {\n\t    if (this.format.retainLines || this.format.compact) return;\n\n\t    if (this.format.concise) {\n\t      this.space();\n\t      return;\n\t    }\n\n\t    if (this.endsWith(\"\\n\\n\")) return;\n\n\t    if (typeof i !== \"number\") i = 1;\n\n\t    i = Math.min(2, i);\n\t    if (this.endsWith(\"{\\n\") || this.endsWith(\":\\n\")) i--;\n\t    if (i <= 0) return;\n\n\t    for (var j = 0; j < i; j++) {\n\t      this._newline();\n\t    }\n\t  };\n\n\t  Printer.prototype.endsWith = function endsWith(str) {\n\t    return this._buf.endsWith(str);\n\t  };\n\n\t  Printer.prototype.removeTrailingNewline = function removeTrailingNewline() {\n\t    this._buf.removeTrailingNewline();\n\t  };\n\n\t  Printer.prototype.source = function source(prop, loc) {\n\t    this._catchUp(prop, loc);\n\n\t    this._buf.source(prop, loc);\n\t  };\n\n\t  Printer.prototype.withSource = function withSource(prop, loc, cb) {\n\t    this._catchUp(prop, loc);\n\n\t    this._buf.withSource(prop, loc, cb);\n\t  };\n\n\t  Printer.prototype._space = function _space() {\n\t    this._append(\" \", true);\n\t  };\n\n\t  Printer.prototype._newline = function _newline() {\n\t    this._append(\"\\n\", true);\n\t  };\n\n\t  Printer.prototype._append = function _append(str) {\n\t    var queue = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t    this._maybeAddParen(str);\n\t    this._maybeIndent(str);\n\n\t    if (queue) this._buf.queue(str);else this._buf.append(str);\n\n\t    this._endsWithWord = false;\n\t    this._endsWithInteger = false;\n\t  };\n\n\t  Printer.prototype._maybeIndent = function _maybeIndent(str) {\n\t    if (this._indent && this.endsWith(\"\\n\") && str[0] !== \"\\n\") {\n\t      this._buf.queue(this._getIndent());\n\t    }\n\t  };\n\n\t  Printer.prototype._maybeAddParen = function _maybeAddParen(str) {\n\t    var parenPushNewlineState = this._parenPushNewlineState;\n\t    if (!parenPushNewlineState) return;\n\t    this._parenPushNewlineState = null;\n\n\t    var i = void 0;\n\t    for (i = 0; i < str.length && str[i] === \" \"; i++) {\n\t      continue;\n\t    }if (i === str.length) return;\n\n\t    var cha = str[i];\n\t    if (cha === \"\\n\" || cha === \"/\") {\n\t      this.token(\"(\");\n\t      this.indent();\n\t      parenPushNewlineState.printed = true;\n\t    }\n\t  };\n\n\t  Printer.prototype._catchUp = function _catchUp(prop, loc) {\n\t    if (!this.format.retainLines) return;\n\n\t    var pos = loc ? loc[prop] : null;\n\t    if (pos && pos.line !== null) {\n\t      var count = pos.line - this._buf.getCurrentLine();\n\n\t      for (var i = 0; i < count; i++) {\n\t        this._newline();\n\t      }\n\t    }\n\t  };\n\n\t  Printer.prototype._getIndent = function _getIndent() {\n\t    return (0, _repeat2.default)(this.format.indent.style, this._indent);\n\t  };\n\n\t  Printer.prototype.startTerminatorless = function startTerminatorless() {\n\t    return this._parenPushNewlineState = {\n\t      printed: false\n\t    };\n\t  };\n\n\t  Printer.prototype.endTerminatorless = function endTerminatorless(state) {\n\t    if (state.printed) {\n\t      this.dedent();\n\t      this.newline();\n\t      this.token(\")\");\n\t    }\n\t  };\n\n\t  Printer.prototype.print = function print(node, parent) {\n\t    var _this = this;\n\n\t    if (!node) return;\n\n\t    var oldConcise = this.format.concise;\n\t    if (node._compact) {\n\t      this.format.concise = true;\n\t    }\n\n\t    var printMethod = this[node.type];\n\t    if (!printMethod) {\n\t      throw new ReferenceError(\"unknown node of type \" + (0, _stringify2.default)(node.type) + \" with constructor \" + (0, _stringify2.default)(node && node.constructor.name));\n\t    }\n\n\t    this._printStack.push(node);\n\n\t    var oldInAux = this._insideAux;\n\t    this._insideAux = !node.loc;\n\t    this._maybeAddAuxComment(this._insideAux && !oldInAux);\n\n\t    var needsParens = n.needsParens(node, parent, this._printStack);\n\t    if (this.format.retainFunctionParens && node.type === \"FunctionExpression\" && node.extra && node.extra.parenthesized) {\n\t      needsParens = true;\n\t    }\n\t    if (needsParens) this.token(\"(\");\n\n\t    this._printLeadingComments(node, parent);\n\n\t    var loc = t.isProgram(node) || t.isFile(node) ? null : node.loc;\n\t    this.withSource(\"start\", loc, function () {\n\t      _this[node.type](node, parent);\n\t    });\n\n\t    this._printTrailingComments(node, parent);\n\n\t    if (needsParens) this.token(\")\");\n\n\t    this._printStack.pop();\n\n\t    this.format.concise = oldConcise;\n\t    this._insideAux = oldInAux;\n\t  };\n\n\t  Printer.prototype._maybeAddAuxComment = function _maybeAddAuxComment(enteredPositionlessNode) {\n\t    if (enteredPositionlessNode) this._printAuxBeforeComment();\n\t    if (!this._insideAux) this._printAuxAfterComment();\n\t  };\n\n\t  Printer.prototype._printAuxBeforeComment = function _printAuxBeforeComment() {\n\t    if (this._printAuxAfterOnNextUserNode) return;\n\t    this._printAuxAfterOnNextUserNode = true;\n\n\t    var comment = this.format.auxiliaryCommentBefore;\n\t    if (comment) {\n\t      this._printComment({\n\t        type: \"CommentBlock\",\n\t        value: comment\n\t      });\n\t    }\n\t  };\n\n\t  Printer.prototype._printAuxAfterComment = function _printAuxAfterComment() {\n\t    if (!this._printAuxAfterOnNextUserNode) return;\n\t    this._printAuxAfterOnNextUserNode = false;\n\n\t    var comment = this.format.auxiliaryCommentAfter;\n\t    if (comment) {\n\t      this._printComment({\n\t        type: \"CommentBlock\",\n\t        value: comment\n\t      });\n\t    }\n\t  };\n\n\t  Printer.prototype.getPossibleRaw = function getPossibleRaw(node) {\n\t    var extra = node.extra;\n\t    if (extra && extra.raw != null && extra.rawValue != null && node.value === extra.rawValue) {\n\t      return extra.raw;\n\t    }\n\t  };\n\n\t  Printer.prototype.printJoin = function printJoin(nodes, parent) {\n\t    var opts = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n\t    if (!nodes || !nodes.length) return;\n\n\t    if (opts.indent) this.indent();\n\n\t    var newlineOpts = {\n\t      addNewlines: opts.addNewlines\n\t    };\n\n\t    for (var i = 0; i < nodes.length; i++) {\n\t      var node = nodes[i];\n\t      if (!node) continue;\n\n\t      if (opts.statement) this._printNewline(true, node, parent, newlineOpts);\n\n\t      this.print(node, parent);\n\n\t      if (opts.iterator) {\n\t        opts.iterator(node, i);\n\t      }\n\n\t      if (opts.separator && i < nodes.length - 1) {\n\t        opts.separator.call(this);\n\t      }\n\n\t      if (opts.statement) this._printNewline(false, node, parent, newlineOpts);\n\t    }\n\n\t    if (opts.indent) this.dedent();\n\t  };\n\n\t  Printer.prototype.printAndIndentOnComments = function printAndIndentOnComments(node, parent) {\n\t    var indent = !!node.leadingComments;\n\t    if (indent) this.indent();\n\t    this.print(node, parent);\n\t    if (indent) this.dedent();\n\t  };\n\n\t  Printer.prototype.printBlock = function printBlock(parent) {\n\t    var node = parent.body;\n\n\t    if (!t.isEmptyStatement(node)) {\n\t      this.space();\n\t    }\n\n\t    this.print(node, parent);\n\t  };\n\n\t  Printer.prototype._printTrailingComments = function _printTrailingComments(node, parent) {\n\t    this._printComments(this._getComments(false, node, parent));\n\t  };\n\n\t  Printer.prototype._printLeadingComments = function _printLeadingComments(node, parent) {\n\t    this._printComments(this._getComments(true, node, parent));\n\t  };\n\n\t  Printer.prototype.printInnerComments = function printInnerComments(node) {\n\t    var indent = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;\n\n\t    if (!node.innerComments) return;\n\t    if (indent) this.indent();\n\t    this._printComments(node.innerComments);\n\t    if (indent) this.dedent();\n\t  };\n\n\t  Printer.prototype.printSequence = function printSequence(nodes, parent) {\n\t    var opts = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n\t    opts.statement = true;\n\t    return this.printJoin(nodes, parent, opts);\n\t  };\n\n\t  Printer.prototype.printList = function printList(items, parent) {\n\t    var opts = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n\t    if (opts.separator == null) {\n\t      opts.separator = commaSeparator;\n\t    }\n\n\t    return this.printJoin(items, parent, opts);\n\t  };\n\n\t  Printer.prototype._printNewline = function _printNewline(leading, node, parent, opts) {\n\t    var _this2 = this;\n\n\t    if (this.format.retainLines || this.format.compact) return;\n\n\t    if (this.format.concise) {\n\t      this.space();\n\t      return;\n\t    }\n\n\t    var lines = 0;\n\n\t    if (node.start != null && !node._ignoreUserWhitespace && this._whitespace) {\n\t      if (leading) {\n\t        var _comments = node.leadingComments;\n\t        var _comment = _comments && (0, _find2.default)(_comments, function (comment) {\n\t          return !!comment.loc && _this2.format.shouldPrintComment(comment.value);\n\t        });\n\n\t        lines = this._whitespace.getNewlinesBefore(_comment || node);\n\t      } else {\n\t        var _comments2 = node.trailingComments;\n\t        var _comment2 = _comments2 && (0, _findLast2.default)(_comments2, function (comment) {\n\t          return !!comment.loc && _this2.format.shouldPrintComment(comment.value);\n\t        });\n\n\t        lines = this._whitespace.getNewlinesAfter(_comment2 || node);\n\t      }\n\t    } else {\n\t      if (!leading) lines++;\n\t      if (opts.addNewlines) lines += opts.addNewlines(leading, node) || 0;\n\n\t      var needs = n.needsWhitespaceAfter;\n\t      if (leading) needs = n.needsWhitespaceBefore;\n\t      if (needs(node, parent)) lines++;\n\n\t      if (!this._buf.hasContent()) lines = 0;\n\t    }\n\n\t    this.newline(lines);\n\t  };\n\n\t  Printer.prototype._getComments = function _getComments(leading, node) {\n\t    return node && (leading ? node.leadingComments : node.trailingComments) || [];\n\t  };\n\n\t  Printer.prototype._printComment = function _printComment(comment) {\n\t    var _this3 = this;\n\n\t    if (!this.format.shouldPrintComment(comment.value)) return;\n\n\t    if (comment.ignore) return;\n\n\t    if (this._printedComments.has(comment)) return;\n\t    this._printedComments.add(comment);\n\n\t    if (comment.start != null) {\n\t      if (this._printedCommentStarts[comment.start]) return;\n\t      this._printedCommentStarts[comment.start] = true;\n\t    }\n\n\t    this.newline(this._whitespace ? this._whitespace.getNewlinesBefore(comment) : 0);\n\n\t    if (!this.endsWith(\"[\") && !this.endsWith(\"{\")) this.space();\n\n\t    var val = comment.type === \"CommentLine\" ? \"//\" + comment.value + \"\\n\" : \"/*\" + comment.value + \"*/\";\n\n\t    if (comment.type === \"CommentBlock\" && this.format.indent.adjustMultilineComment) {\n\t      var offset = comment.loc && comment.loc.start.column;\n\t      if (offset) {\n\t        var newlineRegex = new RegExp(\"\\\\n\\\\s{1,\" + offset + \"}\", \"g\");\n\t        val = val.replace(newlineRegex, \"\\n\");\n\t      }\n\n\t      var indentSize = Math.max(this._getIndent().length, this._buf.getCurrentColumn());\n\t      val = val.replace(/\\n(?!$)/g, \"\\n\" + (0, _repeat2.default)(\" \", indentSize));\n\t    }\n\n\t    this.withSource(\"start\", comment.loc, function () {\n\t      _this3._append(val);\n\t    });\n\n\t    this.newline((this._whitespace ? this._whitespace.getNewlinesAfter(comment) : 0) + (comment.type === \"CommentLine\" ? -1 : 0));\n\t  };\n\n\t  Printer.prototype._printComments = function _printComments(comments) {\n\t    if (!comments || !comments.length) return;\n\n\t    for (var _iterator = comments, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var _comment3 = _ref;\n\n\t      this._printComment(_comment3);\n\t    }\n\t  };\n\n\t  return Printer;\n\t}();\n\n\texports.default = Printer;\n\n\tfunction commaSeparator() {\n\t  this.token(\",\");\n\t  this.space();\n\t}\n\n\tvar _arr = [__webpack_require__(309), __webpack_require__(303), __webpack_require__(308), __webpack_require__(302), __webpack_require__(306), __webpack_require__(307), __webpack_require__(123), __webpack_require__(304), __webpack_require__(301), __webpack_require__(305)];\n\tfor (var _i2 = 0; _i2 < _arr.length; _i2++) {\n\t  var generator = _arr[_i2];\n\t  (0, _assign2.default)(Printer.prototype, generator);\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 313 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _sourceMap = __webpack_require__(288);\n\n\tvar _sourceMap2 = _interopRequireDefault(_sourceMap);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar SourceMap = function () {\n\t  function SourceMap(opts, code) {\n\t    (0, _classCallCheck3.default)(this, SourceMap);\n\n\t    this._cachedMap = null;\n\t    this._code = code;\n\t    this._opts = opts;\n\t    this._rawMappings = [];\n\t  }\n\n\t  SourceMap.prototype.get = function get() {\n\t    if (!this._cachedMap) {\n\t      var map = this._cachedMap = new _sourceMap2.default.SourceMapGenerator({\n\t        file: this._opts.sourceMapTarget,\n\t        sourceRoot: this._opts.sourceRoot\n\t      });\n\n\t      var code = this._code;\n\t      if (typeof code === \"string\") {\n\t        map.setSourceContent(this._opts.sourceFileName, code);\n\t      } else if ((typeof code === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(code)) === \"object\") {\n\t        (0, _keys2.default)(code).forEach(function (sourceFileName) {\n\t          map.setSourceContent(sourceFileName, code[sourceFileName]);\n\t        });\n\t      }\n\n\t      this._rawMappings.forEach(map.addMapping, map);\n\t    }\n\n\t    return this._cachedMap.toJSON();\n\t  };\n\n\t  SourceMap.prototype.getRawMappings = function getRawMappings() {\n\t    return this._rawMappings.slice();\n\t  };\n\n\t  SourceMap.prototype.mark = function mark(generatedLine, generatedColumn, line, column, identifierName, filename) {\n\t    if (this._lastGenLine !== generatedLine && line === null) return;\n\n\t    if (this._lastGenLine === generatedLine && this._lastSourceLine === line && this._lastSourceColumn === column) {\n\t      return;\n\t    }\n\n\t    this._cachedMap = null;\n\t    this._lastGenLine = generatedLine;\n\t    this._lastSourceLine = line;\n\t    this._lastSourceColumn = column;\n\n\t    this._rawMappings.push({\n\t      name: identifierName || undefined,\n\t      generated: {\n\t        line: generatedLine,\n\t        column: generatedColumn\n\t      },\n\t      source: line == null ? undefined : filename || this._opts.sourceFileName,\n\t      original: line == null ? undefined : {\n\t        line: line,\n\t        column: column\n\t      }\n\t    });\n\t  };\n\n\t  return SourceMap;\n\t}();\n\n\texports.default = SourceMap;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 314 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar Whitespace = function () {\n\t  function Whitespace(tokens) {\n\t    (0, _classCallCheck3.default)(this, Whitespace);\n\n\t    this.tokens = tokens;\n\t    this.used = {};\n\t  }\n\n\t  Whitespace.prototype.getNewlinesBefore = function getNewlinesBefore(node) {\n\t    var startToken = void 0;\n\t    var endToken = void 0;\n\t    var tokens = this.tokens;\n\n\t    var index = this._findToken(function (token) {\n\t      return token.start - node.start;\n\t    }, 0, tokens.length);\n\t    if (index >= 0) {\n\t      while (index && node.start === tokens[index - 1].start) {\n\t        --index;\n\t      }startToken = tokens[index - 1];\n\t      endToken = tokens[index];\n\t    }\n\n\t    return this._getNewlinesBetween(startToken, endToken);\n\t  };\n\n\t  Whitespace.prototype.getNewlinesAfter = function getNewlinesAfter(node) {\n\t    var startToken = void 0;\n\t    var endToken = void 0;\n\t    var tokens = this.tokens;\n\n\t    var index = this._findToken(function (token) {\n\t      return token.end - node.end;\n\t    }, 0, tokens.length);\n\t    if (index >= 0) {\n\t      while (index && node.end === tokens[index - 1].end) {\n\t        --index;\n\t      }startToken = tokens[index];\n\t      endToken = tokens[index + 1];\n\t      if (endToken.type.label === \",\") endToken = tokens[index + 2];\n\t    }\n\n\t    if (endToken && endToken.type.label === \"eof\") {\n\t      return 1;\n\t    } else {\n\t      return this._getNewlinesBetween(startToken, endToken);\n\t    }\n\t  };\n\n\t  Whitespace.prototype._getNewlinesBetween = function _getNewlinesBetween(startToken, endToken) {\n\t    if (!endToken || !endToken.loc) return 0;\n\n\t    var start = startToken ? startToken.loc.end.line : 1;\n\t    var end = endToken.loc.start.line;\n\t    var lines = 0;\n\n\t    for (var line = start; line < end; line++) {\n\t      if (typeof this.used[line] === \"undefined\") {\n\t        this.used[line] = true;\n\t        lines++;\n\t      }\n\t    }\n\n\t    return lines;\n\t  };\n\n\t  Whitespace.prototype._findToken = function _findToken(test, start, end) {\n\t    if (start >= end) return -1;\n\t    var middle = start + end >>> 1;\n\t    var match = test(this.tokens[middle]);\n\t    if (match < 0) {\n\t      return this._findToken(test, middle + 1, end);\n\t    } else if (match > 0) {\n\t      return this._findToken(test, start, middle);\n\t    } else if (match === 0) {\n\t      return middle;\n\t    }\n\t    return -1;\n\t  };\n\n\t  return Whitespace;\n\t}();\n\n\texports.default = Whitespace;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 315 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = bindifyDecorators;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction bindifyDecorators(decorators) {\n\t  for (var _iterator = decorators, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var decoratorPath = _ref;\n\n\t    var decorator = decoratorPath.node;\n\t    var expression = decorator.expression;\n\t    if (!t.isMemberExpression(expression)) continue;\n\n\t    var temp = decoratorPath.scope.maybeGenerateMemoised(expression.object);\n\t    var ref = void 0;\n\n\t    var nodes = [];\n\n\t    if (temp) {\n\t      ref = temp;\n\t      nodes.push(t.assignmentExpression(\"=\", temp, expression.object));\n\t    } else {\n\t      ref = expression.object;\n\t    }\n\n\t    nodes.push(t.callExpression(t.memberExpression(t.memberExpression(ref, expression.property, expression.computed), t.identifier(\"bind\")), [ref]));\n\n\t    if (nodes.length === 1) {\n\t      decorator.expression = nodes[0];\n\t    } else {\n\t      decorator.expression = t.sequenceExpression(nodes);\n\t    }\n\t  }\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 316 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (opts) {\n\t  var visitor = {};\n\n\t  function isAssignment(node) {\n\t    return node && node.operator === opts.operator + \"=\";\n\t  }\n\n\t  function buildAssignment(left, right) {\n\t    return t.assignmentExpression(\"=\", left, right);\n\t  }\n\n\t  visitor.ExpressionStatement = function (path, file) {\n\t    if (path.isCompletionRecord()) return;\n\n\t    var expr = path.node.expression;\n\t    if (!isAssignment(expr)) return;\n\n\t    var nodes = [];\n\t    var exploded = (0, _babelHelperExplodeAssignableExpression2.default)(expr.left, nodes, file, path.scope, true);\n\n\t    nodes.push(t.expressionStatement(buildAssignment(exploded.ref, opts.build(exploded.uid, expr.right))));\n\n\t    path.replaceWithMultiple(nodes);\n\t  };\n\n\t  visitor.AssignmentExpression = function (path, file) {\n\t    var node = path.node,\n\t        scope = path.scope;\n\n\t    if (!isAssignment(node)) return;\n\n\t    var nodes = [];\n\t    var exploded = (0, _babelHelperExplodeAssignableExpression2.default)(node.left, nodes, file, scope);\n\t    nodes.push(buildAssignment(exploded.ref, opts.build(exploded.uid, node.right)));\n\t    path.replaceWithMultiple(nodes);\n\t  };\n\n\t  visitor.BinaryExpression = function (path) {\n\t    var node = path.node;\n\n\t    if (node.operator === opts.operator) {\n\t      path.replaceWith(opts.build(node.left, node.right));\n\t    }\n\t  };\n\n\t  return visitor;\n\t};\n\n\tvar _babelHelperExplodeAssignableExpression = __webpack_require__(318);\n\n\tvar _babelHelperExplodeAssignableExpression2 = _interopRequireDefault(_babelHelperExplodeAssignableExpression);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 317 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (path) {\n\t  var scope = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : path.scope;\n\t  var node = path.node;\n\n\t  var container = t.functionExpression(null, [], node.body, node.generator, node.async);\n\n\t  var callee = container;\n\t  var args = [];\n\n\t  (0, _babelHelperHoistVariables2.default)(path, function (id) {\n\t    return scope.push({ id: id });\n\t  });\n\n\t  var state = {\n\t    foundThis: false,\n\t    foundArguments: false\n\t  };\n\n\t  path.traverse(visitor, state);\n\n\t  if (state.foundArguments) {\n\t    callee = t.memberExpression(container, t.identifier(\"apply\"));\n\t    args = [];\n\n\t    if (state.foundThis) {\n\t      args.push(t.thisExpression());\n\t    }\n\n\t    if (state.foundArguments) {\n\t      if (!state.foundThis) args.push(t.nullLiteral());\n\t      args.push(t.identifier(\"arguments\"));\n\t    }\n\t  }\n\n\t  var call = t.callExpression(callee, args);\n\t  if (node.generator) call = t.yieldExpression(call, true);\n\n\t  return t.returnStatement(call);\n\t};\n\n\tvar _babelHelperHoistVariables = __webpack_require__(190);\n\n\tvar _babelHelperHoistVariables2 = _interopRequireDefault(_babelHelperHoistVariables);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar visitor = {\n\t  enter: function enter(path, state) {\n\t    if (path.isThisExpression()) {\n\t      state.foundThis = true;\n\t    }\n\n\t    if (path.isReferencedIdentifier({ name: \"arguments\" })) {\n\t      state.foundArguments = true;\n\t    }\n\t  },\n\t  Function: function Function(path) {\n\t    path.skip();\n\t  }\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 318 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (node, nodes, file, scope, allowedSingleIdent) {\n\t  var obj = void 0;\n\t  if (t.isIdentifier(node) && allowedSingleIdent) {\n\t    obj = node;\n\t  } else {\n\t    obj = getObjRef(node, nodes, file, scope);\n\t  }\n\n\t  var ref = void 0,\n\t      uid = void 0;\n\n\t  if (t.isIdentifier(node)) {\n\t    ref = node;\n\t    uid = obj;\n\t  } else {\n\t    var prop = getPropRef(node, nodes, file, scope);\n\t    var computed = node.computed || t.isLiteral(prop);\n\t    uid = ref = t.memberExpression(obj, prop, computed);\n\t  }\n\n\t  return {\n\t    uid: uid,\n\t    ref: ref\n\t  };\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction getObjRef(node, nodes, file, scope) {\n\t  var ref = void 0;\n\t  if (t.isSuper(node)) {\n\t    return node;\n\t  } else if (t.isIdentifier(node)) {\n\t    if (scope.hasBinding(node.name)) {\n\t      return node;\n\t    } else {\n\t      ref = node;\n\t    }\n\t  } else if (t.isMemberExpression(node)) {\n\t    ref = node.object;\n\n\t    if (t.isSuper(ref) || t.isIdentifier(ref) && scope.hasBinding(ref.name)) {\n\t      return ref;\n\t    }\n\t  } else {\n\t    throw new Error(\"We can't explode this node type \" + node.type);\n\t  }\n\n\t  var temp = scope.generateUidIdentifierBasedOnNode(ref);\n\t  nodes.push(t.variableDeclaration(\"var\", [t.variableDeclarator(temp, ref)]));\n\t  return temp;\n\t}\n\n\tfunction getPropRef(node, nodes, file, scope) {\n\t  var prop = node.property;\n\t  var key = t.toComputedKey(node, prop);\n\t  if (t.isLiteral(key) && t.isPureish(key)) return key;\n\n\t  var temp = scope.generateUidIdentifierBasedOnNode(prop);\n\t  nodes.push(t.variableDeclaration(\"var\", [t.variableDeclarator(temp, prop)]));\n\t  return temp;\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 319 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (classPath) {\n\t  classPath.assertClass();\n\n\t  var memoisedExpressions = [];\n\n\t  function maybeMemoise(path) {\n\t    if (!path.node || path.isPure()) return;\n\n\t    var uid = classPath.scope.generateDeclaredUidIdentifier();\n\t    memoisedExpressions.push(t.assignmentExpression(\"=\", uid, path.node));\n\t    path.replaceWith(uid);\n\t  }\n\n\t  function memoiseDecorators(paths) {\n\t    if (!Array.isArray(paths) || !paths.length) return;\n\n\t    paths = paths.reverse();\n\n\t    (0, _babelHelperBindifyDecorators2.default)(paths);\n\n\t    for (var _iterator = paths, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var path = _ref;\n\n\t      maybeMemoise(path);\n\t    }\n\t  }\n\n\t  maybeMemoise(classPath.get(\"superClass\"));\n\t  memoiseDecorators(classPath.get(\"decorators\"), true);\n\n\t  var methods = classPath.get(\"body.body\");\n\t  for (var _iterator2 = methods, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t    var _ref2;\n\n\t    if (_isArray2) {\n\t      if (_i2 >= _iterator2.length) break;\n\t      _ref2 = _iterator2[_i2++];\n\t    } else {\n\t      _i2 = _iterator2.next();\n\t      if (_i2.done) break;\n\t      _ref2 = _i2.value;\n\t    }\n\n\t    var methodPath = _ref2;\n\n\t    if (methodPath.is(\"computed\")) {\n\t      maybeMemoise(methodPath.get(\"key\"));\n\t    }\n\n\t    if (methodPath.has(\"decorators\")) {\n\t      memoiseDecorators(classPath.get(\"decorators\"));\n\t    }\n\t  }\n\n\t  if (memoisedExpressions) {\n\t    classPath.insertBefore(memoisedExpressions.map(function (expr) {\n\t      return t.expressionStatement(expr);\n\t    }));\n\t  }\n\t};\n\n\tvar _babelHelperBindifyDecorators = __webpack_require__(315);\n\n\tvar _babelHelperBindifyDecorators2 = _interopRequireDefault(_babelHelperBindifyDecorators);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 320 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (path, helpers) {\n\t  var node = path.node,\n\t      scope = path.scope,\n\t      parent = path.parent;\n\n\t  var stepKey = scope.generateUidIdentifier(\"step\");\n\t  var stepValue = scope.generateUidIdentifier(\"value\");\n\t  var left = node.left;\n\t  var declar = void 0;\n\n\t  if (t.isIdentifier(left) || t.isPattern(left) || t.isMemberExpression(left)) {\n\t    declar = t.expressionStatement(t.assignmentExpression(\"=\", left, stepValue));\n\t  } else if (t.isVariableDeclaration(left)) {\n\t    declar = t.variableDeclaration(left.kind, [t.variableDeclarator(left.declarations[0].id, stepValue)]);\n\t  }\n\n\t  var template = buildForAwait();\n\n\t  (0, _babelTraverse2.default)(template, forAwaitVisitor, null, {\n\t    ITERATOR_HAD_ERROR_KEY: scope.generateUidIdentifier(\"didIteratorError\"),\n\t    ITERATOR_COMPLETION: scope.generateUidIdentifier(\"iteratorNormalCompletion\"),\n\t    ITERATOR_ERROR_KEY: scope.generateUidIdentifier(\"iteratorError\"),\n\t    ITERATOR_KEY: scope.generateUidIdentifier(\"iterator\"),\n\t    GET_ITERATOR: helpers.getAsyncIterator,\n\t    OBJECT: node.right,\n\t    STEP_VALUE: stepValue,\n\t    STEP_KEY: stepKey,\n\t    AWAIT: helpers.wrapAwait\n\t  });\n\n\t  template = template.body.body;\n\n\t  var isLabeledParent = t.isLabeledStatement(parent);\n\t  var tryBody = template[3].block.body;\n\t  var loop = tryBody[0];\n\n\t  if (isLabeledParent) {\n\t    tryBody[0] = t.labeledStatement(parent.label, loop);\n\t  }\n\n\t  return {\n\t    replaceParent: isLabeledParent,\n\t    node: template,\n\t    declar: declar,\n\t    loop: loop\n\t  };\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTraverse = __webpack_require__(7);\n\n\tvar _babelTraverse2 = _interopRequireDefault(_babelTraverse);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tvar buildForAwait = (0, _babelTemplate2.default)(\"\\n  function* wrapper() {\\n    var ITERATOR_COMPLETION = true;\\n    var ITERATOR_HAD_ERROR_KEY = false;\\n    var ITERATOR_ERROR_KEY = undefined;\\n    try {\\n      for (\\n        var ITERATOR_KEY = GET_ITERATOR(OBJECT), STEP_KEY, STEP_VALUE;\\n        (\\n          STEP_KEY = yield AWAIT(ITERATOR_KEY.next()),\\n          ITERATOR_COMPLETION = STEP_KEY.done,\\n          STEP_VALUE = yield AWAIT(STEP_KEY.value),\\n          !ITERATOR_COMPLETION\\n        );\\n        ITERATOR_COMPLETION = true) {\\n      }\\n    } catch (err) {\\n      ITERATOR_HAD_ERROR_KEY = true;\\n      ITERATOR_ERROR_KEY = err;\\n    } finally {\\n      try {\\n        if (!ITERATOR_COMPLETION && ITERATOR_KEY.return) {\\n          yield AWAIT(ITERATOR_KEY.return());\\n        }\\n      } finally {\\n        if (ITERATOR_HAD_ERROR_KEY) {\\n          throw ITERATOR_ERROR_KEY;\\n        }\\n      }\\n    }\\n  }\\n\");\n\n\tvar forAwaitVisitor = {\n\t  noScope: true,\n\n\t  Identifier: function Identifier(path, replacements) {\n\t    if (path.node.name in replacements) {\n\t      path.replaceInline(replacements[path.node.name]);\n\t    }\n\t  },\n\t  CallExpression: function CallExpression(path, replacements) {\n\t    var callee = path.node.callee;\n\n\t    if (t.isIdentifier(callee) && callee.name === \"AWAIT\" && !replacements.AWAIT) {\n\t      path.replaceWith(path.node.arguments[0]);\n\t    }\n\t  }\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 321 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar helpers = {};\n\texports.default = helpers;\n\n\thelpers.typeof = (0, _babelTemplate2.default)(\"\\n  (typeof Symbol === \\\"function\\\" && typeof Symbol.iterator === \\\"symbol\\\")\\n    ? function (obj) { return typeof obj; }\\n    : function (obj) {\\n        return obj && typeof Symbol === \\\"function\\\" && obj.constructor === Symbol && obj !== Symbol.prototype\\n          ? \\\"symbol\\\"\\n          : typeof obj;\\n      };\\n\");\n\n\thelpers.jsx = (0, _babelTemplate2.default)(\"\\n  (function () {\\n    var REACT_ELEMENT_TYPE = (typeof Symbol === \\\"function\\\" && Symbol.for && Symbol.for(\\\"react.element\\\")) || 0xeac7;\\n\\n    return function createRawReactElement (type, props, key, children) {\\n      var defaultProps = type && type.defaultProps;\\n      var childrenLength = arguments.length - 3;\\n\\n      if (!props && childrenLength !== 0) {\\n        // If we're going to assign props.children, we create a new object now\\n        // to avoid mutating defaultProps.\\n        props = {};\\n      }\\n      if (props && defaultProps) {\\n        for (var propName in defaultProps) {\\n          if (props[propName] === void 0) {\\n            props[propName] = defaultProps[propName];\\n          }\\n        }\\n      } else if (!props) {\\n        props = defaultProps || {};\\n      }\\n\\n      if (childrenLength === 1) {\\n        props.children = children;\\n      } else if (childrenLength > 1) {\\n        var childArray = Array(childrenLength);\\n        for (var i = 0; i < childrenLength; i++) {\\n          childArray[i] = arguments[i + 3];\\n        }\\n        props.children = childArray;\\n      }\\n\\n      return {\\n        $$typeof: REACT_ELEMENT_TYPE,\\n        type: type,\\n        key: key === undefined ? null : '' + key,\\n        ref: null,\\n        props: props,\\n        _owner: null,\\n      };\\n    };\\n\\n  })()\\n\");\n\n\thelpers.asyncIterator = (0, _babelTemplate2.default)(\"\\n  (function (iterable) {\\n    if (typeof Symbol === \\\"function\\\") {\\n      if (Symbol.asyncIterator) {\\n        var method = iterable[Symbol.asyncIterator];\\n        if (method != null) return method.call(iterable);\\n      }\\n      if (Symbol.iterator) {\\n        return iterable[Symbol.iterator]();\\n      }\\n    }\\n    throw new TypeError(\\\"Object is not async iterable\\\");\\n  })\\n\");\n\n\thelpers.asyncGenerator = (0, _babelTemplate2.default)(\"\\n  (function () {\\n    function AwaitValue(value) {\\n      this.value = value;\\n    }\\n\\n    function AsyncGenerator(gen) {\\n      var front, back;\\n\\n      function send(key, arg) {\\n        return new Promise(function (resolve, reject) {\\n          var request = {\\n            key: key,\\n            arg: arg,\\n            resolve: resolve,\\n            reject: reject,\\n            next: null\\n          };\\n\\n          if (back) {\\n            back = back.next = request;\\n          } else {\\n            front = back = request;\\n            resume(key, arg);\\n          }\\n        });\\n      }\\n\\n      function resume(key, arg) {\\n        try {\\n          var result = gen[key](arg)\\n          var value = result.value;\\n          if (value instanceof AwaitValue) {\\n            Promise.resolve(value.value).then(\\n              function (arg) { resume(\\\"next\\\", arg); },\\n              function (arg) { resume(\\\"throw\\\", arg); });\\n          } else {\\n            settle(result.done ? \\\"return\\\" : \\\"normal\\\", result.value);\\n          }\\n        } catch (err) {\\n          settle(\\\"throw\\\", err);\\n        }\\n      }\\n\\n      function settle(type, value) {\\n        switch (type) {\\n          case \\\"return\\\":\\n            front.resolve({ value: value, done: true });\\n            break;\\n          case \\\"throw\\\":\\n            front.reject(value);\\n            break;\\n          default:\\n            front.resolve({ value: value, done: false });\\n            break;\\n        }\\n\\n        front = front.next;\\n        if (front) {\\n          resume(front.key, front.arg);\\n        } else {\\n          back = null;\\n        }\\n      }\\n\\n      this._invoke = send;\\n\\n      // Hide \\\"return\\\" method if generator return is not supported\\n      if (typeof gen.return !== \\\"function\\\") {\\n        this.return = undefined;\\n      }\\n    }\\n\\n    if (typeof Symbol === \\\"function\\\" && Symbol.asyncIterator) {\\n      AsyncGenerator.prototype[Symbol.asyncIterator] = function () { return this; };\\n    }\\n\\n    AsyncGenerator.prototype.next = function (arg) { return this._invoke(\\\"next\\\", arg); };\\n    AsyncGenerator.prototype.throw = function (arg) { return this._invoke(\\\"throw\\\", arg); };\\n    AsyncGenerator.prototype.return = function (arg) { return this._invoke(\\\"return\\\", arg); };\\n\\n    return {\\n      wrap: function (fn) {\\n        return function () {\\n          return new AsyncGenerator(fn.apply(this, arguments));\\n        };\\n      },\\n      await: function (value) {\\n        return new AwaitValue(value);\\n      }\\n    };\\n\\n  })()\\n\");\n\n\thelpers.asyncGeneratorDelegate = (0, _babelTemplate2.default)(\"\\n  (function (inner, awaitWrap) {\\n    var iter = {}, waiting = false;\\n\\n    function pump(key, value) {\\n      waiting = true;\\n      value = new Promise(function (resolve) { resolve(inner[key](value)); });\\n      return { done: false, value: awaitWrap(value) };\\n    };\\n\\n    if (typeof Symbol === \\\"function\\\" && Symbol.iterator) {\\n      iter[Symbol.iterator] = function () { return this; };\\n    }\\n\\n    iter.next = function (value) {\\n      if (waiting) {\\n        waiting = false;\\n        return value;\\n      }\\n      return pump(\\\"next\\\", value);\\n    };\\n\\n    if (typeof inner.throw === \\\"function\\\") {\\n      iter.throw = function (value) {\\n        if (waiting) {\\n          waiting = false;\\n          throw value;\\n        }\\n        return pump(\\\"throw\\\", value);\\n      };\\n    }\\n\\n    if (typeof inner.return === \\\"function\\\") {\\n      iter.return = function (value) {\\n        return pump(\\\"return\\\", value);\\n      };\\n    }\\n\\n    return iter;\\n  })\\n\");\n\n\thelpers.asyncToGenerator = (0, _babelTemplate2.default)(\"\\n  (function (fn) {\\n    return function () {\\n      var gen = fn.apply(this, arguments);\\n      return new Promise(function (resolve, reject) {\\n        function step(key, arg) {\\n          try {\\n            var info = gen[key](arg);\\n            var value = info.value;\\n          } catch (error) {\\n            reject(error);\\n            return;\\n          }\\n\\n          if (info.done) {\\n            resolve(value);\\n          } else {\\n            return Promise.resolve(value).then(function (value) {\\n              step(\\\"next\\\", value);\\n            }, function (err) {\\n              step(\\\"throw\\\", err);\\n            });\\n          }\\n        }\\n\\n        return step(\\\"next\\\");\\n      });\\n    };\\n  })\\n\");\n\n\thelpers.classCallCheck = (0, _babelTemplate2.default)(\"\\n  (function (instance, Constructor) {\\n    if (!(instance instanceof Constructor)) {\\n      throw new TypeError(\\\"Cannot call a class as a function\\\");\\n    }\\n  });\\n\");\n\n\thelpers.createClass = (0, _babelTemplate2.default)(\"\\n  (function() {\\n    function defineProperties(target, props) {\\n      for (var i = 0; i < props.length; i ++) {\\n        var descriptor = props[i];\\n        descriptor.enumerable = descriptor.enumerable || false;\\n        descriptor.configurable = true;\\n        if (\\\"value\\\" in descriptor) descriptor.writable = true;\\n        Object.defineProperty(target, descriptor.key, descriptor);\\n      }\\n    }\\n\\n    return function (Constructor, protoProps, staticProps) {\\n      if (protoProps) defineProperties(Constructor.prototype, protoProps);\\n      if (staticProps) defineProperties(Constructor, staticProps);\\n      return Constructor;\\n    };\\n  })()\\n\");\n\n\thelpers.defineEnumerableProperties = (0, _babelTemplate2.default)(\"\\n  (function (obj, descs) {\\n    for (var key in descs) {\\n      var desc = descs[key];\\n      desc.configurable = desc.enumerable = true;\\n      if (\\\"value\\\" in desc) desc.writable = true;\\n      Object.defineProperty(obj, key, desc);\\n    }\\n    return obj;\\n  })\\n\");\n\n\thelpers.defaults = (0, _babelTemplate2.default)(\"\\n  (function (obj, defaults) {\\n    var keys = Object.getOwnPropertyNames(defaults);\\n    for (var i = 0; i < keys.length; i++) {\\n      var key = keys[i];\\n      var value = Object.getOwnPropertyDescriptor(defaults, key);\\n      if (value && value.configurable && obj[key] === undefined) {\\n        Object.defineProperty(obj, key, value);\\n      }\\n    }\\n    return obj;\\n  })\\n\");\n\n\thelpers.defineProperty = (0, _babelTemplate2.default)(\"\\n  (function (obj, key, value) {\\n    // Shortcircuit the slow defineProperty path when possible.\\n    // We are trying to avoid issues where setters defined on the\\n    // prototype cause side effects under the fast path of simple\\n    // assignment. By checking for existence of the property with\\n    // the in operator, we can optimize most of this overhead away.\\n    if (key in obj) {\\n      Object.defineProperty(obj, key, {\\n        value: value,\\n        enumerable: true,\\n        configurable: true,\\n        writable: true\\n      });\\n    } else {\\n      obj[key] = value;\\n    }\\n    return obj;\\n  });\\n\");\n\n\thelpers.extends = (0, _babelTemplate2.default)(\"\\n  Object.assign || (function (target) {\\n    for (var i = 1; i < arguments.length; i++) {\\n      var source = arguments[i];\\n      for (var key in source) {\\n        if (Object.prototype.hasOwnProperty.call(source, key)) {\\n          target[key] = source[key];\\n        }\\n      }\\n    }\\n    return target;\\n  })\\n\");\n\n\thelpers.get = (0, _babelTemplate2.default)(\"\\n  (function get(object, property, receiver) {\\n    if (object === null) object = Function.prototype;\\n\\n    var desc = Object.getOwnPropertyDescriptor(object, property);\\n\\n    if (desc === undefined) {\\n      var parent = Object.getPrototypeOf(object);\\n\\n      if (parent === null) {\\n        return undefined;\\n      } else {\\n        return get(parent, property, receiver);\\n      }\\n    } else if (\\\"value\\\" in desc) {\\n      return desc.value;\\n    } else {\\n      var getter = desc.get;\\n\\n      if (getter === undefined) {\\n        return undefined;\\n      }\\n\\n      return getter.call(receiver);\\n    }\\n  });\\n\");\n\n\thelpers.inherits = (0, _babelTemplate2.default)(\"\\n  (function (subClass, superClass) {\\n    if (typeof superClass !== \\\"function\\\" && superClass !== null) {\\n      throw new TypeError(\\\"Super expression must either be null or a function, not \\\" + typeof superClass);\\n    }\\n    subClass.prototype = Object.create(superClass && superClass.prototype, {\\n      constructor: {\\n        value: subClass,\\n        enumerable: false,\\n        writable: true,\\n        configurable: true\\n      }\\n    });\\n    if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;\\n  })\\n\");\n\n\thelpers.instanceof = (0, _babelTemplate2.default)(\"\\n  (function (left, right) {\\n    if (right != null && typeof Symbol !== \\\"undefined\\\" && right[Symbol.hasInstance]) {\\n      return right[Symbol.hasInstance](left);\\n    } else {\\n      return left instanceof right;\\n    }\\n  });\\n\");\n\n\thelpers.interopRequireDefault = (0, _babelTemplate2.default)(\"\\n  (function (obj) {\\n    return obj && obj.__esModule ? obj : { default: obj };\\n  })\\n\");\n\n\thelpers.interopRequireWildcard = (0, _babelTemplate2.default)(\"\\n  (function (obj) {\\n    if (obj && obj.__esModule) {\\n      return obj;\\n    } else {\\n      var newObj = {};\\n      if (obj != null) {\\n        for (var key in obj) {\\n          if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\\n        }\\n      }\\n      newObj.default = obj;\\n      return newObj;\\n    }\\n  })\\n\");\n\n\thelpers.newArrowCheck = (0, _babelTemplate2.default)(\"\\n  (function (innerThis, boundThis) {\\n    if (innerThis !== boundThis) {\\n      throw new TypeError(\\\"Cannot instantiate an arrow function\\\");\\n    }\\n  });\\n\");\n\n\thelpers.objectDestructuringEmpty = (0, _babelTemplate2.default)(\"\\n  (function (obj) {\\n    if (obj == null) throw new TypeError(\\\"Cannot destructure undefined\\\");\\n  });\\n\");\n\n\thelpers.objectWithoutProperties = (0, _babelTemplate2.default)(\"\\n  (function (obj, keys) {\\n    var target = {};\\n    for (var i in obj) {\\n      if (keys.indexOf(i) >= 0) continue;\\n      if (!Object.prototype.hasOwnProperty.call(obj, i)) continue;\\n      target[i] = obj[i];\\n    }\\n    return target;\\n  })\\n\");\n\n\thelpers.possibleConstructorReturn = (0, _babelTemplate2.default)(\"\\n  (function (self, call) {\\n    if (!self) {\\n      throw new ReferenceError(\\\"this hasn't been initialised - super() hasn't been called\\\");\\n    }\\n    return call && (typeof call === \\\"object\\\" || typeof call === \\\"function\\\") ? call : self;\\n  });\\n\");\n\n\thelpers.selfGlobal = (0, _babelTemplate2.default)(\"\\n  typeof global === \\\"undefined\\\" ? self : global\\n\");\n\n\thelpers.set = (0, _babelTemplate2.default)(\"\\n  (function set(object, property, value, receiver) {\\n    var desc = Object.getOwnPropertyDescriptor(object, property);\\n\\n    if (desc === undefined) {\\n      var parent = Object.getPrototypeOf(object);\\n\\n      if (parent !== null) {\\n        set(parent, property, value, receiver);\\n      }\\n    } else if (\\\"value\\\" in desc && desc.writable) {\\n      desc.value = value;\\n    } else {\\n      var setter = desc.set;\\n\\n      if (setter !== undefined) {\\n        setter.call(receiver, value);\\n      }\\n    }\\n\\n    return value;\\n  });\\n\");\n\n\thelpers.slicedToArray = (0, _babelTemplate2.default)(\"\\n  (function () {\\n    // Broken out into a separate function to avoid deoptimizations due to the try/catch for the\\n    // array iterator case.\\n    function sliceIterator(arr, i) {\\n      // this is an expanded form of `for...of` that properly supports abrupt completions of\\n      // iterators etc. variable names have been minimised to reduce the size of this massive\\n      // helper. sometimes spec compliancy is annoying :(\\n      //\\n      // _n = _iteratorNormalCompletion\\n      // _d = _didIteratorError\\n      // _e = _iteratorError\\n      // _i = _iterator\\n      // _s = _step\\n\\n      var _arr = [];\\n      var _n = true;\\n      var _d = false;\\n      var _e = undefined;\\n      try {\\n        for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {\\n          _arr.push(_s.value);\\n          if (i && _arr.length === i) break;\\n        }\\n      } catch (err) {\\n        _d = true;\\n        _e = err;\\n      } finally {\\n        try {\\n          if (!_n && _i[\\\"return\\\"]) _i[\\\"return\\\"]();\\n        } finally {\\n          if (_d) throw _e;\\n        }\\n      }\\n      return _arr;\\n    }\\n\\n    return function (arr, i) {\\n      if (Array.isArray(arr)) {\\n        return arr;\\n      } else if (Symbol.iterator in Object(arr)) {\\n        return sliceIterator(arr, i);\\n      } else {\\n        throw new TypeError(\\\"Invalid attempt to destructure non-iterable instance\\\");\\n      }\\n    };\\n  })();\\n\");\n\n\thelpers.slicedToArrayLoose = (0, _babelTemplate2.default)(\"\\n  (function (arr, i) {\\n    if (Array.isArray(arr)) {\\n      return arr;\\n    } else if (Symbol.iterator in Object(arr)) {\\n      var _arr = [];\\n      for (var _iterator = arr[Symbol.iterator](), _step; !(_step = _iterator.next()).done;) {\\n        _arr.push(_step.value);\\n        if (i && _arr.length === i) break;\\n      }\\n      return _arr;\\n    } else {\\n      throw new TypeError(\\\"Invalid attempt to destructure non-iterable instance\\\");\\n    }\\n  });\\n\");\n\n\thelpers.taggedTemplateLiteral = (0, _babelTemplate2.default)(\"\\n  (function (strings, raw) {\\n    return Object.freeze(Object.defineProperties(strings, {\\n        raw: { value: Object.freeze(raw) }\\n    }));\\n  });\\n\");\n\n\thelpers.taggedTemplateLiteralLoose = (0, _babelTemplate2.default)(\"\\n  (function (strings, raw) {\\n    strings.raw = raw;\\n    return strings;\\n  });\\n\");\n\n\thelpers.temporalRef = (0, _babelTemplate2.default)(\"\\n  (function (val, name, undef) {\\n    if (val === undef) {\\n      throw new ReferenceError(name + \\\" is not defined - temporal dead zone\\\");\\n    } else {\\n      return val;\\n    }\\n  })\\n\");\n\n\thelpers.temporalUndefined = (0, _babelTemplate2.default)(\"\\n  ({})\\n\");\n\n\thelpers.toArray = (0, _babelTemplate2.default)(\"\\n  (function (arr) {\\n    return Array.isArray(arr) ? arr : Array.from(arr);\\n  });\\n\");\n\n\thelpers.toConsumableArray = (0, _babelTemplate2.default)(\"\\n  (function (arr) {\\n    if (Array.isArray(arr)) {\\n      for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i];\\n      return arr2;\\n    } else {\\n      return Array.from(arr);\\n    }\\n  });\\n\");\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 322 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    pre: function pre(file) {\n\t      file.set(\"helpersNamespace\", t.identifier(\"babelHelpers\"));\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 323 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Created at 16/5/18.\n\t * @Author Ling.\n\t * @Email i@zeroling.com\n\t */\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tvar babylon = __webpack_require__(89);\n\n\tmodule.exports = function (babel) {\n\t  var t = babel.types;\n\t  // cache for performance\n\t  var parseMap = {};\n\n\t  return {\n\t    visitor: {\n\t      Identifier: function Identifier(path, state) {\n\t        if (path.parent.type === 'MemberExpression') {\n\t          return;\n\t        }\n\t        if (path.parent.type === 'ClassMethod') {\n\t          return;\n\t        }\n\t        if (path.isPure()) {\n\t          return;\n\t        }\n\t        if (!state.opts.hasOwnProperty(path.node.name)) {\n\t          return;\n\t        }\n\t        var replacementDescriptor = state.opts[path.node.name];\n\t        if (replacementDescriptor === undefined || replacementDescriptor === null) {\n\t          replacementDescriptor = t.identifier(String(replacementDescriptor));\n\t        }\n\n\t        var type = typeof replacementDescriptor === 'undefined' ? 'undefined' : _typeof(replacementDescriptor);\n\t        if (type === 'string' || type === 'boolean') {\n\t          replacementDescriptor = {\n\t            type: type,\n\t            replacement: replacementDescriptor\n\t          };\n\t        } else if (t.isNode(replacementDescriptor)) {\n\t          replacementDescriptor = {\n\t            type: 'node',\n\t            replacement: replacementDescriptor\n\t          };\n\t        } else if (type === 'object' && replacementDescriptor.type === 'node' && typeof replacementDescriptor.replacement === 'string') {\n\t          replacementDescriptor.replacement = parseMap[replacementDescriptor.replacement] ? parseMap[replacementDescriptor.replacement] : babylon.parseExpression(replacementDescriptor.replacement);\n\t        }\n\n\t        var replacement = replacementDescriptor.replacement;\n\t        switch (replacementDescriptor.type) {\n\t          case 'boolean':\n\t            path.replaceWith(t.booleanLiteral(replacement));\n\t            break;\n\t          case 'node':\n\t            if (t.isNode(replacement)) {\n\t              path.replaceWith(replacement);\n\t            }\n\t            break;\n\t          default:\n\t            // treat as string\n\t            var str = String(replacement);\n\t            path.replaceWith(t.stringLiteral(str));\n\t            break;\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n/***/ }),\n/* 324 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"dynamicImport\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 325 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"functionSent\");\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 326 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    inherits: __webpack_require__(67)\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 327 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var yieldStarVisitor = {\n\t    Function: function Function(path) {\n\t      path.skip();\n\t    },\n\t    YieldExpression: function YieldExpression(_ref2, state) {\n\t      var node = _ref2.node;\n\n\t      if (!node.delegate) return;\n\t      var callee = state.addHelper(\"asyncGeneratorDelegate\");\n\t      node.argument = t.callExpression(callee, [t.callExpression(state.addHelper(\"asyncIterator\"), [node.argument]), t.memberExpression(state.addHelper(\"asyncGenerator\"), t.identifier(\"await\"))]);\n\t    }\n\t  };\n\n\t  return {\n\t    inherits: __webpack_require__(195),\n\t    visitor: {\n\t      Function: function Function(path, state) {\n\t        if (!path.node.async || !path.node.generator) return;\n\n\t        path.traverse(yieldStarVisitor, state);\n\n\t        (0, _babelHelperRemapAsyncToGenerator2.default)(path, state.file, {\n\t          wrapAsync: t.memberExpression(state.addHelper(\"asyncGenerator\"), t.identifier(\"wrap\")),\n\t          wrapAwait: t.memberExpression(state.addHelper(\"asyncGenerator\"), t.identifier(\"await\"))\n\t        });\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperRemapAsyncToGenerator = __webpack_require__(124);\n\n\tvar _babelHelperRemapAsyncToGenerator2 = _interopRequireDefault(_babelHelperRemapAsyncToGenerator);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 328 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    inherits: __webpack_require__(67),\n\n\t    visitor: {\n\t      Function: function Function(path, state) {\n\t        if (!path.node.async || path.node.generator) return;\n\n\t        (0, _babelHelperRemapAsyncToGenerator2.default)(path, state.file, {\n\t          wrapAsync: state.addImport(state.opts.module, state.opts.method)\n\t        });\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperRemapAsyncToGenerator = __webpack_require__(124);\n\n\tvar _babelHelperRemapAsyncToGenerator2 = _interopRequireDefault(_babelHelperRemapAsyncToGenerator);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 329 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t    value: true\n\t});\n\n\texports.default = function (_ref) {\n\t    var t = _ref.types;\n\n\t    /**\n\t     * Add a helper to take an initial descriptor, apply some decorators to it, and optionally\n\t     * define the property.\n\t     */\n\t    function ensureApplyDecoratedDescriptorHelper(path, state) {\n\t        if (!state.applyDecoratedDescriptor) {\n\t            state.applyDecoratedDescriptor = path.scope.generateUidIdentifier('applyDecoratedDescriptor');\n\t            var helper = buildApplyDecoratedDescriptor({\n\t                NAME: state.applyDecoratedDescriptor\n\t            });\n\t            path.scope.getProgramParent().path.unshiftContainer('body', helper);\n\t        }\n\n\t        return state.applyDecoratedDescriptor;\n\t    }\n\n\t    /**\n\t     * Add a helper to call as a replacement for class property definition.\n\t     */\n\t    function ensureInitializerDefineProp(path, state) {\n\t        if (!state.initializerDefineProp) {\n\t            state.initializerDefineProp = path.scope.generateUidIdentifier('initDefineProp');\n\t            var helper = buildInitializerDefineProperty({\n\t                NAME: state.initializerDefineProp\n\t            });\n\t            path.scope.getProgramParent().path.unshiftContainer('body', helper);\n\t        }\n\n\t        return state.initializerDefineProp;\n\t    }\n\n\t    /**\n\t     * Add a helper that will throw a useful error if the transform fails to detect the class\n\t     * property assignment, so users know something failed.\n\t     */\n\t    function ensureInitializerWarning(path, state) {\n\t        if (!state.initializerWarningHelper) {\n\t            state.initializerWarningHelper = path.scope.generateUidIdentifier('initializerWarningHelper');\n\t            var helper = buildInitializerWarningHelper({\n\t                NAME: state.initializerWarningHelper\n\t            });\n\t            path.scope.getProgramParent().path.unshiftContainer('body', helper);\n\t        }\n\n\t        return state.initializerWarningHelper;\n\t    }\n\n\t    /**\n\t     * If the decorator expressions are non-identifiers, hoist them to before the class so we can be sure\n\t     * that they are evaluated in order.\n\t     */\n\t    function applyEnsureOrdering(path) {\n\t        // TODO: This should probably also hoist computed properties.\n\t        var decorators = (path.isClass() ? [path].concat(path.get('body.body')) : path.get('properties')).reduce(function (acc, prop) {\n\t            return acc.concat(prop.node.decorators || []);\n\t        }, []);\n\n\t        var identDecorators = decorators.filter(function (decorator) {\n\t            return !t.isIdentifier(decorator.expression);\n\t        });\n\t        if (identDecorators.length === 0) return;\n\n\t        return t.sequenceExpression(identDecorators.map(function (decorator) {\n\t            var expression = decorator.expression;\n\t            var id = decorator.expression = path.scope.generateDeclaredUidIdentifier('dec');\n\t            return t.assignmentExpression('=', id, expression);\n\t        }).concat([path.node]));\n\t    }\n\n\t    /**\n\t     * Given a class expression with class-level decorators, create a new expression\n\t     * with the proper decorated behavior.\n\t     */\n\t    function applyClassDecorators(classPath, state) {\n\t        var decorators = classPath.node.decorators || [];\n\t        classPath.node.decorators = null;\n\n\t        if (decorators.length === 0) return;\n\n\t        var name = classPath.scope.generateDeclaredUidIdentifier('class');\n\n\t        return decorators.map(function (dec) {\n\t            return dec.expression;\n\t        }).reverse().reduce(function (acc, decorator) {\n\t            return buildClassDecorator({\n\t                CLASS_REF: name,\n\t                DECORATOR: decorator,\n\t                INNER: acc\n\t            }).expression;\n\t        }, classPath.node);\n\t    }\n\n\t    /**\n\t     * Given a class expression with method-level decorators, create a new expression\n\t     * with the proper decorated behavior.\n\t     */\n\t    function applyMethodDecorators(path, state) {\n\t        var hasMethodDecorators = path.node.body.body.some(function (node) {\n\t            return (node.decorators || []).length > 0;\n\t        });\n\n\t        if (!hasMethodDecorators) return;\n\n\t        return applyTargetDecorators(path, state, path.node.body.body);\n\t    }\n\n\t    /**\n\t     * Given an object expression with property decorators, create a new expression\n\t     * with the proper decorated behavior.\n\t     */\n\t    function applyObjectDecorators(path, state) {\n\t        var hasMethodDecorators = path.node.properties.some(function (node) {\n\t            return (node.decorators || []).length > 0;\n\t        });\n\n\t        if (!hasMethodDecorators) return;\n\n\t        return applyTargetDecorators(path, state, path.node.properties);\n\t    }\n\n\t    /**\n\t     * A helper to pull out property decorators into a sequence expression.\n\t     */\n\t    function applyTargetDecorators(path, state, decoratedProps) {\n\t        var descName = path.scope.generateDeclaredUidIdentifier('desc');\n\t        var valueTemp = path.scope.generateDeclaredUidIdentifier('value');\n\n\t        var name = path.scope.generateDeclaredUidIdentifier(path.isClass() ? 'class' : 'obj');\n\n\t        var exprs = decoratedProps.reduce(function (acc, node) {\n\t            var decorators = node.decorators || [];\n\t            node.decorators = null;\n\n\t            if (decorators.length === 0) return acc;\n\n\t            if (node.computed) {\n\t                throw path.buildCodeFrameError('Computed method/property decorators are not yet supported.');\n\t            }\n\n\t            var property = t.isLiteral(node.key) ? node.key : t.stringLiteral(node.key.name);\n\n\t            var target = path.isClass() && !node.static ? buildClassPrototype({\n\t                CLASS_REF: name\n\t            }).expression : name;\n\n\t            if (t.isClassProperty(node, { static: false })) {\n\t                var descriptor = path.scope.generateDeclaredUidIdentifier('descriptor');\n\n\t                var initializer = node.value ? t.functionExpression(null, [], t.blockStatement([t.returnStatement(node.value)])) : t.nullLiteral();\n\t                node.value = t.callExpression(ensureInitializerWarning(path, state), [descriptor, t.thisExpression()]);\n\n\t                acc = acc.concat([t.assignmentExpression('=', descriptor, t.callExpression(ensureApplyDecoratedDescriptorHelper(path, state), [target, property, t.arrayExpression(decorators.map(function (dec) {\n\t                    return dec.expression;\n\t                })), t.objectExpression([t.objectProperty(t.identifier('enumerable'), t.booleanLiteral(true)), t.objectProperty(t.identifier('initializer'), initializer)])]))]);\n\t            } else {\n\t                acc = acc.concat(t.callExpression(ensureApplyDecoratedDescriptorHelper(path, state), [target, property, t.arrayExpression(decorators.map(function (dec) {\n\t                    return dec.expression;\n\t                })), t.isObjectProperty(node) || t.isClassProperty(node, { static: true }) ? buildGetObjectInitializer({\n\t                    TEMP: path.scope.generateDeclaredUidIdentifier('init'),\n\t                    TARGET: target,\n\t                    PROPERTY: property\n\t                }).expression : buildGetDescriptor({\n\t                    TARGET: target,\n\t                    PROPERTY: property\n\t                }).expression, target]));\n\t            }\n\n\t            return acc;\n\t        }, []);\n\n\t        return t.sequenceExpression([t.assignmentExpression('=', name, path.node), t.sequenceExpression(exprs), name]);\n\t    }\n\n\t    return {\n\t        inherits: __webpack_require__(125),\n\n\t        visitor: {\n\t            ExportDefaultDeclaration: function ExportDefaultDeclaration(path) {\n\t                if (!path.get(\"declaration\").isClassDeclaration()) return;\n\n\t                var node = path.node;\n\n\t                var ref = node.declaration.id || path.scope.generateUidIdentifier(\"default\");\n\t                node.declaration.id = ref;\n\n\t                // Split the class declaration and the export into two separate statements.\n\t                path.replaceWith(node.declaration);\n\t                path.insertAfter(t.exportNamedDeclaration(null, [t.exportSpecifier(ref, t.identifier('default'))]));\n\t            },\n\t            ClassDeclaration: function ClassDeclaration(path) {\n\t                var node = path.node;\n\n\t                var ref = node.id || path.scope.generateUidIdentifier(\"class\");\n\n\t                path.replaceWith(t.variableDeclaration(\"let\", [t.variableDeclarator(ref, t.toExpression(node))]));\n\t            },\n\t            ClassExpression: function ClassExpression(path, state) {\n\t                // Create a replacement for the class node if there is one. We do one pass to replace classes with\n\t                // class decorators, and a second pass to process method decorators.\n\t                var decoratedClass = applyEnsureOrdering(path) || applyClassDecorators(path, state) || applyMethodDecorators(path, state);\n\n\t                if (decoratedClass) path.replaceWith(decoratedClass);\n\t            },\n\t            ObjectExpression: function ObjectExpression(path, state) {\n\t                var decoratedObject = applyEnsureOrdering(path) || applyObjectDecorators(path, state);\n\n\t                if (decoratedObject) path.replaceWith(decoratedObject);\n\t            },\n\t            AssignmentExpression: function AssignmentExpression(path, state) {\n\t                if (!state.initializerWarningHelper) return;\n\n\t                if (!path.get('left').isMemberExpression()) return;\n\t                if (!path.get('left.property').isIdentifier()) return;\n\t                if (!path.get('right').isCallExpression()) return;\n\t                if (!path.get('right.callee').isIdentifier({ name: state.initializerWarningHelper.name })) return;\n\n\t                path.replaceWith(t.callExpression(ensureInitializerDefineProp(path, state), [path.get('left.object').node, t.stringLiteral(path.get('left.property').node.name), path.get('right.arguments')[0].node, path.get('right.arguments')[1].node]));\n\t            }\n\t        }\n\t    };\n\t};\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tfunction _interopRequireDefault(obj) {\n\t    return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildClassDecorator = (0, _babelTemplate2.default)('\\n  DECORATOR(CLASS_REF = INNER) || CLASS_REF;\\n');\n\n\tvar buildClassPrototype = (0, _babelTemplate2.default)('\\n  CLASS_REF.prototype;\\n');\n\n\tvar buildGetDescriptor = (0, _babelTemplate2.default)('\\n    Object.getOwnPropertyDescriptor(TARGET, PROPERTY);\\n');\n\n\tvar buildGetObjectInitializer = (0, _babelTemplate2.default)('\\n    (TEMP = Object.getOwnPropertyDescriptor(TARGET, PROPERTY), (TEMP = TEMP ? TEMP.value : undefined), {\\n        enumerable: true,\\n        configurable: true,\\n        writable: true,\\n        initializer: function(){\\n            return TEMP;\\n        }\\n    })\\n');\n\n\tvar buildInitializerWarningHelper = (0, _babelTemplate2.default)('\\n    function NAME(descriptor, context){\\n        throw new Error(\\'Decorating class property failed. Please ensure that transform-class-properties is enabled.\\');\\n    }\\n');\n\n\tvar buildInitializerDefineProperty = (0, _babelTemplate2.default)('\\n    function NAME(target, property, descriptor, context){\\n        if (!descriptor) return;\\n\\n        Object.defineProperty(target, property, {\\n            enumerable: descriptor.enumerable,\\n            configurable: descriptor.configurable,\\n            writable: descriptor.writable,\\n            value: descriptor.initializer ? descriptor.initializer.call(context) : void 0,\\n        });\\n    }\\n');\n\n\tvar buildApplyDecoratedDescriptor = (0, _babelTemplate2.default)('\\n    function NAME(target, property, decorators, descriptor, context){\\n        var desc = {};\\n        Object[\\'ke\\' + \\'ys\\'](descriptor).forEach(function(key){\\n            desc[key] = descriptor[key];\\n        });\\n        desc.enumerable = !!desc.enumerable;\\n        desc.configurable = !!desc.configurable;\\n        if (\\'value\\' in desc || desc.initializer){\\n            desc.writable = true;\\n        }\\n\\n        desc = decorators.slice().reverse().reduce(function(desc, decorator){\\n            return decorator(target, property, desc) || desc;\\n        }, desc);\\n\\n        if (context && desc.initializer !== void 0){\\n            desc.value = desc.initializer ? desc.initializer.call(context) : void 0;\\n            desc.initializer = undefined;\\n        }\\n\\n        if (desc.initializer === void 0){\\n            // This is a hack to avoid this being processed by \\'transform-runtime\\'.\\n            // See issue #9.\\n            Object[\\'define\\' + \\'Property\\'](target, property, desc);\\n            desc = null;\\n        }\\n\\n        return desc;\\n    }\\n');\n\n\t;\n\n/***/ }),\n/* 330 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.visitor = undefined;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction getTDZStatus(refPath, bindingPath) {\n\t  var executionStatus = bindingPath._guessExecutionStatusRelativeTo(refPath);\n\n\t  if (executionStatus === \"before\") {\n\t    return \"inside\";\n\t  } else if (executionStatus === \"after\") {\n\t    return \"outside\";\n\t  } else {\n\t    return \"maybe\";\n\t  }\n\t}\n\n\tfunction buildTDZAssert(node, file) {\n\t  return t.callExpression(file.addHelper(\"temporalRef\"), [node, t.stringLiteral(node.name), file.addHelper(\"temporalUndefined\")]);\n\t}\n\n\tfunction isReference(node, scope, state) {\n\t  var declared = state.letReferences[node.name];\n\t  if (!declared) return false;\n\n\t  return scope.getBindingIdentifier(node.name) === declared;\n\t}\n\n\tvar visitor = exports.visitor = {\n\t  ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t    if (!this.file.opts.tdz) return;\n\n\t    var node = path.node,\n\t        parent = path.parent,\n\t        scope = path.scope;\n\n\t    if (path.parentPath.isFor({ left: node })) return;\n\t    if (!isReference(node, scope, state)) return;\n\n\t    var bindingPath = scope.getBinding(node.name).path;\n\n\t    var status = getTDZStatus(path, bindingPath);\n\t    if (status === \"inside\") return;\n\n\t    if (status === \"maybe\") {\n\t      var assert = buildTDZAssert(node, state.file);\n\n\t      bindingPath.parent._tdzThis = true;\n\n\t      path.skip();\n\n\t      if (path.parentPath.isUpdateExpression()) {\n\t        if (parent._ignoreBlockScopingTDZ) return;\n\t        path.parentPath.replaceWith(t.sequenceExpression([assert, parent]));\n\t      } else {\n\t        path.replaceWith(assert);\n\t      }\n\t    } else if (status === \"outside\") {\n\t      path.replaceWith(t.throwStatement(t.inherits(t.newExpression(t.identifier(\"ReferenceError\"), [t.stringLiteral(node.name + \" is not defined - temporal dead zone\")]), node)));\n\t    }\n\t  },\n\n\t  AssignmentExpression: {\n\t    exit: function exit(path, state) {\n\t      if (!this.file.opts.tdz) return;\n\n\t      var node = path.node;\n\n\t      if (node._ignoreBlockScopingTDZ) return;\n\n\t      var nodes = [];\n\t      var ids = path.getBindingIdentifiers();\n\n\t      for (var name in ids) {\n\t        var id = ids[name];\n\n\t        if (isReference(id, path.scope, state)) {\n\t          nodes.push(buildTDZAssert(id, state.file));\n\t        }\n\t      }\n\n\t      if (nodes.length) {\n\t        node._ignoreBlockScopingTDZ = true;\n\t        nodes.push(node);\n\t        path.replaceWithMultiple(nodes.map(t.expressionStatement));\n\t      }\n\t    }\n\t  }\n\t};\n\n/***/ }),\n/* 331 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _possibleConstructorReturn2 = __webpack_require__(42);\n\n\tvar _possibleConstructorReturn3 = _interopRequireDefault(_possibleConstructorReturn2);\n\n\tvar _inherits2 = __webpack_require__(41);\n\n\tvar _inherits3 = _interopRequireDefault(_inherits2);\n\n\tvar _babelHelperFunctionName = __webpack_require__(40);\n\n\tvar _babelHelperFunctionName2 = _interopRequireDefault(_babelHelperFunctionName);\n\n\tvar _vanilla = __webpack_require__(207);\n\n\tvar _vanilla2 = _interopRequireDefault(_vanilla);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar LooseClassTransformer = function (_VanillaTransformer) {\n\t  (0, _inherits3.default)(LooseClassTransformer, _VanillaTransformer);\n\n\t  function LooseClassTransformer() {\n\t    (0, _classCallCheck3.default)(this, LooseClassTransformer);\n\n\t    var _this = (0, _possibleConstructorReturn3.default)(this, _VanillaTransformer.apply(this, arguments));\n\n\t    _this.isLoose = true;\n\t    return _this;\n\t  }\n\n\t  LooseClassTransformer.prototype._processMethod = function _processMethod(node, scope) {\n\t    if (!node.decorators) {\n\n\t      var classRef = this.classRef;\n\t      if (!node.static) classRef = t.memberExpression(classRef, t.identifier(\"prototype\"));\n\t      var methodName = t.memberExpression(classRef, node.key, node.computed || t.isLiteral(node.key));\n\n\t      var func = t.functionExpression(null, node.params, node.body, node.generator, node.async);\n\t      func.returnType = node.returnType;\n\t      var key = t.toComputedKey(node, node.key);\n\t      if (t.isStringLiteral(key)) {\n\t        func = (0, _babelHelperFunctionName2.default)({\n\t          node: func,\n\t          id: key,\n\t          scope: scope\n\t        });\n\t      }\n\n\t      var expr = t.expressionStatement(t.assignmentExpression(\"=\", methodName, func));\n\t      t.inheritsComments(expr, node);\n\t      this.body.push(expr);\n\t      return true;\n\t    }\n\t  };\n\n\t  return LooseClassTransformer;\n\t}(_vanilla2.default);\n\n\texports.default = LooseClassTransformer;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 332 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    visitor: {\n\t      BinaryExpression: function BinaryExpression(path) {\n\t        var node = path.node;\n\n\t        if (node.operator === \"instanceof\") {\n\t          path.replaceWith(t.callExpression(this.addHelper(\"instanceof\"), [node.left, node.right]));\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 333 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.visitor = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _babelHelperGetFunctionArity = __webpack_require__(189);\n\n\tvar _babelHelperGetFunctionArity2 = _interopRequireDefault(_babelHelperGetFunctionArity);\n\n\tvar _babelHelperCallDelegate = __webpack_require__(317);\n\n\tvar _babelHelperCallDelegate2 = _interopRequireDefault(_babelHelperCallDelegate);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildDefaultParam = (0, _babelTemplate2.default)(\"\\n  let VARIABLE_NAME =\\n    ARGUMENTS.length > ARGUMENT_KEY && ARGUMENTS[ARGUMENT_KEY] !== undefined ?\\n      ARGUMENTS[ARGUMENT_KEY]\\n    :\\n      DEFAULT_VALUE;\\n\");\n\n\tvar buildCutOff = (0, _babelTemplate2.default)(\"\\n  let $0 = $1[$2];\\n\");\n\n\tfunction hasDefaults(node) {\n\t  for (var _iterator = node.params, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var param = _ref;\n\n\t    if (!t.isIdentifier(param)) return true;\n\t  }\n\t  return false;\n\t}\n\n\tfunction isSafeBinding(scope, node) {\n\t  if (!scope.hasOwnBinding(node.name)) return true;\n\n\t  var _scope$getOwnBinding = scope.getOwnBinding(node.name),\n\t      kind = _scope$getOwnBinding.kind;\n\n\t  return kind === \"param\" || kind === \"local\";\n\t}\n\n\tvar iifeVisitor = {\n\t  ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t    var scope = path.scope,\n\t        node = path.node;\n\n\t    if (node.name === \"eval\" || !isSafeBinding(scope, node)) {\n\t      state.iife = true;\n\t      path.stop();\n\t    }\n\t  },\n\t  Scope: function Scope(path) {\n\t    path.skip();\n\t  }\n\t};\n\n\tvar visitor = exports.visitor = {\n\t  Function: function Function(path) {\n\t    var node = path.node,\n\t        scope = path.scope;\n\n\t    if (!hasDefaults(node)) return;\n\n\t    path.ensureBlock();\n\n\t    var state = {\n\t      iife: false,\n\t      scope: scope\n\t    };\n\n\t    var body = [];\n\n\t    var argsIdentifier = t.identifier(\"arguments\");\n\t    argsIdentifier._shadowedFunctionLiteral = path;\n\n\t    function pushDefNode(left, right, i) {\n\t      var defNode = buildDefaultParam({\n\t        VARIABLE_NAME: left,\n\t        DEFAULT_VALUE: right,\n\t        ARGUMENT_KEY: t.numericLiteral(i),\n\t        ARGUMENTS: argsIdentifier\n\t      });\n\t      defNode._blockHoist = node.params.length - i;\n\t      body.push(defNode);\n\t    }\n\n\t    var lastNonDefaultParam = (0, _babelHelperGetFunctionArity2.default)(node);\n\n\t    var params = path.get(\"params\");\n\t    for (var i = 0; i < params.length; i++) {\n\t      var param = params[i];\n\n\t      if (!param.isAssignmentPattern()) {\n\t        if (!state.iife && !param.isIdentifier()) {\n\t          param.traverse(iifeVisitor, state);\n\t        }\n\n\t        continue;\n\t      }\n\n\t      var left = param.get(\"left\");\n\t      var right = param.get(\"right\");\n\n\t      if (i >= lastNonDefaultParam || left.isPattern()) {\n\t        var placeholder = scope.generateUidIdentifier(\"x\");\n\t        placeholder._isDefaultPlaceholder = true;\n\t        node.params[i] = placeholder;\n\t      } else {\n\t        node.params[i] = left.node;\n\t      }\n\n\t      if (!state.iife) {\n\t        if (right.isIdentifier() && !isSafeBinding(scope, right.node)) {\n\t          state.iife = true;\n\t        } else {\n\t          right.traverse(iifeVisitor, state);\n\t        }\n\t      }\n\n\t      pushDefNode(left.node, right.node, i);\n\t    }\n\n\t    for (var _i2 = lastNonDefaultParam + 1; _i2 < node.params.length; _i2++) {\n\t      var _param = node.params[_i2];\n\t      if (_param._isDefaultPlaceholder) continue;\n\n\t      var declar = buildCutOff(_param, argsIdentifier, t.numericLiteral(_i2));\n\t      declar._blockHoist = node.params.length - _i2;\n\t      body.push(declar);\n\t    }\n\n\t    node.params = node.params.slice(0, lastNonDefaultParam);\n\n\t    if (state.iife) {\n\t      body.push((0, _babelHelperCallDelegate2.default)(path, scope));\n\t      path.set(\"body\", t.blockStatement(body));\n\t    } else {\n\t      path.get(\"body\").unshiftContainer(\"body\", body);\n\t    }\n\t  }\n\t};\n\n/***/ }),\n/* 334 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.visitor = undefined;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tvar visitor = exports.visitor = {\n\t  Function: function Function(path) {\n\t    var params = path.get(\"params\");\n\n\t    var hoistTweak = t.isRestElement(params[params.length - 1]) ? 1 : 0;\n\t    var outputParamsLength = params.length - hoistTweak;\n\n\t    for (var i = 0; i < outputParamsLength; i++) {\n\t      var param = params[i];\n\t      if (param.isArrayPattern() || param.isObjectPattern()) {\n\t        var uid = path.scope.generateUidIdentifier(\"ref\");\n\n\t        var declar = t.variableDeclaration(\"let\", [t.variableDeclarator(param.node, uid)]);\n\t        declar._blockHoist = outputParamsLength - i;\n\n\t        path.ensureBlock();\n\t        path.get(\"body\").unshiftContainer(\"body\", declar);\n\n\t        param.replaceWith(uid);\n\t      }\n\t    }\n\t  }\n\t};\n\n/***/ }),\n/* 335 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.visitor = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _babelTemplate = __webpack_require__(4);\n\n\tvar _babelTemplate2 = _interopRequireDefault(_babelTemplate);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar buildRest = (0, _babelTemplate2.default)(\"\\n  for (var LEN = ARGUMENTS.length,\\n           ARRAY = Array(ARRAY_LEN),\\n           KEY = START;\\n       KEY < LEN;\\n       KEY++) {\\n    ARRAY[ARRAY_KEY] = ARGUMENTS[KEY];\\n  }\\n\");\n\n\tvar restIndex = (0, _babelTemplate2.default)(\"\\n  ARGUMENTS.length <= INDEX ? undefined : ARGUMENTS[INDEX]\\n\");\n\n\tvar restIndexImpure = (0, _babelTemplate2.default)(\"\\n  REF = INDEX, ARGUMENTS.length <= REF ? undefined : ARGUMENTS[REF]\\n\");\n\n\tvar restLength = (0, _babelTemplate2.default)(\"\\n  ARGUMENTS.length <= OFFSET ? 0 : ARGUMENTS.length - OFFSET\\n\");\n\n\tvar memberExpressionOptimisationVisitor = {\n\t  Scope: function Scope(path, state) {\n\t    if (!path.scope.bindingIdentifierEquals(state.name, state.outerBinding)) {\n\t      path.skip();\n\t    }\n\t  },\n\t  Flow: function Flow(path) {\n\t    if (path.isTypeCastExpression()) return;\n\n\t    path.skip();\n\t  },\n\n\t  \"Function|ClassProperty\": function FunctionClassProperty(path, state) {\n\t    var oldNoOptimise = state.noOptimise;\n\t    state.noOptimise = true;\n\t    path.traverse(memberExpressionOptimisationVisitor, state);\n\t    state.noOptimise = oldNoOptimise;\n\n\t    path.skip();\n\t  },\n\n\t  ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t    var node = path.node;\n\n\t    if (node.name === \"arguments\") {\n\t      state.deopted = true;\n\t    }\n\n\t    if (node.name !== state.name) return;\n\n\t    if (state.noOptimise) {\n\t      state.deopted = true;\n\t    } else {\n\t      var parentPath = path.parentPath;\n\n\t      if (parentPath.listKey === \"params\" && parentPath.key < state.offset) {\n\t        return;\n\t      }\n\n\t      if (parentPath.isMemberExpression({ object: node })) {\n\t        var grandparentPath = parentPath.parentPath;\n\n\t        var argsOptEligible = !state.deopted && !(grandparentPath.isAssignmentExpression() && parentPath.node === grandparentPath.node.left || grandparentPath.isLVal() || grandparentPath.isForXStatement() || grandparentPath.isUpdateExpression() || grandparentPath.isUnaryExpression({ operator: \"delete\" }) || (grandparentPath.isCallExpression() || grandparentPath.isNewExpression()) && parentPath.node === grandparentPath.node.callee);\n\n\t        if (argsOptEligible) {\n\t          if (parentPath.node.computed) {\n\t            if (parentPath.get(\"property\").isBaseType(\"number\")) {\n\t              state.candidates.push({ cause: \"indexGetter\", path: path });\n\t              return;\n\t            }\n\t          } else if (parentPath.node.property.name === \"length\") {\n\t            state.candidates.push({ cause: \"lengthGetter\", path: path });\n\t            return;\n\t          }\n\t        }\n\t      }\n\n\t      if (state.offset === 0 && parentPath.isSpreadElement()) {\n\t        var call = parentPath.parentPath;\n\t        if (call.isCallExpression() && call.node.arguments.length === 1) {\n\t          state.candidates.push({ cause: \"argSpread\", path: path });\n\t          return;\n\t        }\n\t      }\n\n\t      state.references.push(path);\n\t    }\n\t  },\n\t  BindingIdentifier: function BindingIdentifier(_ref, state) {\n\t    var node = _ref.node;\n\n\t    if (node.name === state.name) {\n\t      state.deopted = true;\n\t    }\n\t  }\n\t};\n\tfunction hasRest(node) {\n\t  return t.isRestElement(node.params[node.params.length - 1]);\n\t}\n\n\tfunction optimiseIndexGetter(path, argsId, offset) {\n\t  var index = void 0;\n\n\t  if (t.isNumericLiteral(path.parent.property)) {\n\t    index = t.numericLiteral(path.parent.property.value + offset);\n\t  } else if (offset === 0) {\n\t    index = path.parent.property;\n\t  } else {\n\t    index = t.binaryExpression(\"+\", path.parent.property, t.numericLiteral(offset));\n\t  }\n\n\t  var scope = path.scope;\n\n\t  if (!scope.isPure(index)) {\n\t    var temp = scope.generateUidIdentifierBasedOnNode(index);\n\t    scope.push({ id: temp, kind: \"var\" });\n\t    path.parentPath.replaceWith(restIndexImpure({\n\t      ARGUMENTS: argsId,\n\t      INDEX: index,\n\t      REF: temp\n\t    }));\n\t  } else {\n\t    path.parentPath.replaceWith(restIndex({\n\t      ARGUMENTS: argsId,\n\t      INDEX: index\n\t    }));\n\t  }\n\t}\n\n\tfunction optimiseLengthGetter(path, argsId, offset) {\n\t  if (offset) {\n\t    path.parentPath.replaceWith(restLength({\n\t      ARGUMENTS: argsId,\n\t      OFFSET: t.numericLiteral(offset)\n\t    }));\n\t  } else {\n\t    path.replaceWith(argsId);\n\t  }\n\t}\n\n\tvar visitor = exports.visitor = {\n\t  Function: function Function(path) {\n\t    var node = path.node,\n\t        scope = path.scope;\n\n\t    if (!hasRest(node)) return;\n\n\t    var rest = node.params.pop().argument;\n\n\t    var argsId = t.identifier(\"arguments\");\n\n\t    argsId._shadowedFunctionLiteral = path;\n\n\t    var state = {\n\t      references: [],\n\t      offset: node.params.length,\n\n\t      argumentsNode: argsId,\n\t      outerBinding: scope.getBindingIdentifier(rest.name),\n\n\t      candidates: [],\n\n\t      name: rest.name,\n\n\t      deopted: false\n\t    };\n\n\t    path.traverse(memberExpressionOptimisationVisitor, state);\n\n\t    if (!state.deopted && !state.references.length) {\n\t      for (var _iterator = state.candidates, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref3;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref3 = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref3 = _i.value;\n\t        }\n\n\t        var _ref4 = _ref3;\n\t        var _path = _ref4.path,\n\t            cause = _ref4.cause;\n\n\t        switch (cause) {\n\t          case \"indexGetter\":\n\t            optimiseIndexGetter(_path, argsId, state.offset);\n\t            break;\n\t          case \"lengthGetter\":\n\t            optimiseLengthGetter(_path, argsId, state.offset);\n\t            break;\n\t          default:\n\t            _path.replaceWith(argsId);\n\t        }\n\t      }\n\t      return;\n\t    }\n\n\t    state.references = state.references.concat(state.candidates.map(function (_ref5) {\n\t      var path = _ref5.path;\n\t      return path;\n\t    }));\n\n\t    state.deopted = state.deopted || !!node.shadow;\n\n\t    var start = t.numericLiteral(node.params.length);\n\t    var key = scope.generateUidIdentifier(\"key\");\n\t    var len = scope.generateUidIdentifier(\"len\");\n\n\t    var arrKey = key;\n\t    var arrLen = len;\n\t    if (node.params.length) {\n\t      arrKey = t.binaryExpression(\"-\", key, start);\n\n\t      arrLen = t.conditionalExpression(t.binaryExpression(\">\", len, start), t.binaryExpression(\"-\", len, start), t.numericLiteral(0));\n\t    }\n\n\t    var loop = buildRest({\n\t      ARGUMENTS: argsId,\n\t      ARRAY_KEY: arrKey,\n\t      ARRAY_LEN: arrLen,\n\t      START: start,\n\t      ARRAY: rest,\n\t      KEY: key,\n\t      LEN: len\n\t    });\n\n\t    if (state.deopted) {\n\t      loop._blockHoist = node.params.length + 1;\n\t      node.body.body.unshift(loop);\n\t    } else {\n\t      loop._blockHoist = 1;\n\n\t      var target = path.getEarliestCommonAncestorFrom(state.references).getStatementParent();\n\n\t      target.findParent(function (path) {\n\t        if (path.isLoop()) {\n\t          target = path;\n\t        } else {\n\t          return path.isFunction();\n\t        }\n\t      });\n\n\t      target.insertBefore(loop);\n\t    }\n\t  }\n\t};\n\n/***/ }),\n/* 336 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    visitor: {\n\t      MemberExpression: {\n\t        exit: function exit(_ref2) {\n\t          var node = _ref2.node;\n\n\t          var prop = node.property;\n\t          if (!node.computed && t.isIdentifier(prop) && !t.isValidIdentifier(prop.name)) {\n\t            node.property = t.stringLiteral(prop.name);\n\t            node.computed = true;\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 337 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    visitor: {\n\t      ObjectProperty: {\n\t        exit: function exit(_ref2) {\n\t          var node = _ref2.node;\n\n\t          var key = node.key;\n\t          if (!node.computed && t.isIdentifier(key) && !t.isValidIdentifier(key.name)) {\n\t            node.key = t.stringLiteral(key.name);\n\t          }\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 338 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    visitor: {\n\t      ObjectExpression: function ObjectExpression(path, file) {\n\t        var node = path.node;\n\n\t        var hasAny = false;\n\t        for (var _iterator = node.properties, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref2;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref2 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref2 = _i.value;\n\t          }\n\n\t          var prop = _ref2;\n\n\t          if (prop.kind === \"get\" || prop.kind === \"set\") {\n\t            hasAny = true;\n\t            break;\n\t          }\n\t        }\n\t        if (!hasAny) return;\n\n\t        var mutatorMap = {};\n\n\t        node.properties = node.properties.filter(function (prop) {\n\t          if (!prop.computed && (prop.kind === \"get\" || prop.kind === \"set\")) {\n\t            defineMap.push(mutatorMap, prop, null, file);\n\t            return false;\n\t          } else {\n\t            return true;\n\t          }\n\t        });\n\n\t        path.replaceWith(t.callExpression(t.memberExpression(t.identifier(\"Object\"), t.identifier(\"defineProperties\")), [node, defineMap.toDefineObject(mutatorMap)]));\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _babelHelperDefineMap = __webpack_require__(188);\n\n\tvar defineMap = _interopRequireWildcard(_babelHelperDefineMap);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 339 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var parse = _ref.parse,\n\t      traverse = _ref.traverse;\n\n\t  return {\n\t    visitor: {\n\t      CallExpression: function CallExpression(path) {\n\t        if (path.get(\"callee\").isIdentifier({ name: \"eval\" }) && path.node.arguments.length === 1) {\n\t          var evaluate = path.get(\"arguments\")[0].evaluate();\n\t          if (!evaluate.confident) return;\n\n\t          var code = evaluate.value;\n\t          if (typeof code !== \"string\") return;\n\n\t          var ast = parse(code);\n\t          traverse.removeProperties(ast);\n\t          return ast.program;\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 340 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function wrapInFlowComment(path, parent) {\n\t    path.addComment(\"trailing\", generateComment(path, parent));\n\t    path.replaceWith(t.noop());\n\t  }\n\n\t  function generateComment(path, parent) {\n\t    var comment = path.getSource().replace(/\\*-\\//g, \"*-ESCAPED/\").replace(/\\*\\//g, \"*-/\");\n\t    if (parent && parent.optional) comment = \"?\" + comment;\n\t    if (comment[0] !== \":\") comment = \":: \" + comment;\n\t    return comment;\n\t  }\n\n\t  return {\n\t    inherits: __webpack_require__(126),\n\n\t    visitor: {\n\t      TypeCastExpression: function TypeCastExpression(path) {\n\t        var node = path.node;\n\n\t        path.get(\"expression\").addComment(\"trailing\", generateComment(path.get(\"typeAnnotation\")));\n\t        path.replaceWith(t.parenthesizedExpression(node.expression));\n\t      },\n\t      Identifier: function Identifier(path) {\n\t        var node = path.node;\n\n\t        if (!node.optional || node.typeAnnotation) {\n\t          return;\n\t        }\n\t        path.addComment(\"trailing\", \":: ?\");\n\t      },\n\n\t      AssignmentPattern: {\n\t        exit: function exit(_ref2) {\n\t          var node = _ref2.node;\n\n\t          node.left.optional = false;\n\t        }\n\t      },\n\n\t      Function: {\n\t        exit: function exit(_ref3) {\n\t          var node = _ref3.node;\n\n\t          node.params.forEach(function (param) {\n\t            return param.optional = false;\n\t          });\n\t        }\n\t      },\n\n\t      ClassProperty: function ClassProperty(path) {\n\t        var node = path.node,\n\t            parent = path.parent;\n\n\t        if (!node.value) wrapInFlowComment(path, parent);\n\t      },\n\t      \"ExportNamedDeclaration|Flow\": function ExportNamedDeclarationFlow(path) {\n\t        var node = path.node,\n\t            parent = path.parent;\n\n\t        if (t.isExportNamedDeclaration(node) && !t.isFlow(node.declaration)) {\n\t          return;\n\t        }\n\t        wrapInFlowComment(path, parent);\n\t      },\n\t      ImportDeclaration: function ImportDeclaration(path) {\n\t        var node = path.node,\n\t            parent = path.parent;\n\n\t        if (t.isImportDeclaration(node) && node.importKind !== \"type\" && node.importKind !== \"typeof\") {\n\t          return;\n\t        }\n\t        wrapInFlowComment(path, parent);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 341 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    visitor: {\n\t      FunctionExpression: {\n\t        exit: function exit(path) {\n\t          var node = path.node;\n\n\t          if (!node.id) return;\n\t          node._ignoreUserWhitespace = true;\n\n\t          path.replaceWith(t.callExpression(t.functionExpression(null, [], t.blockStatement([t.toStatement(node), t.returnStatement(node.id)])), []));\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 342 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      CallExpression: function CallExpression(path, file) {\n\t        if (path.get(\"callee\").matchesPattern(\"Object.assign\")) {\n\t          path.node.callee = file.addHelper(\"extends\");\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 343 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return {\n\t    visitor: {\n\t      CallExpression: function CallExpression(path, file) {\n\t        if (path.get(\"callee\").matchesPattern(\"Object.setPrototypeOf\")) {\n\t          path.node.callee = file.addHelper(\"defaults\");\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 344 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function isProtoKey(node) {\n\t    return t.isLiteral(t.toComputedKey(node, node.key), { value: \"__proto__\" });\n\t  }\n\n\t  function isProtoAssignmentExpression(node) {\n\t    var left = node.left;\n\t    return t.isMemberExpression(left) && t.isLiteral(t.toComputedKey(left, left.property), { value: \"__proto__\" });\n\t  }\n\n\t  function buildDefaultsCallExpression(expr, ref, file) {\n\t    return t.expressionStatement(t.callExpression(file.addHelper(\"defaults\"), [ref, expr.right]));\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      AssignmentExpression: function AssignmentExpression(path, file) {\n\t        if (!isProtoAssignmentExpression(path.node)) return;\n\n\t        var nodes = [];\n\t        var left = path.node.left.object;\n\t        var temp = path.scope.maybeGenerateMemoised(left);\n\n\t        if (temp) nodes.push(t.expressionStatement(t.assignmentExpression(\"=\", temp, left)));\n\t        nodes.push(buildDefaultsCallExpression(path.node, temp || left, file));\n\t        if (temp) nodes.push(temp);\n\n\t        path.replaceWithMultiple(nodes);\n\t      },\n\t      ExpressionStatement: function ExpressionStatement(path, file) {\n\t        var expr = path.node.expression;\n\t        if (!t.isAssignmentExpression(expr, { operator: \"=\" })) return;\n\n\t        if (isProtoAssignmentExpression(expr)) {\n\t          path.replaceWith(buildDefaultsCallExpression(expr, expr.left.object, file));\n\t        }\n\t      },\n\t      ObjectExpression: function ObjectExpression(path, file) {\n\t        var proto = void 0;\n\t        var node = path.node;\n\n\t        for (var _iterator = node.properties, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref2;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref2 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref2 = _i.value;\n\t          }\n\n\t          var prop = _ref2;\n\n\t          if (isProtoKey(prop)) {\n\t            proto = prop.value;\n\t            (0, _pull2.default)(node.properties, prop);\n\t          }\n\t        }\n\n\t        if (proto) {\n\t          var args = [t.objectExpression([]), proto];\n\t          if (node.properties.length) args.push(node);\n\t          path.replaceWith(t.callExpression(file.addHelper(\"extends\"), args));\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _pull = __webpack_require__(277);\n\n\tvar _pull2 = _interopRequireDefault(_pull);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 345 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var immutabilityVisitor = {\n\t    enter: function enter(path, state) {\n\t      var stop = function stop() {\n\t        state.isImmutable = false;\n\t        path.stop();\n\t      };\n\n\t      if (path.isJSXClosingElement()) {\n\t        path.skip();\n\t        return;\n\t      }\n\n\t      if (path.isJSXIdentifier({ name: \"ref\" }) && path.parentPath.isJSXAttribute({ name: path.node })) {\n\t        return stop();\n\t      }\n\n\t      if (path.isJSXIdentifier() || path.isIdentifier() || path.isJSXMemberExpression()) {\n\t        return;\n\t      }\n\n\t      if (!path.isImmutable()) {\n\t        if (path.isPure()) {\n\t          var expressionResult = path.evaluate();\n\t          if (expressionResult.confident) {\n\t            var value = expressionResult.value;\n\n\t            var isMutable = value && (typeof value === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(value)) === \"object\" || typeof value === \"function\";\n\t            if (!isMutable) {\n\t              return;\n\t            }\n\t          } else if (t.isIdentifier(expressionResult.deopt)) {\n\t            return;\n\t          }\n\t        }\n\t        stop();\n\t      }\n\t    }\n\t  };\n\n\t  return {\n\t    visitor: {\n\t      JSXElement: function JSXElement(path) {\n\t        if (path.node._hoisted) return;\n\n\t        var state = { isImmutable: true };\n\t        path.traverse(immutabilityVisitor, state);\n\n\t        if (state.isImmutable) {\n\t          path.hoist();\n\t        } else {\n\t          path.node._hoisted = true;\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 346 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function hasRefOrSpread(attrs) {\n\t    for (var i = 0; i < attrs.length; i++) {\n\t      var attr = attrs[i];\n\t      if (t.isJSXSpreadAttribute(attr)) return true;\n\t      if (isJSXAttributeOfName(attr, \"ref\")) return true;\n\t    }\n\t    return false;\n\t  }\n\n\t  function isJSXAttributeOfName(attr, name) {\n\t    return t.isJSXAttribute(attr) && t.isJSXIdentifier(attr.name, { name: name });\n\t  }\n\n\t  function getAttributeValue(attr) {\n\t    var value = attr.value;\n\t    if (!value) return t.identifier(\"true\");\n\t    if (t.isJSXExpressionContainer(value)) value = value.expression;\n\t    return value;\n\t  }\n\n\t  return {\n\t    visitor: {\n\t      JSXElement: function JSXElement(path, file) {\n\t        var node = path.node;\n\n\t        var open = node.openingElement;\n\t        if (hasRefOrSpread(open.attributes)) return;\n\n\t        var props = t.objectExpression([]);\n\t        var key = null;\n\t        var type = open.name;\n\n\t        if (t.isJSXIdentifier(type) && t.react.isCompatTag(type.name)) {\n\t          type = t.stringLiteral(type.name);\n\t        }\n\n\t        function pushProp(objProps, key, value) {\n\t          objProps.push(t.objectProperty(key, value));\n\t        }\n\n\t        for (var _iterator = open.attributes, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t          var _ref2;\n\n\t          if (_isArray) {\n\t            if (_i >= _iterator.length) break;\n\t            _ref2 = _iterator[_i++];\n\t          } else {\n\t            _i = _iterator.next();\n\t            if (_i.done) break;\n\t            _ref2 = _i.value;\n\t          }\n\n\t          var attr = _ref2;\n\n\t          if (isJSXAttributeOfName(attr, \"key\")) {\n\t            key = getAttributeValue(attr);\n\t          } else {\n\t            var name = attr.name.name;\n\t            var propertyKey = t.isValidIdentifier(name) ? t.identifier(name) : t.stringLiteral(name);\n\t            pushProp(props.properties, propertyKey, getAttributeValue(attr));\n\t          }\n\t        }\n\n\t        var args = [type, props];\n\t        if (key || node.children.length) {\n\t          var children = t.react.buildChildren(node);\n\t          args.push.apply(args, [key || t.unaryExpression(\"void\", t.numericLiteral(0), true)].concat(children));\n\t        }\n\n\t        var el = t.callExpression(file.addHelper(\"jsx\"), args);\n\t        path.replaceWith(el);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 347 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  return {\n\t    manipulateOptions: function manipulateOptions(opts, parserOpts) {\n\t      parserOpts.plugins.push(\"jsx\");\n\t    },\n\n\t    visitor: (0, _babelHelperBuilderReactJsx2.default)({\n\t      pre: function pre(state) {\n\t        state.callee = state.tagExpr;\n\t      },\n\t      post: function post(state) {\n\t        if (t.react.isCompatTag(state.tagName)) {\n\t          state.call = t.callExpression(t.memberExpression(t.memberExpression(t.identifier(\"React\"), t.identifier(\"DOM\")), state.tagExpr, t.isLiteral(state.tagExpr)), state.args);\n\t        }\n\t      }\n\t    })\n\t  };\n\t};\n\n\tvar _babelHelperBuilderReactJsx = __webpack_require__(348);\n\n\tvar _babelHelperBuilderReactJsx2 = _interopRequireDefault(_babelHelperBuilderReactJsx);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 348 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (opts) {\n\t  var visitor = {};\n\n\t  visitor.JSXNamespacedName = function (path) {\n\t    throw path.buildCodeFrameError(\"Namespace tags are not supported. ReactJSX is not XML.\");\n\t  };\n\n\t  visitor.JSXElement = {\n\t    exit: function exit(path, file) {\n\t      var callExpr = buildElementCall(path.get(\"openingElement\"), file);\n\n\t      callExpr.arguments = callExpr.arguments.concat(path.node.children);\n\n\t      if (callExpr.arguments.length >= 3) {\n\t        callExpr._prettyCall = true;\n\t      }\n\n\t      path.replaceWith(t.inherits(callExpr, path.node));\n\t    }\n\t  };\n\n\t  return visitor;\n\n\t  function convertJSXIdentifier(node, parent) {\n\t    if (t.isJSXIdentifier(node)) {\n\t      if (node.name === \"this\" && t.isReferenced(node, parent)) {\n\t        return t.thisExpression();\n\t      } else if (_esutils2.default.keyword.isIdentifierNameES6(node.name)) {\n\t        node.type = \"Identifier\";\n\t      } else {\n\t        return t.stringLiteral(node.name);\n\t      }\n\t    } else if (t.isJSXMemberExpression(node)) {\n\t      return t.memberExpression(convertJSXIdentifier(node.object, node), convertJSXIdentifier(node.property, node));\n\t    }\n\n\t    return node;\n\t  }\n\n\t  function convertAttributeValue(node) {\n\t    if (t.isJSXExpressionContainer(node)) {\n\t      return node.expression;\n\t    } else {\n\t      return node;\n\t    }\n\t  }\n\n\t  function convertAttribute(node) {\n\t    var value = convertAttributeValue(node.value || t.booleanLiteral(true));\n\n\t    if (t.isStringLiteral(value) && !t.isJSXExpressionContainer(node.value)) {\n\t      value.value = value.value.replace(/\\n\\s+/g, \" \");\n\t    }\n\n\t    if (t.isValidIdentifier(node.name.name)) {\n\t      node.name.type = \"Identifier\";\n\t    } else {\n\t      node.name = t.stringLiteral(node.name.name);\n\t    }\n\n\t    return t.inherits(t.objectProperty(node.name, value), node);\n\t  }\n\n\t  function buildElementCall(path, file) {\n\t    path.parent.children = t.react.buildChildren(path.parent);\n\n\t    var tagExpr = convertJSXIdentifier(path.node.name, path.node);\n\t    var args = [];\n\n\t    var tagName = void 0;\n\t    if (t.isIdentifier(tagExpr)) {\n\t      tagName = tagExpr.name;\n\t    } else if (t.isLiteral(tagExpr)) {\n\t      tagName = tagExpr.value;\n\t    }\n\n\t    var state = {\n\t      tagExpr: tagExpr,\n\t      tagName: tagName,\n\t      args: args\n\t    };\n\n\t    if (opts.pre) {\n\t      opts.pre(state, file);\n\t    }\n\n\t    var attribs = path.node.attributes;\n\t    if (attribs.length) {\n\t      attribs = buildOpeningElementAttributes(attribs, file);\n\t    } else {\n\t      attribs = t.nullLiteral();\n\t    }\n\n\t    args.push(attribs);\n\n\t    if (opts.post) {\n\t      opts.post(state, file);\n\t    }\n\n\t    return state.call || t.callExpression(state.callee, args);\n\t  }\n\n\t  function buildOpeningElementAttributes(attribs, file) {\n\t    var _props = [];\n\t    var objs = [];\n\n\t    var useBuiltIns = file.opts.useBuiltIns || false;\n\t    if (typeof useBuiltIns !== \"boolean\") {\n\t      throw new Error(\"transform-react-jsx currently only accepts a boolean option for \" + \"useBuiltIns (defaults to false)\");\n\t    }\n\n\t    function pushProps() {\n\t      if (!_props.length) return;\n\n\t      objs.push(t.objectExpression(_props));\n\t      _props = [];\n\t    }\n\n\t    while (attribs.length) {\n\t      var prop = attribs.shift();\n\t      if (t.isJSXSpreadAttribute(prop)) {\n\t        pushProps();\n\t        objs.push(prop.argument);\n\t      } else {\n\t        _props.push(convertAttribute(prop));\n\t      }\n\t    }\n\n\t    pushProps();\n\n\t    if (objs.length === 1) {\n\t      attribs = objs[0];\n\t    } else {\n\t      if (!t.isObjectExpression(objs[0])) {\n\t        objs.unshift(t.objectExpression([]));\n\t      }\n\n\t      var helper = useBuiltIns ? t.memberExpression(t.identifier(\"Object\"), t.identifier(\"assign\")) : file.addHelper(\"extends\");\n\n\t      attribs = t.callExpression(helper, objs);\n\t    }\n\n\t    return attribs;\n\t  }\n\t};\n\n\tvar _esutils = __webpack_require__(97);\n\n\tvar _esutils2 = _interopRequireDefault(_esutils);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 349 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  var visitor = {\n\t    JSXOpeningElement: function JSXOpeningElement(_ref2) {\n\t      var node = _ref2.node;\n\n\t      var id = t.jSXIdentifier(TRACE_ID);\n\t      var trace = t.thisExpression();\n\n\t      node.attributes.push(t.jSXAttribute(id, t.jSXExpressionContainer(trace)));\n\t    }\n\t  };\n\n\t  return {\n\t    visitor: visitor\n\t  };\n\t};\n\n\tvar TRACE_ID = \"__self\";\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 350 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function makeTrace(fileNameIdentifier, lineNumber) {\n\t    var fileLineLiteral = lineNumber != null ? t.numericLiteral(lineNumber) : t.nullLiteral();\n\t    var fileNameProperty = t.objectProperty(t.identifier(\"fileName\"), fileNameIdentifier);\n\t    var lineNumberProperty = t.objectProperty(t.identifier(\"lineNumber\"), fileLineLiteral);\n\t    return t.objectExpression([fileNameProperty, lineNumberProperty]);\n\t  }\n\n\t  var visitor = {\n\t    JSXOpeningElement: function JSXOpeningElement(path, state) {\n\t      var id = t.jSXIdentifier(TRACE_ID);\n\t      var location = path.container.openingElement.loc;\n\t      if (!location) {\n\t        return;\n\t      }\n\n\t      var attributes = path.container.openingElement.attributes;\n\t      for (var i = 0; i < attributes.length; i++) {\n\t        var name = attributes[i].name;\n\t        if (name && name.name === TRACE_ID) {\n\t          return;\n\t        }\n\t      }\n\n\t      if (!state.fileNameIdentifier) {\n\t        var fileName = state.file.log.filename !== \"unknown\" ? state.file.log.filename : null;\n\n\t        var fileNameIdentifier = path.scope.generateUidIdentifier(FILE_NAME_VAR);\n\t        path.hub.file.scope.push({ id: fileNameIdentifier, init: t.stringLiteral(fileName) });\n\t        state.fileNameIdentifier = fileNameIdentifier;\n\t      }\n\n\t      var trace = makeTrace(state.fileNameIdentifier, location.start.line);\n\t      attributes.push(t.jSXAttribute(id, t.jSXExpressionContainer(trace)));\n\t    }\n\t  };\n\n\t  return {\n\t    visitor: visitor\n\t  };\n\t};\n\n\tvar TRACE_ID = \"__source\";\n\tvar FILE_NAME_VAR = \"_jsxFileName\";\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 351 */\n348,\n/* 352 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = {\n\t  builtins: {\n\t    Symbol: \"symbol\",\n\t    Promise: \"promise\",\n\t    Map: \"map\",\n\t    WeakMap: \"weak-map\",\n\t    Set: \"set\",\n\t    WeakSet: \"weak-set\",\n\t    Observable: \"observable\",\n\t    setImmediate: \"set-immediate\",\n\t    clearImmediate: \"clear-immediate\",\n\t    asap: \"asap\"\n\t  },\n\n\t  methods: {\n\t    Array: {\n\t      concat: \"array/concat\",\n\t      copyWithin: \"array/copy-within\",\n\t      entries: \"array/entries\",\n\t      every: \"array/every\",\n\t      fill: \"array/fill\",\n\t      filter: \"array/filter\",\n\t      findIndex: \"array/find-index\",\n\t      find: \"array/find\",\n\t      forEach: \"array/for-each\",\n\t      from: \"array/from\",\n\t      includes: \"array/includes\",\n\t      indexOf: \"array/index-of\",\n\n\t      join: \"array/join\",\n\t      keys: \"array/keys\",\n\t      lastIndexOf: \"array/last-index-of\",\n\t      map: \"array/map\",\n\t      of: \"array/of\",\n\t      pop: \"array/pop\",\n\t      push: \"array/push\",\n\t      reduceRight: \"array/reduce-right\",\n\t      reduce: \"array/reduce\",\n\t      reverse: \"array/reverse\",\n\t      shift: \"array/shift\",\n\t      slice: \"array/slice\",\n\t      some: \"array/some\",\n\t      sort: \"array/sort\",\n\t      splice: \"array/splice\",\n\t      unshift: \"array/unshift\",\n\t      values: \"array/values\"\n\t    },\n\n\t    JSON: {\n\t      stringify: \"json/stringify\"\n\t    },\n\n\t    Object: {\n\t      assign: \"object/assign\",\n\t      create: \"object/create\",\n\t      defineProperties: \"object/define-properties\",\n\t      defineProperty: \"object/define-property\",\n\t      entries: \"object/entries\",\n\t      freeze: \"object/freeze\",\n\t      getOwnPropertyDescriptor: \"object/get-own-property-descriptor\",\n\t      getOwnPropertyDescriptors: \"object/get-own-property-descriptors\",\n\t      getOwnPropertyNames: \"object/get-own-property-names\",\n\t      getOwnPropertySymbols: \"object/get-own-property-symbols\",\n\t      getPrototypeOf: \"object/get-prototype-of\",\n\t      isExtensible: \"object/is-extensible\",\n\t      isFrozen: \"object/is-frozen\",\n\t      isSealed: \"object/is-sealed\",\n\t      is: \"object/is\",\n\t      keys: \"object/keys\",\n\t      preventExtensions: \"object/prevent-extensions\",\n\t      seal: \"object/seal\",\n\t      setPrototypeOf: \"object/set-prototype-of\",\n\t      values: \"object/values\"\n\t    },\n\n\t    RegExp: {\n\t      escape: \"regexp/escape\" },\n\n\t    Math: {\n\t      acosh: \"math/acosh\",\n\t      asinh: \"math/asinh\",\n\t      atanh: \"math/atanh\",\n\t      cbrt: \"math/cbrt\",\n\t      clz32: \"math/clz32\",\n\t      cosh: \"math/cosh\",\n\t      expm1: \"math/expm1\",\n\t      fround: \"math/fround\",\n\t      hypot: \"math/hypot\",\n\t      imul: \"math/imul\",\n\t      log10: \"math/log10\",\n\t      log1p: \"math/log1p\",\n\t      log2: \"math/log2\",\n\t      sign: \"math/sign\",\n\t      sinh: \"math/sinh\",\n\t      tanh: \"math/tanh\",\n\t      trunc: \"math/trunc\",\n\t      iaddh: \"math/iaddh\",\n\t      isubh: \"math/isubh\",\n\t      imulh: \"math/imulh\",\n\t      umulh: \"math/umulh\"\n\t    },\n\n\t    Symbol: {\n\t      for: \"symbol/for\",\n\t      hasInstance: \"symbol/has-instance\",\n\t      isConcatSpreadable: \"symbol/is-concat-spreadable\",\n\t      iterator: \"symbol/iterator\",\n\t      keyFor: \"symbol/key-for\",\n\t      match: \"symbol/match\",\n\t      replace: \"symbol/replace\",\n\t      search: \"symbol/search\",\n\t      species: \"symbol/species\",\n\t      split: \"symbol/split\",\n\t      toPrimitive: \"symbol/to-primitive\",\n\t      toStringTag: \"symbol/to-string-tag\",\n\t      unscopables: \"symbol/unscopables\"\n\t    },\n\n\t    String: {\n\t      at: \"string/at\",\n\t      codePointAt: \"string/code-point-at\",\n\t      endsWith: \"string/ends-with\",\n\t      fromCodePoint: \"string/from-code-point\",\n\t      includes: \"string/includes\",\n\t      matchAll: \"string/match-all\",\n\t      padLeft: \"string/pad-left\",\n\t      padRight: \"string/pad-right\",\n\t      padStart: \"string/pad-start\",\n\t      padEnd: \"string/pad-end\",\n\t      raw: \"string/raw\",\n\t      repeat: \"string/repeat\",\n\t      startsWith: \"string/starts-with\",\n\t      trim: \"string/trim\",\n\t      trimLeft: \"string/trim-left\",\n\t      trimRight: \"string/trim-right\",\n\t      trimStart: \"string/trim-start\",\n\t      trimEnd: \"string/trim-end\"\n\t    },\n\n\t    Number: {\n\t      EPSILON: \"number/epsilon\",\n\t      isFinite: \"number/is-finite\",\n\t      isInteger: \"number/is-integer\",\n\t      isNaN: \"number/is-nan\",\n\t      isSafeInteger: \"number/is-safe-integer\",\n\t      MAX_SAFE_INTEGER: \"number/max-safe-integer\",\n\t      MIN_SAFE_INTEGER: \"number/min-safe-integer\",\n\t      parseFloat: \"number/parse-float\",\n\t      parseInt: \"number/parse-int\"\n\t    },\n\n\t    Reflect: {\n\t      apply: \"reflect/apply\",\n\t      construct: \"reflect/construct\",\n\t      defineProperty: \"reflect/define-property\",\n\t      deleteProperty: \"reflect/delete-property\",\n\t      enumerate: \"reflect/enumerate\",\n\t      getOwnPropertyDescriptor: \"reflect/get-own-property-descriptor\",\n\t      getPrototypeOf: \"reflect/get-prototype-of\",\n\t      get: \"reflect/get\",\n\t      has: \"reflect/has\",\n\t      isExtensible: \"reflect/is-extensible\",\n\t      ownKeys: \"reflect/own-keys\",\n\t      preventExtensions: \"reflect/prevent-extensions\",\n\t      setPrototypeOf: \"reflect/set-prototype-of\",\n\t      set: \"reflect/set\",\n\t      defineMetadata: \"reflect/define-metadata\",\n\t      deleteMetadata: \"reflect/delete-metadata\",\n\t      getMetadata: \"reflect/get-metadata\",\n\t      getMetadataKeys: \"reflect/get-metadata-keys\",\n\t      getOwnMetadata: \"reflect/get-own-metadata\",\n\t      getOwnMetadataKeys: \"reflect/get-own-metadata-keys\",\n\t      hasMetadata: \"reflect/has-metadata\",\n\t      hasOwnMetadata: \"reflect/has-own-metadata\",\n\t      metadata: \"reflect/metadata\"\n\t    },\n\n\t    System: {\n\t      global: \"system/global\"\n\t    },\n\n\t    Error: {\n\t      isError: \"error/is-error\" },\n\n\t    Date: {},\n\n\t    Function: {}\n\t  }\n\t};\n\n/***/ }),\n/* 353 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.definitions = undefined;\n\n\texports.default = function (_ref) {\n\t  var t = _ref.types;\n\n\t  function getRuntimeModuleName(opts) {\n\t    return opts.moduleName || \"babel-runtime\";\n\t  }\n\n\t  function has(obj, key) {\n\t    return Object.prototype.hasOwnProperty.call(obj, key);\n\t  }\n\n\t  var HELPER_BLACKLIST = [\"interopRequireWildcard\", \"interopRequireDefault\"];\n\n\t  return {\n\t    pre: function pre(file) {\n\t      var moduleName = getRuntimeModuleName(this.opts);\n\n\t      if (this.opts.helpers !== false) {\n\t        file.set(\"helperGenerator\", function (name) {\n\t          if (HELPER_BLACKLIST.indexOf(name) < 0) {\n\t            return file.addImport(moduleName + \"/helpers/\" + name, \"default\", name);\n\t          }\n\t        });\n\t      }\n\n\t      this.setDynamic(\"regeneratorIdentifier\", function () {\n\t        return file.addImport(moduleName + \"/regenerator\", \"default\", \"regeneratorRuntime\");\n\t      });\n\t    },\n\n\t    visitor: {\n\t      ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t        var node = path.node,\n\t            parent = path.parent,\n\t            scope = path.scope;\n\n\t        if (node.name === \"regeneratorRuntime\" && state.opts.regenerator !== false) {\n\t          path.replaceWith(state.get(\"regeneratorIdentifier\"));\n\t          return;\n\t        }\n\n\t        if (state.opts.polyfill === false) return;\n\n\t        if (t.isMemberExpression(parent)) return;\n\t        if (!has(_definitions2.default.builtins, node.name)) return;\n\t        if (scope.getBindingIdentifier(node.name)) return;\n\n\t        var moduleName = getRuntimeModuleName(state.opts);\n\t        path.replaceWith(state.addImport(moduleName + \"/core-js/\" + _definitions2.default.builtins[node.name], \"default\", node.name));\n\t      },\n\t      CallExpression: function CallExpression(path, state) {\n\t        if (state.opts.polyfill === false) return;\n\n\t        if (path.node.arguments.length) return;\n\n\t        var callee = path.node.callee;\n\t        if (!t.isMemberExpression(callee)) return;\n\t        if (!callee.computed) return;\n\t        if (!path.get(\"callee.property\").matchesPattern(\"Symbol.iterator\")) return;\n\n\t        var moduleName = getRuntimeModuleName(state.opts);\n\t        path.replaceWith(t.callExpression(state.addImport(moduleName + \"/core-js/get-iterator\", \"default\", \"getIterator\"), [callee.object]));\n\t      },\n\t      BinaryExpression: function BinaryExpression(path, state) {\n\t        if (state.opts.polyfill === false) return;\n\n\t        if (path.node.operator !== \"in\") return;\n\t        if (!path.get(\"left\").matchesPattern(\"Symbol.iterator\")) return;\n\n\t        var moduleName = getRuntimeModuleName(state.opts);\n\t        path.replaceWith(t.callExpression(state.addImport(moduleName + \"/core-js/is-iterable\", \"default\", \"isIterable\"), [path.node.right]));\n\t      },\n\n\t      MemberExpression: {\n\t        enter: function enter(path, state) {\n\t          if (state.opts.polyfill === false) return;\n\t          if (!path.isReferenced()) return;\n\n\t          var node = path.node;\n\n\t          var obj = node.object;\n\t          var prop = node.property;\n\n\t          if (!t.isReferenced(obj, node)) return;\n\t          if (node.computed) return;\n\t          if (!has(_definitions2.default.methods, obj.name)) return;\n\n\t          var methods = _definitions2.default.methods[obj.name];\n\t          if (!has(methods, prop.name)) return;\n\n\t          if (path.scope.getBindingIdentifier(obj.name)) return;\n\n\t          if (obj.name === \"Object\" && prop.name === \"defineProperty\" && path.parentPath.isCallExpression()) {\n\t            var call = path.parentPath.node;\n\t            if (call.arguments.length === 3 && t.isLiteral(call.arguments[1])) return;\n\t          }\n\n\t          var moduleName = getRuntimeModuleName(state.opts);\n\t          path.replaceWith(state.addImport(moduleName + \"/core-js/\" + methods[prop.name], \"default\", obj.name + \"$\" + prop.name));\n\t        },\n\t        exit: function exit(path, state) {\n\t          if (state.opts.polyfill === false) return;\n\t          if (!path.isReferenced()) return;\n\n\t          var node = path.node;\n\n\t          var obj = node.object;\n\n\t          if (!has(_definitions2.default.builtins, obj.name)) return;\n\t          if (path.scope.getBindingIdentifier(obj.name)) return;\n\n\t          var moduleName = getRuntimeModuleName(state.opts);\n\t          path.replaceWith(t.memberExpression(state.addImport(moduleName + \"/core-js/\" + _definitions2.default.builtins[obj.name], \"default\", obj.name), node.property, node.computed));\n\t        }\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _definitions = __webpack_require__(352);\n\n\tvar _definitions2 = _interopRequireDefault(_definitions);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.definitions = _definitions2.default;\n\n/***/ }),\n/* 354 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (_ref) {\n\t  var messages = _ref.messages;\n\n\t  return {\n\t    visitor: {\n\t      ReferencedIdentifier: function ReferencedIdentifier(path) {\n\t        var node = path.node,\n\t            scope = path.scope;\n\n\t        var binding = scope.getBinding(node.name);\n\t        if (binding && binding.kind === \"type\" && !path.parentPath.isFlow()) {\n\t          throw path.buildCodeFrameError(messages.get(\"undeclaredVariableType\", node.name), ReferenceError);\n\t        }\n\n\t        if (scope.hasBinding(node.name)) return;\n\n\t        var bindings = scope.getAllBindings();\n\n\t        var closest = void 0;\n\t        var shortest = -1;\n\n\t        for (var name in bindings) {\n\t          var distance = (0, _leven2.default)(node.name, name);\n\t          if (distance <= 0 || distance > 3) continue;\n\t          if (distance <= shortest) continue;\n\n\t          closest = name;\n\t          shortest = distance;\n\t        }\n\n\t        var msg = void 0;\n\t        if (closest) {\n\t          msg = messages.get(\"undeclaredVariableSuggestion\", node.name, closest);\n\t        } else {\n\t          msg = messages.get(\"undeclaredVariable\", node.name);\n\t        }\n\n\t        throw path.buildCodeFrameError(msg, ReferenceError);\n\t      }\n\t    }\n\t  };\n\t};\n\n\tvar _leven = __webpack_require__(471);\n\n\tvar _leven2 = _interopRequireDefault(_leven);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 355 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPluginTransformFlowStripTypes = __webpack_require__(211);\n\n\tvar _babelPluginTransformFlowStripTypes2 = _interopRequireDefault(_babelPluginTransformFlowStripTypes);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  plugins: [_babelPluginTransformFlowStripTypes2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 356 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (context) {\n\t  var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\t  return {\n\t    presets: [opts.es2015 !== false && [_babelPresetEs2.default.buildPreset, opts.es2015], opts.es2016 !== false && _babelPresetEs4.default, opts.es2017 !== false && _babelPresetEs6.default].filter(Boolean) };\n\t};\n\n\tvar _babelPresetEs = __webpack_require__(217);\n\n\tvar _babelPresetEs2 = _interopRequireDefault(_babelPresetEs);\n\n\tvar _babelPresetEs3 = __webpack_require__(218);\n\n\tvar _babelPresetEs4 = _interopRequireDefault(_babelPresetEs3);\n\n\tvar _babelPresetEs5 = __webpack_require__(219);\n\n\tvar _babelPresetEs6 = _interopRequireDefault(_babelPresetEs5);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 357 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPresetFlow = __webpack_require__(355);\n\n\tvar _babelPresetFlow2 = _interopRequireDefault(_babelPresetFlow);\n\n\tvar _babelPluginTransformReactJsx = __webpack_require__(215);\n\n\tvar _babelPluginTransformReactJsx2 = _interopRequireDefault(_babelPluginTransformReactJsx);\n\n\tvar _babelPluginSyntaxJsx = __webpack_require__(127);\n\n\tvar _babelPluginSyntaxJsx2 = _interopRequireDefault(_babelPluginSyntaxJsx);\n\n\tvar _babelPluginTransformReactDisplayName = __webpack_require__(214);\n\n\tvar _babelPluginTransformReactDisplayName2 = _interopRequireDefault(_babelPluginTransformReactDisplayName);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  presets: [_babelPresetFlow2.default],\n\t  plugins: [_babelPluginTransformReactJsx2.default, _babelPluginSyntaxJsx2.default, _babelPluginTransformReactDisplayName2.default],\n\t  env: {\n\t    development: {\n\t      plugins: []\n\t    }\n\t  }\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 358 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _babelPresetStage = __webpack_require__(220);\n\n\tvar _babelPresetStage2 = _interopRequireDefault(_babelPresetStage);\n\n\tvar _babelPluginTransformDoExpressions = __webpack_require__(206);\n\n\tvar _babelPluginTransformDoExpressions2 = _interopRequireDefault(_babelPluginTransformDoExpressions);\n\n\tvar _babelPluginTransformFunctionBind = __webpack_require__(212);\n\n\tvar _babelPluginTransformFunctionBind2 = _interopRequireDefault(_babelPluginTransformFunctionBind);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.default = {\n\t  presets: [_babelPresetStage2.default],\n\t  plugins: [_babelPluginTransformDoExpressions2.default, _babelPluginTransformFunctionBind2.default]\n\t};\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 359 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(407), __esModule: true };\n\n/***/ }),\n/* 360 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(410), __esModule: true };\n\n/***/ }),\n/* 361 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(412), __esModule: true };\n\n/***/ }),\n/* 362 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(413), __esModule: true };\n\n/***/ }),\n/* 363 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(415), __esModule: true };\n\n/***/ }),\n/* 364 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(416), __esModule: true };\n\n/***/ }),\n/* 365 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tmodule.exports = { \"default\": __webpack_require__(417), __esModule: true };\n\n/***/ }),\n/* 366 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function (obj, keys) {\n\t  var target = {};\n\n\t  for (var i in obj) {\n\t    if (keys.indexOf(i) >= 0) continue;\n\t    if (!Object.prototype.hasOwnProperty.call(obj, i)) continue;\n\t    target[i] = obj[i];\n\t  }\n\n\t  return target;\n\t};\n\n/***/ }),\n/* 367 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _path2 = __webpack_require__(36);\n\n\tvar _path3 = _interopRequireDefault(_path2);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar testing = (\"production\") === \"test\";\n\n\tvar TraversalContext = function () {\n\t  function TraversalContext(scope, opts, state, parentPath) {\n\t    (0, _classCallCheck3.default)(this, TraversalContext);\n\t    this.queue = null;\n\n\t    this.parentPath = parentPath;\n\t    this.scope = scope;\n\t    this.state = state;\n\t    this.opts = opts;\n\t  }\n\n\t  TraversalContext.prototype.shouldVisit = function shouldVisit(node) {\n\t    var opts = this.opts;\n\t    if (opts.enter || opts.exit) return true;\n\n\t    if (opts[node.type]) return true;\n\n\t    var keys = t.VISITOR_KEYS[node.type];\n\t    if (!keys || !keys.length) return false;\n\n\t    for (var _iterator = keys, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var key = _ref;\n\n\t      if (node[key]) return true;\n\t    }\n\n\t    return false;\n\t  };\n\n\t  TraversalContext.prototype.create = function create(node, obj, key, listKey) {\n\t    return _path3.default.get({\n\t      parentPath: this.parentPath,\n\t      parent: node,\n\t      container: obj,\n\t      key: key,\n\t      listKey: listKey\n\t    });\n\t  };\n\n\t  TraversalContext.prototype.maybeQueue = function maybeQueue(path, notPriority) {\n\t    if (this.trap) {\n\t      throw new Error(\"Infinite cycle detected\");\n\t    }\n\n\t    if (this.queue) {\n\t      if (notPriority) {\n\t        this.queue.push(path);\n\t      } else {\n\t        this.priorityQueue.push(path);\n\t      }\n\t    }\n\t  };\n\n\t  TraversalContext.prototype.visitMultiple = function visitMultiple(container, parent, listKey) {\n\t    if (container.length === 0) return false;\n\n\t    var queue = [];\n\n\t    for (var key = 0; key < container.length; key++) {\n\t      var node = container[key];\n\t      if (node && this.shouldVisit(node)) {\n\t        queue.push(this.create(parent, container, key, listKey));\n\t      }\n\t    }\n\n\t    return this.visitQueue(queue);\n\t  };\n\n\t  TraversalContext.prototype.visitSingle = function visitSingle(node, key) {\n\t    if (this.shouldVisit(node[key])) {\n\t      return this.visitQueue([this.create(node, node, key)]);\n\t    } else {\n\t      return false;\n\t    }\n\t  };\n\n\t  TraversalContext.prototype.visitQueue = function visitQueue(queue) {\n\t    this.queue = queue;\n\t    this.priorityQueue = [];\n\n\t    var visited = [];\n\t    var stop = false;\n\n\t    for (var _iterator2 = queue, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var path = _ref2;\n\n\t      path.resync();\n\n\t      if (path.contexts.length === 0 || path.contexts[path.contexts.length - 1] !== this) {\n\t        path.pushContext(this);\n\t      }\n\n\t      if (path.key === null) continue;\n\n\t      if (testing && queue.length >= 10000) {\n\t        this.trap = true;\n\t      }\n\n\t      if (visited.indexOf(path.node) >= 0) continue;\n\t      visited.push(path.node);\n\n\t      if (path.visit()) {\n\t        stop = true;\n\t        break;\n\t      }\n\n\t      if (this.priorityQueue.length) {\n\t        stop = this.visitQueue(this.priorityQueue);\n\t        this.priorityQueue = [];\n\t        this.queue = queue;\n\t        if (stop) break;\n\t      }\n\t    }\n\n\t    for (var _iterator3 = queue, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var _path = _ref3;\n\n\t      _path.popContext();\n\t    }\n\n\t    this.queue = null;\n\n\t    return stop;\n\t  };\n\n\t  TraversalContext.prototype.visit = function visit(node, key) {\n\t    var nodes = node[key];\n\t    if (!nodes) return false;\n\n\t    if (Array.isArray(nodes)) {\n\t      return this.visitMultiple(nodes, node, key);\n\t    } else {\n\t      return this.visitSingle(node, key);\n\t    }\n\t  };\n\n\t  return TraversalContext;\n\t}();\n\n\texports.default = TraversalContext;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 368 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.findParent = findParent;\n\texports.find = find;\n\texports.getFunctionParent = getFunctionParent;\n\texports.getStatementParent = getStatementParent;\n\texports.getEarliestCommonAncestorFrom = getEarliestCommonAncestorFrom;\n\texports.getDeepestCommonAncestorFrom = getDeepestCommonAncestorFrom;\n\texports.getAncestry = getAncestry;\n\texports.isAncestor = isAncestor;\n\texports.isDescendant = isDescendant;\n\texports.inType = inType;\n\texports.inShadow = inShadow;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _index = __webpack_require__(36);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction findParent(callback) {\n\t  var path = this;\n\t  while (path = path.parentPath) {\n\t    if (callback(path)) return path;\n\t  }\n\t  return null;\n\t}\n\n\tfunction find(callback) {\n\t  var path = this;\n\t  do {\n\t    if (callback(path)) return path;\n\t  } while (path = path.parentPath);\n\t  return null;\n\t}\n\n\tfunction getFunctionParent() {\n\t  return this.findParent(function (path) {\n\t    return path.isFunction() || path.isProgram();\n\t  });\n\t}\n\n\tfunction getStatementParent() {\n\t  var path = this;\n\t  do {\n\t    if (Array.isArray(path.container)) {\n\t      return path;\n\t    }\n\t  } while (path = path.parentPath);\n\t}\n\n\tfunction getEarliestCommonAncestorFrom(paths) {\n\t  return this.getDeepestCommonAncestorFrom(paths, function (deepest, i, ancestries) {\n\t    var earliest = void 0;\n\t    var keys = t.VISITOR_KEYS[deepest.type];\n\n\t    for (var _iterator = ancestries, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var ancestry = _ref;\n\n\t      var path = ancestry[i + 1];\n\n\t      if (!earliest) {\n\t        earliest = path;\n\t        continue;\n\t      }\n\n\t      if (path.listKey && earliest.listKey === path.listKey) {\n\t        if (path.key < earliest.key) {\n\t          earliest = path;\n\t          continue;\n\t        }\n\t      }\n\n\t      var earliestKeyIndex = keys.indexOf(earliest.parentKey);\n\t      var currentKeyIndex = keys.indexOf(path.parentKey);\n\t      if (earliestKeyIndex > currentKeyIndex) {\n\t        earliest = path;\n\t      }\n\t    }\n\n\t    return earliest;\n\t  });\n\t}\n\n\tfunction getDeepestCommonAncestorFrom(paths, filter) {\n\t  var _this = this;\n\n\t  if (!paths.length) {\n\t    return this;\n\t  }\n\n\t  if (paths.length === 1) {\n\t    return paths[0];\n\t  }\n\n\t  var minDepth = Infinity;\n\n\t  var lastCommonIndex = void 0,\n\t      lastCommon = void 0;\n\n\t  var ancestries = paths.map(function (path) {\n\t    var ancestry = [];\n\n\t    do {\n\t      ancestry.unshift(path);\n\t    } while ((path = path.parentPath) && path !== _this);\n\n\t    if (ancestry.length < minDepth) {\n\t      minDepth = ancestry.length;\n\t    }\n\n\t    return ancestry;\n\t  });\n\n\t  var first = ancestries[0];\n\n\t  depthLoop: for (var i = 0; i < minDepth; i++) {\n\t    var shouldMatch = first[i];\n\n\t    for (var _iterator2 = ancestries, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var ancestry = _ref2;\n\n\t      if (ancestry[i] !== shouldMatch) {\n\t        break depthLoop;\n\t      }\n\t    }\n\n\t    lastCommonIndex = i;\n\t    lastCommon = shouldMatch;\n\t  }\n\n\t  if (lastCommon) {\n\t    if (filter) {\n\t      return filter(lastCommon, lastCommonIndex, ancestries);\n\t    } else {\n\t      return lastCommon;\n\t    }\n\t  } else {\n\t    throw new Error(\"Couldn't find intersection\");\n\t  }\n\t}\n\n\tfunction getAncestry() {\n\t  var path = this;\n\t  var paths = [];\n\t  do {\n\t    paths.push(path);\n\t  } while (path = path.parentPath);\n\t  return paths;\n\t}\n\n\tfunction isAncestor(maybeDescendant) {\n\t  return maybeDescendant.isDescendant(this);\n\t}\n\n\tfunction isDescendant(maybeAncestor) {\n\t  return !!this.findParent(function (parent) {\n\t    return parent === maybeAncestor;\n\t  });\n\t}\n\n\tfunction inType() {\n\t  var path = this;\n\t  while (path) {\n\t    for (var _iterator3 = arguments, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var type = _ref3;\n\n\t      if (path.node.type === type) return true;\n\t    }\n\t    path = path.parentPath;\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction inShadow(key) {\n\t  var parentFn = this.isFunction() ? this : this.findParent(function (p) {\n\t    return p.isFunction();\n\t  });\n\t  if (!parentFn) return;\n\n\t  if (parentFn.isFunctionExpression() || parentFn.isFunctionDeclaration()) {\n\t    var shadow = parentFn.node.shadow;\n\n\t    if (shadow && (!key || shadow[key] !== false)) {\n\t      return parentFn;\n\t    }\n\t  } else if (parentFn.isArrowFunctionExpression()) {\n\t    return parentFn;\n\t  }\n\n\t  return null;\n\t}\n\n/***/ }),\n/* 369 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.shareCommentsWithSiblings = shareCommentsWithSiblings;\n\texports.addComment = addComment;\n\texports.addComments = addComments;\n\tfunction shareCommentsWithSiblings() {\n\t  if (typeof this.key === \"string\") return;\n\n\t  var node = this.node;\n\t  if (!node) return;\n\n\t  var trailing = node.trailingComments;\n\t  var leading = node.leadingComments;\n\t  if (!trailing && !leading) return;\n\n\t  var prev = this.getSibling(this.key - 1);\n\t  var next = this.getSibling(this.key + 1);\n\n\t  if (!prev.node) prev = next;\n\t  if (!next.node) next = prev;\n\n\t  prev.addComments(\"trailing\", leading);\n\t  next.addComments(\"leading\", trailing);\n\t}\n\n\tfunction addComment(type, content, line) {\n\t  this.addComments(type, [{\n\t    type: line ? \"CommentLine\" : \"CommentBlock\",\n\t    value: content\n\t  }]);\n\t}\n\n\tfunction addComments(type, comments) {\n\t  if (!comments) return;\n\n\t  var node = this.node;\n\t  if (!node) return;\n\n\t  var key = type + \"Comments\";\n\n\t  if (node[key]) {\n\t    node[key] = node[key].concat(comments);\n\t  } else {\n\t    node[key] = comments;\n\t  }\n\t}\n\n/***/ }),\n/* 370 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.call = call;\n\texports._call = _call;\n\texports.isBlacklisted = isBlacklisted;\n\texports.visit = visit;\n\texports.skip = skip;\n\texports.skipKey = skipKey;\n\texports.stop = stop;\n\texports.setScope = setScope;\n\texports.setContext = setContext;\n\texports.resync = resync;\n\texports._resyncParent = _resyncParent;\n\texports._resyncKey = _resyncKey;\n\texports._resyncList = _resyncList;\n\texports._resyncRemoved = _resyncRemoved;\n\texports.popContext = popContext;\n\texports.pushContext = pushContext;\n\texports.setup = setup;\n\texports.setKey = setKey;\n\texports.requeue = requeue;\n\texports._getQueueContexts = _getQueueContexts;\n\n\tvar _index = __webpack_require__(7);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction call(key) {\n\t  var opts = this.opts;\n\n\t  this.debug(function () {\n\t    return key;\n\t  });\n\n\t  if (this.node) {\n\t    if (this._call(opts[key])) return true;\n\t  }\n\n\t  if (this.node) {\n\t    return this._call(opts[this.node.type] && opts[this.node.type][key]);\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction _call(fns) {\n\t  if (!fns) return false;\n\n\t  for (var _iterator = fns, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var fn = _ref;\n\n\t    if (!fn) continue;\n\n\t    var node = this.node;\n\t    if (!node) return true;\n\n\t    var ret = fn.call(this.state, this, this.state);\n\t    if (ret) throw new Error(\"Unexpected return value from visitor method \" + fn);\n\n\t    if (this.node !== node) return true;\n\n\t    if (this.shouldStop || this.shouldSkip || this.removed) return true;\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction isBlacklisted() {\n\t  var blacklist = this.opts.blacklist;\n\t  return blacklist && blacklist.indexOf(this.node.type) > -1;\n\t}\n\n\tfunction visit() {\n\t  if (!this.node) {\n\t    return false;\n\t  }\n\n\t  if (this.isBlacklisted()) {\n\t    return false;\n\t  }\n\n\t  if (this.opts.shouldSkip && this.opts.shouldSkip(this)) {\n\t    return false;\n\t  }\n\n\t  if (this.call(\"enter\") || this.shouldSkip) {\n\t    this.debug(function () {\n\t      return \"Skip...\";\n\t    });\n\t    return this.shouldStop;\n\t  }\n\n\t  this.debug(function () {\n\t    return \"Recursing into...\";\n\t  });\n\t  _index2.default.node(this.node, this.opts, this.scope, this.state, this, this.skipKeys);\n\n\t  this.call(\"exit\");\n\n\t  return this.shouldStop;\n\t}\n\n\tfunction skip() {\n\t  this.shouldSkip = true;\n\t}\n\n\tfunction skipKey(key) {\n\t  this.skipKeys[key] = true;\n\t}\n\n\tfunction stop() {\n\t  this.shouldStop = true;\n\t  this.shouldSkip = true;\n\t}\n\n\tfunction setScope() {\n\t  if (this.opts && this.opts.noScope) return;\n\n\t  var target = this.context && this.context.scope;\n\n\t  if (!target) {\n\t    var path = this.parentPath;\n\t    while (path && !target) {\n\t      if (path.opts && path.opts.noScope) return;\n\n\t      target = path.scope;\n\t      path = path.parentPath;\n\t    }\n\t  }\n\n\t  this.scope = this.getScope(target);\n\t  if (this.scope) this.scope.init();\n\t}\n\n\tfunction setContext(context) {\n\t  this.shouldSkip = false;\n\t  this.shouldStop = false;\n\t  this.removed = false;\n\t  this.skipKeys = {};\n\n\t  if (context) {\n\t    this.context = context;\n\t    this.state = context.state;\n\t    this.opts = context.opts;\n\t  }\n\n\t  this.setScope();\n\n\t  return this;\n\t}\n\n\tfunction resync() {\n\t  if (this.removed) return;\n\n\t  this._resyncParent();\n\t  this._resyncList();\n\t  this._resyncKey();\n\t}\n\n\tfunction _resyncParent() {\n\t  if (this.parentPath) {\n\t    this.parent = this.parentPath.node;\n\t  }\n\t}\n\n\tfunction _resyncKey() {\n\t  if (!this.container) return;\n\n\t  if (this.node === this.container[this.key]) return;\n\n\t  if (Array.isArray(this.container)) {\n\t    for (var i = 0; i < this.container.length; i++) {\n\t      if (this.container[i] === this.node) {\n\t        return this.setKey(i);\n\t      }\n\t    }\n\t  } else {\n\t    for (var key in this.container) {\n\t      if (this.container[key] === this.node) {\n\t        return this.setKey(key);\n\t      }\n\t    }\n\t  }\n\n\t  this.key = null;\n\t}\n\n\tfunction _resyncList() {\n\t  if (!this.parent || !this.inList) return;\n\n\t  var newContainer = this.parent[this.listKey];\n\t  if (this.container === newContainer) return;\n\n\t  this.container = newContainer || null;\n\t}\n\n\tfunction _resyncRemoved() {\n\t  if (this.key == null || !this.container || this.container[this.key] !== this.node) {\n\t    this._markRemoved();\n\t  }\n\t}\n\n\tfunction popContext() {\n\t  this.contexts.pop();\n\t  this.setContext(this.contexts[this.contexts.length - 1]);\n\t}\n\n\tfunction pushContext(context) {\n\t  this.contexts.push(context);\n\t  this.setContext(context);\n\t}\n\n\tfunction setup(parentPath, container, listKey, key) {\n\t  this.inList = !!listKey;\n\t  this.listKey = listKey;\n\t  this.parentKey = listKey || key;\n\t  this.container = container;\n\n\t  this.parentPath = parentPath || this.parentPath;\n\t  this.setKey(key);\n\t}\n\n\tfunction setKey(key) {\n\t  this.key = key;\n\t  this.node = this.container[this.key];\n\t  this.type = this.node && this.node.type;\n\t}\n\n\tfunction requeue() {\n\t  var pathToQueue = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this;\n\n\t  if (pathToQueue.removed) return;\n\n\t  var contexts = this.contexts;\n\n\t  for (var _iterator2 = contexts, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t    var _ref2;\n\n\t    if (_isArray2) {\n\t      if (_i2 >= _iterator2.length) break;\n\t      _ref2 = _iterator2[_i2++];\n\t    } else {\n\t      _i2 = _iterator2.next();\n\t      if (_i2.done) break;\n\t      _ref2 = _i2.value;\n\t    }\n\n\t    var context = _ref2;\n\n\t    context.maybeQueue(pathToQueue);\n\t  }\n\t}\n\n\tfunction _getQueueContexts() {\n\t  var path = this;\n\t  var contexts = this.contexts;\n\t  while (!contexts.length) {\n\t    path = path.parentPath;\n\t    contexts = path.contexts;\n\t  }\n\t  return contexts;\n\t}\n\n/***/ }),\n/* 371 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.toComputedKey = toComputedKey;\n\texports.ensureBlock = ensureBlock;\n\texports.arrowFunctionToShadowed = arrowFunctionToShadowed;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction toComputedKey() {\n\t  var node = this.node;\n\n\t  var key = void 0;\n\t  if (this.isMemberExpression()) {\n\t    key = node.property;\n\t  } else if (this.isProperty() || this.isMethod()) {\n\t    key = node.key;\n\t  } else {\n\t    throw new ReferenceError(\"todo\");\n\t  }\n\n\t  if (!node.computed) {\n\t    if (t.isIdentifier(key)) key = t.stringLiteral(key.name);\n\t  }\n\n\t  return key;\n\t}\n\n\tfunction ensureBlock() {\n\t  return t.ensureBlock(this.node);\n\t}\n\n\tfunction arrowFunctionToShadowed() {\n\t  if (!this.isArrowFunctionExpression()) return;\n\n\t  this.ensureBlock();\n\n\t  var node = this.node;\n\n\t  node.expression = false;\n\t  node.type = \"FunctionExpression\";\n\t  node.shadow = node.shadow || true;\n\t}\n\n/***/ }),\n/* 372 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(global) {\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _map = __webpack_require__(133);\n\n\tvar _map2 = _interopRequireDefault(_map);\n\n\texports.evaluateTruthy = evaluateTruthy;\n\texports.evaluate = evaluate;\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar VALID_CALLEES = [\"String\", \"Number\", \"Math\"];\n\tvar INVALID_METHODS = [\"random\"];\n\n\tfunction evaluateTruthy() {\n\t  var res = this.evaluate();\n\t  if (res.confident) return !!res.value;\n\t}\n\n\tfunction evaluate() {\n\t  var confident = true;\n\t  var deoptPath = void 0;\n\t  var seen = new _map2.default();\n\n\t  function deopt(path) {\n\t    if (!confident) return;\n\t    deoptPath = path;\n\t    confident = false;\n\t  }\n\n\t  var value = evaluate(this);\n\t  if (!confident) value = undefined;\n\t  return {\n\t    confident: confident,\n\t    deopt: deoptPath,\n\t    value: value\n\t  };\n\n\t  function evaluate(path) {\n\t    var node = path.node;\n\n\t    if (seen.has(node)) {\n\t      var existing = seen.get(node);\n\t      if (existing.resolved) {\n\t        return existing.value;\n\t      } else {\n\t        deopt(path);\n\t        return;\n\t      }\n\t    } else {\n\t      var item = { resolved: false };\n\t      seen.set(node, item);\n\n\t      var val = _evaluate(path);\n\t      if (confident) {\n\t        item.resolved = true;\n\t        item.value = val;\n\t      }\n\t      return val;\n\t    }\n\t  }\n\n\t  function _evaluate(path) {\n\t    if (!confident) return;\n\n\t    var node = path.node;\n\n\t    if (path.isSequenceExpression()) {\n\t      var exprs = path.get(\"expressions\");\n\t      return evaluate(exprs[exprs.length - 1]);\n\t    }\n\n\t    if (path.isStringLiteral() || path.isNumericLiteral() || path.isBooleanLiteral()) {\n\t      return node.value;\n\t    }\n\n\t    if (path.isNullLiteral()) {\n\t      return null;\n\t    }\n\n\t    if (path.isTemplateLiteral()) {\n\t      var str = \"\";\n\n\t      var i = 0;\n\t      var _exprs = path.get(\"expressions\");\n\n\t      for (var _iterator = node.quasis, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref = _i.value;\n\t        }\n\n\t        var elem = _ref;\n\n\t        if (!confident) break;\n\n\t        str += elem.value.cooked;\n\n\t        var expr = _exprs[i++];\n\t        if (expr) str += String(evaluate(expr));\n\t      }\n\n\t      if (!confident) return;\n\t      return str;\n\t    }\n\n\t    if (path.isConditionalExpression()) {\n\t      var testResult = evaluate(path.get(\"test\"));\n\t      if (!confident) return;\n\t      if (testResult) {\n\t        return evaluate(path.get(\"consequent\"));\n\t      } else {\n\t        return evaluate(path.get(\"alternate\"));\n\t      }\n\t    }\n\n\t    if (path.isExpressionWrapper()) {\n\t      return evaluate(path.get(\"expression\"));\n\t    }\n\n\t    if (path.isMemberExpression() && !path.parentPath.isCallExpression({ callee: node })) {\n\t      var property = path.get(\"property\");\n\t      var object = path.get(\"object\");\n\n\t      if (object.isLiteral() && property.isIdentifier()) {\n\t        var _value = object.node.value;\n\t        var type = typeof _value === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(_value);\n\t        if (type === \"number\" || type === \"string\") {\n\t          return _value[property.node.name];\n\t        }\n\t      }\n\t    }\n\n\t    if (path.isReferencedIdentifier()) {\n\t      var binding = path.scope.getBinding(node.name);\n\n\t      if (binding && binding.constantViolations.length > 0) {\n\t        return deopt(binding.path);\n\t      }\n\n\t      if (binding && path.node.start < binding.path.node.end) {\n\t        return deopt(binding.path);\n\t      }\n\n\t      if (binding && binding.hasValue) {\n\t        return binding.value;\n\t      } else {\n\t        if (node.name === \"undefined\") {\n\t          return binding ? deopt(binding.path) : undefined;\n\t        } else if (node.name === \"Infinity\") {\n\t          return binding ? deopt(binding.path) : Infinity;\n\t        } else if (node.name === \"NaN\") {\n\t          return binding ? deopt(binding.path) : NaN;\n\t        }\n\n\t        var resolved = path.resolve();\n\t        if (resolved === path) {\n\t          return deopt(path);\n\t        } else {\n\t          return evaluate(resolved);\n\t        }\n\t      }\n\t    }\n\n\t    if (path.isUnaryExpression({ prefix: true })) {\n\t      if (node.operator === \"void\") {\n\t        return undefined;\n\t      }\n\n\t      var argument = path.get(\"argument\");\n\t      if (node.operator === \"typeof\" && (argument.isFunction() || argument.isClass())) {\n\t        return \"function\";\n\t      }\n\n\t      var arg = evaluate(argument);\n\t      if (!confident) return;\n\t      switch (node.operator) {\n\t        case \"!\":\n\t          return !arg;\n\t        case \"+\":\n\t          return +arg;\n\t        case \"-\":\n\t          return -arg;\n\t        case \"~\":\n\t          return ~arg;\n\t        case \"typeof\":\n\t          return typeof arg === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(arg);\n\t      }\n\t    }\n\n\t    if (path.isArrayExpression()) {\n\t      var arr = [];\n\t      var elems = path.get(\"elements\");\n\t      for (var _iterator2 = elems, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t        var _ref2;\n\n\t        if (_isArray2) {\n\t          if (_i2 >= _iterator2.length) break;\n\t          _ref2 = _iterator2[_i2++];\n\t        } else {\n\t          _i2 = _iterator2.next();\n\t          if (_i2.done) break;\n\t          _ref2 = _i2.value;\n\t        }\n\n\t        var _elem = _ref2;\n\n\t        _elem = _elem.evaluate();\n\n\t        if (_elem.confident) {\n\t          arr.push(_elem.value);\n\t        } else {\n\t          return deopt(_elem);\n\t        }\n\t      }\n\t      return arr;\n\t    }\n\n\t    if (path.isObjectExpression()) {\n\t      var obj = {};\n\t      var props = path.get(\"properties\");\n\t      for (var _iterator3 = props, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t        var _ref3;\n\n\t        if (_isArray3) {\n\t          if (_i3 >= _iterator3.length) break;\n\t          _ref3 = _iterator3[_i3++];\n\t        } else {\n\t          _i3 = _iterator3.next();\n\t          if (_i3.done) break;\n\t          _ref3 = _i3.value;\n\t        }\n\n\t        var prop = _ref3;\n\n\t        if (prop.isObjectMethod() || prop.isSpreadProperty()) {\n\t          return deopt(prop);\n\t        }\n\t        var keyPath = prop.get(\"key\");\n\t        var key = keyPath;\n\t        if (prop.node.computed) {\n\t          key = key.evaluate();\n\t          if (!key.confident) {\n\t            return deopt(keyPath);\n\t          }\n\t          key = key.value;\n\t        } else if (key.isIdentifier()) {\n\t          key = key.node.name;\n\t        } else {\n\t          key = key.node.value;\n\t        }\n\t        var valuePath = prop.get(\"value\");\n\t        var _value2 = valuePath.evaluate();\n\t        if (!_value2.confident) {\n\t          return deopt(valuePath);\n\t        }\n\t        _value2 = _value2.value;\n\t        obj[key] = _value2;\n\t      }\n\t      return obj;\n\t    }\n\n\t    if (path.isLogicalExpression()) {\n\t      var wasConfident = confident;\n\t      var left = evaluate(path.get(\"left\"));\n\t      var leftConfident = confident;\n\t      confident = wasConfident;\n\t      var right = evaluate(path.get(\"right\"));\n\t      var rightConfident = confident;\n\t      confident = leftConfident && rightConfident;\n\n\t      switch (node.operator) {\n\t        case \"||\":\n\t          if (left && leftConfident) {\n\t            confident = true;\n\t            return left;\n\t          }\n\n\t          if (!confident) return;\n\n\t          return left || right;\n\t        case \"&&\":\n\t          if (!left && leftConfident || !right && rightConfident) {\n\t            confident = true;\n\t          }\n\n\t          if (!confident) return;\n\n\t          return left && right;\n\t      }\n\t    }\n\n\t    if (path.isBinaryExpression()) {\n\t      var _left = evaluate(path.get(\"left\"));\n\t      if (!confident) return;\n\t      var _right = evaluate(path.get(\"right\"));\n\t      if (!confident) return;\n\n\t      switch (node.operator) {\n\t        case \"-\":\n\t          return _left - _right;\n\t        case \"+\":\n\t          return _left + _right;\n\t        case \"/\":\n\t          return _left / _right;\n\t        case \"*\":\n\t          return _left * _right;\n\t        case \"%\":\n\t          return _left % _right;\n\t        case \"**\":\n\t          return Math.pow(_left, _right);\n\t        case \"<\":\n\t          return _left < _right;\n\t        case \">\":\n\t          return _left > _right;\n\t        case \"<=\":\n\t          return _left <= _right;\n\t        case \">=\":\n\t          return _left >= _right;\n\t        case \"==\":\n\t          return _left == _right;\n\t        case \"!=\":\n\t          return _left != _right;\n\t        case \"===\":\n\t          return _left === _right;\n\t        case \"!==\":\n\t          return _left !== _right;\n\t        case \"|\":\n\t          return _left | _right;\n\t        case \"&\":\n\t          return _left & _right;\n\t        case \"^\":\n\t          return _left ^ _right;\n\t        case \"<<\":\n\t          return _left << _right;\n\t        case \">>\":\n\t          return _left >> _right;\n\t        case \">>>\":\n\t          return _left >>> _right;\n\t      }\n\t    }\n\n\t    if (path.isCallExpression()) {\n\t      var callee = path.get(\"callee\");\n\t      var context = void 0;\n\t      var func = void 0;\n\n\t      if (callee.isIdentifier() && !path.scope.getBinding(callee.node.name, true) && VALID_CALLEES.indexOf(callee.node.name) >= 0) {\n\t        func = global[node.callee.name];\n\t      }\n\n\t      if (callee.isMemberExpression()) {\n\t        var _object = callee.get(\"object\");\n\t        var _property = callee.get(\"property\");\n\n\t        if (_object.isIdentifier() && _property.isIdentifier() && VALID_CALLEES.indexOf(_object.node.name) >= 0 && INVALID_METHODS.indexOf(_property.node.name) < 0) {\n\t          context = global[_object.node.name];\n\t          func = context[_property.node.name];\n\t        }\n\n\t        if (_object.isLiteral() && _property.isIdentifier()) {\n\t          var _type = (0, _typeof3.default)(_object.node.value);\n\t          if (_type === \"string\" || _type === \"number\") {\n\t            context = _object.node.value;\n\t            func = context[_property.node.name];\n\t          }\n\t        }\n\t      }\n\n\t      if (func) {\n\t        var args = path.get(\"arguments\").map(evaluate);\n\t        if (!confident) return;\n\n\t        return func.apply(context, args);\n\t      }\n\t    }\n\n\t    deopt(path);\n\t  }\n\t}\n\t/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))\n\n/***/ }),\n/* 373 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _create = __webpack_require__(9);\n\n\tvar _create2 = _interopRequireDefault(_create);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.getStatementParent = getStatementParent;\n\texports.getOpposite = getOpposite;\n\texports.getCompletionRecords = getCompletionRecords;\n\texports.getSibling = getSibling;\n\texports.getPrevSibling = getPrevSibling;\n\texports.getNextSibling = getNextSibling;\n\texports.getAllNextSiblings = getAllNextSiblings;\n\texports.getAllPrevSiblings = getAllPrevSiblings;\n\texports.get = get;\n\texports._getKey = _getKey;\n\texports._getPattern = _getPattern;\n\texports.getBindingIdentifiers = getBindingIdentifiers;\n\texports.getOuterBindingIdentifiers = getOuterBindingIdentifiers;\n\texports.getBindingIdentifierPaths = getBindingIdentifierPaths;\n\texports.getOuterBindingIdentifierPaths = getOuterBindingIdentifierPaths;\n\n\tvar _index = __webpack_require__(36);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction getStatementParent() {\n\t  var path = this;\n\n\t  do {\n\t    if (!path.parentPath || Array.isArray(path.container) && path.isStatement()) {\n\t      break;\n\t    } else {\n\t      path = path.parentPath;\n\t    }\n\t  } while (path);\n\n\t  if (path && (path.isProgram() || path.isFile())) {\n\t    throw new Error(\"File/Program node, we can't possibly find a statement parent to this\");\n\t  }\n\n\t  return path;\n\t}\n\n\tfunction getOpposite() {\n\t  if (this.key === \"left\") {\n\t    return this.getSibling(\"right\");\n\t  } else if (this.key === \"right\") {\n\t    return this.getSibling(\"left\");\n\t  }\n\t}\n\n\tfunction getCompletionRecords() {\n\t  var paths = [];\n\n\t  var add = function add(path) {\n\t    if (path) paths = paths.concat(path.getCompletionRecords());\n\t  };\n\n\t  if (this.isIfStatement()) {\n\t    add(this.get(\"consequent\"));\n\t    add(this.get(\"alternate\"));\n\t  } else if (this.isDoExpression() || this.isFor() || this.isWhile()) {\n\t    add(this.get(\"body\"));\n\t  } else if (this.isProgram() || this.isBlockStatement()) {\n\t    add(this.get(\"body\").pop());\n\t  } else if (this.isFunction()) {\n\t    return this.get(\"body\").getCompletionRecords();\n\t  } else if (this.isTryStatement()) {\n\t    add(this.get(\"block\"));\n\t    add(this.get(\"handler\"));\n\t    add(this.get(\"finalizer\"));\n\t  } else {\n\t    paths.push(this);\n\t  }\n\n\t  return paths;\n\t}\n\n\tfunction getSibling(key) {\n\t  return _index2.default.get({\n\t    parentPath: this.parentPath,\n\t    parent: this.parent,\n\t    container: this.container,\n\t    listKey: this.listKey,\n\t    key: key\n\t  });\n\t}\n\n\tfunction getPrevSibling() {\n\t  return this.getSibling(this.key - 1);\n\t}\n\n\tfunction getNextSibling() {\n\t  return this.getSibling(this.key + 1);\n\t}\n\n\tfunction getAllNextSiblings() {\n\t  var _key = this.key;\n\t  var sibling = this.getSibling(++_key);\n\t  var siblings = [];\n\t  while (sibling.node) {\n\t    siblings.push(sibling);\n\t    sibling = this.getSibling(++_key);\n\t  }\n\t  return siblings;\n\t}\n\n\tfunction getAllPrevSiblings() {\n\t  var _key = this.key;\n\t  var sibling = this.getSibling(--_key);\n\t  var siblings = [];\n\t  while (sibling.node) {\n\t    siblings.push(sibling);\n\t    sibling = this.getSibling(--_key);\n\t  }\n\t  return siblings;\n\t}\n\n\tfunction get(key, context) {\n\t  if (context === true) context = this.context;\n\t  var parts = key.split(\".\");\n\t  if (parts.length === 1) {\n\t    return this._getKey(key, context);\n\t  } else {\n\t    return this._getPattern(parts, context);\n\t  }\n\t}\n\n\tfunction _getKey(key, context) {\n\t  var _this = this;\n\n\t  var node = this.node;\n\t  var container = node[key];\n\n\t  if (Array.isArray(container)) {\n\t    return container.map(function (_, i) {\n\t      return _index2.default.get({\n\t        listKey: key,\n\t        parentPath: _this,\n\t        parent: node,\n\t        container: container,\n\t        key: i\n\t      }).setContext(context);\n\t    });\n\t  } else {\n\t    return _index2.default.get({\n\t      parentPath: this,\n\t      parent: node,\n\t      container: node,\n\t      key: key\n\t    }).setContext(context);\n\t  }\n\t}\n\n\tfunction _getPattern(parts, context) {\n\t  var path = this;\n\t  for (var _iterator = parts, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var part = _ref;\n\n\t    if (part === \".\") {\n\t      path = path.parentPath;\n\t    } else {\n\t      if (Array.isArray(path)) {\n\t        path = path[part];\n\t      } else {\n\t        path = path.get(part, context);\n\t      }\n\t    }\n\t  }\n\t  return path;\n\t}\n\n\tfunction getBindingIdentifiers(duplicates) {\n\t  return t.getBindingIdentifiers(this.node, duplicates);\n\t}\n\n\tfunction getOuterBindingIdentifiers(duplicates) {\n\t  return t.getOuterBindingIdentifiers(this.node, duplicates);\n\t}\n\n\tfunction getBindingIdentifierPaths() {\n\t  var duplicates = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;\n\t  var outerOnly = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t  var path = this;\n\t  var search = [].concat(path);\n\t  var ids = (0, _create2.default)(null);\n\n\t  while (search.length) {\n\t    var id = search.shift();\n\t    if (!id) continue;\n\t    if (!id.node) continue;\n\n\t    var keys = t.getBindingIdentifiers.keys[id.node.type];\n\n\t    if (id.isIdentifier()) {\n\t      if (duplicates) {\n\t        var _ids = ids[id.node.name] = ids[id.node.name] || [];\n\t        _ids.push(id);\n\t      } else {\n\t        ids[id.node.name] = id;\n\t      }\n\t      continue;\n\t    }\n\n\t    if (id.isExportDeclaration()) {\n\t      var declaration = id.get(\"declaration\");\n\t      if (declaration.isDeclaration()) {\n\t        search.push(declaration);\n\t      }\n\t      continue;\n\t    }\n\n\t    if (outerOnly) {\n\t      if (id.isFunctionDeclaration()) {\n\t        search.push(id.get(\"id\"));\n\t        continue;\n\t      }\n\t      if (id.isFunctionExpression()) {\n\t        continue;\n\t      }\n\t    }\n\n\t    if (keys) {\n\t      for (var i = 0; i < keys.length; i++) {\n\t        var key = keys[i];\n\t        var child = id.get(key);\n\t        if (Array.isArray(child) || child.node) {\n\t          search = search.concat(child);\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  return ids;\n\t}\n\n\tfunction getOuterBindingIdentifierPaths(duplicates) {\n\t  return this.getBindingIdentifierPaths(duplicates, true);\n\t}\n\n/***/ }),\n/* 374 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.getTypeAnnotation = getTypeAnnotation;\n\texports._getTypeAnnotation = _getTypeAnnotation;\n\texports.isBaseType = isBaseType;\n\texports.couldBeBaseType = couldBeBaseType;\n\texports.baseTypeStrictlyMatches = baseTypeStrictlyMatches;\n\texports.isGenericType = isGenericType;\n\n\tvar _inferers = __webpack_require__(376);\n\n\tvar inferers = _interopRequireWildcard(_inferers);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction getTypeAnnotation() {\n\t  if (this.typeAnnotation) return this.typeAnnotation;\n\n\t  var type = this._getTypeAnnotation() || t.anyTypeAnnotation();\n\t  if (t.isTypeAnnotation(type)) type = type.typeAnnotation;\n\t  return this.typeAnnotation = type;\n\t}\n\n\tfunction _getTypeAnnotation() {\n\t  var node = this.node;\n\n\t  if (!node) {\n\t    if (this.key === \"init\" && this.parentPath.isVariableDeclarator()) {\n\t      var declar = this.parentPath.parentPath;\n\t      var declarParent = declar.parentPath;\n\n\t      if (declar.key === \"left\" && declarParent.isForInStatement()) {\n\t        return t.stringTypeAnnotation();\n\t      }\n\n\t      if (declar.key === \"left\" && declarParent.isForOfStatement()) {\n\t        return t.anyTypeAnnotation();\n\t      }\n\n\t      return t.voidTypeAnnotation();\n\t    } else {\n\t      return;\n\t    }\n\t  }\n\n\t  if (node.typeAnnotation) {\n\t    return node.typeAnnotation;\n\t  }\n\n\t  var inferer = inferers[node.type];\n\t  if (inferer) {\n\t    return inferer.call(this, node);\n\t  }\n\n\t  inferer = inferers[this.parentPath.type];\n\t  if (inferer && inferer.validParent) {\n\t    return this.parentPath.getTypeAnnotation();\n\t  }\n\t}\n\n\tfunction isBaseType(baseName, soft) {\n\t  return _isBaseType(baseName, this.getTypeAnnotation(), soft);\n\t}\n\n\tfunction _isBaseType(baseName, type, soft) {\n\t  if (baseName === \"string\") {\n\t    return t.isStringTypeAnnotation(type);\n\t  } else if (baseName === \"number\") {\n\t    return t.isNumberTypeAnnotation(type);\n\t  } else if (baseName === \"boolean\") {\n\t    return t.isBooleanTypeAnnotation(type);\n\t  } else if (baseName === \"any\") {\n\t    return t.isAnyTypeAnnotation(type);\n\t  } else if (baseName === \"mixed\") {\n\t    return t.isMixedTypeAnnotation(type);\n\t  } else if (baseName === \"empty\") {\n\t    return t.isEmptyTypeAnnotation(type);\n\t  } else if (baseName === \"void\") {\n\t    return t.isVoidTypeAnnotation(type);\n\t  } else {\n\t    if (soft) {\n\t      return false;\n\t    } else {\n\t      throw new Error(\"Unknown base type \" + baseName);\n\t    }\n\t  }\n\t}\n\n\tfunction couldBeBaseType(name) {\n\t  var type = this.getTypeAnnotation();\n\t  if (t.isAnyTypeAnnotation(type)) return true;\n\n\t  if (t.isUnionTypeAnnotation(type)) {\n\t    for (var _iterator = type.types, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var type2 = _ref;\n\n\t      if (t.isAnyTypeAnnotation(type2) || _isBaseType(name, type2, true)) {\n\t        return true;\n\t      }\n\t    }\n\t    return false;\n\t  } else {\n\t    return _isBaseType(name, type, true);\n\t  }\n\t}\n\n\tfunction baseTypeStrictlyMatches(right) {\n\t  var left = this.getTypeAnnotation();\n\t  right = right.getTypeAnnotation();\n\n\t  if (!t.isAnyTypeAnnotation(left) && t.isFlowBaseAnnotation(left)) {\n\t    return right.type === left.type;\n\t  }\n\t}\n\n\tfunction isGenericType(genericName) {\n\t  var type = this.getTypeAnnotation();\n\t  return t.isGenericTypeAnnotation(type) && t.isIdentifier(type.id, { name: genericName });\n\t}\n\n/***/ }),\n/* 375 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.default = function (node) {\n\t  if (!this.isReferenced()) return;\n\n\t  var binding = this.scope.getBinding(node.name);\n\t  if (binding) {\n\t    if (binding.identifier.typeAnnotation) {\n\t      return binding.identifier.typeAnnotation;\n\t    } else {\n\t      return getTypeAnnotationBindingConstantViolations(this, node.name);\n\t    }\n\t  }\n\n\t  if (node.name === \"undefined\") {\n\t    return t.voidTypeAnnotation();\n\t  } else if (node.name === \"NaN\" || node.name === \"Infinity\") {\n\t    return t.numberTypeAnnotation();\n\t  } else if (node.name === \"arguments\") {}\n\t};\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction getTypeAnnotationBindingConstantViolations(path, name) {\n\t  var binding = path.scope.getBinding(name);\n\n\t  var types = [];\n\t  path.typeAnnotation = t.unionTypeAnnotation(types);\n\n\t  var functionConstantViolations = [];\n\t  var constantViolations = getConstantViolationsBefore(binding, path, functionConstantViolations);\n\n\t  var testType = getConditionalAnnotation(path, name);\n\t  if (testType) {\n\t    var testConstantViolations = getConstantViolationsBefore(binding, testType.ifStatement);\n\n\t    constantViolations = constantViolations.filter(function (path) {\n\t      return testConstantViolations.indexOf(path) < 0;\n\t    });\n\n\t    types.push(testType.typeAnnotation);\n\t  }\n\n\t  if (constantViolations.length) {\n\t    constantViolations = constantViolations.concat(functionConstantViolations);\n\n\t    for (var _iterator = constantViolations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var violation = _ref;\n\n\t      types.push(violation.getTypeAnnotation());\n\t    }\n\t  }\n\n\t  if (types.length) {\n\t    return t.createUnionTypeAnnotation(types);\n\t  }\n\t}\n\n\tfunction getConstantViolationsBefore(binding, path, functions) {\n\t  var violations = binding.constantViolations.slice();\n\t  violations.unshift(binding.path);\n\t  return violations.filter(function (violation) {\n\t    violation = violation.resolve();\n\t    var status = violation._guessExecutionStatusRelativeTo(path);\n\t    if (functions && status === \"function\") functions.push(violation);\n\t    return status === \"before\";\n\t  });\n\t}\n\n\tfunction inferAnnotationFromBinaryExpression(name, path) {\n\t  var operator = path.node.operator;\n\n\t  var right = path.get(\"right\").resolve();\n\t  var left = path.get(\"left\").resolve();\n\n\t  var target = void 0;\n\t  if (left.isIdentifier({ name: name })) {\n\t    target = right;\n\t  } else if (right.isIdentifier({ name: name })) {\n\t    target = left;\n\t  }\n\t  if (target) {\n\t    if (operator === \"===\") {\n\t      return target.getTypeAnnotation();\n\t    } else if (t.BOOLEAN_NUMBER_BINARY_OPERATORS.indexOf(operator) >= 0) {\n\t      return t.numberTypeAnnotation();\n\t    } else {\n\t      return;\n\t    }\n\t  } else {\n\t    if (operator !== \"===\") return;\n\t  }\n\n\t  var typeofPath = void 0;\n\t  var typePath = void 0;\n\t  if (left.isUnaryExpression({ operator: \"typeof\" })) {\n\t    typeofPath = left;\n\t    typePath = right;\n\t  } else if (right.isUnaryExpression({ operator: \"typeof\" })) {\n\t    typeofPath = right;\n\t    typePath = left;\n\t  }\n\t  if (!typePath && !typeofPath) return;\n\n\t  typePath = typePath.resolve();\n\t  if (!typePath.isLiteral()) return;\n\n\t  var typeValue = typePath.node.value;\n\t  if (typeof typeValue !== \"string\") return;\n\n\t  if (!typeofPath.get(\"argument\").isIdentifier({ name: name })) return;\n\n\t  return t.createTypeAnnotationBasedOnTypeof(typePath.node.value);\n\t}\n\n\tfunction getParentConditionalPath(path) {\n\t  var parentPath = void 0;\n\t  while (parentPath = path.parentPath) {\n\t    if (parentPath.isIfStatement() || parentPath.isConditionalExpression()) {\n\t      if (path.key === \"test\") {\n\t        return;\n\t      } else {\n\t        return parentPath;\n\t      }\n\t    } else {\n\t      path = parentPath;\n\t    }\n\t  }\n\t}\n\n\tfunction getConditionalAnnotation(path, name) {\n\t  var ifStatement = getParentConditionalPath(path);\n\t  if (!ifStatement) return;\n\n\t  var test = ifStatement.get(\"test\");\n\t  var paths = [test];\n\t  var types = [];\n\n\t  do {\n\t    var _path = paths.shift().resolve();\n\n\t    if (_path.isLogicalExpression()) {\n\t      paths.push(_path.get(\"left\"));\n\t      paths.push(_path.get(\"right\"));\n\t    }\n\n\t    if (_path.isBinaryExpression()) {\n\t      var type = inferAnnotationFromBinaryExpression(name, _path);\n\t      if (type) types.push(type);\n\t    }\n\t  } while (paths.length);\n\n\t  if (types.length) {\n\t    return {\n\t      typeAnnotation: t.createUnionTypeAnnotation(types),\n\t      ifStatement: ifStatement\n\t    };\n\t  } else {\n\t    return getConditionalAnnotation(ifStatement, name);\n\t  }\n\t}\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 376 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.ClassDeclaration = exports.ClassExpression = exports.FunctionDeclaration = exports.ArrowFunctionExpression = exports.FunctionExpression = exports.Identifier = undefined;\n\n\tvar _infererReference = __webpack_require__(375);\n\n\tObject.defineProperty(exports, \"Identifier\", {\n\t  enumerable: true,\n\t  get: function get() {\n\t    return _interopRequireDefault(_infererReference).default;\n\t  }\n\t});\n\texports.VariableDeclarator = VariableDeclarator;\n\texports.TypeCastExpression = TypeCastExpression;\n\texports.NewExpression = NewExpression;\n\texports.TemplateLiteral = TemplateLiteral;\n\texports.UnaryExpression = UnaryExpression;\n\texports.BinaryExpression = BinaryExpression;\n\texports.LogicalExpression = LogicalExpression;\n\texports.ConditionalExpression = ConditionalExpression;\n\texports.SequenceExpression = SequenceExpression;\n\texports.AssignmentExpression = AssignmentExpression;\n\texports.UpdateExpression = UpdateExpression;\n\texports.StringLiteral = StringLiteral;\n\texports.NumericLiteral = NumericLiteral;\n\texports.BooleanLiteral = BooleanLiteral;\n\texports.NullLiteral = NullLiteral;\n\texports.RegExpLiteral = RegExpLiteral;\n\texports.ObjectExpression = ObjectExpression;\n\texports.ArrayExpression = ArrayExpression;\n\texports.RestElement = RestElement;\n\texports.CallExpression = CallExpression;\n\texports.TaggedTemplateExpression = TaggedTemplateExpression;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction VariableDeclarator() {\n\t  var id = this.get(\"id\");\n\n\t  if (id.isIdentifier()) {\n\t    return this.get(\"init\").getTypeAnnotation();\n\t  } else {\n\t    return;\n\t  }\n\t}\n\n\tfunction TypeCastExpression(node) {\n\t  return node.typeAnnotation;\n\t}\n\n\tTypeCastExpression.validParent = true;\n\n\tfunction NewExpression(node) {\n\t  if (this.get(\"callee\").isIdentifier()) {\n\t    return t.genericTypeAnnotation(node.callee);\n\t  }\n\t}\n\n\tfunction TemplateLiteral() {\n\t  return t.stringTypeAnnotation();\n\t}\n\n\tfunction UnaryExpression(node) {\n\t  var operator = node.operator;\n\n\t  if (operator === \"void\") {\n\t    return t.voidTypeAnnotation();\n\t  } else if (t.NUMBER_UNARY_OPERATORS.indexOf(operator) >= 0) {\n\t    return t.numberTypeAnnotation();\n\t  } else if (t.STRING_UNARY_OPERATORS.indexOf(operator) >= 0) {\n\t    return t.stringTypeAnnotation();\n\t  } else if (t.BOOLEAN_UNARY_OPERATORS.indexOf(operator) >= 0) {\n\t    return t.booleanTypeAnnotation();\n\t  }\n\t}\n\n\tfunction BinaryExpression(node) {\n\t  var operator = node.operator;\n\n\t  if (t.NUMBER_BINARY_OPERATORS.indexOf(operator) >= 0) {\n\t    return t.numberTypeAnnotation();\n\t  } else if (t.BOOLEAN_BINARY_OPERATORS.indexOf(operator) >= 0) {\n\t    return t.booleanTypeAnnotation();\n\t  } else if (operator === \"+\") {\n\t    var right = this.get(\"right\");\n\t    var left = this.get(\"left\");\n\n\t    if (left.isBaseType(\"number\") && right.isBaseType(\"number\")) {\n\t      return t.numberTypeAnnotation();\n\t    } else if (left.isBaseType(\"string\") || right.isBaseType(\"string\")) {\n\t      return t.stringTypeAnnotation();\n\t    }\n\n\t    return t.unionTypeAnnotation([t.stringTypeAnnotation(), t.numberTypeAnnotation()]);\n\t  }\n\t}\n\n\tfunction LogicalExpression() {\n\t  return t.createUnionTypeAnnotation([this.get(\"left\").getTypeAnnotation(), this.get(\"right\").getTypeAnnotation()]);\n\t}\n\n\tfunction ConditionalExpression() {\n\t  return t.createUnionTypeAnnotation([this.get(\"consequent\").getTypeAnnotation(), this.get(\"alternate\").getTypeAnnotation()]);\n\t}\n\n\tfunction SequenceExpression() {\n\t  return this.get(\"expressions\").pop().getTypeAnnotation();\n\t}\n\n\tfunction AssignmentExpression() {\n\t  return this.get(\"right\").getTypeAnnotation();\n\t}\n\n\tfunction UpdateExpression(node) {\n\t  var operator = node.operator;\n\t  if (operator === \"++\" || operator === \"--\") {\n\t    return t.numberTypeAnnotation();\n\t  }\n\t}\n\n\tfunction StringLiteral() {\n\t  return t.stringTypeAnnotation();\n\t}\n\n\tfunction NumericLiteral() {\n\t  return t.numberTypeAnnotation();\n\t}\n\n\tfunction BooleanLiteral() {\n\t  return t.booleanTypeAnnotation();\n\t}\n\n\tfunction NullLiteral() {\n\t  return t.nullLiteralTypeAnnotation();\n\t}\n\n\tfunction RegExpLiteral() {\n\t  return t.genericTypeAnnotation(t.identifier(\"RegExp\"));\n\t}\n\n\tfunction ObjectExpression() {\n\t  return t.genericTypeAnnotation(t.identifier(\"Object\"));\n\t}\n\n\tfunction ArrayExpression() {\n\t  return t.genericTypeAnnotation(t.identifier(\"Array\"));\n\t}\n\n\tfunction RestElement() {\n\t  return ArrayExpression();\n\t}\n\n\tRestElement.validParent = true;\n\n\tfunction Func() {\n\t  return t.genericTypeAnnotation(t.identifier(\"Function\"));\n\t}\n\n\texports.FunctionExpression = Func;\n\texports.ArrowFunctionExpression = Func;\n\texports.FunctionDeclaration = Func;\n\texports.ClassExpression = Func;\n\texports.ClassDeclaration = Func;\n\tfunction CallExpression() {\n\t  return resolveCall(this.get(\"callee\"));\n\t}\n\n\tfunction TaggedTemplateExpression() {\n\t  return resolveCall(this.get(\"tag\"));\n\t}\n\n\tfunction resolveCall(callee) {\n\t  callee = callee.resolve();\n\n\t  if (callee.isFunction()) {\n\t    if (callee.is(\"async\")) {\n\t      if (callee.is(\"generator\")) {\n\t        return t.genericTypeAnnotation(t.identifier(\"AsyncIterator\"));\n\t      } else {\n\t        return t.genericTypeAnnotation(t.identifier(\"Promise\"));\n\t      }\n\t    } else {\n\t      if (callee.node.returnType) {\n\t        return callee.node.returnType;\n\t      } else {}\n\t    }\n\t  }\n\t}\n\n/***/ }),\n/* 377 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.is = undefined;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.matchesPattern = matchesPattern;\n\texports.has = has;\n\texports.isStatic = isStatic;\n\texports.isnt = isnt;\n\texports.equals = equals;\n\texports.isNodeType = isNodeType;\n\texports.canHaveVariableDeclarationOrExpression = canHaveVariableDeclarationOrExpression;\n\texports.canSwapBetweenExpressionAndStatement = canSwapBetweenExpressionAndStatement;\n\texports.isCompletionRecord = isCompletionRecord;\n\texports.isStatementOrBlock = isStatementOrBlock;\n\texports.referencesImport = referencesImport;\n\texports.getSource = getSource;\n\texports.willIMaybeExecuteBefore = willIMaybeExecuteBefore;\n\texports._guessExecutionStatusRelativeTo = _guessExecutionStatusRelativeTo;\n\texports._guessExecutionStatusRelativeToDifferentFunctions = _guessExecutionStatusRelativeToDifferentFunctions;\n\texports.resolve = resolve;\n\texports._resolve = _resolve;\n\n\tvar _includes = __webpack_require__(111);\n\n\tvar _includes2 = _interopRequireDefault(_includes);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction matchesPattern(pattern, allowPartial) {\n\t  if (!this.isMemberExpression()) return false;\n\n\t  var parts = pattern.split(\".\");\n\t  var search = [this.node];\n\t  var i = 0;\n\n\t  function matches(name) {\n\t    var part = parts[i];\n\t    return part === \"*\" || name === part;\n\t  }\n\n\t  while (search.length) {\n\t    var node = search.shift();\n\n\t    if (allowPartial && i === parts.length) {\n\t      return true;\n\t    }\n\n\t    if (t.isIdentifier(node)) {\n\t      if (!matches(node.name)) return false;\n\t    } else if (t.isLiteral(node)) {\n\t      if (!matches(node.value)) return false;\n\t    } else if (t.isMemberExpression(node)) {\n\t      if (node.computed && !t.isLiteral(node.property)) {\n\t        return false;\n\t      } else {\n\t        search.unshift(node.property);\n\t        search.unshift(node.object);\n\t        continue;\n\t      }\n\t    } else if (t.isThisExpression(node)) {\n\t      if (!matches(\"this\")) return false;\n\t    } else {\n\t      return false;\n\t    }\n\n\t    if (++i > parts.length) {\n\t      return false;\n\t    }\n\t  }\n\n\t  return i === parts.length;\n\t}\n\n\tfunction has(key) {\n\t  var val = this.node && this.node[key];\n\t  if (val && Array.isArray(val)) {\n\t    return !!val.length;\n\t  } else {\n\t    return !!val;\n\t  }\n\t}\n\n\tfunction isStatic() {\n\t  return this.scope.isStatic(this.node);\n\t}\n\n\tvar is = exports.is = has;\n\n\tfunction isnt(key) {\n\t  return !this.has(key);\n\t}\n\n\tfunction equals(key, value) {\n\t  return this.node[key] === value;\n\t}\n\n\tfunction isNodeType(type) {\n\t  return t.isType(this.type, type);\n\t}\n\n\tfunction canHaveVariableDeclarationOrExpression() {\n\t  return (this.key === \"init\" || this.key === \"left\") && this.parentPath.isFor();\n\t}\n\n\tfunction canSwapBetweenExpressionAndStatement(replacement) {\n\t  if (this.key !== \"body\" || !this.parentPath.isArrowFunctionExpression()) {\n\t    return false;\n\t  }\n\n\t  if (this.isExpression()) {\n\t    return t.isBlockStatement(replacement);\n\t  } else if (this.isBlockStatement()) {\n\t    return t.isExpression(replacement);\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction isCompletionRecord(allowInsideFunction) {\n\t  var path = this;\n\t  var first = true;\n\n\t  do {\n\t    var container = path.container;\n\n\t    if (path.isFunction() && !first) {\n\t      return !!allowInsideFunction;\n\t    }\n\n\t    first = false;\n\n\t    if (Array.isArray(container) && path.key !== container.length - 1) {\n\t      return false;\n\t    }\n\t  } while ((path = path.parentPath) && !path.isProgram());\n\n\t  return true;\n\t}\n\n\tfunction isStatementOrBlock() {\n\t  if (this.parentPath.isLabeledStatement() || t.isBlockStatement(this.container)) {\n\t    return false;\n\t  } else {\n\t    return (0, _includes2.default)(t.STATEMENT_OR_BLOCK_KEYS, this.key);\n\t  }\n\t}\n\n\tfunction referencesImport(moduleSource, importName) {\n\t  if (!this.isReferencedIdentifier()) return false;\n\n\t  var binding = this.scope.getBinding(this.node.name);\n\t  if (!binding || binding.kind !== \"module\") return false;\n\n\t  var path = binding.path;\n\t  var parent = path.parentPath;\n\t  if (!parent.isImportDeclaration()) return false;\n\n\t  if (parent.node.source.value === moduleSource) {\n\t    if (!importName) return true;\n\t  } else {\n\t    return false;\n\t  }\n\n\t  if (path.isImportDefaultSpecifier() && importName === \"default\") {\n\t    return true;\n\t  }\n\n\t  if (path.isImportNamespaceSpecifier() && importName === \"*\") {\n\t    return true;\n\t  }\n\n\t  if (path.isImportSpecifier() && path.node.imported.name === importName) {\n\t    return true;\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction getSource() {\n\t  var node = this.node;\n\t  if (node.end) {\n\t    return this.hub.file.code.slice(node.start, node.end);\n\t  } else {\n\t    return \"\";\n\t  }\n\t}\n\n\tfunction willIMaybeExecuteBefore(target) {\n\t  return this._guessExecutionStatusRelativeTo(target) !== \"after\";\n\t}\n\n\tfunction _guessExecutionStatusRelativeTo(target) {\n\t  var targetFuncParent = target.scope.getFunctionParent();\n\t  var selfFuncParent = this.scope.getFunctionParent();\n\n\t  if (targetFuncParent.node !== selfFuncParent.node) {\n\t    var status = this._guessExecutionStatusRelativeToDifferentFunctions(targetFuncParent);\n\t    if (status) {\n\t      return status;\n\t    } else {\n\t      target = targetFuncParent.path;\n\t    }\n\t  }\n\n\t  var targetPaths = target.getAncestry();\n\t  if (targetPaths.indexOf(this) >= 0) return \"after\";\n\n\t  var selfPaths = this.getAncestry();\n\n\t  var commonPath = void 0;\n\t  var targetIndex = void 0;\n\t  var selfIndex = void 0;\n\t  for (selfIndex = 0; selfIndex < selfPaths.length; selfIndex++) {\n\t    var selfPath = selfPaths[selfIndex];\n\t    targetIndex = targetPaths.indexOf(selfPath);\n\t    if (targetIndex >= 0) {\n\t      commonPath = selfPath;\n\t      break;\n\t    }\n\t  }\n\t  if (!commonPath) {\n\t    return \"before\";\n\t  }\n\n\t  var targetRelationship = targetPaths[targetIndex - 1];\n\t  var selfRelationship = selfPaths[selfIndex - 1];\n\t  if (!targetRelationship || !selfRelationship) {\n\t    return \"before\";\n\t  }\n\n\t  if (targetRelationship.listKey && targetRelationship.container === selfRelationship.container) {\n\t    return targetRelationship.key > selfRelationship.key ? \"before\" : \"after\";\n\t  }\n\n\t  var targetKeyPosition = t.VISITOR_KEYS[targetRelationship.type].indexOf(targetRelationship.key);\n\t  var selfKeyPosition = t.VISITOR_KEYS[selfRelationship.type].indexOf(selfRelationship.key);\n\t  return targetKeyPosition > selfKeyPosition ? \"before\" : \"after\";\n\t}\n\n\tfunction _guessExecutionStatusRelativeToDifferentFunctions(targetFuncParent) {\n\t  var targetFuncPath = targetFuncParent.path;\n\t  if (!targetFuncPath.isFunctionDeclaration()) return;\n\n\t  var binding = targetFuncPath.scope.getBinding(targetFuncPath.node.id.name);\n\n\t  if (!binding.references) return \"before\";\n\n\t  var referencePaths = binding.referencePaths;\n\n\t  for (var _iterator = referencePaths, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var path = _ref;\n\n\t    if (path.key !== \"callee\" || !path.parentPath.isCallExpression()) {\n\t      return;\n\t    }\n\t  }\n\n\t  var allStatus = void 0;\n\n\t  for (var _iterator2 = referencePaths, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t    var _ref2;\n\n\t    if (_isArray2) {\n\t      if (_i2 >= _iterator2.length) break;\n\t      _ref2 = _iterator2[_i2++];\n\t    } else {\n\t      _i2 = _iterator2.next();\n\t      if (_i2.done) break;\n\t      _ref2 = _i2.value;\n\t    }\n\n\t    var _path = _ref2;\n\n\t    var childOfFunction = !!_path.find(function (path) {\n\t      return path.node === targetFuncPath.node;\n\t    });\n\t    if (childOfFunction) continue;\n\n\t    var status = this._guessExecutionStatusRelativeTo(_path);\n\n\t    if (allStatus) {\n\t      if (allStatus !== status) return;\n\t    } else {\n\t      allStatus = status;\n\t    }\n\t  }\n\n\t  return allStatus;\n\t}\n\n\tfunction resolve(dangerous, resolved) {\n\t  return this._resolve(dangerous, resolved) || this;\n\t}\n\n\tfunction _resolve(dangerous, resolved) {\n\t  if (resolved && resolved.indexOf(this) >= 0) return;\n\n\t  resolved = resolved || [];\n\t  resolved.push(this);\n\n\t  if (this.isVariableDeclarator()) {\n\t    if (this.get(\"id\").isIdentifier()) {\n\t      return this.get(\"init\").resolve(dangerous, resolved);\n\t    } else {}\n\t  } else if (this.isReferencedIdentifier()) {\n\t    var binding = this.scope.getBinding(this.node.name);\n\t    if (!binding) return;\n\n\t    if (!binding.constant) return;\n\n\t    if (binding.kind === \"module\") return;\n\n\t    if (binding.path !== this) {\n\t      var ret = binding.path.resolve(dangerous, resolved);\n\n\t      if (this.find(function (parent) {\n\t        return parent.node === ret.node;\n\t      })) return;\n\t      return ret;\n\t    }\n\t  } else if (this.isTypeCastExpression()) {\n\t    return this.get(\"expression\").resolve(dangerous, resolved);\n\t  } else if (dangerous && this.isMemberExpression()) {\n\n\t    var targetKey = this.toComputedKey();\n\t    if (!t.isLiteral(targetKey)) return;\n\n\t    var targetName = targetKey.value;\n\n\t    var target = this.get(\"object\").resolve(dangerous, resolved);\n\n\t    if (target.isObjectExpression()) {\n\t      var props = target.get(\"properties\");\n\t      for (var _iterator3 = props, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t        var _ref3;\n\n\t        if (_isArray3) {\n\t          if (_i3 >= _iterator3.length) break;\n\t          _ref3 = _iterator3[_i3++];\n\t        } else {\n\t          _i3 = _iterator3.next();\n\t          if (_i3.done) break;\n\t          _ref3 = _i3.value;\n\t        }\n\n\t        var prop = _ref3;\n\n\t        if (!prop.isProperty()) continue;\n\n\t        var key = prop.get(\"key\");\n\n\t        var match = prop.isnt(\"computed\") && key.isIdentifier({ name: targetName });\n\n\t        match = match || key.isLiteral({ value: targetName });\n\n\t        if (match) return prop.get(\"value\").resolve(dangerous, resolved);\n\t      }\n\t    } else if (target.isArrayExpression() && !isNaN(+targetName)) {\n\t      var elems = target.get(\"elements\");\n\t      var elem = elems[targetName];\n\t      if (elem) return elem.resolve(dangerous, resolved);\n\t    }\n\t  }\n\t}\n\n/***/ }),\n/* 378 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar referenceVisitor = {\n\t  ReferencedIdentifier: function ReferencedIdentifier(path, state) {\n\t    if (path.isJSXIdentifier() && _babelTypes.react.isCompatTag(path.node.name) && !path.parentPath.isJSXMemberExpression()) {\n\t      return;\n\t    }\n\n\t    if (path.node.name === \"this\") {\n\t      var scope = path.scope;\n\t      do {\n\t        if (scope.path.isFunction() && !scope.path.isArrowFunctionExpression()) break;\n\t      } while (scope = scope.parent);\n\t      if (scope) state.breakOnScopePaths.push(scope.path);\n\t    }\n\n\t    var binding = path.scope.getBinding(path.node.name);\n\t    if (!binding) return;\n\n\t    if (binding !== state.scope.getBinding(path.node.name)) return;\n\n\t    state.bindings[path.node.name] = binding;\n\t  }\n\t};\n\n\tvar PathHoister = function () {\n\t  function PathHoister(path, scope) {\n\t    (0, _classCallCheck3.default)(this, PathHoister);\n\n\t    this.breakOnScopePaths = [];\n\n\t    this.bindings = {};\n\n\t    this.scopes = [];\n\n\t    this.scope = scope;\n\t    this.path = path;\n\n\t    this.attachAfter = false;\n\t  }\n\n\t  PathHoister.prototype.isCompatibleScope = function isCompatibleScope(scope) {\n\t    for (var key in this.bindings) {\n\t      var binding = this.bindings[key];\n\t      if (!scope.bindingIdentifierEquals(key, binding.identifier)) {\n\t        return false;\n\t      }\n\t    }\n\n\t    return true;\n\t  };\n\n\t  PathHoister.prototype.getCompatibleScopes = function getCompatibleScopes() {\n\t    var scope = this.path.scope;\n\t    do {\n\t      if (this.isCompatibleScope(scope)) {\n\t        this.scopes.push(scope);\n\t      } else {\n\t        break;\n\t      }\n\n\t      if (this.breakOnScopePaths.indexOf(scope.path) >= 0) {\n\t        break;\n\t      }\n\t    } while (scope = scope.parent);\n\t  };\n\n\t  PathHoister.prototype.getAttachmentPath = function getAttachmentPath() {\n\t    var path = this._getAttachmentPath();\n\t    if (!path) return;\n\n\t    var targetScope = path.scope;\n\n\t    if (targetScope.path === path) {\n\t      targetScope = path.scope.parent;\n\t    }\n\n\t    if (targetScope.path.isProgram() || targetScope.path.isFunction()) {\n\t      for (var name in this.bindings) {\n\t        if (!targetScope.hasOwnBinding(name)) continue;\n\n\t        var binding = this.bindings[name];\n\n\t        if (binding.kind === \"param\") continue;\n\n\t        if (this.getAttachmentParentForPath(binding.path).key > path.key) {\n\t          this.attachAfter = true;\n\t          path = binding.path;\n\n\t          for (var _iterator = binding.constantViolations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t            var _ref;\n\n\t            if (_isArray) {\n\t              if (_i >= _iterator.length) break;\n\t              _ref = _iterator[_i++];\n\t            } else {\n\t              _i = _iterator.next();\n\t              if (_i.done) break;\n\t              _ref = _i.value;\n\t            }\n\n\t            var violationPath = _ref;\n\n\t            if (this.getAttachmentParentForPath(violationPath).key > path.key) {\n\t              path = violationPath;\n\t            }\n\t          }\n\t        }\n\t      }\n\t    }\n\n\t    if (path.parentPath.isExportDeclaration()) {\n\t      path = path.parentPath;\n\t    }\n\n\t    return path;\n\t  };\n\n\t  PathHoister.prototype._getAttachmentPath = function _getAttachmentPath() {\n\t    var scopes = this.scopes;\n\n\t    var scope = scopes.pop();\n\n\t    if (!scope) return;\n\n\t    if (scope.path.isFunction()) {\n\t      if (this.hasOwnParamBindings(scope)) {\n\t        if (this.scope === scope) return;\n\n\t        return scope.path.get(\"body\").get(\"body\")[0];\n\t      } else {\n\t        return this.getNextScopeAttachmentParent();\n\t      }\n\t    } else if (scope.path.isProgram()) {\n\t      return this.getNextScopeAttachmentParent();\n\t    }\n\t  };\n\n\t  PathHoister.prototype.getNextScopeAttachmentParent = function getNextScopeAttachmentParent() {\n\t    var scope = this.scopes.pop();\n\t    if (scope) return this.getAttachmentParentForPath(scope.path);\n\t  };\n\n\t  PathHoister.prototype.getAttachmentParentForPath = function getAttachmentParentForPath(path) {\n\t    do {\n\t      if (!path.parentPath || Array.isArray(path.container) && path.isStatement() || path.isVariableDeclarator() && path.parentPath.node !== null && path.parentPath.node.declarations.length > 1) return path;\n\t    } while (path = path.parentPath);\n\t  };\n\n\t  PathHoister.prototype.hasOwnParamBindings = function hasOwnParamBindings(scope) {\n\t    for (var name in this.bindings) {\n\t      if (!scope.hasOwnBinding(name)) continue;\n\n\t      var binding = this.bindings[name];\n\n\t      if (binding.kind === \"param\" && binding.constant) return true;\n\t    }\n\t    return false;\n\t  };\n\n\t  PathHoister.prototype.run = function run() {\n\t    var node = this.path.node;\n\t    if (node._hoisted) return;\n\t    node._hoisted = true;\n\n\t    this.path.traverse(referenceVisitor, this);\n\n\t    this.getCompatibleScopes();\n\n\t    var attachTo = this.getAttachmentPath();\n\t    if (!attachTo) return;\n\n\t    if (attachTo.getFunctionParent() === this.path.getFunctionParent()) return;\n\n\t    var uid = attachTo.scope.generateUidIdentifier(\"ref\");\n\t    var declarator = t.variableDeclarator(uid, this.path.node);\n\n\t    var insertFn = this.attachAfter ? \"insertAfter\" : \"insertBefore\";\n\t    attachTo[insertFn]([attachTo.isVariableDeclarator() ? declarator : t.variableDeclaration(\"var\", [declarator])]);\n\n\t    var parent = this.path.parentPath;\n\t    if (parent.isJSXElement() && this.path.container === parent.node.children) {\n\t      uid = t.JSXExpressionContainer(uid);\n\t    }\n\n\t    this.path.replaceWith(uid);\n\t  };\n\n\t  return PathHoister;\n\t}();\n\n\texports.default = PathHoister;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 379 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\tvar hooks = exports.hooks = [function (self, parent) {\n\t  var removeParent = self.key === \"test\" && (parent.isWhile() || parent.isSwitchCase()) || self.key === \"declaration\" && parent.isExportDeclaration() || self.key === \"body\" && parent.isLabeledStatement() || self.listKey === \"declarations\" && parent.isVariableDeclaration() && parent.node.declarations.length === 1 || self.key === \"expression\" && parent.isExpressionStatement();\n\n\t  if (removeParent) {\n\t    parent.remove();\n\t    return true;\n\t  }\n\t}, function (self, parent) {\n\t  if (parent.isSequenceExpression() && parent.node.expressions.length === 1) {\n\t    parent.replaceWith(parent.node.expressions[0]);\n\t    return true;\n\t  }\n\t}, function (self, parent) {\n\t  if (parent.isBinary()) {\n\t    if (self.key === \"left\") {\n\t      parent.replaceWith(parent.node.right);\n\t    } else {\n\t      parent.replaceWith(parent.node.left);\n\t    }\n\t    return true;\n\t  }\n\t}, function (self, parent) {\n\t  if (parent.isIfStatement() && (self.key === \"consequent\" || self.key === \"alternate\") || self.key === \"body\" && (parent.isLoop() || parent.isArrowFunctionExpression())) {\n\t    self.replaceWith({\n\t      type: \"BlockStatement\",\n\t      body: []\n\t    });\n\t    return true;\n\t  }\n\t}];\n\n/***/ }),\n/* 380 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.insertBefore = insertBefore;\n\texports._containerInsert = _containerInsert;\n\texports._containerInsertBefore = _containerInsertBefore;\n\texports._containerInsertAfter = _containerInsertAfter;\n\texports._maybePopFromStatements = _maybePopFromStatements;\n\texports.insertAfter = insertAfter;\n\texports.updateSiblingKeys = updateSiblingKeys;\n\texports._verifyNodeList = _verifyNodeList;\n\texports.unshiftContainer = unshiftContainer;\n\texports.pushContainer = pushContainer;\n\texports.hoist = hoist;\n\n\tvar _cache = __webpack_require__(88);\n\n\tvar _hoister = __webpack_require__(378);\n\n\tvar _hoister2 = _interopRequireDefault(_hoister);\n\n\tvar _index = __webpack_require__(36);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction insertBefore(nodes) {\n\t  this._assertUnremoved();\n\n\t  nodes = this._verifyNodeList(nodes);\n\n\t  if (this.parentPath.isExpressionStatement() || this.parentPath.isLabeledStatement()) {\n\t    return this.parentPath.insertBefore(nodes);\n\t  } else if (this.isNodeType(\"Expression\") || this.parentPath.isForStatement() && this.key === \"init\") {\n\t    if (this.node) nodes.push(this.node);\n\t    this.replaceExpressionWithStatements(nodes);\n\t  } else {\n\t    this._maybePopFromStatements(nodes);\n\t    if (Array.isArray(this.container)) {\n\t      return this._containerInsertBefore(nodes);\n\t    } else if (this.isStatementOrBlock()) {\n\t      if (this.node) nodes.push(this.node);\n\t      this._replaceWith(t.blockStatement(nodes));\n\t    } else {\n\t      throw new Error(\"We don't know what to do with this node type. \" + \"We were previously a Statement but we can't fit in here?\");\n\t    }\n\t  }\n\n\t  return [this];\n\t}\n\n\tfunction _containerInsert(from, nodes) {\n\t  this.updateSiblingKeys(from, nodes.length);\n\n\t  var paths = [];\n\n\t  for (var i = 0; i < nodes.length; i++) {\n\t    var to = from + i;\n\t    var node = nodes[i];\n\t    this.container.splice(to, 0, node);\n\n\t    if (this.context) {\n\t      var path = this.context.create(this.parent, this.container, to, this.listKey);\n\n\t      if (this.context.queue) path.pushContext(this.context);\n\t      paths.push(path);\n\t    } else {\n\t      paths.push(_index2.default.get({\n\t        parentPath: this.parentPath,\n\t        parent: this.parent,\n\t        container: this.container,\n\t        listKey: this.listKey,\n\t        key: to\n\t      }));\n\t    }\n\t  }\n\n\t  var contexts = this._getQueueContexts();\n\n\t  for (var _iterator = paths, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var _path = _ref;\n\n\t    _path.setScope();\n\t    _path.debug(function () {\n\t      return \"Inserted.\";\n\t    });\n\n\t    for (var _iterator2 = contexts, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var context = _ref2;\n\n\t      context.maybeQueue(_path, true);\n\t    }\n\t  }\n\n\t  return paths;\n\t}\n\n\tfunction _containerInsertBefore(nodes) {\n\t  return this._containerInsert(this.key, nodes);\n\t}\n\n\tfunction _containerInsertAfter(nodes) {\n\t  return this._containerInsert(this.key + 1, nodes);\n\t}\n\n\tfunction _maybePopFromStatements(nodes) {\n\t  var last = nodes[nodes.length - 1];\n\t  var isIdentifier = t.isIdentifier(last) || t.isExpressionStatement(last) && t.isIdentifier(last.expression);\n\n\t  if (isIdentifier && !this.isCompletionRecord()) {\n\t    nodes.pop();\n\t  }\n\t}\n\n\tfunction insertAfter(nodes) {\n\t  this._assertUnremoved();\n\n\t  nodes = this._verifyNodeList(nodes);\n\n\t  if (this.parentPath.isExpressionStatement() || this.parentPath.isLabeledStatement()) {\n\t    return this.parentPath.insertAfter(nodes);\n\t  } else if (this.isNodeType(\"Expression\") || this.parentPath.isForStatement() && this.key === \"init\") {\n\t    if (this.node) {\n\t      var temp = this.scope.generateDeclaredUidIdentifier();\n\t      nodes.unshift(t.expressionStatement(t.assignmentExpression(\"=\", temp, this.node)));\n\t      nodes.push(t.expressionStatement(temp));\n\t    }\n\t    this.replaceExpressionWithStatements(nodes);\n\t  } else {\n\t    this._maybePopFromStatements(nodes);\n\t    if (Array.isArray(this.container)) {\n\t      return this._containerInsertAfter(nodes);\n\t    } else if (this.isStatementOrBlock()) {\n\t      if (this.node) nodes.unshift(this.node);\n\t      this._replaceWith(t.blockStatement(nodes));\n\t    } else {\n\t      throw new Error(\"We don't know what to do with this node type. \" + \"We were previously a Statement but we can't fit in here?\");\n\t    }\n\t  }\n\n\t  return [this];\n\t}\n\n\tfunction updateSiblingKeys(fromIndex, incrementBy) {\n\t  if (!this.parent) return;\n\n\t  var paths = _cache.path.get(this.parent);\n\t  for (var i = 0; i < paths.length; i++) {\n\t    var path = paths[i];\n\t    if (path.key >= fromIndex) {\n\t      path.key += incrementBy;\n\t    }\n\t  }\n\t}\n\n\tfunction _verifyNodeList(nodes) {\n\t  if (!nodes) {\n\t    return [];\n\t  }\n\n\t  if (nodes.constructor !== Array) {\n\t    nodes = [nodes];\n\t  }\n\n\t  for (var i = 0; i < nodes.length; i++) {\n\t    var node = nodes[i];\n\t    var msg = void 0;\n\n\t    if (!node) {\n\t      msg = \"has falsy node\";\n\t    } else if ((typeof node === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(node)) !== \"object\") {\n\t      msg = \"contains a non-object node\";\n\t    } else if (!node.type) {\n\t      msg = \"without a type\";\n\t    } else if (node instanceof _index2.default) {\n\t      msg = \"has a NodePath when it expected a raw object\";\n\t    }\n\n\t    if (msg) {\n\t      var type = Array.isArray(node) ? \"array\" : typeof node === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(node);\n\t      throw new Error(\"Node list \" + msg + \" with the index of \" + i + \" and type of \" + type);\n\t    }\n\t  }\n\n\t  return nodes;\n\t}\n\n\tfunction unshiftContainer(listKey, nodes) {\n\t  this._assertUnremoved();\n\n\t  nodes = this._verifyNodeList(nodes);\n\n\t  var path = _index2.default.get({\n\t    parentPath: this,\n\t    parent: this.node,\n\t    container: this.node[listKey],\n\t    listKey: listKey,\n\t    key: 0\n\t  });\n\n\t  return path.insertBefore(nodes);\n\t}\n\n\tfunction pushContainer(listKey, nodes) {\n\t  this._assertUnremoved();\n\n\t  nodes = this._verifyNodeList(nodes);\n\n\t  var container = this.node[listKey];\n\t  var path = _index2.default.get({\n\t    parentPath: this,\n\t    parent: this.node,\n\t    container: container,\n\t    listKey: listKey,\n\t    key: container.length\n\t  });\n\n\t  return path.replaceWithMultiple(nodes);\n\t}\n\n\tfunction hoist() {\n\t  var scope = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this.scope;\n\n\t  var hoister = new _hoister2.default(this, scope);\n\t  return hoister.run();\n\t}\n\n/***/ }),\n/* 381 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.remove = remove;\n\texports._callRemovalHooks = _callRemovalHooks;\n\texports._remove = _remove;\n\texports._markRemoved = _markRemoved;\n\texports._assertUnremoved = _assertUnremoved;\n\n\tvar _removalHooks = __webpack_require__(379);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction remove() {\n\t  this._assertUnremoved();\n\n\t  this.resync();\n\n\t  if (this._callRemovalHooks()) {\n\t    this._markRemoved();\n\t    return;\n\t  }\n\n\t  this.shareCommentsWithSiblings();\n\t  this._remove();\n\t  this._markRemoved();\n\t}\n\n\tfunction _callRemovalHooks() {\n\t  for (var _iterator = _removalHooks.hooks, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var fn = _ref;\n\n\t    if (fn(this, this.parentPath)) return true;\n\t  }\n\t}\n\n\tfunction _remove() {\n\t  if (Array.isArray(this.container)) {\n\t    this.container.splice(this.key, 1);\n\t    this.updateSiblingKeys(this.key, -1);\n\t  } else {\n\t    this._replaceWith(null);\n\t  }\n\t}\n\n\tfunction _markRemoved() {\n\t  this.shouldSkip = true;\n\t  this.removed = true;\n\t  this.node = null;\n\t}\n\n\tfunction _assertUnremoved() {\n\t  if (this.removed) {\n\t    throw this.buildCodeFrameError(\"NodePath has been removed so is read-only.\");\n\t  }\n\t}\n\n/***/ }),\n/* 382 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.replaceWithMultiple = replaceWithMultiple;\n\texports.replaceWithSourceString = replaceWithSourceString;\n\texports.replaceWith = replaceWith;\n\texports._replaceWith = _replaceWith;\n\texports.replaceExpressionWithStatements = replaceExpressionWithStatements;\n\texports.replaceInline = replaceInline;\n\n\tvar _babelCodeFrame = __webpack_require__(181);\n\n\tvar _babelCodeFrame2 = _interopRequireDefault(_babelCodeFrame);\n\n\tvar _index = __webpack_require__(7);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tvar _index3 = __webpack_require__(36);\n\n\tvar _index4 = _interopRequireDefault(_index3);\n\n\tvar _babylon = __webpack_require__(89);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar hoistVariablesVisitor = {\n\t  Function: function Function(path) {\n\t    path.skip();\n\t  },\n\t  VariableDeclaration: function VariableDeclaration(path) {\n\t    if (path.node.kind !== \"var\") return;\n\n\t    var bindings = path.getBindingIdentifiers();\n\t    for (var key in bindings) {\n\t      path.scope.push({ id: bindings[key] });\n\t    }\n\n\t    var exprs = [];\n\n\t    for (var _iterator = path.node.declarations, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var declar = _ref;\n\n\t      if (declar.init) {\n\t        exprs.push(t.expressionStatement(t.assignmentExpression(\"=\", declar.id, declar.init)));\n\t      }\n\t    }\n\n\t    path.replaceWithMultiple(exprs);\n\t  }\n\t};\n\n\tfunction replaceWithMultiple(nodes) {\n\t  this.resync();\n\n\t  nodes = this._verifyNodeList(nodes);\n\t  t.inheritLeadingComments(nodes[0], this.node);\n\t  t.inheritTrailingComments(nodes[nodes.length - 1], this.node);\n\t  this.node = this.container[this.key] = null;\n\t  this.insertAfter(nodes);\n\n\t  if (this.node) {\n\t    this.requeue();\n\t  } else {\n\t    this.remove();\n\t  }\n\t}\n\n\tfunction replaceWithSourceString(replacement) {\n\t  this.resync();\n\n\t  try {\n\t    replacement = \"(\" + replacement + \")\";\n\t    replacement = (0, _babylon.parse)(replacement);\n\t  } catch (err) {\n\t    var loc = err.loc;\n\t    if (loc) {\n\t      err.message += \" - make sure this is an expression.\";\n\t      err.message += \"\\n\" + (0, _babelCodeFrame2.default)(replacement, loc.line, loc.column + 1);\n\t    }\n\t    throw err;\n\t  }\n\n\t  replacement = replacement.program.body[0].expression;\n\t  _index2.default.removeProperties(replacement);\n\t  return this.replaceWith(replacement);\n\t}\n\n\tfunction replaceWith(replacement) {\n\t  this.resync();\n\n\t  if (this.removed) {\n\t    throw new Error(\"You can't replace this node, we've already removed it\");\n\t  }\n\n\t  if (replacement instanceof _index4.default) {\n\t    replacement = replacement.node;\n\t  }\n\n\t  if (!replacement) {\n\t    throw new Error(\"You passed `path.replaceWith()` a falsy node, use `path.remove()` instead\");\n\t  }\n\n\t  if (this.node === replacement) {\n\t    return;\n\t  }\n\n\t  if (this.isProgram() && !t.isProgram(replacement)) {\n\t    throw new Error(\"You can only replace a Program root node with another Program node\");\n\t  }\n\n\t  if (Array.isArray(replacement)) {\n\t    throw new Error(\"Don't use `path.replaceWith()` with an array of nodes, use `path.replaceWithMultiple()`\");\n\t  }\n\n\t  if (typeof replacement === \"string\") {\n\t    throw new Error(\"Don't use `path.replaceWith()` with a source string, use `path.replaceWithSourceString()`\");\n\t  }\n\n\t  if (this.isNodeType(\"Statement\") && t.isExpression(replacement)) {\n\t    if (!this.canHaveVariableDeclarationOrExpression() && !this.canSwapBetweenExpressionAndStatement(replacement) && !this.parentPath.isExportDefaultDeclaration()) {\n\t      replacement = t.expressionStatement(replacement);\n\t    }\n\t  }\n\n\t  if (this.isNodeType(\"Expression\") && t.isStatement(replacement)) {\n\t    if (!this.canHaveVariableDeclarationOrExpression() && !this.canSwapBetweenExpressionAndStatement(replacement)) {\n\t      return this.replaceExpressionWithStatements([replacement]);\n\t    }\n\t  }\n\n\t  var oldNode = this.node;\n\t  if (oldNode) {\n\t    t.inheritsComments(replacement, oldNode);\n\t    t.removeComments(oldNode);\n\t  }\n\n\t  this._replaceWith(replacement);\n\t  this.type = replacement.type;\n\n\t  this.setScope();\n\n\t  this.requeue();\n\t}\n\n\tfunction _replaceWith(node) {\n\t  if (!this.container) {\n\t    throw new ReferenceError(\"Container is falsy\");\n\t  }\n\n\t  if (this.inList) {\n\t    t.validate(this.parent, this.key, [node]);\n\t  } else {\n\t    t.validate(this.parent, this.key, node);\n\t  }\n\n\t  this.debug(function () {\n\t    return \"Replace with \" + (node && node.type);\n\t  });\n\n\t  this.node = this.container[this.key] = node;\n\t}\n\n\tfunction replaceExpressionWithStatements(nodes) {\n\t  this.resync();\n\n\t  var toSequenceExpression = t.toSequenceExpression(nodes, this.scope);\n\n\t  if (t.isSequenceExpression(toSequenceExpression)) {\n\t    var exprs = toSequenceExpression.expressions;\n\n\t    if (exprs.length >= 2 && this.parentPath.isExpressionStatement()) {\n\t      this._maybePopFromStatements(exprs);\n\t    }\n\n\t    if (exprs.length === 1) {\n\t      this.replaceWith(exprs[0]);\n\t    } else {\n\t      this.replaceWith(toSequenceExpression);\n\t    }\n\t  } else if (toSequenceExpression) {\n\t    this.replaceWith(toSequenceExpression);\n\t  } else {\n\t    var container = t.functionExpression(null, [], t.blockStatement(nodes));\n\t    container.shadow = true;\n\n\t    this.replaceWith(t.callExpression(container, []));\n\t    this.traverse(hoistVariablesVisitor);\n\n\t    var completionRecords = this.get(\"callee\").getCompletionRecords();\n\t    for (var _iterator2 = completionRecords, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t      var _ref2;\n\n\t      if (_isArray2) {\n\t        if (_i2 >= _iterator2.length) break;\n\t        _ref2 = _iterator2[_i2++];\n\t      } else {\n\t        _i2 = _iterator2.next();\n\t        if (_i2.done) break;\n\t        _ref2 = _i2.value;\n\t      }\n\n\t      var path = _ref2;\n\n\t      if (!path.isExpressionStatement()) continue;\n\n\t      var loop = path.findParent(function (path) {\n\t        return path.isLoop();\n\t      });\n\t      if (loop) {\n\t        var uid = loop.getData(\"expressionReplacementReturnUid\");\n\n\t        if (!uid) {\n\t          var callee = this.get(\"callee\");\n\t          uid = callee.scope.generateDeclaredUidIdentifier(\"ret\");\n\t          callee.get(\"body\").pushContainer(\"body\", t.returnStatement(uid));\n\t          loop.setData(\"expressionReplacementReturnUid\", uid);\n\t        } else {\n\t          uid = t.identifier(uid.name);\n\t        }\n\n\t        path.get(\"expression\").replaceWith(t.assignmentExpression(\"=\", uid, path.node.expression));\n\t      } else {\n\t        path.replaceWith(t.returnStatement(path.node.expression));\n\t      }\n\t    }\n\n\t    return this.node;\n\t  }\n\t}\n\n\tfunction replaceInline(nodes) {\n\t  this.resync();\n\n\t  if (Array.isArray(nodes)) {\n\t    if (Array.isArray(this.container)) {\n\t      nodes = this._verifyNodeList(nodes);\n\t      this._containerInsertAfter(nodes);\n\t      return this.remove();\n\t    } else {\n\t      return this.replaceWithMultiple(nodes);\n\t    }\n\t  } else {\n\t    return this.replaceWith(nodes);\n\t  }\n\t}\n\n/***/ }),\n/* 383 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _classCallCheck2 = __webpack_require__(3);\n\n\tvar _classCallCheck3 = _interopRequireDefault(_classCallCheck2);\n\n\tvar _binding = __webpack_require__(225);\n\n\tvar _binding2 = _interopRequireDefault(_binding);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar renameVisitor = {\n\t  ReferencedIdentifier: function ReferencedIdentifier(_ref, state) {\n\t    var node = _ref.node;\n\n\t    if (node.name === state.oldName) {\n\t      node.name = state.newName;\n\t    }\n\t  },\n\t  Scope: function Scope(path, state) {\n\t    if (!path.scope.bindingIdentifierEquals(state.oldName, state.binding.identifier)) {\n\t      path.skip();\n\t    }\n\t  },\n\t  \"AssignmentExpression|Declaration\": function AssignmentExpressionDeclaration(path, state) {\n\t    var ids = path.getOuterBindingIdentifiers();\n\n\t    for (var name in ids) {\n\t      if (name === state.oldName) ids[name].name = state.newName;\n\t    }\n\t  }\n\t};\n\n\tvar Renamer = function () {\n\t  function Renamer(binding, oldName, newName) {\n\t    (0, _classCallCheck3.default)(this, Renamer);\n\n\t    this.newName = newName;\n\t    this.oldName = oldName;\n\t    this.binding = binding;\n\t  }\n\n\t  Renamer.prototype.maybeConvertFromExportDeclaration = function maybeConvertFromExportDeclaration(parentDeclar) {\n\t    var exportDeclar = parentDeclar.parentPath.isExportDeclaration() && parentDeclar.parentPath;\n\t    if (!exportDeclar) return;\n\n\t    var isDefault = exportDeclar.isExportDefaultDeclaration();\n\n\t    if (isDefault && (parentDeclar.isFunctionDeclaration() || parentDeclar.isClassDeclaration()) && !parentDeclar.node.id) {\n\t      parentDeclar.node.id = parentDeclar.scope.generateUidIdentifier(\"default\");\n\t    }\n\n\t    var bindingIdentifiers = parentDeclar.getOuterBindingIdentifiers();\n\t    var specifiers = [];\n\n\t    for (var name in bindingIdentifiers) {\n\t      var localName = name === this.oldName ? this.newName : name;\n\t      var exportedName = isDefault ? \"default\" : name;\n\t      specifiers.push(t.exportSpecifier(t.identifier(localName), t.identifier(exportedName)));\n\t    }\n\n\t    if (specifiers.length) {\n\t      var aliasDeclar = t.exportNamedDeclaration(null, specifiers);\n\n\t      if (parentDeclar.isFunctionDeclaration()) {\n\t        aliasDeclar._blockHoist = 3;\n\t      }\n\n\t      exportDeclar.insertAfter(aliasDeclar);\n\t      exportDeclar.replaceWith(parentDeclar.node);\n\t    }\n\t  };\n\n\t  Renamer.prototype.rename = function rename(block) {\n\t    var binding = this.binding,\n\t        oldName = this.oldName,\n\t        newName = this.newName;\n\t    var scope = binding.scope,\n\t        path = binding.path;\n\n\t    var parentDeclar = path.find(function (path) {\n\t      return path.isDeclaration() || path.isFunctionExpression();\n\t    });\n\t    if (parentDeclar) {\n\t      this.maybeConvertFromExportDeclaration(parentDeclar);\n\t    }\n\n\t    scope.traverse(block || scope.block, renameVisitor, this);\n\n\t    if (!block) {\n\t      scope.removeOwnBinding(oldName);\n\t      scope.bindings[newName] = binding;\n\t      this.binding.identifier.name = newName;\n\t    }\n\n\t    if (binding.type === \"hoisted\") {}\n\t  };\n\n\t  return Renamer;\n\t}();\n\n\texports.default = Renamer;\n\tmodule.exports = exports[\"default\"];\n\n/***/ }),\n/* 384 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.explode = explode;\n\texports.verify = verify;\n\texports.merge = merge;\n\n\tvar _virtualTypes = __webpack_require__(224);\n\n\tvar virtualTypes = _interopRequireWildcard(_virtualTypes);\n\n\tvar _babelMessages = __webpack_require__(20);\n\n\tvar messages = _interopRequireWildcard(_babelMessages);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _clone = __webpack_require__(109);\n\n\tvar _clone2 = _interopRequireDefault(_clone);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction explode(visitor) {\n\t  if (visitor._exploded) return visitor;\n\t  visitor._exploded = true;\n\n\t  for (var nodeType in visitor) {\n\t    if (shouldIgnoreKey(nodeType)) continue;\n\n\t    var parts = nodeType.split(\"|\");\n\t    if (parts.length === 1) continue;\n\n\t    var fns = visitor[nodeType];\n\t    delete visitor[nodeType];\n\n\t    for (var _iterator = parts, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t      var _ref;\n\n\t      if (_isArray) {\n\t        if (_i >= _iterator.length) break;\n\t        _ref = _iterator[_i++];\n\t      } else {\n\t        _i = _iterator.next();\n\t        if (_i.done) break;\n\t        _ref = _i.value;\n\t      }\n\n\t      var part = _ref;\n\n\t      visitor[part] = fns;\n\t    }\n\t  }\n\n\t  verify(visitor);\n\n\t  delete visitor.__esModule;\n\n\t  ensureEntranceObjects(visitor);\n\n\t  ensureCallbackArrays(visitor);\n\n\t  for (var _iterator2 = (0, _keys2.default)(visitor), _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t    var _ref2;\n\n\t    if (_isArray2) {\n\t      if (_i2 >= _iterator2.length) break;\n\t      _ref2 = _iterator2[_i2++];\n\t    } else {\n\t      _i2 = _iterator2.next();\n\t      if (_i2.done) break;\n\t      _ref2 = _i2.value;\n\t    }\n\n\t    var _nodeType3 = _ref2;\n\n\t    if (shouldIgnoreKey(_nodeType3)) continue;\n\n\t    var wrapper = virtualTypes[_nodeType3];\n\t    if (!wrapper) continue;\n\n\t    var _fns2 = visitor[_nodeType3];\n\t    for (var type in _fns2) {\n\t      _fns2[type] = wrapCheck(wrapper, _fns2[type]);\n\t    }\n\n\t    delete visitor[_nodeType3];\n\n\t    if (wrapper.types) {\n\t      for (var _iterator4 = wrapper.types, _isArray4 = Array.isArray(_iterator4), _i4 = 0, _iterator4 = _isArray4 ? _iterator4 : (0, _getIterator3.default)(_iterator4);;) {\n\t        var _ref4;\n\n\t        if (_isArray4) {\n\t          if (_i4 >= _iterator4.length) break;\n\t          _ref4 = _iterator4[_i4++];\n\t        } else {\n\t          _i4 = _iterator4.next();\n\t          if (_i4.done) break;\n\t          _ref4 = _i4.value;\n\t        }\n\n\t        var _type = _ref4;\n\n\t        if (visitor[_type]) {\n\t          mergePair(visitor[_type], _fns2);\n\t        } else {\n\t          visitor[_type] = _fns2;\n\t        }\n\t      }\n\t    } else {\n\t      mergePair(visitor, _fns2);\n\t    }\n\t  }\n\n\t  for (var _nodeType in visitor) {\n\t    if (shouldIgnoreKey(_nodeType)) continue;\n\n\t    var _fns = visitor[_nodeType];\n\n\t    var aliases = t.FLIPPED_ALIAS_KEYS[_nodeType];\n\n\t    var deprecratedKey = t.DEPRECATED_KEYS[_nodeType];\n\t    if (deprecratedKey) {\n\t      console.trace(\"Visitor defined for \" + _nodeType + \" but it has been renamed to \" + deprecratedKey);\n\t      aliases = [deprecratedKey];\n\t    }\n\n\t    if (!aliases) continue;\n\n\t    delete visitor[_nodeType];\n\n\t    for (var _iterator3 = aliases, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t      var _ref3;\n\n\t      if (_isArray3) {\n\t        if (_i3 >= _iterator3.length) break;\n\t        _ref3 = _iterator3[_i3++];\n\t      } else {\n\t        _i3 = _iterator3.next();\n\t        if (_i3.done) break;\n\t        _ref3 = _i3.value;\n\t      }\n\n\t      var alias = _ref3;\n\n\t      var existing = visitor[alias];\n\t      if (existing) {\n\t        mergePair(existing, _fns);\n\t      } else {\n\t        visitor[alias] = (0, _clone2.default)(_fns);\n\t      }\n\t    }\n\t  }\n\n\t  for (var _nodeType2 in visitor) {\n\t    if (shouldIgnoreKey(_nodeType2)) continue;\n\n\t    ensureCallbackArrays(visitor[_nodeType2]);\n\t  }\n\n\t  return visitor;\n\t}\n\n\tfunction verify(visitor) {\n\t  if (visitor._verified) return;\n\n\t  if (typeof visitor === \"function\") {\n\t    throw new Error(messages.get(\"traverseVerifyRootFunction\"));\n\t  }\n\n\t  for (var nodeType in visitor) {\n\t    if (nodeType === \"enter\" || nodeType === \"exit\") {\n\t      validateVisitorMethods(nodeType, visitor[nodeType]);\n\t    }\n\n\t    if (shouldIgnoreKey(nodeType)) continue;\n\n\t    if (t.TYPES.indexOf(nodeType) < 0) {\n\t      throw new Error(messages.get(\"traverseVerifyNodeType\", nodeType));\n\t    }\n\n\t    var visitors = visitor[nodeType];\n\t    if ((typeof visitors === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(visitors)) === \"object\") {\n\t      for (var visitorKey in visitors) {\n\t        if (visitorKey === \"enter\" || visitorKey === \"exit\") {\n\t          validateVisitorMethods(nodeType + \".\" + visitorKey, visitors[visitorKey]);\n\t        } else {\n\t          throw new Error(messages.get(\"traverseVerifyVisitorProperty\", nodeType, visitorKey));\n\t        }\n\t      }\n\t    }\n\t  }\n\n\t  visitor._verified = true;\n\t}\n\n\tfunction validateVisitorMethods(path, val) {\n\t  var fns = [].concat(val);\n\t  for (var _iterator5 = fns, _isArray5 = Array.isArray(_iterator5), _i5 = 0, _iterator5 = _isArray5 ? _iterator5 : (0, _getIterator3.default)(_iterator5);;) {\n\t    var _ref5;\n\n\t    if (_isArray5) {\n\t      if (_i5 >= _iterator5.length) break;\n\t      _ref5 = _iterator5[_i5++];\n\t    } else {\n\t      _i5 = _iterator5.next();\n\t      if (_i5.done) break;\n\t      _ref5 = _i5.value;\n\t    }\n\n\t    var fn = _ref5;\n\n\t    if (typeof fn !== \"function\") {\n\t      throw new TypeError(\"Non-function found defined in \" + path + \" with type \" + (typeof fn === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(fn)));\n\t    }\n\t  }\n\t}\n\n\tfunction merge(visitors) {\n\t  var states = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];\n\t  var wrapper = arguments[2];\n\n\t  var rootVisitor = {};\n\n\t  for (var i = 0; i < visitors.length; i++) {\n\t    var visitor = visitors[i];\n\t    var state = states[i];\n\n\t    explode(visitor);\n\n\t    for (var type in visitor) {\n\t      var visitorType = visitor[type];\n\n\t      if (state || wrapper) {\n\t        visitorType = wrapWithStateOrWrapper(visitorType, state, wrapper);\n\t      }\n\n\t      var nodeVisitor = rootVisitor[type] = rootVisitor[type] || {};\n\t      mergePair(nodeVisitor, visitorType);\n\t    }\n\t  }\n\n\t  return rootVisitor;\n\t}\n\n\tfunction wrapWithStateOrWrapper(oldVisitor, state, wrapper) {\n\t  var newVisitor = {};\n\n\t  var _loop = function _loop(key) {\n\t    var fns = oldVisitor[key];\n\n\t    if (!Array.isArray(fns)) return \"continue\";\n\n\t    fns = fns.map(function (fn) {\n\t      var newFn = fn;\n\n\t      if (state) {\n\t        newFn = function newFn(path) {\n\t          return fn.call(state, path, state);\n\t        };\n\t      }\n\n\t      if (wrapper) {\n\t        newFn = wrapper(state.key, key, newFn);\n\t      }\n\n\t      return newFn;\n\t    });\n\n\t    newVisitor[key] = fns;\n\t  };\n\n\t  for (var key in oldVisitor) {\n\t    var _ret = _loop(key);\n\n\t    if (_ret === \"continue\") continue;\n\t  }\n\n\t  return newVisitor;\n\t}\n\n\tfunction ensureEntranceObjects(obj) {\n\t  for (var key in obj) {\n\t    if (shouldIgnoreKey(key)) continue;\n\n\t    var fns = obj[key];\n\t    if (typeof fns === \"function\") {\n\t      obj[key] = { enter: fns };\n\t    }\n\t  }\n\t}\n\n\tfunction ensureCallbackArrays(obj) {\n\t  if (obj.enter && !Array.isArray(obj.enter)) obj.enter = [obj.enter];\n\t  if (obj.exit && !Array.isArray(obj.exit)) obj.exit = [obj.exit];\n\t}\n\n\tfunction wrapCheck(wrapper, fn) {\n\t  var newFn = function newFn(path) {\n\t    if (wrapper.checkPath(path)) {\n\t      return fn.apply(this, arguments);\n\t    }\n\t  };\n\t  newFn.toString = function () {\n\t    return fn.toString();\n\t  };\n\t  return newFn;\n\t}\n\n\tfunction shouldIgnoreKey(key) {\n\t  if (key[0] === \"_\") return true;\n\n\t  if (key === \"enter\" || key === \"exit\" || key === \"shouldSkip\") return true;\n\n\t  if (key === \"blacklist\" || key === \"noScope\" || key === \"skipKeys\") return true;\n\n\t  return false;\n\t}\n\n\tfunction mergePair(dest, src) {\n\t  for (var key in src) {\n\t    dest[key] = [].concat(dest[key] || [], src[key]);\n\t  }\n\t}\n\n/***/ }),\n/* 385 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _maxSafeInteger = __webpack_require__(359);\n\n\tvar _maxSafeInteger2 = _interopRequireDefault(_maxSafeInteger);\n\n\tvar _stringify = __webpack_require__(35);\n\n\tvar _stringify2 = _interopRequireDefault(_stringify);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.toComputedKey = toComputedKey;\n\texports.toSequenceExpression = toSequenceExpression;\n\texports.toKeyAlias = toKeyAlias;\n\texports.toIdentifier = toIdentifier;\n\texports.toBindingIdentifierName = toBindingIdentifierName;\n\texports.toStatement = toStatement;\n\texports.toExpression = toExpression;\n\texports.toBlock = toBlock;\n\texports.valueToNode = valueToNode;\n\n\tvar _isPlainObject = __webpack_require__(275);\n\n\tvar _isPlainObject2 = _interopRequireDefault(_isPlainObject);\n\n\tvar _isRegExp = __webpack_require__(276);\n\n\tvar _isRegExp2 = _interopRequireDefault(_isRegExp);\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction toComputedKey(node) {\n\t  var key = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : node.key || node.property;\n\n\t  if (!node.computed) {\n\t    if (t.isIdentifier(key)) key = t.stringLiteral(key.name);\n\t  }\n\t  return key;\n\t}\n\n\tfunction gatherSequenceExpressions(nodes, scope, declars) {\n\t  var exprs = [];\n\t  var ensureLastUndefined = true;\n\n\t  for (var _iterator = nodes, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t    var _ref;\n\n\t    if (_isArray) {\n\t      if (_i >= _iterator.length) break;\n\t      _ref = _iterator[_i++];\n\t    } else {\n\t      _i = _iterator.next();\n\t      if (_i.done) break;\n\t      _ref = _i.value;\n\t    }\n\n\t    var node = _ref;\n\n\t    ensureLastUndefined = false;\n\n\t    if (t.isExpression(node)) {\n\t      exprs.push(node);\n\t    } else if (t.isExpressionStatement(node)) {\n\t      exprs.push(node.expression);\n\t    } else if (t.isVariableDeclaration(node)) {\n\t      if (node.kind !== \"var\") return;\n\n\t      for (var _iterator2 = node.declarations, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t        var _ref2;\n\n\t        if (_isArray2) {\n\t          if (_i2 >= _iterator2.length) break;\n\t          _ref2 = _iterator2[_i2++];\n\t        } else {\n\t          _i2 = _iterator2.next();\n\t          if (_i2.done) break;\n\t          _ref2 = _i2.value;\n\t        }\n\n\t        var declar = _ref2;\n\n\t        var bindings = t.getBindingIdentifiers(declar);\n\t        for (var key in bindings) {\n\t          declars.push({\n\t            kind: node.kind,\n\t            id: bindings[key]\n\t          });\n\t        }\n\n\t        if (declar.init) {\n\t          exprs.push(t.assignmentExpression(\"=\", declar.id, declar.init));\n\t        }\n\t      }\n\n\t      ensureLastUndefined = true;\n\t    } else if (t.isIfStatement(node)) {\n\t      var consequent = node.consequent ? gatherSequenceExpressions([node.consequent], scope, declars) : scope.buildUndefinedNode();\n\t      var alternate = node.alternate ? gatherSequenceExpressions([node.alternate], scope, declars) : scope.buildUndefinedNode();\n\t      if (!consequent || !alternate) return;\n\n\t      exprs.push(t.conditionalExpression(node.test, consequent, alternate));\n\t    } else if (t.isBlockStatement(node)) {\n\t      var body = gatherSequenceExpressions(node.body, scope, declars);\n\t      if (!body) return;\n\n\t      exprs.push(body);\n\t    } else if (t.isEmptyStatement(node)) {\n\t      ensureLastUndefined = true;\n\t    } else {\n\t      return;\n\t    }\n\t  }\n\n\t  if (ensureLastUndefined) {\n\t    exprs.push(scope.buildUndefinedNode());\n\t  }\n\n\t  if (exprs.length === 1) {\n\t    return exprs[0];\n\t  } else {\n\t    return t.sequenceExpression(exprs);\n\t  }\n\t}\n\n\tfunction toSequenceExpression(nodes, scope) {\n\t  if (!nodes || !nodes.length) return;\n\n\t  var declars = [];\n\t  var result = gatherSequenceExpressions(nodes, scope, declars);\n\t  if (!result) return;\n\n\t  for (var _iterator3 = declars, _isArray3 = Array.isArray(_iterator3), _i3 = 0, _iterator3 = _isArray3 ? _iterator3 : (0, _getIterator3.default)(_iterator3);;) {\n\t    var _ref3;\n\n\t    if (_isArray3) {\n\t      if (_i3 >= _iterator3.length) break;\n\t      _ref3 = _iterator3[_i3++];\n\t    } else {\n\t      _i3 = _iterator3.next();\n\t      if (_i3.done) break;\n\t      _ref3 = _i3.value;\n\t    }\n\n\t    var declar = _ref3;\n\n\t    scope.push(declar);\n\t  }\n\n\t  return result;\n\t}\n\n\tfunction toKeyAlias(node) {\n\t  var key = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : node.key;\n\n\t  var alias = void 0;\n\n\t  if (node.kind === \"method\") {\n\t    return toKeyAlias.increment() + \"\";\n\t  } else if (t.isIdentifier(key)) {\n\t    alias = key.name;\n\t  } else if (t.isStringLiteral(key)) {\n\t    alias = (0, _stringify2.default)(key.value);\n\t  } else {\n\t    alias = (0, _stringify2.default)(t.removePropertiesDeep(t.cloneDeep(key)));\n\t  }\n\n\t  if (node.computed) {\n\t    alias = \"[\" + alias + \"]\";\n\t  }\n\n\t  if (node.static) {\n\t    alias = \"static:\" + alias;\n\t  }\n\n\t  return alias;\n\t}\n\n\ttoKeyAlias.uid = 0;\n\n\ttoKeyAlias.increment = function () {\n\t  if (toKeyAlias.uid >= _maxSafeInteger2.default) {\n\t    return toKeyAlias.uid = 0;\n\t  } else {\n\t    return toKeyAlias.uid++;\n\t  }\n\t};\n\n\tfunction toIdentifier(name) {\n\t  name = name + \"\";\n\n\t  name = name.replace(/[^a-zA-Z0-9$_]/g, \"-\");\n\n\t  name = name.replace(/^[-0-9]+/, \"\");\n\n\t  name = name.replace(/[-\\s]+(.)?/g, function (match, c) {\n\t    return c ? c.toUpperCase() : \"\";\n\t  });\n\n\t  if (!t.isValidIdentifier(name)) {\n\t    name = \"_\" + name;\n\t  }\n\n\t  return name || \"_\";\n\t}\n\n\tfunction toBindingIdentifierName(name) {\n\t  name = toIdentifier(name);\n\t  if (name === \"eval\" || name === \"arguments\") name = \"_\" + name;\n\t  return name;\n\t}\n\n\tfunction toStatement(node, ignore) {\n\t  if (t.isStatement(node)) {\n\t    return node;\n\t  }\n\n\t  var mustHaveId = false;\n\t  var newType = void 0;\n\n\t  if (t.isClass(node)) {\n\t    mustHaveId = true;\n\t    newType = \"ClassDeclaration\";\n\t  } else if (t.isFunction(node)) {\n\t    mustHaveId = true;\n\t    newType = \"FunctionDeclaration\";\n\t  } else if (t.isAssignmentExpression(node)) {\n\t    return t.expressionStatement(node);\n\t  }\n\n\t  if (mustHaveId && !node.id) {\n\t    newType = false;\n\t  }\n\n\t  if (!newType) {\n\t    if (ignore) {\n\t      return false;\n\t    } else {\n\t      throw new Error(\"cannot turn \" + node.type + \" to a statement\");\n\t    }\n\t  }\n\n\t  node.type = newType;\n\n\t  return node;\n\t}\n\n\tfunction toExpression(node) {\n\t  if (t.isExpressionStatement(node)) {\n\t    node = node.expression;\n\t  }\n\n\t  if (t.isExpression(node)) {\n\t    return node;\n\t  }\n\n\t  if (t.isClass(node)) {\n\t    node.type = \"ClassExpression\";\n\t  } else if (t.isFunction(node)) {\n\t    node.type = \"FunctionExpression\";\n\t  }\n\n\t  if (!t.isExpression(node)) {\n\t    throw new Error(\"cannot turn \" + node.type + \" to an expression\");\n\t  }\n\n\t  return node;\n\t}\n\n\tfunction toBlock(node, parent) {\n\t  if (t.isBlockStatement(node)) {\n\t    return node;\n\t  }\n\n\t  if (t.isEmptyStatement(node)) {\n\t    node = [];\n\t  }\n\n\t  if (!Array.isArray(node)) {\n\t    if (!t.isStatement(node)) {\n\t      if (t.isFunction(parent)) {\n\t        node = t.returnStatement(node);\n\t      } else {\n\t        node = t.expressionStatement(node);\n\t      }\n\t    }\n\n\t    node = [node];\n\t  }\n\n\t  return t.blockStatement(node);\n\t}\n\n\tfunction valueToNode(value) {\n\t  if (value === undefined) {\n\t    return t.identifier(\"undefined\");\n\t  }\n\n\t  if (value === true || value === false) {\n\t    return t.booleanLiteral(value);\n\t  }\n\n\t  if (value === null) {\n\t    return t.nullLiteral();\n\t  }\n\n\t  if (typeof value === \"string\") {\n\t    return t.stringLiteral(value);\n\t  }\n\n\t  if (typeof value === \"number\") {\n\t    return t.numericLiteral(value);\n\t  }\n\n\t  if ((0, _isRegExp2.default)(value)) {\n\t    var pattern = value.source;\n\t    var flags = value.toString().match(/\\/([a-z]+|)$/)[1];\n\t    return t.regExpLiteral(pattern, flags);\n\t  }\n\n\t  if (Array.isArray(value)) {\n\t    return t.arrayExpression(value.map(t.valueToNode));\n\t  }\n\n\t  if ((0, _isPlainObject2.default)(value)) {\n\t    var props = [];\n\t    for (var key in value) {\n\t      var nodeKey = void 0;\n\t      if (t.isValidIdentifier(key)) {\n\t        nodeKey = t.identifier(key);\n\t      } else {\n\t        nodeKey = t.stringLiteral(key);\n\t      }\n\t      props.push(t.objectProperty(nodeKey, t.valueToNode(value[key])));\n\t    }\n\t    return t.objectExpression(props);\n\t  }\n\n\t  throw new Error(\"don't know how to turn this value into a node\");\n\t}\n\n/***/ }),\n/* 386 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tvar _constants = __webpack_require__(135);\n\n\tvar _index2 = __webpack_require__(26);\n\n\tvar _index3 = _interopRequireDefault(_index2);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\t(0, _index3.default)(\"ArrayExpression\", {\n\t  fields: {\n\t    elements: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeOrValueType)(\"null\", \"Expression\", \"SpreadElement\"))),\n\t      default: []\n\t    }\n\t  },\n\t  visitor: [\"elements\"],\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"AssignmentExpression\", {\n\t  fields: {\n\t    operator: {\n\t      validate: (0, _index2.assertValueType)(\"string\")\n\t    },\n\t    left: {\n\t      validate: (0, _index2.assertNodeType)(\"LVal\")\n\t    },\n\t    right: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  },\n\t  builder: [\"operator\", \"left\", \"right\"],\n\t  visitor: [\"left\", \"right\"],\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"BinaryExpression\", {\n\t  builder: [\"operator\", \"left\", \"right\"],\n\t  fields: {\n\t    operator: {\n\t      validate: _index2.assertOneOf.apply(undefined, _constants.BINARY_OPERATORS)\n\t    },\n\t    left: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    right: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  },\n\t  visitor: [\"left\", \"right\"],\n\t  aliases: [\"Binary\", \"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"Directive\", {\n\t  visitor: [\"value\"],\n\t  fields: {\n\t    value: {\n\t      validate: (0, _index2.assertNodeType)(\"DirectiveLiteral\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"DirectiveLiteral\", {\n\t  builder: [\"value\"],\n\t  fields: {\n\t    value: {\n\t      validate: (0, _index2.assertValueType)(\"string\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"BlockStatement\", {\n\t  builder: [\"body\", \"directives\"],\n\t  visitor: [\"directives\", \"body\"],\n\t  fields: {\n\t    directives: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Directive\"))),\n\t      default: []\n\t    },\n\t    body: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Statement\")))\n\t    }\n\t  },\n\t  aliases: [\"Scopable\", \"BlockParent\", \"Block\", \"Statement\"]\n\t});\n\n\t(0, _index3.default)(\"BreakStatement\", {\n\t  visitor: [\"label\"],\n\t  fields: {\n\t    label: {\n\t      validate: (0, _index2.assertNodeType)(\"Identifier\"),\n\t      optional: true\n\t    }\n\t  },\n\t  aliases: [\"Statement\", \"Terminatorless\", \"CompletionStatement\"]\n\t});\n\n\t(0, _index3.default)(\"CallExpression\", {\n\t  visitor: [\"callee\", \"arguments\"],\n\t  fields: {\n\t    callee: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    arguments: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Expression\", \"SpreadElement\")))\n\t    }\n\t  },\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"CatchClause\", {\n\t  visitor: [\"param\", \"body\"],\n\t  fields: {\n\t    param: {\n\t      validate: (0, _index2.assertNodeType)(\"Identifier\")\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    }\n\t  },\n\t  aliases: [\"Scopable\"]\n\t});\n\n\t(0, _index3.default)(\"ConditionalExpression\", {\n\t  visitor: [\"test\", \"consequent\", \"alternate\"],\n\t  fields: {\n\t    test: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    consequent: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    alternate: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  },\n\t  aliases: [\"Expression\", \"Conditional\"]\n\t});\n\n\t(0, _index3.default)(\"ContinueStatement\", {\n\t  visitor: [\"label\"],\n\t  fields: {\n\t    label: {\n\t      validate: (0, _index2.assertNodeType)(\"Identifier\"),\n\t      optional: true\n\t    }\n\t  },\n\t  aliases: [\"Statement\", \"Terminatorless\", \"CompletionStatement\"]\n\t});\n\n\t(0, _index3.default)(\"DebuggerStatement\", {\n\t  aliases: [\"Statement\"]\n\t});\n\n\t(0, _index3.default)(\"DoWhileStatement\", {\n\t  visitor: [\"test\", \"body\"],\n\t  fields: {\n\t    test: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"Statement\")\n\t    }\n\t  },\n\t  aliases: [\"Statement\", \"BlockParent\", \"Loop\", \"While\", \"Scopable\"]\n\t});\n\n\t(0, _index3.default)(\"EmptyStatement\", {\n\t  aliases: [\"Statement\"]\n\t});\n\n\t(0, _index3.default)(\"ExpressionStatement\", {\n\t  visitor: [\"expression\"],\n\t  fields: {\n\t    expression: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  },\n\t  aliases: [\"Statement\", \"ExpressionWrapper\"]\n\t});\n\n\t(0, _index3.default)(\"File\", {\n\t  builder: [\"program\", \"comments\", \"tokens\"],\n\t  visitor: [\"program\"],\n\t  fields: {\n\t    program: {\n\t      validate: (0, _index2.assertNodeType)(\"Program\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"ForInStatement\", {\n\t  visitor: [\"left\", \"right\", \"body\"],\n\t  aliases: [\"Scopable\", \"Statement\", \"For\", \"BlockParent\", \"Loop\", \"ForXStatement\"],\n\t  fields: {\n\t    left: {\n\t      validate: (0, _index2.assertNodeType)(\"VariableDeclaration\", \"LVal\")\n\t    },\n\t    right: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"ForStatement\", {\n\t  visitor: [\"init\", \"test\", \"update\", \"body\"],\n\t  aliases: [\"Scopable\", \"Statement\", \"For\", \"BlockParent\", \"Loop\"],\n\t  fields: {\n\t    init: {\n\t      validate: (0, _index2.assertNodeType)(\"VariableDeclaration\", \"Expression\"),\n\t      optional: true\n\t    },\n\t    test: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\"),\n\t      optional: true\n\t    },\n\t    update: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\"),\n\t      optional: true\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"FunctionDeclaration\", {\n\t  builder: [\"id\", \"params\", \"body\", \"generator\", \"async\"],\n\t  visitor: [\"id\", \"params\", \"body\", \"returnType\", \"typeParameters\"],\n\t  fields: {\n\t    id: {\n\t      validate: (0, _index2.assertNodeType)(\"Identifier\")\n\t    },\n\t    params: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"LVal\")))\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    },\n\t    generator: {\n\t      default: false,\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    },\n\t    async: {\n\t      default: false,\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    }\n\t  },\n\t  aliases: [\"Scopable\", \"Function\", \"BlockParent\", \"FunctionParent\", \"Statement\", \"Pureish\", \"Declaration\"]\n\t});\n\n\t(0, _index3.default)(\"FunctionExpression\", {\n\t  inherits: \"FunctionDeclaration\",\n\t  aliases: [\"Scopable\", \"Function\", \"BlockParent\", \"FunctionParent\", \"Expression\", \"Pureish\"],\n\t  fields: {\n\t    id: {\n\t      validate: (0, _index2.assertNodeType)(\"Identifier\"),\n\t      optional: true\n\t    },\n\t    params: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"LVal\")))\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    },\n\t    generator: {\n\t      default: false,\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    },\n\t    async: {\n\t      default: false,\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"Identifier\", {\n\t  builder: [\"name\"],\n\t  visitor: [\"typeAnnotation\"],\n\t  aliases: [\"Expression\", \"LVal\"],\n\t  fields: {\n\t    name: {\n\t      validate: function validate(node, key, val) {\n\t        if (!t.isValidIdentifier(val)) {}\n\t      }\n\t    },\n\t    decorators: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"IfStatement\", {\n\t  visitor: [\"test\", \"consequent\", \"alternate\"],\n\t  aliases: [\"Statement\", \"Conditional\"],\n\t  fields: {\n\t    test: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    consequent: {\n\t      validate: (0, _index2.assertNodeType)(\"Statement\")\n\t    },\n\t    alternate: {\n\t      optional: true,\n\t      validate: (0, _index2.assertNodeType)(\"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"LabeledStatement\", {\n\t  visitor: [\"label\", \"body\"],\n\t  aliases: [\"Statement\"],\n\t  fields: {\n\t    label: {\n\t      validate: (0, _index2.assertNodeType)(\"Identifier\")\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"StringLiteral\", {\n\t  builder: [\"value\"],\n\t  fields: {\n\t    value: {\n\t      validate: (0, _index2.assertValueType)(\"string\")\n\t    }\n\t  },\n\t  aliases: [\"Expression\", \"Pureish\", \"Literal\", \"Immutable\"]\n\t});\n\n\t(0, _index3.default)(\"NumericLiteral\", {\n\t  builder: [\"value\"],\n\t  deprecatedAlias: \"NumberLiteral\",\n\t  fields: {\n\t    value: {\n\t      validate: (0, _index2.assertValueType)(\"number\")\n\t    }\n\t  },\n\t  aliases: [\"Expression\", \"Pureish\", \"Literal\", \"Immutable\"]\n\t});\n\n\t(0, _index3.default)(\"NullLiteral\", {\n\t  aliases: [\"Expression\", \"Pureish\", \"Literal\", \"Immutable\"]\n\t});\n\n\t(0, _index3.default)(\"BooleanLiteral\", {\n\t  builder: [\"value\"],\n\t  fields: {\n\t    value: {\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    }\n\t  },\n\t  aliases: [\"Expression\", \"Pureish\", \"Literal\", \"Immutable\"]\n\t});\n\n\t(0, _index3.default)(\"RegExpLiteral\", {\n\t  builder: [\"pattern\", \"flags\"],\n\t  deprecatedAlias: \"RegexLiteral\",\n\t  aliases: [\"Expression\", \"Literal\"],\n\t  fields: {\n\t    pattern: {\n\t      validate: (0, _index2.assertValueType)(\"string\")\n\t    },\n\t    flags: {\n\t      validate: (0, _index2.assertValueType)(\"string\"),\n\t      default: \"\"\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"LogicalExpression\", {\n\t  builder: [\"operator\", \"left\", \"right\"],\n\t  visitor: [\"left\", \"right\"],\n\t  aliases: [\"Binary\", \"Expression\"],\n\t  fields: {\n\t    operator: {\n\t      validate: _index2.assertOneOf.apply(undefined, _constants.LOGICAL_OPERATORS)\n\t    },\n\t    left: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    right: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"MemberExpression\", {\n\t  builder: [\"object\", \"property\", \"computed\"],\n\t  visitor: [\"object\", \"property\"],\n\t  aliases: [\"Expression\", \"LVal\"],\n\t  fields: {\n\t    object: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    property: {\n\t      validate: function validate(node, key, val) {\n\t        var expectedType = node.computed ? \"Expression\" : \"Identifier\";\n\t        (0, _index2.assertNodeType)(expectedType)(node, key, val);\n\t      }\n\t    },\n\t    computed: {\n\t      default: false\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"NewExpression\", {\n\t  visitor: [\"callee\", \"arguments\"],\n\t  aliases: [\"Expression\"],\n\t  fields: {\n\t    callee: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    arguments: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Expression\", \"SpreadElement\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"Program\", {\n\t  visitor: [\"directives\", \"body\"],\n\t  builder: [\"body\", \"directives\"],\n\t  fields: {\n\t    directives: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Directive\"))),\n\t      default: []\n\t    },\n\t    body: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Statement\")))\n\t    }\n\t  },\n\t  aliases: [\"Scopable\", \"BlockParent\", \"Block\", \"FunctionParent\"]\n\t});\n\n\t(0, _index3.default)(\"ObjectExpression\", {\n\t  visitor: [\"properties\"],\n\t  aliases: [\"Expression\"],\n\t  fields: {\n\t    properties: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"ObjectMethod\", \"ObjectProperty\", \"SpreadProperty\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"ObjectMethod\", {\n\t  builder: [\"kind\", \"key\", \"params\", \"body\", \"computed\"],\n\t  fields: {\n\t    kind: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"string\"), (0, _index2.assertOneOf)(\"method\", \"get\", \"set\")),\n\t      default: \"method\"\n\t    },\n\t    computed: {\n\t      validate: (0, _index2.assertValueType)(\"boolean\"),\n\t      default: false\n\t    },\n\t    key: {\n\t      validate: function validate(node, key, val) {\n\t        var expectedTypes = node.computed ? [\"Expression\"] : [\"Identifier\", \"StringLiteral\", \"NumericLiteral\"];\n\t        _index2.assertNodeType.apply(undefined, expectedTypes)(node, key, val);\n\t      }\n\t    },\n\t    decorators: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Decorator\")))\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    },\n\t    generator: {\n\t      default: false,\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    },\n\t    async: {\n\t      default: false,\n\t      validate: (0, _index2.assertValueType)(\"boolean\")\n\t    }\n\t  },\n\t  visitor: [\"key\", \"params\", \"body\", \"decorators\", \"returnType\", \"typeParameters\"],\n\t  aliases: [\"UserWhitespacable\", \"Function\", \"Scopable\", \"BlockParent\", \"FunctionParent\", \"Method\", \"ObjectMember\"]\n\t});\n\n\t(0, _index3.default)(\"ObjectProperty\", {\n\t  builder: [\"key\", \"value\", \"computed\", \"shorthand\", \"decorators\"],\n\t  fields: {\n\t    computed: {\n\t      validate: (0, _index2.assertValueType)(\"boolean\"),\n\t      default: false\n\t    },\n\t    key: {\n\t      validate: function validate(node, key, val) {\n\t        var expectedTypes = node.computed ? [\"Expression\"] : [\"Identifier\", \"StringLiteral\", \"NumericLiteral\"];\n\t        _index2.assertNodeType.apply(undefined, expectedTypes)(node, key, val);\n\t      }\n\t    },\n\t    value: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\", \"Pattern\", \"RestElement\")\n\t    },\n\t    shorthand: {\n\t      validate: (0, _index2.assertValueType)(\"boolean\"),\n\t      default: false\n\t    },\n\t    decorators: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Decorator\"))),\n\t      optional: true\n\t    }\n\t  },\n\t  visitor: [\"key\", \"value\", \"decorators\"],\n\t  aliases: [\"UserWhitespacable\", \"Property\", \"ObjectMember\"]\n\t});\n\n\t(0, _index3.default)(\"RestElement\", {\n\t  visitor: [\"argument\", \"typeAnnotation\"],\n\t  aliases: [\"LVal\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index2.assertNodeType)(\"LVal\")\n\t    },\n\t    decorators: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"ReturnStatement\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Statement\", \"Terminatorless\", \"CompletionStatement\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\"),\n\t      optional: true\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"SequenceExpression\", {\n\t  visitor: [\"expressions\"],\n\t  fields: {\n\t    expressions: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Expression\")))\n\t    }\n\t  },\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"SwitchCase\", {\n\t  visitor: [\"test\", \"consequent\"],\n\t  fields: {\n\t    test: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\"),\n\t      optional: true\n\t    },\n\t    consequent: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"Statement\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"SwitchStatement\", {\n\t  visitor: [\"discriminant\", \"cases\"],\n\t  aliases: [\"Statement\", \"BlockParent\", \"Scopable\"],\n\t  fields: {\n\t    discriminant: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    cases: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"SwitchCase\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"ThisExpression\", {\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"ThrowStatement\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Statement\", \"Terminatorless\", \"CompletionStatement\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"TryStatement\", {\n\t  visitor: [\"block\", \"handler\", \"finalizer\"],\n\t  aliases: [\"Statement\"],\n\t  fields: {\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    },\n\t    handler: {\n\t      optional: true,\n\t      handler: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    },\n\t    finalizer: {\n\t      optional: true,\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"UnaryExpression\", {\n\t  builder: [\"operator\", \"argument\", \"prefix\"],\n\t  fields: {\n\t    prefix: {\n\t      default: true\n\t    },\n\t    argument: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    operator: {\n\t      validate: _index2.assertOneOf.apply(undefined, _constants.UNARY_OPERATORS)\n\t    }\n\t  },\n\t  visitor: [\"argument\"],\n\t  aliases: [\"UnaryLike\", \"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"UpdateExpression\", {\n\t  builder: [\"operator\", \"argument\", \"prefix\"],\n\t  fields: {\n\t    prefix: {\n\t      default: false\n\t    },\n\t    argument: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    operator: {\n\t      validate: _index2.assertOneOf.apply(undefined, _constants.UPDATE_OPERATORS)\n\t    }\n\t  },\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index3.default)(\"VariableDeclaration\", {\n\t  builder: [\"kind\", \"declarations\"],\n\t  visitor: [\"declarations\"],\n\t  aliases: [\"Statement\", \"Declaration\"],\n\t  fields: {\n\t    kind: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"string\"), (0, _index2.assertOneOf)(\"var\", \"let\", \"const\"))\n\t    },\n\t    declarations: {\n\t      validate: (0, _index2.chain)((0, _index2.assertValueType)(\"array\"), (0, _index2.assertEach)((0, _index2.assertNodeType)(\"VariableDeclarator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"VariableDeclarator\", {\n\t  visitor: [\"id\", \"init\"],\n\t  fields: {\n\t    id: {\n\t      validate: (0, _index2.assertNodeType)(\"LVal\")\n\t    },\n\t    init: {\n\t      optional: true,\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"WhileStatement\", {\n\t  visitor: [\"test\", \"body\"],\n\t  aliases: [\"Statement\", \"BlockParent\", \"Loop\", \"While\", \"Scopable\"],\n\t  fields: {\n\t    test: {\n\t      validate: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\", \"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index3.default)(\"WithStatement\", {\n\t  visitor: [\"object\", \"body\"],\n\t  aliases: [\"Statement\"],\n\t  fields: {\n\t    object: {\n\t      object: (0, _index2.assertNodeType)(\"Expression\")\n\t    },\n\t    body: {\n\t      validate: (0, _index2.assertNodeType)(\"BlockStatement\", \"Statement\")\n\t    }\n\t  }\n\t});\n\n/***/ }),\n/* 387 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _index = __webpack_require__(26);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\t(0, _index2.default)(\"AssignmentPattern\", {\n\t  visitor: [\"left\", \"right\"],\n\t  aliases: [\"Pattern\", \"LVal\"],\n\t  fields: {\n\t    left: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    },\n\t    right: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    },\n\t    decorators: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ArrayPattern\", {\n\t  visitor: [\"elements\", \"typeAnnotation\"],\n\t  aliases: [\"Pattern\", \"LVal\"],\n\t  fields: {\n\t    elements: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Identifier\", \"Pattern\", \"RestElement\")))\n\t    },\n\t    decorators: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ArrowFunctionExpression\", {\n\t  builder: [\"params\", \"body\", \"async\"],\n\t  visitor: [\"params\", \"body\", \"returnType\", \"typeParameters\"],\n\t  aliases: [\"Scopable\", \"Function\", \"BlockParent\", \"FunctionParent\", \"Expression\", \"Pureish\"],\n\t  fields: {\n\t    params: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"LVal\")))\n\t    },\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"BlockStatement\", \"Expression\")\n\t    },\n\t    async: {\n\t      validate: (0, _index.assertValueType)(\"boolean\"),\n\t      default: false\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ClassBody\", {\n\t  visitor: [\"body\"],\n\t  fields: {\n\t    body: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"ClassMethod\", \"ClassProperty\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ClassDeclaration\", {\n\t  builder: [\"id\", \"superClass\", \"body\", \"decorators\"],\n\t  visitor: [\"id\", \"body\", \"superClass\", \"mixins\", \"typeParameters\", \"superTypeParameters\", \"implements\", \"decorators\"],\n\t  aliases: [\"Scopable\", \"Class\", \"Statement\", \"Declaration\", \"Pureish\"],\n\t  fields: {\n\t    id: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    },\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"ClassBody\")\n\t    },\n\t    superClass: {\n\t      optional: true,\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    },\n\t    decorators: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ClassExpression\", {\n\t  inherits: \"ClassDeclaration\",\n\t  aliases: [\"Scopable\", \"Class\", \"Expression\", \"Pureish\"],\n\t  fields: {\n\t    id: {\n\t      optional: true,\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    },\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"ClassBody\")\n\t    },\n\t    superClass: {\n\t      optional: true,\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    },\n\t    decorators: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ExportAllDeclaration\", {\n\t  visitor: [\"source\"],\n\t  aliases: [\"Statement\", \"Declaration\", \"ModuleDeclaration\", \"ExportDeclaration\"],\n\t  fields: {\n\t    source: {\n\t      validate: (0, _index.assertNodeType)(\"StringLiteral\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ExportDefaultDeclaration\", {\n\t  visitor: [\"declaration\"],\n\t  aliases: [\"Statement\", \"Declaration\", \"ModuleDeclaration\", \"ExportDeclaration\"],\n\t  fields: {\n\t    declaration: {\n\t      validate: (0, _index.assertNodeType)(\"FunctionDeclaration\", \"ClassDeclaration\", \"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ExportNamedDeclaration\", {\n\t  visitor: [\"declaration\", \"specifiers\", \"source\"],\n\t  aliases: [\"Statement\", \"Declaration\", \"ModuleDeclaration\", \"ExportDeclaration\"],\n\t  fields: {\n\t    declaration: {\n\t      validate: (0, _index.assertNodeType)(\"Declaration\"),\n\t      optional: true\n\t    },\n\t    specifiers: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"ExportSpecifier\")))\n\t    },\n\t    source: {\n\t      validate: (0, _index.assertNodeType)(\"StringLiteral\"),\n\t      optional: true\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ExportSpecifier\", {\n\t  visitor: [\"local\", \"exported\"],\n\t  aliases: [\"ModuleSpecifier\"],\n\t  fields: {\n\t    local: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    },\n\t    exported: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ForOfStatement\", {\n\t  visitor: [\"left\", \"right\", \"body\"],\n\t  aliases: [\"Scopable\", \"Statement\", \"For\", \"BlockParent\", \"Loop\", \"ForXStatement\"],\n\t  fields: {\n\t    left: {\n\t      validate: (0, _index.assertNodeType)(\"VariableDeclaration\", \"LVal\")\n\t    },\n\t    right: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    },\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ImportDeclaration\", {\n\t  visitor: [\"specifiers\", \"source\"],\n\t  aliases: [\"Statement\", \"Declaration\", \"ModuleDeclaration\"],\n\t  fields: {\n\t    specifiers: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"ImportSpecifier\", \"ImportDefaultSpecifier\", \"ImportNamespaceSpecifier\")))\n\t    },\n\t    source: {\n\t      validate: (0, _index.assertNodeType)(\"StringLiteral\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ImportDefaultSpecifier\", {\n\t  visitor: [\"local\"],\n\t  aliases: [\"ModuleSpecifier\"],\n\t  fields: {\n\t    local: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ImportNamespaceSpecifier\", {\n\t  visitor: [\"local\"],\n\t  aliases: [\"ModuleSpecifier\"],\n\t  fields: {\n\t    local: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ImportSpecifier\", {\n\t  visitor: [\"local\", \"imported\"],\n\t  aliases: [\"ModuleSpecifier\"],\n\t  fields: {\n\t    local: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    },\n\t    imported: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    },\n\t    importKind: {\n\t      validate: (0, _index.assertOneOf)(null, \"type\", \"typeof\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"MetaProperty\", {\n\t  visitor: [\"meta\", \"property\"],\n\t  aliases: [\"Expression\"],\n\t  fields: {\n\t    meta: {\n\t      validate: (0, _index.assertValueType)(\"string\")\n\t    },\n\t    property: {\n\t      validate: (0, _index.assertValueType)(\"string\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ClassMethod\", {\n\t  aliases: [\"Function\", \"Scopable\", \"BlockParent\", \"FunctionParent\", \"Method\"],\n\t  builder: [\"kind\", \"key\", \"params\", \"body\", \"computed\", \"static\"],\n\t  visitor: [\"key\", \"params\", \"body\", \"decorators\", \"returnType\", \"typeParameters\"],\n\t  fields: {\n\t    kind: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"string\"), (0, _index.assertOneOf)(\"get\", \"set\", \"method\", \"constructor\")),\n\t      default: \"method\"\n\t    },\n\t    computed: {\n\t      default: false,\n\t      validate: (0, _index.assertValueType)(\"boolean\")\n\t    },\n\t    static: {\n\t      default: false,\n\t      validate: (0, _index.assertValueType)(\"boolean\")\n\t    },\n\t    key: {\n\t      validate: function validate(node, key, val) {\n\t        var expectedTypes = node.computed ? [\"Expression\"] : [\"Identifier\", \"StringLiteral\", \"NumericLiteral\"];\n\t        _index.assertNodeType.apply(undefined, expectedTypes)(node, key, val);\n\t      }\n\t    },\n\t    params: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"LVal\")))\n\t    },\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"BlockStatement\")\n\t    },\n\t    generator: {\n\t      default: false,\n\t      validate: (0, _index.assertValueType)(\"boolean\")\n\t    },\n\t    async: {\n\t      default: false,\n\t      validate: (0, _index.assertValueType)(\"boolean\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ObjectPattern\", {\n\t  visitor: [\"properties\", \"typeAnnotation\"],\n\t  aliases: [\"Pattern\", \"LVal\"],\n\t  fields: {\n\t    properties: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"RestProperty\", \"Property\")))\n\t    },\n\t    decorators: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Decorator\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"SpreadElement\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"UnaryLike\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"Super\", {\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index2.default)(\"TaggedTemplateExpression\", {\n\t  visitor: [\"tag\", \"quasi\"],\n\t  aliases: [\"Expression\"],\n\t  fields: {\n\t    tag: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    },\n\t    quasi: {\n\t      validate: (0, _index.assertNodeType)(\"TemplateLiteral\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"TemplateElement\", {\n\t  builder: [\"value\", \"tail\"],\n\t  fields: {\n\t    value: {},\n\t    tail: {\n\t      validate: (0, _index.assertValueType)(\"boolean\"),\n\t      default: false\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"TemplateLiteral\", {\n\t  visitor: [\"quasis\", \"expressions\"],\n\t  aliases: [\"Expression\", \"Literal\"],\n\t  fields: {\n\t    quasis: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"TemplateElement\")))\n\t    },\n\t    expressions: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"Expression\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"YieldExpression\", {\n\t  builder: [\"argument\", \"delegate\"],\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Expression\", \"Terminatorless\"],\n\t  fields: {\n\t    delegate: {\n\t      validate: (0, _index.assertValueType)(\"boolean\"),\n\t      default: false\n\t    },\n\t    argument: {\n\t      optional: true,\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n/***/ }),\n/* 388 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _index = __webpack_require__(26);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\t(0, _index2.default)(\"AwaitExpression\", {\n\t  builder: [\"argument\"],\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Expression\", \"Terminatorless\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ForAwaitStatement\", {\n\t  visitor: [\"left\", \"right\", \"body\"],\n\t  aliases: [\"Scopable\", \"Statement\", \"For\", \"BlockParent\", \"Loop\", \"ForXStatement\"],\n\t  fields: {\n\t    left: {\n\t      validate: (0, _index.assertNodeType)(\"VariableDeclaration\", \"LVal\")\n\t    },\n\t    right: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    },\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"Statement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"BindExpression\", {\n\t  visitor: [\"object\", \"callee\"],\n\t  aliases: [\"Expression\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"Import\", {\n\t  aliases: [\"Expression\"]\n\t});\n\n\t(0, _index2.default)(\"Decorator\", {\n\t  visitor: [\"expression\"],\n\t  fields: {\n\t    expression: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"DoExpression\", {\n\t  visitor: [\"body\"],\n\t  aliases: [\"Expression\"],\n\t  fields: {\n\t    body: {\n\t      validate: (0, _index.assertNodeType)(\"BlockStatement\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ExportDefaultSpecifier\", {\n\t  visitor: [\"exported\"],\n\t  aliases: [\"ModuleSpecifier\"],\n\t  fields: {\n\t    exported: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"ExportNamespaceSpecifier\", {\n\t  visitor: [\"exported\"],\n\t  aliases: [\"ModuleSpecifier\"],\n\t  fields: {\n\t    exported: {\n\t      validate: (0, _index.assertNodeType)(\"Identifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"RestProperty\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"UnaryLike\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index.assertNodeType)(\"LVal\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"SpreadProperty\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"UnaryLike\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n/***/ }),\n/* 389 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _index = __webpack_require__(26);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\t(0, _index2.default)(\"AnyTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ArrayTypeAnnotation\", {\n\t  visitor: [\"elementType\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"BooleanTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"BooleanLiteralTypeAnnotation\", {\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"NullLiteralTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ClassImplements\", {\n\t  visitor: [\"id\", \"typeParameters\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ClassProperty\", {\n\t  visitor: [\"key\", \"value\", \"typeAnnotation\", \"decorators\"],\n\t  builder: [\"key\", \"value\", \"typeAnnotation\", \"decorators\", \"computed\"],\n\t  aliases: [\"Property\"],\n\t  fields: {\n\t    computed: {\n\t      validate: (0, _index.assertValueType)(\"boolean\"),\n\t      default: false\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"DeclareClass\", {\n\t  visitor: [\"id\", \"typeParameters\", \"extends\", \"body\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareFunction\", {\n\t  visitor: [\"id\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareInterface\", {\n\t  visitor: [\"id\", \"typeParameters\", \"extends\", \"body\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareModule\", {\n\t  visitor: [\"id\", \"body\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareModuleExports\", {\n\t  visitor: [\"typeAnnotation\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareTypeAlias\", {\n\t  visitor: [\"id\", \"typeParameters\", \"right\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareOpaqueType\", {\n\t  visitor: [\"id\", \"typeParameters\", \"supertype\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareVariable\", {\n\t  visitor: [\"id\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"DeclareExportDeclaration\", {\n\t  visitor: [\"declaration\", \"specifiers\", \"source\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ExistentialTypeParam\", {\n\t  aliases: [\"Flow\"]\n\t});\n\n\t(0, _index2.default)(\"FunctionTypeAnnotation\", {\n\t  visitor: [\"typeParameters\", \"params\", \"rest\", \"returnType\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"FunctionTypeParam\", {\n\t  visitor: [\"name\", \"typeAnnotation\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"GenericTypeAnnotation\", {\n\t  visitor: [\"id\", \"typeParameters\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"InterfaceExtends\", {\n\t  visitor: [\"id\", \"typeParameters\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"InterfaceDeclaration\", {\n\t  visitor: [\"id\", \"typeParameters\", \"extends\", \"body\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"IntersectionTypeAnnotation\", {\n\t  visitor: [\"types\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"MixedTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"]\n\t});\n\n\t(0, _index2.default)(\"EmptyTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"]\n\t});\n\n\t(0, _index2.default)(\"NullableTypeAnnotation\", {\n\t  visitor: [\"typeAnnotation\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"NumericLiteralTypeAnnotation\", {\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"NumberTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"StringLiteralTypeAnnotation\", {\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"StringTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ThisTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TupleTypeAnnotation\", {\n\t  visitor: [\"types\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeofTypeAnnotation\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeAlias\", {\n\t  visitor: [\"id\", \"typeParameters\", \"right\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"OpaqueType\", {\n\t  visitor: [\"id\", \"typeParameters\", \"impltype\", \"supertype\"],\n\t  aliases: [\"Flow\", \"FlowDeclaration\", \"Statement\", \"Declaration\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeAnnotation\", {\n\t  visitor: [\"typeAnnotation\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeCastExpression\", {\n\t  visitor: [\"expression\", \"typeAnnotation\"],\n\t  aliases: [\"Flow\", \"ExpressionWrapper\", \"Expression\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeParameter\", {\n\t  visitor: [\"bound\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeParameterDeclaration\", {\n\t  visitor: [\"params\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"TypeParameterInstantiation\", {\n\t  visitor: [\"params\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ObjectTypeAnnotation\", {\n\t  visitor: [\"properties\", \"indexers\", \"callProperties\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ObjectTypeCallProperty\", {\n\t  visitor: [\"value\"],\n\t  aliases: [\"Flow\", \"UserWhitespacable\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ObjectTypeIndexer\", {\n\t  visitor: [\"id\", \"key\", \"value\"],\n\t  aliases: [\"Flow\", \"UserWhitespacable\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ObjectTypeProperty\", {\n\t  visitor: [\"key\", \"value\"],\n\t  aliases: [\"Flow\", \"UserWhitespacable\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"ObjectTypeSpreadProperty\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"Flow\", \"UserWhitespacable\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"QualifiedTypeIdentifier\", {\n\t  visitor: [\"id\", \"qualification\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"UnionTypeAnnotation\", {\n\t  visitor: [\"types\"],\n\t  aliases: [\"Flow\"],\n\t  fields: {}\n\t});\n\n\t(0, _index2.default)(\"VoidTypeAnnotation\", {\n\t  aliases: [\"Flow\", \"FlowBaseAnnotation\"],\n\t  fields: {}\n\t});\n\n/***/ }),\n/* 390 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\t__webpack_require__(26);\n\n\t__webpack_require__(386);\n\n\t__webpack_require__(387);\n\n\t__webpack_require__(389);\n\n\t__webpack_require__(391);\n\n\t__webpack_require__(392);\n\n\t__webpack_require__(388);\n\n/***/ }),\n/* 391 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _index = __webpack_require__(26);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\t(0, _index2.default)(\"JSXAttribute\", {\n\t  visitor: [\"name\", \"value\"],\n\t  aliases: [\"JSX\", \"Immutable\"],\n\t  fields: {\n\t    name: {\n\t      validate: (0, _index.assertNodeType)(\"JSXIdentifier\", \"JSXNamespacedName\")\n\t    },\n\t    value: {\n\t      optional: true,\n\t      validate: (0, _index.assertNodeType)(\"JSXElement\", \"StringLiteral\", \"JSXExpressionContainer\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXClosingElement\", {\n\t  visitor: [\"name\"],\n\t  aliases: [\"JSX\", \"Immutable\"],\n\t  fields: {\n\t    name: {\n\t      validate: (0, _index.assertNodeType)(\"JSXIdentifier\", \"JSXMemberExpression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXElement\", {\n\t  builder: [\"openingElement\", \"closingElement\", \"children\", \"selfClosing\"],\n\t  visitor: [\"openingElement\", \"children\", \"closingElement\"],\n\t  aliases: [\"JSX\", \"Immutable\", \"Expression\"],\n\t  fields: {\n\t    openingElement: {\n\t      validate: (0, _index.assertNodeType)(\"JSXOpeningElement\")\n\t    },\n\t    closingElement: {\n\t      optional: true,\n\t      validate: (0, _index.assertNodeType)(\"JSXClosingElement\")\n\t    },\n\t    children: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"JSXText\", \"JSXExpressionContainer\", \"JSXSpreadChild\", \"JSXElement\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXEmptyExpression\", {\n\t  aliases: [\"JSX\", \"Expression\"]\n\t});\n\n\t(0, _index2.default)(\"JSXExpressionContainer\", {\n\t  visitor: [\"expression\"],\n\t  aliases: [\"JSX\", \"Immutable\"],\n\t  fields: {\n\t    expression: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXSpreadChild\", {\n\t  visitor: [\"expression\"],\n\t  aliases: [\"JSX\", \"Immutable\"],\n\t  fields: {\n\t    expression: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXIdentifier\", {\n\t  builder: [\"name\"],\n\t  aliases: [\"JSX\", \"Expression\"],\n\t  fields: {\n\t    name: {\n\t      validate: (0, _index.assertValueType)(\"string\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXMemberExpression\", {\n\t  visitor: [\"object\", \"property\"],\n\t  aliases: [\"JSX\", \"Expression\"],\n\t  fields: {\n\t    object: {\n\t      validate: (0, _index.assertNodeType)(\"JSXMemberExpression\", \"JSXIdentifier\")\n\t    },\n\t    property: {\n\t      validate: (0, _index.assertNodeType)(\"JSXIdentifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXNamespacedName\", {\n\t  visitor: [\"namespace\", \"name\"],\n\t  aliases: [\"JSX\"],\n\t  fields: {\n\t    namespace: {\n\t      validate: (0, _index.assertNodeType)(\"JSXIdentifier\")\n\t    },\n\t    name: {\n\t      validate: (0, _index.assertNodeType)(\"JSXIdentifier\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXOpeningElement\", {\n\t  builder: [\"name\", \"attributes\", \"selfClosing\"],\n\t  visitor: [\"name\", \"attributes\"],\n\t  aliases: [\"JSX\", \"Immutable\"],\n\t  fields: {\n\t    name: {\n\t      validate: (0, _index.assertNodeType)(\"JSXIdentifier\", \"JSXMemberExpression\")\n\t    },\n\t    selfClosing: {\n\t      default: false,\n\t      validate: (0, _index.assertValueType)(\"boolean\")\n\t    },\n\t    attributes: {\n\t      validate: (0, _index.chain)((0, _index.assertValueType)(\"array\"), (0, _index.assertEach)((0, _index.assertNodeType)(\"JSXAttribute\", \"JSXSpreadAttribute\")))\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXSpreadAttribute\", {\n\t  visitor: [\"argument\"],\n\t  aliases: [\"JSX\"],\n\t  fields: {\n\t    argument: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n\t(0, _index2.default)(\"JSXText\", {\n\t  aliases: [\"JSX\", \"Immutable\"],\n\t  builder: [\"value\"],\n\t  fields: {\n\t    value: {\n\t      validate: (0, _index.assertValueType)(\"string\")\n\t    }\n\t  }\n\t});\n\n/***/ }),\n/* 392 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _index = __webpack_require__(26);\n\n\tvar _index2 = _interopRequireDefault(_index);\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\t(0, _index2.default)(\"Noop\", {\n\t  visitor: []\n\t});\n\n\t(0, _index2.default)(\"ParenthesizedExpression\", {\n\t  visitor: [\"expression\"],\n\t  aliases: [\"Expression\", \"ExpressionWrapper\"],\n\t  fields: {\n\t    expression: {\n\t      validate: (0, _index.assertNodeType)(\"Expression\")\n\t    }\n\t  }\n\t});\n\n/***/ }),\n/* 393 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.createUnionTypeAnnotation = createUnionTypeAnnotation;\n\texports.removeTypeDuplicates = removeTypeDuplicates;\n\texports.createTypeAnnotationBasedOnTypeof = createTypeAnnotationBasedOnTypeof;\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction createUnionTypeAnnotation(types) {\n\t  var flattened = removeTypeDuplicates(types);\n\n\t  if (flattened.length === 1) {\n\t    return flattened[0];\n\t  } else {\n\t    return t.unionTypeAnnotation(flattened);\n\t  }\n\t}\n\n\tfunction removeTypeDuplicates(nodes) {\n\t  var generics = {};\n\t  var bases = {};\n\n\t  var typeGroups = [];\n\n\t  var types = [];\n\n\t  for (var i = 0; i < nodes.length; i++) {\n\t    var node = nodes[i];\n\t    if (!node) continue;\n\n\t    if (types.indexOf(node) >= 0) {\n\t      continue;\n\t    }\n\n\t    if (t.isAnyTypeAnnotation(node)) {\n\t      return [node];\n\t    }\n\n\t    if (t.isFlowBaseAnnotation(node)) {\n\t      bases[node.type] = node;\n\t      continue;\n\t    }\n\n\t    if (t.isUnionTypeAnnotation(node)) {\n\t      if (typeGroups.indexOf(node.types) < 0) {\n\t        nodes = nodes.concat(node.types);\n\t        typeGroups.push(node.types);\n\t      }\n\t      continue;\n\t    }\n\n\t    if (t.isGenericTypeAnnotation(node)) {\n\t      var name = node.id.name;\n\n\t      if (generics[name]) {\n\t        var existing = generics[name];\n\t        if (existing.typeParameters) {\n\t          if (node.typeParameters) {\n\t            existing.typeParameters.params = removeTypeDuplicates(existing.typeParameters.params.concat(node.typeParameters.params));\n\t          }\n\t        } else {\n\t          existing = node.typeParameters;\n\t        }\n\t      } else {\n\t        generics[name] = node;\n\t      }\n\n\t      continue;\n\t    }\n\n\t    types.push(node);\n\t  }\n\n\t  for (var type in bases) {\n\t    types.push(bases[type]);\n\t  }\n\n\t  for (var _name in generics) {\n\t    types.push(generics[_name]);\n\t  }\n\n\t  return types;\n\t}\n\n\tfunction createTypeAnnotationBasedOnTypeof(type) {\n\t  if (type === \"string\") {\n\t    return t.stringTypeAnnotation();\n\t  } else if (type === \"number\") {\n\t    return t.numberTypeAnnotation();\n\t  } else if (type === \"undefined\") {\n\t    return t.voidTypeAnnotation();\n\t  } else if (type === \"boolean\") {\n\t    return t.booleanTypeAnnotation();\n\t  } else if (type === \"function\") {\n\t    return t.genericTypeAnnotation(t.identifier(\"Function\"));\n\t  } else if (type === \"object\") {\n\t    return t.genericTypeAnnotation(t.identifier(\"Object\"));\n\t  } else if (type === \"symbol\") {\n\t    return t.genericTypeAnnotation(t.identifier(\"Symbol\"));\n\t  } else {\n\t    throw new Error(\"Invalid typeof value\");\n\t  }\n\t}\n\n/***/ }),\n/* 394 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.isReactComponent = undefined;\n\texports.isCompatTag = isCompatTag;\n\texports.buildChildren = buildChildren;\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tvar isReactComponent = exports.isReactComponent = t.buildMatchMemberExpression(\"React.Component\");\n\n\tfunction isCompatTag(tagName) {\n\t  return !!tagName && /^[a-z]|\\-/.test(tagName);\n\t}\n\n\tfunction cleanJSXElementLiteralChild(child, args) {\n\t  var lines = child.value.split(/\\r\\n|\\n|\\r/);\n\n\t  var lastNonEmptyLine = 0;\n\n\t  for (var i = 0; i < lines.length; i++) {\n\t    if (lines[i].match(/[^ \\t]/)) {\n\t      lastNonEmptyLine = i;\n\t    }\n\t  }\n\n\t  var str = \"\";\n\n\t  for (var _i = 0; _i < lines.length; _i++) {\n\t    var line = lines[_i];\n\n\t    var isFirstLine = _i === 0;\n\t    var isLastLine = _i === lines.length - 1;\n\t    var isLastNonEmptyLine = _i === lastNonEmptyLine;\n\n\t    var trimmedLine = line.replace(/\\t/g, \" \");\n\n\t    if (!isFirstLine) {\n\t      trimmedLine = trimmedLine.replace(/^[ ]+/, \"\");\n\t    }\n\n\t    if (!isLastLine) {\n\t      trimmedLine = trimmedLine.replace(/[ ]+$/, \"\");\n\t    }\n\n\t    if (trimmedLine) {\n\t      if (!isLastNonEmptyLine) {\n\t        trimmedLine += \" \";\n\t      }\n\n\t      str += trimmedLine;\n\t    }\n\t  }\n\n\t  if (str) args.push(t.stringLiteral(str));\n\t}\n\n\tfunction buildChildren(node) {\n\t  var elems = [];\n\n\t  for (var i = 0; i < node.children.length; i++) {\n\t    var child = node.children[i];\n\n\t    if (t.isJSXText(child)) {\n\t      cleanJSXElementLiteralChild(child, elems);\n\t      continue;\n\t    }\n\n\t    if (t.isJSXExpressionContainer(child)) child = child.expression;\n\t    if (t.isJSXEmptyExpression(child)) continue;\n\n\t    elems.push(child);\n\t  }\n\n\t  return elems;\n\t}\n\n/***/ }),\n/* 395 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _typeof2 = __webpack_require__(11);\n\n\tvar _typeof3 = _interopRequireDefault(_typeof2);\n\n\tvar _getIterator2 = __webpack_require__(2);\n\n\tvar _getIterator3 = _interopRequireDefault(_getIterator2);\n\n\texports.isBinding = isBinding;\n\texports.isReferenced = isReferenced;\n\texports.isValidIdentifier = isValidIdentifier;\n\texports.isLet = isLet;\n\texports.isBlockScoped = isBlockScoped;\n\texports.isVar = isVar;\n\texports.isSpecifierDefault = isSpecifierDefault;\n\texports.isScope = isScope;\n\texports.isImmutable = isImmutable;\n\texports.isNodesEquivalent = isNodesEquivalent;\n\n\tvar _retrievers = __webpack_require__(226);\n\n\tvar _esutils = __webpack_require__(97);\n\n\tvar _esutils2 = _interopRequireDefault(_esutils);\n\n\tvar _index = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_index);\n\n\tvar _constants = __webpack_require__(135);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction isBinding(node, parent) {\n\t  var keys = _retrievers.getBindingIdentifiers.keys[parent.type];\n\t  if (keys) {\n\t    for (var i = 0; i < keys.length; i++) {\n\t      var key = keys[i];\n\t      var val = parent[key];\n\t      if (Array.isArray(val)) {\n\t        if (val.indexOf(node) >= 0) return true;\n\t      } else {\n\t        if (val === node) return true;\n\t      }\n\t    }\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction isReferenced(node, parent) {\n\t  switch (parent.type) {\n\t    case \"BindExpression\":\n\t      return parent.object === node || parent.callee === node;\n\n\t    case \"MemberExpression\":\n\t    case \"JSXMemberExpression\":\n\t      if (parent.property === node && parent.computed) {\n\t        return true;\n\t      } else if (parent.object === node) {\n\t        return true;\n\t      } else {\n\t        return false;\n\t      }\n\n\t    case \"MetaProperty\":\n\t      return false;\n\n\t    case \"ObjectProperty\":\n\t      if (parent.key === node) {\n\t        return parent.computed;\n\t      }\n\n\t    case \"VariableDeclarator\":\n\t      return parent.id !== node;\n\n\t    case \"ArrowFunctionExpression\":\n\t    case \"FunctionDeclaration\":\n\t    case \"FunctionExpression\":\n\t      for (var _iterator = parent.params, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : (0, _getIterator3.default)(_iterator);;) {\n\t        var _ref;\n\n\t        if (_isArray) {\n\t          if (_i >= _iterator.length) break;\n\t          _ref = _iterator[_i++];\n\t        } else {\n\t          _i = _iterator.next();\n\t          if (_i.done) break;\n\t          _ref = _i.value;\n\t        }\n\n\t        var param = _ref;\n\n\t        if (param === node) return false;\n\t      }\n\n\t      return parent.id !== node;\n\n\t    case \"ExportSpecifier\":\n\t      if (parent.source) {\n\t        return false;\n\t      } else {\n\t        return parent.local === node;\n\t      }\n\n\t    case \"ExportNamespaceSpecifier\":\n\t    case \"ExportDefaultSpecifier\":\n\t      return false;\n\n\t    case \"JSXAttribute\":\n\t      return parent.name !== node;\n\n\t    case \"ClassProperty\":\n\t      if (parent.key === node) {\n\t        return parent.computed;\n\t      } else {\n\t        return parent.value === node;\n\t      }\n\n\t    case \"ImportDefaultSpecifier\":\n\t    case \"ImportNamespaceSpecifier\":\n\t    case \"ImportSpecifier\":\n\t      return false;\n\n\t    case \"ClassDeclaration\":\n\t    case \"ClassExpression\":\n\t      return parent.id !== node;\n\n\t    case \"ClassMethod\":\n\t    case \"ObjectMethod\":\n\t      return parent.key === node && parent.computed;\n\n\t    case \"LabeledStatement\":\n\t      return false;\n\n\t    case \"CatchClause\":\n\t      return parent.param !== node;\n\n\t    case \"RestElement\":\n\t      return false;\n\n\t    case \"AssignmentExpression\":\n\t      return parent.right === node;\n\n\t    case \"AssignmentPattern\":\n\t      return parent.right === node;\n\n\t    case \"ObjectPattern\":\n\t    case \"ArrayPattern\":\n\t      return false;\n\t  }\n\n\t  return true;\n\t}\n\n\tfunction isValidIdentifier(name) {\n\t  if (typeof name !== \"string\" || _esutils2.default.keyword.isReservedWordES6(name, true)) {\n\t    return false;\n\t  } else if (name === \"await\") {\n\t    return false;\n\t  } else {\n\t    return _esutils2.default.keyword.isIdentifierNameES6(name);\n\t  }\n\t}\n\n\tfunction isLet(node) {\n\t  return t.isVariableDeclaration(node) && (node.kind !== \"var\" || node[_constants.BLOCK_SCOPED_SYMBOL]);\n\t}\n\n\tfunction isBlockScoped(node) {\n\t  return t.isFunctionDeclaration(node) || t.isClassDeclaration(node) || t.isLet(node);\n\t}\n\n\tfunction isVar(node) {\n\t  return t.isVariableDeclaration(node, { kind: \"var\" }) && !node[_constants.BLOCK_SCOPED_SYMBOL];\n\t}\n\n\tfunction isSpecifierDefault(specifier) {\n\t  return t.isImportDefaultSpecifier(specifier) || t.isIdentifier(specifier.imported || specifier.exported, { name: \"default\" });\n\t}\n\n\tfunction isScope(node, parent) {\n\t  if (t.isBlockStatement(node) && t.isFunction(parent, { body: node })) {\n\t    return false;\n\t  }\n\n\t  return t.isScopable(node);\n\t}\n\n\tfunction isImmutable(node) {\n\t  if (t.isType(node.type, \"Immutable\")) return true;\n\n\t  if (t.isIdentifier(node)) {\n\t    if (node.name === \"undefined\") {\n\t      return true;\n\t    } else {\n\t      return false;\n\t    }\n\t  }\n\n\t  return false;\n\t}\n\n\tfunction isNodesEquivalent(a, b) {\n\t  if ((typeof a === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(a)) !== \"object\" || (typeof a === \"undefined\" ? \"undefined\" : (0, _typeof3.default)(a)) !== \"object\" || a == null || b == null) {\n\t    return a === b;\n\t  }\n\n\t  if (a.type !== b.type) {\n\t    return false;\n\t  }\n\n\t  var fields = (0, _keys2.default)(t.NODE_FIELDS[a.type] || a.type);\n\n\t  for (var _iterator2 = fields, _isArray2 = Array.isArray(_iterator2), _i2 = 0, _iterator2 = _isArray2 ? _iterator2 : (0, _getIterator3.default)(_iterator2);;) {\n\t    var _ref2;\n\n\t    if (_isArray2) {\n\t      if (_i2 >= _iterator2.length) break;\n\t      _ref2 = _iterator2[_i2++];\n\t    } else {\n\t      _i2 = _iterator2.next();\n\t      if (_i2.done) break;\n\t      _ref2 = _i2.value;\n\t    }\n\n\t    var field = _ref2;\n\n\t    if ((0, _typeof3.default)(a[field]) !== (0, _typeof3.default)(b[field])) {\n\t      return false;\n\t    }\n\n\t    if (Array.isArray(a[field])) {\n\t      if (!Array.isArray(b[field])) {\n\t        return false;\n\t      }\n\t      if (a[field].length !== b[field].length) {\n\t        return false;\n\t      }\n\n\t      for (var i = 0; i < a[field].length; i++) {\n\t        if (!isNodesEquivalent(a[field][i], b[field][i])) {\n\t          return false;\n\t        }\n\t      }\n\t      continue;\n\t    }\n\n\t    if (!isNodesEquivalent(a[field], b[field])) {\n\t      return false;\n\t    }\n\t  }\n\n\t  return true;\n\t}\n\n/***/ }),\n/* 396 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = balanced;\n\tfunction balanced(a, b, str) {\n\t  if (a instanceof RegExp) a = maybeMatch(a, str);\n\t  if (b instanceof RegExp) b = maybeMatch(b, str);\n\n\t  var r = range(a, b, str);\n\n\t  return r && {\n\t    start: r[0],\n\t    end: r[1],\n\t    pre: str.slice(0, r[0]),\n\t    body: str.slice(r[0] + a.length, r[1]),\n\t    post: str.slice(r[1] + b.length)\n\t  };\n\t}\n\n\tfunction maybeMatch(reg, str) {\n\t  var m = str.match(reg);\n\t  return m ? m[0] : null;\n\t}\n\n\tbalanced.range = range;\n\tfunction range(a, b, str) {\n\t  var begs, beg, left, right, result;\n\t  var ai = str.indexOf(a);\n\t  var bi = str.indexOf(b, ai + 1);\n\t  var i = ai;\n\n\t  if (ai >= 0 && bi > 0) {\n\t    begs = [];\n\t    left = str.length;\n\n\t    while (i >= 0 && !result) {\n\t      if (i == ai) {\n\t        begs.push(i);\n\t        ai = str.indexOf(a, i + 1);\n\t      } else if (begs.length == 1) {\n\t        result = [begs.pop(), bi];\n\t      } else {\n\t        beg = begs.pop();\n\t        if (beg < left) {\n\t          left = beg;\n\t          right = bi;\n\t        }\n\n\t        bi = str.indexOf(b, i + 1);\n\t      }\n\n\t      i = ai < bi && ai >= 0 ? ai : bi;\n\t    }\n\n\t    if (begs.length) {\n\t      result = [left, right];\n\t    }\n\t  }\n\n\t  return result;\n\t}\n\n/***/ }),\n/* 397 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\texports.byteLength = byteLength;\n\texports.toByteArray = toByteArray;\n\texports.fromByteArray = fromByteArray;\n\n\tvar lookup = [];\n\tvar revLookup = [];\n\tvar Arr = typeof Uint8Array !== 'undefined' ? Uint8Array : Array;\n\n\tvar code = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';\n\tfor (var i = 0, len = code.length; i < len; ++i) {\n\t  lookup[i] = code[i];\n\t  revLookup[code.charCodeAt(i)] = i;\n\t}\n\n\trevLookup['-'.charCodeAt(0)] = 62;\n\trevLookup['_'.charCodeAt(0)] = 63;\n\n\tfunction placeHoldersCount(b64) {\n\t  var len = b64.length;\n\t  if (len % 4 > 0) {\n\t    throw new Error('Invalid string. Length must be a multiple of 4');\n\t  }\n\n\t  // the number of equal signs (place holders)\n\t  // if there are two placeholders, than the two characters before it\n\t  // represent one byte\n\t  // if there is only one, then the three characters before it represent 2 bytes\n\t  // this is just a cheap hack to not do indexOf twice\n\t  return b64[len - 2] === '=' ? 2 : b64[len - 1] === '=' ? 1 : 0;\n\t}\n\n\tfunction byteLength(b64) {\n\t  // base64 is 4/3 + up to two characters of the original data\n\t  return b64.length * 3 / 4 - placeHoldersCount(b64);\n\t}\n\n\tfunction toByteArray(b64) {\n\t  var i, l, tmp, placeHolders, arr;\n\t  var len = b64.length;\n\t  placeHolders = placeHoldersCount(b64);\n\n\t  arr = new Arr(len * 3 / 4 - placeHolders);\n\n\t  // if there are placeholders, only get up to the last complete 4 chars\n\t  l = placeHolders > 0 ? len - 4 : len;\n\n\t  var L = 0;\n\n\t  for (i = 0; i < l; i += 4) {\n\t    tmp = revLookup[b64.charCodeAt(i)] << 18 | revLookup[b64.charCodeAt(i + 1)] << 12 | revLookup[b64.charCodeAt(i + 2)] << 6 | revLookup[b64.charCodeAt(i + 3)];\n\t    arr[L++] = tmp >> 16 & 0xFF;\n\t    arr[L++] = tmp >> 8 & 0xFF;\n\t    arr[L++] = tmp & 0xFF;\n\t  }\n\n\t  if (placeHolders === 2) {\n\t    tmp = revLookup[b64.charCodeAt(i)] << 2 | revLookup[b64.charCodeAt(i + 1)] >> 4;\n\t    arr[L++] = tmp & 0xFF;\n\t  } else if (placeHolders === 1) {\n\t    tmp = revLookup[b64.charCodeAt(i)] << 10 | revLookup[b64.charCodeAt(i + 1)] << 4 | revLookup[b64.charCodeAt(i + 2)] >> 2;\n\t    arr[L++] = tmp >> 8 & 0xFF;\n\t    arr[L++] = tmp & 0xFF;\n\t  }\n\n\t  return arr;\n\t}\n\n\tfunction tripletToBase64(num) {\n\t  return lookup[num >> 18 & 0x3F] + lookup[num >> 12 & 0x3F] + lookup[num >> 6 & 0x3F] + lookup[num & 0x3F];\n\t}\n\n\tfunction encodeChunk(uint8, start, end) {\n\t  var tmp;\n\t  var output = [];\n\t  for (var i = start; i < end; i += 3) {\n\t    tmp = (uint8[i] << 16) + (uint8[i + 1] << 8) + uint8[i + 2];\n\t    output.push(tripletToBase64(tmp));\n\t  }\n\t  return output.join('');\n\t}\n\n\tfunction fromByteArray(uint8) {\n\t  var tmp;\n\t  var len = uint8.length;\n\t  var extraBytes = len % 3; // if we have 1 byte left, pad 2 bytes\n\t  var output = '';\n\t  var parts = [];\n\t  var maxChunkLength = 16383; // must be multiple of 3\n\n\t  // go through the array every three bytes, we'll deal with trailing stuff later\n\t  for (var i = 0, len2 = len - extraBytes; i < len2; i += maxChunkLength) {\n\t    parts.push(encodeChunk(uint8, i, i + maxChunkLength > len2 ? len2 : i + maxChunkLength));\n\t  }\n\n\t  // pad the end with zeros, but make sure to not forget the extra bytes\n\t  if (extraBytes === 1) {\n\t    tmp = uint8[len - 1];\n\t    output += lookup[tmp >> 2];\n\t    output += lookup[tmp << 4 & 0x3F];\n\t    output += '==';\n\t  } else if (extraBytes === 2) {\n\t    tmp = (uint8[len - 2] << 8) + uint8[len - 1];\n\t    output += lookup[tmp >> 10];\n\t    output += lookup[tmp >> 4 & 0x3F];\n\t    output += lookup[tmp << 2 & 0x3F];\n\t    output += '=';\n\t  }\n\n\t  parts.push(output);\n\n\t  return parts.join('');\n\t}\n\n/***/ }),\n/* 398 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar concatMap = __webpack_require__(402);\n\tvar balanced = __webpack_require__(396);\n\n\tmodule.exports = expandTop;\n\n\tvar escSlash = '\\0SLASH' + Math.random() + '\\0';\n\tvar escOpen = '\\0OPEN' + Math.random() + '\\0';\n\tvar escClose = '\\0CLOSE' + Math.random() + '\\0';\n\tvar escComma = '\\0COMMA' + Math.random() + '\\0';\n\tvar escPeriod = '\\0PERIOD' + Math.random() + '\\0';\n\n\tfunction numeric(str) {\n\t  return parseInt(str, 10) == str ? parseInt(str, 10) : str.charCodeAt(0);\n\t}\n\n\tfunction escapeBraces(str) {\n\t  return str.split('\\\\\\\\').join(escSlash).split('\\\\{').join(escOpen).split('\\\\}').join(escClose).split('\\\\,').join(escComma).split('\\\\.').join(escPeriod);\n\t}\n\n\tfunction unescapeBraces(str) {\n\t  return str.split(escSlash).join('\\\\').split(escOpen).join('{').split(escClose).join('}').split(escComma).join(',').split(escPeriod).join('.');\n\t}\n\n\t// Basically just str.split(\",\"), but handling cases\n\t// where we have nested braced sections, which should be\n\t// treated as individual members, like {a,{b,c},d}\n\tfunction parseCommaParts(str) {\n\t  if (!str) return [''];\n\n\t  var parts = [];\n\t  var m = balanced('{', '}', str);\n\n\t  if (!m) return str.split(',');\n\n\t  var pre = m.pre;\n\t  var body = m.body;\n\t  var post = m.post;\n\t  var p = pre.split(',');\n\n\t  p[p.length - 1] += '{' + body + '}';\n\t  var postParts = parseCommaParts(post);\n\t  if (post.length) {\n\t    p[p.length - 1] += postParts.shift();\n\t    p.push.apply(p, postParts);\n\t  }\n\n\t  parts.push.apply(parts, p);\n\n\t  return parts;\n\t}\n\n\tfunction expandTop(str) {\n\t  if (!str) return [];\n\n\t  // I don't know why Bash 4.3 does this, but it does.\n\t  // Anything starting with {} will have the first two bytes preserved\n\t  // but *only* at the top level, so {},a}b will not expand to anything,\n\t  // but a{},b}c will be expanded to [a}c,abc].\n\t  // One could argue that this is a bug in Bash, but since the goal of\n\t  // this module is to match Bash's rules, we escape a leading {}\n\t  if (str.substr(0, 2) === '{}') {\n\t    str = '\\\\{\\\\}' + str.substr(2);\n\t  }\n\n\t  return expand(escapeBraces(str), true).map(unescapeBraces);\n\t}\n\n\tfunction identity(e) {\n\t  return e;\n\t}\n\n\tfunction embrace(str) {\n\t  return '{' + str + '}';\n\t}\n\tfunction isPadded(el) {\n\t  return (/^-?0\\d/.test(el)\n\t  );\n\t}\n\n\tfunction lte(i, y) {\n\t  return i <= y;\n\t}\n\tfunction gte(i, y) {\n\t  return i >= y;\n\t}\n\n\tfunction expand(str, isTop) {\n\t  var expansions = [];\n\n\t  var m = balanced('{', '}', str);\n\t  if (!m || /\\$$/.test(m.pre)) return [str];\n\n\t  var isNumericSequence = /^-?\\d+\\.\\.-?\\d+(?:\\.\\.-?\\d+)?$/.test(m.body);\n\t  var isAlphaSequence = /^[a-zA-Z]\\.\\.[a-zA-Z](?:\\.\\.-?\\d+)?$/.test(m.body);\n\t  var isSequence = isNumericSequence || isAlphaSequence;\n\t  var isOptions = m.body.indexOf(',') >= 0;\n\t  if (!isSequence && !isOptions) {\n\t    // {a},b}\n\t    if (m.post.match(/,.*\\}/)) {\n\t      str = m.pre + '{' + m.body + escClose + m.post;\n\t      return expand(str);\n\t    }\n\t    return [str];\n\t  }\n\n\t  var n;\n\t  if (isSequence) {\n\t    n = m.body.split(/\\.\\./);\n\t  } else {\n\t    n = parseCommaParts(m.body);\n\t    if (n.length === 1) {\n\t      // x{{a,b}}y ==> x{a}y x{b}y\n\t      n = expand(n[0], false).map(embrace);\n\t      if (n.length === 1) {\n\t        var post = m.post.length ? expand(m.post, false) : [''];\n\t        return post.map(function (p) {\n\t          return m.pre + n[0] + p;\n\t        });\n\t      }\n\t    }\n\t  }\n\n\t  // at this point, n is the parts, and we know it's not a comma set\n\t  // with a single entry.\n\n\t  // no need to expand pre, since it is guaranteed to be free of brace-sets\n\t  var pre = m.pre;\n\t  var post = m.post.length ? expand(m.post, false) : [''];\n\n\t  var N;\n\n\t  if (isSequence) {\n\t    var x = numeric(n[0]);\n\t    var y = numeric(n[1]);\n\t    var width = Math.max(n[0].length, n[1].length);\n\t    var incr = n.length == 3 ? Math.abs(numeric(n[2])) : 1;\n\t    var test = lte;\n\t    var reverse = y < x;\n\t    if (reverse) {\n\t      incr *= -1;\n\t      test = gte;\n\t    }\n\t    var pad = n.some(isPadded);\n\n\t    N = [];\n\n\t    for (var i = x; test(i, y); i += incr) {\n\t      var c;\n\t      if (isAlphaSequence) {\n\t        c = String.fromCharCode(i);\n\t        if (c === '\\\\') c = '';\n\t      } else {\n\t        c = String(i);\n\t        if (pad) {\n\t          var need = width - c.length;\n\t          if (need > 0) {\n\t            var z = new Array(need + 1).join('0');\n\t            if (i < 0) c = '-' + z + c.slice(1);else c = z + c;\n\t          }\n\t        }\n\t      }\n\t      N.push(c);\n\t    }\n\t  } else {\n\t    N = concatMap(n, function (el) {\n\t      return expand(el, false);\n\t    });\n\t  }\n\n\t  for (var j = 0; j < N.length; j++) {\n\t    for (var k = 0; k < post.length; k++) {\n\t      var expansion = pre + N[j] + post[k];\n\t      if (!isTop || isSequence || expansion) expansions.push(expansion);\n\t    }\n\t  }\n\n\t  return expansions;\n\t}\n\n/***/ }),\n/* 399 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(global) {/*!\n\t * The buffer module from node.js, for the browser.\n\t *\n\t * @author   Feross Aboukhadijeh <feross@feross.org> <http://feross.org>\n\t * @license  MIT\n\t */\n\t/* eslint-disable no-proto */\n\n\t'use strict';\n\n\tvar base64 = __webpack_require__(397);\n\tvar ieee754 = __webpack_require__(465);\n\tvar isArray = __webpack_require__(400);\n\n\texports.Buffer = Buffer;\n\texports.SlowBuffer = SlowBuffer;\n\texports.INSPECT_MAX_BYTES = 50;\n\n\t/**\n\t * If `Buffer.TYPED_ARRAY_SUPPORT`:\n\t *   === true    Use Uint8Array implementation (fastest)\n\t *   === false   Use Object implementation (most compatible, even IE6)\n\t *\n\t * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+,\n\t * Opera 11.6+, iOS 4.2+.\n\t *\n\t * Due to various browser bugs, sometimes the Object implementation will be used even\n\t * when the browser supports typed arrays.\n\t *\n\t * Note:\n\t *\n\t *   - Firefox 4-29 lacks support for adding new properties to `Uint8Array` instances,\n\t *     See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438.\n\t *\n\t *   - Chrome 9-10 is missing the `TypedArray.prototype.subarray` function.\n\t *\n\t *   - IE10 has a broken `TypedArray.prototype.subarray` function which returns arrays of\n\t *     incorrect length in some situations.\n\n\t * We detect these buggy browsers and set `Buffer.TYPED_ARRAY_SUPPORT` to `false` so they\n\t * get the Object implementation, which is slower but behaves correctly.\n\t */\n\tBuffer.TYPED_ARRAY_SUPPORT = global.TYPED_ARRAY_SUPPORT !== undefined ? global.TYPED_ARRAY_SUPPORT : typedArraySupport();\n\n\t/*\n\t * Export kMaxLength after typed array support is determined.\n\t */\n\texports.kMaxLength = kMaxLength();\n\n\tfunction typedArraySupport() {\n\t  try {\n\t    var arr = new Uint8Array(1);\n\t    arr.__proto__ = { __proto__: Uint8Array.prototype, foo: function foo() {\n\t        return 42;\n\t      } };\n\t    return arr.foo() === 42 && // typed array instances can be augmented\n\t    typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray`\n\t    arr.subarray(1, 1).byteLength === 0; // ie10 has broken `subarray`\n\t  } catch (e) {\n\t    return false;\n\t  }\n\t}\n\n\tfunction kMaxLength() {\n\t  return Buffer.TYPED_ARRAY_SUPPORT ? 0x7fffffff : 0x3fffffff;\n\t}\n\n\tfunction createBuffer(that, length) {\n\t  if (kMaxLength() < length) {\n\t    throw new RangeError('Invalid typed array length');\n\t  }\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    // Return an augmented `Uint8Array` instance, for best performance\n\t    that = new Uint8Array(length);\n\t    that.__proto__ = Buffer.prototype;\n\t  } else {\n\t    // Fallback: Return an object instance of the Buffer class\n\t    if (that === null) {\n\t      that = new Buffer(length);\n\t    }\n\t    that.length = length;\n\t  }\n\n\t  return that;\n\t}\n\n\t/**\n\t * The Buffer constructor returns instances of `Uint8Array` that have their\n\t * prototype changed to `Buffer.prototype`. Furthermore, `Buffer` is a subclass of\n\t * `Uint8Array`, so the returned instances will have all the node `Buffer` methods\n\t * and the `Uint8Array` methods. Square bracket notation works as expected -- it\n\t * returns a single octet.\n\t *\n\t * The `Uint8Array` prototype remains unmodified.\n\t */\n\n\tfunction Buffer(arg, encodingOrOffset, length) {\n\t  if (!Buffer.TYPED_ARRAY_SUPPORT && !(this instanceof Buffer)) {\n\t    return new Buffer(arg, encodingOrOffset, length);\n\t  }\n\n\t  // Common case.\n\t  if (typeof arg === 'number') {\n\t    if (typeof encodingOrOffset === 'string') {\n\t      throw new Error('If encoding is specified then the first argument must be a string');\n\t    }\n\t    return allocUnsafe(this, arg);\n\t  }\n\t  return from(this, arg, encodingOrOffset, length);\n\t}\n\n\tBuffer.poolSize = 8192; // not used by this implementation\n\n\t// TODO: Legacy, not needed anymore. Remove in next major version.\n\tBuffer._augment = function (arr) {\n\t  arr.__proto__ = Buffer.prototype;\n\t  return arr;\n\t};\n\n\tfunction from(that, value, encodingOrOffset, length) {\n\t  if (typeof value === 'number') {\n\t    throw new TypeError('\"value\" argument must not be a number');\n\t  }\n\n\t  if (typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer) {\n\t    return fromArrayBuffer(that, value, encodingOrOffset, length);\n\t  }\n\n\t  if (typeof value === 'string') {\n\t    return fromString(that, value, encodingOrOffset);\n\t  }\n\n\t  return fromObject(that, value);\n\t}\n\n\t/**\n\t * Functionally equivalent to Buffer(arg, encoding) but throws a TypeError\n\t * if value is a number.\n\t * Buffer.from(str[, encoding])\n\t * Buffer.from(array)\n\t * Buffer.from(buffer)\n\t * Buffer.from(arrayBuffer[, byteOffset[, length]])\n\t **/\n\tBuffer.from = function (value, encodingOrOffset, length) {\n\t  return from(null, value, encodingOrOffset, length);\n\t};\n\n\tif (Buffer.TYPED_ARRAY_SUPPORT) {\n\t  Buffer.prototype.__proto__ = Uint8Array.prototype;\n\t  Buffer.__proto__ = Uint8Array;\n\t  if (typeof Symbol !== 'undefined' && Symbol.species && Buffer[Symbol.species] === Buffer) {\n\t    // Fix subarray() in ES2016. See: https://github.com/feross/buffer/pull/97\n\t    Object.defineProperty(Buffer, Symbol.species, {\n\t      value: null,\n\t      configurable: true\n\t    });\n\t  }\n\t}\n\n\tfunction assertSize(size) {\n\t  if (typeof size !== 'number') {\n\t    throw new TypeError('\"size\" argument must be a number');\n\t  } else if (size < 0) {\n\t    throw new RangeError('\"size\" argument must not be negative');\n\t  }\n\t}\n\n\tfunction alloc(that, size, fill, encoding) {\n\t  assertSize(size);\n\t  if (size <= 0) {\n\t    return createBuffer(that, size);\n\t  }\n\t  if (fill !== undefined) {\n\t    // Only pay attention to encoding if it's a string. This\n\t    // prevents accidentally sending in a number that would\n\t    // be interpretted as a start offset.\n\t    return typeof encoding === 'string' ? createBuffer(that, size).fill(fill, encoding) : createBuffer(that, size).fill(fill);\n\t  }\n\t  return createBuffer(that, size);\n\t}\n\n\t/**\n\t * Creates a new filled Buffer instance.\n\t * alloc(size[, fill[, encoding]])\n\t **/\n\tBuffer.alloc = function (size, fill, encoding) {\n\t  return alloc(null, size, fill, encoding);\n\t};\n\n\tfunction allocUnsafe(that, size) {\n\t  assertSize(size);\n\t  that = createBuffer(that, size < 0 ? 0 : checked(size) | 0);\n\t  if (!Buffer.TYPED_ARRAY_SUPPORT) {\n\t    for (var i = 0; i < size; ++i) {\n\t      that[i] = 0;\n\t    }\n\t  }\n\t  return that;\n\t}\n\n\t/**\n\t * Equivalent to Buffer(num), by default creates a non-zero-filled Buffer instance.\n\t * */\n\tBuffer.allocUnsafe = function (size) {\n\t  return allocUnsafe(null, size);\n\t};\n\t/**\n\t * Equivalent to SlowBuffer(num), by default creates a non-zero-filled Buffer instance.\n\t */\n\tBuffer.allocUnsafeSlow = function (size) {\n\t  return allocUnsafe(null, size);\n\t};\n\n\tfunction fromString(that, string, encoding) {\n\t  if (typeof encoding !== 'string' || encoding === '') {\n\t    encoding = 'utf8';\n\t  }\n\n\t  if (!Buffer.isEncoding(encoding)) {\n\t    throw new TypeError('\"encoding\" must be a valid string encoding');\n\t  }\n\n\t  var length = byteLength(string, encoding) | 0;\n\t  that = createBuffer(that, length);\n\n\t  var actual = that.write(string, encoding);\n\n\t  if (actual !== length) {\n\t    // Writing a hex string, for example, that contains invalid characters will\n\t    // cause everything after the first invalid character to be ignored. (e.g.\n\t    // 'abxxcd' will be treated as 'ab')\n\t    that = that.slice(0, actual);\n\t  }\n\n\t  return that;\n\t}\n\n\tfunction fromArrayLike(that, array) {\n\t  var length = array.length < 0 ? 0 : checked(array.length) | 0;\n\t  that = createBuffer(that, length);\n\t  for (var i = 0; i < length; i += 1) {\n\t    that[i] = array[i] & 255;\n\t  }\n\t  return that;\n\t}\n\n\tfunction fromArrayBuffer(that, array, byteOffset, length) {\n\t  array.byteLength; // this throws if `array` is not a valid ArrayBuffer\n\n\t  if (byteOffset < 0 || array.byteLength < byteOffset) {\n\t    throw new RangeError('\\'offset\\' is out of bounds');\n\t  }\n\n\t  if (array.byteLength < byteOffset + (length || 0)) {\n\t    throw new RangeError('\\'length\\' is out of bounds');\n\t  }\n\n\t  if (byteOffset === undefined && length === undefined) {\n\t    array = new Uint8Array(array);\n\t  } else if (length === undefined) {\n\t    array = new Uint8Array(array, byteOffset);\n\t  } else {\n\t    array = new Uint8Array(array, byteOffset, length);\n\t  }\n\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    // Return an augmented `Uint8Array` instance, for best performance\n\t    that = array;\n\t    that.__proto__ = Buffer.prototype;\n\t  } else {\n\t    // Fallback: Return an object instance of the Buffer class\n\t    that = fromArrayLike(that, array);\n\t  }\n\t  return that;\n\t}\n\n\tfunction fromObject(that, obj) {\n\t  if (Buffer.isBuffer(obj)) {\n\t    var len = checked(obj.length) | 0;\n\t    that = createBuffer(that, len);\n\n\t    if (that.length === 0) {\n\t      return that;\n\t    }\n\n\t    obj.copy(that, 0, 0, len);\n\t    return that;\n\t  }\n\n\t  if (obj) {\n\t    if (typeof ArrayBuffer !== 'undefined' && obj.buffer instanceof ArrayBuffer || 'length' in obj) {\n\t      if (typeof obj.length !== 'number' || isnan(obj.length)) {\n\t        return createBuffer(that, 0);\n\t      }\n\t      return fromArrayLike(that, obj);\n\t    }\n\n\t    if (obj.type === 'Buffer' && isArray(obj.data)) {\n\t      return fromArrayLike(that, obj.data);\n\t    }\n\t  }\n\n\t  throw new TypeError('First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.');\n\t}\n\n\tfunction checked(length) {\n\t  // Note: cannot use `length < kMaxLength()` here because that fails when\n\t  // length is NaN (which is otherwise coerced to zero.)\n\t  if (length >= kMaxLength()) {\n\t    throw new RangeError('Attempt to allocate Buffer larger than maximum ' + 'size: 0x' + kMaxLength().toString(16) + ' bytes');\n\t  }\n\t  return length | 0;\n\t}\n\n\tfunction SlowBuffer(length) {\n\t  if (+length != length) {\n\t    // eslint-disable-line eqeqeq\n\t    length = 0;\n\t  }\n\t  return Buffer.alloc(+length);\n\t}\n\n\tBuffer.isBuffer = function isBuffer(b) {\n\t  return !!(b != null && b._isBuffer);\n\t};\n\n\tBuffer.compare = function compare(a, b) {\n\t  if (!Buffer.isBuffer(a) || !Buffer.isBuffer(b)) {\n\t    throw new TypeError('Arguments must be Buffers');\n\t  }\n\n\t  if (a === b) return 0;\n\n\t  var x = a.length;\n\t  var y = b.length;\n\n\t  for (var i = 0, len = Math.min(x, y); i < len; ++i) {\n\t    if (a[i] !== b[i]) {\n\t      x = a[i];\n\t      y = b[i];\n\t      break;\n\t    }\n\t  }\n\n\t  if (x < y) return -1;\n\t  if (y < x) return 1;\n\t  return 0;\n\t};\n\n\tBuffer.isEncoding = function isEncoding(encoding) {\n\t  switch (String(encoding).toLowerCase()) {\n\t    case 'hex':\n\t    case 'utf8':\n\t    case 'utf-8':\n\t    case 'ascii':\n\t    case 'latin1':\n\t    case 'binary':\n\t    case 'base64':\n\t    case 'ucs2':\n\t    case 'ucs-2':\n\t    case 'utf16le':\n\t    case 'utf-16le':\n\t      return true;\n\t    default:\n\t      return false;\n\t  }\n\t};\n\n\tBuffer.concat = function concat(list, length) {\n\t  if (!isArray(list)) {\n\t    throw new TypeError('\"list\" argument must be an Array of Buffers');\n\t  }\n\n\t  if (list.length === 0) {\n\t    return Buffer.alloc(0);\n\t  }\n\n\t  var i;\n\t  if (length === undefined) {\n\t    length = 0;\n\t    for (i = 0; i < list.length; ++i) {\n\t      length += list[i].length;\n\t    }\n\t  }\n\n\t  var buffer = Buffer.allocUnsafe(length);\n\t  var pos = 0;\n\t  for (i = 0; i < list.length; ++i) {\n\t    var buf = list[i];\n\t    if (!Buffer.isBuffer(buf)) {\n\t      throw new TypeError('\"list\" argument must be an Array of Buffers');\n\t    }\n\t    buf.copy(buffer, pos);\n\t    pos += buf.length;\n\t  }\n\t  return buffer;\n\t};\n\n\tfunction byteLength(string, encoding) {\n\t  if (Buffer.isBuffer(string)) {\n\t    return string.length;\n\t  }\n\t  if (typeof ArrayBuffer !== 'undefined' && typeof ArrayBuffer.isView === 'function' && (ArrayBuffer.isView(string) || string instanceof ArrayBuffer)) {\n\t    return string.byteLength;\n\t  }\n\t  if (typeof string !== 'string') {\n\t    string = '' + string;\n\t  }\n\n\t  var len = string.length;\n\t  if (len === 0) return 0;\n\n\t  // Use a for loop to avoid recursion\n\t  var loweredCase = false;\n\t  for (;;) {\n\t    switch (encoding) {\n\t      case 'ascii':\n\t      case 'latin1':\n\t      case 'binary':\n\t        return len;\n\t      case 'utf8':\n\t      case 'utf-8':\n\t      case undefined:\n\t        return utf8ToBytes(string).length;\n\t      case 'ucs2':\n\t      case 'ucs-2':\n\t      case 'utf16le':\n\t      case 'utf-16le':\n\t        return len * 2;\n\t      case 'hex':\n\t        return len >>> 1;\n\t      case 'base64':\n\t        return base64ToBytes(string).length;\n\t      default:\n\t        if (loweredCase) return utf8ToBytes(string).length; // assume utf8\n\t        encoding = ('' + encoding).toLowerCase();\n\t        loweredCase = true;\n\t    }\n\t  }\n\t}\n\tBuffer.byteLength = byteLength;\n\n\tfunction slowToString(encoding, start, end) {\n\t  var loweredCase = false;\n\n\t  // No need to verify that \"this.length <= MAX_UINT32\" since it's a read-only\n\t  // property of a typed array.\n\n\t  // This behaves neither like String nor Uint8Array in that we set start/end\n\t  // to their upper/lower bounds if the value passed is out of range.\n\t  // undefined is handled specially as per ECMA-262 6th Edition,\n\t  // Section 13.3.3.7 Runtime Semantics: KeyedBindingInitialization.\n\t  if (start === undefined || start < 0) {\n\t    start = 0;\n\t  }\n\t  // Return early if start > this.length. Done here to prevent potential uint32\n\t  // coercion fail below.\n\t  if (start > this.length) {\n\t    return '';\n\t  }\n\n\t  if (end === undefined || end > this.length) {\n\t    end = this.length;\n\t  }\n\n\t  if (end <= 0) {\n\t    return '';\n\t  }\n\n\t  // Force coersion to uint32. This will also coerce falsey/NaN values to 0.\n\t  end >>>= 0;\n\t  start >>>= 0;\n\n\t  if (end <= start) {\n\t    return '';\n\t  }\n\n\t  if (!encoding) encoding = 'utf8';\n\n\t  while (true) {\n\t    switch (encoding) {\n\t      case 'hex':\n\t        return hexSlice(this, start, end);\n\n\t      case 'utf8':\n\t      case 'utf-8':\n\t        return utf8Slice(this, start, end);\n\n\t      case 'ascii':\n\t        return asciiSlice(this, start, end);\n\n\t      case 'latin1':\n\t      case 'binary':\n\t        return latin1Slice(this, start, end);\n\n\t      case 'base64':\n\t        return base64Slice(this, start, end);\n\n\t      case 'ucs2':\n\t      case 'ucs-2':\n\t      case 'utf16le':\n\t      case 'utf-16le':\n\t        return utf16leSlice(this, start, end);\n\n\t      default:\n\t        if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding);\n\t        encoding = (encoding + '').toLowerCase();\n\t        loweredCase = true;\n\t    }\n\t  }\n\t}\n\n\t// The property is used by `Buffer.isBuffer` and `is-buffer` (in Safari 5-7) to detect\n\t// Buffer instances.\n\tBuffer.prototype._isBuffer = true;\n\n\tfunction swap(b, n, m) {\n\t  var i = b[n];\n\t  b[n] = b[m];\n\t  b[m] = i;\n\t}\n\n\tBuffer.prototype.swap16 = function swap16() {\n\t  var len = this.length;\n\t  if (len % 2 !== 0) {\n\t    throw new RangeError('Buffer size must be a multiple of 16-bits');\n\t  }\n\t  for (var i = 0; i < len; i += 2) {\n\t    swap(this, i, i + 1);\n\t  }\n\t  return this;\n\t};\n\n\tBuffer.prototype.swap32 = function swap32() {\n\t  var len = this.length;\n\t  if (len % 4 !== 0) {\n\t    throw new RangeError('Buffer size must be a multiple of 32-bits');\n\t  }\n\t  for (var i = 0; i < len; i += 4) {\n\t    swap(this, i, i + 3);\n\t    swap(this, i + 1, i + 2);\n\t  }\n\t  return this;\n\t};\n\n\tBuffer.prototype.swap64 = function swap64() {\n\t  var len = this.length;\n\t  if (len % 8 !== 0) {\n\t    throw new RangeError('Buffer size must be a multiple of 64-bits');\n\t  }\n\t  for (var i = 0; i < len; i += 8) {\n\t    swap(this, i, i + 7);\n\t    swap(this, i + 1, i + 6);\n\t    swap(this, i + 2, i + 5);\n\t    swap(this, i + 3, i + 4);\n\t  }\n\t  return this;\n\t};\n\n\tBuffer.prototype.toString = function toString() {\n\t  var length = this.length | 0;\n\t  if (length === 0) return '';\n\t  if (arguments.length === 0) return utf8Slice(this, 0, length);\n\t  return slowToString.apply(this, arguments);\n\t};\n\n\tBuffer.prototype.equals = function equals(b) {\n\t  if (!Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer');\n\t  if (this === b) return true;\n\t  return Buffer.compare(this, b) === 0;\n\t};\n\n\tBuffer.prototype.inspect = function inspect() {\n\t  var str = '';\n\t  var max = exports.INSPECT_MAX_BYTES;\n\t  if (this.length > 0) {\n\t    str = this.toString('hex', 0, max).match(/.{2}/g).join(' ');\n\t    if (this.length > max) str += ' ... ';\n\t  }\n\t  return '<Buffer ' + str + '>';\n\t};\n\n\tBuffer.prototype.compare = function compare(target, start, end, thisStart, thisEnd) {\n\t  if (!Buffer.isBuffer(target)) {\n\t    throw new TypeError('Argument must be a Buffer');\n\t  }\n\n\t  if (start === undefined) {\n\t    start = 0;\n\t  }\n\t  if (end === undefined) {\n\t    end = target ? target.length : 0;\n\t  }\n\t  if (thisStart === undefined) {\n\t    thisStart = 0;\n\t  }\n\t  if (thisEnd === undefined) {\n\t    thisEnd = this.length;\n\t  }\n\n\t  if (start < 0 || end > target.length || thisStart < 0 || thisEnd > this.length) {\n\t    throw new RangeError('out of range index');\n\t  }\n\n\t  if (thisStart >= thisEnd && start >= end) {\n\t    return 0;\n\t  }\n\t  if (thisStart >= thisEnd) {\n\t    return -1;\n\t  }\n\t  if (start >= end) {\n\t    return 1;\n\t  }\n\n\t  start >>>= 0;\n\t  end >>>= 0;\n\t  thisStart >>>= 0;\n\t  thisEnd >>>= 0;\n\n\t  if (this === target) return 0;\n\n\t  var x = thisEnd - thisStart;\n\t  var y = end - start;\n\t  var len = Math.min(x, y);\n\n\t  var thisCopy = this.slice(thisStart, thisEnd);\n\t  var targetCopy = target.slice(start, end);\n\n\t  for (var i = 0; i < len; ++i) {\n\t    if (thisCopy[i] !== targetCopy[i]) {\n\t      x = thisCopy[i];\n\t      y = targetCopy[i];\n\t      break;\n\t    }\n\t  }\n\n\t  if (x < y) return -1;\n\t  if (y < x) return 1;\n\t  return 0;\n\t};\n\n\t// Finds either the first index of `val` in `buffer` at offset >= `byteOffset`,\n\t// OR the last index of `val` in `buffer` at offset <= `byteOffset`.\n\t//\n\t// Arguments:\n\t// - buffer - a Buffer to search\n\t// - val - a string, Buffer, or number\n\t// - byteOffset - an index into `buffer`; will be clamped to an int32\n\t// - encoding - an optional encoding, relevant is val is a string\n\t// - dir - true for indexOf, false for lastIndexOf\n\tfunction bidirectionalIndexOf(buffer, val, byteOffset, encoding, dir) {\n\t  // Empty buffer means no match\n\t  if (buffer.length === 0) return -1;\n\n\t  // Normalize byteOffset\n\t  if (typeof byteOffset === 'string') {\n\t    encoding = byteOffset;\n\t    byteOffset = 0;\n\t  } else if (byteOffset > 0x7fffffff) {\n\t    byteOffset = 0x7fffffff;\n\t  } else if (byteOffset < -0x80000000) {\n\t    byteOffset = -0x80000000;\n\t  }\n\t  byteOffset = +byteOffset; // Coerce to Number.\n\t  if (isNaN(byteOffset)) {\n\t    // byteOffset: it it's undefined, null, NaN, \"foo\", etc, search whole buffer\n\t    byteOffset = dir ? 0 : buffer.length - 1;\n\t  }\n\n\t  // Normalize byteOffset: negative offsets start from the end of the buffer\n\t  if (byteOffset < 0) byteOffset = buffer.length + byteOffset;\n\t  if (byteOffset >= buffer.length) {\n\t    if (dir) return -1;else byteOffset = buffer.length - 1;\n\t  } else if (byteOffset < 0) {\n\t    if (dir) byteOffset = 0;else return -1;\n\t  }\n\n\t  // Normalize val\n\t  if (typeof val === 'string') {\n\t    val = Buffer.from(val, encoding);\n\t  }\n\n\t  // Finally, search either indexOf (if dir is true) or lastIndexOf\n\t  if (Buffer.isBuffer(val)) {\n\t    // Special case: looking for empty string/buffer always fails\n\t    if (val.length === 0) {\n\t      return -1;\n\t    }\n\t    return arrayIndexOf(buffer, val, byteOffset, encoding, dir);\n\t  } else if (typeof val === 'number') {\n\t    val = val & 0xFF; // Search for a byte value [0-255]\n\t    if (Buffer.TYPED_ARRAY_SUPPORT && typeof Uint8Array.prototype.indexOf === 'function') {\n\t      if (dir) {\n\t        return Uint8Array.prototype.indexOf.call(buffer, val, byteOffset);\n\t      } else {\n\t        return Uint8Array.prototype.lastIndexOf.call(buffer, val, byteOffset);\n\t      }\n\t    }\n\t    return arrayIndexOf(buffer, [val], byteOffset, encoding, dir);\n\t  }\n\n\t  throw new TypeError('val must be string, number or Buffer');\n\t}\n\n\tfunction arrayIndexOf(arr, val, byteOffset, encoding, dir) {\n\t  var indexSize = 1;\n\t  var arrLength = arr.length;\n\t  var valLength = val.length;\n\n\t  if (encoding !== undefined) {\n\t    encoding = String(encoding).toLowerCase();\n\t    if (encoding === 'ucs2' || encoding === 'ucs-2' || encoding === 'utf16le' || encoding === 'utf-16le') {\n\t      if (arr.length < 2 || val.length < 2) {\n\t        return -1;\n\t      }\n\t      indexSize = 2;\n\t      arrLength /= 2;\n\t      valLength /= 2;\n\t      byteOffset /= 2;\n\t    }\n\t  }\n\n\t  function read(buf, i) {\n\t    if (indexSize === 1) {\n\t      return buf[i];\n\t    } else {\n\t      return buf.readUInt16BE(i * indexSize);\n\t    }\n\t  }\n\n\t  var i;\n\t  if (dir) {\n\t    var foundIndex = -1;\n\t    for (i = byteOffset; i < arrLength; i++) {\n\t      if (read(arr, i) === read(val, foundIndex === -1 ? 0 : i - foundIndex)) {\n\t        if (foundIndex === -1) foundIndex = i;\n\t        if (i - foundIndex + 1 === valLength) return foundIndex * indexSize;\n\t      } else {\n\t        if (foundIndex !== -1) i -= i - foundIndex;\n\t        foundIndex = -1;\n\t      }\n\t    }\n\t  } else {\n\t    if (byteOffset + valLength > arrLength) byteOffset = arrLength - valLength;\n\t    for (i = byteOffset; i >= 0; i--) {\n\t      var found = true;\n\t      for (var j = 0; j < valLength; j++) {\n\t        if (read(arr, i + j) !== read(val, j)) {\n\t          found = false;\n\t          break;\n\t        }\n\t      }\n\t      if (found) return i;\n\t    }\n\t  }\n\n\t  return -1;\n\t}\n\n\tBuffer.prototype.includes = function includes(val, byteOffset, encoding) {\n\t  return this.indexOf(val, byteOffset, encoding) !== -1;\n\t};\n\n\tBuffer.prototype.indexOf = function indexOf(val, byteOffset, encoding) {\n\t  return bidirectionalIndexOf(this, val, byteOffset, encoding, true);\n\t};\n\n\tBuffer.prototype.lastIndexOf = function lastIndexOf(val, byteOffset, encoding) {\n\t  return bidirectionalIndexOf(this, val, byteOffset, encoding, false);\n\t};\n\n\tfunction hexWrite(buf, string, offset, length) {\n\t  offset = Number(offset) || 0;\n\t  var remaining = buf.length - offset;\n\t  if (!length) {\n\t    length = remaining;\n\t  } else {\n\t    length = Number(length);\n\t    if (length > remaining) {\n\t      length = remaining;\n\t    }\n\t  }\n\n\t  // must be an even number of digits\n\t  var strLen = string.length;\n\t  if (strLen % 2 !== 0) throw new TypeError('Invalid hex string');\n\n\t  if (length > strLen / 2) {\n\t    length = strLen / 2;\n\t  }\n\t  for (var i = 0; i < length; ++i) {\n\t    var parsed = parseInt(string.substr(i * 2, 2), 16);\n\t    if (isNaN(parsed)) return i;\n\t    buf[offset + i] = parsed;\n\t  }\n\t  return i;\n\t}\n\n\tfunction utf8Write(buf, string, offset, length) {\n\t  return blitBuffer(utf8ToBytes(string, buf.length - offset), buf, offset, length);\n\t}\n\n\tfunction asciiWrite(buf, string, offset, length) {\n\t  return blitBuffer(asciiToBytes(string), buf, offset, length);\n\t}\n\n\tfunction latin1Write(buf, string, offset, length) {\n\t  return asciiWrite(buf, string, offset, length);\n\t}\n\n\tfunction base64Write(buf, string, offset, length) {\n\t  return blitBuffer(base64ToBytes(string), buf, offset, length);\n\t}\n\n\tfunction ucs2Write(buf, string, offset, length) {\n\t  return blitBuffer(utf16leToBytes(string, buf.length - offset), buf, offset, length);\n\t}\n\n\tBuffer.prototype.write = function write(string, offset, length, encoding) {\n\t  // Buffer#write(string)\n\t  if (offset === undefined) {\n\t    encoding = 'utf8';\n\t    length = this.length;\n\t    offset = 0;\n\t    // Buffer#write(string, encoding)\n\t  } else if (length === undefined && typeof offset === 'string') {\n\t    encoding = offset;\n\t    length = this.length;\n\t    offset = 0;\n\t    // Buffer#write(string, offset[, length][, encoding])\n\t  } else if (isFinite(offset)) {\n\t    offset = offset | 0;\n\t    if (isFinite(length)) {\n\t      length = length | 0;\n\t      if (encoding === undefined) encoding = 'utf8';\n\t    } else {\n\t      encoding = length;\n\t      length = undefined;\n\t    }\n\t    // legacy write(string, encoding, offset, length) - remove in v0.13\n\t  } else {\n\t    throw new Error('Buffer.write(string, encoding, offset[, length]) is no longer supported');\n\t  }\n\n\t  var remaining = this.length - offset;\n\t  if (length === undefined || length > remaining) length = remaining;\n\n\t  if (string.length > 0 && (length < 0 || offset < 0) || offset > this.length) {\n\t    throw new RangeError('Attempt to write outside buffer bounds');\n\t  }\n\n\t  if (!encoding) encoding = 'utf8';\n\n\t  var loweredCase = false;\n\t  for (;;) {\n\t    switch (encoding) {\n\t      case 'hex':\n\t        return hexWrite(this, string, offset, length);\n\n\t      case 'utf8':\n\t      case 'utf-8':\n\t        return utf8Write(this, string, offset, length);\n\n\t      case 'ascii':\n\t        return asciiWrite(this, string, offset, length);\n\n\t      case 'latin1':\n\t      case 'binary':\n\t        return latin1Write(this, string, offset, length);\n\n\t      case 'base64':\n\t        // Warning: maxLength not taken into account in base64Write\n\t        return base64Write(this, string, offset, length);\n\n\t      case 'ucs2':\n\t      case 'ucs-2':\n\t      case 'utf16le':\n\t      case 'utf-16le':\n\t        return ucs2Write(this, string, offset, length);\n\n\t      default:\n\t        if (loweredCase) throw new TypeError('Unknown encoding: ' + encoding);\n\t        encoding = ('' + encoding).toLowerCase();\n\t        loweredCase = true;\n\t    }\n\t  }\n\t};\n\n\tBuffer.prototype.toJSON = function toJSON() {\n\t  return {\n\t    type: 'Buffer',\n\t    data: Array.prototype.slice.call(this._arr || this, 0)\n\t  };\n\t};\n\n\tfunction base64Slice(buf, start, end) {\n\t  if (start === 0 && end === buf.length) {\n\t    return base64.fromByteArray(buf);\n\t  } else {\n\t    return base64.fromByteArray(buf.slice(start, end));\n\t  }\n\t}\n\n\tfunction utf8Slice(buf, start, end) {\n\t  end = Math.min(buf.length, end);\n\t  var res = [];\n\n\t  var i = start;\n\t  while (i < end) {\n\t    var firstByte = buf[i];\n\t    var codePoint = null;\n\t    var bytesPerSequence = firstByte > 0xEF ? 4 : firstByte > 0xDF ? 3 : firstByte > 0xBF ? 2 : 1;\n\n\t    if (i + bytesPerSequence <= end) {\n\t      var secondByte, thirdByte, fourthByte, tempCodePoint;\n\n\t      switch (bytesPerSequence) {\n\t        case 1:\n\t          if (firstByte < 0x80) {\n\t            codePoint = firstByte;\n\t          }\n\t          break;\n\t        case 2:\n\t          secondByte = buf[i + 1];\n\t          if ((secondByte & 0xC0) === 0x80) {\n\t            tempCodePoint = (firstByte & 0x1F) << 0x6 | secondByte & 0x3F;\n\t            if (tempCodePoint > 0x7F) {\n\t              codePoint = tempCodePoint;\n\t            }\n\t          }\n\t          break;\n\t        case 3:\n\t          secondByte = buf[i + 1];\n\t          thirdByte = buf[i + 2];\n\t          if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) {\n\t            tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | thirdByte & 0x3F;\n\t            if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) {\n\t              codePoint = tempCodePoint;\n\t            }\n\t          }\n\t          break;\n\t        case 4:\n\t          secondByte = buf[i + 1];\n\t          thirdByte = buf[i + 2];\n\t          fourthByte = buf[i + 3];\n\t          if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80 && (fourthByte & 0xC0) === 0x80) {\n\t            tempCodePoint = (firstByte & 0xF) << 0x12 | (secondByte & 0x3F) << 0xC | (thirdByte & 0x3F) << 0x6 | fourthByte & 0x3F;\n\t            if (tempCodePoint > 0xFFFF && tempCodePoint < 0x110000) {\n\t              codePoint = tempCodePoint;\n\t            }\n\t          }\n\t      }\n\t    }\n\n\t    if (codePoint === null) {\n\t      // we did not generate a valid codePoint so insert a\n\t      // replacement char (U+FFFD) and advance only 1 byte\n\t      codePoint = 0xFFFD;\n\t      bytesPerSequence = 1;\n\t    } else if (codePoint > 0xFFFF) {\n\t      // encode to utf16 (surrogate pair dance)\n\t      codePoint -= 0x10000;\n\t      res.push(codePoint >>> 10 & 0x3FF | 0xD800);\n\t      codePoint = 0xDC00 | codePoint & 0x3FF;\n\t    }\n\n\t    res.push(codePoint);\n\t    i += bytesPerSequence;\n\t  }\n\n\t  return decodeCodePointsArray(res);\n\t}\n\n\t// Based on http://stackoverflow.com/a/22747272/680742, the browser with\n\t// the lowest limit is Chrome, with 0x10000 args.\n\t// We go 1 magnitude less, for safety\n\tvar MAX_ARGUMENTS_LENGTH = 0x1000;\n\n\tfunction decodeCodePointsArray(codePoints) {\n\t  var len = codePoints.length;\n\t  if (len <= MAX_ARGUMENTS_LENGTH) {\n\t    return String.fromCharCode.apply(String, codePoints); // avoid extra slice()\n\t  }\n\n\t  // Decode in chunks to avoid \"call stack size exceeded\".\n\t  var res = '';\n\t  var i = 0;\n\t  while (i < len) {\n\t    res += String.fromCharCode.apply(String, codePoints.slice(i, i += MAX_ARGUMENTS_LENGTH));\n\t  }\n\t  return res;\n\t}\n\n\tfunction asciiSlice(buf, start, end) {\n\t  var ret = '';\n\t  end = Math.min(buf.length, end);\n\n\t  for (var i = start; i < end; ++i) {\n\t    ret += String.fromCharCode(buf[i] & 0x7F);\n\t  }\n\t  return ret;\n\t}\n\n\tfunction latin1Slice(buf, start, end) {\n\t  var ret = '';\n\t  end = Math.min(buf.length, end);\n\n\t  for (var i = start; i < end; ++i) {\n\t    ret += String.fromCharCode(buf[i]);\n\t  }\n\t  return ret;\n\t}\n\n\tfunction hexSlice(buf, start, end) {\n\t  var len = buf.length;\n\n\t  if (!start || start < 0) start = 0;\n\t  if (!end || end < 0 || end > len) end = len;\n\n\t  var out = '';\n\t  for (var i = start; i < end; ++i) {\n\t    out += toHex(buf[i]);\n\t  }\n\t  return out;\n\t}\n\n\tfunction utf16leSlice(buf, start, end) {\n\t  var bytes = buf.slice(start, end);\n\t  var res = '';\n\t  for (var i = 0; i < bytes.length; i += 2) {\n\t    res += String.fromCharCode(bytes[i] + bytes[i + 1] * 256);\n\t  }\n\t  return res;\n\t}\n\n\tBuffer.prototype.slice = function slice(start, end) {\n\t  var len = this.length;\n\t  start = ~~start;\n\t  end = end === undefined ? len : ~~end;\n\n\t  if (start < 0) {\n\t    start += len;\n\t    if (start < 0) start = 0;\n\t  } else if (start > len) {\n\t    start = len;\n\t  }\n\n\t  if (end < 0) {\n\t    end += len;\n\t    if (end < 0) end = 0;\n\t  } else if (end > len) {\n\t    end = len;\n\t  }\n\n\t  if (end < start) end = start;\n\n\t  var newBuf;\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    newBuf = this.subarray(start, end);\n\t    newBuf.__proto__ = Buffer.prototype;\n\t  } else {\n\t    var sliceLen = end - start;\n\t    newBuf = new Buffer(sliceLen, undefined);\n\t    for (var i = 0; i < sliceLen; ++i) {\n\t      newBuf[i] = this[i + start];\n\t    }\n\t  }\n\n\t  return newBuf;\n\t};\n\n\t/*\n\t * Need to make sure that buffer isn't trying to write out of bounds.\n\t */\n\tfunction checkOffset(offset, ext, length) {\n\t  if (offset % 1 !== 0 || offset < 0) throw new RangeError('offset is not uint');\n\t  if (offset + ext > length) throw new RangeError('Trying to access beyond buffer length');\n\t}\n\n\tBuffer.prototype.readUIntLE = function readUIntLE(offset, byteLength, noAssert) {\n\t  offset = offset | 0;\n\t  byteLength = byteLength | 0;\n\t  if (!noAssert) checkOffset(offset, byteLength, this.length);\n\n\t  var val = this[offset];\n\t  var mul = 1;\n\t  var i = 0;\n\t  while (++i < byteLength && (mul *= 0x100)) {\n\t    val += this[offset + i] * mul;\n\t  }\n\n\t  return val;\n\t};\n\n\tBuffer.prototype.readUIntBE = function readUIntBE(offset, byteLength, noAssert) {\n\t  offset = offset | 0;\n\t  byteLength = byteLength | 0;\n\t  if (!noAssert) {\n\t    checkOffset(offset, byteLength, this.length);\n\t  }\n\n\t  var val = this[offset + --byteLength];\n\t  var mul = 1;\n\t  while (byteLength > 0 && (mul *= 0x100)) {\n\t    val += this[offset + --byteLength] * mul;\n\t  }\n\n\t  return val;\n\t};\n\n\tBuffer.prototype.readUInt8 = function readUInt8(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 1, this.length);\n\t  return this[offset];\n\t};\n\n\tBuffer.prototype.readUInt16LE = function readUInt16LE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 2, this.length);\n\t  return this[offset] | this[offset + 1] << 8;\n\t};\n\n\tBuffer.prototype.readUInt16BE = function readUInt16BE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 2, this.length);\n\t  return this[offset] << 8 | this[offset + 1];\n\t};\n\n\tBuffer.prototype.readUInt32LE = function readUInt32LE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 4, this.length);\n\n\t  return (this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16) + this[offset + 3] * 0x1000000;\n\t};\n\n\tBuffer.prototype.readUInt32BE = function readUInt32BE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 4, this.length);\n\n\t  return this[offset] * 0x1000000 + (this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3]);\n\t};\n\n\tBuffer.prototype.readIntLE = function readIntLE(offset, byteLength, noAssert) {\n\t  offset = offset | 0;\n\t  byteLength = byteLength | 0;\n\t  if (!noAssert) checkOffset(offset, byteLength, this.length);\n\n\t  var val = this[offset];\n\t  var mul = 1;\n\t  var i = 0;\n\t  while (++i < byteLength && (mul *= 0x100)) {\n\t    val += this[offset + i] * mul;\n\t  }\n\t  mul *= 0x80;\n\n\t  if (val >= mul) val -= Math.pow(2, 8 * byteLength);\n\n\t  return val;\n\t};\n\n\tBuffer.prototype.readIntBE = function readIntBE(offset, byteLength, noAssert) {\n\t  offset = offset | 0;\n\t  byteLength = byteLength | 0;\n\t  if (!noAssert) checkOffset(offset, byteLength, this.length);\n\n\t  var i = byteLength;\n\t  var mul = 1;\n\t  var val = this[offset + --i];\n\t  while (i > 0 && (mul *= 0x100)) {\n\t    val += this[offset + --i] * mul;\n\t  }\n\t  mul *= 0x80;\n\n\t  if (val >= mul) val -= Math.pow(2, 8 * byteLength);\n\n\t  return val;\n\t};\n\n\tBuffer.prototype.readInt8 = function readInt8(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 1, this.length);\n\t  if (!(this[offset] & 0x80)) return this[offset];\n\t  return (0xff - this[offset] + 1) * -1;\n\t};\n\n\tBuffer.prototype.readInt16LE = function readInt16LE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 2, this.length);\n\t  var val = this[offset] | this[offset + 1] << 8;\n\t  return val & 0x8000 ? val | 0xFFFF0000 : val;\n\t};\n\n\tBuffer.prototype.readInt16BE = function readInt16BE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 2, this.length);\n\t  var val = this[offset + 1] | this[offset] << 8;\n\t  return val & 0x8000 ? val | 0xFFFF0000 : val;\n\t};\n\n\tBuffer.prototype.readInt32LE = function readInt32LE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 4, this.length);\n\n\t  return this[offset] | this[offset + 1] << 8 | this[offset + 2] << 16 | this[offset + 3] << 24;\n\t};\n\n\tBuffer.prototype.readInt32BE = function readInt32BE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 4, this.length);\n\n\t  return this[offset] << 24 | this[offset + 1] << 16 | this[offset + 2] << 8 | this[offset + 3];\n\t};\n\n\tBuffer.prototype.readFloatLE = function readFloatLE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 4, this.length);\n\t  return ieee754.read(this, offset, true, 23, 4);\n\t};\n\n\tBuffer.prototype.readFloatBE = function readFloatBE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 4, this.length);\n\t  return ieee754.read(this, offset, false, 23, 4);\n\t};\n\n\tBuffer.prototype.readDoubleLE = function readDoubleLE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 8, this.length);\n\t  return ieee754.read(this, offset, true, 52, 8);\n\t};\n\n\tBuffer.prototype.readDoubleBE = function readDoubleBE(offset, noAssert) {\n\t  if (!noAssert) checkOffset(offset, 8, this.length);\n\t  return ieee754.read(this, offset, false, 52, 8);\n\t};\n\n\tfunction checkInt(buf, value, offset, ext, max, min) {\n\t  if (!Buffer.isBuffer(buf)) throw new TypeError('\"buffer\" argument must be a Buffer instance');\n\t  if (value > max || value < min) throw new RangeError('\"value\" argument is out of bounds');\n\t  if (offset + ext > buf.length) throw new RangeError('Index out of range');\n\t}\n\n\tBuffer.prototype.writeUIntLE = function writeUIntLE(value, offset, byteLength, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  byteLength = byteLength | 0;\n\t  if (!noAssert) {\n\t    var maxBytes = Math.pow(2, 8 * byteLength) - 1;\n\t    checkInt(this, value, offset, byteLength, maxBytes, 0);\n\t  }\n\n\t  var mul = 1;\n\t  var i = 0;\n\t  this[offset] = value & 0xFF;\n\t  while (++i < byteLength && (mul *= 0x100)) {\n\t    this[offset + i] = value / mul & 0xFF;\n\t  }\n\n\t  return offset + byteLength;\n\t};\n\n\tBuffer.prototype.writeUIntBE = function writeUIntBE(value, offset, byteLength, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  byteLength = byteLength | 0;\n\t  if (!noAssert) {\n\t    var maxBytes = Math.pow(2, 8 * byteLength) - 1;\n\t    checkInt(this, value, offset, byteLength, maxBytes, 0);\n\t  }\n\n\t  var i = byteLength - 1;\n\t  var mul = 1;\n\t  this[offset + i] = value & 0xFF;\n\t  while (--i >= 0 && (mul *= 0x100)) {\n\t    this[offset + i] = value / mul & 0xFF;\n\t  }\n\n\t  return offset + byteLength;\n\t};\n\n\tBuffer.prototype.writeUInt8 = function writeUInt8(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 1, 0xff, 0);\n\t  if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value);\n\t  this[offset] = value & 0xff;\n\t  return offset + 1;\n\t};\n\n\tfunction objectWriteUInt16(buf, value, offset, littleEndian) {\n\t  if (value < 0) value = 0xffff + value + 1;\n\t  for (var i = 0, j = Math.min(buf.length - offset, 2); i < j; ++i) {\n\t    buf[offset + i] = (value & 0xff << 8 * (littleEndian ? i : 1 - i)) >>> (littleEndian ? i : 1 - i) * 8;\n\t  }\n\t}\n\n\tBuffer.prototype.writeUInt16LE = function writeUInt16LE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value & 0xff;\n\t    this[offset + 1] = value >>> 8;\n\t  } else {\n\t    objectWriteUInt16(this, value, offset, true);\n\t  }\n\t  return offset + 2;\n\t};\n\n\tBuffer.prototype.writeUInt16BE = function writeUInt16BE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 2, 0xffff, 0);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value >>> 8;\n\t    this[offset + 1] = value & 0xff;\n\t  } else {\n\t    objectWriteUInt16(this, value, offset, false);\n\t  }\n\t  return offset + 2;\n\t};\n\n\tfunction objectWriteUInt32(buf, value, offset, littleEndian) {\n\t  if (value < 0) value = 0xffffffff + value + 1;\n\t  for (var i = 0, j = Math.min(buf.length - offset, 4); i < j; ++i) {\n\t    buf[offset + i] = value >>> (littleEndian ? i : 3 - i) * 8 & 0xff;\n\t  }\n\t}\n\n\tBuffer.prototype.writeUInt32LE = function writeUInt32LE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset + 3] = value >>> 24;\n\t    this[offset + 2] = value >>> 16;\n\t    this[offset + 1] = value >>> 8;\n\t    this[offset] = value & 0xff;\n\t  } else {\n\t    objectWriteUInt32(this, value, offset, true);\n\t  }\n\t  return offset + 4;\n\t};\n\n\tBuffer.prototype.writeUInt32BE = function writeUInt32BE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 4, 0xffffffff, 0);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value >>> 24;\n\t    this[offset + 1] = value >>> 16;\n\t    this[offset + 2] = value >>> 8;\n\t    this[offset + 3] = value & 0xff;\n\t  } else {\n\t    objectWriteUInt32(this, value, offset, false);\n\t  }\n\t  return offset + 4;\n\t};\n\n\tBuffer.prototype.writeIntLE = function writeIntLE(value, offset, byteLength, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) {\n\t    var limit = Math.pow(2, 8 * byteLength - 1);\n\n\t    checkInt(this, value, offset, byteLength, limit - 1, -limit);\n\t  }\n\n\t  var i = 0;\n\t  var mul = 1;\n\t  var sub = 0;\n\t  this[offset] = value & 0xFF;\n\t  while (++i < byteLength && (mul *= 0x100)) {\n\t    if (value < 0 && sub === 0 && this[offset + i - 1] !== 0) {\n\t      sub = 1;\n\t    }\n\t    this[offset + i] = (value / mul >> 0) - sub & 0xFF;\n\t  }\n\n\t  return offset + byteLength;\n\t};\n\n\tBuffer.prototype.writeIntBE = function writeIntBE(value, offset, byteLength, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) {\n\t    var limit = Math.pow(2, 8 * byteLength - 1);\n\n\t    checkInt(this, value, offset, byteLength, limit - 1, -limit);\n\t  }\n\n\t  var i = byteLength - 1;\n\t  var mul = 1;\n\t  var sub = 0;\n\t  this[offset + i] = value & 0xFF;\n\t  while (--i >= 0 && (mul *= 0x100)) {\n\t    if (value < 0 && sub === 0 && this[offset + i + 1] !== 0) {\n\t      sub = 1;\n\t    }\n\t    this[offset + i] = (value / mul >> 0) - sub & 0xFF;\n\t  }\n\n\t  return offset + byteLength;\n\t};\n\n\tBuffer.prototype.writeInt8 = function writeInt8(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 1, 0x7f, -0x80);\n\t  if (!Buffer.TYPED_ARRAY_SUPPORT) value = Math.floor(value);\n\t  if (value < 0) value = 0xff + value + 1;\n\t  this[offset] = value & 0xff;\n\t  return offset + 1;\n\t};\n\n\tBuffer.prototype.writeInt16LE = function writeInt16LE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value & 0xff;\n\t    this[offset + 1] = value >>> 8;\n\t  } else {\n\t    objectWriteUInt16(this, value, offset, true);\n\t  }\n\t  return offset + 2;\n\t};\n\n\tBuffer.prototype.writeInt16BE = function writeInt16BE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 2, 0x7fff, -0x8000);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value >>> 8;\n\t    this[offset + 1] = value & 0xff;\n\t  } else {\n\t    objectWriteUInt16(this, value, offset, false);\n\t  }\n\t  return offset + 2;\n\t};\n\n\tBuffer.prototype.writeInt32LE = function writeInt32LE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000);\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value & 0xff;\n\t    this[offset + 1] = value >>> 8;\n\t    this[offset + 2] = value >>> 16;\n\t    this[offset + 3] = value >>> 24;\n\t  } else {\n\t    objectWriteUInt32(this, value, offset, true);\n\t  }\n\t  return offset + 4;\n\t};\n\n\tBuffer.prototype.writeInt32BE = function writeInt32BE(value, offset, noAssert) {\n\t  value = +value;\n\t  offset = offset | 0;\n\t  if (!noAssert) checkInt(this, value, offset, 4, 0x7fffffff, -0x80000000);\n\t  if (value < 0) value = 0xffffffff + value + 1;\n\t  if (Buffer.TYPED_ARRAY_SUPPORT) {\n\t    this[offset] = value >>> 24;\n\t    this[offset + 1] = value >>> 16;\n\t    this[offset + 2] = value >>> 8;\n\t    this[offset + 3] = value & 0xff;\n\t  } else {\n\t    objectWriteUInt32(this, value, offset, false);\n\t  }\n\t  return offset + 4;\n\t};\n\n\tfunction checkIEEE754(buf, value, offset, ext, max, min) {\n\t  if (offset + ext > buf.length) throw new RangeError('Index out of range');\n\t  if (offset < 0) throw new RangeError('Index out of range');\n\t}\n\n\tfunction writeFloat(buf, value, offset, littleEndian, noAssert) {\n\t  if (!noAssert) {\n\t    checkIEEE754(buf, value, offset, 4, 3.4028234663852886e+38, -3.4028234663852886e+38);\n\t  }\n\t  ieee754.write(buf, value, offset, littleEndian, 23, 4);\n\t  return offset + 4;\n\t}\n\n\tBuffer.prototype.writeFloatLE = function writeFloatLE(value, offset, noAssert) {\n\t  return writeFloat(this, value, offset, true, noAssert);\n\t};\n\n\tBuffer.prototype.writeFloatBE = function writeFloatBE(value, offset, noAssert) {\n\t  return writeFloat(this, value, offset, false, noAssert);\n\t};\n\n\tfunction writeDouble(buf, value, offset, littleEndian, noAssert) {\n\t  if (!noAssert) {\n\t    checkIEEE754(buf, value, offset, 8, 1.7976931348623157E+308, -1.7976931348623157E+308);\n\t  }\n\t  ieee754.write(buf, value, offset, littleEndian, 52, 8);\n\t  return offset + 8;\n\t}\n\n\tBuffer.prototype.writeDoubleLE = function writeDoubleLE(value, offset, noAssert) {\n\t  return writeDouble(this, value, offset, true, noAssert);\n\t};\n\n\tBuffer.prototype.writeDoubleBE = function writeDoubleBE(value, offset, noAssert) {\n\t  return writeDouble(this, value, offset, false, noAssert);\n\t};\n\n\t// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)\n\tBuffer.prototype.copy = function copy(target, targetStart, start, end) {\n\t  if (!start) start = 0;\n\t  if (!end && end !== 0) end = this.length;\n\t  if (targetStart >= target.length) targetStart = target.length;\n\t  if (!targetStart) targetStart = 0;\n\t  if (end > 0 && end < start) end = start;\n\n\t  // Copy 0 bytes; we're done\n\t  if (end === start) return 0;\n\t  if (target.length === 0 || this.length === 0) return 0;\n\n\t  // Fatal error conditions\n\t  if (targetStart < 0) {\n\t    throw new RangeError('targetStart out of bounds');\n\t  }\n\t  if (start < 0 || start >= this.length) throw new RangeError('sourceStart out of bounds');\n\t  if (end < 0) throw new RangeError('sourceEnd out of bounds');\n\n\t  // Are we oob?\n\t  if (end > this.length) end = this.length;\n\t  if (target.length - targetStart < end - start) {\n\t    end = target.length - targetStart + start;\n\t  }\n\n\t  var len = end - start;\n\t  var i;\n\n\t  if (this === target && start < targetStart && targetStart < end) {\n\t    // descending copy from end\n\t    for (i = len - 1; i >= 0; --i) {\n\t      target[i + targetStart] = this[i + start];\n\t    }\n\t  } else if (len < 1000 || !Buffer.TYPED_ARRAY_SUPPORT) {\n\t    // ascending copy from start\n\t    for (i = 0; i < len; ++i) {\n\t      target[i + targetStart] = this[i + start];\n\t    }\n\t  } else {\n\t    Uint8Array.prototype.set.call(target, this.subarray(start, start + len), targetStart);\n\t  }\n\n\t  return len;\n\t};\n\n\t// Usage:\n\t//    buffer.fill(number[, offset[, end]])\n\t//    buffer.fill(buffer[, offset[, end]])\n\t//    buffer.fill(string[, offset[, end]][, encoding])\n\tBuffer.prototype.fill = function fill(val, start, end, encoding) {\n\t  // Handle string cases:\n\t  if (typeof val === 'string') {\n\t    if (typeof start === 'string') {\n\t      encoding = start;\n\t      start = 0;\n\t      end = this.length;\n\t    } else if (typeof end === 'string') {\n\t      encoding = end;\n\t      end = this.length;\n\t    }\n\t    if (val.length === 1) {\n\t      var code = val.charCodeAt(0);\n\t      if (code < 256) {\n\t        val = code;\n\t      }\n\t    }\n\t    if (encoding !== undefined && typeof encoding !== 'string') {\n\t      throw new TypeError('encoding must be a string');\n\t    }\n\t    if (typeof encoding === 'string' && !Buffer.isEncoding(encoding)) {\n\t      throw new TypeError('Unknown encoding: ' + encoding);\n\t    }\n\t  } else if (typeof val === 'number') {\n\t    val = val & 255;\n\t  }\n\n\t  // Invalid ranges are not set to a default, so can range check early.\n\t  if (start < 0 || this.length < start || this.length < end) {\n\t    throw new RangeError('Out of range index');\n\t  }\n\n\t  if (end <= start) {\n\t    return this;\n\t  }\n\n\t  start = start >>> 0;\n\t  end = end === undefined ? this.length : end >>> 0;\n\n\t  if (!val) val = 0;\n\n\t  var i;\n\t  if (typeof val === 'number') {\n\t    for (i = start; i < end; ++i) {\n\t      this[i] = val;\n\t    }\n\t  } else {\n\t    var bytes = Buffer.isBuffer(val) ? val : utf8ToBytes(new Buffer(val, encoding).toString());\n\t    var len = bytes.length;\n\t    for (i = 0; i < end - start; ++i) {\n\t      this[i + start] = bytes[i % len];\n\t    }\n\t  }\n\n\t  return this;\n\t};\n\n\t// HELPER FUNCTIONS\n\t// ================\n\n\tvar INVALID_BASE64_RE = /[^+\\/0-9A-Za-z-_]/g;\n\n\tfunction base64clean(str) {\n\t  // Node strips out invalid characters like \\n and \\t from the string, base64-js does not\n\t  str = stringtrim(str).replace(INVALID_BASE64_RE, '');\n\t  // Node converts strings with length < 2 to ''\n\t  if (str.length < 2) return '';\n\t  // Node allows for non-padded base64 strings (missing trailing ===), base64-js does not\n\t  while (str.length % 4 !== 0) {\n\t    str = str + '=';\n\t  }\n\t  return str;\n\t}\n\n\tfunction stringtrim(str) {\n\t  if (str.trim) return str.trim();\n\t  return str.replace(/^\\s+|\\s+$/g, '');\n\t}\n\n\tfunction toHex(n) {\n\t  if (n < 16) return '0' + n.toString(16);\n\t  return n.toString(16);\n\t}\n\n\tfunction utf8ToBytes(string, units) {\n\t  units = units || Infinity;\n\t  var codePoint;\n\t  var length = string.length;\n\t  var leadSurrogate = null;\n\t  var bytes = [];\n\n\t  for (var i = 0; i < length; ++i) {\n\t    codePoint = string.charCodeAt(i);\n\n\t    // is surrogate component\n\t    if (codePoint > 0xD7FF && codePoint < 0xE000) {\n\t      // last char was a lead\n\t      if (!leadSurrogate) {\n\t        // no lead yet\n\t        if (codePoint > 0xDBFF) {\n\t          // unexpected trail\n\t          if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);\n\t          continue;\n\t        } else if (i + 1 === length) {\n\t          // unpaired lead\n\t          if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);\n\t          continue;\n\t        }\n\n\t        // valid lead\n\t        leadSurrogate = codePoint;\n\n\t        continue;\n\t      }\n\n\t      // 2 leads in a row\n\t      if (codePoint < 0xDC00) {\n\t        if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);\n\t        leadSurrogate = codePoint;\n\t        continue;\n\t      }\n\n\t      // valid surrogate pair\n\t      codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000;\n\t    } else if (leadSurrogate) {\n\t      // valid bmp char, but last char was a lead\n\t      if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD);\n\t    }\n\n\t    leadSurrogate = null;\n\n\t    // encode utf8\n\t    if (codePoint < 0x80) {\n\t      if ((units -= 1) < 0) break;\n\t      bytes.push(codePoint);\n\t    } else if (codePoint < 0x800) {\n\t      if ((units -= 2) < 0) break;\n\t      bytes.push(codePoint >> 0x6 | 0xC0, codePoint & 0x3F | 0x80);\n\t    } else if (codePoint < 0x10000) {\n\t      if ((units -= 3) < 0) break;\n\t      bytes.push(codePoint >> 0xC | 0xE0, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80);\n\t    } else if (codePoint < 0x110000) {\n\t      if ((units -= 4) < 0) break;\n\t      bytes.push(codePoint >> 0x12 | 0xF0, codePoint >> 0xC & 0x3F | 0x80, codePoint >> 0x6 & 0x3F | 0x80, codePoint & 0x3F | 0x80);\n\t    } else {\n\t      throw new Error('Invalid code point');\n\t    }\n\t  }\n\n\t  return bytes;\n\t}\n\n\tfunction asciiToBytes(str) {\n\t  var byteArray = [];\n\t  for (var i = 0; i < str.length; ++i) {\n\t    // Node's code seems to be doing this and not & 0x7F..\n\t    byteArray.push(str.charCodeAt(i) & 0xFF);\n\t  }\n\t  return byteArray;\n\t}\n\n\tfunction utf16leToBytes(str, units) {\n\t  var c, hi, lo;\n\t  var byteArray = [];\n\t  for (var i = 0; i < str.length; ++i) {\n\t    if ((units -= 2) < 0) break;\n\n\t    c = str.charCodeAt(i);\n\t    hi = c >> 8;\n\t    lo = c % 256;\n\t    byteArray.push(lo);\n\t    byteArray.push(hi);\n\t  }\n\n\t  return byteArray;\n\t}\n\n\tfunction base64ToBytes(str) {\n\t  return base64.toByteArray(base64clean(str));\n\t}\n\n\tfunction blitBuffer(src, dst, offset, length) {\n\t  for (var i = 0; i < length; ++i) {\n\t    if (i + offset >= dst.length || i >= src.length) break;\n\t    dst[i + offset] = src[i];\n\t  }\n\t  return i;\n\t}\n\n\tfunction isnan(val) {\n\t  return val !== val; // eslint-disable-line no-self-compare\n\t}\n\t/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))\n\n/***/ }),\n/* 400 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar toString = {}.toString;\n\n\tmodule.exports = Array.isArray || function (arr) {\n\t  return toString.call(arr) == '[object Array]';\n\t};\n\n/***/ }),\n/* 401 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {'use strict';\n\n\tvar escapeStringRegexp = __webpack_require__(460);\n\tvar ansiStyles = __webpack_require__(289);\n\tvar stripAnsi = __webpack_require__(622);\n\tvar hasAnsi = __webpack_require__(464);\n\tvar supportsColor = __webpack_require__(623);\n\tvar defineProps = Object.defineProperties;\n\tvar isSimpleWindowsTerm = process.platform === 'win32' && !/^xterm/i.test(process.env.TERM);\n\n\tfunction Chalk(options) {\n\t\t// detect mode if not set manually\n\t\tthis.enabled = !options || options.enabled === undefined ? supportsColor : options.enabled;\n\t}\n\n\t// use bright blue on Windows as the normal blue color is illegible\n\tif (isSimpleWindowsTerm) {\n\t\tansiStyles.blue.open = '\\x1B[94m';\n\t}\n\n\tvar styles = function () {\n\t\tvar ret = {};\n\n\t\tObject.keys(ansiStyles).forEach(function (key) {\n\t\t\tansiStyles[key].closeRe = new RegExp(escapeStringRegexp(ansiStyles[key].close), 'g');\n\n\t\t\tret[key] = {\n\t\t\t\tget: function get() {\n\t\t\t\t\treturn build.call(this, this._styles.concat(key));\n\t\t\t\t}\n\t\t\t};\n\t\t});\n\n\t\treturn ret;\n\t}();\n\n\tvar proto = defineProps(function chalk() {}, styles);\n\n\tfunction build(_styles) {\n\t\tvar builder = function builder() {\n\t\t\treturn applyStyle.apply(builder, arguments);\n\t\t};\n\n\t\tbuilder._styles = _styles;\n\t\tbuilder.enabled = this.enabled;\n\t\t// __proto__ is used because we must return a function, but there is\n\t\t// no way to create a function with a different prototype.\n\t\t/* eslint-disable no-proto */\n\t\tbuilder.__proto__ = proto;\n\n\t\treturn builder;\n\t}\n\n\tfunction applyStyle() {\n\t\t// support varags, but simply cast to string in case there's only one arg\n\t\tvar args = arguments;\n\t\tvar argsLen = args.length;\n\t\tvar str = argsLen !== 0 && String(arguments[0]);\n\n\t\tif (argsLen > 1) {\n\t\t\t// don't slice `arguments`, it prevents v8 optimizations\n\t\t\tfor (var a = 1; a < argsLen; a++) {\n\t\t\t\tstr += ' ' + args[a];\n\t\t\t}\n\t\t}\n\n\t\tif (!this.enabled || !str) {\n\t\t\treturn str;\n\t\t}\n\n\t\tvar nestedStyles = this._styles;\n\t\tvar i = nestedStyles.length;\n\n\t\t// Turns out that on Windows dimmed gray text becomes invisible in cmd.exe,\n\t\t// see https://github.com/chalk/chalk/issues/58\n\t\t// If we're on Windows and we're dealing with a gray color, temporarily make 'dim' a noop.\n\t\tvar originalDim = ansiStyles.dim.open;\n\t\tif (isSimpleWindowsTerm && (nestedStyles.indexOf('gray') !== -1 || nestedStyles.indexOf('grey') !== -1)) {\n\t\t\tansiStyles.dim.open = '';\n\t\t}\n\n\t\twhile (i--) {\n\t\t\tvar code = ansiStyles[nestedStyles[i]];\n\n\t\t\t// Replace any instances already present with a re-opening code\n\t\t\t// otherwise only the part of the string until said closing code\n\t\t\t// will be colored, and the rest will simply be 'plain'.\n\t\t\tstr = code.open + str.replace(code.closeRe, code.open) + code.close;\n\t\t}\n\n\t\t// Reset the original 'dim' if we changed it to work around the Windows dimmed gray issue.\n\t\tansiStyles.dim.open = originalDim;\n\n\t\treturn str;\n\t}\n\n\tfunction init() {\n\t\tvar ret = {};\n\n\t\tObject.keys(styles).forEach(function (name) {\n\t\t\tret[name] = {\n\t\t\t\tget: function get() {\n\t\t\t\t\treturn build.call(this, [name]);\n\t\t\t\t}\n\t\t\t};\n\t\t});\n\n\t\treturn ret;\n\t}\n\n\tdefineProps(Chalk.prototype, init());\n\n\tmodule.exports = new Chalk();\n\tmodule.exports.styles = ansiStyles;\n\tmodule.exports.hasColor = hasAnsi;\n\tmodule.exports.stripColor = stripAnsi;\n\tmodule.exports.supportsColor = supportsColor;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 402 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function (xs, fn) {\n\t    var res = [];\n\t    for (var i = 0; i < xs.length; i++) {\n\t        var x = fn(xs[i], i);\n\t        if (isArray(x)) res.push.apply(res, x);else res.push(x);\n\t    }\n\t    return res;\n\t};\n\n\tvar isArray = Array.isArray || function (xs) {\n\t    return Object.prototype.toString.call(xs) === '[object Array]';\n\t};\n\n/***/ }),\n/* 403 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(Buffer) {'use strict';\n\n\tvar fs = __webpack_require__(115);\n\tvar path = __webpack_require__(19);\n\n\tObject.defineProperty(exports, 'commentRegex', {\n\t  get: function getCommentRegex() {\n\t    return (/^\\s*\\/(?:\\/|\\*)[@#]\\s+sourceMappingURL=data:(?:application|text)\\/json;(?:charset[:=]\\S+?;)?base64,(?:.*)$/mg\n\t    );\n\t  }\n\t});\n\n\tObject.defineProperty(exports, 'mapFileCommentRegex', {\n\t  get: function getMapFileCommentRegex() {\n\t    //Example (Extra space between slashes added to solve Safari bug. Exclude space in production):\n\t    //     / /# sourceMappingURL=foo.js.map           \n\t    return (/(?:\\/\\/[@#][ \\t]+sourceMappingURL=([^\\s'\"]+?)[ \\t]*$)|(?:\\/\\*[@#][ \\t]+sourceMappingURL=([^\\*]+?)[ \\t]*(?:\\*\\/){1}[ \\t]*$)/mg\n\t    );\n\t  }\n\t});\n\n\tfunction decodeBase64(base64) {\n\t  return new Buffer(base64, 'base64').toString();\n\t}\n\n\tfunction stripComment(sm) {\n\t  return sm.split(',').pop();\n\t}\n\n\tfunction readFromFileMap(sm, dir) {\n\t  // NOTE: this will only work on the server since it attempts to read the map file\n\n\t  var r = exports.mapFileCommentRegex.exec(sm);\n\n\t  // for some odd reason //# .. captures in 1 and /* .. */ in 2\n\t  var filename = r[1] || r[2];\n\t  var filepath = path.resolve(dir, filename);\n\n\t  try {\n\t    return fs.readFileSync(filepath, 'utf8');\n\t  } catch (e) {\n\t    throw new Error('An error occurred while trying to read the map file at ' + filepath + '\\n' + e);\n\t  }\n\t}\n\n\tfunction Converter(sm, opts) {\n\t  opts = opts || {};\n\n\t  if (opts.isFileComment) sm = readFromFileMap(sm, opts.commentFileDir);\n\t  if (opts.hasComment) sm = stripComment(sm);\n\t  if (opts.isEncoded) sm = decodeBase64(sm);\n\t  if (opts.isJSON || opts.isEncoded) sm = JSON.parse(sm);\n\n\t  this.sourcemap = sm;\n\t}\n\n\tConverter.prototype.toJSON = function (space) {\n\t  return JSON.stringify(this.sourcemap, null, space);\n\t};\n\n\tConverter.prototype.toBase64 = function () {\n\t  var json = this.toJSON();\n\t  return new Buffer(json).toString('base64');\n\t};\n\n\tConverter.prototype.toComment = function (options) {\n\t  var base64 = this.toBase64();\n\t  var data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64;\n\t  return options && options.multiline ? '/*# ' + data + ' */' : '//# ' + data;\n\t};\n\n\t// returns copy instead of original\n\tConverter.prototype.toObject = function () {\n\t  return JSON.parse(this.toJSON());\n\t};\n\n\tConverter.prototype.addProperty = function (key, value) {\n\t  if (this.sourcemap.hasOwnProperty(key)) throw new Error('property %s already exists on the sourcemap, use set property instead');\n\t  return this.setProperty(key, value);\n\t};\n\n\tConverter.prototype.setProperty = function (key, value) {\n\t  this.sourcemap[key] = value;\n\t  return this;\n\t};\n\n\tConverter.prototype.getProperty = function (key) {\n\t  return this.sourcemap[key];\n\t};\n\n\texports.fromObject = function (obj) {\n\t  return new Converter(obj);\n\t};\n\n\texports.fromJSON = function (json) {\n\t  return new Converter(json, { isJSON: true });\n\t};\n\n\texports.fromBase64 = function (base64) {\n\t  return new Converter(base64, { isEncoded: true });\n\t};\n\n\texports.fromComment = function (comment) {\n\t  comment = comment.replace(/^\\/\\*/g, '//').replace(/\\*\\/$/g, '');\n\n\t  return new Converter(comment, { isEncoded: true, hasComment: true });\n\t};\n\n\texports.fromMapFileComment = function (comment, dir) {\n\t  return new Converter(comment, { commentFileDir: dir, isFileComment: true, isJSON: true });\n\t};\n\n\t// Finds last sourcemap comment in file or returns null if none was found\n\texports.fromSource = function (content) {\n\t  var m = content.match(exports.commentRegex);\n\t  return m ? exports.fromComment(m.pop()) : null;\n\t};\n\n\t// Finds last sourcemap comment in file or returns null if none was found\n\texports.fromMapFileSource = function (content, dir) {\n\t  var m = content.match(exports.mapFileCommentRegex);\n\t  return m ? exports.fromMapFileComment(m.pop(), dir) : null;\n\t};\n\n\texports.removeComments = function (src) {\n\t  return src.replace(exports.commentRegex, '');\n\t};\n\n\texports.removeMapFileComments = function (src) {\n\t  return src.replace(exports.mapFileCommentRegex, '');\n\t};\n\n\texports.generateMapFileComment = function (file, options) {\n\t  var data = 'sourceMappingURL=' + file;\n\t  return options && options.multiline ? '/*# ' + data + ' */' : '//# ' + data;\n\t};\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(399).Buffer))\n\n/***/ }),\n/* 404 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(59);\n\t__webpack_require__(157);\n\tmodule.exports = __webpack_require__(439);\n\n/***/ }),\n/* 405 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar core = __webpack_require__(5);\n\tvar $JSON = core.JSON || (core.JSON = { stringify: JSON.stringify });\n\tmodule.exports = function stringify(it) {\n\t  // eslint-disable-line no-unused-vars\n\t  return $JSON.stringify.apply($JSON, arguments);\n\t};\n\n/***/ }),\n/* 406 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(96);\n\t__webpack_require__(157);\n\t__webpack_require__(59);\n\t__webpack_require__(441);\n\t__webpack_require__(451);\n\t__webpack_require__(450);\n\t__webpack_require__(449);\n\tmodule.exports = __webpack_require__(5).Map;\n\n/***/ }),\n/* 407 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(442);\n\tmodule.exports = 0x1fffffffffffff;\n\n/***/ }),\n/* 408 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(443);\n\tmodule.exports = __webpack_require__(5).Object.assign;\n\n/***/ }),\n/* 409 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(444);\n\tvar $Object = __webpack_require__(5).Object;\n\tmodule.exports = function create(P, D) {\n\t  return $Object.create(P, D);\n\t};\n\n/***/ }),\n/* 410 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(158);\n\tmodule.exports = __webpack_require__(5).Object.getOwnPropertySymbols;\n\n/***/ }),\n/* 411 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(445);\n\tmodule.exports = __webpack_require__(5).Object.keys;\n\n/***/ }),\n/* 412 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(446);\n\tmodule.exports = __webpack_require__(5).Object.setPrototypeOf;\n\n/***/ }),\n/* 413 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(158);\n\tmodule.exports = __webpack_require__(5).Symbol['for'];\n\n/***/ }),\n/* 414 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(158);\n\t__webpack_require__(96);\n\t__webpack_require__(452);\n\t__webpack_require__(453);\n\tmodule.exports = __webpack_require__(5).Symbol;\n\n/***/ }),\n/* 415 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(157);\n\t__webpack_require__(59);\n\tmodule.exports = __webpack_require__(156).f('iterator');\n\n/***/ }),\n/* 416 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(96);\n\t__webpack_require__(59);\n\t__webpack_require__(447);\n\t__webpack_require__(455);\n\t__webpack_require__(454);\n\tmodule.exports = __webpack_require__(5).WeakMap;\n\n/***/ }),\n/* 417 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(96);\n\t__webpack_require__(59);\n\t__webpack_require__(448);\n\t__webpack_require__(457);\n\t__webpack_require__(456);\n\tmodule.exports = __webpack_require__(5).WeakSet;\n\n/***/ }),\n/* 418 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\tmodule.exports = function () {/* empty */};\n\n/***/ }),\n/* 419 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar forOf = __webpack_require__(55);\n\n\tmodule.exports = function (iter, ITERATOR) {\n\t  var result = [];\n\t  forOf(iter, false, result.push, result, ITERATOR);\n\t  return result;\n\t};\n\n/***/ }),\n/* 420 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// false -> Array#indexOf\n\t// true  -> Array#includes\n\tvar toIObject = __webpack_require__(37);\n\tvar toLength = __webpack_require__(153);\n\tvar toAbsoluteIndex = __webpack_require__(438);\n\tmodule.exports = function (IS_INCLUDES) {\n\t  return function ($this, el, fromIndex) {\n\t    var O = toIObject($this);\n\t    var length = toLength(O.length);\n\t    var index = toAbsoluteIndex(fromIndex, length);\n\t    var value;\n\t    // Array#includes uses SameValueZero equality algorithm\n\t    // eslint-disable-next-line no-self-compare\n\t    if (IS_INCLUDES && el != el) while (length > index) {\n\t      value = O[index++];\n\t      // eslint-disable-next-line no-self-compare\n\t      if (value != value) return true;\n\t      // Array#indexOf ignores holes, Array#includes - not\n\t    } else for (; length > index; index++) {\n\t      if (IS_INCLUDES || index in O) {\n\t        if (O[index] === el) return IS_INCLUDES || index || 0;\n\t      }\n\t    }return !IS_INCLUDES && -1;\n\t  };\n\t};\n\n/***/ }),\n/* 421 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(16);\n\tvar isArray = __webpack_require__(232);\n\tvar SPECIES = __webpack_require__(13)('species');\n\n\tmodule.exports = function (original) {\n\t  var C;\n\t  if (isArray(original)) {\n\t    C = original.constructor;\n\t    // cross-realm fallback\n\t    if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n\t    if (isObject(C)) {\n\t      C = C[SPECIES];\n\t      if (C === null) C = undefined;\n\t    }\n\t  }return C === undefined ? Array : C;\n\t};\n\n/***/ }),\n/* 422 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 9.4.2.3 ArraySpeciesCreate(originalArray, length)\n\tvar speciesConstructor = __webpack_require__(421);\n\n\tmodule.exports = function (original, length) {\n\t  return new (speciesConstructor(original))(length);\n\t};\n\n/***/ }),\n/* 423 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar dP = __webpack_require__(23).f;\n\tvar create = __webpack_require__(90);\n\tvar redefineAll = __webpack_require__(146);\n\tvar ctx = __webpack_require__(43);\n\tvar anInstance = __webpack_require__(136);\n\tvar forOf = __webpack_require__(55);\n\tvar $iterDefine = __webpack_require__(143);\n\tvar step = __webpack_require__(233);\n\tvar setSpecies = __webpack_require__(436);\n\tvar DESCRIPTORS = __webpack_require__(22);\n\tvar fastKey = __webpack_require__(57).fastKey;\n\tvar validate = __webpack_require__(58);\n\tvar SIZE = DESCRIPTORS ? '_s' : 'size';\n\n\tvar getEntry = function getEntry(that, key) {\n\t  // fast case\n\t  var index = fastKey(key);\n\t  var entry;\n\t  if (index !== 'F') return that._i[index];\n\t  // frozen object case\n\t  for (entry = that._f; entry; entry = entry.n) {\n\t    if (entry.k == key) return entry;\n\t  }\n\t};\n\n\tmodule.exports = {\n\t  getConstructor: function getConstructor(wrapper, NAME, IS_MAP, ADDER) {\n\t    var C = wrapper(function (that, iterable) {\n\t      anInstance(that, C, NAME, '_i');\n\t      that._t = NAME; // collection type\n\t      that._i = create(null); // index\n\t      that._f = undefined; // first entry\n\t      that._l = undefined; // last entry\n\t      that[SIZE] = 0; // size\n\t      if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);\n\t    });\n\t    redefineAll(C.prototype, {\n\t      // 23.1.3.1 Map.prototype.clear()\n\t      // 23.2.3.2 Set.prototype.clear()\n\t      clear: function clear() {\n\t        for (var that = validate(this, NAME), data = that._i, entry = that._f; entry; entry = entry.n) {\n\t          entry.r = true;\n\t          if (entry.p) entry.p = entry.p.n = undefined;\n\t          delete data[entry.i];\n\t        }\n\t        that._f = that._l = undefined;\n\t        that[SIZE] = 0;\n\t      },\n\t      // 23.1.3.3 Map.prototype.delete(key)\n\t      // 23.2.3.4 Set.prototype.delete(value)\n\t      'delete': function _delete(key) {\n\t        var that = validate(this, NAME);\n\t        var entry = getEntry(that, key);\n\t        if (entry) {\n\t          var next = entry.n;\n\t          var prev = entry.p;\n\t          delete that._i[entry.i];\n\t          entry.r = true;\n\t          if (prev) prev.n = next;\n\t          if (next) next.p = prev;\n\t          if (that._f == entry) that._f = next;\n\t          if (that._l == entry) that._l = prev;\n\t          that[SIZE]--;\n\t        }return !!entry;\n\t      },\n\t      // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n\t      // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n\t      forEach: function forEach(callbackfn /* , that = undefined */) {\n\t        validate(this, NAME);\n\t        var f = ctx(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n\t        var entry;\n\t        while (entry = entry ? entry.n : this._f) {\n\t          f(entry.v, entry.k, this);\n\t          // revert to the last existing entry\n\t          while (entry && entry.r) {\n\t            entry = entry.p;\n\t          }\n\t        }\n\t      },\n\t      // 23.1.3.7 Map.prototype.has(key)\n\t      // 23.2.3.7 Set.prototype.has(value)\n\t      has: function has(key) {\n\t        return !!getEntry(validate(this, NAME), key);\n\t      }\n\t    });\n\t    if (DESCRIPTORS) dP(C.prototype, 'size', {\n\t      get: function get() {\n\t        return validate(this, NAME)[SIZE];\n\t      }\n\t    });\n\t    return C;\n\t  },\n\t  def: function def(that, key, value) {\n\t    var entry = getEntry(that, key);\n\t    var prev, index;\n\t    // change existing entry\n\t    if (entry) {\n\t      entry.v = value;\n\t      // create new entry\n\t    } else {\n\t      that._l = entry = {\n\t        i: index = fastKey(key, true), // <- index\n\t        k: key, // <- key\n\t        v: value, // <- value\n\t        p: prev = that._l, // <- previous entry\n\t        n: undefined, // <- next entry\n\t        r: false // <- removed\n\t      };\n\t      if (!that._f) that._f = entry;\n\t      if (prev) prev.n = entry;\n\t      that[SIZE]++;\n\t      // add to index\n\t      if (index !== 'F') that._i[index] = entry;\n\t    }return that;\n\t  },\n\t  getEntry: getEntry,\n\t  setStrong: function setStrong(C, NAME, IS_MAP) {\n\t    // add .keys, .values, .entries, [@@iterator]\n\t    // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n\t    $iterDefine(C, NAME, function (iterated, kind) {\n\t      this._t = validate(iterated, NAME); // target\n\t      this._k = kind; // kind\n\t      this._l = undefined; // previous\n\t    }, function () {\n\t      var that = this;\n\t      var kind = that._k;\n\t      var entry = that._l;\n\t      // revert to the last existing entry\n\t      while (entry && entry.r) {\n\t        entry = entry.p;\n\t      } // get next entry\n\t      if (!that._t || !(that._l = entry = entry ? entry.n : that._t._f)) {\n\t        // or finish the iteration\n\t        that._t = undefined;\n\t        return step(1);\n\t      }\n\t      // return step by kind\n\t      if (kind == 'keys') return step(0, entry.k);\n\t      if (kind == 'values') return step(0, entry.v);\n\t      return step(0, [entry.k, entry.v]);\n\t    }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n\t    // add [@@species], 23.1.2.2, 23.2.2.2\n\t    setSpecies(NAME);\n\t  }\n\t};\n\n/***/ }),\n/* 424 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://github.com/DavidBruant/Map-Set.prototype.toJSON\n\tvar classof = __webpack_require__(228);\n\tvar from = __webpack_require__(419);\n\tmodule.exports = function (NAME) {\n\t  return function toJSON() {\n\t    if (classof(this) != NAME) throw TypeError(NAME + \"#toJSON isn't generic\");\n\t    return from(this);\n\t  };\n\t};\n\n/***/ }),\n/* 425 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// all enumerable object keys, includes symbols\n\tvar getKeys = __webpack_require__(44);\n\tvar gOPS = __webpack_require__(145);\n\tvar pIE = __webpack_require__(91);\n\tmodule.exports = function (it) {\n\t  var result = getKeys(it);\n\t  var getSymbols = gOPS.f;\n\t  if (getSymbols) {\n\t    var symbols = getSymbols(it);\n\t    var isEnum = pIE.f;\n\t    var i = 0;\n\t    var key;\n\t    while (symbols.length > i) {\n\t      if (isEnum.call(it, key = symbols[i++])) result.push(key);\n\t    }\n\t  }return result;\n\t};\n\n/***/ }),\n/* 426 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar document = __webpack_require__(15).document;\n\tmodule.exports = document && document.documentElement;\n\n/***/ }),\n/* 427 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// check on default Array iterator\n\tvar Iterators = __webpack_require__(56);\n\tvar ITERATOR = __webpack_require__(13)('iterator');\n\tvar ArrayProto = Array.prototype;\n\n\tmodule.exports = function (it) {\n\t  return it !== undefined && (Iterators.Array === it || ArrayProto[ITERATOR] === it);\n\t};\n\n/***/ }),\n/* 428 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// call something on iterator step with safe closing on error\n\tvar anObject = __webpack_require__(21);\n\tmodule.exports = function (iterator, fn, value, entries) {\n\t  try {\n\t    return entries ? fn(anObject(value)[0], value[1]) : fn(value);\n\t    // 7.4.6 IteratorClose(iterator, completion)\n\t  } catch (e) {\n\t    var ret = iterator['return'];\n\t    if (ret !== undefined) anObject(ret.call(iterator));\n\t    throw e;\n\t  }\n\t};\n\n/***/ }),\n/* 429 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar create = __webpack_require__(90);\n\tvar descriptor = __webpack_require__(92);\n\tvar setToStringTag = __webpack_require__(93);\n\tvar IteratorPrototype = {};\n\n\t// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\n\t__webpack_require__(29)(IteratorPrototype, __webpack_require__(13)('iterator'), function () {\n\t  return this;\n\t});\n\n\tmodule.exports = function (Constructor, NAME, next) {\n\t  Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n\t  setToStringTag(Constructor, NAME + ' Iterator');\n\t};\n\n/***/ }),\n/* 430 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getKeys = __webpack_require__(44);\n\tvar toIObject = __webpack_require__(37);\n\tmodule.exports = function (object, el) {\n\t  var O = toIObject(object);\n\t  var keys = getKeys(O);\n\t  var length = keys.length;\n\t  var index = 0;\n\t  var key;\n\t  while (length > index) {\n\t    if (O[key = keys[index++]] === el) return key;\n\t  }\n\t};\n\n/***/ }),\n/* 431 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar dP = __webpack_require__(23);\n\tvar anObject = __webpack_require__(21);\n\tvar getKeys = __webpack_require__(44);\n\n\tmodule.exports = __webpack_require__(22) ? Object.defineProperties : function defineProperties(O, Properties) {\n\t  anObject(O);\n\t  var keys = getKeys(Properties);\n\t  var length = keys.length;\n\t  var i = 0;\n\t  var P;\n\t  while (length > i) {\n\t    dP.f(O, P = keys[i++], Properties[P]);\n\t  }return O;\n\t};\n\n/***/ }),\n/* 432 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window\n\tvar toIObject = __webpack_require__(37);\n\tvar gOPN = __webpack_require__(236).f;\n\tvar toString = {}.toString;\n\n\tvar windowNames = (typeof window === 'undefined' ? 'undefined' : _typeof(window)) == 'object' && window && Object.getOwnPropertyNames ? Object.getOwnPropertyNames(window) : [];\n\n\tvar getWindowNames = function getWindowNames(it) {\n\t  try {\n\t    return gOPN(it);\n\t  } catch (e) {\n\t    return windowNames.slice();\n\t  }\n\t};\n\n\tmodule.exports.f = function getOwnPropertyNames(it) {\n\t  return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));\n\t};\n\n/***/ }),\n/* 433 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)\n\tvar has = __webpack_require__(28);\n\tvar toObject = __webpack_require__(94);\n\tvar IE_PROTO = __webpack_require__(150)('IE_PROTO');\n\tvar ObjectProto = Object.prototype;\n\n\tmodule.exports = Object.getPrototypeOf || function (O) {\n\t  O = toObject(O);\n\t  if (has(O, IE_PROTO)) return O[IE_PROTO];\n\t  if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n\t    return O.constructor.prototype;\n\t  }return O instanceof Object ? ObjectProto : null;\n\t};\n\n/***/ }),\n/* 434 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// most Object methods by ES6 should accept primitives\n\tvar $export = __webpack_require__(12);\n\tvar core = __webpack_require__(5);\n\tvar fails = __webpack_require__(27);\n\tmodule.exports = function (KEY, exec) {\n\t  var fn = (core.Object || {})[KEY] || Object[KEY];\n\t  var exp = {};\n\t  exp[KEY] = exec(fn);\n\t  $export($export.S + $export.F * fails(function () {\n\t    fn(1);\n\t  }), 'Object', exp);\n\t};\n\n/***/ }),\n/* 435 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// Works with __proto__ only. Old v8 can't work with null proto objects.\n\t/* eslint-disable no-proto */\n\tvar isObject = __webpack_require__(16);\n\tvar anObject = __webpack_require__(21);\n\tvar check = function check(O, proto) {\n\t  anObject(O);\n\t  if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n\t};\n\tmodule.exports = {\n\t  set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n\t  function (test, buggy, set) {\n\t    try {\n\t      set = __webpack_require__(43)(Function.call, __webpack_require__(235).f(Object.prototype, '__proto__').set, 2);\n\t      set(test, []);\n\t      buggy = !(test instanceof Array);\n\t    } catch (e) {\n\t      buggy = true;\n\t    }\n\t    return function setPrototypeOf(O, proto) {\n\t      check(O, proto);\n\t      if (buggy) O.__proto__ = proto;else set(O, proto);\n\t      return O;\n\t    };\n\t  }({}, false) : undefined),\n\t  check: check\n\t};\n\n/***/ }),\n/* 436 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar global = __webpack_require__(15);\n\tvar core = __webpack_require__(5);\n\tvar dP = __webpack_require__(23);\n\tvar DESCRIPTORS = __webpack_require__(22);\n\tvar SPECIES = __webpack_require__(13)('species');\n\n\tmodule.exports = function (KEY) {\n\t  var C = typeof core[KEY] == 'function' ? core[KEY] : global[KEY];\n\t  if (DESCRIPTORS && C && !C[SPECIES]) dP.f(C, SPECIES, {\n\t    configurable: true,\n\t    get: function get() {\n\t      return this;\n\t    }\n\t  });\n\t};\n\n/***/ }),\n/* 437 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar toInteger = __webpack_require__(152);\n\tvar defined = __webpack_require__(140);\n\t// true  -> String#at\n\t// false -> String#codePointAt\n\tmodule.exports = function (TO_STRING) {\n\t  return function (that, pos) {\n\t    var s = String(defined(that));\n\t    var i = toInteger(pos);\n\t    var l = s.length;\n\t    var a, b;\n\t    if (i < 0 || i >= l) return TO_STRING ? '' : undefined;\n\t    a = s.charCodeAt(i);\n\t    return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff ? TO_STRING ? s.charAt(i) : a : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;\n\t  };\n\t};\n\n/***/ }),\n/* 438 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar toInteger = __webpack_require__(152);\n\tvar max = Math.max;\n\tvar min = Math.min;\n\tmodule.exports = function (index, length) {\n\t  index = toInteger(index);\n\t  return index < 0 ? max(index + length, 0) : min(index, length);\n\t};\n\n/***/ }),\n/* 439 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar anObject = __webpack_require__(21);\n\tvar get = __webpack_require__(238);\n\tmodule.exports = __webpack_require__(5).getIterator = function (it) {\n\t  var iterFn = get(it);\n\t  if (typeof iterFn != 'function') throw TypeError(it + ' is not iterable!');\n\t  return anObject(iterFn.call(it));\n\t};\n\n/***/ }),\n/* 440 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar addToUnscopables = __webpack_require__(418);\n\tvar step = __webpack_require__(233);\n\tvar Iterators = __webpack_require__(56);\n\tvar toIObject = __webpack_require__(37);\n\n\t// 22.1.3.4 Array.prototype.entries()\n\t// 22.1.3.13 Array.prototype.keys()\n\t// 22.1.3.29 Array.prototype.values()\n\t// 22.1.3.30 Array.prototype[@@iterator]()\n\tmodule.exports = __webpack_require__(143)(Array, 'Array', function (iterated, kind) {\n\t  this._t = toIObject(iterated); // target\n\t  this._i = 0; // next index\n\t  this._k = kind; // kind\n\t  // 22.1.5.2.1 %ArrayIteratorPrototype%.next()\n\t}, function () {\n\t  var O = this._t;\n\t  var kind = this._k;\n\t  var index = this._i++;\n\t  if (!O || index >= O.length) {\n\t    this._t = undefined;\n\t    return step(1);\n\t  }\n\t  if (kind == 'keys') return step(0, index);\n\t  if (kind == 'values') return step(0, O[index]);\n\t  return step(0, [index, O[index]]);\n\t}, 'values');\n\n\t// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)\n\tIterators.Arguments = Iterators.Array;\n\n\taddToUnscopables('keys');\n\taddToUnscopables('values');\n\taddToUnscopables('entries');\n\n/***/ }),\n/* 441 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar strong = __webpack_require__(423);\n\tvar validate = __webpack_require__(58);\n\tvar MAP = 'Map';\n\n\t// 23.1 Map Objects\n\tmodule.exports = __webpack_require__(139)(MAP, function (get) {\n\t  return function Map() {\n\t    return get(this, arguments.length > 0 ? arguments[0] : undefined);\n\t  };\n\t}, {\n\t  // 23.1.3.6 Map.prototype.get(key)\n\t  get: function get(key) {\n\t    var entry = strong.getEntry(validate(this, MAP), key);\n\t    return entry && entry.v;\n\t  },\n\t  // 23.1.3.9 Map.prototype.set(key, value)\n\t  set: function set(key, value) {\n\t    return strong.def(validate(this, MAP), key === 0 ? 0 : key, value);\n\t  }\n\t}, strong, true);\n\n/***/ }),\n/* 442 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 20.1.2.6 Number.MAX_SAFE_INTEGER\n\tvar $export = __webpack_require__(12);\n\n\t$export($export.S, 'Number', { MAX_SAFE_INTEGER: 0x1fffffffffffff });\n\n/***/ }),\n/* 443 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.3.1 Object.assign(target, source)\n\tvar $export = __webpack_require__(12);\n\n\t$export($export.S + $export.F, 'Object', { assign: __webpack_require__(234) });\n\n/***/ }),\n/* 444 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar $export = __webpack_require__(12);\n\t// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\n\t$export($export.S, 'Object', { create: __webpack_require__(90) });\n\n/***/ }),\n/* 445 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.2.14 Object.keys(O)\n\tvar toObject = __webpack_require__(94);\n\tvar $keys = __webpack_require__(44);\n\n\t__webpack_require__(434)('keys', function () {\n\t  return function keys(it) {\n\t    return $keys(toObject(it));\n\t  };\n\t});\n\n/***/ }),\n/* 446 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// 19.1.3.19 Object.setPrototypeOf(O, proto)\n\tvar $export = __webpack_require__(12);\n\t$export($export.S, 'Object', { setPrototypeOf: __webpack_require__(435).set });\n\n/***/ }),\n/* 447 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar each = __webpack_require__(137)(0);\n\tvar redefine = __webpack_require__(147);\n\tvar meta = __webpack_require__(57);\n\tvar assign = __webpack_require__(234);\n\tvar weak = __webpack_require__(229);\n\tvar isObject = __webpack_require__(16);\n\tvar fails = __webpack_require__(27);\n\tvar validate = __webpack_require__(58);\n\tvar WEAK_MAP = 'WeakMap';\n\tvar getWeak = meta.getWeak;\n\tvar isExtensible = Object.isExtensible;\n\tvar uncaughtFrozenStore = weak.ufstore;\n\tvar tmp = {};\n\tvar InternalMap;\n\n\tvar wrapper = function wrapper(get) {\n\t  return function WeakMap() {\n\t    return get(this, arguments.length > 0 ? arguments[0] : undefined);\n\t  };\n\t};\n\n\tvar methods = {\n\t  // 23.3.3.3 WeakMap.prototype.get(key)\n\t  get: function get(key) {\n\t    if (isObject(key)) {\n\t      var data = getWeak(key);\n\t      if (data === true) return uncaughtFrozenStore(validate(this, WEAK_MAP)).get(key);\n\t      return data ? data[this._i] : undefined;\n\t    }\n\t  },\n\t  // 23.3.3.5 WeakMap.prototype.set(key, value)\n\t  set: function set(key, value) {\n\t    return weak.def(validate(this, WEAK_MAP), key, value);\n\t  }\n\t};\n\n\t// 23.3 WeakMap Objects\n\tvar $WeakMap = module.exports = __webpack_require__(139)(WEAK_MAP, wrapper, methods, weak, true, true);\n\n\t// IE11 WeakMap frozen keys fix\n\tif (fails(function () {\n\t  return new $WeakMap().set((Object.freeze || Object)(tmp), 7).get(tmp) != 7;\n\t})) {\n\t  InternalMap = weak.getConstructor(wrapper, WEAK_MAP);\n\t  assign(InternalMap.prototype, methods);\n\t  meta.NEED = true;\n\t  each(['delete', 'has', 'get', 'set'], function (key) {\n\t    var proto = $WeakMap.prototype;\n\t    var method = proto[key];\n\t    redefine(proto, key, function (a, b) {\n\t      // store frozen objects on internal weakmap shim\n\t      if (isObject(a) && !isExtensible(a)) {\n\t        if (!this._f) this._f = new InternalMap();\n\t        var result = this._f[key](a, b);\n\t        return key == 'set' ? this : result;\n\t        // store all the rest on native weakmap\n\t      }return method.call(this, a, b);\n\t    });\n\t  });\n\t}\n\n/***/ }),\n/* 448 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar weak = __webpack_require__(229);\n\tvar validate = __webpack_require__(58);\n\tvar WEAK_SET = 'WeakSet';\n\n\t// 23.4 WeakSet Objects\n\t__webpack_require__(139)(WEAK_SET, function (get) {\n\t  return function WeakSet() {\n\t    return get(this, arguments.length > 0 ? arguments[0] : undefined);\n\t  };\n\t}, {\n\t  // 23.4.3.1 WeakSet.prototype.add(value)\n\t  add: function add(value) {\n\t    return weak.def(validate(this, WEAK_SET), value, true);\n\t  }\n\t}, weak, false, true);\n\n/***/ }),\n/* 449 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://tc39.github.io/proposal-setmap-offrom/#sec-map.from\n\t__webpack_require__(148)('Map');\n\n/***/ }),\n/* 450 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://tc39.github.io/proposal-setmap-offrom/#sec-map.of\n\t__webpack_require__(149)('Map');\n\n/***/ }),\n/* 451 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://github.com/DavidBruant/Map-Set.prototype.toJSON\n\tvar $export = __webpack_require__(12);\n\n\t$export($export.P + $export.R, 'Map', { toJSON: __webpack_require__(424)('Map') });\n\n/***/ }),\n/* 452 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(155)('asyncIterator');\n\n/***/ }),\n/* 453 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t__webpack_require__(155)('observable');\n\n/***/ }),\n/* 454 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://tc39.github.io/proposal-setmap-offrom/#sec-weakmap.from\n\t__webpack_require__(148)('WeakMap');\n\n/***/ }),\n/* 455 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://tc39.github.io/proposal-setmap-offrom/#sec-weakmap.of\n\t__webpack_require__(149)('WeakMap');\n\n/***/ }),\n/* 456 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://tc39.github.io/proposal-setmap-offrom/#sec-weakset.from\n\t__webpack_require__(148)('WeakSet');\n\n/***/ }),\n/* 457 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// https://tc39.github.io/proposal-setmap-offrom/#sec-weakset.of\n\t__webpack_require__(149)('WeakSet');\n\n/***/ }),\n/* 458 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/**\n\t * This is the common logic for both the Node.js and web browser\n\t * implementations of `debug()`.\n\t *\n\t * Expose `debug()` as the module.\n\t */\n\n\texports = module.exports = createDebug.debug = createDebug['default'] = createDebug;\n\texports.coerce = coerce;\n\texports.disable = disable;\n\texports.enable = enable;\n\texports.enabled = enabled;\n\texports.humanize = __webpack_require__(602);\n\n\t/**\n\t * The currently active debug mode names, and names to skip.\n\t */\n\n\texports.names = [];\n\texports.skips = [];\n\n\t/**\n\t * Map of special \"%n\" handling functions, for the debug \"format\" argument.\n\t *\n\t * Valid key names are a single, lower or upper-case letter, i.e. \"n\" and \"N\".\n\t */\n\n\texports.formatters = {};\n\n\t/**\n\t * Previous log timestamp.\n\t */\n\n\tvar prevTime;\n\n\t/**\n\t * Select a color.\n\t * @param {String} namespace\n\t * @return {Number}\n\t * @api private\n\t */\n\n\tfunction selectColor(namespace) {\n\t  var hash = 0,\n\t      i;\n\n\t  for (i in namespace) {\n\t    hash = (hash << 5) - hash + namespace.charCodeAt(i);\n\t    hash |= 0; // Convert to 32bit integer\n\t  }\n\n\t  return exports.colors[Math.abs(hash) % exports.colors.length];\n\t}\n\n\t/**\n\t * Create a debugger with the given `namespace`.\n\t *\n\t * @param {String} namespace\n\t * @return {Function}\n\t * @api public\n\t */\n\n\tfunction createDebug(namespace) {\n\n\t  function debug() {\n\t    // disabled?\n\t    if (!debug.enabled) return;\n\n\t    var self = debug;\n\n\t    // set `diff` timestamp\n\t    var curr = +new Date();\n\t    var ms = curr - (prevTime || curr);\n\t    self.diff = ms;\n\t    self.prev = prevTime;\n\t    self.curr = curr;\n\t    prevTime = curr;\n\n\t    // turn the `arguments` into a proper Array\n\t    var args = new Array(arguments.length);\n\t    for (var i = 0; i < args.length; i++) {\n\t      args[i] = arguments[i];\n\t    }\n\n\t    args[0] = exports.coerce(args[0]);\n\n\t    if ('string' !== typeof args[0]) {\n\t      // anything else let's inspect with %O\n\t      args.unshift('%O');\n\t    }\n\n\t    // apply any `formatters` transformations\n\t    var index = 0;\n\t    args[0] = args[0].replace(/%([a-zA-Z%])/g, function (match, format) {\n\t      // if we encounter an escaped % then don't increase the array index\n\t      if (match === '%%') return match;\n\t      index++;\n\t      var formatter = exports.formatters[format];\n\t      if ('function' === typeof formatter) {\n\t        var val = args[index];\n\t        match = formatter.call(self, val);\n\n\t        // now we need to remove `args[index]` since it's inlined in the `format`\n\t        args.splice(index, 1);\n\t        index--;\n\t      }\n\t      return match;\n\t    });\n\n\t    // apply env-specific formatting (colors, etc.)\n\t    exports.formatArgs.call(self, args);\n\n\t    var logFn = debug.log || exports.log || console.log.bind(console);\n\t    logFn.apply(self, args);\n\t  }\n\n\t  debug.namespace = namespace;\n\t  debug.enabled = exports.enabled(namespace);\n\t  debug.useColors = exports.useColors();\n\t  debug.color = selectColor(namespace);\n\n\t  // env-specific initialization logic for debug instances\n\t  if ('function' === typeof exports.init) {\n\t    exports.init(debug);\n\t  }\n\n\t  return debug;\n\t}\n\n\t/**\n\t * Enables a debug mode by namespaces. This can include modes\n\t * separated by a colon and wildcards.\n\t *\n\t * @param {String} namespaces\n\t * @api public\n\t */\n\n\tfunction enable(namespaces) {\n\t  exports.save(namespaces);\n\n\t  exports.names = [];\n\t  exports.skips = [];\n\n\t  var split = (typeof namespaces === 'string' ? namespaces : '').split(/[\\s,]+/);\n\t  var len = split.length;\n\n\t  for (var i = 0; i < len; i++) {\n\t    if (!split[i]) continue; // ignore empty strings\n\t    namespaces = split[i].replace(/\\*/g, '.*?');\n\t    if (namespaces[0] === '-') {\n\t      exports.skips.push(new RegExp('^' + namespaces.substr(1) + '$'));\n\t    } else {\n\t      exports.names.push(new RegExp('^' + namespaces + '$'));\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * Disable debug output.\n\t *\n\t * @api public\n\t */\n\n\tfunction disable() {\n\t  exports.enable('');\n\t}\n\n\t/**\n\t * Returns true if the given mode name is enabled, false otherwise.\n\t *\n\t * @param {String} name\n\t * @return {Boolean}\n\t * @api public\n\t */\n\n\tfunction enabled(name) {\n\t  var i, len;\n\t  for (i = 0, len = exports.skips.length; i < len; i++) {\n\t    if (exports.skips[i].test(name)) {\n\t      return false;\n\t    }\n\t  }\n\t  for (i = 0, len = exports.names.length; i < len; i++) {\n\t    if (exports.names[i].test(name)) {\n\t      return true;\n\t    }\n\t  }\n\t  return false;\n\t}\n\n\t/**\n\t * Coerce `val`.\n\t *\n\t * @param {Mixed} val\n\t * @return {Mixed}\n\t * @api private\n\t */\n\n\tfunction coerce(val) {\n\t  if (val instanceof Error) return val.stack || val.message;\n\t  return val;\n\t}\n\n/***/ }),\n/* 459 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* eslint-disable guard-for-in */\n\t'use strict';\n\n\tvar repeating = __webpack_require__(615);\n\n\t// detect either spaces or tabs but not both to properly handle tabs\n\t// for indentation and spaces for alignment\n\tvar INDENT_RE = /^(?:( )+|\\t+)/;\n\n\tfunction getMostUsed(indents) {\n\t\tvar result = 0;\n\t\tvar maxUsed = 0;\n\t\tvar maxWeight = 0;\n\n\t\tfor (var n in indents) {\n\t\t\tvar indent = indents[n];\n\t\t\tvar u = indent[0];\n\t\t\tvar w = indent[1];\n\n\t\t\tif (u > maxUsed || u === maxUsed && w > maxWeight) {\n\t\t\t\tmaxUsed = u;\n\t\t\t\tmaxWeight = w;\n\t\t\t\tresult = Number(n);\n\t\t\t}\n\t\t}\n\n\t\treturn result;\n\t}\n\n\tmodule.exports = function (str) {\n\t\tif (typeof str !== 'string') {\n\t\t\tthrow new TypeError('Expected a string');\n\t\t}\n\n\t\t// used to see if tabs or spaces are the most used\n\t\tvar tabs = 0;\n\t\tvar spaces = 0;\n\n\t\t// remember the size of previous line's indentation\n\t\tvar prev = 0;\n\n\t\t// remember how many indents/unindents as occurred for a given size\n\t\t// and how much lines follow a given indentation\n\t\t//\n\t\t// indents = {\n\t\t//    3: [1, 0],\n\t\t//    4: [1, 5],\n\t\t//    5: [1, 0],\n\t\t//   12: [1, 0],\n\t\t// }\n\t\tvar indents = {};\n\n\t\t// pointer to the array of last used indent\n\t\tvar current;\n\n\t\t// whether the last action was an indent (opposed to an unindent)\n\t\tvar isIndent;\n\n\t\tstr.split(/\\n/g).forEach(function (line) {\n\t\t\tif (!line) {\n\t\t\t\t// ignore empty lines\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar indent;\n\t\t\tvar matches = line.match(INDENT_RE);\n\n\t\t\tif (!matches) {\n\t\t\t\tindent = 0;\n\t\t\t} else {\n\t\t\t\tindent = matches[0].length;\n\n\t\t\t\tif (matches[1]) {\n\t\t\t\t\tspaces++;\n\t\t\t\t} else {\n\t\t\t\t\ttabs++;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tvar diff = indent - prev;\n\t\t\tprev = indent;\n\n\t\t\tif (diff) {\n\t\t\t\t// an indent or unindent has been detected\n\n\t\t\t\tisIndent = diff > 0;\n\n\t\t\t\tcurrent = indents[isIndent ? diff : -diff];\n\n\t\t\t\tif (current) {\n\t\t\t\t\tcurrent[0]++;\n\t\t\t\t} else {\n\t\t\t\t\tcurrent = indents[diff] = [1, 0];\n\t\t\t\t}\n\t\t\t} else if (current) {\n\t\t\t\t// if the last action was an indent, increment the weight\n\t\t\t\tcurrent[1] += Number(isIndent);\n\t\t\t}\n\t\t});\n\n\t\tvar amount = getMostUsed(indents);\n\n\t\tvar type;\n\t\tvar actual;\n\t\tif (!amount) {\n\t\t\ttype = null;\n\t\t\tactual = '';\n\t\t} else if (spaces >= tabs) {\n\t\t\ttype = 'space';\n\t\t\tactual = repeating(' ', amount);\n\t\t} else {\n\t\t\ttype = 'tab';\n\t\t\tactual = repeating('\\t', amount);\n\t\t}\n\n\t\treturn {\n\t\t\tamount: amount,\n\t\t\ttype: type,\n\t\t\tindent: actual\n\t\t};\n\t};\n\n/***/ }),\n/* 460 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar matchOperatorsRe = /[|\\\\{}()[\\]^$+*?.]/g;\n\n\tmodule.exports = function (str) {\n\t\tif (typeof str !== 'string') {\n\t\t\tthrow new TypeError('Expected a string');\n\t\t}\n\n\t\treturn str.replace(matchOperatorsRe, '\\\\$&');\n\t};\n\n/***/ }),\n/* 461 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/*\n\t  Copyright (C) 2013 Yusuke Suzuki <utatane.tea@gmail.com>\n\n\t  Redistribution and use in source and binary forms, with or without\n\t  modification, are permitted provided that the following conditions are met:\n\n\t    * Redistributions of source code must retain the above copyright\n\t      notice, this list of conditions and the following disclaimer.\n\t    * Redistributions in binary form must reproduce the above copyright\n\t      notice, this list of conditions and the following disclaimer in the\n\t      documentation and/or other materials provided with the distribution.\n\n\t  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS'\n\t  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\t  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\t  ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\n\t  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n\t  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n\t  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n\t  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n\t  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t*/\n\n\t(function () {\n\t    'use strict';\n\n\t    function isExpression(node) {\n\t        if (node == null) {\n\t            return false;\n\t        }\n\t        switch (node.type) {\n\t            case 'ArrayExpression':\n\t            case 'AssignmentExpression':\n\t            case 'BinaryExpression':\n\t            case 'CallExpression':\n\t            case 'ConditionalExpression':\n\t            case 'FunctionExpression':\n\t            case 'Identifier':\n\t            case 'Literal':\n\t            case 'LogicalExpression':\n\t            case 'MemberExpression':\n\t            case 'NewExpression':\n\t            case 'ObjectExpression':\n\t            case 'SequenceExpression':\n\t            case 'ThisExpression':\n\t            case 'UnaryExpression':\n\t            case 'UpdateExpression':\n\t                return true;\n\t        }\n\t        return false;\n\t    }\n\n\t    function isIterationStatement(node) {\n\t        if (node == null) {\n\t            return false;\n\t        }\n\t        switch (node.type) {\n\t            case 'DoWhileStatement':\n\t            case 'ForInStatement':\n\t            case 'ForStatement':\n\t            case 'WhileStatement':\n\t                return true;\n\t        }\n\t        return false;\n\t    }\n\n\t    function isStatement(node) {\n\t        if (node == null) {\n\t            return false;\n\t        }\n\t        switch (node.type) {\n\t            case 'BlockStatement':\n\t            case 'BreakStatement':\n\t            case 'ContinueStatement':\n\t            case 'DebuggerStatement':\n\t            case 'DoWhileStatement':\n\t            case 'EmptyStatement':\n\t            case 'ExpressionStatement':\n\t            case 'ForInStatement':\n\t            case 'ForStatement':\n\t            case 'IfStatement':\n\t            case 'LabeledStatement':\n\t            case 'ReturnStatement':\n\t            case 'SwitchStatement':\n\t            case 'ThrowStatement':\n\t            case 'TryStatement':\n\t            case 'VariableDeclaration':\n\t            case 'WhileStatement':\n\t            case 'WithStatement':\n\t                return true;\n\t        }\n\t        return false;\n\t    }\n\n\t    function isSourceElement(node) {\n\t        return isStatement(node) || node != null && node.type === 'FunctionDeclaration';\n\t    }\n\n\t    function trailingStatement(node) {\n\t        switch (node.type) {\n\t            case 'IfStatement':\n\t                if (node.alternate != null) {\n\t                    return node.alternate;\n\t                }\n\t                return node.consequent;\n\n\t            case 'LabeledStatement':\n\t            case 'ForStatement':\n\t            case 'ForInStatement':\n\t            case 'WhileStatement':\n\t            case 'WithStatement':\n\t                return node.body;\n\t        }\n\t        return null;\n\t    }\n\n\t    function isProblematicIfStatement(node) {\n\t        var current;\n\n\t        if (node.type !== 'IfStatement') {\n\t            return false;\n\t        }\n\t        if (node.alternate == null) {\n\t            return false;\n\t        }\n\t        current = node.consequent;\n\t        do {\n\t            if (current.type === 'IfStatement') {\n\t                if (current.alternate == null) {\n\t                    return true;\n\t                }\n\t            }\n\t            current = trailingStatement(current);\n\t        } while (current);\n\n\t        return false;\n\t    }\n\n\t    module.exports = {\n\t        isExpression: isExpression,\n\t        isStatement: isStatement,\n\t        isIterationStatement: isIterationStatement,\n\t        isSourceElement: isSourceElement,\n\t        isProblematicIfStatement: isProblematicIfStatement,\n\n\t        trailingStatement: trailingStatement\n\t    };\n\t})();\n\t/* vim: set sw=4 ts=4 et tw=80 : */\n\n/***/ }),\n/* 462 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/*\n\t  Copyright (C) 2013 Yusuke Suzuki <utatane.tea@gmail.com>\n\n\t  Redistribution and use in source and binary forms, with or without\n\t  modification, are permitted provided that the following conditions are met:\n\n\t    * Redistributions of source code must retain the above copyright\n\t      notice, this list of conditions and the following disclaimer.\n\t    * Redistributions in binary form must reproduce the above copyright\n\t      notice, this list of conditions and the following disclaimer in the\n\t      documentation and/or other materials provided with the distribution.\n\n\t  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n\t  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n\t  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n\t  ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY\n\t  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n\t  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n\t  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\n\t  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\t  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n\t  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\t*/\n\n\t(function () {\n\t    'use strict';\n\n\t    var code = __webpack_require__(240);\n\n\t    function isStrictModeReservedWordES6(id) {\n\t        switch (id) {\n\t            case 'implements':\n\t            case 'interface':\n\t            case 'package':\n\t            case 'private':\n\t            case 'protected':\n\t            case 'public':\n\t            case 'static':\n\t            case 'let':\n\t                return true;\n\t            default:\n\t                return false;\n\t        }\n\t    }\n\n\t    function isKeywordES5(id, strict) {\n\t        // yield should not be treated as keyword under non-strict mode.\n\t        if (!strict && id === 'yield') {\n\t            return false;\n\t        }\n\t        return isKeywordES6(id, strict);\n\t    }\n\n\t    function isKeywordES6(id, strict) {\n\t        if (strict && isStrictModeReservedWordES6(id)) {\n\t            return true;\n\t        }\n\n\t        switch (id.length) {\n\t            case 2:\n\t                return id === 'if' || id === 'in' || id === 'do';\n\t            case 3:\n\t                return id === 'var' || id === 'for' || id === 'new' || id === 'try';\n\t            case 4:\n\t                return id === 'this' || id === 'else' || id === 'case' || id === 'void' || id === 'with' || id === 'enum';\n\t            case 5:\n\t                return id === 'while' || id === 'break' || id === 'catch' || id === 'throw' || id === 'const' || id === 'yield' || id === 'class' || id === 'super';\n\t            case 6:\n\t                return id === 'return' || id === 'typeof' || id === 'delete' || id === 'switch' || id === 'export' || id === 'import';\n\t            case 7:\n\t                return id === 'default' || id === 'finally' || id === 'extends';\n\t            case 8:\n\t                return id === 'function' || id === 'continue' || id === 'debugger';\n\t            case 10:\n\t                return id === 'instanceof';\n\t            default:\n\t                return false;\n\t        }\n\t    }\n\n\t    function isReservedWordES5(id, strict) {\n\t        return id === 'null' || id === 'true' || id === 'false' || isKeywordES5(id, strict);\n\t    }\n\n\t    function isReservedWordES6(id, strict) {\n\t        return id === 'null' || id === 'true' || id === 'false' || isKeywordES6(id, strict);\n\t    }\n\n\t    function isRestrictedWord(id) {\n\t        return id === 'eval' || id === 'arguments';\n\t    }\n\n\t    function isIdentifierNameES5(id) {\n\t        var i, iz, ch;\n\n\t        if (id.length === 0) {\n\t            return false;\n\t        }\n\n\t        ch = id.charCodeAt(0);\n\t        if (!code.isIdentifierStartES5(ch)) {\n\t            return false;\n\t        }\n\n\t        for (i = 1, iz = id.length; i < iz; ++i) {\n\t            ch = id.charCodeAt(i);\n\t            if (!code.isIdentifierPartES5(ch)) {\n\t                return false;\n\t            }\n\t        }\n\t        return true;\n\t    }\n\n\t    function decodeUtf16(lead, trail) {\n\t        return (lead - 0xD800) * 0x400 + (trail - 0xDC00) + 0x10000;\n\t    }\n\n\t    function isIdentifierNameES6(id) {\n\t        var i, iz, ch, lowCh, check;\n\n\t        if (id.length === 0) {\n\t            return false;\n\t        }\n\n\t        check = code.isIdentifierStartES6;\n\t        for (i = 0, iz = id.length; i < iz; ++i) {\n\t            ch = id.charCodeAt(i);\n\t            if (0xD800 <= ch && ch <= 0xDBFF) {\n\t                ++i;\n\t                if (i >= iz) {\n\t                    return false;\n\t                }\n\t                lowCh = id.charCodeAt(i);\n\t                if (!(0xDC00 <= lowCh && lowCh <= 0xDFFF)) {\n\t                    return false;\n\t                }\n\t                ch = decodeUtf16(ch, lowCh);\n\t            }\n\t            if (!check(ch)) {\n\t                return false;\n\t            }\n\t            check = code.isIdentifierPartES6;\n\t        }\n\t        return true;\n\t    }\n\n\t    function isIdentifierES5(id, strict) {\n\t        return isIdentifierNameES5(id) && !isReservedWordES5(id, strict);\n\t    }\n\n\t    function isIdentifierES6(id, strict) {\n\t        return isIdentifierNameES6(id) && !isReservedWordES6(id, strict);\n\t    }\n\n\t    module.exports = {\n\t        isKeywordES5: isKeywordES5,\n\t        isKeywordES6: isKeywordES6,\n\t        isReservedWordES5: isReservedWordES5,\n\t        isReservedWordES6: isReservedWordES6,\n\t        isRestrictedWord: isRestrictedWord,\n\t        isIdentifierNameES5: isIdentifierNameES5,\n\t        isIdentifierNameES6: isIdentifierNameES6,\n\t        isIdentifierES5: isIdentifierES5,\n\t        isIdentifierES6: isIdentifierES6\n\t    };\n\t})();\n\t/* vim: set sw=4 ts=4 et tw=80 : */\n\n/***/ }),\n/* 463 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tmodule.exports = __webpack_require__(630);\n\n/***/ }),\n/* 464 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar ansiRegex = __webpack_require__(180);\n\tvar re = new RegExp(ansiRegex().source); // remove the `g` flag\n\tmodule.exports = re.test.bind(re);\n\n/***/ }),\n/* 465 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\texports.read = function (buffer, offset, isLE, mLen, nBytes) {\n\t  var e, m;\n\t  var eLen = nBytes * 8 - mLen - 1;\n\t  var eMax = (1 << eLen) - 1;\n\t  var eBias = eMax >> 1;\n\t  var nBits = -7;\n\t  var i = isLE ? nBytes - 1 : 0;\n\t  var d = isLE ? -1 : 1;\n\t  var s = buffer[offset + i];\n\n\t  i += d;\n\n\t  e = s & (1 << -nBits) - 1;\n\t  s >>= -nBits;\n\t  nBits += eLen;\n\t  for (; nBits > 0; e = e * 256 + buffer[offset + i], i += d, nBits -= 8) {}\n\n\t  m = e & (1 << -nBits) - 1;\n\t  e >>= -nBits;\n\t  nBits += mLen;\n\t  for (; nBits > 0; m = m * 256 + buffer[offset + i], i += d, nBits -= 8) {}\n\n\t  if (e === 0) {\n\t    e = 1 - eBias;\n\t  } else if (e === eMax) {\n\t    return m ? NaN : (s ? -1 : 1) * Infinity;\n\t  } else {\n\t    m = m + Math.pow(2, mLen);\n\t    e = e - eBias;\n\t  }\n\t  return (s ? -1 : 1) * m * Math.pow(2, e - mLen);\n\t};\n\n\texports.write = function (buffer, value, offset, isLE, mLen, nBytes) {\n\t  var e, m, c;\n\t  var eLen = nBytes * 8 - mLen - 1;\n\t  var eMax = (1 << eLen) - 1;\n\t  var eBias = eMax >> 1;\n\t  var rt = mLen === 23 ? Math.pow(2, -24) - Math.pow(2, -77) : 0;\n\t  var i = isLE ? 0 : nBytes - 1;\n\t  var d = isLE ? 1 : -1;\n\t  var s = value < 0 || value === 0 && 1 / value < 0 ? 1 : 0;\n\n\t  value = Math.abs(value);\n\n\t  if (isNaN(value) || value === Infinity) {\n\t    m = isNaN(value) ? 1 : 0;\n\t    e = eMax;\n\t  } else {\n\t    e = Math.floor(Math.log(value) / Math.LN2);\n\t    if (value * (c = Math.pow(2, -e)) < 1) {\n\t      e--;\n\t      c *= 2;\n\t    }\n\t    if (e + eBias >= 1) {\n\t      value += rt / c;\n\t    } else {\n\t      value += rt * Math.pow(2, 1 - eBias);\n\t    }\n\t    if (value * c >= 2) {\n\t      e++;\n\t      c /= 2;\n\t    }\n\n\t    if (e + eBias >= eMax) {\n\t      m = 0;\n\t      e = eMax;\n\t    } else if (e + eBias >= 1) {\n\t      m = (value * c - 1) * Math.pow(2, mLen);\n\t      e = e + eBias;\n\t    } else {\n\t      m = value * Math.pow(2, eBias - 1) * Math.pow(2, mLen);\n\t      e = 0;\n\t    }\n\t  }\n\n\t  for (; mLen >= 8; buffer[offset + i] = m & 0xff, i += d, m /= 256, mLen -= 8) {}\n\n\t  e = e << mLen | m;\n\t  eLen += mLen;\n\t  for (; eLen > 0; buffer[offset + i] = e & 0xff, i += d, e /= 256, eLen -= 8) {}\n\n\t  buffer[offset + i - d] |= s * 128;\n\t};\n\n/***/ }),\n/* 466 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright 2013-2015, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * LICENSE file in the root directory of this source tree. An additional grant\n\t * of patent rights can be found in the PATENTS file in the same directory.\n\t */\n\n\t'use strict';\n\n\t/**\n\t * Use invariant() to assert state which your program assumes to be true.\n\t *\n\t * Provide sprintf-style format (only %s is supported) and arguments\n\t * to provide information about what broke and what you were\n\t * expecting.\n\t *\n\t * The invariant message will be stripped in production, but the invariant\n\t * will remain to ensure logic does not differ in production.\n\t */\n\n\tvar invariant = function invariant(condition, format, a, b, c, d, e, f) {\n\t  if (false) {\n\t    if (format === undefined) {\n\t      throw new Error('invariant requires an error message argument');\n\t    }\n\t  }\n\n\t  if (!condition) {\n\t    var error;\n\t    if (format === undefined) {\n\t      error = new Error('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.');\n\t    } else {\n\t      var args = [a, b, c, d, e, f];\n\t      var argIndex = 0;\n\t      error = new Error(format.replace(/%s/g, function () {\n\t        return args[argIndex++];\n\t      }));\n\t      error.name = 'Invariant Violation';\n\t    }\n\n\t    error.framesToPop = 1; // we don't care about invariant's own frame\n\t    throw error;\n\t  }\n\t};\n\n\tmodule.exports = invariant;\n\n/***/ }),\n/* 467 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar numberIsNan = __webpack_require__(603);\n\n\tmodule.exports = Number.isFinite || function (val) {\n\t\treturn !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity);\n\t};\n\n/***/ }),\n/* 468 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t// Copyright 2014, 2015, 2016, 2017 Simon Lydell\n\t// License: MIT. (See LICENSE.)\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\t// This regex comes from regex.coffee, and is inserted here by generate-index.js\n\t// (run `npm run build`).\n\texports.default = /((['\"])(?:(?!\\2|\\\\).|\\\\(?:\\r\\n|[\\s\\S]))*(\\2)?|`(?:[^`\\\\$]|\\\\[\\s\\S]|\\$(?!\\{)|\\$\\{(?:[^{}]|\\{[^}]*\\}?)*\\}?)*(`)?)|(\\/\\/.*)|(\\/\\*(?:[^*]|\\*(?!\\/))*(\\*\\/)?)|(\\/(?!\\*)(?:\\[(?:(?![\\]\\\\]).|\\\\.)*\\]|(?![\\/\\]\\\\]).|\\\\.)+\\/(?:(?!\\s*(?:\\b|[\\u0080-\\uFFFF$\\\\'\"~({]|[+\\-!](?!=)|\\.?\\d))|[gmiyu]{1,5}\\b(?![\\u0080-\\uFFFF$\\\\]|\\s*(?:[+\\-*%&|^<>!=?({]|\\/(?![\\/*])))))|(0[xX][\\da-fA-F]+|0[oO][0-7]+|0[bB][01]+|(?:\\d*\\.\\d+|\\d+\\.?)(?:[eE][+-]?\\d+)?)|((?!\\d)(?:(?!\\s)[$\\w\\u0080-\\uFFFF]|\\\\u[\\da-fA-F]{4}|\\\\u\\{[\\da-fA-F]+\\})+)|(--|\\+\\+|&&|\\|\\||=>|\\.{3}|(?:[+\\-\\/%&|^]|\\*{1,2}|<{1,2}|>{1,3}|!=?|={1,2})=?|[?~.,:;[\\](){}])|(\\s+)|(^$|[\\s\\S])/g;\n\n\texports.matchToToken = function (match) {\n\t  var token = { type: \"invalid\", value: match[0] };\n\t  if (match[1]) token.type = \"string\", token.closed = !!(match[3] || match[4]);else if (match[5]) token.type = \"comment\";else if (match[6]) token.type = \"comment\", token.closed = !!match[7];else if (match[8]) token.type = \"regex\";else if (match[9]) token.type = \"number\";else if (match[10]) token.type = \"name\";else if (match[11]) token.type = \"punctuator\";else if (match[12]) token.type = \"whitespace\";\n\t  return token;\n\t};\n\n/***/ }),\n/* 469 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module, global) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/*! https://mths.be/jsesc v1.3.0 by @mathias */\n\t;(function (root) {\n\n\t\t// Detect free variables `exports`\n\t\tvar freeExports = ( false ? 'undefined' : _typeof(exports)) == 'object' && exports;\n\n\t\t// Detect free variable `module`\n\t\tvar freeModule = ( false ? 'undefined' : _typeof(module)) == 'object' && module && module.exports == freeExports && module;\n\n\t\t// Detect free variable `global`, from Node.js or Browserified code,\n\t\t// and use it as `root`\n\t\tvar freeGlobal = (typeof global === 'undefined' ? 'undefined' : _typeof(global)) == 'object' && global;\n\t\tif (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal) {\n\t\t\troot = freeGlobal;\n\t\t}\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\tvar object = {};\n\t\tvar hasOwnProperty = object.hasOwnProperty;\n\t\tvar forOwn = function forOwn(object, callback) {\n\t\t\tvar key;\n\t\t\tfor (key in object) {\n\t\t\t\tif (hasOwnProperty.call(object, key)) {\n\t\t\t\t\tcallback(key, object[key]);\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\n\t\tvar extend = function extend(destination, source) {\n\t\t\tif (!source) {\n\t\t\t\treturn destination;\n\t\t\t}\n\t\t\tforOwn(source, function (key, value) {\n\t\t\t\tdestination[key] = value;\n\t\t\t});\n\t\t\treturn destination;\n\t\t};\n\n\t\tvar forEach = function forEach(array, callback) {\n\t\t\tvar length = array.length;\n\t\t\tvar index = -1;\n\t\t\twhile (++index < length) {\n\t\t\t\tcallback(array[index]);\n\t\t\t}\n\t\t};\n\n\t\tvar toString = object.toString;\n\t\tvar isArray = function isArray(value) {\n\t\t\treturn toString.call(value) == '[object Array]';\n\t\t};\n\t\tvar isObject = function isObject(value) {\n\t\t\t// This is a very simple check, but it’s good enough for what we need.\n\t\t\treturn toString.call(value) == '[object Object]';\n\t\t};\n\t\tvar isString = function isString(value) {\n\t\t\treturn typeof value == 'string' || toString.call(value) == '[object String]';\n\t\t};\n\t\tvar isNumber = function isNumber(value) {\n\t\t\treturn typeof value == 'number' || toString.call(value) == '[object Number]';\n\t\t};\n\t\tvar isFunction = function isFunction(value) {\n\t\t\t// In a perfect world, the `typeof` check would be sufficient. However,\n\t\t\t// in Chrome 1–12, `typeof /x/ == 'object'`, and in IE 6–8\n\t\t\t// `typeof alert == 'object'` and similar for other host objects.\n\t\t\treturn typeof value == 'function' || toString.call(value) == '[object Function]';\n\t\t};\n\t\tvar isMap = function isMap(value) {\n\t\t\treturn toString.call(value) == '[object Map]';\n\t\t};\n\t\tvar isSet = function isSet(value) {\n\t\t\treturn toString.call(value) == '[object Set]';\n\t\t};\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\t// https://mathiasbynens.be/notes/javascript-escapes#single\n\t\tvar singleEscapes = {\n\t\t\t'\"': '\\\\\"',\n\t\t\t'\\'': '\\\\\\'',\n\t\t\t'\\\\': '\\\\\\\\',\n\t\t\t'\\b': '\\\\b',\n\t\t\t'\\f': '\\\\f',\n\t\t\t'\\n': '\\\\n',\n\t\t\t'\\r': '\\\\r',\n\t\t\t'\\t': '\\\\t'\n\t\t\t// `\\v` is omitted intentionally, because in IE < 9, '\\v' == 'v'.\n\t\t\t// '\\v': '\\\\x0B'\n\t\t};\n\t\tvar regexSingleEscape = /[\"'\\\\\\b\\f\\n\\r\\t]/;\n\n\t\tvar regexDigit = /[0-9]/;\n\t\tvar regexWhitelist = /[ !#-&\\(-\\[\\]-~]/;\n\n\t\tvar jsesc = function jsesc(argument, options) {\n\t\t\t// Handle options\n\t\t\tvar defaults = {\n\t\t\t\t'escapeEverything': false,\n\t\t\t\t'escapeEtago': false,\n\t\t\t\t'quotes': 'single',\n\t\t\t\t'wrap': false,\n\t\t\t\t'es6': false,\n\t\t\t\t'json': false,\n\t\t\t\t'compact': true,\n\t\t\t\t'lowercaseHex': false,\n\t\t\t\t'numbers': 'decimal',\n\t\t\t\t'indent': '\\t',\n\t\t\t\t'__indent__': '',\n\t\t\t\t'__inline1__': false,\n\t\t\t\t'__inline2__': false\n\t\t\t};\n\t\t\tvar json = options && options.json;\n\t\t\tif (json) {\n\t\t\t\tdefaults.quotes = 'double';\n\t\t\t\tdefaults.wrap = true;\n\t\t\t}\n\t\t\toptions = extend(defaults, options);\n\t\t\tif (options.quotes != 'single' && options.quotes != 'double') {\n\t\t\t\toptions.quotes = 'single';\n\t\t\t}\n\t\t\tvar quote = options.quotes == 'double' ? '\"' : '\\'';\n\t\t\tvar compact = options.compact;\n\t\t\tvar indent = options.indent;\n\t\t\tvar lowercaseHex = options.lowercaseHex;\n\t\t\tvar oldIndent = '';\n\t\t\tvar inline1 = options.__inline1__;\n\t\t\tvar inline2 = options.__inline2__;\n\t\t\tvar newLine = compact ? '' : '\\n';\n\t\t\tvar result;\n\t\t\tvar isEmpty = true;\n\t\t\tvar useBinNumbers = options.numbers == 'binary';\n\t\t\tvar useOctNumbers = options.numbers == 'octal';\n\t\t\tvar useDecNumbers = options.numbers == 'decimal';\n\t\t\tvar useHexNumbers = options.numbers == 'hexadecimal';\n\n\t\t\tif (json && argument && isFunction(argument.toJSON)) {\n\t\t\t\targument = argument.toJSON();\n\t\t\t}\n\n\t\t\tif (!isString(argument)) {\n\t\t\t\tif (isMap(argument)) {\n\t\t\t\t\tif (argument.size == 0) {\n\t\t\t\t\t\treturn 'new Map()';\n\t\t\t\t\t}\n\t\t\t\t\tif (!compact) {\n\t\t\t\t\t\toptions.__inline1__ = true;\n\t\t\t\t\t}\n\t\t\t\t\treturn 'new Map(' + jsesc(Array.from(argument), options) + ')';\n\t\t\t\t}\n\t\t\t\tif (isSet(argument)) {\n\t\t\t\t\tif (argument.size == 0) {\n\t\t\t\t\t\treturn 'new Set()';\n\t\t\t\t\t}\n\t\t\t\t\treturn 'new Set(' + jsesc(Array.from(argument), options) + ')';\n\t\t\t\t}\n\t\t\t\tif (isArray(argument)) {\n\t\t\t\t\tresult = [];\n\t\t\t\t\toptions.wrap = true;\n\t\t\t\t\tif (inline1) {\n\t\t\t\t\t\toptions.__inline1__ = false;\n\t\t\t\t\t\toptions.__inline2__ = true;\n\t\t\t\t\t} else {\n\t\t\t\t\t\toldIndent = options.__indent__;\n\t\t\t\t\t\tindent += oldIndent;\n\t\t\t\t\t\toptions.__indent__ = indent;\n\t\t\t\t\t}\n\t\t\t\t\tforEach(argument, function (value) {\n\t\t\t\t\t\tisEmpty = false;\n\t\t\t\t\t\tif (inline2) {\n\t\t\t\t\t\t\toptions.__inline2__ = false;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tresult.push((compact || inline2 ? '' : indent) + jsesc(value, options));\n\t\t\t\t\t});\n\t\t\t\t\tif (isEmpty) {\n\t\t\t\t\t\treturn '[]';\n\t\t\t\t\t}\n\t\t\t\t\tif (inline2) {\n\t\t\t\t\t\treturn '[' + result.join(', ') + ']';\n\t\t\t\t\t}\n\t\t\t\t\treturn '[' + newLine + result.join(',' + newLine) + newLine + (compact ? '' : oldIndent) + ']';\n\t\t\t\t} else if (isNumber(argument)) {\n\t\t\t\t\tif (json) {\n\t\t\t\t\t\t// Some number values (e.g. `Infinity`) cannot be represented in JSON.\n\t\t\t\t\t\treturn JSON.stringify(argument);\n\t\t\t\t\t}\n\t\t\t\t\tif (useDecNumbers) {\n\t\t\t\t\t\treturn String(argument);\n\t\t\t\t\t}\n\t\t\t\t\tif (useHexNumbers) {\n\t\t\t\t\t\tvar tmp = argument.toString(16);\n\t\t\t\t\t\tif (!lowercaseHex) {\n\t\t\t\t\t\t\ttmp = tmp.toUpperCase();\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn '0x' + tmp;\n\t\t\t\t\t}\n\t\t\t\t\tif (useBinNumbers) {\n\t\t\t\t\t\treturn '0b' + argument.toString(2);\n\t\t\t\t\t}\n\t\t\t\t\tif (useOctNumbers) {\n\t\t\t\t\t\treturn '0o' + argument.toString(8);\n\t\t\t\t\t}\n\t\t\t\t} else if (!isObject(argument)) {\n\t\t\t\t\tif (json) {\n\t\t\t\t\t\t// For some values (e.g. `undefined`, `function` objects),\n\t\t\t\t\t\t// `JSON.stringify(value)` returns `undefined` (which isn’t valid\n\t\t\t\t\t\t// JSON) instead of `'null'`.\n\t\t\t\t\t\treturn JSON.stringify(argument) || 'null';\n\t\t\t\t\t}\n\t\t\t\t\treturn String(argument);\n\t\t\t\t} else {\n\t\t\t\t\t// it’s an object\n\t\t\t\t\tresult = [];\n\t\t\t\t\toptions.wrap = true;\n\t\t\t\t\toldIndent = options.__indent__;\n\t\t\t\t\tindent += oldIndent;\n\t\t\t\t\toptions.__indent__ = indent;\n\t\t\t\t\tforOwn(argument, function (key, value) {\n\t\t\t\t\t\tisEmpty = false;\n\t\t\t\t\t\tresult.push((compact ? '' : indent) + jsesc(key, options) + ':' + (compact ? '' : ' ') + jsesc(value, options));\n\t\t\t\t\t});\n\t\t\t\t\tif (isEmpty) {\n\t\t\t\t\t\treturn '{}';\n\t\t\t\t\t}\n\t\t\t\t\treturn '{' + newLine + result.join(',' + newLine) + newLine + (compact ? '' : oldIndent) + '}';\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tvar string = argument;\n\t\t\t// Loop over each code unit in the string and escape it\n\t\t\tvar index = -1;\n\t\t\tvar length = string.length;\n\t\t\tvar first;\n\t\t\tvar second;\n\t\t\tvar codePoint;\n\t\t\tresult = '';\n\t\t\twhile (++index < length) {\n\t\t\t\tvar character = string.charAt(index);\n\t\t\t\tif (options.es6) {\n\t\t\t\t\tfirst = string.charCodeAt(index);\n\t\t\t\t\tif ( // check if it’s the start of a surrogate pair\n\t\t\t\t\tfirst >= 0xD800 && first <= 0xDBFF && // high surrogate\n\t\t\t\t\tlength > index + 1 // there is a next code unit\n\t\t\t\t\t) {\n\t\t\t\t\t\t\tsecond = string.charCodeAt(index + 1);\n\t\t\t\t\t\t\tif (second >= 0xDC00 && second <= 0xDFFF) {\n\t\t\t\t\t\t\t\t// low surrogate\n\t\t\t\t\t\t\t\t// https://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n\t\t\t\t\t\t\t\tcodePoint = (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000;\n\t\t\t\t\t\t\t\tvar hexadecimal = codePoint.toString(16);\n\t\t\t\t\t\t\t\tif (!lowercaseHex) {\n\t\t\t\t\t\t\t\t\thexadecimal = hexadecimal.toUpperCase();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tresult += '\\\\u{' + hexadecimal + '}';\n\t\t\t\t\t\t\t\tindex++;\n\t\t\t\t\t\t\t\tcontinue;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (!options.escapeEverything) {\n\t\t\t\t\tif (regexWhitelist.test(character)) {\n\t\t\t\t\t\t// It’s a printable ASCII character that is not `\"`, `'` or `\\`,\n\t\t\t\t\t\t// so don’t escape it.\n\t\t\t\t\t\tresult += character;\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\tif (character == '\"') {\n\t\t\t\t\t\tresult += quote == character ? '\\\\\"' : character;\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t\tif (character == '\\'') {\n\t\t\t\t\t\tresult += quote == character ? '\\\\\\'' : character;\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (character == '\\0' && !json && !regexDigit.test(string.charAt(index + 1))) {\n\t\t\t\t\tresult += '\\\\0';\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tif (regexSingleEscape.test(character)) {\n\t\t\t\t\t// no need for a `hasOwnProperty` check here\n\t\t\t\t\tresult += singleEscapes[character];\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tvar charCode = character.charCodeAt(0);\n\t\t\t\tvar hexadecimal = charCode.toString(16);\n\t\t\t\tif (!lowercaseHex) {\n\t\t\t\t\thexadecimal = hexadecimal.toUpperCase();\n\t\t\t\t}\n\t\t\t\tvar longhand = hexadecimal.length > 2 || json;\n\t\t\t\tvar escaped = '\\\\' + (longhand ? 'u' : 'x') + ('0000' + hexadecimal).slice(longhand ? -4 : -2);\n\t\t\t\tresult += escaped;\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tif (options.wrap) {\n\t\t\t\tresult = quote + result + quote;\n\t\t\t}\n\t\t\tif (options.escapeEtago) {\n\t\t\t\t// https://mathiasbynens.be/notes/etago\n\t\t\t\treturn result.replace(/<\\/(script|style)/gi, '<\\\\/$1');\n\t\t\t}\n\t\t\treturn result;\n\t\t};\n\n\t\tjsesc.version = '1.3.0';\n\n\t\t/*--------------------------------------------------------------------------*/\n\n\t\t// Some AMD build optimizers, like r.js, check for specific condition patterns\n\t\t// like the following:\n\t\tif (\"function\" == 'function' && _typeof(__webpack_require__(49)) == 'object' && __webpack_require__(49)) {\n\t\t\t!(__WEBPACK_AMD_DEFINE_RESULT__ = function () {\n\t\t\t\treturn jsesc;\n\t\t\t}.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n\t\t} else if (freeExports && !freeExports.nodeType) {\n\t\t\tif (freeModule) {\n\t\t\t\t// in Node.js or RingoJS v0.8.0+\n\t\t\t\tfreeModule.exports = jsesc;\n\t\t\t} else {\n\t\t\t\t// in Narwhal or RingoJS v0.7.0-\n\t\t\t\tfreeExports.jsesc = jsesc;\n\t\t\t}\n\t\t} else {\n\t\t\t// in Rhino or a web browser\n\t\t\troot.jsesc = jsesc;\n\t\t}\n\t})(undefined);\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module), (function() { return this; }())))\n\n/***/ }),\n/* 470 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t// json5.js\n\t// Modern JSON. See README.md for details.\n\t//\n\t// This file is based directly off of Douglas Crockford's json_parse.js:\n\t// https://github.com/douglascrockford/JSON-js/blob/master/json_parse.js\n\n\tvar JSON5 = ( false ? \"undefined\" : _typeof(exports)) === 'object' ? exports : {};\n\n\tJSON5.parse = function () {\n\t    \"use strict\";\n\n\t    // This is a function that can parse a JSON5 text, producing a JavaScript\n\t    // data structure. It is a simple, recursive descent parser. It does not use\n\t    // eval or regular expressions, so it can be used as a model for implementing\n\t    // a JSON5 parser in other languages.\n\n\t    // We are defining the function inside of another function to avoid creating\n\t    // global variables.\n\n\t    var at,\n\t        // The index of the current character\n\t    lineNumber,\n\t        // The current line number\n\t    columnNumber,\n\t        // The current column number\n\t    ch,\n\t        // The current character\n\t    escapee = {\n\t        \"'\": \"'\",\n\t        '\"': '\"',\n\t        '\\\\': '\\\\',\n\t        '/': '/',\n\t        '\\n': '', // Replace escaped newlines in strings w/ empty string\n\t        b: '\\b',\n\t        f: '\\f',\n\t        n: '\\n',\n\t        r: '\\r',\n\t        t: '\\t'\n\t    },\n\t        ws = [' ', '\\t', '\\r', '\\n', '\\v', '\\f', '\\xA0', \"\\uFEFF\"],\n\t        text,\n\t        renderChar = function renderChar(chr) {\n\t        return chr === '' ? 'EOF' : \"'\" + chr + \"'\";\n\t    },\n\t        error = function error(m) {\n\n\t        // Call error when something is wrong.\n\n\t        var error = new SyntaxError();\n\t        // beginning of message suffix to agree with that provided by Gecko - see https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse\n\t        error.message = m + \" at line \" + lineNumber + \" column \" + columnNumber + \" of the JSON5 data. Still to read: \" + JSON.stringify(text.substring(at - 1, at + 19));\n\t        error.at = at;\n\t        // These two property names have been chosen to agree with the ones in Gecko, the only popular\n\t        // environment which seems to supply this info on JSON.parse\n\t        error.lineNumber = lineNumber;\n\t        error.columnNumber = columnNumber;\n\t        throw error;\n\t    },\n\t        next = function next(c) {\n\n\t        // If a c parameter is provided, verify that it matches the current character.\n\n\t        if (c && c !== ch) {\n\t            error(\"Expected \" + renderChar(c) + \" instead of \" + renderChar(ch));\n\t        }\n\n\t        // Get the next character. When there are no more characters,\n\t        // return the empty string.\n\n\t        ch = text.charAt(at);\n\t        at++;\n\t        columnNumber++;\n\t        if (ch === '\\n' || ch === '\\r' && peek() !== '\\n') {\n\t            lineNumber++;\n\t            columnNumber = 0;\n\t        }\n\t        return ch;\n\t    },\n\t        peek = function peek() {\n\n\t        // Get the next character without consuming it or\n\t        // assigning it to the ch varaible.\n\n\t        return text.charAt(at);\n\t    },\n\t        identifier = function identifier() {\n\n\t        // Parse an identifier. Normally, reserved words are disallowed here, but we\n\t        // only use this for unquoted object keys, where reserved words are allowed,\n\t        // so we don't check for those here. References:\n\t        // - http://es5.github.com/#x7.6\n\t        // - https://developer.mozilla.org/en/Core_JavaScript_1.5_Guide/Core_Language_Features#Variables\n\t        // - http://docstore.mik.ua/orelly/webprog/jscript/ch02_07.htm\n\t        // TODO Identifiers can have Unicode \"letters\" in them; add support for those.\n\n\t        var key = ch;\n\n\t        // Identifiers must start with a letter, _ or $.\n\t        if (ch !== '_' && ch !== '$' && (ch < 'a' || ch > 'z') && (ch < 'A' || ch > 'Z')) {\n\t            error(\"Bad identifier as unquoted key\");\n\t        }\n\n\t        // Subsequent characters can contain digits.\n\t        while (next() && (ch === '_' || ch === '$' || ch >= 'a' && ch <= 'z' || ch >= 'A' && ch <= 'Z' || ch >= '0' && ch <= '9')) {\n\t            key += ch;\n\t        }\n\n\t        return key;\n\t    },\n\t        number = function number() {\n\n\t        // Parse a number value.\n\n\t        var number,\n\t            sign = '',\n\t            string = '',\n\t            base = 10;\n\n\t        if (ch === '-' || ch === '+') {\n\t            sign = ch;\n\t            next(ch);\n\t        }\n\n\t        // support for Infinity (could tweak to allow other words):\n\t        if (ch === 'I') {\n\t            number = word();\n\t            if (typeof number !== 'number' || isNaN(number)) {\n\t                error('Unexpected word for number');\n\t            }\n\t            return sign === '-' ? -number : number;\n\t        }\n\n\t        // support for NaN\n\t        if (ch === 'N') {\n\t            number = word();\n\t            if (!isNaN(number)) {\n\t                error('expected word to be NaN');\n\t            }\n\t            // ignore sign as -NaN also is NaN\n\t            return number;\n\t        }\n\n\t        if (ch === '0') {\n\t            string += ch;\n\t            next();\n\t            if (ch === 'x' || ch === 'X') {\n\t                string += ch;\n\t                next();\n\t                base = 16;\n\t            } else if (ch >= '0' && ch <= '9') {\n\t                error('Octal literal');\n\t            }\n\t        }\n\n\t        switch (base) {\n\t            case 10:\n\t                while (ch >= '0' && ch <= '9') {\n\t                    string += ch;\n\t                    next();\n\t                }\n\t                if (ch === '.') {\n\t                    string += '.';\n\t                    while (next() && ch >= '0' && ch <= '9') {\n\t                        string += ch;\n\t                    }\n\t                }\n\t                if (ch === 'e' || ch === 'E') {\n\t                    string += ch;\n\t                    next();\n\t                    if (ch === '-' || ch === '+') {\n\t                        string += ch;\n\t                        next();\n\t                    }\n\t                    while (ch >= '0' && ch <= '9') {\n\t                        string += ch;\n\t                        next();\n\t                    }\n\t                }\n\t                break;\n\t            case 16:\n\t                while (ch >= '0' && ch <= '9' || ch >= 'A' && ch <= 'F' || ch >= 'a' && ch <= 'f') {\n\t                    string += ch;\n\t                    next();\n\t                }\n\t                break;\n\t        }\n\n\t        if (sign === '-') {\n\t            number = -string;\n\t        } else {\n\t            number = +string;\n\t        }\n\n\t        if (!isFinite(number)) {\n\t            error(\"Bad number\");\n\t        } else {\n\t            return number;\n\t        }\n\t    },\n\t        string = function string() {\n\n\t        // Parse a string value.\n\n\t        var hex,\n\t            i,\n\t            string = '',\n\t            delim,\n\t            // double quote or single quote\n\t        uffff;\n\n\t        // When parsing for string values, we must look for ' or \" and \\ characters.\n\n\t        if (ch === '\"' || ch === \"'\") {\n\t            delim = ch;\n\t            while (next()) {\n\t                if (ch === delim) {\n\t                    next();\n\t                    return string;\n\t                } else if (ch === '\\\\') {\n\t                    next();\n\t                    if (ch === 'u') {\n\t                        uffff = 0;\n\t                        for (i = 0; i < 4; i += 1) {\n\t                            hex = parseInt(next(), 16);\n\t                            if (!isFinite(hex)) {\n\t                                break;\n\t                            }\n\t                            uffff = uffff * 16 + hex;\n\t                        }\n\t                        string += String.fromCharCode(uffff);\n\t                    } else if (ch === '\\r') {\n\t                        if (peek() === '\\n') {\n\t                            next();\n\t                        }\n\t                    } else if (typeof escapee[ch] === 'string') {\n\t                        string += escapee[ch];\n\t                    } else {\n\t                        break;\n\t                    }\n\t                } else if (ch === '\\n') {\n\t                    // unescaped newlines are invalid; see:\n\t                    // https://github.com/aseemk/json5/issues/24\n\t                    // TODO this feels special-cased; are there other\n\t                    // invalid unescaped chars?\n\t                    break;\n\t                } else {\n\t                    string += ch;\n\t                }\n\t            }\n\t        }\n\t        error(\"Bad string\");\n\t    },\n\t        inlineComment = function inlineComment() {\n\n\t        // Skip an inline comment, assuming this is one. The current character should\n\t        // be the second / character in the // pair that begins this inline comment.\n\t        // To finish the inline comment, we look for a newline or the end of the text.\n\n\t        if (ch !== '/') {\n\t            error(\"Not an inline comment\");\n\t        }\n\n\t        do {\n\t            next();\n\t            if (ch === '\\n' || ch === '\\r') {\n\t                next();\n\t                return;\n\t            }\n\t        } while (ch);\n\t    },\n\t        blockComment = function blockComment() {\n\n\t        // Skip a block comment, assuming this is one. The current character should be\n\t        // the * character in the /* pair that begins this block comment.\n\t        // To finish the block comment, we look for an ending */ pair of characters,\n\t        // but we also watch for the end of text before the comment is terminated.\n\n\t        if (ch !== '*') {\n\t            error(\"Not a block comment\");\n\t        }\n\n\t        do {\n\t            next();\n\t            while (ch === '*') {\n\t                next('*');\n\t                if (ch === '/') {\n\t                    next('/');\n\t                    return;\n\t                }\n\t            }\n\t        } while (ch);\n\n\t        error(\"Unterminated block comment\");\n\t    },\n\t        comment = function comment() {\n\n\t        // Skip a comment, whether inline or block-level, assuming this is one.\n\t        // Comments always begin with a / character.\n\n\t        if (ch !== '/') {\n\t            error(\"Not a comment\");\n\t        }\n\n\t        next('/');\n\n\t        if (ch === '/') {\n\t            inlineComment();\n\t        } else if (ch === '*') {\n\t            blockComment();\n\t        } else {\n\t            error(\"Unrecognized comment\");\n\t        }\n\t    },\n\t        white = function white() {\n\n\t        // Skip whitespace and comments.\n\t        // Note that we're detecting comments by only a single / character.\n\t        // This works since regular expressions are not valid JSON(5), but this will\n\t        // break if there are other valid values that begin with a / character!\n\n\t        while (ch) {\n\t            if (ch === '/') {\n\t                comment();\n\t            } else if (ws.indexOf(ch) >= 0) {\n\t                next();\n\t            } else {\n\t                return;\n\t            }\n\t        }\n\t    },\n\t        word = function word() {\n\n\t        // true, false, or null.\n\n\t        switch (ch) {\n\t            case 't':\n\t                next('t');\n\t                next('r');\n\t                next('u');\n\t                next('e');\n\t                return true;\n\t            case 'f':\n\t                next('f');\n\t                next('a');\n\t                next('l');\n\t                next('s');\n\t                next('e');\n\t                return false;\n\t            case 'n':\n\t                next('n');\n\t                next('u');\n\t                next('l');\n\t                next('l');\n\t                return null;\n\t            case 'I':\n\t                next('I');\n\t                next('n');\n\t                next('f');\n\t                next('i');\n\t                next('n');\n\t                next('i');\n\t                next('t');\n\t                next('y');\n\t                return Infinity;\n\t            case 'N':\n\t                next('N');\n\t                next('a');\n\t                next('N');\n\t                return NaN;\n\t        }\n\t        error(\"Unexpected \" + renderChar(ch));\n\t    },\n\t        value,\n\t        // Place holder for the value function.\n\n\t    array = function array() {\n\n\t        // Parse an array value.\n\n\t        var array = [];\n\n\t        if (ch === '[') {\n\t            next('[');\n\t            white();\n\t            while (ch) {\n\t                if (ch === ']') {\n\t                    next(']');\n\t                    return array; // Potentially empty array\n\t                }\n\t                // ES5 allows omitting elements in arrays, e.g. [,] and\n\t                // [,null]. We don't allow this in JSON5.\n\t                if (ch === ',') {\n\t                    error(\"Missing array element\");\n\t                } else {\n\t                    array.push(value());\n\t                }\n\t                white();\n\t                // If there's no comma after this value, this needs to\n\t                // be the end of the array.\n\t                if (ch !== ',') {\n\t                    next(']');\n\t                    return array;\n\t                }\n\t                next(',');\n\t                white();\n\t            }\n\t        }\n\t        error(\"Bad array\");\n\t    },\n\t        object = function object() {\n\n\t        // Parse an object value.\n\n\t        var key,\n\t            object = {};\n\n\t        if (ch === '{') {\n\t            next('{');\n\t            white();\n\t            while (ch) {\n\t                if (ch === '}') {\n\t                    next('}');\n\t                    return object; // Potentially empty object\n\t                }\n\n\t                // Keys can be unquoted. If they are, they need to be\n\t                // valid JS identifiers.\n\t                if (ch === '\"' || ch === \"'\") {\n\t                    key = string();\n\t                } else {\n\t                    key = identifier();\n\t                }\n\n\t                white();\n\t                next(':');\n\t                object[key] = value();\n\t                white();\n\t                // If there's no comma after this pair, this needs to be\n\t                // the end of the object.\n\t                if (ch !== ',') {\n\t                    next('}');\n\t                    return object;\n\t                }\n\t                next(',');\n\t                white();\n\t            }\n\t        }\n\t        error(\"Bad object\");\n\t    };\n\n\t    value = function value() {\n\n\t        // Parse a JSON value. It could be an object, an array, a string, a number,\n\t        // or a word.\n\n\t        white();\n\t        switch (ch) {\n\t            case '{':\n\t                return object();\n\t            case '[':\n\t                return array();\n\t            case '\"':\n\t            case \"'\":\n\t                return string();\n\t            case '-':\n\t            case '+':\n\t            case '.':\n\t                return number();\n\t            default:\n\t                return ch >= '0' && ch <= '9' ? number() : word();\n\t        }\n\t    };\n\n\t    // Return the json_parse function. It will have access to all of the above\n\t    // functions and variables.\n\n\t    return function (source, reviver) {\n\t        var result;\n\n\t        text = String(source);\n\t        at = 0;\n\t        lineNumber = 1;\n\t        columnNumber = 1;\n\t        ch = ' ';\n\t        result = value();\n\t        white();\n\t        if (ch) {\n\t            error(\"Syntax error\");\n\t        }\n\n\t        // If there is a reviver function, we recursively walk the new structure,\n\t        // passing each name/value pair to the reviver function for possible\n\t        // transformation, starting with a temporary root object that holds the result\n\t        // in an empty key. If there is not a reviver function, we simply return the\n\t        // result.\n\n\t        return typeof reviver === 'function' ? function walk(holder, key) {\n\t            var k,\n\t                v,\n\t                value = holder[key];\n\t            if (value && (typeof value === \"undefined\" ? \"undefined\" : _typeof(value)) === 'object') {\n\t                for (k in value) {\n\t                    if (Object.prototype.hasOwnProperty.call(value, k)) {\n\t                        v = walk(value, k);\n\t                        if (v !== undefined) {\n\t                            value[k] = v;\n\t                        } else {\n\t                            delete value[k];\n\t                        }\n\t                    }\n\t                }\n\t            }\n\t            return reviver.call(holder, key, value);\n\t        }({ '': result }, '') : result;\n\t    };\n\t}();\n\n\t// JSON5 stringify will not quote keys where appropriate\n\tJSON5.stringify = function (obj, replacer, space) {\n\t    if (replacer && typeof replacer !== \"function\" && !isArray(replacer)) {\n\t        throw new Error('Replacer must be a function or an array');\n\t    }\n\t    var getReplacedValueOrUndefined = function getReplacedValueOrUndefined(holder, key, isTopLevel) {\n\t        var value = holder[key];\n\n\t        // Replace the value with its toJSON value first, if possible\n\t        if (value && value.toJSON && typeof value.toJSON === \"function\") {\n\t            value = value.toJSON();\n\t        }\n\n\t        // If the user-supplied replacer if a function, call it. If it's an array, check objects' string keys for\n\t        // presence in the array (removing the key/value pair from the resulting JSON if the key is missing).\n\t        if (typeof replacer === \"function\") {\n\t            return replacer.call(holder, key, value);\n\t        } else if (replacer) {\n\t            if (isTopLevel || isArray(holder) || replacer.indexOf(key) >= 0) {\n\t                return value;\n\t            } else {\n\t                return undefined;\n\t            }\n\t        } else {\n\t            return value;\n\t        }\n\t    };\n\n\t    function isWordChar(c) {\n\t        return c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z' || c >= '0' && c <= '9' || c === '_' || c === '$';\n\t    }\n\n\t    function isWordStart(c) {\n\t        return c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z' || c === '_' || c === '$';\n\t    }\n\n\t    function isWord(key) {\n\t        if (typeof key !== 'string') {\n\t            return false;\n\t        }\n\t        if (!isWordStart(key[0])) {\n\t            return false;\n\t        }\n\t        var i = 1,\n\t            length = key.length;\n\t        while (i < length) {\n\t            if (!isWordChar(key[i])) {\n\t                return false;\n\t            }\n\t            i++;\n\t        }\n\t        return true;\n\t    }\n\n\t    // export for use in tests\n\t    JSON5.isWord = isWord;\n\n\t    // polyfills\n\t    function isArray(obj) {\n\t        if (Array.isArray) {\n\t            return Array.isArray(obj);\n\t        } else {\n\t            return Object.prototype.toString.call(obj) === '[object Array]';\n\t        }\n\t    }\n\n\t    function isDate(obj) {\n\t        return Object.prototype.toString.call(obj) === '[object Date]';\n\t    }\n\n\t    var objStack = [];\n\t    function checkForCircular(obj) {\n\t        for (var i = 0; i < objStack.length; i++) {\n\t            if (objStack[i] === obj) {\n\t                throw new TypeError(\"Converting circular structure to JSON\");\n\t            }\n\t        }\n\t    }\n\n\t    function makeIndent(str, num, noNewLine) {\n\t        if (!str) {\n\t            return \"\";\n\t        }\n\t        // indentation no more than 10 chars\n\t        if (str.length > 10) {\n\t            str = str.substring(0, 10);\n\t        }\n\n\t        var indent = noNewLine ? \"\" : \"\\n\";\n\t        for (var i = 0; i < num; i++) {\n\t            indent += str;\n\t        }\n\n\t        return indent;\n\t    }\n\n\t    var indentStr;\n\t    if (space) {\n\t        if (typeof space === \"string\") {\n\t            indentStr = space;\n\t        } else if (typeof space === \"number\" && space >= 0) {\n\t            indentStr = makeIndent(\" \", space, true);\n\t        } else {\n\t            // ignore space parameter\n\t        }\n\t    }\n\n\t    // Copied from Crokford's implementation of JSON\n\t    // See https://github.com/douglascrockford/JSON-js/blob/e39db4b7e6249f04a195e7dd0840e610cc9e941e/json2.js#L195\n\t    // Begin\n\t    var cx = /[\\u0000\\u00ad\\u0600-\\u0604\\u070f\\u17b4\\u17b5\\u200c-\\u200f\\u2028-\\u202f\\u2060-\\u206f\\ufeff\\ufff0-\\uffff]/g,\n\t        escapable = /[\\\\\\\"\\x00-\\x1f\\x7f-\\x9f\\u00ad\\u0600-\\u0604\\u070f\\u17b4\\u17b5\\u200c-\\u200f\\u2028-\\u202f\\u2060-\\u206f\\ufeff\\ufff0-\\uffff]/g,\n\t        meta = { // table of character substitutions\n\t        '\\b': '\\\\b',\n\t        '\\t': '\\\\t',\n\t        '\\n': '\\\\n',\n\t        '\\f': '\\\\f',\n\t        '\\r': '\\\\r',\n\t        '\"': '\\\\\"',\n\t        '\\\\': '\\\\\\\\'\n\t    };\n\t    function escapeString(string) {\n\n\t        // If the string contains no control characters, no quote characters, and no\n\t        // backslash characters, then we can safely slap some quotes around it.\n\t        // Otherwise we must also replace the offending characters with safe escape\n\t        // sequences.\n\t        escapable.lastIndex = 0;\n\t        return escapable.test(string) ? '\"' + string.replace(escapable, function (a) {\n\t            var c = meta[a];\n\t            return typeof c === 'string' ? c : \"\\\\u\" + ('0000' + a.charCodeAt(0).toString(16)).slice(-4);\n\t        }) + '\"' : '\"' + string + '\"';\n\t    }\n\t    // End\n\n\t    function internalStringify(holder, key, isTopLevel) {\n\t        var buffer, res;\n\n\t        // Replace the value, if necessary\n\t        var obj_part = getReplacedValueOrUndefined(holder, key, isTopLevel);\n\n\t        if (obj_part && !isDate(obj_part)) {\n\t            // unbox objects\n\t            // don't unbox dates, since will turn it into number\n\t            obj_part = obj_part.valueOf();\n\t        }\n\t        switch (typeof obj_part === \"undefined\" ? \"undefined\" : _typeof(obj_part)) {\n\t            case \"boolean\":\n\t                return obj_part.toString();\n\n\t            case \"number\":\n\t                if (isNaN(obj_part) || !isFinite(obj_part)) {\n\t                    return \"null\";\n\t                }\n\t                return obj_part.toString();\n\n\t            case \"string\":\n\t                return escapeString(obj_part.toString());\n\n\t            case \"object\":\n\t                if (obj_part === null) {\n\t                    return \"null\";\n\t                } else if (isArray(obj_part)) {\n\t                    checkForCircular(obj_part);\n\t                    buffer = \"[\";\n\t                    objStack.push(obj_part);\n\n\t                    for (var i = 0; i < obj_part.length; i++) {\n\t                        res = internalStringify(obj_part, i, false);\n\t                        buffer += makeIndent(indentStr, objStack.length);\n\t                        if (res === null || typeof res === \"undefined\") {\n\t                            buffer += \"null\";\n\t                        } else {\n\t                            buffer += res;\n\t                        }\n\t                        if (i < obj_part.length - 1) {\n\t                            buffer += \",\";\n\t                        } else if (indentStr) {\n\t                            buffer += \"\\n\";\n\t                        }\n\t                    }\n\t                    objStack.pop();\n\t                    if (obj_part.length) {\n\t                        buffer += makeIndent(indentStr, objStack.length, true);\n\t                    }\n\t                    buffer += \"]\";\n\t                } else {\n\t                    checkForCircular(obj_part);\n\t                    buffer = \"{\";\n\t                    var nonEmpty = false;\n\t                    objStack.push(obj_part);\n\t                    for (var prop in obj_part) {\n\t                        if (obj_part.hasOwnProperty(prop)) {\n\t                            var value = internalStringify(obj_part, prop, false);\n\t                            isTopLevel = false;\n\t                            if (typeof value !== \"undefined\" && value !== null) {\n\t                                buffer += makeIndent(indentStr, objStack.length);\n\t                                nonEmpty = true;\n\t                                key = isWord(prop) ? prop : escapeString(prop);\n\t                                buffer += key + \":\" + (indentStr ? ' ' : '') + value + \",\";\n\t                            }\n\t                        }\n\t                    }\n\t                    objStack.pop();\n\t                    if (nonEmpty) {\n\t                        buffer = buffer.substring(0, buffer.length - 1) + makeIndent(indentStr, objStack.length) + \"}\";\n\t                    } else {\n\t                        buffer = '{}';\n\t                    }\n\t                }\n\t                return buffer;\n\t            default:\n\t                // functions and undefined should be ignored\n\t                return undefined;\n\t        }\n\t    }\n\n\t    // special case...when undefined is used inside of\n\t    // a compound object/array, return null.\n\t    // but when top-level, return undefined\n\t    var topLevelHolder = { \"\": obj };\n\t    if (obj === undefined) {\n\t        return getReplacedValueOrUndefined(topLevelHolder, '', true);\n\t    }\n\t    return internalStringify(topLevelHolder, '', true);\n\t};\n\n/***/ }),\n/* 471 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar arr = [];\n\tvar charCodeCache = [];\n\n\tmodule.exports = function (a, b) {\n\t\tif (a === b) {\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar aLen = a.length;\n\t\tvar bLen = b.length;\n\n\t\tif (aLen === 0) {\n\t\t\treturn bLen;\n\t\t}\n\n\t\tif (bLen === 0) {\n\t\t\treturn aLen;\n\t\t}\n\n\t\tvar bCharCode;\n\t\tvar ret;\n\t\tvar tmp;\n\t\tvar tmp2;\n\t\tvar i = 0;\n\t\tvar j = 0;\n\n\t\twhile (i < aLen) {\n\t\t\tcharCodeCache[i] = a.charCodeAt(i);\n\t\t\tarr[i] = ++i;\n\t\t}\n\n\t\twhile (j < bLen) {\n\t\t\tbCharCode = b.charCodeAt(j);\n\t\t\ttmp = j++;\n\t\t\tret = j;\n\n\t\t\tfor (i = 0; i < aLen; i++) {\n\t\t\t\ttmp2 = bCharCode === charCodeCache[i] ? tmp : tmp + 1;\n\t\t\t\ttmp = arr[i];\n\t\t\t\tret = arr[i] = tmp > ret ? tmp2 > ret ? ret + 1 : tmp2 : tmp2 > tmp ? tmp + 1 : tmp2;\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t};\n\n/***/ }),\n/* 472 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38),\n\t    root = __webpack_require__(17);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar DataView = getNative(root, 'DataView');\n\n\tmodule.exports = DataView;\n\n/***/ }),\n/* 473 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar hashClear = __webpack_require__(536),\n\t    hashDelete = __webpack_require__(537),\n\t    hashGet = __webpack_require__(538),\n\t    hashHas = __webpack_require__(539),\n\t    hashSet = __webpack_require__(540);\n\n\t/**\n\t * Creates a hash object.\n\t *\n\t * @private\n\t * @constructor\n\t * @param {Array} [entries] The key-value pairs to cache.\n\t */\n\tfunction Hash(entries) {\n\t    var index = -1,\n\t        length = entries == null ? 0 : entries.length;\n\n\t    this.clear();\n\t    while (++index < length) {\n\t        var entry = entries[index];\n\t        this.set(entry[0], entry[1]);\n\t    }\n\t}\n\n\t// Add methods to `Hash`.\n\tHash.prototype.clear = hashClear;\n\tHash.prototype['delete'] = hashDelete;\n\tHash.prototype.get = hashGet;\n\tHash.prototype.has = hashHas;\n\tHash.prototype.set = hashSet;\n\n\tmodule.exports = Hash;\n\n/***/ }),\n/* 474 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38),\n\t    root = __webpack_require__(17);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar Promise = getNative(root, 'Promise');\n\n\tmodule.exports = Promise;\n\n/***/ }),\n/* 475 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getNative = __webpack_require__(38),\n\t    root = __webpack_require__(17);\n\n\t/* Built-in method references that are verified to be native. */\n\tvar WeakMap = getNative(root, 'WeakMap');\n\n\tmodule.exports = WeakMap;\n\n/***/ }),\n/* 476 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Adds the key-value `pair` to `map`.\n\t *\n\t * @private\n\t * @param {Object} map The map to modify.\n\t * @param {Array} pair The key-value pair to add.\n\t * @returns {Object} Returns `map`.\n\t */\n\tfunction addMapEntry(map, pair) {\n\t  // Don't return `map.set` because it's not chainable in IE 11.\n\t  map.set(pair[0], pair[1]);\n\t  return map;\n\t}\n\n\tmodule.exports = addMapEntry;\n\n/***/ }),\n/* 477 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Adds `value` to `set`.\n\t *\n\t * @private\n\t * @param {Object} set The set to modify.\n\t * @param {*} value The value to add.\n\t * @returns {Object} Returns `set`.\n\t */\n\tfunction addSetEntry(set, value) {\n\t  // Don't return `set.add` because it's not chainable in IE 11.\n\t  set.add(value);\n\t  return set;\n\t}\n\n\tmodule.exports = addSetEntry;\n\n/***/ }),\n/* 478 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `_.forEach` for arrays without support for\n\t * iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction arrayEach(array, iteratee) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length;\n\n\t  while (++index < length) {\n\t    if (iteratee(array[index], index, array) === false) {\n\t      break;\n\t    }\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = arrayEach;\n\n/***/ }),\n/* 479 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `_.filter` for arrays without support for\n\t * iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} predicate The function invoked per iteration.\n\t * @returns {Array} Returns the new filtered array.\n\t */\n\tfunction arrayFilter(array, predicate) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length,\n\t      resIndex = 0,\n\t      result = [];\n\n\t  while (++index < length) {\n\t    var value = array[index];\n\t    if (predicate(value, index, array)) {\n\t      result[resIndex++] = value;\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = arrayFilter;\n\n/***/ }),\n/* 480 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIndexOf = __webpack_require__(166);\n\n\t/**\n\t * A specialized version of `_.includes` for arrays without support for\n\t * specifying an index to search from.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to inspect.\n\t * @param {*} target The value to search for.\n\t * @returns {boolean} Returns `true` if `target` is found, else `false`.\n\t */\n\tfunction arrayIncludes(array, value) {\n\t  var length = array == null ? 0 : array.length;\n\t  return !!length && baseIndexOf(array, value, 0) > -1;\n\t}\n\n\tmodule.exports = arrayIncludes;\n\n/***/ }),\n/* 481 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This function is like `arrayIncludes` except that it accepts a comparator.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to inspect.\n\t * @param {*} target The value to search for.\n\t * @param {Function} comparator The comparator invoked per element.\n\t * @returns {boolean} Returns `true` if `target` is found, else `false`.\n\t */\n\tfunction arrayIncludesWith(array, value, comparator) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length;\n\n\t  while (++index < length) {\n\t    if (comparator(value, array[index])) {\n\t      return true;\n\t    }\n\t  }\n\t  return false;\n\t}\n\n\tmodule.exports = arrayIncludesWith;\n\n/***/ }),\n/* 482 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `_.some` for arrays without support for iteratee\n\t * shorthands.\n\t *\n\t * @private\n\t * @param {Array} [array] The array to iterate over.\n\t * @param {Function} predicate The function invoked per iteration.\n\t * @returns {boolean} Returns `true` if any element passes the predicate check,\n\t *  else `false`.\n\t */\n\tfunction arraySome(array, predicate) {\n\t  var index = -1,\n\t      length = array == null ? 0 : array.length;\n\n\t  while (++index < length) {\n\t    if (predicate(array[index], index, array)) {\n\t      return true;\n\t    }\n\t  }\n\t  return false;\n\t}\n\n\tmodule.exports = arraySome;\n\n/***/ }),\n/* 483 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    keys = __webpack_require__(32);\n\n\t/**\n\t * The base implementation of `_.assign` without support for multiple sources\n\t * or `customizer` functions.\n\t *\n\t * @private\n\t * @param {Object} object The destination object.\n\t * @param {Object} source The source object.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction baseAssign(object, source) {\n\t  return object && copyObject(source, keys(source), object);\n\t}\n\n\tmodule.exports = baseAssign;\n\n/***/ }),\n/* 484 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    keysIn = __webpack_require__(47);\n\n\t/**\n\t * The base implementation of `_.assignIn` without support for multiple sources\n\t * or `customizer` functions.\n\t *\n\t * @private\n\t * @param {Object} object The destination object.\n\t * @param {Object} source The source object.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction baseAssignIn(object, source) {\n\t  return object && copyObject(source, keysIn(source), object);\n\t}\n\n\tmodule.exports = baseAssignIn;\n\n/***/ }),\n/* 485 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.clamp` which doesn't coerce arguments.\n\t *\n\t * @private\n\t * @param {number} number The number to clamp.\n\t * @param {number} [lower] The lower bound.\n\t * @param {number} upper The upper bound.\n\t * @returns {number} Returns the clamped number.\n\t */\n\tfunction baseClamp(number, lower, upper) {\n\t  if (number === number) {\n\t    if (upper !== undefined) {\n\t      number = number <= upper ? number : upper;\n\t    }\n\t    if (lower !== undefined) {\n\t      number = number >= lower ? number : lower;\n\t    }\n\t  }\n\t  return number;\n\t}\n\n\tmodule.exports = baseClamp;\n\n/***/ }),\n/* 486 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(18);\n\n\t/** Built-in value references. */\n\tvar objectCreate = Object.create;\n\n\t/**\n\t * The base implementation of `_.create` without support for assigning\n\t * properties to the created object.\n\t *\n\t * @private\n\t * @param {Object} proto The object to inherit from.\n\t * @returns {Object} Returns the new object.\n\t */\n\tvar baseCreate = function () {\n\t  function object() {}\n\t  return function (proto) {\n\t    if (!isObject(proto)) {\n\t      return {};\n\t    }\n\t    if (objectCreate) {\n\t      return objectCreate(proto);\n\t    }\n\t    object.prototype = proto;\n\t    var result = new object();\n\t    object.prototype = undefined;\n\t    return result;\n\t  };\n\t}();\n\n\tmodule.exports = baseCreate;\n\n/***/ }),\n/* 487 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseForOwn = __webpack_require__(489),\n\t    createBaseEach = __webpack_require__(526);\n\n\t/**\n\t * The base implementation of `_.forEach` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array|Object} Returns `collection`.\n\t */\n\tvar baseEach = createBaseEach(baseForOwn);\n\n\tmodule.exports = baseEach;\n\n/***/ }),\n/* 488 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayPush = __webpack_require__(161),\n\t    isFlattenable = __webpack_require__(543);\n\n\t/**\n\t * The base implementation of `_.flatten` with support for restricting flattening.\n\t *\n\t * @private\n\t * @param {Array} array The array to flatten.\n\t * @param {number} depth The maximum recursion depth.\n\t * @param {boolean} [predicate=isFlattenable] The function invoked per iteration.\n\t * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks.\n\t * @param {Array} [result=[]] The initial result value.\n\t * @returns {Array} Returns the new flattened array.\n\t */\n\tfunction baseFlatten(array, depth, predicate, isStrict, result) {\n\t  var index = -1,\n\t      length = array.length;\n\n\t  predicate || (predicate = isFlattenable);\n\t  result || (result = []);\n\n\t  while (++index < length) {\n\t    var value = array[index];\n\t    if (depth > 0 && predicate(value)) {\n\t      if (depth > 1) {\n\t        // Recursively flatten arrays (susceptible to call stack limits).\n\t        baseFlatten(value, depth - 1, predicate, isStrict, result);\n\t      } else {\n\t        arrayPush(result, value);\n\t      }\n\t    } else if (!isStrict) {\n\t      result[result.length] = value;\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseFlatten;\n\n/***/ }),\n/* 489 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseFor = __webpack_require__(248),\n\t    keys = __webpack_require__(32);\n\n\t/**\n\t * The base implementation of `_.forOwn` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Object} object The object to iterate over.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction baseForOwn(object, iteratee) {\n\t  return object && baseFor(object, iteratee, keys);\n\t}\n\n\tmodule.exports = baseForOwn;\n\n/***/ }),\n/* 490 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * The base implementation of `_.has` without support for deep paths.\n\t *\n\t * @private\n\t * @param {Object} [object] The object to query.\n\t * @param {Array|string} key The key to check.\n\t * @returns {boolean} Returns `true` if `key` exists, else `false`.\n\t */\n\tfunction baseHas(object, key) {\n\t  return object != null && hasOwnProperty.call(object, key);\n\t}\n\n\tmodule.exports = baseHas;\n\n/***/ }),\n/* 491 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.hasIn` without support for deep paths.\n\t *\n\t * @private\n\t * @param {Object} [object] The object to query.\n\t * @param {Array|string} key The key to check.\n\t * @returns {boolean} Returns `true` if `key` exists, else `false`.\n\t */\n\tfunction baseHasIn(object, key) {\n\t  return object != null && key in Object(object);\n\t}\n\n\tmodule.exports = baseHasIn;\n\n/***/ }),\n/* 492 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This function is like `baseIndexOf` except that it accepts a comparator.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {*} value The value to search for.\n\t * @param {number} fromIndex The index to search from.\n\t * @param {Function} comparator The comparator invoked per element.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction baseIndexOfWith(array, value, fromIndex, comparator) {\n\t  var index = fromIndex - 1,\n\t      length = array.length;\n\n\t  while (++index < length) {\n\t    if (comparator(array[index], value)) {\n\t      return index;\n\t    }\n\t  }\n\t  return -1;\n\t}\n\n\tmodule.exports = baseIndexOfWith;\n\n/***/ }),\n/* 493 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]';\n\n\t/**\n\t * The base implementation of `_.isArguments`.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n\t */\n\tfunction baseIsArguments(value) {\n\t  return isObjectLike(value) && baseGetTag(value) == argsTag;\n\t}\n\n\tmodule.exports = baseIsArguments;\n\n/***/ }),\n/* 494 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Stack = __webpack_require__(99),\n\t    equalArrays = __webpack_require__(260),\n\t    equalByTag = __webpack_require__(530),\n\t    equalObjects = __webpack_require__(531),\n\t    getTag = __webpack_require__(264),\n\t    isArray = __webpack_require__(6),\n\t    isBuffer = __webpack_require__(113),\n\t    isTypedArray = __webpack_require__(177);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1;\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]',\n\t    arrayTag = '[object Array]',\n\t    objectTag = '[object Object]';\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * A specialized version of `baseIsEqual` for arrays and objects which performs\n\t * deep comparisons and tracks traversed objects enabling objects with circular\n\t * references to be compared.\n\t *\n\t * @private\n\t * @param {Object} object The object to compare.\n\t * @param {Object} other The other object to compare.\n\t * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n\t * @param {Function} customizer The function to customize comparisons.\n\t * @param {Function} equalFunc The function to determine equivalents of values.\n\t * @param {Object} [stack] Tracks traversed `object` and `other` objects.\n\t * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n\t */\n\tfunction baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {\n\t  var objIsArr = isArray(object),\n\t      othIsArr = isArray(other),\n\t      objTag = objIsArr ? arrayTag : getTag(object),\n\t      othTag = othIsArr ? arrayTag : getTag(other);\n\n\t  objTag = objTag == argsTag ? objectTag : objTag;\n\t  othTag = othTag == argsTag ? objectTag : othTag;\n\n\t  var objIsObj = objTag == objectTag,\n\t      othIsObj = othTag == objectTag,\n\t      isSameTag = objTag == othTag;\n\n\t  if (isSameTag && isBuffer(object)) {\n\t    if (!isBuffer(other)) {\n\t      return false;\n\t    }\n\t    objIsArr = true;\n\t    objIsObj = false;\n\t  }\n\t  if (isSameTag && !objIsObj) {\n\t    stack || (stack = new Stack());\n\t    return objIsArr || isTypedArray(object) ? equalArrays(object, other, bitmask, customizer, equalFunc, stack) : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack);\n\t  }\n\t  if (!(bitmask & COMPARE_PARTIAL_FLAG)) {\n\t    var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),\n\t        othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__');\n\n\t    if (objIsWrapped || othIsWrapped) {\n\t      var objUnwrapped = objIsWrapped ? object.value() : object,\n\t          othUnwrapped = othIsWrapped ? other.value() : other;\n\n\t      stack || (stack = new Stack());\n\t      return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack);\n\t    }\n\t  }\n\t  if (!isSameTag) {\n\t    return false;\n\t  }\n\t  stack || (stack = new Stack());\n\t  return equalObjects(object, other, bitmask, customizer, equalFunc, stack);\n\t}\n\n\tmodule.exports = baseIsEqualDeep;\n\n/***/ }),\n/* 495 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Stack = __webpack_require__(99),\n\t    baseIsEqual = __webpack_require__(251);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1,\n\t    COMPARE_UNORDERED_FLAG = 2;\n\n\t/**\n\t * The base implementation of `_.isMatch` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Object} object The object to inspect.\n\t * @param {Object} source The object of property values to match.\n\t * @param {Array} matchData The property names, values, and compare flags to match.\n\t * @param {Function} [customizer] The function to customize comparisons.\n\t * @returns {boolean} Returns `true` if `object` is a match, else `false`.\n\t */\n\tfunction baseIsMatch(object, source, matchData, customizer) {\n\t  var index = matchData.length,\n\t      length = index,\n\t      noCustomizer = !customizer;\n\n\t  if (object == null) {\n\t    return !length;\n\t  }\n\t  object = Object(object);\n\t  while (index--) {\n\t    var data = matchData[index];\n\t    if (noCustomizer && data[2] ? data[1] !== object[data[0]] : !(data[0] in object)) {\n\t      return false;\n\t    }\n\t  }\n\t  while (++index < length) {\n\t    data = matchData[index];\n\t    var key = data[0],\n\t        objValue = object[key],\n\t        srcValue = data[1];\n\n\t    if (noCustomizer && data[2]) {\n\t      if (objValue === undefined && !(key in object)) {\n\t        return false;\n\t      }\n\t    } else {\n\t      var stack = new Stack();\n\t      if (customizer) {\n\t        var result = customizer(objValue, srcValue, key, object, source, stack);\n\t      }\n\t      if (!(result === undefined ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack) : result)) {\n\t        return false;\n\t      }\n\t    }\n\t  }\n\t  return true;\n\t}\n\n\tmodule.exports = baseIsMatch;\n\n/***/ }),\n/* 496 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.isNaN` without support for number objects.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.\n\t */\n\tfunction baseIsNaN(value) {\n\t  return value !== value;\n\t}\n\n\tmodule.exports = baseIsNaN;\n\n/***/ }),\n/* 497 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isFunction = __webpack_require__(175),\n\t    isMasked = __webpack_require__(545),\n\t    isObject = __webpack_require__(18),\n\t    toSource = __webpack_require__(272);\n\n\t/**\n\t * Used to match `RegExp`\n\t * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n\t */\n\tvar reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g;\n\n\t/** Used to detect host constructors (Safari). */\n\tvar reIsHostCtor = /^\\[object .+?Constructor\\]$/;\n\n\t/** Used for built-in method references. */\n\tvar funcProto = Function.prototype,\n\t    objectProto = Object.prototype;\n\n\t/** Used to resolve the decompiled source of functions. */\n\tvar funcToString = funcProto.toString;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/** Used to detect if a method is native. */\n\tvar reIsNative = RegExp('^' + funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\$&').replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$');\n\n\t/**\n\t * The base implementation of `_.isNative` without bad shim checks.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a native function,\n\t *  else `false`.\n\t */\n\tfunction baseIsNative(value) {\n\t  if (!isObject(value) || isMasked(value)) {\n\t    return false;\n\t  }\n\t  var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\n\t  return pattern.test(toSource(value));\n\t}\n\n\tmodule.exports = baseIsNative;\n\n/***/ }),\n/* 498 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** `Object#toString` result references. */\n\tvar regexpTag = '[object RegExp]';\n\n\t/**\n\t * The base implementation of `_.isRegExp` without Node.js optimizations.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a regexp, else `false`.\n\t */\n\tfunction baseIsRegExp(value) {\n\t  return isObjectLike(value) && baseGetTag(value) == regexpTag;\n\t}\n\n\tmodule.exports = baseIsRegExp;\n\n/***/ }),\n/* 499 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    isLength = __webpack_require__(176),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** `Object#toString` result references. */\n\tvar argsTag = '[object Arguments]',\n\t    arrayTag = '[object Array]',\n\t    boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    errorTag = '[object Error]',\n\t    funcTag = '[object Function]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    objectTag = '[object Object]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    weakMapTag = '[object WeakMap]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]',\n\t    float32Tag = '[object Float32Array]',\n\t    float64Tag = '[object Float64Array]',\n\t    int8Tag = '[object Int8Array]',\n\t    int16Tag = '[object Int16Array]',\n\t    int32Tag = '[object Int32Array]',\n\t    uint8Tag = '[object Uint8Array]',\n\t    uint8ClampedTag = '[object Uint8ClampedArray]',\n\t    uint16Tag = '[object Uint16Array]',\n\t    uint32Tag = '[object Uint32Array]';\n\n\t/** Used to identify `toStringTag` values of typed arrays. */\n\tvar typedArrayTags = {};\n\ttypedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true;\n\ttypedArrayTags[argsTag] = typedArrayTags[arrayTag] = typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = typedArrayTags[errorTag] = typedArrayTags[funcTag] = typedArrayTags[mapTag] = typedArrayTags[numberTag] = typedArrayTags[objectTag] = typedArrayTags[regexpTag] = typedArrayTags[setTag] = typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false;\n\n\t/**\n\t * The base implementation of `_.isTypedArray` without Node.js optimizations.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n\t */\n\tfunction baseIsTypedArray(value) {\n\t    return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[baseGetTag(value)];\n\t}\n\n\tmodule.exports = baseIsTypedArray;\n\n/***/ }),\n/* 500 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isPrototype = __webpack_require__(105),\n\t    nativeKeys = __webpack_require__(557);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction baseKeys(object) {\n\t  if (!isPrototype(object)) {\n\t    return nativeKeys(object);\n\t  }\n\t  var result = [];\n\t  for (var key in Object(object)) {\n\t    if (hasOwnProperty.call(object, key) && key != 'constructor') {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseKeys;\n\n/***/ }),\n/* 501 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(18),\n\t    isPrototype = __webpack_require__(105),\n\t    nativeKeysIn = __webpack_require__(558);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction baseKeysIn(object) {\n\t  if (!isObject(object)) {\n\t    return nativeKeysIn(object);\n\t  }\n\t  var isProto = isPrototype(object),\n\t      result = [];\n\n\t  for (var key in object) {\n\t    if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseKeysIn;\n\n/***/ }),\n/* 502 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsMatch = __webpack_require__(495),\n\t    getMatchData = __webpack_require__(533),\n\t    matchesStrictComparable = __webpack_require__(269);\n\n\t/**\n\t * The base implementation of `_.matches` which doesn't clone `source`.\n\t *\n\t * @private\n\t * @param {Object} source The object of property values to match.\n\t * @returns {Function} Returns the new spec function.\n\t */\n\tfunction baseMatches(source) {\n\t  var matchData = getMatchData(source);\n\t  if (matchData.length == 1 && matchData[0][2]) {\n\t    return matchesStrictComparable(matchData[0][0], matchData[0][1]);\n\t  }\n\t  return function (object) {\n\t    return object === source || baseIsMatch(object, source, matchData);\n\t  };\n\t}\n\n\tmodule.exports = baseMatches;\n\n/***/ }),\n/* 503 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseIsEqual = __webpack_require__(251),\n\t    get = __webpack_require__(583),\n\t    hasIn = __webpack_require__(584),\n\t    isKey = __webpack_require__(173),\n\t    isStrictComparable = __webpack_require__(267),\n\t    matchesStrictComparable = __webpack_require__(269),\n\t    toKey = __webpack_require__(108);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1,\n\t    COMPARE_UNORDERED_FLAG = 2;\n\n\t/**\n\t * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`.\n\t *\n\t * @private\n\t * @param {string} path The path of the property to get.\n\t * @param {*} srcValue The value to match.\n\t * @returns {Function} Returns the new spec function.\n\t */\n\tfunction baseMatchesProperty(path, srcValue) {\n\t  if (isKey(path) && isStrictComparable(srcValue)) {\n\t    return matchesStrictComparable(toKey(path), srcValue);\n\t  }\n\t  return function (object) {\n\t    var objValue = get(object, path);\n\t    return objValue === undefined && objValue === srcValue ? hasIn(object, path) : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);\n\t  };\n\t}\n\n\tmodule.exports = baseMatchesProperty;\n\n/***/ }),\n/* 504 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Stack = __webpack_require__(99),\n\t    assignMergeValue = __webpack_require__(247),\n\t    baseFor = __webpack_require__(248),\n\t    baseMergeDeep = __webpack_require__(505),\n\t    isObject = __webpack_require__(18),\n\t    keysIn = __webpack_require__(47);\n\n\t/**\n\t * The base implementation of `_.merge` without support for multiple sources.\n\t *\n\t * @private\n\t * @param {Object} object The destination object.\n\t * @param {Object} source The source object.\n\t * @param {number} srcIndex The index of `source`.\n\t * @param {Function} [customizer] The function to customize merged values.\n\t * @param {Object} [stack] Tracks traversed source values and their merged\n\t *  counterparts.\n\t */\n\tfunction baseMerge(object, source, srcIndex, customizer, stack) {\n\t  if (object === source) {\n\t    return;\n\t  }\n\t  baseFor(source, function (srcValue, key) {\n\t    if (isObject(srcValue)) {\n\t      stack || (stack = new Stack());\n\t      baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);\n\t    } else {\n\t      var newValue = customizer ? customizer(object[key], srcValue, key + '', object, source, stack) : undefined;\n\n\t      if (newValue === undefined) {\n\t        newValue = srcValue;\n\t      }\n\t      assignMergeValue(object, key, newValue);\n\t    }\n\t  }, keysIn);\n\t}\n\n\tmodule.exports = baseMerge;\n\n/***/ }),\n/* 505 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assignMergeValue = __webpack_require__(247),\n\t    cloneBuffer = __webpack_require__(256),\n\t    cloneTypedArray = __webpack_require__(257),\n\t    copyArray = __webpack_require__(168),\n\t    initCloneObject = __webpack_require__(266),\n\t    isArguments = __webpack_require__(112),\n\t    isArray = __webpack_require__(6),\n\t    isArrayLikeObject = __webpack_require__(585),\n\t    isBuffer = __webpack_require__(113),\n\t    isFunction = __webpack_require__(175),\n\t    isObject = __webpack_require__(18),\n\t    isPlainObject = __webpack_require__(275),\n\t    isTypedArray = __webpack_require__(177),\n\t    toPlainObject = __webpack_require__(599);\n\n\t/**\n\t * A specialized version of `baseMerge` for arrays and objects which performs\n\t * deep merges and tracks traversed objects enabling objects with circular\n\t * references to be merged.\n\t *\n\t * @private\n\t * @param {Object} object The destination object.\n\t * @param {Object} source The source object.\n\t * @param {string} key The key of the value to merge.\n\t * @param {number} srcIndex The index of `source`.\n\t * @param {Function} mergeFunc The function to merge values.\n\t * @param {Function} [customizer] The function to customize assigned values.\n\t * @param {Object} [stack] Tracks traversed source values and their merged\n\t *  counterparts.\n\t */\n\tfunction baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {\n\t  var objValue = object[key],\n\t      srcValue = source[key],\n\t      stacked = stack.get(srcValue);\n\n\t  if (stacked) {\n\t    assignMergeValue(object, key, stacked);\n\t    return;\n\t  }\n\t  var newValue = customizer ? customizer(objValue, srcValue, key + '', object, source, stack) : undefined;\n\n\t  var isCommon = newValue === undefined;\n\n\t  if (isCommon) {\n\t    var isArr = isArray(srcValue),\n\t        isBuff = !isArr && isBuffer(srcValue),\n\t        isTyped = !isArr && !isBuff && isTypedArray(srcValue);\n\n\t    newValue = srcValue;\n\t    if (isArr || isBuff || isTyped) {\n\t      if (isArray(objValue)) {\n\t        newValue = objValue;\n\t      } else if (isArrayLikeObject(objValue)) {\n\t        newValue = copyArray(objValue);\n\t      } else if (isBuff) {\n\t        isCommon = false;\n\t        newValue = cloneBuffer(srcValue, true);\n\t      } else if (isTyped) {\n\t        isCommon = false;\n\t        newValue = cloneTypedArray(srcValue, true);\n\t      } else {\n\t        newValue = [];\n\t      }\n\t    } else if (isPlainObject(srcValue) || isArguments(srcValue)) {\n\t      newValue = objValue;\n\t      if (isArguments(objValue)) {\n\t        newValue = toPlainObject(objValue);\n\t      } else if (!isObject(objValue) || srcIndex && isFunction(objValue)) {\n\t        newValue = initCloneObject(srcValue);\n\t      }\n\t    } else {\n\t      isCommon = false;\n\t    }\n\t  }\n\t  if (isCommon) {\n\t    // Recursively merge objects and arrays (susceptible to call stack limits).\n\t    stack.set(srcValue, newValue);\n\t    mergeFunc(newValue, srcValue, srcIndex, customizer, stack);\n\t    stack['delete'](srcValue);\n\t  }\n\t  assignMergeValue(object, key, newValue);\n\t}\n\n\tmodule.exports = baseMergeDeep;\n\n/***/ }),\n/* 506 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayMap = __webpack_require__(60),\n\t    baseIteratee = __webpack_require__(61),\n\t    baseMap = __webpack_require__(252),\n\t    baseSortBy = __webpack_require__(512),\n\t    baseUnary = __webpack_require__(102),\n\t    compareMultiple = __webpack_require__(522),\n\t    identity = __webpack_require__(110);\n\n\t/**\n\t * The base implementation of `_.orderBy` without param guards.\n\t *\n\t * @private\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by.\n\t * @param {string[]} orders The sort orders of `iteratees`.\n\t * @returns {Array} Returns the new sorted array.\n\t */\n\tfunction baseOrderBy(collection, iteratees, orders) {\n\t  var index = -1;\n\t  iteratees = arrayMap(iteratees.length ? iteratees : [identity], baseUnary(baseIteratee));\n\n\t  var result = baseMap(collection, function (value, key, collection) {\n\t    var criteria = arrayMap(iteratees, function (iteratee) {\n\t      return iteratee(value);\n\t    });\n\t    return { 'criteria': criteria, 'index': ++index, 'value': value };\n\t  });\n\n\t  return baseSortBy(result, function (object, other) {\n\t    return compareMultiple(object, other, orders);\n\t  });\n\t}\n\n\tmodule.exports = baseOrderBy;\n\n/***/ }),\n/* 507 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.property` without support for deep paths.\n\t *\n\t * @private\n\t * @param {string} key The key of the property to get.\n\t * @returns {Function} Returns the new accessor function.\n\t */\n\tfunction baseProperty(key) {\n\t  return function (object) {\n\t    return object == null ? undefined : object[key];\n\t  };\n\t}\n\n\tmodule.exports = baseProperty;\n\n/***/ }),\n/* 508 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGet = __webpack_require__(249);\n\n\t/**\n\t * A specialized version of `baseProperty` which supports deep paths.\n\t *\n\t * @private\n\t * @param {Array|string} path The path of the property to get.\n\t * @returns {Function} Returns the new accessor function.\n\t */\n\tfunction basePropertyDeep(path) {\n\t  return function (object) {\n\t    return baseGet(object, path);\n\t  };\n\t}\n\n\tmodule.exports = basePropertyDeep;\n\n/***/ }),\n/* 509 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayMap = __webpack_require__(60),\n\t    baseIndexOf = __webpack_require__(166),\n\t    baseIndexOfWith = __webpack_require__(492),\n\t    baseUnary = __webpack_require__(102),\n\t    copyArray = __webpack_require__(168);\n\n\t/** Used for built-in method references. */\n\tvar arrayProto = Array.prototype;\n\n\t/** Built-in value references. */\n\tvar splice = arrayProto.splice;\n\n\t/**\n\t * The base implementation of `_.pullAllBy` without support for iteratee\n\t * shorthands.\n\t *\n\t * @private\n\t * @param {Array} array The array to modify.\n\t * @param {Array} values The values to remove.\n\t * @param {Function} [iteratee] The iteratee invoked per element.\n\t * @param {Function} [comparator] The comparator invoked per element.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction basePullAll(array, values, iteratee, comparator) {\n\t  var indexOf = comparator ? baseIndexOfWith : baseIndexOf,\n\t      index = -1,\n\t      length = values.length,\n\t      seen = array;\n\n\t  if (array === values) {\n\t    values = copyArray(values);\n\t  }\n\t  if (iteratee) {\n\t    seen = arrayMap(array, baseUnary(iteratee));\n\t  }\n\t  while (++index < length) {\n\t    var fromIndex = 0,\n\t        value = values[index],\n\t        computed = iteratee ? iteratee(value) : value;\n\n\t    while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) {\n\t      if (seen !== array) {\n\t        splice.call(seen, fromIndex, 1);\n\t      }\n\t      splice.call(array, fromIndex, 1);\n\t    }\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = basePullAll;\n\n/***/ }),\n/* 510 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used as references for various `Number` constants. */\n\tvar MAX_SAFE_INTEGER = 9007199254740991;\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeFloor = Math.floor;\n\n\t/**\n\t * The base implementation of `_.repeat` which doesn't coerce arguments.\n\t *\n\t * @private\n\t * @param {string} string The string to repeat.\n\t * @param {number} n The number of times to repeat the string.\n\t * @returns {string} Returns the repeated string.\n\t */\n\tfunction baseRepeat(string, n) {\n\t  var result = '';\n\t  if (!string || n < 1 || n > MAX_SAFE_INTEGER) {\n\t    return result;\n\t  }\n\t  // Leverage the exponentiation by squaring algorithm for a faster repeat.\n\t  // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details.\n\t  do {\n\t    if (n % 2) {\n\t      result += string;\n\t    }\n\t    n = nativeFloor(n / 2);\n\t    if (n) {\n\t      string += string;\n\t    }\n\t  } while (n);\n\n\t  return result;\n\t}\n\n\tmodule.exports = baseRepeat;\n\n/***/ }),\n/* 511 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar constant = __webpack_require__(576),\n\t    defineProperty = __webpack_require__(259),\n\t    identity = __webpack_require__(110);\n\n\t/**\n\t * The base implementation of `setToString` without support for hot loop shorting.\n\t *\n\t * @private\n\t * @param {Function} func The function to modify.\n\t * @param {Function} string The `toString` result.\n\t * @returns {Function} Returns `func`.\n\t */\n\tvar baseSetToString = !defineProperty ? identity : function (func, string) {\n\t  return defineProperty(func, 'toString', {\n\t    'configurable': true,\n\t    'enumerable': false,\n\t    'value': constant(string),\n\t    'writable': true\n\t  });\n\t};\n\n\tmodule.exports = baseSetToString;\n\n/***/ }),\n/* 512 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.sortBy` which uses `comparer` to define the\n\t * sort order of `array` and replaces criteria objects with their corresponding\n\t * values.\n\t *\n\t * @private\n\t * @param {Array} array The array to sort.\n\t * @param {Function} comparer The function to define sort order.\n\t * @returns {Array} Returns `array`.\n\t */\n\tfunction baseSortBy(array, comparer) {\n\t  var length = array.length;\n\n\t  array.sort(comparer);\n\t  while (length--) {\n\t    array[length] = array[length].value;\n\t  }\n\t  return array;\n\t}\n\n\tmodule.exports = baseSortBy;\n\n/***/ }),\n/* 513 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * The base implementation of `_.times` without support for iteratee shorthands\n\t * or max array length checks.\n\t *\n\t * @private\n\t * @param {number} n The number of times to invoke `iteratee`.\n\t * @param {Function} iteratee The function invoked per iteration.\n\t * @returns {Array} Returns the array of results.\n\t */\n\tfunction baseTimes(n, iteratee) {\n\t  var index = -1,\n\t      result = Array(n);\n\n\t  while (++index < n) {\n\t    result[index] = iteratee(index);\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseTimes;\n\n/***/ }),\n/* 514 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar SetCache = __webpack_require__(242),\n\t    arrayIncludes = __webpack_require__(480),\n\t    arrayIncludesWith = __webpack_require__(481),\n\t    cacheHas = __webpack_require__(254),\n\t    createSet = __webpack_require__(528),\n\t    setToArray = __webpack_require__(107);\n\n\t/** Used as the size to enable large array optimizations. */\n\tvar LARGE_ARRAY_SIZE = 200;\n\n\t/**\n\t * The base implementation of `_.uniqBy` without support for iteratee shorthands.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {Function} [iteratee] The iteratee invoked per element.\n\t * @param {Function} [comparator] The comparator invoked per element.\n\t * @returns {Array} Returns the new duplicate free array.\n\t */\n\tfunction baseUniq(array, iteratee, comparator) {\n\t  var index = -1,\n\t      includes = arrayIncludes,\n\t      length = array.length,\n\t      isCommon = true,\n\t      result = [],\n\t      seen = result;\n\n\t  if (comparator) {\n\t    isCommon = false;\n\t    includes = arrayIncludesWith;\n\t  } else if (length >= LARGE_ARRAY_SIZE) {\n\t    var set = iteratee ? null : createSet(array);\n\t    if (set) {\n\t      return setToArray(set);\n\t    }\n\t    isCommon = false;\n\t    includes = cacheHas;\n\t    seen = new SetCache();\n\t  } else {\n\t    seen = iteratee ? [] : result;\n\t  }\n\t  outer: while (++index < length) {\n\t    var value = array[index],\n\t        computed = iteratee ? iteratee(value) : value;\n\n\t    value = comparator || value !== 0 ? value : 0;\n\t    if (isCommon && computed === computed) {\n\t      var seenIndex = seen.length;\n\t      while (seenIndex--) {\n\t        if (seen[seenIndex] === computed) {\n\t          continue outer;\n\t        }\n\t      }\n\t      if (iteratee) {\n\t        seen.push(computed);\n\t      }\n\t      result.push(value);\n\t    } else if (!includes(seen, computed, comparator)) {\n\t      if (seen !== result) {\n\t        seen.push(computed);\n\t      }\n\t      result.push(value);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = baseUniq;\n\n/***/ }),\n/* 515 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayMap = __webpack_require__(60);\n\n\t/**\n\t * The base implementation of `_.values` and `_.valuesIn` which creates an\n\t * array of `object` property values corresponding to the property names\n\t * of `props`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @param {Array} props The property names to get values for.\n\t * @returns {Object} Returns the array of property values.\n\t */\n\tfunction baseValues(object, props) {\n\t  return arrayMap(props, function (key) {\n\t    return object[key];\n\t  });\n\t}\n\n\tmodule.exports = baseValues;\n\n/***/ }),\n/* 516 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar cloneArrayBuffer = __webpack_require__(167);\n\n\t/**\n\t * Creates a clone of `dataView`.\n\t *\n\t * @private\n\t * @param {Object} dataView The data view to clone.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the cloned data view.\n\t */\n\tfunction cloneDataView(dataView, isDeep) {\n\t  var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer;\n\t  return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);\n\t}\n\n\tmodule.exports = cloneDataView;\n\n/***/ }),\n/* 517 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar addMapEntry = __webpack_require__(476),\n\t    arrayReduce = __webpack_require__(246),\n\t    mapToArray = __webpack_require__(268);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1;\n\n\t/**\n\t * Creates a clone of `map`.\n\t *\n\t * @private\n\t * @param {Object} map The map to clone.\n\t * @param {Function} cloneFunc The function to clone values.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the cloned map.\n\t */\n\tfunction cloneMap(map, isDeep, cloneFunc) {\n\t  var array = isDeep ? cloneFunc(mapToArray(map), CLONE_DEEP_FLAG) : mapToArray(map);\n\t  return arrayReduce(array, addMapEntry, new map.constructor());\n\t}\n\n\tmodule.exports = cloneMap;\n\n/***/ }),\n/* 518 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/** Used to match `RegExp` flags from their coerced string values. */\n\tvar reFlags = /\\w*$/;\n\n\t/**\n\t * Creates a clone of `regexp`.\n\t *\n\t * @private\n\t * @param {Object} regexp The regexp to clone.\n\t * @returns {Object} Returns the cloned regexp.\n\t */\n\tfunction cloneRegExp(regexp) {\n\t  var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));\n\t  result.lastIndex = regexp.lastIndex;\n\t  return result;\n\t}\n\n\tmodule.exports = cloneRegExp;\n\n/***/ }),\n/* 519 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar addSetEntry = __webpack_require__(477),\n\t    arrayReduce = __webpack_require__(246),\n\t    setToArray = __webpack_require__(107);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1;\n\n\t/**\n\t * Creates a clone of `set`.\n\t *\n\t * @private\n\t * @param {Object} set The set to clone.\n\t * @param {Function} cloneFunc The function to clone values.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the cloned set.\n\t */\n\tfunction cloneSet(set, isDeep, cloneFunc) {\n\t  var array = isDeep ? cloneFunc(setToArray(set), CLONE_DEEP_FLAG) : setToArray(set);\n\t  return arrayReduce(array, addSetEntry, new set.constructor());\n\t}\n\n\tmodule.exports = cloneSet;\n\n/***/ }),\n/* 520 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _Symbol = __webpack_require__(45);\n\n\t/** Used to convert symbols to primitives and strings. */\n\tvar symbolProto = _Symbol ? _Symbol.prototype : undefined,\n\t    symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;\n\n\t/**\n\t * Creates a clone of the `symbol` object.\n\t *\n\t * @private\n\t * @param {Object} symbol The symbol object to clone.\n\t * @returns {Object} Returns the cloned symbol object.\n\t */\n\tfunction cloneSymbol(symbol) {\n\t  return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};\n\t}\n\n\tmodule.exports = cloneSymbol;\n\n/***/ }),\n/* 521 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isSymbol = __webpack_require__(62);\n\n\t/**\n\t * Compares values to sort them in ascending order.\n\t *\n\t * @private\n\t * @param {*} value The value to compare.\n\t * @param {*} other The other value to compare.\n\t * @returns {number} Returns the sort order indicator for `value`.\n\t */\n\tfunction compareAscending(value, other) {\n\t  if (value !== other) {\n\t    var valIsDefined = value !== undefined,\n\t        valIsNull = value === null,\n\t        valIsReflexive = value === value,\n\t        valIsSymbol = isSymbol(value);\n\n\t    var othIsDefined = other !== undefined,\n\t        othIsNull = other === null,\n\t        othIsReflexive = other === other,\n\t        othIsSymbol = isSymbol(other);\n\n\t    if (!othIsNull && !othIsSymbol && !valIsSymbol && value > other || valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol || valIsNull && othIsDefined && othIsReflexive || !valIsDefined && othIsReflexive || !valIsReflexive) {\n\t      return 1;\n\t    }\n\t    if (!valIsNull && !valIsSymbol && !othIsSymbol && value < other || othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol || othIsNull && valIsDefined && valIsReflexive || !othIsDefined && valIsReflexive || !othIsReflexive) {\n\t      return -1;\n\t    }\n\t  }\n\t  return 0;\n\t}\n\n\tmodule.exports = compareAscending;\n\n/***/ }),\n/* 522 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar compareAscending = __webpack_require__(521);\n\n\t/**\n\t * Used by `_.orderBy` to compare multiple properties of a value to another\n\t * and stable sort them.\n\t *\n\t * If `orders` is unspecified, all values are sorted in ascending order. Otherwise,\n\t * specify an order of \"desc\" for descending or \"asc\" for ascending sort order\n\t * of corresponding values.\n\t *\n\t * @private\n\t * @param {Object} object The object to compare.\n\t * @param {Object} other The other object to compare.\n\t * @param {boolean[]|string[]} orders The order to sort by for each property.\n\t * @returns {number} Returns the sort order indicator for `object`.\n\t */\n\tfunction compareMultiple(object, other, orders) {\n\t  var index = -1,\n\t      objCriteria = object.criteria,\n\t      othCriteria = other.criteria,\n\t      length = objCriteria.length,\n\t      ordersLength = orders.length;\n\n\t  while (++index < length) {\n\t    var result = compareAscending(objCriteria[index], othCriteria[index]);\n\t    if (result) {\n\t      if (index >= ordersLength) {\n\t        return result;\n\t      }\n\t      var order = orders[index];\n\t      return result * (order == 'desc' ? -1 : 1);\n\t    }\n\t  }\n\t  // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications\n\t  // that causes it, under certain circumstances, to provide the same value for\n\t  // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247\n\t  // for more details.\n\t  //\n\t  // This also ensures a stable sort in V8 and other engines.\n\t  // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details.\n\t  return object.index - other.index;\n\t}\n\n\tmodule.exports = compareMultiple;\n\n/***/ }),\n/* 523 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    getSymbols = __webpack_require__(170);\n\n\t/**\n\t * Copies own symbols of `source` to `object`.\n\t *\n\t * @private\n\t * @param {Object} source The object to copy symbols from.\n\t * @param {Object} [object={}] The object to copy symbols to.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction copySymbols(source, object) {\n\t  return copyObject(source, getSymbols(source), object);\n\t}\n\n\tmodule.exports = copySymbols;\n\n/***/ }),\n/* 524 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    getSymbolsIn = __webpack_require__(263);\n\n\t/**\n\t * Copies own and inherited symbols of `source` to `object`.\n\t *\n\t * @private\n\t * @param {Object} source The object to copy symbols from.\n\t * @param {Object} [object={}] The object to copy symbols to.\n\t * @returns {Object} Returns `object`.\n\t */\n\tfunction copySymbolsIn(source, object) {\n\t  return copyObject(source, getSymbolsIn(source), object);\n\t}\n\n\tmodule.exports = copySymbolsIn;\n\n/***/ }),\n/* 525 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar root = __webpack_require__(17);\n\n\t/** Used to detect overreaching core-js shims. */\n\tvar coreJsData = root['__core-js_shared__'];\n\n\tmodule.exports = coreJsData;\n\n/***/ }),\n/* 526 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isArrayLike = __webpack_require__(24);\n\n\t/**\n\t * Creates a `baseEach` or `baseEachRight` function.\n\t *\n\t * @private\n\t * @param {Function} eachFunc The function to iterate over a collection.\n\t * @param {boolean} [fromRight] Specify iterating from right to left.\n\t * @returns {Function} Returns the new base function.\n\t */\n\tfunction createBaseEach(eachFunc, fromRight) {\n\t  return function (collection, iteratee) {\n\t    if (collection == null) {\n\t      return collection;\n\t    }\n\t    if (!isArrayLike(collection)) {\n\t      return eachFunc(collection, iteratee);\n\t    }\n\t    var length = collection.length,\n\t        index = fromRight ? length : -1,\n\t        iterable = Object(collection);\n\n\t    while (fromRight ? index-- : ++index < length) {\n\t      if (iteratee(iterable[index], index, iterable) === false) {\n\t        break;\n\t      }\n\t    }\n\t    return collection;\n\t  };\n\t}\n\n\tmodule.exports = createBaseEach;\n\n/***/ }),\n/* 527 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Creates a base function for methods like `_.forIn` and `_.forOwn`.\n\t *\n\t * @private\n\t * @param {boolean} [fromRight] Specify iterating from right to left.\n\t * @returns {Function} Returns the new base function.\n\t */\n\tfunction createBaseFor(fromRight) {\n\t  return function (object, iteratee, keysFunc) {\n\t    var index = -1,\n\t        iterable = Object(object),\n\t        props = keysFunc(object),\n\t        length = props.length;\n\n\t    while (length--) {\n\t      var key = props[fromRight ? length : ++index];\n\t      if (iteratee(iterable[key], key, iterable) === false) {\n\t        break;\n\t      }\n\t    }\n\t    return object;\n\t  };\n\t}\n\n\tmodule.exports = createBaseFor;\n\n/***/ }),\n/* 528 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Set = __webpack_require__(241),\n\t    noop = __webpack_require__(591),\n\t    setToArray = __webpack_require__(107);\n\n\t/** Used as references for various `Number` constants. */\n\tvar INFINITY = 1 / 0;\n\n\t/**\n\t * Creates a set object of `values`.\n\t *\n\t * @private\n\t * @param {Array} values The values to add to the set.\n\t * @returns {Object} Returns the new set.\n\t */\n\tvar createSet = !(Set && 1 / setToArray(new Set([, -0]))[1] == INFINITY) ? noop : function (values) {\n\t  return new Set(values);\n\t};\n\n\tmodule.exports = createSet;\n\n/***/ }),\n/* 529 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar eq = __webpack_require__(46);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Used by `_.defaults` to customize its `_.assignIn` use to assign properties\n\t * of source objects to the destination object for all destination properties\n\t * that resolve to `undefined`.\n\t *\n\t * @private\n\t * @param {*} objValue The destination value.\n\t * @param {*} srcValue The source value.\n\t * @param {string} key The key of the property to assign.\n\t * @param {Object} object The parent object of `objValue`.\n\t * @returns {*} Returns the value to assign.\n\t */\n\tfunction customDefaultsAssignIn(objValue, srcValue, key, object) {\n\t  if (objValue === undefined || eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key)) {\n\t    return srcValue;\n\t  }\n\t  return objValue;\n\t}\n\n\tmodule.exports = customDefaultsAssignIn;\n\n/***/ }),\n/* 530 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _Symbol = __webpack_require__(45),\n\t    Uint8Array = __webpack_require__(243),\n\t    eq = __webpack_require__(46),\n\t    equalArrays = __webpack_require__(260),\n\t    mapToArray = __webpack_require__(268),\n\t    setToArray = __webpack_require__(107);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1,\n\t    COMPARE_UNORDERED_FLAG = 2;\n\n\t/** `Object#toString` result references. */\n\tvar boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    errorTag = '[object Error]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    symbolTag = '[object Symbol]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]';\n\n\t/** Used to convert symbols to primitives and strings. */\n\tvar symbolProto = _Symbol ? _Symbol.prototype : undefined,\n\t    symbolValueOf = symbolProto ? symbolProto.valueOf : undefined;\n\n\t/**\n\t * A specialized version of `baseIsEqualDeep` for comparing objects of\n\t * the same `toStringTag`.\n\t *\n\t * **Note:** This function only supports comparing values with tags of\n\t * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.\n\t *\n\t * @private\n\t * @param {Object} object The object to compare.\n\t * @param {Object} other The other object to compare.\n\t * @param {string} tag The `toStringTag` of the objects to compare.\n\t * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n\t * @param {Function} customizer The function to customize comparisons.\n\t * @param {Function} equalFunc The function to determine equivalents of values.\n\t * @param {Object} stack Tracks traversed `object` and `other` objects.\n\t * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n\t */\n\tfunction equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {\n\t  switch (tag) {\n\t    case dataViewTag:\n\t      if (object.byteLength != other.byteLength || object.byteOffset != other.byteOffset) {\n\t        return false;\n\t      }\n\t      object = object.buffer;\n\t      other = other.buffer;\n\n\t    case arrayBufferTag:\n\t      if (object.byteLength != other.byteLength || !equalFunc(new Uint8Array(object), new Uint8Array(other))) {\n\t        return false;\n\t      }\n\t      return true;\n\n\t    case boolTag:\n\t    case dateTag:\n\t    case numberTag:\n\t      // Coerce booleans to `1` or `0` and dates to milliseconds.\n\t      // Invalid dates are coerced to `NaN`.\n\t      return eq(+object, +other);\n\n\t    case errorTag:\n\t      return object.name == other.name && object.message == other.message;\n\n\t    case regexpTag:\n\t    case stringTag:\n\t      // Coerce regexes to strings and treat strings, primitives and objects,\n\t      // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring\n\t      // for more details.\n\t      return object == other + '';\n\n\t    case mapTag:\n\t      var convert = mapToArray;\n\n\t    case setTag:\n\t      var isPartial = bitmask & COMPARE_PARTIAL_FLAG;\n\t      convert || (convert = setToArray);\n\n\t      if (object.size != other.size && !isPartial) {\n\t        return false;\n\t      }\n\t      // Assume cyclic values are equal.\n\t      var stacked = stack.get(object);\n\t      if (stacked) {\n\t        return stacked == other;\n\t      }\n\t      bitmask |= COMPARE_UNORDERED_FLAG;\n\n\t      // Recursively compare objects (susceptible to call stack limits).\n\t      stack.set(object, other);\n\t      var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);\n\t      stack['delete'](object);\n\t      return result;\n\n\t    case symbolTag:\n\t      if (symbolValueOf) {\n\t        return symbolValueOf.call(object) == symbolValueOf.call(other);\n\t      }\n\t  }\n\t  return false;\n\t}\n\n\tmodule.exports = equalByTag;\n\n/***/ }),\n/* 531 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getAllKeys = __webpack_require__(262);\n\n\t/** Used to compose bitmasks for value comparisons. */\n\tvar COMPARE_PARTIAL_FLAG = 1;\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * A specialized version of `baseIsEqualDeep` for objects with support for\n\t * partial deep comparisons.\n\t *\n\t * @private\n\t * @param {Object} object The object to compare.\n\t * @param {Object} other The other object to compare.\n\t * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\n\t * @param {Function} customizer The function to customize comparisons.\n\t * @param {Function} equalFunc The function to determine equivalents of values.\n\t * @param {Object} stack Tracks traversed `object` and `other` objects.\n\t * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\n\t */\n\tfunction equalObjects(object, other, bitmask, customizer, equalFunc, stack) {\n\t  var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\n\t      objProps = getAllKeys(object),\n\t      objLength = objProps.length,\n\t      othProps = getAllKeys(other),\n\t      othLength = othProps.length;\n\n\t  if (objLength != othLength && !isPartial) {\n\t    return false;\n\t  }\n\t  var index = objLength;\n\t  while (index--) {\n\t    var key = objProps[index];\n\t    if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {\n\t      return false;\n\t    }\n\t  }\n\t  // Assume cyclic values are equal.\n\t  var stacked = stack.get(object);\n\t  if (stacked && stack.get(other)) {\n\t    return stacked == other;\n\t  }\n\t  var result = true;\n\t  stack.set(object, other);\n\t  stack.set(other, object);\n\n\t  var skipCtor = isPartial;\n\t  while (++index < objLength) {\n\t    key = objProps[index];\n\t    var objValue = object[key],\n\t        othValue = other[key];\n\n\t    if (customizer) {\n\t      var compared = isPartial ? customizer(othValue, objValue, key, other, object, stack) : customizer(objValue, othValue, key, object, other, stack);\n\t    }\n\t    // Recursively compare objects (susceptible to call stack limits).\n\t    if (!(compared === undefined ? objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack) : compared)) {\n\t      result = false;\n\t      break;\n\t    }\n\t    skipCtor || (skipCtor = key == 'constructor');\n\t  }\n\t  if (result && !skipCtor) {\n\t    var objCtor = object.constructor,\n\t        othCtor = other.constructor;\n\n\t    // Non `Object` object instances with different constructors are not equal.\n\t    if (objCtor != othCtor && 'constructor' in object && 'constructor' in other && !(typeof objCtor == 'function' && objCtor instanceof objCtor && typeof othCtor == 'function' && othCtor instanceof othCtor)) {\n\t      result = false;\n\t    }\n\t  }\n\t  stack['delete'](object);\n\t  stack['delete'](other);\n\t  return result;\n\t}\n\n\tmodule.exports = equalObjects;\n\n/***/ }),\n/* 532 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetAllKeys = __webpack_require__(250),\n\t    getSymbolsIn = __webpack_require__(263),\n\t    keysIn = __webpack_require__(47);\n\n\t/**\n\t * Creates an array of own and inherited enumerable property names and\n\t * symbols of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names and symbols.\n\t */\n\tfunction getAllKeysIn(object) {\n\t  return baseGetAllKeys(object, keysIn, getSymbolsIn);\n\t}\n\n\tmodule.exports = getAllKeysIn;\n\n/***/ }),\n/* 533 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isStrictComparable = __webpack_require__(267),\n\t    keys = __webpack_require__(32);\n\n\t/**\n\t * Gets the property names, values, and compare flags of `object`.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the match data of `object`.\n\t */\n\tfunction getMatchData(object) {\n\t    var result = keys(object),\n\t        length = result.length;\n\n\t    while (length--) {\n\t        var key = result[length],\n\t            value = object[key];\n\n\t        result[length] = [key, value, isStrictComparable(value)];\n\t    }\n\t    return result;\n\t}\n\n\tmodule.exports = getMatchData;\n\n/***/ }),\n/* 534 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _Symbol = __webpack_require__(45);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Used to resolve the\n\t * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n\t * of values.\n\t */\n\tvar nativeObjectToString = objectProto.toString;\n\n\t/** Built-in value references. */\n\tvar symToStringTag = _Symbol ? _Symbol.toStringTag : undefined;\n\n\t/**\n\t * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\n\t *\n\t * @private\n\t * @param {*} value The value to query.\n\t * @returns {string} Returns the raw `toStringTag`.\n\t */\n\tfunction getRawTag(value) {\n\t  var isOwn = hasOwnProperty.call(value, symToStringTag),\n\t      tag = value[symToStringTag];\n\n\t  try {\n\t    value[symToStringTag] = undefined;\n\t    var unmasked = true;\n\t  } catch (e) {}\n\n\t  var result = nativeObjectToString.call(value);\n\t  if (unmasked) {\n\t    if (isOwn) {\n\t      value[symToStringTag] = tag;\n\t    } else {\n\t      delete value[symToStringTag];\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = getRawTag;\n\n/***/ }),\n/* 535 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Gets the value at `key` of `object`.\n\t *\n\t * @private\n\t * @param {Object} [object] The object to query.\n\t * @param {string} key The key of the property to get.\n\t * @returns {*} Returns the property value.\n\t */\n\tfunction getValue(object, key) {\n\t  return object == null ? undefined : object[key];\n\t}\n\n\tmodule.exports = getValue;\n\n/***/ }),\n/* 536 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar nativeCreate = __webpack_require__(106);\n\n\t/**\n\t * Removes all key-value entries from the hash.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf Hash\n\t */\n\tfunction hashClear() {\n\t  this.__data__ = nativeCreate ? nativeCreate(null) : {};\n\t  this.size = 0;\n\t}\n\n\tmodule.exports = hashClear;\n\n/***/ }),\n/* 537 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Removes `key` and its value from the hash.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf Hash\n\t * @param {Object} hash The hash to modify.\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction hashDelete(key) {\n\t  var result = this.has(key) && delete this.__data__[key];\n\t  this.size -= result ? 1 : 0;\n\t  return result;\n\t}\n\n\tmodule.exports = hashDelete;\n\n/***/ }),\n/* 538 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar nativeCreate = __webpack_require__(106);\n\n\t/** Used to stand-in for `undefined` hash values. */\n\tvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Gets the hash value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf Hash\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction hashGet(key) {\n\t  var data = this.__data__;\n\t  if (nativeCreate) {\n\t    var result = data[key];\n\t    return result === HASH_UNDEFINED ? undefined : result;\n\t  }\n\t  return hasOwnProperty.call(data, key) ? data[key] : undefined;\n\t}\n\n\tmodule.exports = hashGet;\n\n/***/ }),\n/* 539 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar nativeCreate = __webpack_require__(106);\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Checks if a hash value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf Hash\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction hashHas(key) {\n\t  var data = this.__data__;\n\t  return nativeCreate ? data[key] !== undefined : hasOwnProperty.call(data, key);\n\t}\n\n\tmodule.exports = hashHas;\n\n/***/ }),\n/* 540 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar nativeCreate = __webpack_require__(106);\n\n\t/** Used to stand-in for `undefined` hash values. */\n\tvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n\t/**\n\t * Sets the hash `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf Hash\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the hash instance.\n\t */\n\tfunction hashSet(key, value) {\n\t  var data = this.__data__;\n\t  this.size += this.has(key) ? 0 : 1;\n\t  data[key] = nativeCreate && value === undefined ? HASH_UNDEFINED : value;\n\t  return this;\n\t}\n\n\tmodule.exports = hashSet;\n\n/***/ }),\n/* 541 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/** Used to check objects for own properties. */\n\tvar hasOwnProperty = objectProto.hasOwnProperty;\n\n\t/**\n\t * Initializes an array clone.\n\t *\n\t * @private\n\t * @param {Array} array The array to clone.\n\t * @returns {Array} Returns the initialized clone.\n\t */\n\tfunction initCloneArray(array) {\n\t  var length = array.length,\n\t      result = array.constructor(length);\n\n\t  // Add properties assigned by `RegExp#exec`.\n\t  if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) {\n\t    result.index = array.index;\n\t    result.input = array.input;\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = initCloneArray;\n\n/***/ }),\n/* 542 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar cloneArrayBuffer = __webpack_require__(167),\n\t    cloneDataView = __webpack_require__(516),\n\t    cloneMap = __webpack_require__(517),\n\t    cloneRegExp = __webpack_require__(518),\n\t    cloneSet = __webpack_require__(519),\n\t    cloneSymbol = __webpack_require__(520),\n\t    cloneTypedArray = __webpack_require__(257);\n\n\t/** `Object#toString` result references. */\n\tvar boolTag = '[object Boolean]',\n\t    dateTag = '[object Date]',\n\t    mapTag = '[object Map]',\n\t    numberTag = '[object Number]',\n\t    regexpTag = '[object RegExp]',\n\t    setTag = '[object Set]',\n\t    stringTag = '[object String]',\n\t    symbolTag = '[object Symbol]';\n\n\tvar arrayBufferTag = '[object ArrayBuffer]',\n\t    dataViewTag = '[object DataView]',\n\t    float32Tag = '[object Float32Array]',\n\t    float64Tag = '[object Float64Array]',\n\t    int8Tag = '[object Int8Array]',\n\t    int16Tag = '[object Int16Array]',\n\t    int32Tag = '[object Int32Array]',\n\t    uint8Tag = '[object Uint8Array]',\n\t    uint8ClampedTag = '[object Uint8ClampedArray]',\n\t    uint16Tag = '[object Uint16Array]',\n\t    uint32Tag = '[object Uint32Array]';\n\n\t/**\n\t * Initializes an object clone based on its `toStringTag`.\n\t *\n\t * **Note:** This function only supports cloning values with tags of\n\t * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.\n\t *\n\t * @private\n\t * @param {Object} object The object to clone.\n\t * @param {string} tag The `toStringTag` of the object to clone.\n\t * @param {Function} cloneFunc The function to clone values.\n\t * @param {boolean} [isDeep] Specify a deep clone.\n\t * @returns {Object} Returns the initialized clone.\n\t */\n\tfunction initCloneByTag(object, tag, cloneFunc, isDeep) {\n\t  var Ctor = object.constructor;\n\t  switch (tag) {\n\t    case arrayBufferTag:\n\t      return cloneArrayBuffer(object);\n\n\t    case boolTag:\n\t    case dateTag:\n\t      return new Ctor(+object);\n\n\t    case dataViewTag:\n\t      return cloneDataView(object, isDeep);\n\n\t    case float32Tag:case float64Tag:\n\t    case int8Tag:case int16Tag:case int32Tag:\n\t    case uint8Tag:case uint8ClampedTag:case uint16Tag:case uint32Tag:\n\t      return cloneTypedArray(object, isDeep);\n\n\t    case mapTag:\n\t      return cloneMap(object, isDeep, cloneFunc);\n\n\t    case numberTag:\n\t    case stringTag:\n\t      return new Ctor(object);\n\n\t    case regexpTag:\n\t      return cloneRegExp(object);\n\n\t    case setTag:\n\t      return cloneSet(object, isDeep, cloneFunc);\n\n\t    case symbolTag:\n\t      return cloneSymbol(object);\n\t  }\n\t}\n\n\tmodule.exports = initCloneByTag;\n\n/***/ }),\n/* 543 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar _Symbol = __webpack_require__(45),\n\t    isArguments = __webpack_require__(112),\n\t    isArray = __webpack_require__(6);\n\n\t/** Built-in value references. */\n\tvar spreadableSymbol = _Symbol ? _Symbol.isConcatSpreadable : undefined;\n\n\t/**\n\t * Checks if `value` is a flattenable `arguments` object or array.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is flattenable, else `false`.\n\t */\n\tfunction isFlattenable(value) {\n\t    return isArray(value) || isArguments(value) || !!(spreadableSymbol && value && value[spreadableSymbol]);\n\t}\n\n\tmodule.exports = isFlattenable;\n\n/***/ }),\n/* 544 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/**\n\t * Checks if `value` is suitable for use as unique object key.\n\t *\n\t * @private\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\n\t */\n\tfunction isKeyable(value) {\n\t  var type = typeof value === 'undefined' ? 'undefined' : _typeof(value);\n\t  return type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean' ? value !== '__proto__' : value === null;\n\t}\n\n\tmodule.exports = isKeyable;\n\n/***/ }),\n/* 545 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar coreJsData = __webpack_require__(525);\n\n\t/** Used to detect methods masquerading as native. */\n\tvar maskSrcKey = function () {\n\t  var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\n\t  return uid ? 'Symbol(src)_1.' + uid : '';\n\t}();\n\n\t/**\n\t * Checks if `func` has its source masked.\n\t *\n\t * @private\n\t * @param {Function} func The function to check.\n\t * @returns {boolean} Returns `true` if `func` is masked, else `false`.\n\t */\n\tfunction isMasked(func) {\n\t  return !!maskSrcKey && maskSrcKey in func;\n\t}\n\n\tmodule.exports = isMasked;\n\n/***/ }),\n/* 546 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Removes all key-value entries from the list cache.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf ListCache\n\t */\n\tfunction listCacheClear() {\n\t  this.__data__ = [];\n\t  this.size = 0;\n\t}\n\n\tmodule.exports = listCacheClear;\n\n/***/ }),\n/* 547 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assocIndexOf = __webpack_require__(100);\n\n\t/** Used for built-in method references. */\n\tvar arrayProto = Array.prototype;\n\n\t/** Built-in value references. */\n\tvar splice = arrayProto.splice;\n\n\t/**\n\t * Removes `key` and its value from the list cache.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf ListCache\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction listCacheDelete(key) {\n\t  var data = this.__data__,\n\t      index = assocIndexOf(data, key);\n\n\t  if (index < 0) {\n\t    return false;\n\t  }\n\t  var lastIndex = data.length - 1;\n\t  if (index == lastIndex) {\n\t    data.pop();\n\t  } else {\n\t    splice.call(data, index, 1);\n\t  }\n\t  --this.size;\n\t  return true;\n\t}\n\n\tmodule.exports = listCacheDelete;\n\n/***/ }),\n/* 548 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assocIndexOf = __webpack_require__(100);\n\n\t/**\n\t * Gets the list cache value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf ListCache\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction listCacheGet(key) {\n\t  var data = this.__data__,\n\t      index = assocIndexOf(data, key);\n\n\t  return index < 0 ? undefined : data[index][1];\n\t}\n\n\tmodule.exports = listCacheGet;\n\n/***/ }),\n/* 549 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assocIndexOf = __webpack_require__(100);\n\n\t/**\n\t * Checks if a list cache value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf ListCache\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction listCacheHas(key) {\n\t  return assocIndexOf(this.__data__, key) > -1;\n\t}\n\n\tmodule.exports = listCacheHas;\n\n/***/ }),\n/* 550 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar assocIndexOf = __webpack_require__(100);\n\n\t/**\n\t * Sets the list cache `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf ListCache\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the list cache instance.\n\t */\n\tfunction listCacheSet(key, value) {\n\t  var data = this.__data__,\n\t      index = assocIndexOf(data, key);\n\n\t  if (index < 0) {\n\t    ++this.size;\n\t    data.push([key, value]);\n\t  } else {\n\t    data[index][1] = value;\n\t  }\n\t  return this;\n\t}\n\n\tmodule.exports = listCacheSet;\n\n/***/ }),\n/* 551 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar Hash = __webpack_require__(473),\n\t    ListCache = __webpack_require__(98),\n\t    Map = __webpack_require__(159);\n\n\t/**\n\t * Removes all key-value entries from the map.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf MapCache\n\t */\n\tfunction mapCacheClear() {\n\t  this.size = 0;\n\t  this.__data__ = {\n\t    'hash': new Hash(),\n\t    'map': new (Map || ListCache)(),\n\t    'string': new Hash()\n\t  };\n\t}\n\n\tmodule.exports = mapCacheClear;\n\n/***/ }),\n/* 552 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getMapData = __webpack_require__(104);\n\n\t/**\n\t * Removes `key` and its value from the map.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf MapCache\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction mapCacheDelete(key) {\n\t  var result = getMapData(this, key)['delete'](key);\n\t  this.size -= result ? 1 : 0;\n\t  return result;\n\t}\n\n\tmodule.exports = mapCacheDelete;\n\n/***/ }),\n/* 553 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getMapData = __webpack_require__(104);\n\n\t/**\n\t * Gets the map value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf MapCache\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction mapCacheGet(key) {\n\t  return getMapData(this, key).get(key);\n\t}\n\n\tmodule.exports = mapCacheGet;\n\n/***/ }),\n/* 554 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getMapData = __webpack_require__(104);\n\n\t/**\n\t * Checks if a map value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf MapCache\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction mapCacheHas(key) {\n\t  return getMapData(this, key).has(key);\n\t}\n\n\tmodule.exports = mapCacheHas;\n\n/***/ }),\n/* 555 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar getMapData = __webpack_require__(104);\n\n\t/**\n\t * Sets the map `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf MapCache\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the map cache instance.\n\t */\n\tfunction mapCacheSet(key, value) {\n\t  var data = getMapData(this, key),\n\t      size = data.size;\n\n\t  data.set(key, value);\n\t  this.size += data.size == size ? 0 : 1;\n\t  return this;\n\t}\n\n\tmodule.exports = mapCacheSet;\n\n/***/ }),\n/* 556 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar memoize = __webpack_require__(589);\n\n\t/** Used as the maximum memoize cache size. */\n\tvar MAX_MEMOIZE_SIZE = 500;\n\n\t/**\n\t * A specialized version of `_.memoize` which clears the memoized function's\n\t * cache when it exceeds `MAX_MEMOIZE_SIZE`.\n\t *\n\t * @private\n\t * @param {Function} func The function to have its output memoized.\n\t * @returns {Function} Returns the new memoized function.\n\t */\n\tfunction memoizeCapped(func) {\n\t  var result = memoize(func, function (key) {\n\t    if (cache.size === MAX_MEMOIZE_SIZE) {\n\t      cache.clear();\n\t    }\n\t    return key;\n\t  });\n\n\t  var cache = result.cache;\n\t  return result;\n\t}\n\n\tmodule.exports = memoizeCapped;\n\n/***/ }),\n/* 557 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar overArg = __webpack_require__(271);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeKeys = overArg(Object.keys, Object);\n\n\tmodule.exports = nativeKeys;\n\n/***/ }),\n/* 558 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This function is like\n\t * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n\t * except that it includes inherited enumerable properties.\n\t *\n\t * @private\n\t * @param {Object} object The object to query.\n\t * @returns {Array} Returns the array of property names.\n\t */\n\tfunction nativeKeysIn(object) {\n\t  var result = [];\n\t  if (object != null) {\n\t    for (var key in Object(object)) {\n\t      result.push(key);\n\t    }\n\t  }\n\t  return result;\n\t}\n\n\tmodule.exports = nativeKeysIn;\n\n/***/ }),\n/* 559 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/** Used for built-in method references. */\n\tvar objectProto = Object.prototype;\n\n\t/**\n\t * Used to resolve the\n\t * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n\t * of values.\n\t */\n\tvar nativeObjectToString = objectProto.toString;\n\n\t/**\n\t * Converts `value` to a string using `Object.prototype.toString`.\n\t *\n\t * @private\n\t * @param {*} value The value to convert.\n\t * @returns {string} Returns the converted string.\n\t */\n\tfunction objectToString(value) {\n\t  return nativeObjectToString.call(value);\n\t}\n\n\tmodule.exports = objectToString;\n\n/***/ }),\n/* 560 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar apply = __webpack_require__(244);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeMax = Math.max;\n\n\t/**\n\t * A specialized version of `baseRest` which transforms the rest array.\n\t *\n\t * @private\n\t * @param {Function} func The function to apply a rest parameter to.\n\t * @param {number} [start=func.length-1] The start position of the rest parameter.\n\t * @param {Function} transform The rest array transform.\n\t * @returns {Function} Returns the new function.\n\t */\n\tfunction overRest(func, start, transform) {\n\t  start = nativeMax(start === undefined ? func.length - 1 : start, 0);\n\t  return function () {\n\t    var args = arguments,\n\t        index = -1,\n\t        length = nativeMax(args.length - start, 0),\n\t        array = Array(length);\n\n\t    while (++index < length) {\n\t      array[index] = args[start + index];\n\t    }\n\t    index = -1;\n\t    var otherArgs = Array(start + 1);\n\t    while (++index < start) {\n\t      otherArgs[index] = args[index];\n\t    }\n\t    otherArgs[start] = transform(array);\n\t    return apply(func, this, otherArgs);\n\t  };\n\t}\n\n\tmodule.exports = overRest;\n\n/***/ }),\n/* 561 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/** Used to stand-in for `undefined` hash values. */\n\tvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n\t/**\n\t * Adds `value` to the array cache.\n\t *\n\t * @private\n\t * @name add\n\t * @memberOf SetCache\n\t * @alias push\n\t * @param {*} value The value to cache.\n\t * @returns {Object} Returns the cache instance.\n\t */\n\tfunction setCacheAdd(value) {\n\t  this.__data__.set(value, HASH_UNDEFINED);\n\t  return this;\n\t}\n\n\tmodule.exports = setCacheAdd;\n\n/***/ }),\n/* 562 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Checks if `value` is in the array cache.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf SetCache\n\t * @param {*} value The value to search for.\n\t * @returns {number} Returns `true` if `value` is found, else `false`.\n\t */\n\tfunction setCacheHas(value) {\n\t  return this.__data__.has(value);\n\t}\n\n\tmodule.exports = setCacheHas;\n\n/***/ }),\n/* 563 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseSetToString = __webpack_require__(511),\n\t    shortOut = __webpack_require__(564);\n\n\t/**\n\t * Sets the `toString` method of `func` to return `string`.\n\t *\n\t * @private\n\t * @param {Function} func The function to modify.\n\t * @param {Function} string The `toString` result.\n\t * @returns {Function} Returns `func`.\n\t */\n\tvar setToString = shortOut(baseSetToString);\n\n\tmodule.exports = setToString;\n\n/***/ }),\n/* 564 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/** Used to detect hot functions by number of calls within a span of milliseconds. */\n\tvar HOT_COUNT = 800,\n\t    HOT_SPAN = 16;\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeNow = Date.now;\n\n\t/**\n\t * Creates a function that'll short out and invoke `identity` instead\n\t * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`\n\t * milliseconds.\n\t *\n\t * @private\n\t * @param {Function} func The function to restrict.\n\t * @returns {Function} Returns the new shortable function.\n\t */\n\tfunction shortOut(func) {\n\t  var count = 0,\n\t      lastCalled = 0;\n\n\t  return function () {\n\t    var stamp = nativeNow(),\n\t        remaining = HOT_SPAN - (stamp - lastCalled);\n\n\t    lastCalled = stamp;\n\t    if (remaining > 0) {\n\t      if (++count >= HOT_COUNT) {\n\t        return arguments[0];\n\t      }\n\t    } else {\n\t      count = 0;\n\t    }\n\t    return func.apply(undefined, arguments);\n\t  };\n\t}\n\n\tmodule.exports = shortOut;\n\n/***/ }),\n/* 565 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar ListCache = __webpack_require__(98);\n\n\t/**\n\t * Removes all key-value entries from the stack.\n\t *\n\t * @private\n\t * @name clear\n\t * @memberOf Stack\n\t */\n\tfunction stackClear() {\n\t  this.__data__ = new ListCache();\n\t  this.size = 0;\n\t}\n\n\tmodule.exports = stackClear;\n\n/***/ }),\n/* 566 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/**\n\t * Removes `key` and its value from the stack.\n\t *\n\t * @private\n\t * @name delete\n\t * @memberOf Stack\n\t * @param {string} key The key of the value to remove.\n\t * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n\t */\n\tfunction stackDelete(key) {\n\t  var data = this.__data__,\n\t      result = data['delete'](key);\n\n\t  this.size = data.size;\n\t  return result;\n\t}\n\n\tmodule.exports = stackDelete;\n\n/***/ }),\n/* 567 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Gets the stack value for `key`.\n\t *\n\t * @private\n\t * @name get\n\t * @memberOf Stack\n\t * @param {string} key The key of the value to get.\n\t * @returns {*} Returns the entry value.\n\t */\n\tfunction stackGet(key) {\n\t  return this.__data__.get(key);\n\t}\n\n\tmodule.exports = stackGet;\n\n/***/ }),\n/* 568 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Checks if a stack value for `key` exists.\n\t *\n\t * @private\n\t * @name has\n\t * @memberOf Stack\n\t * @param {string} key The key of the entry to check.\n\t * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n\t */\n\tfunction stackHas(key) {\n\t  return this.__data__.has(key);\n\t}\n\n\tmodule.exports = stackHas;\n\n/***/ }),\n/* 569 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar ListCache = __webpack_require__(98),\n\t    Map = __webpack_require__(159),\n\t    MapCache = __webpack_require__(160);\n\n\t/** Used as the size to enable large array optimizations. */\n\tvar LARGE_ARRAY_SIZE = 200;\n\n\t/**\n\t * Sets the stack `key` to `value`.\n\t *\n\t * @private\n\t * @name set\n\t * @memberOf Stack\n\t * @param {string} key The key of the value to set.\n\t * @param {*} value The value to set.\n\t * @returns {Object} Returns the stack cache instance.\n\t */\n\tfunction stackSet(key, value) {\n\t  var data = this.__data__;\n\t  if (data instanceof ListCache) {\n\t    var pairs = data.__data__;\n\t    if (!Map || pairs.length < LARGE_ARRAY_SIZE - 1) {\n\t      pairs.push([key, value]);\n\t      this.size = ++data.size;\n\t      return this;\n\t    }\n\t    data = this.__data__ = new MapCache(pairs);\n\t  }\n\t  data.set(key, value);\n\t  this.size = data.size;\n\t  return this;\n\t}\n\n\tmodule.exports = stackSet;\n\n/***/ }),\n/* 570 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * A specialized version of `_.indexOf` which performs strict equality\n\t * comparisons of values, i.e. `===`.\n\t *\n\t * @private\n\t * @param {Array} array The array to inspect.\n\t * @param {*} value The value to search for.\n\t * @param {number} fromIndex The index to search from.\n\t * @returns {number} Returns the index of the matched value, else `-1`.\n\t */\n\tfunction strictIndexOf(array, value, fromIndex) {\n\t  var index = fromIndex - 1,\n\t      length = array.length;\n\n\t  while (++index < length) {\n\t    if (array[index] === value) {\n\t      return index;\n\t    }\n\t  }\n\t  return -1;\n\t}\n\n\tmodule.exports = strictIndexOf;\n\n/***/ }),\n/* 571 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar memoizeCapped = __webpack_require__(556);\n\n\t/** Used to match property names within property paths. */\n\tvar reLeadingDot = /^\\./,\n\t    rePropName = /[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g;\n\n\t/** Used to match backslashes in property paths. */\n\tvar reEscapeChar = /\\\\(\\\\)?/g;\n\n\t/**\n\t * Converts `string` to a property path array.\n\t *\n\t * @private\n\t * @param {string} string The string to convert.\n\t * @returns {Array} Returns the property path array.\n\t */\n\tvar stringToPath = memoizeCapped(function (string) {\n\t  var result = [];\n\t  if (reLeadingDot.test(string)) {\n\t    result.push('');\n\t  }\n\t  string.replace(rePropName, function (match, number, quote, string) {\n\t    result.push(quote ? string.replace(reEscapeChar, '$1') : number || match);\n\t  });\n\t  return result;\n\t});\n\n\tmodule.exports = stringToPath;\n\n/***/ }),\n/* 572 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    createAssigner = __webpack_require__(103),\n\t    keysIn = __webpack_require__(47);\n\n\t/**\n\t * This method is like `_.assign` except that it iterates over own and\n\t * inherited source properties.\n\t *\n\t * **Note:** This method mutates `object`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @alias extend\n\t * @category Object\n\t * @param {Object} object The destination object.\n\t * @param {...Object} [sources] The source objects.\n\t * @returns {Object} Returns `object`.\n\t * @see _.assign\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.a = 1;\n\t * }\n\t *\n\t * function Bar() {\n\t *   this.c = 3;\n\t * }\n\t *\n\t * Foo.prototype.b = 2;\n\t * Bar.prototype.d = 4;\n\t *\n\t * _.assignIn({ 'a': 0 }, new Foo, new Bar);\n\t * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 }\n\t */\n\tvar assignIn = createAssigner(function (object, source) {\n\t  copyObject(source, keysIn(source), object);\n\t});\n\n\tmodule.exports = assignIn;\n\n/***/ }),\n/* 573 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    createAssigner = __webpack_require__(103),\n\t    keysIn = __webpack_require__(47);\n\n\t/**\n\t * This method is like `_.assignIn` except that it accepts `customizer`\n\t * which is invoked to produce the assigned values. If `customizer` returns\n\t * `undefined`, assignment is handled by the method instead. The `customizer`\n\t * is invoked with five arguments: (objValue, srcValue, key, object, source).\n\t *\n\t * **Note:** This method mutates `object`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @alias extendWith\n\t * @category Object\n\t * @param {Object} object The destination object.\n\t * @param {...Object} sources The source objects.\n\t * @param {Function} [customizer] The function to customize assigned values.\n\t * @returns {Object} Returns `object`.\n\t * @see _.assignWith\n\t * @example\n\t *\n\t * function customizer(objValue, srcValue) {\n\t *   return _.isUndefined(objValue) ? srcValue : objValue;\n\t * }\n\t *\n\t * var defaults = _.partialRight(_.assignInWith, customizer);\n\t *\n\t * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\n\t * // => { 'a': 1, 'b': 2 }\n\t */\n\tvar assignInWith = createAssigner(function (object, source, srcIndex, customizer) {\n\t  copyObject(source, keysIn(source), object, customizer);\n\t});\n\n\tmodule.exports = assignInWith;\n\n/***/ }),\n/* 574 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseClone = __webpack_require__(164);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1,\n\t    CLONE_SYMBOLS_FLAG = 4;\n\n\t/**\n\t * This method is like `_.clone` except that it recursively clones `value`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 1.0.0\n\t * @category Lang\n\t * @param {*} value The value to recursively clone.\n\t * @returns {*} Returns the deep cloned value.\n\t * @see _.clone\n\t * @example\n\t *\n\t * var objects = [{ 'a': 1 }, { 'b': 2 }];\n\t *\n\t * var deep = _.cloneDeep(objects);\n\t * console.log(deep[0] === objects[0]);\n\t * // => false\n\t */\n\tfunction cloneDeep(value) {\n\t  return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG);\n\t}\n\n\tmodule.exports = cloneDeep;\n\n/***/ }),\n/* 575 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseClone = __webpack_require__(164);\n\n\t/** Used to compose bitmasks for cloning. */\n\tvar CLONE_DEEP_FLAG = 1,\n\t    CLONE_SYMBOLS_FLAG = 4;\n\n\t/**\n\t * This method is like `_.cloneWith` except that it recursively clones `value`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to recursively clone.\n\t * @param {Function} [customizer] The function to customize cloning.\n\t * @returns {*} Returns the deep cloned value.\n\t * @see _.cloneWith\n\t * @example\n\t *\n\t * function customizer(value) {\n\t *   if (_.isElement(value)) {\n\t *     return value.cloneNode(true);\n\t *   }\n\t * }\n\t *\n\t * var el = _.cloneDeepWith(document.body, customizer);\n\t *\n\t * console.log(el === document.body);\n\t * // => false\n\t * console.log(el.nodeName);\n\t * // => 'BODY'\n\t * console.log(el.childNodes.length);\n\t * // => 20\n\t */\n\tfunction cloneDeepWith(value, customizer) {\n\t  customizer = typeof customizer == 'function' ? customizer : undefined;\n\t  return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer);\n\t}\n\n\tmodule.exports = cloneDeepWith;\n\n/***/ }),\n/* 576 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * Creates a function that returns `value`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.4.0\n\t * @category Util\n\t * @param {*} value The value to return from the new function.\n\t * @returns {Function} Returns the new constant function.\n\t * @example\n\t *\n\t * var objects = _.times(2, _.constant({ 'a': 1 }));\n\t *\n\t * console.log(objects);\n\t * // => [{ 'a': 1 }, { 'a': 1 }]\n\t *\n\t * console.log(objects[0] === objects[1]);\n\t * // => true\n\t */\n\tfunction constant(value) {\n\t  return function () {\n\t    return value;\n\t  };\n\t}\n\n\tmodule.exports = constant;\n\n/***/ }),\n/* 577 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar toString = __webpack_require__(114);\n\n\t/**\n\t * Used to match `RegExp`\n\t * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n\t */\n\tvar reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g,\n\t    reHasRegExpChar = RegExp(reRegExpChar.source);\n\n\t/**\n\t * Escapes the `RegExp` special characters \"^\", \"$\", \"\\\", \".\", \"*\", \"+\",\n\t * \"?\", \"(\", \")\", \"[\", \"]\", \"{\", \"}\", and \"|\" in `string`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category String\n\t * @param {string} [string=''] The string to escape.\n\t * @returns {string} Returns the escaped string.\n\t * @example\n\t *\n\t * _.escapeRegExp('[lodash](https://lodash.com/)');\n\t * // => '\\[lodash\\]\\(https://lodash\\.com/\\)'\n\t */\n\tfunction escapeRegExp(string) {\n\t  string = toString(string);\n\t  return string && reHasRegExpChar.test(string) ? string.replace(reRegExpChar, '\\\\$&') : string;\n\t}\n\n\tmodule.exports = escapeRegExp;\n\n/***/ }),\n/* 578 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tmodule.exports = __webpack_require__(572);\n\n/***/ }),\n/* 579 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar createFind = __webpack_require__(258),\n\t    findIndex = __webpack_require__(580);\n\n\t/**\n\t * Iterates over elements of `collection`, returning the first element\n\t * `predicate` returns truthy for. The predicate is invoked with three\n\t * arguments: (value, index|key, collection).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Collection\n\t * @param {Array|Object} collection The collection to inspect.\n\t * @param {Function} [predicate=_.identity] The function invoked per iteration.\n\t * @param {number} [fromIndex=0] The index to search from.\n\t * @returns {*} Returns the matched element, else `undefined`.\n\t * @example\n\t *\n\t * var users = [\n\t *   { 'user': 'barney',  'age': 36, 'active': true },\n\t *   { 'user': 'fred',    'age': 40, 'active': false },\n\t *   { 'user': 'pebbles', 'age': 1,  'active': true }\n\t * ];\n\t *\n\t * _.find(users, function(o) { return o.age < 40; });\n\t * // => object for 'barney'\n\t *\n\t * // The `_.matches` iteratee shorthand.\n\t * _.find(users, { 'age': 1, 'active': true });\n\t * // => object for 'pebbles'\n\t *\n\t * // The `_.matchesProperty` iteratee shorthand.\n\t * _.find(users, ['active', false]);\n\t * // => object for 'fred'\n\t *\n\t * // The `_.property` iteratee shorthand.\n\t * _.find(users, 'active');\n\t * // => object for 'barney'\n\t */\n\tvar find = createFind(findIndex);\n\n\tmodule.exports = find;\n\n/***/ }),\n/* 580 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseFindIndex = __webpack_require__(165),\n\t    baseIteratee = __webpack_require__(61),\n\t    toInteger = __webpack_require__(48);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeMax = Math.max;\n\n\t/**\n\t * This method is like `_.find` except that it returns the index of the first\n\t * element `predicate` returns truthy for instead of the element itself.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 1.1.0\n\t * @category Array\n\t * @param {Array} array The array to inspect.\n\t * @param {Function} [predicate=_.identity] The function invoked per iteration.\n\t * @param {number} [fromIndex=0] The index to search from.\n\t * @returns {number} Returns the index of the found element, else `-1`.\n\t * @example\n\t *\n\t * var users = [\n\t *   { 'user': 'barney',  'active': false },\n\t *   { 'user': 'fred',    'active': false },\n\t *   { 'user': 'pebbles', 'active': true }\n\t * ];\n\t *\n\t * _.findIndex(users, function(o) { return o.user == 'barney'; });\n\t * // => 0\n\t *\n\t * // The `_.matches` iteratee shorthand.\n\t * _.findIndex(users, { 'user': 'fred', 'active': false });\n\t * // => 1\n\t *\n\t * // The `_.matchesProperty` iteratee shorthand.\n\t * _.findIndex(users, ['active', false]);\n\t * // => 0\n\t *\n\t * // The `_.property` iteratee shorthand.\n\t * _.findIndex(users, 'active');\n\t * // => 2\n\t */\n\tfunction findIndex(array, predicate, fromIndex) {\n\t  var length = array == null ? 0 : array.length;\n\t  if (!length) {\n\t    return -1;\n\t  }\n\t  var index = fromIndex == null ? 0 : toInteger(fromIndex);\n\t  if (index < 0) {\n\t    index = nativeMax(length + index, 0);\n\t  }\n\t  return baseFindIndex(array, baseIteratee(predicate, 3), index);\n\t}\n\n\tmodule.exports = findIndex;\n\n/***/ }),\n/* 581 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar createFind = __webpack_require__(258),\n\t    findLastIndex = __webpack_require__(582);\n\n\t/**\n\t * This method is like `_.find` except that it iterates over elements of\n\t * `collection` from right to left.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.0.0\n\t * @category Collection\n\t * @param {Array|Object} collection The collection to inspect.\n\t * @param {Function} [predicate=_.identity] The function invoked per iteration.\n\t * @param {number} [fromIndex=collection.length-1] The index to search from.\n\t * @returns {*} Returns the matched element, else `undefined`.\n\t * @example\n\t *\n\t * _.findLast([1, 2, 3, 4], function(n) {\n\t *   return n % 2 == 1;\n\t * });\n\t * // => 3\n\t */\n\tvar findLast = createFind(findLastIndex);\n\n\tmodule.exports = findLast;\n\n/***/ }),\n/* 582 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseFindIndex = __webpack_require__(165),\n\t    baseIteratee = __webpack_require__(61),\n\t    toInteger = __webpack_require__(48);\n\n\t/* Built-in method references for those with the same name as other `lodash` methods. */\n\tvar nativeMax = Math.max,\n\t    nativeMin = Math.min;\n\n\t/**\n\t * This method is like `_.findIndex` except that it iterates over elements\n\t * of `collection` from right to left.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.0.0\n\t * @category Array\n\t * @param {Array} array The array to inspect.\n\t * @param {Function} [predicate=_.identity] The function invoked per iteration.\n\t * @param {number} [fromIndex=array.length-1] The index to search from.\n\t * @returns {number} Returns the index of the found element, else `-1`.\n\t * @example\n\t *\n\t * var users = [\n\t *   { 'user': 'barney',  'active': true },\n\t *   { 'user': 'fred',    'active': false },\n\t *   { 'user': 'pebbles', 'active': false }\n\t * ];\n\t *\n\t * _.findLastIndex(users, function(o) { return o.user == 'pebbles'; });\n\t * // => 2\n\t *\n\t * // The `_.matches` iteratee shorthand.\n\t * _.findLastIndex(users, { 'user': 'barney', 'active': true });\n\t * // => 0\n\t *\n\t * // The `_.matchesProperty` iteratee shorthand.\n\t * _.findLastIndex(users, ['active', false]);\n\t * // => 2\n\t *\n\t * // The `_.property` iteratee shorthand.\n\t * _.findLastIndex(users, 'active');\n\t * // => 0\n\t */\n\tfunction findLastIndex(array, predicate, fromIndex) {\n\t  var length = array == null ? 0 : array.length;\n\t  if (!length) {\n\t    return -1;\n\t  }\n\t  var index = length - 1;\n\t  if (fromIndex !== undefined) {\n\t    index = toInteger(fromIndex);\n\t    index = fromIndex < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1);\n\t  }\n\t  return baseFindIndex(array, baseIteratee(predicate, 3), index, true);\n\t}\n\n\tmodule.exports = findLastIndex;\n\n/***/ }),\n/* 583 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGet = __webpack_require__(249);\n\n\t/**\n\t * Gets the value at `path` of `object`. If the resolved value is\n\t * `undefined`, the `defaultValue` is returned in its place.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.7.0\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path of the property to get.\n\t * @param {*} [defaultValue] The value returned for `undefined` resolved values.\n\t * @returns {*} Returns the resolved value.\n\t * @example\n\t *\n\t * var object = { 'a': [{ 'b': { 'c': 3 } }] };\n\t *\n\t * _.get(object, 'a[0].b.c');\n\t * // => 3\n\t *\n\t * _.get(object, ['a', '0', 'b', 'c']);\n\t * // => 3\n\t *\n\t * _.get(object, 'a.b.c', 'default');\n\t * // => 'default'\n\t */\n\tfunction get(object, path, defaultValue) {\n\t  var result = object == null ? undefined : baseGet(object, path);\n\t  return result === undefined ? defaultValue : result;\n\t}\n\n\tmodule.exports = get;\n\n/***/ }),\n/* 584 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseHasIn = __webpack_require__(491),\n\t    hasPath = __webpack_require__(265);\n\n\t/**\n\t * Checks if `path` is a direct or inherited property of `object`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Object\n\t * @param {Object} object The object to query.\n\t * @param {Array|string} path The path to check.\n\t * @returns {boolean} Returns `true` if `path` exists, else `false`.\n\t * @example\n\t *\n\t * var object = _.create({ 'a': _.create({ 'b': 2 }) });\n\t *\n\t * _.hasIn(object, 'a');\n\t * // => true\n\t *\n\t * _.hasIn(object, 'a.b');\n\t * // => true\n\t *\n\t * _.hasIn(object, ['a', 'b']);\n\t * // => true\n\t *\n\t * _.hasIn(object, 'b');\n\t * // => false\n\t */\n\tfunction hasIn(object, path) {\n\t  return object != null && hasPath(object, path, baseHasIn);\n\t}\n\n\tmodule.exports = hasIn;\n\n/***/ }),\n/* 585 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isArrayLike = __webpack_require__(24),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/**\n\t * This method is like `_.isArrayLike` except that it also checks if `value`\n\t * is an object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an array-like object,\n\t *  else `false`.\n\t * @example\n\t *\n\t * _.isArrayLikeObject([1, 2, 3]);\n\t * // => true\n\t *\n\t * _.isArrayLikeObject(document.body.children);\n\t * // => true\n\t *\n\t * _.isArrayLikeObject('abc');\n\t * // => false\n\t *\n\t * _.isArrayLikeObject(_.noop);\n\t * // => false\n\t */\n\tfunction isArrayLikeObject(value) {\n\t  return isObjectLike(value) && isArrayLike(value);\n\t}\n\n\tmodule.exports = isArrayLikeObject;\n\n/***/ }),\n/* 586 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar toInteger = __webpack_require__(48);\n\n\t/**\n\t * Checks if `value` is an integer.\n\t *\n\t * **Note:** This method is based on\n\t * [`Number.isInteger`](https://mdn.io/Number/isInteger).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is an integer, else `false`.\n\t * @example\n\t *\n\t * _.isInteger(3);\n\t * // => true\n\t *\n\t * _.isInteger(Number.MIN_VALUE);\n\t * // => false\n\t *\n\t * _.isInteger(Infinity);\n\t * // => false\n\t *\n\t * _.isInteger('3');\n\t * // => false\n\t */\n\tfunction isInteger(value) {\n\t  return typeof value == 'number' && value == toInteger(value);\n\t}\n\n\tmodule.exports = isInteger;\n\n/***/ }),\n/* 587 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseGetTag = __webpack_require__(30),\n\t    isArray = __webpack_require__(6),\n\t    isObjectLike = __webpack_require__(25);\n\n\t/** `Object#toString` result references. */\n\tvar stringTag = '[object String]';\n\n\t/**\n\t * Checks if `value` is classified as a `String` primitive or object.\n\t *\n\t * @static\n\t * @since 0.1.0\n\t * @memberOf _\n\t * @category Lang\n\t * @param {*} value The value to check.\n\t * @returns {boolean} Returns `true` if `value` is a string, else `false`.\n\t * @example\n\t *\n\t * _.isString('abc');\n\t * // => true\n\t *\n\t * _.isString(1);\n\t * // => false\n\t */\n\tfunction isString(value) {\n\t    return typeof value == 'string' || !isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag;\n\t}\n\n\tmodule.exports = isString;\n\n/***/ }),\n/* 588 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar arrayMap = __webpack_require__(60),\n\t    baseIteratee = __webpack_require__(61),\n\t    baseMap = __webpack_require__(252),\n\t    isArray = __webpack_require__(6);\n\n\t/**\n\t * Creates an array of values by running each element in `collection` thru\n\t * `iteratee`. The iteratee is invoked with three arguments:\n\t * (value, index|key, collection).\n\t *\n\t * Many lodash methods are guarded to work as iteratees for methods like\n\t * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`.\n\t *\n\t * The guarded methods are:\n\t * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`,\n\t * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`,\n\t * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`,\n\t * `template`, `trim`, `trimEnd`, `trimStart`, and `words`\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Collection\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {Function} [iteratee=_.identity] The function invoked per iteration.\n\t * @returns {Array} Returns the new mapped array.\n\t * @example\n\t *\n\t * function square(n) {\n\t *   return n * n;\n\t * }\n\t *\n\t * _.map([4, 8], square);\n\t * // => [16, 64]\n\t *\n\t * _.map({ 'a': 4, 'b': 8 }, square);\n\t * // => [16, 64] (iteration order is not guaranteed)\n\t *\n\t * var users = [\n\t *   { 'user': 'barney' },\n\t *   { 'user': 'fred' }\n\t * ];\n\t *\n\t * // The `_.property` iteratee shorthand.\n\t * _.map(users, 'user');\n\t * // => ['barney', 'fred']\n\t */\n\tfunction map(collection, iteratee) {\n\t  var func = isArray(collection) ? arrayMap : baseMap;\n\t  return func(collection, baseIteratee(iteratee, 3));\n\t}\n\n\tmodule.exports = map;\n\n/***/ }),\n/* 589 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar MapCache = __webpack_require__(160);\n\n\t/** Error message constants. */\n\tvar FUNC_ERROR_TEXT = 'Expected a function';\n\n\t/**\n\t * Creates a function that memoizes the result of `func`. If `resolver` is\n\t * provided, it determines the cache key for storing the result based on the\n\t * arguments provided to the memoized function. By default, the first argument\n\t * provided to the memoized function is used as the map cache key. The `func`\n\t * is invoked with the `this` binding of the memoized function.\n\t *\n\t * **Note:** The cache is exposed as the `cache` property on the memoized\n\t * function. Its creation may be customized by replacing the `_.memoize.Cache`\n\t * constructor with one whose instances implement the\n\t * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object)\n\t * method interface of `clear`, `delete`, `get`, `has`, and `set`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Function\n\t * @param {Function} func The function to have its output memoized.\n\t * @param {Function} [resolver] The function to resolve the cache key.\n\t * @returns {Function} Returns the new memoized function.\n\t * @example\n\t *\n\t * var object = { 'a': 1, 'b': 2 };\n\t * var other = { 'c': 3, 'd': 4 };\n\t *\n\t * var values = _.memoize(_.values);\n\t * values(object);\n\t * // => [1, 2]\n\t *\n\t * values(other);\n\t * // => [3, 4]\n\t *\n\t * object.a = 2;\n\t * values(object);\n\t * // => [1, 2]\n\t *\n\t * // Modify the result cache.\n\t * values.cache.set(object, ['a', 'b']);\n\t * values(object);\n\t * // => ['a', 'b']\n\t *\n\t * // Replace `_.memoize.Cache`.\n\t * _.memoize.Cache = WeakMap;\n\t */\n\tfunction memoize(func, resolver) {\n\t  if (typeof func != 'function' || resolver != null && typeof resolver != 'function') {\n\t    throw new TypeError(FUNC_ERROR_TEXT);\n\t  }\n\t  var memoized = function memoized() {\n\t    var args = arguments,\n\t        key = resolver ? resolver.apply(this, args) : args[0],\n\t        cache = memoized.cache;\n\n\t    if (cache.has(key)) {\n\t      return cache.get(key);\n\t    }\n\t    var result = func.apply(this, args);\n\t    memoized.cache = cache.set(key, result) || cache;\n\t    return result;\n\t  };\n\t  memoized.cache = new (memoize.Cache || MapCache)();\n\t  return memoized;\n\t}\n\n\t// Expose `MapCache`.\n\tmemoize.Cache = MapCache;\n\n\tmodule.exports = memoize;\n\n/***/ }),\n/* 590 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseMerge = __webpack_require__(504),\n\t    createAssigner = __webpack_require__(103);\n\n\t/**\n\t * This method is like `_.merge` except that it accepts `customizer` which\n\t * is invoked to produce the merged values of the destination and source\n\t * properties. If `customizer` returns `undefined`, merging is handled by the\n\t * method instead. The `customizer` is invoked with six arguments:\n\t * (objValue, srcValue, key, object, source, stack).\n\t *\n\t * **Note:** This method mutates `object`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Object\n\t * @param {Object} object The destination object.\n\t * @param {...Object} sources The source objects.\n\t * @param {Function} customizer The function to customize assigned values.\n\t * @returns {Object} Returns `object`.\n\t * @example\n\t *\n\t * function customizer(objValue, srcValue) {\n\t *   if (_.isArray(objValue)) {\n\t *     return objValue.concat(srcValue);\n\t *   }\n\t * }\n\t *\n\t * var object = { 'a': [1], 'b': [2] };\n\t * var other = { 'a': [3], 'b': [4] };\n\t *\n\t * _.mergeWith(object, other, customizer);\n\t * // => { 'a': [1, 3], 'b': [2, 4] }\n\t */\n\tvar mergeWith = createAssigner(function (object, source, srcIndex, customizer) {\n\t  baseMerge(object, source, srcIndex, customizer);\n\t});\n\n\tmodule.exports = mergeWith;\n\n/***/ }),\n/* 591 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This method returns `undefined`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.3.0\n\t * @category Util\n\t * @example\n\t *\n\t * _.times(2, _.noop);\n\t * // => [undefined, undefined]\n\t */\n\tfunction noop() {\n\t  // No operation performed.\n\t}\n\n\tmodule.exports = noop;\n\n/***/ }),\n/* 592 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseProperty = __webpack_require__(507),\n\t    basePropertyDeep = __webpack_require__(508),\n\t    isKey = __webpack_require__(173),\n\t    toKey = __webpack_require__(108);\n\n\t/**\n\t * Creates a function that returns the value at `path` of a given object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 2.4.0\n\t * @category Util\n\t * @param {Array|string} path The path of the property to get.\n\t * @returns {Function} Returns the new accessor function.\n\t * @example\n\t *\n\t * var objects = [\n\t *   { 'a': { 'b': 2 } },\n\t *   { 'a': { 'b': 1 } }\n\t * ];\n\t *\n\t * _.map(objects, _.property('a.b'));\n\t * // => [2, 1]\n\t *\n\t * _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b');\n\t * // => [1, 2]\n\t */\n\tfunction property(path) {\n\t  return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path);\n\t}\n\n\tmodule.exports = property;\n\n/***/ }),\n/* 593 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar basePullAll = __webpack_require__(509);\n\n\t/**\n\t * This method is like `_.pull` except that it accepts an array of values to remove.\n\t *\n\t * **Note:** Unlike `_.difference`, this method mutates `array`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Array\n\t * @param {Array} array The array to modify.\n\t * @param {Array} values The values to remove.\n\t * @returns {Array} Returns `array`.\n\t * @example\n\t *\n\t * var array = ['a', 'b', 'c', 'a', 'b', 'c'];\n\t *\n\t * _.pullAll(array, ['a', 'c']);\n\t * console.log(array);\n\t * // => ['b', 'b']\n\t */\n\tfunction pullAll(array, values) {\n\t  return array && array.length && values && values.length ? basePullAll(array, values) : array;\n\t}\n\n\tmodule.exports = pullAll;\n\n/***/ }),\n/* 594 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseFlatten = __webpack_require__(488),\n\t    baseOrderBy = __webpack_require__(506),\n\t    baseRest = __webpack_require__(101),\n\t    isIterateeCall = __webpack_require__(172);\n\n\t/**\n\t * Creates an array of elements, sorted in ascending order by the results of\n\t * running each element in a collection thru each iteratee. This method\n\t * performs a stable sort, that is, it preserves the original sort order of\n\t * equal elements. The iteratees are invoked with one argument: (value).\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Collection\n\t * @param {Array|Object} collection The collection to iterate over.\n\t * @param {...(Function|Function[])} [iteratees=[_.identity]]\n\t *  The iteratees to sort by.\n\t * @returns {Array} Returns the new sorted array.\n\t * @example\n\t *\n\t * var users = [\n\t *   { 'user': 'fred',   'age': 48 },\n\t *   { 'user': 'barney', 'age': 36 },\n\t *   { 'user': 'fred',   'age': 40 },\n\t *   { 'user': 'barney', 'age': 34 }\n\t * ];\n\t *\n\t * _.sortBy(users, [function(o) { return o.user; }]);\n\t * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]]\n\t *\n\t * _.sortBy(users, ['user', 'age']);\n\t * // => objects for [['barney', 34], ['barney', 36], ['fred', 40], ['fred', 48]]\n\t */\n\tvar sortBy = baseRest(function (collection, iteratees) {\n\t  if (collection == null) {\n\t    return [];\n\t  }\n\t  var length = iteratees.length;\n\t  if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) {\n\t    iteratees = [];\n\t  } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) {\n\t    iteratees = [iteratees[0]];\n\t  }\n\t  return baseOrderBy(collection, baseFlatten(iteratees, 1), []);\n\t});\n\n\tmodule.exports = sortBy;\n\n/***/ }),\n/* 595 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseClamp = __webpack_require__(485),\n\t    baseToString = __webpack_require__(253),\n\t    toInteger = __webpack_require__(48),\n\t    toString = __webpack_require__(114);\n\n\t/**\n\t * Checks if `string` starts with the given target string.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category String\n\t * @param {string} [string=''] The string to inspect.\n\t * @param {string} [target] The string to search for.\n\t * @param {number} [position=0] The position to search from.\n\t * @returns {boolean} Returns `true` if `string` starts with `target`,\n\t *  else `false`.\n\t * @example\n\t *\n\t * _.startsWith('abc', 'a');\n\t * // => true\n\t *\n\t * _.startsWith('abc', 'b');\n\t * // => false\n\t *\n\t * _.startsWith('abc', 'b', 1);\n\t * // => true\n\t */\n\tfunction startsWith(string, target, position) {\n\t  string = toString(string);\n\t  position = position == null ? 0 : baseClamp(toInteger(position), 0, string.length);\n\n\t  target = baseToString(target);\n\t  return string.slice(position, position + target.length) == target;\n\t}\n\n\tmodule.exports = startsWith;\n\n/***/ }),\n/* 596 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/**\n\t * This method returns `false`.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.13.0\n\t * @category Util\n\t * @returns {boolean} Returns `false`.\n\t * @example\n\t *\n\t * _.times(2, _.stubFalse);\n\t * // => [false, false]\n\t */\n\tfunction stubFalse() {\n\t  return false;\n\t}\n\n\tmodule.exports = stubFalse;\n\n/***/ }),\n/* 597 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar toNumber = __webpack_require__(598);\n\n\t/** Used as references for various `Number` constants. */\n\tvar INFINITY = 1 / 0,\n\t    MAX_INTEGER = 1.7976931348623157e+308;\n\n\t/**\n\t * Converts `value` to a finite number.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.12.0\n\t * @category Lang\n\t * @param {*} value The value to convert.\n\t * @returns {number} Returns the converted number.\n\t * @example\n\t *\n\t * _.toFinite(3.2);\n\t * // => 3.2\n\t *\n\t * _.toFinite(Number.MIN_VALUE);\n\t * // => 5e-324\n\t *\n\t * _.toFinite(Infinity);\n\t * // => 1.7976931348623157e+308\n\t *\n\t * _.toFinite('3.2');\n\t * // => 3.2\n\t */\n\tfunction toFinite(value) {\n\t  if (!value) {\n\t    return value === 0 ? value : 0;\n\t  }\n\t  value = toNumber(value);\n\t  if (value === INFINITY || value === -INFINITY) {\n\t    var sign = value < 0 ? -1 : 1;\n\t    return sign * MAX_INTEGER;\n\t  }\n\t  return value === value ? value : 0;\n\t}\n\n\tmodule.exports = toFinite;\n\n/***/ }),\n/* 598 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isObject = __webpack_require__(18),\n\t    isSymbol = __webpack_require__(62);\n\n\t/** Used as references for various `Number` constants. */\n\tvar NAN = 0 / 0;\n\n\t/** Used to match leading and trailing whitespace. */\n\tvar reTrim = /^\\s+|\\s+$/g;\n\n\t/** Used to detect bad signed hexadecimal string values. */\n\tvar reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\n\n\t/** Used to detect binary string values. */\n\tvar reIsBinary = /^0b[01]+$/i;\n\n\t/** Used to detect octal string values. */\n\tvar reIsOctal = /^0o[0-7]+$/i;\n\n\t/** Built-in method references without a dependency on `root`. */\n\tvar freeParseInt = parseInt;\n\n\t/**\n\t * Converts `value` to a number.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 4.0.0\n\t * @category Lang\n\t * @param {*} value The value to process.\n\t * @returns {number} Returns the number.\n\t * @example\n\t *\n\t * _.toNumber(3.2);\n\t * // => 3.2\n\t *\n\t * _.toNumber(Number.MIN_VALUE);\n\t * // => 5e-324\n\t *\n\t * _.toNumber(Infinity);\n\t * // => Infinity\n\t *\n\t * _.toNumber('3.2');\n\t * // => 3.2\n\t */\n\tfunction toNumber(value) {\n\t  if (typeof value == 'number') {\n\t    return value;\n\t  }\n\t  if (isSymbol(value)) {\n\t    return NAN;\n\t  }\n\t  if (isObject(value)) {\n\t    var other = typeof value.valueOf == 'function' ? value.valueOf() : value;\n\t    value = isObject(other) ? other + '' : other;\n\t  }\n\t  if (typeof value != 'string') {\n\t    return value === 0 ? value : +value;\n\t  }\n\t  value = value.replace(reTrim, '');\n\t  var isBinary = reIsBinary.test(value);\n\t  return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value;\n\t}\n\n\tmodule.exports = toNumber;\n\n/***/ }),\n/* 599 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar copyObject = __webpack_require__(31),\n\t    keysIn = __webpack_require__(47);\n\n\t/**\n\t * Converts `value` to a plain object flattening inherited enumerable string\n\t * keyed properties of `value` to own properties of the plain object.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 3.0.0\n\t * @category Lang\n\t * @param {*} value The value to convert.\n\t * @returns {Object} Returns the converted plain object.\n\t * @example\n\t *\n\t * function Foo() {\n\t *   this.b = 2;\n\t * }\n\t *\n\t * Foo.prototype.c = 3;\n\t *\n\t * _.assign({ 'a': 1 }, new Foo);\n\t * // => { 'a': 1, 'b': 2 }\n\t *\n\t * _.assign({ 'a': 1 }, _.toPlainObject(new Foo));\n\t * // => { 'a': 1, 'b': 2, 'c': 3 }\n\t */\n\tfunction toPlainObject(value) {\n\t  return copyObject(value, keysIn(value));\n\t}\n\n\tmodule.exports = toPlainObject;\n\n/***/ }),\n/* 600 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar baseUniq = __webpack_require__(514);\n\n\t/**\n\t * Creates a duplicate-free version of an array, using\n\t * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n\t * for equality comparisons, in which only the first occurrence of each element\n\t * is kept. The order of result values is determined by the order they occur\n\t * in the array.\n\t *\n\t * @static\n\t * @memberOf _\n\t * @since 0.1.0\n\t * @category Array\n\t * @param {Array} array The array to inspect.\n\t * @returns {Array} Returns the new duplicate free array.\n\t * @example\n\t *\n\t * _.uniq([2, 1, 2]);\n\t * // => [2, 1]\n\t */\n\tfunction uniq(array) {\n\t  return array && array.length ? baseUniq(array) : [];\n\t}\n\n\tmodule.exports = uniq;\n\n/***/ }),\n/* 601 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tmodule.exports = minimatch;\n\tminimatch.Minimatch = Minimatch;\n\n\tvar path = { sep: '/' };\n\ttry {\n\t  path = __webpack_require__(19);\n\t} catch (er) {}\n\n\tvar GLOBSTAR = minimatch.GLOBSTAR = Minimatch.GLOBSTAR = {};\n\tvar expand = __webpack_require__(398);\n\n\tvar plTypes = {\n\t  '!': { open: '(?:(?!(?:', close: '))[^/]*?)' },\n\t  '?': { open: '(?:', close: ')?' },\n\t  '+': { open: '(?:', close: ')+' },\n\t  '*': { open: '(?:', close: ')*' },\n\t  '@': { open: '(?:', close: ')' }\n\n\t  // any single thing other than /\n\t  // don't need to escape / when using new RegExp()\n\t};var qmark = '[^/]';\n\n\t// * => any number of characters\n\tvar star = qmark + '*?';\n\n\t// ** when dots are allowed.  Anything goes, except .. and .\n\t// not (^ or / followed by one or two dots followed by $ or /),\n\t// followed by anything, any number of times.\n\tvar twoStarDot = '(?:(?!(?:\\\\\\/|^)(?:\\\\.{1,2})($|\\\\\\/)).)*?';\n\n\t// not a ^ or / followed by a dot,\n\t// followed by anything, any number of times.\n\tvar twoStarNoDot = '(?:(?!(?:\\\\\\/|^)\\\\.).)*?';\n\n\t// characters that need to be escaped in RegExp.\n\tvar reSpecials = charSet('().*{}+?[]^$\\\\!');\n\n\t// \"abc\" -> { a:true, b:true, c:true }\n\tfunction charSet(s) {\n\t  return s.split('').reduce(function (set, c) {\n\t    set[c] = true;\n\t    return set;\n\t  }, {});\n\t}\n\n\t// normalizes slashes.\n\tvar slashSplit = /\\/+/;\n\n\tminimatch.filter = filter;\n\tfunction filter(pattern, options) {\n\t  options = options || {};\n\t  return function (p, i, list) {\n\t    return minimatch(p, pattern, options);\n\t  };\n\t}\n\n\tfunction ext(a, b) {\n\t  a = a || {};\n\t  b = b || {};\n\t  var t = {};\n\t  Object.keys(b).forEach(function (k) {\n\t    t[k] = b[k];\n\t  });\n\t  Object.keys(a).forEach(function (k) {\n\t    t[k] = a[k];\n\t  });\n\t  return t;\n\t}\n\n\tminimatch.defaults = function (def) {\n\t  if (!def || !Object.keys(def).length) return minimatch;\n\n\t  var orig = minimatch;\n\n\t  var m = function minimatch(p, pattern, options) {\n\t    return orig.minimatch(p, pattern, ext(def, options));\n\t  };\n\n\t  m.Minimatch = function Minimatch(pattern, options) {\n\t    return new orig.Minimatch(pattern, ext(def, options));\n\t  };\n\n\t  return m;\n\t};\n\n\tMinimatch.defaults = function (def) {\n\t  if (!def || !Object.keys(def).length) return Minimatch;\n\t  return minimatch.defaults(def).Minimatch;\n\t};\n\n\tfunction minimatch(p, pattern, options) {\n\t  if (typeof pattern !== 'string') {\n\t    throw new TypeError('glob pattern string required');\n\t  }\n\n\t  if (!options) options = {};\n\n\t  // shortcut: comments match nothing.\n\t  if (!options.nocomment && pattern.charAt(0) === '#') {\n\t    return false;\n\t  }\n\n\t  // \"\" only matches \"\"\n\t  if (pattern.trim() === '') return p === '';\n\n\t  return new Minimatch(pattern, options).match(p);\n\t}\n\n\tfunction Minimatch(pattern, options) {\n\t  if (!(this instanceof Minimatch)) {\n\t    return new Minimatch(pattern, options);\n\t  }\n\n\t  if (typeof pattern !== 'string') {\n\t    throw new TypeError('glob pattern string required');\n\t  }\n\n\t  if (!options) options = {};\n\t  pattern = pattern.trim();\n\n\t  // windows support: need to use /, not \\\n\t  if (path.sep !== '/') {\n\t    pattern = pattern.split(path.sep).join('/');\n\t  }\n\n\t  this.options = options;\n\t  this.set = [];\n\t  this.pattern = pattern;\n\t  this.regexp = null;\n\t  this.negate = false;\n\t  this.comment = false;\n\t  this.empty = false;\n\n\t  // make the set of regexps etc.\n\t  this.make();\n\t}\n\n\tMinimatch.prototype.debug = function () {};\n\n\tMinimatch.prototype.make = make;\n\tfunction make() {\n\t  // don't do it more than once.\n\t  if (this._made) return;\n\n\t  var pattern = this.pattern;\n\t  var options = this.options;\n\n\t  // empty patterns and comments match nothing.\n\t  if (!options.nocomment && pattern.charAt(0) === '#') {\n\t    this.comment = true;\n\t    return;\n\t  }\n\t  if (!pattern) {\n\t    this.empty = true;\n\t    return;\n\t  }\n\n\t  // step 1: figure out negation, etc.\n\t  this.parseNegate();\n\n\t  // step 2: expand braces\n\t  var set = this.globSet = this.braceExpand();\n\n\t  if (options.debug) this.debug = console.error;\n\n\t  this.debug(this.pattern, set);\n\n\t  // step 3: now we have a set, so turn each one into a series of path-portion\n\t  // matching patterns.\n\t  // These will be regexps, except in the case of \"**\", which is\n\t  // set to the GLOBSTAR object for globstar behavior,\n\t  // and will not contain any / characters\n\t  set = this.globParts = set.map(function (s) {\n\t    return s.split(slashSplit);\n\t  });\n\n\t  this.debug(this.pattern, set);\n\n\t  // glob --> regexps\n\t  set = set.map(function (s, si, set) {\n\t    return s.map(this.parse, this);\n\t  }, this);\n\n\t  this.debug(this.pattern, set);\n\n\t  // filter out everything that didn't compile properly.\n\t  set = set.filter(function (s) {\n\t    return s.indexOf(false) === -1;\n\t  });\n\n\t  this.debug(this.pattern, set);\n\n\t  this.set = set;\n\t}\n\n\tMinimatch.prototype.parseNegate = parseNegate;\n\tfunction parseNegate() {\n\t  var pattern = this.pattern;\n\t  var negate = false;\n\t  var options = this.options;\n\t  var negateOffset = 0;\n\n\t  if (options.nonegate) return;\n\n\t  for (var i = 0, l = pattern.length; i < l && pattern.charAt(i) === '!'; i++) {\n\t    negate = !negate;\n\t    negateOffset++;\n\t  }\n\n\t  if (negateOffset) this.pattern = pattern.substr(negateOffset);\n\t  this.negate = negate;\n\t}\n\n\t// Brace expansion:\n\t// a{b,c}d -> abd acd\n\t// a{b,}c -> abc ac\n\t// a{0..3}d -> a0d a1d a2d a3d\n\t// a{b,c{d,e}f}g -> abg acdfg acefg\n\t// a{b,c}d{e,f}g -> abdeg acdeg abdeg abdfg\n\t//\n\t// Invalid sets are not expanded.\n\t// a{2..}b -> a{2..}b\n\t// a{b}c -> a{b}c\n\tminimatch.braceExpand = function (pattern, options) {\n\t  return braceExpand(pattern, options);\n\t};\n\n\tMinimatch.prototype.braceExpand = braceExpand;\n\n\tfunction braceExpand(pattern, options) {\n\t  if (!options) {\n\t    if (this instanceof Minimatch) {\n\t      options = this.options;\n\t    } else {\n\t      options = {};\n\t    }\n\t  }\n\n\t  pattern = typeof pattern === 'undefined' ? this.pattern : pattern;\n\n\t  if (typeof pattern === 'undefined') {\n\t    throw new TypeError('undefined pattern');\n\t  }\n\n\t  if (options.nobrace || !pattern.match(/\\{.*\\}/)) {\n\t    // shortcut. no need to expand.\n\t    return [pattern];\n\t  }\n\n\t  return expand(pattern);\n\t}\n\n\t// parse a component of the expanded set.\n\t// At this point, no pattern may contain \"/\" in it\n\t// so we're going to return a 2d array, where each entry is the full\n\t// pattern, split on '/', and then turned into a regular expression.\n\t// A regexp is made at the end which joins each array with an\n\t// escaped /, and another full one which joins each regexp with |.\n\t//\n\t// Following the lead of Bash 4.1, note that \"**\" only has special meaning\n\t// when it is the *only* thing in a path portion.  Otherwise, any series\n\t// of * is equivalent to a single *.  Globstar behavior is enabled by\n\t// default, and can be disabled by setting options.noglobstar.\n\tMinimatch.prototype.parse = parse;\n\tvar SUBPARSE = {};\n\tfunction parse(pattern, isSub) {\n\t  if (pattern.length > 1024 * 64) {\n\t    throw new TypeError('pattern is too long');\n\t  }\n\n\t  var options = this.options;\n\n\t  // shortcuts\n\t  if (!options.noglobstar && pattern === '**') return GLOBSTAR;\n\t  if (pattern === '') return '';\n\n\t  var re = '';\n\t  var hasMagic = !!options.nocase;\n\t  var escaping = false;\n\t  // ? => one single character\n\t  var patternListStack = [];\n\t  var negativeLists = [];\n\t  var stateChar;\n\t  var inClass = false;\n\t  var reClassStart = -1;\n\t  var classStart = -1;\n\t  // . and .. never match anything that doesn't start with .,\n\t  // even when options.dot is set.\n\t  var patternStart = pattern.charAt(0) === '.' ? '' // anything\n\t  // not (start or / followed by . or .. followed by / or end)\n\t  : options.dot ? '(?!(?:^|\\\\\\/)\\\\.{1,2}(?:$|\\\\\\/))' : '(?!\\\\.)';\n\t  var self = this;\n\n\t  function clearStateChar() {\n\t    if (stateChar) {\n\t      // we had some state-tracking character\n\t      // that wasn't consumed by this pass.\n\t      switch (stateChar) {\n\t        case '*':\n\t          re += star;\n\t          hasMagic = true;\n\t          break;\n\t        case '?':\n\t          re += qmark;\n\t          hasMagic = true;\n\t          break;\n\t        default:\n\t          re += '\\\\' + stateChar;\n\t          break;\n\t      }\n\t      self.debug('clearStateChar %j %j', stateChar, re);\n\t      stateChar = false;\n\t    }\n\t  }\n\n\t  for (var i = 0, len = pattern.length, c; i < len && (c = pattern.charAt(i)); i++) {\n\t    this.debug('%s\\t%s %s %j', pattern, i, re, c);\n\n\t    // skip over any that are escaped.\n\t    if (escaping && reSpecials[c]) {\n\t      re += '\\\\' + c;\n\t      escaping = false;\n\t      continue;\n\t    }\n\n\t    switch (c) {\n\t      case '/':\n\t        // completely not allowed, even escaped.\n\t        // Should already be path-split by now.\n\t        return false;\n\n\t      case '\\\\':\n\t        clearStateChar();\n\t        escaping = true;\n\t        continue;\n\n\t      // the various stateChar values\n\t      // for the \"extglob\" stuff.\n\t      case '?':\n\t      case '*':\n\t      case '+':\n\t      case '@':\n\t      case '!':\n\t        this.debug('%s\\t%s %s %j <-- stateChar', pattern, i, re, c);\n\n\t        // all of those are literals inside a class, except that\n\t        // the glob [!a] means [^a] in regexp\n\t        if (inClass) {\n\t          this.debug('  in class');\n\t          if (c === '!' && i === classStart + 1) c = '^';\n\t          re += c;\n\t          continue;\n\t        }\n\n\t        // if we already have a stateChar, then it means\n\t        // that there was something like ** or +? in there.\n\t        // Handle the stateChar, then proceed with this one.\n\t        self.debug('call clearStateChar %j', stateChar);\n\t        clearStateChar();\n\t        stateChar = c;\n\t        // if extglob is disabled, then +(asdf|foo) isn't a thing.\n\t        // just clear the statechar *now*, rather than even diving into\n\t        // the patternList stuff.\n\t        if (options.noext) clearStateChar();\n\t        continue;\n\n\t      case '(':\n\t        if (inClass) {\n\t          re += '(';\n\t          continue;\n\t        }\n\n\t        if (!stateChar) {\n\t          re += '\\\\(';\n\t          continue;\n\t        }\n\n\t        patternListStack.push({\n\t          type: stateChar,\n\t          start: i - 1,\n\t          reStart: re.length,\n\t          open: plTypes[stateChar].open,\n\t          close: plTypes[stateChar].close\n\t        });\n\t        // negation is (?:(?!js)[^/]*)\n\t        re += stateChar === '!' ? '(?:(?!(?:' : '(?:';\n\t        this.debug('plType %j %j', stateChar, re);\n\t        stateChar = false;\n\t        continue;\n\n\t      case ')':\n\t        if (inClass || !patternListStack.length) {\n\t          re += '\\\\)';\n\t          continue;\n\t        }\n\n\t        clearStateChar();\n\t        hasMagic = true;\n\t        var pl = patternListStack.pop();\n\t        // negation is (?:(?!js)[^/]*)\n\t        // The others are (?:<pattern>)<type>\n\t        re += pl.close;\n\t        if (pl.type === '!') {\n\t          negativeLists.push(pl);\n\t        }\n\t        pl.reEnd = re.length;\n\t        continue;\n\n\t      case '|':\n\t        if (inClass || !patternListStack.length || escaping) {\n\t          re += '\\\\|';\n\t          escaping = false;\n\t          continue;\n\t        }\n\n\t        clearStateChar();\n\t        re += '|';\n\t        continue;\n\n\t      // these are mostly the same in regexp and glob\n\t      case '[':\n\t        // swallow any state-tracking char before the [\n\t        clearStateChar();\n\n\t        if (inClass) {\n\t          re += '\\\\' + c;\n\t          continue;\n\t        }\n\n\t        inClass = true;\n\t        classStart = i;\n\t        reClassStart = re.length;\n\t        re += c;\n\t        continue;\n\n\t      case ']':\n\t        //  a right bracket shall lose its special\n\t        //  meaning and represent itself in\n\t        //  a bracket expression if it occurs\n\t        //  first in the list.  -- POSIX.2 2.8.3.2\n\t        if (i === classStart + 1 || !inClass) {\n\t          re += '\\\\' + c;\n\t          escaping = false;\n\t          continue;\n\t        }\n\n\t        // handle the case where we left a class open.\n\t        // \"[z-a]\" is valid, equivalent to \"\\[z-a\\]\"\n\t        if (inClass) {\n\t          // split where the last [ was, make sure we don't have\n\t          // an invalid re. if so, re-walk the contents of the\n\t          // would-be class to re-translate any characters that\n\t          // were passed through as-is\n\t          // TODO: It would probably be faster to determine this\n\t          // without a try/catch and a new RegExp, but it's tricky\n\t          // to do safely.  For now, this is safe and works.\n\t          var cs = pattern.substring(classStart + 1, i);\n\t          try {\n\t            RegExp('[' + cs + ']');\n\t          } catch (er) {\n\t            // not a valid class!\n\t            var sp = this.parse(cs, SUBPARSE);\n\t            re = re.substr(0, reClassStart) + '\\\\[' + sp[0] + '\\\\]';\n\t            hasMagic = hasMagic || sp[1];\n\t            inClass = false;\n\t            continue;\n\t          }\n\t        }\n\n\t        // finish up the class.\n\t        hasMagic = true;\n\t        inClass = false;\n\t        re += c;\n\t        continue;\n\n\t      default:\n\t        // swallow any state char that wasn't consumed\n\t        clearStateChar();\n\n\t        if (escaping) {\n\t          // no need\n\t          escaping = false;\n\t        } else if (reSpecials[c] && !(c === '^' && inClass)) {\n\t          re += '\\\\';\n\t        }\n\n\t        re += c;\n\n\t    } // switch\n\t  } // for\n\n\t  // handle the case where we left a class open.\n\t  // \"[abc\" is valid, equivalent to \"\\[abc\"\n\t  if (inClass) {\n\t    // split where the last [ was, and escape it\n\t    // this is a huge pita.  We now have to re-walk\n\t    // the contents of the would-be class to re-translate\n\t    // any characters that were passed through as-is\n\t    cs = pattern.substr(classStart + 1);\n\t    sp = this.parse(cs, SUBPARSE);\n\t    re = re.substr(0, reClassStart) + '\\\\[' + sp[0];\n\t    hasMagic = hasMagic || sp[1];\n\t  }\n\n\t  // handle the case where we had a +( thing at the *end*\n\t  // of the pattern.\n\t  // each pattern list stack adds 3 chars, and we need to go through\n\t  // and escape any | chars that were passed through as-is for the regexp.\n\t  // Go through and escape them, taking care not to double-escape any\n\t  // | chars that were already escaped.\n\t  for (pl = patternListStack.pop(); pl; pl = patternListStack.pop()) {\n\t    var tail = re.slice(pl.reStart + pl.open.length);\n\t    this.debug('setting tail', re, pl);\n\t    // maybe some even number of \\, then maybe 1 \\, followed by a |\n\t    tail = tail.replace(/((?:\\\\{2}){0,64})(\\\\?)\\|/g, function (_, $1, $2) {\n\t      if (!$2) {\n\t        // the | isn't already escaped, so escape it.\n\t        $2 = '\\\\';\n\t      }\n\n\t      // need to escape all those slashes *again*, without escaping the\n\t      // one that we need for escaping the | character.  As it works out,\n\t      // escaping an even number of slashes can be done by simply repeating\n\t      // it exactly after itself.  That's why this trick works.\n\t      //\n\t      // I am sorry that you have to see this.\n\t      return $1 + $1 + $2 + '|';\n\t    });\n\n\t    this.debug('tail=%j\\n   %s', tail, tail, pl, re);\n\t    var t = pl.type === '*' ? star : pl.type === '?' ? qmark : '\\\\' + pl.type;\n\n\t    hasMagic = true;\n\t    re = re.slice(0, pl.reStart) + t + '\\\\(' + tail;\n\t  }\n\n\t  // handle trailing things that only matter at the very end.\n\t  clearStateChar();\n\t  if (escaping) {\n\t    // trailing \\\\\n\t    re += '\\\\\\\\';\n\t  }\n\n\t  // only need to apply the nodot start if the re starts with\n\t  // something that could conceivably capture a dot\n\t  var addPatternStart = false;\n\t  switch (re.charAt(0)) {\n\t    case '.':\n\t    case '[':\n\t    case '(':\n\t      addPatternStart = true;\n\t  }\n\n\t  // Hack to work around lack of negative lookbehind in JS\n\t  // A pattern like: *.!(x).!(y|z) needs to ensure that a name\n\t  // like 'a.xyz.yz' doesn't match.  So, the first negative\n\t  // lookahead, has to look ALL the way ahead, to the end of\n\t  // the pattern.\n\t  for (var n = negativeLists.length - 1; n > -1; n--) {\n\t    var nl = negativeLists[n];\n\n\t    var nlBefore = re.slice(0, nl.reStart);\n\t    var nlFirst = re.slice(nl.reStart, nl.reEnd - 8);\n\t    var nlLast = re.slice(nl.reEnd - 8, nl.reEnd);\n\t    var nlAfter = re.slice(nl.reEnd);\n\n\t    nlLast += nlAfter;\n\n\t    // Handle nested stuff like *(*.js|!(*.json)), where open parens\n\t    // mean that we should *not* include the ) in the bit that is considered\n\t    // \"after\" the negated section.\n\t    var openParensBefore = nlBefore.split('(').length - 1;\n\t    var cleanAfter = nlAfter;\n\t    for (i = 0; i < openParensBefore; i++) {\n\t      cleanAfter = cleanAfter.replace(/\\)[+*?]?/, '');\n\t    }\n\t    nlAfter = cleanAfter;\n\n\t    var dollar = '';\n\t    if (nlAfter === '' && isSub !== SUBPARSE) {\n\t      dollar = '$';\n\t    }\n\t    var newRe = nlBefore + nlFirst + nlAfter + dollar + nlLast;\n\t    re = newRe;\n\t  }\n\n\t  // if the re is not \"\" at this point, then we need to make sure\n\t  // it doesn't match against an empty path part.\n\t  // Otherwise a/* will match a/, which it should not.\n\t  if (re !== '' && hasMagic) {\n\t    re = '(?=.)' + re;\n\t  }\n\n\t  if (addPatternStart) {\n\t    re = patternStart + re;\n\t  }\n\n\t  // parsing just a piece of a larger pattern.\n\t  if (isSub === SUBPARSE) {\n\t    return [re, hasMagic];\n\t  }\n\n\t  // skip the regexp for non-magical patterns\n\t  // unescape anything in it, though, so that it'll be\n\t  // an exact match against a file etc.\n\t  if (!hasMagic) {\n\t    return globUnescape(pattern);\n\t  }\n\n\t  var flags = options.nocase ? 'i' : '';\n\t  try {\n\t    var regExp = new RegExp('^' + re + '$', flags);\n\t  } catch (er) {\n\t    // If it was an invalid regular expression, then it can't match\n\t    // anything.  This trick looks for a character after the end of\n\t    // the string, which is of course impossible, except in multi-line\n\t    // mode, but it's not a /m regex.\n\t    return new RegExp('$.');\n\t  }\n\n\t  regExp._glob = pattern;\n\t  regExp._src = re;\n\n\t  return regExp;\n\t}\n\n\tminimatch.makeRe = function (pattern, options) {\n\t  return new Minimatch(pattern, options || {}).makeRe();\n\t};\n\n\tMinimatch.prototype.makeRe = makeRe;\n\tfunction makeRe() {\n\t  if (this.regexp || this.regexp === false) return this.regexp;\n\n\t  // at this point, this.set is a 2d array of partial\n\t  // pattern strings, or \"**\".\n\t  //\n\t  // It's better to use .match().  This function shouldn't\n\t  // be used, really, but it's pretty convenient sometimes,\n\t  // when you just want to work with a regex.\n\t  var set = this.set;\n\n\t  if (!set.length) {\n\t    this.regexp = false;\n\t    return this.regexp;\n\t  }\n\t  var options = this.options;\n\n\t  var twoStar = options.noglobstar ? star : options.dot ? twoStarDot : twoStarNoDot;\n\t  var flags = options.nocase ? 'i' : '';\n\n\t  var re = set.map(function (pattern) {\n\t    return pattern.map(function (p) {\n\t      return p === GLOBSTAR ? twoStar : typeof p === 'string' ? regExpEscape(p) : p._src;\n\t    }).join('\\\\\\/');\n\t  }).join('|');\n\n\t  // must match entire pattern\n\t  // ending in a * or ** will make it less strict.\n\t  re = '^(?:' + re + ')$';\n\n\t  // can match anything, as long as it's not this.\n\t  if (this.negate) re = '^(?!' + re + ').*$';\n\n\t  try {\n\t    this.regexp = new RegExp(re, flags);\n\t  } catch (ex) {\n\t    this.regexp = false;\n\t  }\n\t  return this.regexp;\n\t}\n\n\tminimatch.match = function (list, pattern, options) {\n\t  options = options || {};\n\t  var mm = new Minimatch(pattern, options);\n\t  list = list.filter(function (f) {\n\t    return mm.match(f);\n\t  });\n\t  if (mm.options.nonull && !list.length) {\n\t    list.push(pattern);\n\t  }\n\t  return list;\n\t};\n\n\tMinimatch.prototype.match = match;\n\tfunction match(f, partial) {\n\t  this.debug('match', f, this.pattern);\n\t  // short-circuit in the case of busted things.\n\t  // comments, etc.\n\t  if (this.comment) return false;\n\t  if (this.empty) return f === '';\n\n\t  if (f === '/' && partial) return true;\n\n\t  var options = this.options;\n\n\t  // windows: need to use /, not \\\n\t  if (path.sep !== '/') {\n\t    f = f.split(path.sep).join('/');\n\t  }\n\n\t  // treat the test path as a set of pathparts.\n\t  f = f.split(slashSplit);\n\t  this.debug(this.pattern, 'split', f);\n\n\t  // just ONE of the pattern sets in this.set needs to match\n\t  // in order for it to be valid.  If negating, then just one\n\t  // match means that we have failed.\n\t  // Either way, return on the first hit.\n\n\t  var set = this.set;\n\t  this.debug(this.pattern, 'set', set);\n\n\t  // Find the basename of the path by looking for the last non-empty segment\n\t  var filename;\n\t  var i;\n\t  for (i = f.length - 1; i >= 0; i--) {\n\t    filename = f[i];\n\t    if (filename) break;\n\t  }\n\n\t  for (i = 0; i < set.length; i++) {\n\t    var pattern = set[i];\n\t    var file = f;\n\t    if (options.matchBase && pattern.length === 1) {\n\t      file = [filename];\n\t    }\n\t    var hit = this.matchOne(file, pattern, partial);\n\t    if (hit) {\n\t      if (options.flipNegate) return true;\n\t      return !this.negate;\n\t    }\n\t  }\n\n\t  // didn't get any hits.  this is success if it's a negative\n\t  // pattern, failure otherwise.\n\t  if (options.flipNegate) return false;\n\t  return this.negate;\n\t}\n\n\t// set partial to true to test if, for example,\n\t// \"/a/b\" matches the start of \"/*/b/*/d\"\n\t// Partial means, if you run out of file before you run\n\t// out of pattern, then that's fine, as long as all\n\t// the parts match.\n\tMinimatch.prototype.matchOne = function (file, pattern, partial) {\n\t  var options = this.options;\n\n\t  this.debug('matchOne', { 'this': this, file: file, pattern: pattern });\n\n\t  this.debug('matchOne', file.length, pattern.length);\n\n\t  for (var fi = 0, pi = 0, fl = file.length, pl = pattern.length; fi < fl && pi < pl; fi++, pi++) {\n\t    this.debug('matchOne loop');\n\t    var p = pattern[pi];\n\t    var f = file[fi];\n\n\t    this.debug(pattern, p, f);\n\n\t    // should be impossible.\n\t    // some invalid regexp stuff in the set.\n\t    if (p === false) return false;\n\n\t    if (p === GLOBSTAR) {\n\t      this.debug('GLOBSTAR', [pattern, p, f]);\n\n\t      // \"**\"\n\t      // a/**/b/**/c would match the following:\n\t      // a/b/x/y/z/c\n\t      // a/x/y/z/b/c\n\t      // a/b/x/b/x/c\n\t      // a/b/c\n\t      // To do this, take the rest of the pattern after\n\t      // the **, and see if it would match the file remainder.\n\t      // If so, return success.\n\t      // If not, the ** \"swallows\" a segment, and try again.\n\t      // This is recursively awful.\n\t      //\n\t      // a/**/b/**/c matching a/b/x/y/z/c\n\t      // - a matches a\n\t      // - doublestar\n\t      //   - matchOne(b/x/y/z/c, b/**/c)\n\t      //     - b matches b\n\t      //     - doublestar\n\t      //       - matchOne(x/y/z/c, c) -> no\n\t      //       - matchOne(y/z/c, c) -> no\n\t      //       - matchOne(z/c, c) -> no\n\t      //       - matchOne(c, c) yes, hit\n\t      var fr = fi;\n\t      var pr = pi + 1;\n\t      if (pr === pl) {\n\t        this.debug('** at the end');\n\t        // a ** at the end will just swallow the rest.\n\t        // We have found a match.\n\t        // however, it will not swallow /.x, unless\n\t        // options.dot is set.\n\t        // . and .. are *never* matched by **, for explosively\n\t        // exponential reasons.\n\t        for (; fi < fl; fi++) {\n\t          if (file[fi] === '.' || file[fi] === '..' || !options.dot && file[fi].charAt(0) === '.') return false;\n\t        }\n\t        return true;\n\t      }\n\n\t      // ok, let's see if we can swallow whatever we can.\n\t      while (fr < fl) {\n\t        var swallowee = file[fr];\n\n\t        this.debug('\\nglobstar while', file, fr, pattern, pr, swallowee);\n\n\t        // XXX remove this slice.  Just pass the start index.\n\t        if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) {\n\t          this.debug('globstar found match!', fr, fl, swallowee);\n\t          // found a match.\n\t          return true;\n\t        } else {\n\t          // can't swallow \".\" or \"..\" ever.\n\t          // can only swallow \".foo\" when explicitly asked.\n\t          if (swallowee === '.' || swallowee === '..' || !options.dot && swallowee.charAt(0) === '.') {\n\t            this.debug('dot detected!', file, fr, pattern, pr);\n\t            break;\n\t          }\n\n\t          // ** swallows a segment, and continue.\n\t          this.debug('globstar swallow a segment, and continue');\n\t          fr++;\n\t        }\n\t      }\n\n\t      // no match was found.\n\t      // However, in partial mode, we can't say this is necessarily over.\n\t      // If there's more *pattern* left, then\n\t      if (partial) {\n\t        // ran out of file\n\t        this.debug('\\n>>> no match, partial?', file, fr, pattern, pr);\n\t        if (fr === fl) return true;\n\t      }\n\t      return false;\n\t    }\n\n\t    // something other than **\n\t    // non-magic patterns just have to match exactly\n\t    // patterns with magic have been turned into regexps.\n\t    var hit;\n\t    if (typeof p === 'string') {\n\t      if (options.nocase) {\n\t        hit = f.toLowerCase() === p.toLowerCase();\n\t      } else {\n\t        hit = f === p;\n\t      }\n\t      this.debug('string match', p, f, hit);\n\t    } else {\n\t      hit = f.match(p);\n\t      this.debug('pattern match', p, f, hit);\n\t    }\n\n\t    if (!hit) return false;\n\t  }\n\n\t  // Note: ending in / means that we'll get a final \"\"\n\t  // at the end of the pattern.  This can only match a\n\t  // corresponding \"\" at the end of the file.\n\t  // If the file ends in /, then it can only match a\n\t  // a pattern that ends in /, unless the pattern just\n\t  // doesn't have any more for it. But, a/b/ should *not*\n\t  // match \"a/b/*\", even though \"\" matches against the\n\t  // [^/]*? pattern, except in partial mode, where it might\n\t  // simply not be reached yet.\n\t  // However, a/b/ should still satisfy a/*\n\n\t  // now either we fell off the end of the pattern, or we're done.\n\t  if (fi === fl && pi === pl) {\n\t    // ran out of pattern and filename at the same time.\n\t    // an exact hit!\n\t    return true;\n\t  } else if (fi === fl) {\n\t    // ran out of file, but still had pattern left.\n\t    // this is ok if we're doing the match as part of\n\t    // a glob fs traversal.\n\t    return partial;\n\t  } else if (pi === pl) {\n\t    // ran out of pattern, still have file left.\n\t    // this is only acceptable if we're on the very last\n\t    // empty segment of a file with a trailing slash.\n\t    // a/* should match a/b/\n\t    var emptyFileEnd = fi === fl - 1 && file[fi] === '';\n\t    return emptyFileEnd;\n\t  }\n\n\t  // should be unreachable.\n\t  throw new Error('wtf?');\n\t};\n\n\t// replace stuff like \\* with *\n\tfunction globUnescape(s) {\n\t  return s.replace(/\\\\(.)/g, '$1');\n\t}\n\n\tfunction regExpEscape(s) {\n\t  return s.replace(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g, '\\\\$&');\n\t}\n\n/***/ }),\n/* 602 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/**\n\t * Helpers.\n\t */\n\n\tvar s = 1000;\n\tvar m = s * 60;\n\tvar h = m * 60;\n\tvar d = h * 24;\n\tvar y = d * 365.25;\n\n\t/**\n\t * Parse or format the given `val`.\n\t *\n\t * Options:\n\t *\n\t *  - `long` verbose formatting [false]\n\t *\n\t * @param {String|Number} val\n\t * @param {Object} [options]\n\t * @throws {Error} throw an error if val is not a non-empty string or a number\n\t * @return {String|Number}\n\t * @api public\n\t */\n\n\tmodule.exports = function (val, options) {\n\t  options = options || {};\n\t  var type = typeof val === 'undefined' ? 'undefined' : _typeof(val);\n\t  if (type === 'string' && val.length > 0) {\n\t    return parse(val);\n\t  } else if (type === 'number' && isNaN(val) === false) {\n\t    return options.long ? fmtLong(val) : fmtShort(val);\n\t  }\n\t  throw new Error('val is not a non-empty string or a valid number. val=' + JSON.stringify(val));\n\t};\n\n\t/**\n\t * Parse the given `str` and return milliseconds.\n\t *\n\t * @param {String} str\n\t * @return {Number}\n\t * @api private\n\t */\n\n\tfunction parse(str) {\n\t  str = String(str);\n\t  if (str.length > 100) {\n\t    return;\n\t  }\n\t  var match = /^((?:\\d+)?\\.?\\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec(str);\n\t  if (!match) {\n\t    return;\n\t  }\n\t  var n = parseFloat(match[1]);\n\t  var type = (match[2] || 'ms').toLowerCase();\n\t  switch (type) {\n\t    case 'years':\n\t    case 'year':\n\t    case 'yrs':\n\t    case 'yr':\n\t    case 'y':\n\t      return n * y;\n\t    case 'days':\n\t    case 'day':\n\t    case 'd':\n\t      return n * d;\n\t    case 'hours':\n\t    case 'hour':\n\t    case 'hrs':\n\t    case 'hr':\n\t    case 'h':\n\t      return n * h;\n\t    case 'minutes':\n\t    case 'minute':\n\t    case 'mins':\n\t    case 'min':\n\t    case 'm':\n\t      return n * m;\n\t    case 'seconds':\n\t    case 'second':\n\t    case 'secs':\n\t    case 'sec':\n\t    case 's':\n\t      return n * s;\n\t    case 'milliseconds':\n\t    case 'millisecond':\n\t    case 'msecs':\n\t    case 'msec':\n\t    case 'ms':\n\t      return n;\n\t    default:\n\t      return undefined;\n\t  }\n\t}\n\n\t/**\n\t * Short format for `ms`.\n\t *\n\t * @param {Number} ms\n\t * @return {String}\n\t * @api private\n\t */\n\n\tfunction fmtShort(ms) {\n\t  if (ms >= d) {\n\t    return Math.round(ms / d) + 'd';\n\t  }\n\t  if (ms >= h) {\n\t    return Math.round(ms / h) + 'h';\n\t  }\n\t  if (ms >= m) {\n\t    return Math.round(ms / m) + 'm';\n\t  }\n\t  if (ms >= s) {\n\t    return Math.round(ms / s) + 's';\n\t  }\n\t  return ms + 'ms';\n\t}\n\n\t/**\n\t * Long format for `ms`.\n\t *\n\t * @param {Number} ms\n\t * @return {String}\n\t * @api private\n\t */\n\n\tfunction fmtLong(ms) {\n\t  return plural(ms, d, 'day') || plural(ms, h, 'hour') || plural(ms, m, 'minute') || plural(ms, s, 'second') || ms + ' ms';\n\t}\n\n\t/**\n\t * Pluralization helper.\n\t */\n\n\tfunction plural(ms, n, name) {\n\t  if (ms < n) {\n\t    return;\n\t  }\n\t  if (ms < n * 1.5) {\n\t    return Math.floor(ms / n) + ' ' + name;\n\t  }\n\t  return Math.ceil(ms / n) + ' ' + name + 's';\n\t}\n\n/***/ }),\n/* 603 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = Number.isNaN || function (x) {\n\t\treturn x !== x;\n\t};\n\n/***/ }),\n/* 604 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {'use strict';\n\n\tfunction posix(path) {\n\t\treturn path.charAt(0) === '/';\n\t}\n\n\tfunction win32(path) {\n\t\t// https://github.com/nodejs/node/blob/b3fcc245fb25539909ef1d5eaa01dbf92e168633/lib/path.js#L56\n\t\tvar splitDeviceRe = /^([a-zA-Z]:|[\\\\\\/]{2}[^\\\\\\/]+[\\\\\\/]+[^\\\\\\/]+)?([\\\\\\/])?([\\s\\S]*?)$/;\n\t\tvar result = splitDeviceRe.exec(path);\n\t\tvar device = result[1] || '';\n\t\tvar isUnc = Boolean(device && device.charAt(1) !== ':');\n\n\t\t// UNC paths are always absolute\n\t\treturn Boolean(result[2] || isUnc);\n\t}\n\n\tmodule.exports = process.platform === 'win32' ? win32 : posix;\n\tmodule.exports.posix = posix;\n\tmodule.exports.win32 = win32;\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 605 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _keys = __webpack_require__(14);\n\n\tvar _keys2 = _interopRequireDefault(_keys);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _util = __webpack_require__(116);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\t/**\n\t * Copyright (c) 2014, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * https://raw.github.com/facebook/regenerator/master/LICENSE file. An\n\t * additional grant of patent rights can be found in the PATENTS file in\n\t * the same directory.\n\t */\n\n\tvar hasOwn = Object.prototype.hasOwnProperty;\n\n\t// The hoist function takes a FunctionExpression or FunctionDeclaration\n\t// and replaces any Declaration nodes in its body with assignments, then\n\t// returns a VariableDeclaration containing just the names of the removed\n\t// declarations.\n\texports.hoist = function (funPath) {\n\t  t.assertFunction(funPath.node);\n\n\t  var vars = {};\n\n\t  function varDeclToExpr(vdec, includeIdentifiers) {\n\t    t.assertVariableDeclaration(vdec);\n\t    // TODO assert.equal(vdec.kind, \"var\");\n\t    var exprs = [];\n\n\t    vdec.declarations.forEach(function (dec) {\n\t      // Note: We duplicate 'dec.id' here to ensure that the variable declaration IDs don't\n\t      // have the same 'loc' value, since that can make sourcemaps and retainLines behave poorly.\n\t      vars[dec.id.name] = t.identifier(dec.id.name);\n\n\t      if (dec.init) {\n\t        exprs.push(t.assignmentExpression(\"=\", dec.id, dec.init));\n\t      } else if (includeIdentifiers) {\n\t        exprs.push(dec.id);\n\t      }\n\t    });\n\n\t    if (exprs.length === 0) return null;\n\n\t    if (exprs.length === 1) return exprs[0];\n\n\t    return t.sequenceExpression(exprs);\n\t  }\n\n\t  funPath.get(\"body\").traverse({\n\t    VariableDeclaration: {\n\t      exit: function exit(path) {\n\t        var expr = varDeclToExpr(path.node, false);\n\t        if (expr === null) {\n\t          path.remove();\n\t        } else {\n\t          // We don't need to traverse this expression any further because\n\t          // there can't be any new declarations inside an expression.\n\t          util.replaceWithOrRemove(path, t.expressionStatement(expr));\n\t        }\n\n\t        // Since the original node has been either removed or replaced,\n\t        // avoid traversing it any further.\n\t        path.skip();\n\t      }\n\t    },\n\n\t    ForStatement: function ForStatement(path) {\n\t      var init = path.node.init;\n\t      if (t.isVariableDeclaration(init)) {\n\t        util.replaceWithOrRemove(path.get(\"init\"), varDeclToExpr(init, false));\n\t      }\n\t    },\n\n\t    ForXStatement: function ForXStatement(path) {\n\t      var left = path.get(\"left\");\n\t      if (left.isVariableDeclaration()) {\n\t        util.replaceWithOrRemove(left, varDeclToExpr(left.node, true));\n\t      }\n\t    },\n\n\t    FunctionDeclaration: function FunctionDeclaration(path) {\n\t      var node = path.node;\n\t      vars[node.id.name] = node.id;\n\n\t      var assignment = t.expressionStatement(t.assignmentExpression(\"=\", node.id, t.functionExpression(node.id, node.params, node.body, node.generator, node.expression)));\n\n\t      if (path.parentPath.isBlockStatement()) {\n\t        // Insert the assignment form before the first statement in the\n\t        // enclosing block.\n\t        path.parentPath.unshiftContainer(\"body\", assignment);\n\n\t        // Remove the function declaration now that we've inserted the\n\t        // equivalent assignment form at the beginning of the block.\n\t        path.remove();\n\t      } else {\n\t        // If the parent node is not a block statement, then we can just\n\t        // replace the declaration with the equivalent assignment form\n\t        // without worrying about hoisting it.\n\t        util.replaceWithOrRemove(path, assignment);\n\t      }\n\n\t      // Don't hoist variables out of inner functions.\n\t      path.skip();\n\t    },\n\n\t    FunctionExpression: function FunctionExpression(path) {\n\t      // Don't descend into nested function expressions.\n\t      path.skip();\n\t    }\n\t  });\n\n\t  var paramNames = {};\n\t  funPath.get(\"params\").forEach(function (paramPath) {\n\t    var param = paramPath.node;\n\t    if (t.isIdentifier(param)) {\n\t      paramNames[param.name] = param;\n\t    } else {\n\t      // Variables declared by destructuring parameter patterns will be\n\t      // harmlessly re-declared.\n\t    }\n\t  });\n\n\t  var declarations = [];\n\n\t  (0, _keys2.default)(vars).forEach(function (name) {\n\t    if (!hasOwn.call(paramNames, name)) {\n\t      declarations.push(t.variableDeclarator(vars[name], null));\n\t    }\n\t  });\n\n\t  if (declarations.length === 0) {\n\t    return null; // Be sure to handle this case!\n\t  }\n\n\t  return t.variableDeclaration(\"var\", declarations);\n\t};\n\n/***/ }),\n/* 606 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\n\texports.default = function () {\n\t  return __webpack_require__(610);\n\t};\n\n/***/ }),\n/* 607 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _assert = __webpack_require__(64);\n\n\tvar _assert2 = _interopRequireDefault(_assert);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _util = __webpack_require__(117);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tfunction Entry() {\n\t  _assert2.default.ok(this instanceof Entry);\n\t} /**\n\t   * Copyright (c) 2014, Facebook, Inc.\n\t   * All rights reserved.\n\t   *\n\t   * This source code is licensed under the BSD-style license found in the\n\t   * https://raw.github.com/facebook/regenerator/master/LICENSE file. An\n\t   * additional grant of patent rights can be found in the PATENTS file in\n\t   * the same directory.\n\t   */\n\n\tfunction FunctionEntry(returnLoc) {\n\t  Entry.call(this);\n\t  t.assertLiteral(returnLoc);\n\t  this.returnLoc = returnLoc;\n\t}\n\n\t(0, _util.inherits)(FunctionEntry, Entry);\n\texports.FunctionEntry = FunctionEntry;\n\n\tfunction LoopEntry(breakLoc, continueLoc, label) {\n\t  Entry.call(this);\n\n\t  t.assertLiteral(breakLoc);\n\t  t.assertLiteral(continueLoc);\n\n\t  if (label) {\n\t    t.assertIdentifier(label);\n\t  } else {\n\t    label = null;\n\t  }\n\n\t  this.breakLoc = breakLoc;\n\t  this.continueLoc = continueLoc;\n\t  this.label = label;\n\t}\n\n\t(0, _util.inherits)(LoopEntry, Entry);\n\texports.LoopEntry = LoopEntry;\n\n\tfunction SwitchEntry(breakLoc) {\n\t  Entry.call(this);\n\t  t.assertLiteral(breakLoc);\n\t  this.breakLoc = breakLoc;\n\t}\n\n\t(0, _util.inherits)(SwitchEntry, Entry);\n\texports.SwitchEntry = SwitchEntry;\n\n\tfunction TryEntry(firstLoc, catchEntry, finallyEntry) {\n\t  Entry.call(this);\n\n\t  t.assertLiteral(firstLoc);\n\n\t  if (catchEntry) {\n\t    _assert2.default.ok(catchEntry instanceof CatchEntry);\n\t  } else {\n\t    catchEntry = null;\n\t  }\n\n\t  if (finallyEntry) {\n\t    _assert2.default.ok(finallyEntry instanceof FinallyEntry);\n\t  } else {\n\t    finallyEntry = null;\n\t  }\n\n\t  // Have to have one or the other (or both).\n\t  _assert2.default.ok(catchEntry || finallyEntry);\n\n\t  this.firstLoc = firstLoc;\n\t  this.catchEntry = catchEntry;\n\t  this.finallyEntry = finallyEntry;\n\t}\n\n\t(0, _util.inherits)(TryEntry, Entry);\n\texports.TryEntry = TryEntry;\n\n\tfunction CatchEntry(firstLoc, paramId) {\n\t  Entry.call(this);\n\n\t  t.assertLiteral(firstLoc);\n\t  t.assertIdentifier(paramId);\n\n\t  this.firstLoc = firstLoc;\n\t  this.paramId = paramId;\n\t}\n\n\t(0, _util.inherits)(CatchEntry, Entry);\n\texports.CatchEntry = CatchEntry;\n\n\tfunction FinallyEntry(firstLoc, afterLoc) {\n\t  Entry.call(this);\n\t  t.assertLiteral(firstLoc);\n\t  t.assertLiteral(afterLoc);\n\t  this.firstLoc = firstLoc;\n\t  this.afterLoc = afterLoc;\n\t}\n\n\t(0, _util.inherits)(FinallyEntry, Entry);\n\texports.FinallyEntry = FinallyEntry;\n\n\tfunction LabeledEntry(breakLoc, label) {\n\t  Entry.call(this);\n\n\t  t.assertLiteral(breakLoc);\n\t  t.assertIdentifier(label);\n\n\t  this.breakLoc = breakLoc;\n\t  this.label = label;\n\t}\n\n\t(0, _util.inherits)(LabeledEntry, Entry);\n\texports.LabeledEntry = LabeledEntry;\n\n\tfunction LeapManager(emitter) {\n\t  _assert2.default.ok(this instanceof LeapManager);\n\n\t  var Emitter = __webpack_require__(283).Emitter;\n\t  _assert2.default.ok(emitter instanceof Emitter);\n\n\t  this.emitter = emitter;\n\t  this.entryStack = [new FunctionEntry(emitter.finalLoc)];\n\t}\n\n\tvar LMp = LeapManager.prototype;\n\texports.LeapManager = LeapManager;\n\n\tLMp.withEntry = function (entry, callback) {\n\t  _assert2.default.ok(entry instanceof Entry);\n\t  this.entryStack.push(entry);\n\t  try {\n\t    callback.call(this.emitter);\n\t  } finally {\n\t    var popped = this.entryStack.pop();\n\t    _assert2.default.strictEqual(popped, entry);\n\t  }\n\t};\n\n\tLMp._findLeapLocation = function (property, label) {\n\t  for (var i = this.entryStack.length - 1; i >= 0; --i) {\n\t    var entry = this.entryStack[i];\n\t    var loc = entry[property];\n\t    if (loc) {\n\t      if (label) {\n\t        if (entry.label && entry.label.name === label.name) {\n\t          return loc;\n\t        }\n\t      } else if (entry instanceof LabeledEntry) {\n\t        // Ignore LabeledEntry entries unless we are actually breaking to\n\t        // a label.\n\t      } else {\n\t        return loc;\n\t      }\n\t    }\n\t  }\n\n\t  return null;\n\t};\n\n\tLMp.getBreakLoc = function (label) {\n\t  return this._findLeapLocation(\"breakLoc\", label);\n\t};\n\n\tLMp.getContinueLoc = function (label) {\n\t  return this._findLeapLocation(\"continueLoc\", label);\n\t};\n\n/***/ }),\n/* 608 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tvar _assert = __webpack_require__(64);\n\n\tvar _assert2 = _interopRequireDefault(_assert);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\tvar m = __webpack_require__(281).makeAccessor(); /**\n\t                                            * Copyright (c) 2014, Facebook, Inc.\n\t                                            * All rights reserved.\n\t                                            *\n\t                                            * This source code is licensed under the BSD-style license found in the\n\t                                            * https://raw.github.com/facebook/regenerator/master/LICENSE file. An\n\t                                            * additional grant of patent rights can be found in the PATENTS file in\n\t                                            * the same directory.\n\t                                            */\n\n\tvar hasOwn = Object.prototype.hasOwnProperty;\n\n\tfunction makePredicate(propertyName, knownTypes) {\n\t  function onlyChildren(node) {\n\t    t.assertNode(node);\n\n\t    // Assume no side effects until we find out otherwise.\n\t    var result = false;\n\n\t    function check(child) {\n\t      if (result) {\n\t        // Do nothing.\n\t      } else if (Array.isArray(child)) {\n\t        child.some(check);\n\t      } else if (t.isNode(child)) {\n\t        _assert2.default.strictEqual(result, false);\n\t        result = predicate(child);\n\t      }\n\t      return result;\n\t    }\n\n\t    var keys = t.VISITOR_KEYS[node.type];\n\t    if (keys) {\n\t      for (var i = 0; i < keys.length; i++) {\n\t        var key = keys[i];\n\t        var child = node[key];\n\t        check(child);\n\t      }\n\t    }\n\n\t    return result;\n\t  }\n\n\t  function predicate(node) {\n\t    t.assertNode(node);\n\n\t    var meta = m(node);\n\t    if (hasOwn.call(meta, propertyName)) return meta[propertyName];\n\n\t    // Certain types are \"opaque,\" which means they have no side\n\t    // effects or leaps and we don't care about their subexpressions.\n\t    if (hasOwn.call(opaqueTypes, node.type)) return meta[propertyName] = false;\n\n\t    if (hasOwn.call(knownTypes, node.type)) return meta[propertyName] = true;\n\n\t    return meta[propertyName] = onlyChildren(node);\n\t  }\n\n\t  predicate.onlyChildren = onlyChildren;\n\n\t  return predicate;\n\t}\n\n\tvar opaqueTypes = {\n\t  FunctionExpression: true,\n\t  ArrowFunctionExpression: true\n\t};\n\n\t// These types potentially have side effects regardless of what side\n\t// effects their subexpressions have.\n\tvar sideEffectTypes = {\n\t  CallExpression: true, // Anything could happen!\n\t  ForInStatement: true, // Modifies the key variable.\n\t  UnaryExpression: true, // Think delete.\n\t  BinaryExpression: true, // Might invoke .toString() or .valueOf().\n\t  AssignmentExpression: true, // Side-effecting by definition.\n\t  UpdateExpression: true, // Updates are essentially assignments.\n\t  NewExpression: true // Similar to CallExpression.\n\t};\n\n\t// These types are the direct cause of all leaps in control flow.\n\tvar leapTypes = {\n\t  YieldExpression: true,\n\t  BreakStatement: true,\n\t  ContinueStatement: true,\n\t  ReturnStatement: true,\n\t  ThrowStatement: true\n\t};\n\n\t// All leap types are also side effect types.\n\tfor (var type in leapTypes) {\n\t  if (hasOwn.call(leapTypes, type)) {\n\t    sideEffectTypes[type] = leapTypes[type];\n\t  }\n\t}\n\n\texports.hasSideEffects = makePredicate(\"hasSideEffects\", sideEffectTypes);\n\texports.containsLeap = makePredicate(\"containsLeap\", leapTypes);\n\n/***/ }),\n/* 609 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\texports.__esModule = true;\n\texports.default = replaceShorthandObjectMethod;\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _util = __webpack_require__(116);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\t// this function converts a shorthand object generator method into a normal\n\t// (non-shorthand) object property which is a generator function expression. for\n\t// example, this:\n\t//\n\t//  var foo = {\n\t//    *bar(baz) { return 5; }\n\t//  }\n\t//\n\t// should be replaced with:\n\t//\n\t//  var foo = {\n\t//    bar: function*(baz) { return 5; }\n\t//  }\n\t//\n\t// to do this, it clones the parameter array and the body of the object generator\n\t// method into a new FunctionExpression.\n\t//\n\t// this method can be passed any Function AST node path, and it will return\n\t// either:\n\t//   a) the path that was passed in (iff the path did not need to be replaced) or\n\t//   b) the path of the new FunctionExpression that was created as a replacement\n\t//     (iff the path did need to be replaced)\n\t//\n\t// In either case, though, the caller can count on the fact that the return value\n\t// is a Function AST node path.\n\t//\n\t// If this function is called with an AST node path that is not a Function (or with an\n\t// argument that isn't an AST node path), it will throw an error.\n\tfunction replaceShorthandObjectMethod(path) {\n\t  if (!path.node || !t.isFunction(path.node)) {\n\t    throw new Error(\"replaceShorthandObjectMethod can only be called on Function AST node paths.\");\n\t  }\n\n\t  // this function only replaces shorthand object methods (called ObjectMethod\n\t  // in Babel-speak).\n\t  if (!t.isObjectMethod(path.node)) {\n\t    return path;\n\t  }\n\n\t  // this function only replaces generators.\n\t  if (!path.node.generator) {\n\t    return path;\n\t  }\n\n\t  var parameters = path.node.params.map(function (param) {\n\t    return t.cloneDeep(param);\n\t  });\n\n\t  var functionExpression = t.functionExpression(null, // id\n\t  parameters, // params\n\t  t.cloneDeep(path.node.body), // body\n\t  path.node.generator, path.node.async);\n\n\t  util.replaceWithOrRemove(path, t.objectProperty(t.cloneDeep(path.node.key), // key\n\t  functionExpression, //value\n\t  path.node.computed, // computed\n\t  false // shorthand\n\t  ));\n\n\t  // path now refers to the ObjectProperty AST node path, but we want to return a\n\t  // Function AST node path for the function expression we created. we know that\n\t  // the FunctionExpression we just created is the value of the ObjectProperty,\n\t  // so return the \"value\" path off of this path.\n\t  return path.get(\"value\");\n\t}\n\n/***/ }),\n/* 610 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/**\n\t * Copyright (c) 2014, Facebook, Inc.\n\t * All rights reserved.\n\t *\n\t * This source code is licensed under the BSD-style license found in the\n\t * https://raw.github.com/facebook/regenerator/master/LICENSE file. An\n\t * additional grant of patent rights can be found in the PATENTS file in\n\t * the same directory.\n\t */\n\n\t\"use strict\";\n\n\tvar _assert = __webpack_require__(64);\n\n\tvar _assert2 = _interopRequireDefault(_assert);\n\n\tvar _babelTypes = __webpack_require__(1);\n\n\tvar t = _interopRequireWildcard(_babelTypes);\n\n\tvar _hoist = __webpack_require__(605);\n\n\tvar _emit = __webpack_require__(283);\n\n\tvar _replaceShorthandObjectMethod = __webpack_require__(609);\n\n\tvar _replaceShorthandObjectMethod2 = _interopRequireDefault(_replaceShorthandObjectMethod);\n\n\tvar _util = __webpack_require__(116);\n\n\tvar util = _interopRequireWildcard(_util);\n\n\tfunction _interopRequireWildcard(obj) {\n\t  if (obj && obj.__esModule) {\n\t    return obj;\n\t  } else {\n\t    var newObj = {};if (obj != null) {\n\t      for (var key in obj) {\n\t        if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key];\n\t      }\n\t    }newObj.default = obj;return newObj;\n\t  }\n\t}\n\n\tfunction _interopRequireDefault(obj) {\n\t  return obj && obj.__esModule ? obj : { default: obj };\n\t}\n\n\texports.name = \"regenerator-transform\";\n\n\texports.visitor = {\n\t  Function: {\n\t    exit: function exit(path, state) {\n\t      var node = path.node;\n\n\t      if (node.generator) {\n\t        if (node.async) {\n\t          // Async generator\n\t          if (state.opts.asyncGenerators === false) return;\n\t        } else {\n\t          // Plain generator\n\t          if (state.opts.generators === false) return;\n\t        }\n\t      } else if (node.async) {\n\t        // Async function\n\t        if (state.opts.async === false) return;\n\t      } else {\n\t        // Not a generator or async function.\n\t        return;\n\t      }\n\n\t      // if this is an ObjectMethod, we need to convert it to an ObjectProperty\n\t      path = (0, _replaceShorthandObjectMethod2.default)(path);\n\t      node = path.node;\n\n\t      var contextId = path.scope.generateUidIdentifier(\"context\");\n\t      var argsId = path.scope.generateUidIdentifier(\"args\");\n\n\t      path.ensureBlock();\n\t      var bodyBlockPath = path.get(\"body\");\n\n\t      if (node.async) {\n\t        bodyBlockPath.traverse(awaitVisitor);\n\t      }\n\n\t      bodyBlockPath.traverse(functionSentVisitor, {\n\t        context: contextId\n\t      });\n\n\t      var outerBody = [];\n\t      var innerBody = [];\n\n\t      bodyBlockPath.get(\"body\").forEach(function (childPath) {\n\t        var node = childPath.node;\n\t        if (t.isExpressionStatement(node) && t.isStringLiteral(node.expression)) {\n\t          // Babylon represents directives like \"use strict\" as elements\n\t          // of a bodyBlockPath.node.directives array, but they could just\n\t          // as easily be represented (by other parsers) as traditional\n\t          // string-literal-valued expression statements, so we need to\n\t          // handle that here. (#248)\n\t          outerBody.push(node);\n\t        } else if (node && node._blockHoist != null) {\n\t          outerBody.push(node);\n\t        } else {\n\t          innerBody.push(node);\n\t        }\n\t      });\n\n\t      if (outerBody.length > 0) {\n\t        // Only replace the inner body if we actually hoisted any statements\n\t        // to the outer body.\n\t        bodyBlockPath.node.body = innerBody;\n\t      }\n\n\t      var outerFnExpr = getOuterFnExpr(path);\n\t      // Note that getOuterFnExpr has the side-effect of ensuring that the\n\t      // function has a name (so node.id will always be an Identifier), even\n\t      // if a temporary name has to be synthesized.\n\t      t.assertIdentifier(node.id);\n\t      var innerFnId = t.identifier(node.id.name + \"$\");\n\n\t      // Turn all declarations into vars, and replace the original\n\t      // declarations with equivalent assignment expressions.\n\t      var vars = (0, _hoist.hoist)(path);\n\n\t      var didRenameArguments = renameArguments(path, argsId);\n\t      if (didRenameArguments) {\n\t        vars = vars || t.variableDeclaration(\"var\", []);\n\t        var argumentIdentifier = t.identifier(\"arguments\");\n\t        // we need to do this as otherwise arguments in arrow functions gets hoisted\n\t        argumentIdentifier._shadowedFunctionLiteral = path;\n\t        vars.declarations.push(t.variableDeclarator(argsId, argumentIdentifier));\n\t      }\n\n\t      var emitter = new _emit.Emitter(contextId);\n\t      emitter.explode(path.get(\"body\"));\n\n\t      if (vars && vars.declarations.length > 0) {\n\t        outerBody.push(vars);\n\t      }\n\n\t      var wrapArgs = [emitter.getContextFunction(innerFnId),\n\t      // Async functions that are not generators don't care about the\n\t      // outer function because they don't need it to be marked and don't\n\t      // inherit from its .prototype.\n\t      node.generator ? outerFnExpr : t.nullLiteral(), t.thisExpression()];\n\n\t      var tryLocsList = emitter.getTryLocsList();\n\t      if (tryLocsList) {\n\t        wrapArgs.push(tryLocsList);\n\t      }\n\n\t      var wrapCall = t.callExpression(util.runtimeProperty(node.async ? \"async\" : \"wrap\"), wrapArgs);\n\n\t      outerBody.push(t.returnStatement(wrapCall));\n\t      node.body = t.blockStatement(outerBody);\n\n\t      var oldDirectives = bodyBlockPath.node.directives;\n\t      if (oldDirectives) {\n\t        // Babylon represents directives like \"use strict\" as elements of\n\t        // a bodyBlockPath.node.directives array. (#248)\n\t        node.body.directives = oldDirectives;\n\t      }\n\n\t      var wasGeneratorFunction = node.generator;\n\t      if (wasGeneratorFunction) {\n\t        node.generator = false;\n\t      }\n\n\t      if (node.async) {\n\t        node.async = false;\n\t      }\n\n\t      if (wasGeneratorFunction && t.isExpression(node)) {\n\t        util.replaceWithOrRemove(path, t.callExpression(util.runtimeProperty(\"mark\"), [node]));\n\t        path.addComment(\"leading\", \"#__PURE__\");\n\t      }\n\n\t      // Generators are processed in 'exit' handlers so that regenerator only has to run on\n\t      // an ES5 AST, but that means traversal will not pick up newly inserted references\n\t      // to things like 'regeneratorRuntime'. To avoid this, we explicitly requeue.\n\t      path.requeue();\n\t    }\n\t  }\n\t};\n\n\t// Given a NodePath for a Function, return an Expression node that can be\n\t// used to refer reliably to the function object from inside the function.\n\t// This expression is essentially a replacement for arguments.callee, with\n\t// the key advantage that it works in strict mode.\n\tfunction getOuterFnExpr(funPath) {\n\t  var node = funPath.node;\n\t  t.assertFunction(node);\n\n\t  if (!node.id) {\n\t    // Default-exported function declarations, and function expressions may not\n\t    // have a name to reference, so we explicitly add one.\n\t    node.id = funPath.scope.parent.generateUidIdentifier(\"callee\");\n\t  }\n\n\t  if (node.generator && // Non-generator functions don't need to be marked.\n\t  t.isFunctionDeclaration(node)) {\n\t    // Return the identifier returned by runtime.mark(<node.id>).\n\t    return getMarkedFunctionId(funPath);\n\t  }\n\n\t  return node.id;\n\t}\n\n\tvar getMarkInfo = __webpack_require__(281).makeAccessor();\n\n\tfunction getMarkedFunctionId(funPath) {\n\t  var node = funPath.node;\n\t  t.assertIdentifier(node.id);\n\n\t  var blockPath = funPath.findParent(function (path) {\n\t    return path.isProgram() || path.isBlockStatement();\n\t  });\n\n\t  if (!blockPath) {\n\t    return node.id;\n\t  }\n\n\t  var block = blockPath.node;\n\t  _assert2.default.ok(Array.isArray(block.body));\n\n\t  var info = getMarkInfo(block);\n\t  if (!info.decl) {\n\t    info.decl = t.variableDeclaration(\"var\", []);\n\t    blockPath.unshiftContainer(\"body\", info.decl);\n\t    info.declPath = blockPath.get(\"body.0\");\n\t  }\n\n\t  _assert2.default.strictEqual(info.declPath.node, info.decl);\n\n\t  // Get a new unique identifier for our marked variable.\n\t  var markedId = blockPath.scope.generateUidIdentifier(\"marked\");\n\t  var markCallExp = t.callExpression(util.runtimeProperty(\"mark\"), [node.id]);\n\n\t  var index = info.decl.declarations.push(t.variableDeclarator(markedId, markCallExp)) - 1;\n\n\t  var markCallExpPath = info.declPath.get(\"declarations.\" + index + \".init\");\n\n\t  _assert2.default.strictEqual(markCallExpPath.node, markCallExp);\n\n\t  markCallExpPath.addComment(\"leading\", \"#__PURE__\");\n\n\t  return markedId;\n\t}\n\n\tfunction renameArguments(funcPath, argsId) {\n\t  var state = {\n\t    didRenameArguments: false,\n\t    argsId: argsId\n\t  };\n\n\t  funcPath.traverse(argumentsVisitor, state);\n\n\t  // If the traversal replaced any arguments references, then we need to\n\t  // alias the outer function's arguments binding (be it the implicit\n\t  // arguments object or some other parameter or variable) to the variable\n\t  // named by argsId.\n\t  return state.didRenameArguments;\n\t}\n\n\tvar argumentsVisitor = {\n\t  \"FunctionExpression|FunctionDeclaration\": function FunctionExpressionFunctionDeclaration(path) {\n\t    path.skip();\n\t  },\n\n\t  Identifier: function Identifier(path, state) {\n\t    if (path.node.name === \"arguments\" && util.isReference(path)) {\n\t      util.replaceWithOrRemove(path, state.argsId);\n\t      state.didRenameArguments = true;\n\t    }\n\t  }\n\t};\n\n\tvar functionSentVisitor = {\n\t  MetaProperty: function MetaProperty(path) {\n\t    var node = path.node;\n\n\t    if (node.meta.name === \"function\" && node.property.name === \"sent\") {\n\t      util.replaceWithOrRemove(path, t.memberExpression(this.context, t.identifier(\"_sent\")));\n\t    }\n\t  }\n\t};\n\n\tvar awaitVisitor = {\n\t  Function: function Function(path) {\n\t    path.skip(); // Don't descend into nested function scopes.\n\t  },\n\n\t  AwaitExpression: function AwaitExpression(path) {\n\t    // Convert await expressions to yield expressions.\n\t    var argument = path.node.argument;\n\n\t    // Transforming `await x` to `yield regeneratorRuntime.awrap(x)`\n\t    // causes the argument to be wrapped in such a way that the runtime\n\t    // can distinguish between awaited and merely yielded values.\n\t    util.replaceWithOrRemove(path, t.yieldExpression(t.callExpression(util.runtimeProperty(\"awrap\"), [argument]), false));\n\t  }\n\t};\n\n/***/ }),\n/* 611 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t// Generated by `/scripts/character-class-escape-sets.js`. Do not edit.\n\tvar regenerate = __webpack_require__(282);\n\n\texports.REGULAR = {\n\t\t'd': regenerate().addRange(0x30, 0x39),\n\t\t'D': regenerate().addRange(0x0, 0x2F).addRange(0x3A, 0xFFFF),\n\t\t's': regenerate(0x20, 0xA0, 0x1680, 0x202F, 0x205F, 0x3000, 0xFEFF).addRange(0x9, 0xD).addRange(0x2000, 0x200A).addRange(0x2028, 0x2029),\n\t\t'S': regenerate().addRange(0x0, 0x8).addRange(0xE, 0x1F).addRange(0x21, 0x9F).addRange(0xA1, 0x167F).addRange(0x1681, 0x1FFF).addRange(0x200B, 0x2027).addRange(0x202A, 0x202E).addRange(0x2030, 0x205E).addRange(0x2060, 0x2FFF).addRange(0x3001, 0xFEFE).addRange(0xFF00, 0xFFFF),\n\t\t'w': regenerate(0x5F).addRange(0x30, 0x39).addRange(0x41, 0x5A).addRange(0x61, 0x7A),\n\t\t'W': regenerate(0x60).addRange(0x0, 0x2F).addRange(0x3A, 0x40).addRange(0x5B, 0x5E).addRange(0x7B, 0xFFFF)\n\t};\n\n\texports.UNICODE = {\n\t\t'd': regenerate().addRange(0x30, 0x39),\n\t\t'D': regenerate().addRange(0x0, 0x2F).addRange(0x3A, 0x10FFFF),\n\t\t's': regenerate(0x20, 0xA0, 0x1680, 0x202F, 0x205F, 0x3000, 0xFEFF).addRange(0x9, 0xD).addRange(0x2000, 0x200A).addRange(0x2028, 0x2029),\n\t\t'S': regenerate().addRange(0x0, 0x8).addRange(0xE, 0x1F).addRange(0x21, 0x9F).addRange(0xA1, 0x167F).addRange(0x1681, 0x1FFF).addRange(0x200B, 0x2027).addRange(0x202A, 0x202E).addRange(0x2030, 0x205E).addRange(0x2060, 0x2FFF).addRange(0x3001, 0xFEFE).addRange(0xFF00, 0x10FFFF),\n\t\t'w': regenerate(0x5F).addRange(0x30, 0x39).addRange(0x41, 0x5A).addRange(0x61, 0x7A),\n\t\t'W': regenerate(0x60).addRange(0x0, 0x2F).addRange(0x3A, 0x40).addRange(0x5B, 0x5E).addRange(0x7B, 0x10FFFF)\n\t};\n\n\texports.UNICODE_IGNORE_CASE = {\n\t\t'd': regenerate().addRange(0x30, 0x39),\n\t\t'D': regenerate().addRange(0x0, 0x2F).addRange(0x3A, 0x10FFFF),\n\t\t's': regenerate(0x20, 0xA0, 0x1680, 0x202F, 0x205F, 0x3000, 0xFEFF).addRange(0x9, 0xD).addRange(0x2000, 0x200A).addRange(0x2028, 0x2029),\n\t\t'S': regenerate().addRange(0x0, 0x8).addRange(0xE, 0x1F).addRange(0x21, 0x9F).addRange(0xA1, 0x167F).addRange(0x1681, 0x1FFF).addRange(0x200B, 0x2027).addRange(0x202A, 0x202E).addRange(0x2030, 0x205E).addRange(0x2060, 0x2FFF).addRange(0x3001, 0xFEFE).addRange(0xFF00, 0x10FFFF),\n\t\t'w': regenerate(0x5F, 0x17F, 0x212A).addRange(0x30, 0x39).addRange(0x41, 0x5A).addRange(0x61, 0x7A),\n\t\t'W': regenerate(0x4B, 0x53, 0x60).addRange(0x0, 0x2F).addRange(0x3A, 0x40).addRange(0x5B, 0x5E).addRange(0x7B, 0x10FFFF)\n\t};\n\n/***/ }),\n/* 612 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar generate = __webpack_require__(613).generate;\n\tvar parse = __webpack_require__(614).parse;\n\tvar regenerate = __webpack_require__(282);\n\tvar iuMappings = __webpack_require__(631);\n\tvar ESCAPE_SETS = __webpack_require__(611);\n\n\tfunction getCharacterClassEscapeSet(character) {\n\t\tif (unicode) {\n\t\t\tif (ignoreCase) {\n\t\t\t\treturn ESCAPE_SETS.UNICODE_IGNORE_CASE[character];\n\t\t\t}\n\t\t\treturn ESCAPE_SETS.UNICODE[character];\n\t\t}\n\t\treturn ESCAPE_SETS.REGULAR[character];\n\t}\n\n\tvar object = {};\n\tvar hasOwnProperty = object.hasOwnProperty;\n\tfunction has(object, property) {\n\t\treturn hasOwnProperty.call(object, property);\n\t}\n\n\t// Prepare a Regenerate set containing all code points, used for negative\n\t// character classes (if any).\n\tvar UNICODE_SET = regenerate().addRange(0x0, 0x10FFFF);\n\t// Without the `u` flag, the range stops at 0xFFFF.\n\t// https://mths.be/es6#sec-pattern-semantics\n\tvar BMP_SET = regenerate().addRange(0x0, 0xFFFF);\n\n\t// Prepare a Regenerate set containing all code points that are supposed to be\n\t// matched by `/./u`. https://mths.be/es6#sec-atom\n\tvar DOT_SET_UNICODE = UNICODE_SET.clone() // all Unicode code points\n\t.remove(\n\t// minus `LineTerminator`s (https://mths.be/es6#sec-line-terminators):\n\t0x000A, // Line Feed <LF>\n\t0x000D, // Carriage Return <CR>\n\t0x2028, // Line Separator <LS>\n\t0x2029 // Paragraph Separator <PS>\n\t);\n\t// Prepare a Regenerate set containing all code points that are supposed to be\n\t// matched by `/./` (only BMP code points).\n\tvar DOT_SET = DOT_SET_UNICODE.clone().intersection(BMP_SET);\n\n\t// Add a range of code points + any case-folded code points in that range to a\n\t// set.\n\tregenerate.prototype.iuAddRange = function (min, max) {\n\t\tvar $this = this;\n\t\tdo {\n\t\t\tvar folded = caseFold(min);\n\t\t\tif (folded) {\n\t\t\t\t$this.add(folded);\n\t\t\t}\n\t\t} while (++min <= max);\n\t\treturn $this;\n\t};\n\n\tfunction assign(target, source) {\n\t\tfor (var key in source) {\n\t\t\t// Note: `hasOwnProperty` is not needed here.\n\t\t\ttarget[key] = source[key];\n\t\t}\n\t}\n\n\tfunction update(item, pattern) {\n\t\t// TODO: Test if memoizing `pattern` here is worth the effort.\n\t\tif (!pattern) {\n\t\t\treturn;\n\t\t}\n\t\tvar tree = parse(pattern, '');\n\t\tswitch (tree.type) {\n\t\t\tcase 'characterClass':\n\t\t\tcase 'group':\n\t\t\tcase 'value':\n\t\t\t\t// No wrapping needed.\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t// Wrap the pattern in a non-capturing group.\n\t\t\t\ttree = wrap(tree, pattern);\n\t\t}\n\t\tassign(item, tree);\n\t}\n\n\tfunction wrap(tree, pattern) {\n\t\t// Wrap the pattern in a non-capturing group.\n\t\treturn {\n\t\t\t'type': 'group',\n\t\t\t'behavior': 'ignore',\n\t\t\t'body': [tree],\n\t\t\t'raw': '(?:' + pattern + ')'\n\t\t};\n\t}\n\n\tfunction caseFold(codePoint) {\n\t\treturn has(iuMappings, codePoint) ? iuMappings[codePoint] : false;\n\t}\n\n\tvar ignoreCase = false;\n\tvar unicode = false;\n\tfunction processCharacterClass(characterClassItem) {\n\t\tvar set = regenerate();\n\t\tvar body = characterClassItem.body.forEach(function (item) {\n\t\t\tswitch (item.type) {\n\t\t\t\tcase 'value':\n\t\t\t\t\tset.add(item.codePoint);\n\t\t\t\t\tif (ignoreCase && unicode) {\n\t\t\t\t\t\tvar folded = caseFold(item.codePoint);\n\t\t\t\t\t\tif (folded) {\n\t\t\t\t\t\t\tset.add(folded);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'characterClassRange':\n\t\t\t\t\tvar min = item.min.codePoint;\n\t\t\t\t\tvar max = item.max.codePoint;\n\t\t\t\t\tset.addRange(min, max);\n\t\t\t\t\tif (ignoreCase && unicode) {\n\t\t\t\t\t\tset.iuAddRange(min, max);\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'characterClassEscape':\n\t\t\t\t\tset.add(getCharacterClassEscapeSet(item.value));\n\t\t\t\t\tbreak;\n\t\t\t\t// The `default` clause is only here as a safeguard; it should never be\n\t\t\t\t// reached. Code coverage tools should ignore it.\n\t\t\t\t/* istanbul ignore next */\n\t\t\t\tdefault:\n\t\t\t\t\tthrow Error('Unknown term type: ' + item.type);\n\t\t\t}\n\t\t});\n\t\tif (characterClassItem.negative) {\n\t\t\tset = (unicode ? UNICODE_SET : BMP_SET).clone().remove(set);\n\t\t}\n\t\tupdate(characterClassItem, set.toString());\n\t\treturn characterClassItem;\n\t}\n\n\tfunction processTerm(item) {\n\t\tswitch (item.type) {\n\t\t\tcase 'dot':\n\t\t\t\tupdate(item, (unicode ? DOT_SET_UNICODE : DOT_SET).toString());\n\t\t\t\tbreak;\n\t\t\tcase 'characterClass':\n\t\t\t\titem = processCharacterClass(item);\n\t\t\t\tbreak;\n\t\t\tcase 'characterClassEscape':\n\t\t\t\tupdate(item, getCharacterClassEscapeSet(item.value).toString());\n\t\t\t\tbreak;\n\t\t\tcase 'alternative':\n\t\t\tcase 'disjunction':\n\t\t\tcase 'group':\n\t\t\tcase 'quantifier':\n\t\t\t\titem.body = item.body.map(processTerm);\n\t\t\t\tbreak;\n\t\t\tcase 'value':\n\t\t\t\tvar codePoint = item.codePoint;\n\t\t\t\tvar set = regenerate(codePoint);\n\t\t\t\tif (ignoreCase && unicode) {\n\t\t\t\t\tvar folded = caseFold(codePoint);\n\t\t\t\t\tif (folded) {\n\t\t\t\t\t\tset.add(folded);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tupdate(item, set.toString());\n\t\t\t\tbreak;\n\t\t\tcase 'anchor':\n\t\t\tcase 'empty':\n\t\t\tcase 'group':\n\t\t\tcase 'reference':\n\t\t\t\t// Nothing to do here.\n\t\t\t\tbreak;\n\t\t\t// The `default` clause is only here as a safeguard; it should never be\n\t\t\t// reached. Code coverage tools should ignore it.\n\t\t\t/* istanbul ignore next */\n\t\t\tdefault:\n\t\t\t\tthrow Error('Unknown term type: ' + item.type);\n\t\t}\n\t\treturn item;\n\t};\n\n\tmodule.exports = function (pattern, flags) {\n\t\tvar tree = parse(pattern, flags);\n\t\tignoreCase = flags ? flags.indexOf('i') > -1 : false;\n\t\tunicode = flags ? flags.indexOf('u') > -1 : false;\n\t\tassign(tree, processTerm(tree));\n\t\treturn generate(tree);\n\t};\n\n/***/ }),\n/* 613 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module, global) {'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\t/*!\n\t * RegJSGen\n\t * Copyright 2014 Benjamin Tan <https://d10.github.io/>\n\t * Available under MIT license <http://d10.mit-license.org/>\n\t */\n\t;(function () {\n\t  'use strict';\n\n\t  /** Used to determine if values are of the language type `Object` */\n\n\t  var objectTypes = {\n\t    'function': true,\n\t    'object': true\n\t  };\n\n\t  /** Used as a reference to the global object */\n\t  var root = objectTypes[typeof window === 'undefined' ? 'undefined' : _typeof(window)] && window || this;\n\n\t  /** Backup possible global object */\n\t  var oldRoot = root;\n\n\t  /** Detect free variable `exports` */\n\t  var freeExports = objectTypes[ false ? 'undefined' : _typeof(exports)] && exports;\n\n\t  /** Detect free variable `module` */\n\t  var freeModule = objectTypes[ false ? 'undefined' : _typeof(module)] && module && !module.nodeType && module;\n\n\t  /** Detect free variable `global` from Node.js or Browserified code and use it as `root` */\n\t  var freeGlobal = freeExports && freeModule && (typeof global === 'undefined' ? 'undefined' : _typeof(global)) == 'object' && global;\n\t  if (freeGlobal && (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal || freeGlobal.self === freeGlobal)) {\n\t    root = freeGlobal;\n\t  }\n\n\t  /*--------------------------------------------------------------------------*/\n\n\t  /*! Based on https://mths.be/fromcodepoint v0.2.0 by @mathias */\n\n\t  var stringFromCharCode = String.fromCharCode;\n\t  var floor = Math.floor;\n\t  function fromCodePoint() {\n\t    var MAX_SIZE = 0x4000;\n\t    var codeUnits = [];\n\t    var highSurrogate;\n\t    var lowSurrogate;\n\t    var index = -1;\n\t    var length = arguments.length;\n\t    if (!length) {\n\t      return '';\n\t    }\n\t    var result = '';\n\t    while (++index < length) {\n\t      var codePoint = Number(arguments[index]);\n\t      if (!isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity`\n\t      codePoint < 0 || // not a valid Unicode code point\n\t      codePoint > 0x10FFFF || // not a valid Unicode code point\n\t      floor(codePoint) != codePoint // not an integer\n\t      ) {\n\t          throw RangeError('Invalid code point: ' + codePoint);\n\t        }\n\t      if (codePoint <= 0xFFFF) {\n\t        // BMP code point\n\t        codeUnits.push(codePoint);\n\t      } else {\n\t        // Astral code point; split in surrogate halves\n\t        // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n\t        codePoint -= 0x10000;\n\t        highSurrogate = (codePoint >> 10) + 0xD800;\n\t        lowSurrogate = codePoint % 0x400 + 0xDC00;\n\t        codeUnits.push(highSurrogate, lowSurrogate);\n\t      }\n\t      if (index + 1 == length || codeUnits.length > MAX_SIZE) {\n\t        result += stringFromCharCode.apply(null, codeUnits);\n\t        codeUnits.length = 0;\n\t      }\n\t    }\n\t    return result;\n\t  }\n\n\t  function assertType(type, expected) {\n\t    if (expected.indexOf('|') == -1) {\n\t      if (type == expected) {\n\t        return;\n\t      }\n\n\t      throw Error('Invalid node type: ' + type);\n\t    }\n\n\t    expected = assertType.hasOwnProperty(expected) ? assertType[expected] : assertType[expected] = RegExp('^(?:' + expected + ')$');\n\n\t    if (expected.test(type)) {\n\t      return;\n\t    }\n\n\t    throw Error('Invalid node type: ' + type);\n\t  }\n\n\t  /*--------------------------------------------------------------------------*/\n\n\t  function generate(node) {\n\t    var type = node.type;\n\n\t    if (generate.hasOwnProperty(type) && typeof generate[type] == 'function') {\n\t      return generate[type](node);\n\t    }\n\n\t    throw Error('Invalid node type: ' + type);\n\t  }\n\n\t  /*--------------------------------------------------------------------------*/\n\n\t  function generateAlternative(node) {\n\t    assertType(node.type, 'alternative');\n\n\t    var terms = node.body,\n\t        length = terms ? terms.length : 0;\n\n\t    if (length == 1) {\n\t      return generateTerm(terms[0]);\n\t    } else {\n\t      var i = -1,\n\t          result = '';\n\n\t      while (++i < length) {\n\t        result += generateTerm(terms[i]);\n\t      }\n\n\t      return result;\n\t    }\n\t  }\n\n\t  function generateAnchor(node) {\n\t    assertType(node.type, 'anchor');\n\n\t    switch (node.kind) {\n\t      case 'start':\n\t        return '^';\n\t      case 'end':\n\t        return '$';\n\t      case 'boundary':\n\t        return '\\\\b';\n\t      case 'not-boundary':\n\t        return '\\\\B';\n\t      default:\n\t        throw Error('Invalid assertion');\n\t    }\n\t  }\n\n\t  function generateAtom(node) {\n\t    assertType(node.type, 'anchor|characterClass|characterClassEscape|dot|group|reference|value');\n\n\t    return generate(node);\n\t  }\n\n\t  function generateCharacterClass(node) {\n\t    assertType(node.type, 'characterClass');\n\n\t    var classRanges = node.body,\n\t        length = classRanges ? classRanges.length : 0;\n\n\t    var i = -1,\n\t        result = '[';\n\n\t    if (node.negative) {\n\t      result += '^';\n\t    }\n\n\t    while (++i < length) {\n\t      result += generateClassAtom(classRanges[i]);\n\t    }\n\n\t    result += ']';\n\n\t    return result;\n\t  }\n\n\t  function generateCharacterClassEscape(node) {\n\t    assertType(node.type, 'characterClassEscape');\n\n\t    return '\\\\' + node.value;\n\t  }\n\n\t  function generateCharacterClassRange(node) {\n\t    assertType(node.type, 'characterClassRange');\n\n\t    var min = node.min,\n\t        max = node.max;\n\n\t    if (min.type == 'characterClassRange' || max.type == 'characterClassRange') {\n\t      throw Error('Invalid character class range');\n\t    }\n\n\t    return generateClassAtom(min) + '-' + generateClassAtom(max);\n\t  }\n\n\t  function generateClassAtom(node) {\n\t    assertType(node.type, 'anchor|characterClassEscape|characterClassRange|dot|value');\n\n\t    return generate(node);\n\t  }\n\n\t  function generateDisjunction(node) {\n\t    assertType(node.type, 'disjunction');\n\n\t    var body = node.body,\n\t        length = body ? body.length : 0;\n\n\t    if (length == 0) {\n\t      throw Error('No body');\n\t    } else if (length == 1) {\n\t      return generate(body[0]);\n\t    } else {\n\t      var i = -1,\n\t          result = '';\n\n\t      while (++i < length) {\n\t        if (i != 0) {\n\t          result += '|';\n\t        }\n\t        result += generate(body[i]);\n\t      }\n\n\t      return result;\n\t    }\n\t  }\n\n\t  function generateDot(node) {\n\t    assertType(node.type, 'dot');\n\n\t    return '.';\n\t  }\n\n\t  function generateGroup(node) {\n\t    assertType(node.type, 'group');\n\n\t    var result = '(';\n\n\t    switch (node.behavior) {\n\t      case 'normal':\n\t        break;\n\t      case 'ignore':\n\t        result += '?:';\n\t        break;\n\t      case 'lookahead':\n\t        result += '?=';\n\t        break;\n\t      case 'negativeLookahead':\n\t        result += '?!';\n\t        break;\n\t      default:\n\t        throw Error('Invalid behaviour: ' + node.behaviour);\n\t    }\n\n\t    var body = node.body,\n\t        length = body ? body.length : 0;\n\n\t    if (length == 1) {\n\t      result += generate(body[0]);\n\t    } else {\n\t      var i = -1;\n\n\t      while (++i < length) {\n\t        result += generate(body[i]);\n\t      }\n\t    }\n\n\t    result += ')';\n\n\t    return result;\n\t  }\n\n\t  function generateQuantifier(node) {\n\t    assertType(node.type, 'quantifier');\n\n\t    var quantifier = '',\n\t        min = node.min,\n\t        max = node.max;\n\n\t    switch (max) {\n\t      case undefined:\n\t      case null:\n\t        switch (min) {\n\t          case 0:\n\t            quantifier = '*';\n\t            break;\n\t          case 1:\n\t            quantifier = '+';\n\t            break;\n\t          default:\n\t            quantifier = '{' + min + ',}';\n\t            break;\n\t        }\n\t        break;\n\t      default:\n\t        if (min == max) {\n\t          quantifier = '{' + min + '}';\n\t        } else if (min == 0 && max == 1) {\n\t          quantifier = '?';\n\t        } else {\n\t          quantifier = '{' + min + ',' + max + '}';\n\t        }\n\t        break;\n\t    }\n\n\t    if (!node.greedy) {\n\t      quantifier += '?';\n\t    }\n\n\t    return generateAtom(node.body[0]) + quantifier;\n\t  }\n\n\t  function generateReference(node) {\n\t    assertType(node.type, 'reference');\n\n\t    return '\\\\' + node.matchIndex;\n\t  }\n\n\t  function generateTerm(node) {\n\t    assertType(node.type, 'anchor|characterClass|characterClassEscape|empty|group|quantifier|reference|value');\n\n\t    return generate(node);\n\t  }\n\n\t  function generateValue(node) {\n\t    assertType(node.type, 'value');\n\n\t    var kind = node.kind,\n\t        codePoint = node.codePoint;\n\n\t    switch (kind) {\n\t      case 'controlLetter':\n\t        return '\\\\c' + fromCodePoint(codePoint + 64);\n\t      case 'hexadecimalEscape':\n\t        return '\\\\x' + ('00' + codePoint.toString(16).toUpperCase()).slice(-2);\n\t      case 'identifier':\n\t        return '\\\\' + fromCodePoint(codePoint);\n\t      case 'null':\n\t        return '\\\\' + codePoint;\n\t      case 'octal':\n\t        return '\\\\' + codePoint.toString(8);\n\t      case 'singleEscape':\n\t        switch (codePoint) {\n\t          case 0x0008:\n\t            return '\\\\b';\n\t          case 0x009:\n\t            return '\\\\t';\n\t          case 0x00A:\n\t            return '\\\\n';\n\t          case 0x00B:\n\t            return '\\\\v';\n\t          case 0x00C:\n\t            return '\\\\f';\n\t          case 0x00D:\n\t            return '\\\\r';\n\t          default:\n\t            throw Error('Invalid codepoint: ' + codePoint);\n\t        }\n\t      case 'symbol':\n\t        return fromCodePoint(codePoint);\n\t      case 'unicodeEscape':\n\t        return '\\\\u' + ('0000' + codePoint.toString(16).toUpperCase()).slice(-4);\n\t      case 'unicodeCodePointEscape':\n\t        return '\\\\u{' + codePoint.toString(16).toUpperCase() + '}';\n\t      default:\n\t        throw Error('Unsupported node kind: ' + kind);\n\t    }\n\t  }\n\n\t  /*--------------------------------------------------------------------------*/\n\n\t  generate.alternative = generateAlternative;\n\t  generate.anchor = generateAnchor;\n\t  generate.characterClass = generateCharacterClass;\n\t  generate.characterClassEscape = generateCharacterClassEscape;\n\t  generate.characterClassRange = generateCharacterClassRange;\n\t  generate.disjunction = generateDisjunction;\n\t  generate.dot = generateDot;\n\t  generate.group = generateGroup;\n\t  generate.quantifier = generateQuantifier;\n\t  generate.reference = generateReference;\n\t  generate.value = generateValue;\n\n\t  /*--------------------------------------------------------------------------*/\n\n\t  // export regjsgen\n\t  // some AMD build optimizers, like r.js, check for condition patterns like the following:\n\t  if (\"function\" == 'function' && _typeof(__webpack_require__(49)) == 'object' && __webpack_require__(49)) {\n\t    // define as an anonymous module so, through path mapping, it can be aliased\n\t    !(__WEBPACK_AMD_DEFINE_RESULT__ = function () {\n\t      return {\n\t        'generate': generate\n\t      };\n\t    }.call(exports, __webpack_require__, exports, module), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n\t  }\n\t  // check for `exports` after `define` in case a build optimizer adds an `exports` object\n\t  else if (freeExports && freeModule) {\n\t      // in Narwhal, Node.js, Rhino -require, or RingoJS\n\t      freeExports.generate = generate;\n\t    }\n\t    // in a browser or Rhino\n\t    else {\n\t        root.regjsgen = {\n\t          'generate': generate\n\t        };\n\t      }\n\t}).call(undefined);\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(39)(module), (function() { return this; }())))\n\n/***/ }),\n/* 614 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t// regjsparser\n\t//\n\t// ==================================================================\n\t//\n\t// See ECMA-262 Standard: 15.10.1\n\t//\n\t// NOTE: The ECMA-262 standard uses the term \"Assertion\" for /^/. Here the\n\t//   term \"Anchor\" is used.\n\t//\n\t// Pattern ::\n\t//      Disjunction\n\t//\n\t// Disjunction ::\n\t//      Alternative\n\t//      Alternative | Disjunction\n\t//\n\t// Alternative ::\n\t//      [empty]\n\t//      Alternative Term\n\t//\n\t// Term ::\n\t//      Anchor\n\t//      Atom\n\t//      Atom Quantifier\n\t//\n\t// Anchor ::\n\t//      ^\n\t//      $\n\t//      \\ b\n\t//      \\ B\n\t//      ( ? = Disjunction )\n\t//      ( ? ! Disjunction )\n\t//\n\t// Quantifier ::\n\t//      QuantifierPrefix\n\t//      QuantifierPrefix ?\n\t//\n\t// QuantifierPrefix ::\n\t//      *\n\t//      +\n\t//      ?\n\t//      { DecimalDigits }\n\t//      { DecimalDigits , }\n\t//      { DecimalDigits , DecimalDigits }\n\t//\n\t// Atom ::\n\t//      PatternCharacter\n\t//      .\n\t//      \\ AtomEscape\n\t//      CharacterClass\n\t//      ( Disjunction )\n\t//      ( ? : Disjunction )\n\t//\n\t// PatternCharacter ::\n\t//      SourceCharacter but not any of: ^ $ \\ . * + ? ( ) [ ] { } |\n\t//\n\t// AtomEscape ::\n\t//      DecimalEscape\n\t//      CharacterEscape\n\t//      CharacterClassEscape\n\t//\n\t// CharacterEscape[U] ::\n\t//      ControlEscape\n\t//      c ControlLetter\n\t//      HexEscapeSequence\n\t//      RegExpUnicodeEscapeSequence[?U] (ES6)\n\t//      IdentityEscape[?U]\n\t//\n\t// ControlEscape ::\n\t//      one of f n r t v\n\t// ControlLetter ::\n\t//      one of\n\t//          a b c d e f g h i j k l m n o p q r s t u v w x y z\n\t//          A B C D E F G H I J K L M N O P Q R S T U V W X Y Z\n\t//\n\t// IdentityEscape ::\n\t//      SourceCharacter but not IdentifierPart\n\t//      <ZWJ>\n\t//      <ZWNJ>\n\t//\n\t// DecimalEscape ::\n\t//      DecimalIntegerLiteral [lookahead ∉ DecimalDigit]\n\t//\n\t// CharacterClassEscape ::\n\t//      one of d D s S w W\n\t//\n\t// CharacterClass ::\n\t//      [ [lookahead ∉ {^}] ClassRanges ]\n\t//      [ ^ ClassRanges ]\n\t//\n\t// ClassRanges ::\n\t//      [empty]\n\t//      NonemptyClassRanges\n\t//\n\t// NonemptyClassRanges ::\n\t//      ClassAtom\n\t//      ClassAtom NonemptyClassRangesNoDash\n\t//      ClassAtom - ClassAtom ClassRanges\n\t//\n\t// NonemptyClassRangesNoDash ::\n\t//      ClassAtom\n\t//      ClassAtomNoDash NonemptyClassRangesNoDash\n\t//      ClassAtomNoDash - ClassAtom ClassRanges\n\t//\n\t// ClassAtom ::\n\t//      -\n\t//      ClassAtomNoDash\n\t//\n\t// ClassAtomNoDash ::\n\t//      SourceCharacter but not one of \\ or ] or -\n\t//      \\ ClassEscape\n\t//\n\t// ClassEscape ::\n\t//      DecimalEscape\n\t//      b\n\t//      CharacterEscape\n\t//      CharacterClassEscape\n\n\t(function () {\n\n\t  function parse(str, flags) {\n\t    function addRaw(node) {\n\t      node.raw = str.substring(node.range[0], node.range[1]);\n\t      return node;\n\t    }\n\n\t    function updateRawStart(node, start) {\n\t      node.range[0] = start;\n\t      return addRaw(node);\n\t    }\n\n\t    function createAnchor(kind, rawLength) {\n\t      return addRaw({\n\t        type: 'anchor',\n\t        kind: kind,\n\t        range: [pos - rawLength, pos]\n\t      });\n\t    }\n\n\t    function createValue(kind, codePoint, from, to) {\n\t      return addRaw({\n\t        type: 'value',\n\t        kind: kind,\n\t        codePoint: codePoint,\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function createEscaped(kind, codePoint, value, fromOffset) {\n\t      fromOffset = fromOffset || 0;\n\t      return createValue(kind, codePoint, pos - (value.length + fromOffset), pos);\n\t    }\n\n\t    function createCharacter(matches) {\n\t      var _char = matches[0];\n\t      var first = _char.charCodeAt(0);\n\t      if (hasUnicodeFlag) {\n\t        var second;\n\t        if (_char.length === 1 && first >= 0xD800 && first <= 0xDBFF) {\n\t          second = lookahead().charCodeAt(0);\n\t          if (second >= 0xDC00 && second <= 0xDFFF) {\n\t            // Unicode surrogate pair\n\t            pos++;\n\t            return createValue('symbol', (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000, pos - 2, pos);\n\t          }\n\t        }\n\t      }\n\t      return createValue('symbol', first, pos - 1, pos);\n\t    }\n\n\t    function createDisjunction(alternatives, from, to) {\n\t      return addRaw({\n\t        type: 'disjunction',\n\t        body: alternatives,\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function createDot() {\n\t      return addRaw({\n\t        type: 'dot',\n\t        range: [pos - 1, pos]\n\t      });\n\t    }\n\n\t    function createCharacterClassEscape(value) {\n\t      return addRaw({\n\t        type: 'characterClassEscape',\n\t        value: value,\n\t        range: [pos - 2, pos]\n\t      });\n\t    }\n\n\t    function createReference(matchIndex) {\n\t      return addRaw({\n\t        type: 'reference',\n\t        matchIndex: parseInt(matchIndex, 10),\n\t        range: [pos - 1 - matchIndex.length, pos]\n\t      });\n\t    }\n\n\t    function createGroup(behavior, disjunction, from, to) {\n\t      return addRaw({\n\t        type: 'group',\n\t        behavior: behavior,\n\t        body: disjunction,\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function createQuantifier(min, max, from, to) {\n\t      if (to == null) {\n\t        from = pos - 1;\n\t        to = pos;\n\t      }\n\n\t      return addRaw({\n\t        type: 'quantifier',\n\t        min: min,\n\t        max: max,\n\t        greedy: true,\n\t        body: null, // set later on\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function createAlternative(terms, from, to) {\n\t      return addRaw({\n\t        type: 'alternative',\n\t        body: terms,\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function createCharacterClass(classRanges, negative, from, to) {\n\t      return addRaw({\n\t        type: 'characterClass',\n\t        body: classRanges,\n\t        negative: negative,\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function createClassRange(min, max, from, to) {\n\t      // See 15.10.2.15:\n\t      if (min.codePoint > max.codePoint) {\n\t        bail('invalid range in character class', min.raw + '-' + max.raw, from, to);\n\t      }\n\n\t      return addRaw({\n\t        type: 'characterClassRange',\n\t        min: min,\n\t        max: max,\n\t        range: [from, to]\n\t      });\n\t    }\n\n\t    function flattenBody(body) {\n\t      if (body.type === 'alternative') {\n\t        return body.body;\n\t      } else {\n\t        return [body];\n\t      }\n\t    }\n\n\t    function isEmpty(obj) {\n\t      return obj.type === 'empty';\n\t    }\n\n\t    function incr(amount) {\n\t      amount = amount || 1;\n\t      var res = str.substring(pos, pos + amount);\n\t      pos += amount || 1;\n\t      return res;\n\t    }\n\n\t    function skip(value) {\n\t      if (!match(value)) {\n\t        bail('character', value);\n\t      }\n\t    }\n\n\t    function match(value) {\n\t      if (str.indexOf(value, pos) === pos) {\n\t        return incr(value.length);\n\t      }\n\t    }\n\n\t    function lookahead() {\n\t      return str[pos];\n\t    }\n\n\t    function current(value) {\n\t      return str.indexOf(value, pos) === pos;\n\t    }\n\n\t    function next(value) {\n\t      return str[pos + 1] === value;\n\t    }\n\n\t    function matchReg(regExp) {\n\t      var subStr = str.substring(pos);\n\t      var res = subStr.match(regExp);\n\t      if (res) {\n\t        res.range = [];\n\t        res.range[0] = pos;\n\t        incr(res[0].length);\n\t        res.range[1] = pos;\n\t      }\n\t      return res;\n\t    }\n\n\t    function parseDisjunction() {\n\t      // Disjunction ::\n\t      //      Alternative\n\t      //      Alternative | Disjunction\n\t      var res = [],\n\t          from = pos;\n\t      res.push(parseAlternative());\n\n\t      while (match('|')) {\n\t        res.push(parseAlternative());\n\t      }\n\n\t      if (res.length === 1) {\n\t        return res[0];\n\t      }\n\n\t      return createDisjunction(res, from, pos);\n\t    }\n\n\t    function parseAlternative() {\n\t      var res = [],\n\t          from = pos;\n\t      var term;\n\n\t      // Alternative ::\n\t      //      [empty]\n\t      //      Alternative Term\n\t      while (term = parseTerm()) {\n\t        res.push(term);\n\t      }\n\n\t      if (res.length === 1) {\n\t        return res[0];\n\t      }\n\n\t      return createAlternative(res, from, pos);\n\t    }\n\n\t    function parseTerm() {\n\t      // Term ::\n\t      //      Anchor\n\t      //      Atom\n\t      //      Atom Quantifier\n\n\t      if (pos >= str.length || current('|') || current(')')) {\n\t        return null; /* Means: The term is empty */\n\t      }\n\n\t      var anchor = parseAnchor();\n\n\t      if (anchor) {\n\t        return anchor;\n\t      }\n\n\t      var atom = parseAtom();\n\t      if (!atom) {\n\t        bail('Expected atom');\n\t      }\n\t      var quantifier = parseQuantifier() || false;\n\t      if (quantifier) {\n\t        quantifier.body = flattenBody(atom);\n\t        // The quantifier contains the atom. Therefore, the beginning of the\n\t        // quantifier range is given by the beginning of the atom.\n\t        updateRawStart(quantifier, atom.range[0]);\n\t        return quantifier;\n\t      }\n\t      return atom;\n\t    }\n\n\t    function parseGroup(matchA, typeA, matchB, typeB) {\n\t      var type = null,\n\t          from = pos;\n\n\t      if (match(matchA)) {\n\t        type = typeA;\n\t      } else if (match(matchB)) {\n\t        type = typeB;\n\t      } else {\n\t        return false;\n\t      }\n\n\t      var body = parseDisjunction();\n\t      if (!body) {\n\t        bail('Expected disjunction');\n\t      }\n\t      skip(')');\n\t      var group = createGroup(type, flattenBody(body), from, pos);\n\n\t      if (type == 'normal') {\n\t        // Keep track of the number of closed groups. This is required for\n\t        // parseDecimalEscape(). In case the string is parsed a second time the\n\t        // value already holds the total count and no incrementation is required.\n\t        if (firstIteration) {\n\t          closedCaptureCounter++;\n\t        }\n\t      }\n\t      return group;\n\t    }\n\n\t    function parseAnchor() {\n\t      // Anchor ::\n\t      //      ^\n\t      //      $\n\t      //      \\ b\n\t      //      \\ B\n\t      //      ( ? = Disjunction )\n\t      //      ( ? ! Disjunction )\n\t      var res,\n\t          from = pos;\n\n\t      if (match('^')) {\n\t        return createAnchor('start', 1 /* rawLength */);\n\t      } else if (match('$')) {\n\t        return createAnchor('end', 1 /* rawLength */);\n\t      } else if (match('\\\\b')) {\n\t        return createAnchor('boundary', 2 /* rawLength */);\n\t      } else if (match('\\\\B')) {\n\t        return createAnchor('not-boundary', 2 /* rawLength */);\n\t      } else {\n\t        return parseGroup('(?=', 'lookahead', '(?!', 'negativeLookahead');\n\t      }\n\t    }\n\n\t    function parseQuantifier() {\n\t      // Quantifier ::\n\t      //      QuantifierPrefix\n\t      //      QuantifierPrefix ?\n\t      //\n\t      // QuantifierPrefix ::\n\t      //      *\n\t      //      +\n\t      //      ?\n\t      //      { DecimalDigits }\n\t      //      { DecimalDigits , }\n\t      //      { DecimalDigits , DecimalDigits }\n\n\t      var res,\n\t          from = pos;\n\t      var quantifier;\n\t      var min, max;\n\n\t      if (match('*')) {\n\t        quantifier = createQuantifier(0);\n\t      } else if (match('+')) {\n\t        quantifier = createQuantifier(1);\n\t      } else if (match('?')) {\n\t        quantifier = createQuantifier(0, 1);\n\t      } else if (res = matchReg(/^\\{([0-9]+)\\}/)) {\n\t        min = parseInt(res[1], 10);\n\t        quantifier = createQuantifier(min, min, res.range[0], res.range[1]);\n\t      } else if (res = matchReg(/^\\{([0-9]+),\\}/)) {\n\t        min = parseInt(res[1], 10);\n\t        quantifier = createQuantifier(min, undefined, res.range[0], res.range[1]);\n\t      } else if (res = matchReg(/^\\{([0-9]+),([0-9]+)\\}/)) {\n\t        min = parseInt(res[1], 10);\n\t        max = parseInt(res[2], 10);\n\t        if (min > max) {\n\t          bail('numbers out of order in {} quantifier', '', from, pos);\n\t        }\n\t        quantifier = createQuantifier(min, max, res.range[0], res.range[1]);\n\t      }\n\n\t      if (quantifier) {\n\t        if (match('?')) {\n\t          quantifier.greedy = false;\n\t          quantifier.range[1] += 1;\n\t        }\n\t      }\n\n\t      return quantifier;\n\t    }\n\n\t    function parseAtom() {\n\t      // Atom ::\n\t      //      PatternCharacter\n\t      //      .\n\t      //      \\ AtomEscape\n\t      //      CharacterClass\n\t      //      ( Disjunction )\n\t      //      ( ? : Disjunction )\n\n\t      var res;\n\n\t      // jviereck: allow ']', '}' here as well to be compatible with browser's\n\t      //   implementations: ']'.match(/]/);\n\t      // if (res = matchReg(/^[^^$\\\\.*+?()[\\]{}|]/)) {\n\t      if (res = matchReg(/^[^^$\\\\.*+?(){[|]/)) {\n\t        //      PatternCharacter\n\t        return createCharacter(res);\n\t      } else if (match('.')) {\n\t        //      .\n\t        return createDot();\n\t      } else if (match('\\\\')) {\n\t        //      \\ AtomEscape\n\t        res = parseAtomEscape();\n\t        if (!res) {\n\t          bail('atomEscape');\n\t        }\n\t        return res;\n\t      } else if (res = parseCharacterClass()) {\n\t        return res;\n\t      } else {\n\t        //      ( Disjunction )\n\t        //      ( ? : Disjunction )\n\t        return parseGroup('(?:', 'ignore', '(', 'normal');\n\t      }\n\t    }\n\n\t    function parseUnicodeSurrogatePairEscape(firstEscape) {\n\t      if (hasUnicodeFlag) {\n\t        var first, second;\n\t        if (firstEscape.kind == 'unicodeEscape' && (first = firstEscape.codePoint) >= 0xD800 && first <= 0xDBFF && current('\\\\') && next('u')) {\n\t          var prevPos = pos;\n\t          pos++;\n\t          var secondEscape = parseClassEscape();\n\t          if (secondEscape.kind == 'unicodeEscape' && (second = secondEscape.codePoint) >= 0xDC00 && second <= 0xDFFF) {\n\t            // Unicode surrogate pair\n\t            firstEscape.range[1] = secondEscape.range[1];\n\t            firstEscape.codePoint = (first - 0xD800) * 0x400 + second - 0xDC00 + 0x10000;\n\t            firstEscape.type = 'value';\n\t            firstEscape.kind = 'unicodeCodePointEscape';\n\t            addRaw(firstEscape);\n\t          } else {\n\t            pos = prevPos;\n\t          }\n\t        }\n\t      }\n\t      return firstEscape;\n\t    }\n\n\t    function parseClassEscape() {\n\t      return parseAtomEscape(true);\n\t    }\n\n\t    function parseAtomEscape(insideCharacterClass) {\n\t      // AtomEscape ::\n\t      //      DecimalEscape\n\t      //      CharacterEscape\n\t      //      CharacterClassEscape\n\n\t      var res,\n\t          from = pos;\n\n\t      res = parseDecimalEscape();\n\t      if (res) {\n\t        return res;\n\t      }\n\n\t      // For ClassEscape\n\t      if (insideCharacterClass) {\n\t        if (match('b')) {\n\t          // 15.10.2.19\n\t          // The production ClassEscape :: b evaluates by returning the\n\t          // CharSet containing the one character <BS> (Unicode value 0008).\n\t          return createEscaped('singleEscape', 0x0008, '\\\\b');\n\t        } else if (match('B')) {\n\t          bail('\\\\B not possible inside of CharacterClass', '', from);\n\t        }\n\t      }\n\n\t      res = parseCharacterEscape();\n\n\t      return res;\n\t    }\n\n\t    function parseDecimalEscape() {\n\t      // DecimalEscape ::\n\t      //      DecimalIntegerLiteral [lookahead ∉ DecimalDigit]\n\t      //      CharacterClassEscape :: one of d D s S w W\n\n\t      var res, match;\n\n\t      if (res = matchReg(/^(?!0)\\d+/)) {\n\t        match = res[0];\n\t        var refIdx = parseInt(res[0], 10);\n\t        if (refIdx <= closedCaptureCounter) {\n\t          // If the number is smaller than the normal-groups found so\n\t          // far, then it is a reference...\n\t          return createReference(res[0]);\n\t        } else {\n\t          // ... otherwise it needs to be interpreted as a octal (if the\n\t          // number is in an octal format). If it is NOT octal format,\n\t          // then the slash is ignored and the number is matched later\n\t          // as normal characters.\n\n\t          // Recall the negative decision to decide if the input must be parsed\n\t          // a second time with the total normal-groups.\n\t          backrefDenied.push(refIdx);\n\n\t          // Reset the position again, as maybe only parts of the previous\n\t          // matched numbers are actual octal numbers. E.g. in '019' only\n\t          // the '01' should be matched.\n\t          incr(-res[0].length);\n\t          if (res = matchReg(/^[0-7]{1,3}/)) {\n\t            return createEscaped('octal', parseInt(res[0], 8), res[0], 1);\n\t          } else {\n\t            // If we end up here, we have a case like /\\91/. Then the\n\t            // first slash is to be ignored and the 9 & 1 to be treated\n\t            // like ordinary characters. Create a character for the\n\t            // first number only here - other number-characters\n\t            // (if available) will be matched later.\n\t            res = createCharacter(matchReg(/^[89]/));\n\t            return updateRawStart(res, res.range[0] - 1);\n\t          }\n\t        }\n\t      }\n\t      // Only allow octal numbers in the following. All matched numbers start\n\t      // with a zero (if the do not, the previous if-branch is executed).\n\t      // If the number is not octal format and starts with zero (e.g. `091`)\n\t      // then only the zeros `0` is treated here and the `91` are ordinary\n\t      // characters.\n\t      // Example:\n\t      //   /\\091/.exec('\\091')[0].length === 3\n\t      else if (res = matchReg(/^[0-7]{1,3}/)) {\n\t          match = res[0];\n\t          if (/^0{1,3}$/.test(match)) {\n\t            // If they are all zeros, then only take the first one.\n\t            return createEscaped('null', 0x0000, '0', match.length + 1);\n\t          } else {\n\t            return createEscaped('octal', parseInt(match, 8), match, 1);\n\t          }\n\t        } else if (res = matchReg(/^[dDsSwW]/)) {\n\t          return createCharacterClassEscape(res[0]);\n\t        }\n\t      return false;\n\t    }\n\n\t    function parseCharacterEscape() {\n\t      // CharacterEscape ::\n\t      //      ControlEscape\n\t      //      c ControlLetter\n\t      //      HexEscapeSequence\n\t      //      UnicodeEscapeSequence\n\t      //      IdentityEscape\n\n\t      var res;\n\t      if (res = matchReg(/^[fnrtv]/)) {\n\t        // ControlEscape\n\t        var codePoint = 0;\n\t        switch (res[0]) {\n\t          case 't':\n\t            codePoint = 0x009;break;\n\t          case 'n':\n\t            codePoint = 0x00A;break;\n\t          case 'v':\n\t            codePoint = 0x00B;break;\n\t          case 'f':\n\t            codePoint = 0x00C;break;\n\t          case 'r':\n\t            codePoint = 0x00D;break;\n\t        }\n\t        return createEscaped('singleEscape', codePoint, '\\\\' + res[0]);\n\t      } else if (res = matchReg(/^c([a-zA-Z])/)) {\n\t        // c ControlLetter\n\t        return createEscaped('controlLetter', res[1].charCodeAt(0) % 32, res[1], 2);\n\t      } else if (res = matchReg(/^x([0-9a-fA-F]{2})/)) {\n\t        // HexEscapeSequence\n\t        return createEscaped('hexadecimalEscape', parseInt(res[1], 16), res[1], 2);\n\t      } else if (res = matchReg(/^u([0-9a-fA-F]{4})/)) {\n\t        // UnicodeEscapeSequence\n\t        return parseUnicodeSurrogatePairEscape(createEscaped('unicodeEscape', parseInt(res[1], 16), res[1], 2));\n\t      } else if (hasUnicodeFlag && (res = matchReg(/^u\\{([0-9a-fA-F]+)\\}/))) {\n\t        // RegExpUnicodeEscapeSequence (ES6 Unicode code point escape)\n\t        return createEscaped('unicodeCodePointEscape', parseInt(res[1], 16), res[1], 4);\n\t      } else {\n\t        // IdentityEscape\n\t        return parseIdentityEscape();\n\t      }\n\t    }\n\n\t    // Taken from the Esprima parser.\n\t    function isIdentifierPart(ch) {\n\t      // Generated by `tools/generate-identifier-regex.js`.\n\t      var NonAsciiIdentifierPart = new RegExp('[\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0300-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u0483-\\u0487\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0610-\\u061A\\u0620-\\u0669\\u066E-\\u06D3\\u06D5-\\u06DC\\u06DF-\\u06E8\\u06EA-\\u06FC\\u06FF\\u0710-\\u074A\\u074D-\\u07B1\\u07C0-\\u07F5\\u07FA\\u0800-\\u082D\\u0840-\\u085B\\u08A0-\\u08B2\\u08E4-\\u0963\\u0966-\\u096F\\u0971-\\u0983\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BC-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CE\\u09D7\\u09DC\\u09DD\\u09DF-\\u09E3\\u09E6-\\u09F1\\u0A01-\\u0A03\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A59-\\u0A5C\\u0A5E\\u0A66-\\u0A75\\u0A81-\\u0A83\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABC-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AD0\\u0AE0-\\u0AE3\\u0AE6-\\u0AEF\\u0B01-\\u0B03\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3C-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B5C\\u0B5D\\u0B5F-\\u0B63\\u0B66-\\u0B6F\\u0B71\\u0B82\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD0\\u0BD7\\u0BE6-\\u0BEF\\u0C00-\\u0C03\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C58\\u0C59\\u0C60-\\u0C63\\u0C66-\\u0C6F\\u0C81-\\u0C83\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBC-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CDE\\u0CE0-\\u0CE3\\u0CE6-\\u0CEF\\u0CF1\\u0CF2\\u0D01-\\u0D03\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4E\\u0D57\\u0D60-\\u0D63\\u0D66-\\u0D6F\\u0D7A-\\u0D7F\\u0D82\\u0D83\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DE6-\\u0DEF\\u0DF2\\u0DF3\\u0E01-\\u0E3A\\u0E40-\\u0E4E\\u0E50-\\u0E59\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB9\\u0EBB-\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EC8-\\u0ECD\\u0ED0-\\u0ED9\\u0EDC-\\u0EDF\\u0F00\\u0F18\\u0F19\\u0F20-\\u0F29\\u0F35\\u0F37\\u0F39\\u0F3E-\\u0F47\\u0F49-\\u0F6C\\u0F71-\\u0F84\\u0F86-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u1000-\\u1049\\u1050-\\u109D\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u135D-\\u135F\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1714\\u1720-\\u1734\\u1740-\\u1753\\u1760-\\u176C\\u176E-\\u1770\\u1772\\u1773\\u1780-\\u17D3\\u17D7\\u17DC\\u17DD\\u17E0-\\u17E9\\u180B-\\u180D\\u1810-\\u1819\\u1820-\\u1877\\u1880-\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1920-\\u192B\\u1930-\\u193B\\u1946-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19B0-\\u19C9\\u19D0-\\u19D9\\u1A00-\\u1A1B\\u1A20-\\u1A5E\\u1A60-\\u1A7C\\u1A7F-\\u1A89\\u1A90-\\u1A99\\u1AA7\\u1AB0-\\u1ABD\\u1B00-\\u1B4B\\u1B50-\\u1B59\\u1B6B-\\u1B73\\u1B80-\\u1BF3\\u1C00-\\u1C37\\u1C40-\\u1C49\\u1C4D-\\u1C7D\\u1CD0-\\u1CD2\\u1CD4-\\u1CF6\\u1CF8\\u1CF9\\u1D00-\\u1DF5\\u1DFC-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u200C\\u200D\\u203F\\u2040\\u2054\\u2071\\u207F\\u2090-\\u209C\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D7F-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2DE0-\\u2DFF\\u2E2F\\u3005-\\u3007\\u3021-\\u302F\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u3099\\u309A\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA62B\\uA640-\\uA66F\\uA674-\\uA67D\\uA67F-\\uA69D\\uA69F-\\uA6F1\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA827\\uA840-\\uA873\\uA880-\\uA8C4\\uA8D0-\\uA8D9\\uA8E0-\\uA8F7\\uA8FB\\uA900-\\uA92D\\uA930-\\uA953\\uA960-\\uA97C\\uA980-\\uA9C0\\uA9CF-\\uA9D9\\uA9E0-\\uA9FE\\uAA00-\\uAA36\\uAA40-\\uAA4D\\uAA50-\\uAA59\\uAA60-\\uAA76\\uAA7A-\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEF\\uAAF2-\\uAAF6\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABEA\\uABEC\\uABED\\uABF0-\\uABF9\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE00-\\uFE0F\\uFE20-\\uFE2D\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF10-\\uFF19\\uFF21-\\uFF3A\\uFF3F\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]');\n\n\t      return ch === 36 || ch === 95 || // $ (dollar) and _ (underscore)\n\t      ch >= 65 && ch <= 90 || // A..Z\n\t      ch >= 97 && ch <= 122 || // a..z\n\t      ch >= 48 && ch <= 57 || // 0..9\n\t      ch === 92 || // \\ (backslash)\n\t      ch >= 0x80 && NonAsciiIdentifierPart.test(String.fromCharCode(ch));\n\t    }\n\n\t    function parseIdentityEscape() {\n\t      // IdentityEscape ::\n\t      //      SourceCharacter but not IdentifierPart\n\t      //      <ZWJ>\n\t      //      <ZWNJ>\n\n\t      var ZWJ = '\\u200C';\n\t      var ZWNJ = '\\u200D';\n\n\t      var tmp;\n\n\t      if (!isIdentifierPart(lookahead())) {\n\t        tmp = incr();\n\t        return createEscaped('identifier', tmp.charCodeAt(0), tmp, 1);\n\t      }\n\n\t      if (match(ZWJ)) {\n\t        // <ZWJ>\n\t        return createEscaped('identifier', 0x200C, ZWJ);\n\t      } else if (match(ZWNJ)) {\n\t        // <ZWNJ>\n\t        return createEscaped('identifier', 0x200D, ZWNJ);\n\t      }\n\n\t      return null;\n\t    }\n\n\t    function parseCharacterClass() {\n\t      // CharacterClass ::\n\t      //      [ [lookahead ∉ {^}] ClassRanges ]\n\t      //      [ ^ ClassRanges ]\n\n\t      var res,\n\t          from = pos;\n\t      if (res = matchReg(/^\\[\\^/)) {\n\t        res = parseClassRanges();\n\t        skip(']');\n\t        return createCharacterClass(res, true, from, pos);\n\t      } else if (match('[')) {\n\t        res = parseClassRanges();\n\t        skip(']');\n\t        return createCharacterClass(res, false, from, pos);\n\t      }\n\n\t      return null;\n\t    }\n\n\t    function parseClassRanges() {\n\t      // ClassRanges ::\n\t      //      [empty]\n\t      //      NonemptyClassRanges\n\n\t      var res;\n\t      if (current(']')) {\n\t        // Empty array means nothing insinde of the ClassRange.\n\t        return [];\n\t      } else {\n\t        res = parseNonemptyClassRanges();\n\t        if (!res) {\n\t          bail('nonEmptyClassRanges');\n\t        }\n\t        return res;\n\t      }\n\t    }\n\n\t    function parseHelperClassRanges(atom) {\n\t      var from, to, res;\n\t      if (current('-') && !next(']')) {\n\t        // ClassAtom - ClassAtom ClassRanges\n\t        skip('-');\n\n\t        res = parseClassAtom();\n\t        if (!res) {\n\t          bail('classAtom');\n\t        }\n\t        to = pos;\n\t        var classRanges = parseClassRanges();\n\t        if (!classRanges) {\n\t          bail('classRanges');\n\t        }\n\t        from = atom.range[0];\n\t        if (classRanges.type === 'empty') {\n\t          return [createClassRange(atom, res, from, to)];\n\t        }\n\t        return [createClassRange(atom, res, from, to)].concat(classRanges);\n\t      }\n\n\t      res = parseNonemptyClassRangesNoDash();\n\t      if (!res) {\n\t        bail('nonEmptyClassRangesNoDash');\n\t      }\n\n\t      return [atom].concat(res);\n\t    }\n\n\t    function parseNonemptyClassRanges() {\n\t      // NonemptyClassRanges ::\n\t      //      ClassAtom\n\t      //      ClassAtom NonemptyClassRangesNoDash\n\t      //      ClassAtom - ClassAtom ClassRanges\n\n\t      var atom = parseClassAtom();\n\t      if (!atom) {\n\t        bail('classAtom');\n\t      }\n\n\t      if (current(']')) {\n\t        // ClassAtom\n\t        return [atom];\n\t      }\n\n\t      // ClassAtom NonemptyClassRangesNoDash\n\t      // ClassAtom - ClassAtom ClassRanges\n\t      return parseHelperClassRanges(atom);\n\t    }\n\n\t    function parseNonemptyClassRangesNoDash() {\n\t      // NonemptyClassRangesNoDash ::\n\t      //      ClassAtom\n\t      //      ClassAtomNoDash NonemptyClassRangesNoDash\n\t      //      ClassAtomNoDash - ClassAtom ClassRanges\n\n\t      var res = parseClassAtom();\n\t      if (!res) {\n\t        bail('classAtom');\n\t      }\n\t      if (current(']')) {\n\t        //      ClassAtom\n\t        return res;\n\t      }\n\n\t      // ClassAtomNoDash NonemptyClassRangesNoDash\n\t      // ClassAtomNoDash - ClassAtom ClassRanges\n\t      return parseHelperClassRanges(res);\n\t    }\n\n\t    function parseClassAtom() {\n\t      // ClassAtom ::\n\t      //      -\n\t      //      ClassAtomNoDash\n\t      if (match('-')) {\n\t        return createCharacter('-');\n\t      } else {\n\t        return parseClassAtomNoDash();\n\t      }\n\t    }\n\n\t    function parseClassAtomNoDash() {\n\t      // ClassAtomNoDash ::\n\t      //      SourceCharacter but not one of \\ or ] or -\n\t      //      \\ ClassEscape\n\n\t      var res;\n\t      if (res = matchReg(/^[^\\\\\\]-]/)) {\n\t        return createCharacter(res[0]);\n\t      } else if (match('\\\\')) {\n\t        res = parseClassEscape();\n\t        if (!res) {\n\t          bail('classEscape');\n\t        }\n\n\t        return parseUnicodeSurrogatePairEscape(res);\n\t      }\n\t    }\n\n\t    function bail(message, details, from, to) {\n\t      from = from == null ? pos : from;\n\t      to = to == null ? from : to;\n\n\t      var contextStart = Math.max(0, from - 10);\n\t      var contextEnd = Math.min(to + 10, str.length);\n\n\t      // Output a bit of context and a line pointing to where our error is.\n\t      //\n\t      // We are assuming that there are no actual newlines in the content as this is a regular expression.\n\t      var context = '    ' + str.substring(contextStart, contextEnd);\n\t      var pointer = '    ' + new Array(from - contextStart + 1).join(' ') + '^';\n\n\t      throw SyntaxError(message + ' at position ' + from + (details ? ': ' + details : '') + '\\n' + context + '\\n' + pointer);\n\t    }\n\n\t    var backrefDenied = [];\n\t    var closedCaptureCounter = 0;\n\t    var firstIteration = true;\n\t    var hasUnicodeFlag = (flags || \"\").indexOf(\"u\") !== -1;\n\t    var pos = 0;\n\n\t    // Convert the input to a string and treat the empty string special.\n\t    str = String(str);\n\t    if (str === '') {\n\t      str = '(?:)';\n\t    }\n\n\t    var result = parseDisjunction();\n\n\t    if (result.range[1] !== str.length) {\n\t      bail('Could not parse entire input - got stuck', '', result.range[1]);\n\t    }\n\n\t    // The spec requires to interpret the `\\2` in `/\\2()()/` as backreference.\n\t    // As the parser collects the number of capture groups as the string is\n\t    // parsed it is impossible to make these decisions at the point when the\n\t    // `\\2` is handled. In case the local decision turns out to be wrong after\n\t    // the parsing has finished, the input string is parsed a second time with\n\t    // the total number of capture groups set.\n\t    //\n\t    // SEE: https://github.com/jviereck/regjsparser/issues/70\n\t    for (var i = 0; i < backrefDenied.length; i++) {\n\t      if (backrefDenied[i] <= closedCaptureCounter) {\n\t        // Parse the input a second time.\n\t        pos = 0;\n\t        firstIteration = false;\n\t        return parseDisjunction();\n\t      }\n\t    }\n\n\t    return result;\n\t  }\n\n\t  var regjsparser = {\n\t    parse: parse\n\t  };\n\n\t  if (typeof module !== 'undefined' && module.exports) {\n\t    module.exports = regjsparser;\n\t  } else {\n\t    window.regjsparser = regjsparser;\n\t  }\n\t})();\n\n/***/ }),\n/* 615 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar isFinite = __webpack_require__(467);\n\n\tmodule.exports = function (str, n) {\n\t\tif (typeof str !== 'string') {\n\t\t\tthrow new TypeError('Expected `input` to be a string');\n\t\t}\n\n\t\tif (n < 0 || !isFinite(n)) {\n\t\t\tthrow new TypeError('Expected `count` to be a positive finite number');\n\t\t}\n\n\t\tvar ret = '';\n\n\t\tdo {\n\t\t\tif (n & 1) {\n\t\t\t\tret += str;\n\t\t\t}\n\n\t\t\tstr += str;\n\t\t} while (n >>= 1);\n\n\t\treturn ret;\n\t};\n\n/***/ }),\n/* 616 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\tvar intToCharMap = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'.split('');\n\n\t/**\n\t * Encode an integer in the range of 0 to 63 to a single base 64 digit.\n\t */\n\texports.encode = function (number) {\n\t  if (0 <= number && number < intToCharMap.length) {\n\t    return intToCharMap[number];\n\t  }\n\t  throw new TypeError(\"Must be between 0 and 63: \" + number);\n\t};\n\n\t/**\n\t * Decode a single base 64 character code digit to an integer. Returns -1 on\n\t * failure.\n\t */\n\texports.decode = function (charCode) {\n\t  var bigA = 65; // 'A'\n\t  var bigZ = 90; // 'Z'\n\n\t  var littleA = 97; // 'a'\n\t  var littleZ = 122; // 'z'\n\n\t  var zero = 48; // '0'\n\t  var nine = 57; // '9'\n\n\t  var plus = 43; // '+'\n\t  var slash = 47; // '/'\n\n\t  var littleOffset = 26;\n\t  var numberOffset = 52;\n\n\t  // 0 - 25: ABCDEFGHIJKLMNOPQRSTUVWXYZ\n\t  if (bigA <= charCode && charCode <= bigZ) {\n\t    return charCode - bigA;\n\t  }\n\n\t  // 26 - 51: abcdefghijklmnopqrstuvwxyz\n\t  if (littleA <= charCode && charCode <= littleZ) {\n\t    return charCode - littleA + littleOffset;\n\t  }\n\n\t  // 52 - 61: 0123456789\n\t  if (zero <= charCode && charCode <= nine) {\n\t    return charCode - zero + numberOffset;\n\t  }\n\n\t  // 62: +\n\t  if (charCode == plus) {\n\t    return 62;\n\t  }\n\n\t  // 63: /\n\t  if (charCode == slash) {\n\t    return 63;\n\t  }\n\n\t  // Invalid base64 digit.\n\t  return -1;\n\t};\n\n/***/ }),\n/* 617 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\texports.GREATEST_LOWER_BOUND = 1;\n\texports.LEAST_UPPER_BOUND = 2;\n\n\t/**\n\t * Recursive implementation of binary search.\n\t *\n\t * @param aLow Indices here and lower do not contain the needle.\n\t * @param aHigh Indices here and higher do not contain the needle.\n\t * @param aNeedle The element being searched for.\n\t * @param aHaystack The non-empty array being searched.\n\t * @param aCompare Function which takes two elements and returns -1, 0, or 1.\n\t * @param aBias Either 'binarySearch.GREATEST_LOWER_BOUND' or\n\t *     'binarySearch.LEAST_UPPER_BOUND'. Specifies whether to return the\n\t *     closest element that is smaller than or greater than the one we are\n\t *     searching for, respectively, if the exact element cannot be found.\n\t */\n\tfunction recursiveSearch(aLow, aHigh, aNeedle, aHaystack, aCompare, aBias) {\n\t  // This function terminates when one of the following is true:\n\t  //\n\t  //   1. We find the exact element we are looking for.\n\t  //\n\t  //   2. We did not find the exact element, but we can return the index of\n\t  //      the next-closest element.\n\t  //\n\t  //   3. We did not find the exact element, and there is no next-closest\n\t  //      element than the one we are searching for, so we return -1.\n\t  var mid = Math.floor((aHigh - aLow) / 2) + aLow;\n\t  var cmp = aCompare(aNeedle, aHaystack[mid], true);\n\t  if (cmp === 0) {\n\t    // Found the element we are looking for.\n\t    return mid;\n\t  } else if (cmp > 0) {\n\t    // Our needle is greater than aHaystack[mid].\n\t    if (aHigh - mid > 1) {\n\t      // The element is in the upper half.\n\t      return recursiveSearch(mid, aHigh, aNeedle, aHaystack, aCompare, aBias);\n\t    }\n\n\t    // The exact needle element was not found in this haystack. Determine if\n\t    // we are in termination case (3) or (2) and return the appropriate thing.\n\t    if (aBias == exports.LEAST_UPPER_BOUND) {\n\t      return aHigh < aHaystack.length ? aHigh : -1;\n\t    } else {\n\t      return mid;\n\t    }\n\t  } else {\n\t    // Our needle is less than aHaystack[mid].\n\t    if (mid - aLow > 1) {\n\t      // The element is in the lower half.\n\t      return recursiveSearch(aLow, mid, aNeedle, aHaystack, aCompare, aBias);\n\t    }\n\n\t    // we are in termination case (3) or (2) and return the appropriate thing.\n\t    if (aBias == exports.LEAST_UPPER_BOUND) {\n\t      return mid;\n\t    } else {\n\t      return aLow < 0 ? -1 : aLow;\n\t    }\n\t  }\n\t}\n\n\t/**\n\t * This is an implementation of binary search which will always try and return\n\t * the index of the closest element if there is no exact hit. This is because\n\t * mappings between original and generated line/col pairs are single points,\n\t * and there is an implicit region between each of them, so a miss just means\n\t * that you aren't on the very start of a region.\n\t *\n\t * @param aNeedle The element you are looking for.\n\t * @param aHaystack The array that is being searched.\n\t * @param aCompare A function which takes the needle and an element in the\n\t *     array and returns -1, 0, or 1 depending on whether the needle is less\n\t *     than, equal to, or greater than the element, respectively.\n\t * @param aBias Either 'binarySearch.GREATEST_LOWER_BOUND' or\n\t *     'binarySearch.LEAST_UPPER_BOUND'. Specifies whether to return the\n\t *     closest element that is smaller than or greater than the one we are\n\t *     searching for, respectively, if the exact element cannot be found.\n\t *     Defaults to 'binarySearch.GREATEST_LOWER_BOUND'.\n\t */\n\texports.search = function search(aNeedle, aHaystack, aCompare, aBias) {\n\t  if (aHaystack.length === 0) {\n\t    return -1;\n\t  }\n\n\t  var index = recursiveSearch(-1, aHaystack.length, aNeedle, aHaystack, aCompare, aBias || exports.GREATEST_LOWER_BOUND);\n\t  if (index < 0) {\n\t    return -1;\n\t  }\n\n\t  // We have found either the exact element, or the next-closest element than\n\t  // the one we are searching for. However, there may be more than one such\n\t  // element. Make sure we always return the smallest of these.\n\t  while (index - 1 >= 0) {\n\t    if (aCompare(aHaystack[index], aHaystack[index - 1], true) !== 0) {\n\t      break;\n\t    }\n\t    --index;\n\t  }\n\n\t  return index;\n\t};\n\n/***/ }),\n/* 618 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2014 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\tvar util = __webpack_require__(63);\n\n\t/**\n\t * Determine whether mappingB is after mappingA with respect to generated\n\t * position.\n\t */\n\tfunction generatedPositionAfter(mappingA, mappingB) {\n\t  // Optimized for most common case\n\t  var lineA = mappingA.generatedLine;\n\t  var lineB = mappingB.generatedLine;\n\t  var columnA = mappingA.generatedColumn;\n\t  var columnB = mappingB.generatedColumn;\n\t  return lineB > lineA || lineB == lineA && columnB >= columnA || util.compareByGeneratedPositionsInflated(mappingA, mappingB) <= 0;\n\t}\n\n\t/**\n\t * A data structure to provide a sorted view of accumulated mappings in a\n\t * performance conscious manner. It trades a neglibable overhead in general\n\t * case for a large speedup in case of mappings being added in order.\n\t */\n\tfunction MappingList() {\n\t  this._array = [];\n\t  this._sorted = true;\n\t  // Serves as infimum\n\t  this._last = { generatedLine: -1, generatedColumn: 0 };\n\t}\n\n\t/**\n\t * Iterate through internal items. This method takes the same arguments that\n\t * `Array.prototype.forEach` takes.\n\t *\n\t * NOTE: The order of the mappings is NOT guaranteed.\n\t */\n\tMappingList.prototype.unsortedForEach = function MappingList_forEach(aCallback, aThisArg) {\n\t  this._array.forEach(aCallback, aThisArg);\n\t};\n\n\t/**\n\t * Add the given source mapping.\n\t *\n\t * @param Object aMapping\n\t */\n\tMappingList.prototype.add = function MappingList_add(aMapping) {\n\t  if (generatedPositionAfter(this._last, aMapping)) {\n\t    this._last = aMapping;\n\t    this._array.push(aMapping);\n\t  } else {\n\t    this._sorted = false;\n\t    this._array.push(aMapping);\n\t  }\n\t};\n\n\t/**\n\t * Returns the flat, sorted array of mappings. The mappings are sorted by\n\t * generated position.\n\t *\n\t * WARNING: This method returns internal data without copying, for\n\t * performance. The return value must NOT be mutated, and should be treated as\n\t * an immutable borrow. If you want to take ownership, you must make your own\n\t * copy.\n\t */\n\tMappingList.prototype.toArray = function MappingList_toArray() {\n\t  if (!this._sorted) {\n\t    this._array.sort(util.compareByGeneratedPositionsInflated);\n\t    this._sorted = true;\n\t  }\n\t  return this._array;\n\t};\n\n\texports.MappingList = MappingList;\n\n/***/ }),\n/* 619 */\n/***/ (function(module, exports) {\n\n\t\"use strict\";\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\t// It turns out that some (most?) JavaScript engines don't self-host\n\t// `Array.prototype.sort`. This makes sense because C++ will likely remain\n\t// faster than JS when doing raw CPU-intensive sorting. However, when using a\n\t// custom comparator function, calling back and forth between the VM's C++ and\n\t// JIT'd JS is rather slow *and* loses JIT type information, resulting in\n\t// worse generated code for the comparator function than would be optimal. In\n\t// fact, when sorting with a comparator, these costs outweigh the benefits of\n\t// sorting in C++. By using our own JS-implemented Quick Sort (below), we get\n\t// a ~3500ms mean speed-up in `bench/bench.html`.\n\n\t/**\n\t * Swap the elements indexed by `x` and `y` in the array `ary`.\n\t *\n\t * @param {Array} ary\n\t *        The array.\n\t * @param {Number} x\n\t *        The index of the first item.\n\t * @param {Number} y\n\t *        The index of the second item.\n\t */\n\tfunction swap(ary, x, y) {\n\t  var temp = ary[x];\n\t  ary[x] = ary[y];\n\t  ary[y] = temp;\n\t}\n\n\t/**\n\t * Returns a random integer within the range `low .. high` inclusive.\n\t *\n\t * @param {Number} low\n\t *        The lower bound on the range.\n\t * @param {Number} high\n\t *        The upper bound on the range.\n\t */\n\tfunction randomIntInRange(low, high) {\n\t  return Math.round(low + Math.random() * (high - low));\n\t}\n\n\t/**\n\t * The Quick Sort algorithm.\n\t *\n\t * @param {Array} ary\n\t *        An array to sort.\n\t * @param {function} comparator\n\t *        Function to use to compare two items.\n\t * @param {Number} p\n\t *        Start index of the array\n\t * @param {Number} r\n\t *        End index of the array\n\t */\n\tfunction doQuickSort(ary, comparator, p, r) {\n\t  // If our lower bound is less than our upper bound, we (1) partition the\n\t  // array into two pieces and (2) recurse on each half. If it is not, this is\n\t  // the empty array and our base case.\n\n\t  if (p < r) {\n\t    // (1) Partitioning.\n\t    //\n\t    // The partitioning chooses a pivot between `p` and `r` and moves all\n\t    // elements that are less than or equal to the pivot to the before it, and\n\t    // all the elements that are greater than it after it. The effect is that\n\t    // once partition is done, the pivot is in the exact place it will be when\n\t    // the array is put in sorted order, and it will not need to be moved\n\t    // again. This runs in O(n) time.\n\n\t    // Always choose a random pivot so that an input array which is reverse\n\t    // sorted does not cause O(n^2) running time.\n\t    var pivotIndex = randomIntInRange(p, r);\n\t    var i = p - 1;\n\n\t    swap(ary, pivotIndex, r);\n\t    var pivot = ary[r];\n\n\t    // Immediately after `j` is incremented in this loop, the following hold\n\t    // true:\n\t    //\n\t    //   * Every element in `ary[p .. i]` is less than or equal to the pivot.\n\t    //\n\t    //   * Every element in `ary[i+1 .. j-1]` is greater than the pivot.\n\t    for (var j = p; j < r; j++) {\n\t      if (comparator(ary[j], pivot) <= 0) {\n\t        i += 1;\n\t        swap(ary, i, j);\n\t      }\n\t    }\n\n\t    swap(ary, i + 1, j);\n\t    var q = i + 1;\n\n\t    // (2) Recurse on each half.\n\n\t    doQuickSort(ary, comparator, p, q - 1);\n\t    doQuickSort(ary, comparator, q + 1, r);\n\t  }\n\t}\n\n\t/**\n\t * Sort the given array in-place with the given comparator function.\n\t *\n\t * @param {Array} ary\n\t *        An array to sort.\n\t * @param {function} comparator\n\t *        Function to use to compare two items.\n\t */\n\texports.quickSort = function (ary, comparator) {\n\t  doQuickSort(ary, comparator, 0, ary.length - 1);\n\t};\n\n/***/ }),\n/* 620 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\tvar util = __webpack_require__(63);\n\tvar binarySearch = __webpack_require__(617);\n\tvar ArraySet = __webpack_require__(285).ArraySet;\n\tvar base64VLQ = __webpack_require__(286);\n\tvar quickSort = __webpack_require__(619).quickSort;\n\n\tfunction SourceMapConsumer(aSourceMap) {\n\t  var sourceMap = aSourceMap;\n\t  if (typeof aSourceMap === 'string') {\n\t    sourceMap = JSON.parse(aSourceMap.replace(/^\\)\\]\\}'/, ''));\n\t  }\n\n\t  return sourceMap.sections != null ? new IndexedSourceMapConsumer(sourceMap) : new BasicSourceMapConsumer(sourceMap);\n\t}\n\n\tSourceMapConsumer.fromSourceMap = function (aSourceMap) {\n\t  return BasicSourceMapConsumer.fromSourceMap(aSourceMap);\n\t};\n\n\t/**\n\t * The version of the source mapping spec that we are consuming.\n\t */\n\tSourceMapConsumer.prototype._version = 3;\n\n\t// `__generatedMappings` and `__originalMappings` are arrays that hold the\n\t// parsed mapping coordinates from the source map's \"mappings\" attribute. They\n\t// are lazily instantiated, accessed via the `_generatedMappings` and\n\t// `_originalMappings` getters respectively, and we only parse the mappings\n\t// and create these arrays once queried for a source location. We jump through\n\t// these hoops because there can be many thousands of mappings, and parsing\n\t// them is expensive, so we only want to do it if we must.\n\t//\n\t// Each object in the arrays is of the form:\n\t//\n\t//     {\n\t//       generatedLine: The line number in the generated code,\n\t//       generatedColumn: The column number in the generated code,\n\t//       source: The path to the original source file that generated this\n\t//               chunk of code,\n\t//       originalLine: The line number in the original source that\n\t//                     corresponds to this chunk of generated code,\n\t//       originalColumn: The column number in the original source that\n\t//                       corresponds to this chunk of generated code,\n\t//       name: The name of the original symbol which generated this chunk of\n\t//             code.\n\t//     }\n\t//\n\t// All properties except for `generatedLine` and `generatedColumn` can be\n\t// `null`.\n\t//\n\t// `_generatedMappings` is ordered by the generated positions.\n\t//\n\t// `_originalMappings` is ordered by the original positions.\n\n\tSourceMapConsumer.prototype.__generatedMappings = null;\n\tObject.defineProperty(SourceMapConsumer.prototype, '_generatedMappings', {\n\t  get: function get() {\n\t    if (!this.__generatedMappings) {\n\t      this._parseMappings(this._mappings, this.sourceRoot);\n\t    }\n\n\t    return this.__generatedMappings;\n\t  }\n\t});\n\n\tSourceMapConsumer.prototype.__originalMappings = null;\n\tObject.defineProperty(SourceMapConsumer.prototype, '_originalMappings', {\n\t  get: function get() {\n\t    if (!this.__originalMappings) {\n\t      this._parseMappings(this._mappings, this.sourceRoot);\n\t    }\n\n\t    return this.__originalMappings;\n\t  }\n\t});\n\n\tSourceMapConsumer.prototype._charIsMappingSeparator = function SourceMapConsumer_charIsMappingSeparator(aStr, index) {\n\t  var c = aStr.charAt(index);\n\t  return c === \";\" || c === \",\";\n\t};\n\n\t/**\n\t * Parse the mappings in a string in to a data structure which we can easily\n\t * query (the ordered arrays in the `this.__generatedMappings` and\n\t * `this.__originalMappings` properties).\n\t */\n\tSourceMapConsumer.prototype._parseMappings = function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {\n\t  throw new Error(\"Subclasses must implement _parseMappings\");\n\t};\n\n\tSourceMapConsumer.GENERATED_ORDER = 1;\n\tSourceMapConsumer.ORIGINAL_ORDER = 2;\n\n\tSourceMapConsumer.GREATEST_LOWER_BOUND = 1;\n\tSourceMapConsumer.LEAST_UPPER_BOUND = 2;\n\n\t/**\n\t * Iterate over each mapping between an original source/line/column and a\n\t * generated line/column in this source map.\n\t *\n\t * @param Function aCallback\n\t *        The function that is called with each mapping.\n\t * @param Object aContext\n\t *        Optional. If specified, this object will be the value of `this` every\n\t *        time that `aCallback` is called.\n\t * @param aOrder\n\t *        Either `SourceMapConsumer.GENERATED_ORDER` or\n\t *        `SourceMapConsumer.ORIGINAL_ORDER`. Specifies whether you want to\n\t *        iterate over the mappings sorted by the generated file's line/column\n\t *        order or the original's source/line/column order, respectively. Defaults to\n\t *        `SourceMapConsumer.GENERATED_ORDER`.\n\t */\n\tSourceMapConsumer.prototype.eachMapping = function SourceMapConsumer_eachMapping(aCallback, aContext, aOrder) {\n\t  var context = aContext || null;\n\t  var order = aOrder || SourceMapConsumer.GENERATED_ORDER;\n\n\t  var mappings;\n\t  switch (order) {\n\t    case SourceMapConsumer.GENERATED_ORDER:\n\t      mappings = this._generatedMappings;\n\t      break;\n\t    case SourceMapConsumer.ORIGINAL_ORDER:\n\t      mappings = this._originalMappings;\n\t      break;\n\t    default:\n\t      throw new Error(\"Unknown order of iteration.\");\n\t  }\n\n\t  var sourceRoot = this.sourceRoot;\n\t  mappings.map(function (mapping) {\n\t    var source = mapping.source === null ? null : this._sources.at(mapping.source);\n\t    if (source != null && sourceRoot != null) {\n\t      source = util.join(sourceRoot, source);\n\t    }\n\t    return {\n\t      source: source,\n\t      generatedLine: mapping.generatedLine,\n\t      generatedColumn: mapping.generatedColumn,\n\t      originalLine: mapping.originalLine,\n\t      originalColumn: mapping.originalColumn,\n\t      name: mapping.name === null ? null : this._names.at(mapping.name)\n\t    };\n\t  }, this).forEach(aCallback, context);\n\t};\n\n\t/**\n\t * Returns all generated line and column information for the original source,\n\t * line, and column provided. If no column is provided, returns all mappings\n\t * corresponding to a either the line we are searching for or the next\n\t * closest line that has any mappings. Otherwise, returns all mappings\n\t * corresponding to the given line and either the column we are searching for\n\t * or the next closest column that has any offsets.\n\t *\n\t * The only argument is an object with the following properties:\n\t *\n\t *   - source: The filename of the original source.\n\t *   - line: The line number in the original source.\n\t *   - column: Optional. the column number in the original source.\n\t *\n\t * and an array of objects is returned, each with the following properties:\n\t *\n\t *   - line: The line number in the generated source, or null.\n\t *   - column: The column number in the generated source, or null.\n\t */\n\tSourceMapConsumer.prototype.allGeneratedPositionsFor = function SourceMapConsumer_allGeneratedPositionsFor(aArgs) {\n\t  var line = util.getArg(aArgs, 'line');\n\n\t  // When there is no exact match, BasicSourceMapConsumer.prototype._findMapping\n\t  // returns the index of the closest mapping less than the needle. By\n\t  // setting needle.originalColumn to 0, we thus find the last mapping for\n\t  // the given line, provided such a mapping exists.\n\t  var needle = {\n\t    source: util.getArg(aArgs, 'source'),\n\t    originalLine: line,\n\t    originalColumn: util.getArg(aArgs, 'column', 0)\n\t  };\n\n\t  if (this.sourceRoot != null) {\n\t    needle.source = util.relative(this.sourceRoot, needle.source);\n\t  }\n\t  if (!this._sources.has(needle.source)) {\n\t    return [];\n\t  }\n\t  needle.source = this._sources.indexOf(needle.source);\n\n\t  var mappings = [];\n\n\t  var index = this._findMapping(needle, this._originalMappings, \"originalLine\", \"originalColumn\", util.compareByOriginalPositions, binarySearch.LEAST_UPPER_BOUND);\n\t  if (index >= 0) {\n\t    var mapping = this._originalMappings[index];\n\n\t    if (aArgs.column === undefined) {\n\t      var originalLine = mapping.originalLine;\n\n\t      // Iterate until either we run out of mappings, or we run into\n\t      // a mapping for a different line than the one we found. Since\n\t      // mappings are sorted, this is guaranteed to find all mappings for\n\t      // the line we found.\n\t      while (mapping && mapping.originalLine === originalLine) {\n\t        mappings.push({\n\t          line: util.getArg(mapping, 'generatedLine', null),\n\t          column: util.getArg(mapping, 'generatedColumn', null),\n\t          lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)\n\t        });\n\n\t        mapping = this._originalMappings[++index];\n\t      }\n\t    } else {\n\t      var originalColumn = mapping.originalColumn;\n\n\t      // Iterate until either we run out of mappings, or we run into\n\t      // a mapping for a different line than the one we were searching for.\n\t      // Since mappings are sorted, this is guaranteed to find all mappings for\n\t      // the line we are searching for.\n\t      while (mapping && mapping.originalLine === line && mapping.originalColumn == originalColumn) {\n\t        mappings.push({\n\t          line: util.getArg(mapping, 'generatedLine', null),\n\t          column: util.getArg(mapping, 'generatedColumn', null),\n\t          lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)\n\t        });\n\n\t        mapping = this._originalMappings[++index];\n\t      }\n\t    }\n\t  }\n\n\t  return mappings;\n\t};\n\n\texports.SourceMapConsumer = SourceMapConsumer;\n\n\t/**\n\t * A BasicSourceMapConsumer instance represents a parsed source map which we can\n\t * query for information about the original file positions by giving it a file\n\t * position in the generated source.\n\t *\n\t * The only parameter is the raw source map (either as a JSON string, or\n\t * already parsed to an object). According to the spec, source maps have the\n\t * following attributes:\n\t *\n\t *   - version: Which version of the source map spec this map is following.\n\t *   - sources: An array of URLs to the original source files.\n\t *   - names: An array of identifiers which can be referrenced by individual mappings.\n\t *   - sourceRoot: Optional. The URL root from which all sources are relative.\n\t *   - sourcesContent: Optional. An array of contents of the original source files.\n\t *   - mappings: A string of base64 VLQs which contain the actual mappings.\n\t *   - file: Optional. The generated file this source map is associated with.\n\t *\n\t * Here is an example source map, taken from the source map spec[0]:\n\t *\n\t *     {\n\t *       version : 3,\n\t *       file: \"out.js\",\n\t *       sourceRoot : \"\",\n\t *       sources: [\"foo.js\", \"bar.js\"],\n\t *       names: [\"src\", \"maps\", \"are\", \"fun\"],\n\t *       mappings: \"AA,AB;;ABCDE;\"\n\t *     }\n\t *\n\t * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit?pli=1#\n\t */\n\tfunction BasicSourceMapConsumer(aSourceMap) {\n\t  var sourceMap = aSourceMap;\n\t  if (typeof aSourceMap === 'string') {\n\t    sourceMap = JSON.parse(aSourceMap.replace(/^\\)\\]\\}'/, ''));\n\t  }\n\n\t  var version = util.getArg(sourceMap, 'version');\n\t  var sources = util.getArg(sourceMap, 'sources');\n\t  // Sass 3.3 leaves out the 'names' array, so we deviate from the spec (which\n\t  // requires the array) to play nice here.\n\t  var names = util.getArg(sourceMap, 'names', []);\n\t  var sourceRoot = util.getArg(sourceMap, 'sourceRoot', null);\n\t  var sourcesContent = util.getArg(sourceMap, 'sourcesContent', null);\n\t  var mappings = util.getArg(sourceMap, 'mappings');\n\t  var file = util.getArg(sourceMap, 'file', null);\n\n\t  // Once again, Sass deviates from the spec and supplies the version as a\n\t  // string rather than a number, so we use loose equality checking here.\n\t  if (version != this._version) {\n\t    throw new Error('Unsupported version: ' + version);\n\t  }\n\n\t  sources = sources.map(String)\n\t  // Some source maps produce relative source paths like \"./foo.js\" instead of\n\t  // \"foo.js\".  Normalize these first so that future comparisons will succeed.\n\t  // See bugzil.la/1090768.\n\t  .map(util.normalize)\n\t  // Always ensure that absolute sources are internally stored relative to\n\t  // the source root, if the source root is absolute. Not doing this would\n\t  // be particularly problematic when the source root is a prefix of the\n\t  // source (valid, but why??). See github issue #199 and bugzil.la/1188982.\n\t  .map(function (source) {\n\t    return sourceRoot && util.isAbsolute(sourceRoot) && util.isAbsolute(source) ? util.relative(sourceRoot, source) : source;\n\t  });\n\n\t  // Pass `true` below to allow duplicate names and sources. While source maps\n\t  // are intended to be compressed and deduplicated, the TypeScript compiler\n\t  // sometimes generates source maps with duplicates in them. See Github issue\n\t  // #72 and bugzil.la/889492.\n\t  this._names = ArraySet.fromArray(names.map(String), true);\n\t  this._sources = ArraySet.fromArray(sources, true);\n\n\t  this.sourceRoot = sourceRoot;\n\t  this.sourcesContent = sourcesContent;\n\t  this._mappings = mappings;\n\t  this.file = file;\n\t}\n\n\tBasicSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);\n\tBasicSourceMapConsumer.prototype.consumer = SourceMapConsumer;\n\n\t/**\n\t * Create a BasicSourceMapConsumer from a SourceMapGenerator.\n\t *\n\t * @param SourceMapGenerator aSourceMap\n\t *        The source map that will be consumed.\n\t * @returns BasicSourceMapConsumer\n\t */\n\tBasicSourceMapConsumer.fromSourceMap = function SourceMapConsumer_fromSourceMap(aSourceMap) {\n\t  var smc = Object.create(BasicSourceMapConsumer.prototype);\n\n\t  var names = smc._names = ArraySet.fromArray(aSourceMap._names.toArray(), true);\n\t  var sources = smc._sources = ArraySet.fromArray(aSourceMap._sources.toArray(), true);\n\t  smc.sourceRoot = aSourceMap._sourceRoot;\n\t  smc.sourcesContent = aSourceMap._generateSourcesContent(smc._sources.toArray(), smc.sourceRoot);\n\t  smc.file = aSourceMap._file;\n\n\t  // Because we are modifying the entries (by converting string sources and\n\t  // names to indices into the sources and names ArraySets), we have to make\n\t  // a copy of the entry or else bad things happen. Shared mutable state\n\t  // strikes again! See github issue #191.\n\n\t  var generatedMappings = aSourceMap._mappings.toArray().slice();\n\t  var destGeneratedMappings = smc.__generatedMappings = [];\n\t  var destOriginalMappings = smc.__originalMappings = [];\n\n\t  for (var i = 0, length = generatedMappings.length; i < length; i++) {\n\t    var srcMapping = generatedMappings[i];\n\t    var destMapping = new Mapping();\n\t    destMapping.generatedLine = srcMapping.generatedLine;\n\t    destMapping.generatedColumn = srcMapping.generatedColumn;\n\n\t    if (srcMapping.source) {\n\t      destMapping.source = sources.indexOf(srcMapping.source);\n\t      destMapping.originalLine = srcMapping.originalLine;\n\t      destMapping.originalColumn = srcMapping.originalColumn;\n\n\t      if (srcMapping.name) {\n\t        destMapping.name = names.indexOf(srcMapping.name);\n\t      }\n\n\t      destOriginalMappings.push(destMapping);\n\t    }\n\n\t    destGeneratedMappings.push(destMapping);\n\t  }\n\n\t  quickSort(smc.__originalMappings, util.compareByOriginalPositions);\n\n\t  return smc;\n\t};\n\n\t/**\n\t * The version of the source mapping spec that we are consuming.\n\t */\n\tBasicSourceMapConsumer.prototype._version = 3;\n\n\t/**\n\t * The list of original sources.\n\t */\n\tObject.defineProperty(BasicSourceMapConsumer.prototype, 'sources', {\n\t  get: function get() {\n\t    return this._sources.toArray().map(function (s) {\n\t      return this.sourceRoot != null ? util.join(this.sourceRoot, s) : s;\n\t    }, this);\n\t  }\n\t});\n\n\t/**\n\t * Provide the JIT with a nice shape / hidden class.\n\t */\n\tfunction Mapping() {\n\t  this.generatedLine = 0;\n\t  this.generatedColumn = 0;\n\t  this.source = null;\n\t  this.originalLine = null;\n\t  this.originalColumn = null;\n\t  this.name = null;\n\t}\n\n\t/**\n\t * Parse the mappings in a string in to a data structure which we can easily\n\t * query (the ordered arrays in the `this.__generatedMappings` and\n\t * `this.__originalMappings` properties).\n\t */\n\tBasicSourceMapConsumer.prototype._parseMappings = function SourceMapConsumer_parseMappings(aStr, aSourceRoot) {\n\t  var generatedLine = 1;\n\t  var previousGeneratedColumn = 0;\n\t  var previousOriginalLine = 0;\n\t  var previousOriginalColumn = 0;\n\t  var previousSource = 0;\n\t  var previousName = 0;\n\t  var length = aStr.length;\n\t  var index = 0;\n\t  var cachedSegments = {};\n\t  var temp = {};\n\t  var originalMappings = [];\n\t  var generatedMappings = [];\n\t  var mapping, str, segment, end, value;\n\n\t  while (index < length) {\n\t    if (aStr.charAt(index) === ';') {\n\t      generatedLine++;\n\t      index++;\n\t      previousGeneratedColumn = 0;\n\t    } else if (aStr.charAt(index) === ',') {\n\t      index++;\n\t    } else {\n\t      mapping = new Mapping();\n\t      mapping.generatedLine = generatedLine;\n\n\t      // Because each offset is encoded relative to the previous one,\n\t      // many segments often have the same encoding. We can exploit this\n\t      // fact by caching the parsed variable length fields of each segment,\n\t      // allowing us to avoid a second parse if we encounter the same\n\t      // segment again.\n\t      for (end = index; end < length; end++) {\n\t        if (this._charIsMappingSeparator(aStr, end)) {\n\t          break;\n\t        }\n\t      }\n\t      str = aStr.slice(index, end);\n\n\t      segment = cachedSegments[str];\n\t      if (segment) {\n\t        index += str.length;\n\t      } else {\n\t        segment = [];\n\t        while (index < end) {\n\t          base64VLQ.decode(aStr, index, temp);\n\t          value = temp.value;\n\t          index = temp.rest;\n\t          segment.push(value);\n\t        }\n\n\t        if (segment.length === 2) {\n\t          throw new Error('Found a source, but no line and column');\n\t        }\n\n\t        if (segment.length === 3) {\n\t          throw new Error('Found a source and line, but no column');\n\t        }\n\n\t        cachedSegments[str] = segment;\n\t      }\n\n\t      // Generated column.\n\t      mapping.generatedColumn = previousGeneratedColumn + segment[0];\n\t      previousGeneratedColumn = mapping.generatedColumn;\n\n\t      if (segment.length > 1) {\n\t        // Original source.\n\t        mapping.source = previousSource + segment[1];\n\t        previousSource += segment[1];\n\n\t        // Original line.\n\t        mapping.originalLine = previousOriginalLine + segment[2];\n\t        previousOriginalLine = mapping.originalLine;\n\t        // Lines are stored 0-based\n\t        mapping.originalLine += 1;\n\n\t        // Original column.\n\t        mapping.originalColumn = previousOriginalColumn + segment[3];\n\t        previousOriginalColumn = mapping.originalColumn;\n\n\t        if (segment.length > 4) {\n\t          // Original name.\n\t          mapping.name = previousName + segment[4];\n\t          previousName += segment[4];\n\t        }\n\t      }\n\n\t      generatedMappings.push(mapping);\n\t      if (typeof mapping.originalLine === 'number') {\n\t        originalMappings.push(mapping);\n\t      }\n\t    }\n\t  }\n\n\t  quickSort(generatedMappings, util.compareByGeneratedPositionsDeflated);\n\t  this.__generatedMappings = generatedMappings;\n\n\t  quickSort(originalMappings, util.compareByOriginalPositions);\n\t  this.__originalMappings = originalMappings;\n\t};\n\n\t/**\n\t * Find the mapping that best matches the hypothetical \"needle\" mapping that\n\t * we are searching for in the given \"haystack\" of mappings.\n\t */\n\tBasicSourceMapConsumer.prototype._findMapping = function SourceMapConsumer_findMapping(aNeedle, aMappings, aLineName, aColumnName, aComparator, aBias) {\n\t  // To return the position we are searching for, we must first find the\n\t  // mapping for the given position and then return the opposite position it\n\t  // points to. Because the mappings are sorted, we can use binary search to\n\t  // find the best mapping.\n\n\t  if (aNeedle[aLineName] <= 0) {\n\t    throw new TypeError('Line must be greater than or equal to 1, got ' + aNeedle[aLineName]);\n\t  }\n\t  if (aNeedle[aColumnName] < 0) {\n\t    throw new TypeError('Column must be greater than or equal to 0, got ' + aNeedle[aColumnName]);\n\t  }\n\n\t  return binarySearch.search(aNeedle, aMappings, aComparator, aBias);\n\t};\n\n\t/**\n\t * Compute the last column for each generated mapping. The last column is\n\t * inclusive.\n\t */\n\tBasicSourceMapConsumer.prototype.computeColumnSpans = function SourceMapConsumer_computeColumnSpans() {\n\t  for (var index = 0; index < this._generatedMappings.length; ++index) {\n\t    var mapping = this._generatedMappings[index];\n\n\t    // Mappings do not contain a field for the last generated columnt. We\n\t    // can come up with an optimistic estimate, however, by assuming that\n\t    // mappings are contiguous (i.e. given two consecutive mappings, the\n\t    // first mapping ends where the second one starts).\n\t    if (index + 1 < this._generatedMappings.length) {\n\t      var nextMapping = this._generatedMappings[index + 1];\n\n\t      if (mapping.generatedLine === nextMapping.generatedLine) {\n\t        mapping.lastGeneratedColumn = nextMapping.generatedColumn - 1;\n\t        continue;\n\t      }\n\t    }\n\n\t    // The last mapping for each line spans the entire line.\n\t    mapping.lastGeneratedColumn = Infinity;\n\t  }\n\t};\n\n\t/**\n\t * Returns the original source, line, and column information for the generated\n\t * source's line and column positions provided. The only argument is an object\n\t * with the following properties:\n\t *\n\t *   - line: The line number in the generated source.\n\t *   - column: The column number in the generated source.\n\t *   - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or\n\t *     'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the\n\t *     closest element that is smaller than or greater than the one we are\n\t *     searching for, respectively, if the exact element cannot be found.\n\t *     Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.\n\t *\n\t * and an object is returned with the following properties:\n\t *\n\t *   - source: The original source file, or null.\n\t *   - line: The line number in the original source, or null.\n\t *   - column: The column number in the original source, or null.\n\t *   - name: The original identifier, or null.\n\t */\n\tBasicSourceMapConsumer.prototype.originalPositionFor = function SourceMapConsumer_originalPositionFor(aArgs) {\n\t  var needle = {\n\t    generatedLine: util.getArg(aArgs, 'line'),\n\t    generatedColumn: util.getArg(aArgs, 'column')\n\t  };\n\n\t  var index = this._findMapping(needle, this._generatedMappings, \"generatedLine\", \"generatedColumn\", util.compareByGeneratedPositionsDeflated, util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND));\n\n\t  if (index >= 0) {\n\t    var mapping = this._generatedMappings[index];\n\n\t    if (mapping.generatedLine === needle.generatedLine) {\n\t      var source = util.getArg(mapping, 'source', null);\n\t      if (source !== null) {\n\t        source = this._sources.at(source);\n\t        if (this.sourceRoot != null) {\n\t          source = util.join(this.sourceRoot, source);\n\t        }\n\t      }\n\t      var name = util.getArg(mapping, 'name', null);\n\t      if (name !== null) {\n\t        name = this._names.at(name);\n\t      }\n\t      return {\n\t        source: source,\n\t        line: util.getArg(mapping, 'originalLine', null),\n\t        column: util.getArg(mapping, 'originalColumn', null),\n\t        name: name\n\t      };\n\t    }\n\t  }\n\n\t  return {\n\t    source: null,\n\t    line: null,\n\t    column: null,\n\t    name: null\n\t  };\n\t};\n\n\t/**\n\t * Return true if we have the source content for every source in the source\n\t * map, false otherwise.\n\t */\n\tBasicSourceMapConsumer.prototype.hasContentsOfAllSources = function BasicSourceMapConsumer_hasContentsOfAllSources() {\n\t  if (!this.sourcesContent) {\n\t    return false;\n\t  }\n\t  return this.sourcesContent.length >= this._sources.size() && !this.sourcesContent.some(function (sc) {\n\t    return sc == null;\n\t  });\n\t};\n\n\t/**\n\t * Returns the original source content. The only argument is the url of the\n\t * original source file. Returns null if no original source content is\n\t * available.\n\t */\n\tBasicSourceMapConsumer.prototype.sourceContentFor = function SourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {\n\t  if (!this.sourcesContent) {\n\t    return null;\n\t  }\n\n\t  if (this.sourceRoot != null) {\n\t    aSource = util.relative(this.sourceRoot, aSource);\n\t  }\n\n\t  if (this._sources.has(aSource)) {\n\t    return this.sourcesContent[this._sources.indexOf(aSource)];\n\t  }\n\n\t  var url;\n\t  if (this.sourceRoot != null && (url = util.urlParse(this.sourceRoot))) {\n\t    // XXX: file:// URIs and absolute paths lead to unexpected behavior for\n\t    // many users. We can help them out when they expect file:// URIs to\n\t    // behave like it would if they were running a local HTTP server. See\n\t    // https://bugzilla.mozilla.org/show_bug.cgi?id=885597.\n\t    var fileUriAbsPath = aSource.replace(/^file:\\/\\//, \"\");\n\t    if (url.scheme == \"file\" && this._sources.has(fileUriAbsPath)) {\n\t      return this.sourcesContent[this._sources.indexOf(fileUriAbsPath)];\n\t    }\n\n\t    if ((!url.path || url.path == \"/\") && this._sources.has(\"/\" + aSource)) {\n\t      return this.sourcesContent[this._sources.indexOf(\"/\" + aSource)];\n\t    }\n\t  }\n\n\t  // This function is used recursively from\n\t  // IndexedSourceMapConsumer.prototype.sourceContentFor. In that case, we\n\t  // don't want to throw if we can't find the source - we just want to\n\t  // return null, so we provide a flag to exit gracefully.\n\t  if (nullOnMissing) {\n\t    return null;\n\t  } else {\n\t    throw new Error('\"' + aSource + '\" is not in the SourceMap.');\n\t  }\n\t};\n\n\t/**\n\t * Returns the generated line and column information for the original source,\n\t * line, and column positions provided. The only argument is an object with\n\t * the following properties:\n\t *\n\t *   - source: The filename of the original source.\n\t *   - line: The line number in the original source.\n\t *   - column: The column number in the original source.\n\t *   - bias: Either 'SourceMapConsumer.GREATEST_LOWER_BOUND' or\n\t *     'SourceMapConsumer.LEAST_UPPER_BOUND'. Specifies whether to return the\n\t *     closest element that is smaller than or greater than the one we are\n\t *     searching for, respectively, if the exact element cannot be found.\n\t *     Defaults to 'SourceMapConsumer.GREATEST_LOWER_BOUND'.\n\t *\n\t * and an object is returned with the following properties:\n\t *\n\t *   - line: The line number in the generated source, or null.\n\t *   - column: The column number in the generated source, or null.\n\t */\n\tBasicSourceMapConsumer.prototype.generatedPositionFor = function SourceMapConsumer_generatedPositionFor(aArgs) {\n\t  var source = util.getArg(aArgs, 'source');\n\t  if (this.sourceRoot != null) {\n\t    source = util.relative(this.sourceRoot, source);\n\t  }\n\t  if (!this._sources.has(source)) {\n\t    return {\n\t      line: null,\n\t      column: null,\n\t      lastColumn: null\n\t    };\n\t  }\n\t  source = this._sources.indexOf(source);\n\n\t  var needle = {\n\t    source: source,\n\t    originalLine: util.getArg(aArgs, 'line'),\n\t    originalColumn: util.getArg(aArgs, 'column')\n\t  };\n\n\t  var index = this._findMapping(needle, this._originalMappings, \"originalLine\", \"originalColumn\", util.compareByOriginalPositions, util.getArg(aArgs, 'bias', SourceMapConsumer.GREATEST_LOWER_BOUND));\n\n\t  if (index >= 0) {\n\t    var mapping = this._originalMappings[index];\n\n\t    if (mapping.source === needle.source) {\n\t      return {\n\t        line: util.getArg(mapping, 'generatedLine', null),\n\t        column: util.getArg(mapping, 'generatedColumn', null),\n\t        lastColumn: util.getArg(mapping, 'lastGeneratedColumn', null)\n\t      };\n\t    }\n\t  }\n\n\t  return {\n\t    line: null,\n\t    column: null,\n\t    lastColumn: null\n\t  };\n\t};\n\n\texports.BasicSourceMapConsumer = BasicSourceMapConsumer;\n\n\t/**\n\t * An IndexedSourceMapConsumer instance represents a parsed source map which\n\t * we can query for information. It differs from BasicSourceMapConsumer in\n\t * that it takes \"indexed\" source maps (i.e. ones with a \"sections\" field) as\n\t * input.\n\t *\n\t * The only parameter is a raw source map (either as a JSON string, or already\n\t * parsed to an object). According to the spec for indexed source maps, they\n\t * have the following attributes:\n\t *\n\t *   - version: Which version of the source map spec this map is following.\n\t *   - file: Optional. The generated file this source map is associated with.\n\t *   - sections: A list of section definitions.\n\t *\n\t * Each value under the \"sections\" field has two fields:\n\t *   - offset: The offset into the original specified at which this section\n\t *       begins to apply, defined as an object with a \"line\" and \"column\"\n\t *       field.\n\t *   - map: A source map definition. This source map could also be indexed,\n\t *       but doesn't have to be.\n\t *\n\t * Instead of the \"map\" field, it's also possible to have a \"url\" field\n\t * specifying a URL to retrieve a source map from, but that's currently\n\t * unsupported.\n\t *\n\t * Here's an example source map, taken from the source map spec[0], but\n\t * modified to omit a section which uses the \"url\" field.\n\t *\n\t *  {\n\t *    version : 3,\n\t *    file: \"app.js\",\n\t *    sections: [{\n\t *      offset: {line:100, column:10},\n\t *      map: {\n\t *        version : 3,\n\t *        file: \"section.js\",\n\t *        sources: [\"foo.js\", \"bar.js\"],\n\t *        names: [\"src\", \"maps\", \"are\", \"fun\"],\n\t *        mappings: \"AAAA,E;;ABCDE;\"\n\t *      }\n\t *    }],\n\t *  }\n\t *\n\t * [0]: https://docs.google.com/document/d/1U1RGAehQwRypUTovF1KRlpiOFze0b-_2gc6fAH0KY0k/edit#heading=h.535es3xeprgt\n\t */\n\tfunction IndexedSourceMapConsumer(aSourceMap) {\n\t  var sourceMap = aSourceMap;\n\t  if (typeof aSourceMap === 'string') {\n\t    sourceMap = JSON.parse(aSourceMap.replace(/^\\)\\]\\}'/, ''));\n\t  }\n\n\t  var version = util.getArg(sourceMap, 'version');\n\t  var sections = util.getArg(sourceMap, 'sections');\n\n\t  if (version != this._version) {\n\t    throw new Error('Unsupported version: ' + version);\n\t  }\n\n\t  this._sources = new ArraySet();\n\t  this._names = new ArraySet();\n\n\t  var lastOffset = {\n\t    line: -1,\n\t    column: 0\n\t  };\n\t  this._sections = sections.map(function (s) {\n\t    if (s.url) {\n\t      // The url field will require support for asynchronicity.\n\t      // See https://github.com/mozilla/source-map/issues/16\n\t      throw new Error('Support for url field in sections not implemented.');\n\t    }\n\t    var offset = util.getArg(s, 'offset');\n\t    var offsetLine = util.getArg(offset, 'line');\n\t    var offsetColumn = util.getArg(offset, 'column');\n\n\t    if (offsetLine < lastOffset.line || offsetLine === lastOffset.line && offsetColumn < lastOffset.column) {\n\t      throw new Error('Section offsets must be ordered and non-overlapping.');\n\t    }\n\t    lastOffset = offset;\n\n\t    return {\n\t      generatedOffset: {\n\t        // The offset fields are 0-based, but we use 1-based indices when\n\t        // encoding/decoding from VLQ.\n\t        generatedLine: offsetLine + 1,\n\t        generatedColumn: offsetColumn + 1\n\t      },\n\t      consumer: new SourceMapConsumer(util.getArg(s, 'map'))\n\t    };\n\t  });\n\t}\n\n\tIndexedSourceMapConsumer.prototype = Object.create(SourceMapConsumer.prototype);\n\tIndexedSourceMapConsumer.prototype.constructor = SourceMapConsumer;\n\n\t/**\n\t * The version of the source mapping spec that we are consuming.\n\t */\n\tIndexedSourceMapConsumer.prototype._version = 3;\n\n\t/**\n\t * The list of original sources.\n\t */\n\tObject.defineProperty(IndexedSourceMapConsumer.prototype, 'sources', {\n\t  get: function get() {\n\t    var sources = [];\n\t    for (var i = 0; i < this._sections.length; i++) {\n\t      for (var j = 0; j < this._sections[i].consumer.sources.length; j++) {\n\t        sources.push(this._sections[i].consumer.sources[j]);\n\t      }\n\t    }\n\t    return sources;\n\t  }\n\t});\n\n\t/**\n\t * Returns the original source, line, and column information for the generated\n\t * source's line and column positions provided. The only argument is an object\n\t * with the following properties:\n\t *\n\t *   - line: The line number in the generated source.\n\t *   - column: The column number in the generated source.\n\t *\n\t * and an object is returned with the following properties:\n\t *\n\t *   - source: The original source file, or null.\n\t *   - line: The line number in the original source, or null.\n\t *   - column: The column number in the original source, or null.\n\t *   - name: The original identifier, or null.\n\t */\n\tIndexedSourceMapConsumer.prototype.originalPositionFor = function IndexedSourceMapConsumer_originalPositionFor(aArgs) {\n\t  var needle = {\n\t    generatedLine: util.getArg(aArgs, 'line'),\n\t    generatedColumn: util.getArg(aArgs, 'column')\n\t  };\n\n\t  // Find the section containing the generated position we're trying to map\n\t  // to an original position.\n\t  var sectionIndex = binarySearch.search(needle, this._sections, function (needle, section) {\n\t    var cmp = needle.generatedLine - section.generatedOffset.generatedLine;\n\t    if (cmp) {\n\t      return cmp;\n\t    }\n\n\t    return needle.generatedColumn - section.generatedOffset.generatedColumn;\n\t  });\n\t  var section = this._sections[sectionIndex];\n\n\t  if (!section) {\n\t    return {\n\t      source: null,\n\t      line: null,\n\t      column: null,\n\t      name: null\n\t    };\n\t  }\n\n\t  return section.consumer.originalPositionFor({\n\t    line: needle.generatedLine - (section.generatedOffset.generatedLine - 1),\n\t    column: needle.generatedColumn - (section.generatedOffset.generatedLine === needle.generatedLine ? section.generatedOffset.generatedColumn - 1 : 0),\n\t    bias: aArgs.bias\n\t  });\n\t};\n\n\t/**\n\t * Return true if we have the source content for every source in the source\n\t * map, false otherwise.\n\t */\n\tIndexedSourceMapConsumer.prototype.hasContentsOfAllSources = function IndexedSourceMapConsumer_hasContentsOfAllSources() {\n\t  return this._sections.every(function (s) {\n\t    return s.consumer.hasContentsOfAllSources();\n\t  });\n\t};\n\n\t/**\n\t * Returns the original source content. The only argument is the url of the\n\t * original source file. Returns null if no original source content is\n\t * available.\n\t */\n\tIndexedSourceMapConsumer.prototype.sourceContentFor = function IndexedSourceMapConsumer_sourceContentFor(aSource, nullOnMissing) {\n\t  for (var i = 0; i < this._sections.length; i++) {\n\t    var section = this._sections[i];\n\n\t    var content = section.consumer.sourceContentFor(aSource, true);\n\t    if (content) {\n\t      return content;\n\t    }\n\t  }\n\t  if (nullOnMissing) {\n\t    return null;\n\t  } else {\n\t    throw new Error('\"' + aSource + '\" is not in the SourceMap.');\n\t  }\n\t};\n\n\t/**\n\t * Returns the generated line and column information for the original source,\n\t * line, and column positions provided. The only argument is an object with\n\t * the following properties:\n\t *\n\t *   - source: The filename of the original source.\n\t *   - line: The line number in the original source.\n\t *   - column: The column number in the original source.\n\t *\n\t * and an object is returned with the following properties:\n\t *\n\t *   - line: The line number in the generated source, or null.\n\t *   - column: The column number in the generated source, or null.\n\t */\n\tIndexedSourceMapConsumer.prototype.generatedPositionFor = function IndexedSourceMapConsumer_generatedPositionFor(aArgs) {\n\t  for (var i = 0; i < this._sections.length; i++) {\n\t    var section = this._sections[i];\n\n\t    // Only consider this section if the requested source is in the list of\n\t    // sources of the consumer.\n\t    if (section.consumer.sources.indexOf(util.getArg(aArgs, 'source')) === -1) {\n\t      continue;\n\t    }\n\t    var generatedPosition = section.consumer.generatedPositionFor(aArgs);\n\t    if (generatedPosition) {\n\t      var ret = {\n\t        line: generatedPosition.line + (section.generatedOffset.generatedLine - 1),\n\t        column: generatedPosition.column + (section.generatedOffset.generatedLine === generatedPosition.line ? section.generatedOffset.generatedColumn - 1 : 0)\n\t      };\n\t      return ret;\n\t    }\n\t  }\n\n\t  return {\n\t    line: null,\n\t    column: null\n\t  };\n\t};\n\n\t/**\n\t * Parse the mappings in a string in to a data structure which we can easily\n\t * query (the ordered arrays in the `this.__generatedMappings` and\n\t * `this.__originalMappings` properties).\n\t */\n\tIndexedSourceMapConsumer.prototype._parseMappings = function IndexedSourceMapConsumer_parseMappings(aStr, aSourceRoot) {\n\t  this.__generatedMappings = [];\n\t  this.__originalMappings = [];\n\t  for (var i = 0; i < this._sections.length; i++) {\n\t    var section = this._sections[i];\n\t    var sectionMappings = section.consumer._generatedMappings;\n\t    for (var j = 0; j < sectionMappings.length; j++) {\n\t      var mapping = sectionMappings[j];\n\n\t      var source = section.consumer._sources.at(mapping.source);\n\t      if (section.consumer.sourceRoot !== null) {\n\t        source = util.join(section.consumer.sourceRoot, source);\n\t      }\n\t      this._sources.add(source);\n\t      source = this._sources.indexOf(source);\n\n\t      var name = section.consumer._names.at(mapping.name);\n\t      this._names.add(name);\n\t      name = this._names.indexOf(name);\n\n\t      // The mappings coming from the consumer for the section have\n\t      // generated positions relative to the start of the section, so we\n\t      // need to offset them to be relative to the start of the concatenated\n\t      // generated file.\n\t      var adjustedMapping = {\n\t        source: source,\n\t        generatedLine: mapping.generatedLine + (section.generatedOffset.generatedLine - 1),\n\t        generatedColumn: mapping.generatedColumn + (section.generatedOffset.generatedLine === mapping.generatedLine ? section.generatedOffset.generatedColumn - 1 : 0),\n\t        originalLine: mapping.originalLine,\n\t        originalColumn: mapping.originalColumn,\n\t        name: name\n\t      };\n\n\t      this.__generatedMappings.push(adjustedMapping);\n\t      if (typeof adjustedMapping.originalLine === 'number') {\n\t        this.__originalMappings.push(adjustedMapping);\n\t      }\n\t    }\n\t  }\n\n\t  quickSort(this.__generatedMappings, util.compareByGeneratedPositionsDeflated);\n\t  quickSort(this.__originalMappings, util.compareByOriginalPositions);\n\t};\n\n\texports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;\n\n/***/ }),\n/* 621 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\t/* -*- Mode: js; js-indent-level: 2; -*- */\n\t/*\n\t * Copyright 2011 Mozilla Foundation and contributors\n\t * Licensed under the New BSD license. See LICENSE or:\n\t * http://opensource.org/licenses/BSD-3-Clause\n\t */\n\n\tvar SourceMapGenerator = __webpack_require__(287).SourceMapGenerator;\n\tvar util = __webpack_require__(63);\n\n\t// Matches a Windows-style `\\r\\n` newline or a `\\n` newline used by all other\n\t// operating systems these days (capturing the result).\n\tvar REGEX_NEWLINE = /(\\r?\\n)/;\n\n\t// Newline character code for charCodeAt() comparisons\n\tvar NEWLINE_CODE = 10;\n\n\t// Private symbol for identifying `SourceNode`s when multiple versions of\n\t// the source-map library are loaded. This MUST NOT CHANGE across\n\t// versions!\n\tvar isSourceNode = \"$$$isSourceNode$$$\";\n\n\t/**\n\t * SourceNodes provide a way to abstract over interpolating/concatenating\n\t * snippets of generated JavaScript source code while maintaining the line and\n\t * column information associated with the original source code.\n\t *\n\t * @param aLine The original line number.\n\t * @param aColumn The original column number.\n\t * @param aSource The original source's filename.\n\t * @param aChunks Optional. An array of strings which are snippets of\n\t *        generated JS, or other SourceNodes.\n\t * @param aName The original identifier.\n\t */\n\tfunction SourceNode(aLine, aColumn, aSource, aChunks, aName) {\n\t  this.children = [];\n\t  this.sourceContents = {};\n\t  this.line = aLine == null ? null : aLine;\n\t  this.column = aColumn == null ? null : aColumn;\n\t  this.source = aSource == null ? null : aSource;\n\t  this.name = aName == null ? null : aName;\n\t  this[isSourceNode] = true;\n\t  if (aChunks != null) this.add(aChunks);\n\t}\n\n\t/**\n\t * Creates a SourceNode from generated code and a SourceMapConsumer.\n\t *\n\t * @param aGeneratedCode The generated code\n\t * @param aSourceMapConsumer The SourceMap for the generated code\n\t * @param aRelativePath Optional. The path that relative sources in the\n\t *        SourceMapConsumer should be relative to.\n\t */\n\tSourceNode.fromStringWithSourceMap = function SourceNode_fromStringWithSourceMap(aGeneratedCode, aSourceMapConsumer, aRelativePath) {\n\t  // The SourceNode we want to fill with the generated code\n\t  // and the SourceMap\n\t  var node = new SourceNode();\n\n\t  // All even indices of this array are one line of the generated code,\n\t  // while all odd indices are the newlines between two adjacent lines\n\t  // (since `REGEX_NEWLINE` captures its match).\n\t  // Processed fragments are removed from this array, by calling `shiftNextLine`.\n\t  var remainingLines = aGeneratedCode.split(REGEX_NEWLINE);\n\t  var shiftNextLine = function shiftNextLine() {\n\t    var lineContents = remainingLines.shift();\n\t    // The last line of a file might not have a newline.\n\t    var newLine = remainingLines.shift() || \"\";\n\t    return lineContents + newLine;\n\t  };\n\n\t  // We need to remember the position of \"remainingLines\"\n\t  var lastGeneratedLine = 1,\n\t      lastGeneratedColumn = 0;\n\n\t  // The generate SourceNodes we need a code range.\n\t  // To extract it current and last mapping is used.\n\t  // Here we store the last mapping.\n\t  var lastMapping = null;\n\n\t  aSourceMapConsumer.eachMapping(function (mapping) {\n\t    if (lastMapping !== null) {\n\t      // We add the code from \"lastMapping\" to \"mapping\":\n\t      // First check if there is a new line in between.\n\t      if (lastGeneratedLine < mapping.generatedLine) {\n\t        // Associate first line with \"lastMapping\"\n\t        addMappingWithCode(lastMapping, shiftNextLine());\n\t        lastGeneratedLine++;\n\t        lastGeneratedColumn = 0;\n\t        // The remaining code is added without mapping\n\t      } else {\n\t        // There is no new line in between.\n\t        // Associate the code between \"lastGeneratedColumn\" and\n\t        // \"mapping.generatedColumn\" with \"lastMapping\"\n\t        var nextLine = remainingLines[0];\n\t        var code = nextLine.substr(0, mapping.generatedColumn - lastGeneratedColumn);\n\t        remainingLines[0] = nextLine.substr(mapping.generatedColumn - lastGeneratedColumn);\n\t        lastGeneratedColumn = mapping.generatedColumn;\n\t        addMappingWithCode(lastMapping, code);\n\t        // No more remaining code, continue\n\t        lastMapping = mapping;\n\t        return;\n\t      }\n\t    }\n\t    // We add the generated code until the first mapping\n\t    // to the SourceNode without any mapping.\n\t    // Each line is added as separate string.\n\t    while (lastGeneratedLine < mapping.generatedLine) {\n\t      node.add(shiftNextLine());\n\t      lastGeneratedLine++;\n\t    }\n\t    if (lastGeneratedColumn < mapping.generatedColumn) {\n\t      var nextLine = remainingLines[0];\n\t      node.add(nextLine.substr(0, mapping.generatedColumn));\n\t      remainingLines[0] = nextLine.substr(mapping.generatedColumn);\n\t      lastGeneratedColumn = mapping.generatedColumn;\n\t    }\n\t    lastMapping = mapping;\n\t  }, this);\n\t  // We have processed all mappings.\n\t  if (remainingLines.length > 0) {\n\t    if (lastMapping) {\n\t      // Associate the remaining code in the current line with \"lastMapping\"\n\t      addMappingWithCode(lastMapping, shiftNextLine());\n\t    }\n\t    // and add the remaining lines without any mapping\n\t    node.add(remainingLines.join(\"\"));\n\t  }\n\n\t  // Copy sourcesContent into SourceNode\n\t  aSourceMapConsumer.sources.forEach(function (sourceFile) {\n\t    var content = aSourceMapConsumer.sourceContentFor(sourceFile);\n\t    if (content != null) {\n\t      if (aRelativePath != null) {\n\t        sourceFile = util.join(aRelativePath, sourceFile);\n\t      }\n\t      node.setSourceContent(sourceFile, content);\n\t    }\n\t  });\n\n\t  return node;\n\n\t  function addMappingWithCode(mapping, code) {\n\t    if (mapping === null || mapping.source === undefined) {\n\t      node.add(code);\n\t    } else {\n\t      var source = aRelativePath ? util.join(aRelativePath, mapping.source) : mapping.source;\n\t      node.add(new SourceNode(mapping.originalLine, mapping.originalColumn, source, code, mapping.name));\n\t    }\n\t  }\n\t};\n\n\t/**\n\t * Add a chunk of generated JS to this source node.\n\t *\n\t * @param aChunk A string snippet of generated JS code, another instance of\n\t *        SourceNode, or an array where each member is one of those things.\n\t */\n\tSourceNode.prototype.add = function SourceNode_add(aChunk) {\n\t  if (Array.isArray(aChunk)) {\n\t    aChunk.forEach(function (chunk) {\n\t      this.add(chunk);\n\t    }, this);\n\t  } else if (aChunk[isSourceNode] || typeof aChunk === \"string\") {\n\t    if (aChunk) {\n\t      this.children.push(aChunk);\n\t    }\n\t  } else {\n\t    throw new TypeError(\"Expected a SourceNode, string, or an array of SourceNodes and strings. Got \" + aChunk);\n\t  }\n\t  return this;\n\t};\n\n\t/**\n\t * Add a chunk of generated JS to the beginning of this source node.\n\t *\n\t * @param aChunk A string snippet of generated JS code, another instance of\n\t *        SourceNode, or an array where each member is one of those things.\n\t */\n\tSourceNode.prototype.prepend = function SourceNode_prepend(aChunk) {\n\t  if (Array.isArray(aChunk)) {\n\t    for (var i = aChunk.length - 1; i >= 0; i--) {\n\t      this.prepend(aChunk[i]);\n\t    }\n\t  } else if (aChunk[isSourceNode] || typeof aChunk === \"string\") {\n\t    this.children.unshift(aChunk);\n\t  } else {\n\t    throw new TypeError(\"Expected a SourceNode, string, or an array of SourceNodes and strings. Got \" + aChunk);\n\t  }\n\t  return this;\n\t};\n\n\t/**\n\t * Walk over the tree of JS snippets in this node and its children. The\n\t * walking function is called once for each snippet of JS and is passed that\n\t * snippet and the its original associated source's line/column location.\n\t *\n\t * @param aFn The traversal function.\n\t */\n\tSourceNode.prototype.walk = function SourceNode_walk(aFn) {\n\t  var chunk;\n\t  for (var i = 0, len = this.children.length; i < len; i++) {\n\t    chunk = this.children[i];\n\t    if (chunk[isSourceNode]) {\n\t      chunk.walk(aFn);\n\t    } else {\n\t      if (chunk !== '') {\n\t        aFn(chunk, { source: this.source,\n\t          line: this.line,\n\t          column: this.column,\n\t          name: this.name });\n\t      }\n\t    }\n\t  }\n\t};\n\n\t/**\n\t * Like `String.prototype.join` except for SourceNodes. Inserts `aStr` between\n\t * each of `this.children`.\n\t *\n\t * @param aSep The separator.\n\t */\n\tSourceNode.prototype.join = function SourceNode_join(aSep) {\n\t  var newChildren;\n\t  var i;\n\t  var len = this.children.length;\n\t  if (len > 0) {\n\t    newChildren = [];\n\t    for (i = 0; i < len - 1; i++) {\n\t      newChildren.push(this.children[i]);\n\t      newChildren.push(aSep);\n\t    }\n\t    newChildren.push(this.children[i]);\n\t    this.children = newChildren;\n\t  }\n\t  return this;\n\t};\n\n\t/**\n\t * Call String.prototype.replace on the very right-most source snippet. Useful\n\t * for trimming whitespace from the end of a source node, etc.\n\t *\n\t * @param aPattern The pattern to replace.\n\t * @param aReplacement The thing to replace the pattern with.\n\t */\n\tSourceNode.prototype.replaceRight = function SourceNode_replaceRight(aPattern, aReplacement) {\n\t  var lastChild = this.children[this.children.length - 1];\n\t  if (lastChild[isSourceNode]) {\n\t    lastChild.replaceRight(aPattern, aReplacement);\n\t  } else if (typeof lastChild === 'string') {\n\t    this.children[this.children.length - 1] = lastChild.replace(aPattern, aReplacement);\n\t  } else {\n\t    this.children.push(''.replace(aPattern, aReplacement));\n\t  }\n\t  return this;\n\t};\n\n\t/**\n\t * Set the source content for a source file. This will be added to the SourceMapGenerator\n\t * in the sourcesContent field.\n\t *\n\t * @param aSourceFile The filename of the source file\n\t * @param aSourceContent The content of the source file\n\t */\n\tSourceNode.prototype.setSourceContent = function SourceNode_setSourceContent(aSourceFile, aSourceContent) {\n\t  this.sourceContents[util.toSetString(aSourceFile)] = aSourceContent;\n\t};\n\n\t/**\n\t * Walk over the tree of SourceNodes. The walking function is called for each\n\t * source file content and is passed the filename and source content.\n\t *\n\t * @param aFn The traversal function.\n\t */\n\tSourceNode.prototype.walkSourceContents = function SourceNode_walkSourceContents(aFn) {\n\t  for (var i = 0, len = this.children.length; i < len; i++) {\n\t    if (this.children[i][isSourceNode]) {\n\t      this.children[i].walkSourceContents(aFn);\n\t    }\n\t  }\n\n\t  var sources = Object.keys(this.sourceContents);\n\t  for (var i = 0, len = sources.length; i < len; i++) {\n\t    aFn(util.fromSetString(sources[i]), this.sourceContents[sources[i]]);\n\t  }\n\t};\n\n\t/**\n\t * Return the string representation of this source node. Walks over the tree\n\t * and concatenates all the various snippets together to one string.\n\t */\n\tSourceNode.prototype.toString = function SourceNode_toString() {\n\t  var str = \"\";\n\t  this.walk(function (chunk) {\n\t    str += chunk;\n\t  });\n\t  return str;\n\t};\n\n\t/**\n\t * Returns the string representation of this source node along with a source\n\t * map.\n\t */\n\tSourceNode.prototype.toStringWithSourceMap = function SourceNode_toStringWithSourceMap(aArgs) {\n\t  var generated = {\n\t    code: \"\",\n\t    line: 1,\n\t    column: 0\n\t  };\n\t  var map = new SourceMapGenerator(aArgs);\n\t  var sourceMappingActive = false;\n\t  var lastOriginalSource = null;\n\t  var lastOriginalLine = null;\n\t  var lastOriginalColumn = null;\n\t  var lastOriginalName = null;\n\t  this.walk(function (chunk, original) {\n\t    generated.code += chunk;\n\t    if (original.source !== null && original.line !== null && original.column !== null) {\n\t      if (lastOriginalSource !== original.source || lastOriginalLine !== original.line || lastOriginalColumn !== original.column || lastOriginalName !== original.name) {\n\t        map.addMapping({\n\t          source: original.source,\n\t          original: {\n\t            line: original.line,\n\t            column: original.column\n\t          },\n\t          generated: {\n\t            line: generated.line,\n\t            column: generated.column\n\t          },\n\t          name: original.name\n\t        });\n\t      }\n\t      lastOriginalSource = original.source;\n\t      lastOriginalLine = original.line;\n\t      lastOriginalColumn = original.column;\n\t      lastOriginalName = original.name;\n\t      sourceMappingActive = true;\n\t    } else if (sourceMappingActive) {\n\t      map.addMapping({\n\t        generated: {\n\t          line: generated.line,\n\t          column: generated.column\n\t        }\n\t      });\n\t      lastOriginalSource = null;\n\t      sourceMappingActive = false;\n\t    }\n\t    for (var idx = 0, length = chunk.length; idx < length; idx++) {\n\t      if (chunk.charCodeAt(idx) === NEWLINE_CODE) {\n\t        generated.line++;\n\t        generated.column = 0;\n\t        // Mappings end at eol\n\t        if (idx + 1 === length) {\n\t          lastOriginalSource = null;\n\t          sourceMappingActive = false;\n\t        } else if (sourceMappingActive) {\n\t          map.addMapping({\n\t            source: original.source,\n\t            original: {\n\t              line: original.line,\n\t              column: original.column\n\t            },\n\t            generated: {\n\t              line: generated.line,\n\t              column: generated.column\n\t            },\n\t            name: original.name\n\t          });\n\t        }\n\t      } else {\n\t        generated.column++;\n\t      }\n\t    }\n\t  });\n\t  this.walkSourceContents(function (sourceFile, sourceContent) {\n\t    map.setSourceContent(sourceFile, sourceContent);\n\t  });\n\n\t  return { code: generated.code, map: map };\n\t};\n\n\texports.SourceNode = SourceNode;\n\n/***/ }),\n/* 622 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\n\tvar ansiRegex = __webpack_require__(180)();\n\n\tmodule.exports = function (str) {\n\t\treturn typeof str === 'string' ? str.replace(ansiRegex, '') : str;\n\t};\n\n/***/ }),\n/* 623 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t/* WEBPACK VAR INJECTION */(function(process) {'use strict';\n\n\tvar argv = process.argv;\n\n\tvar terminator = argv.indexOf('--');\n\tvar hasFlag = function hasFlag(flag) {\n\t\tflag = '--' + flag;\n\t\tvar pos = argv.indexOf(flag);\n\t\treturn pos !== -1 && (terminator !== -1 ? pos < terminator : true);\n\t};\n\n\tmodule.exports = function () {\n\t\tif ('FORCE_COLOR' in process.env) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (hasFlag('no-color') || hasFlag('no-colors') || hasFlag('color=false')) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (hasFlag('color') || hasFlag('colors') || hasFlag('color=true') || hasFlag('color=always')) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (process.stdout && !process.stdout.isTTY) {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (process.platform === 'win32') {\n\t\t\treturn true;\n\t\t}\n\n\t\tif ('COLORTERM' in process.env) {\n\t\t\treturn true;\n\t\t}\n\n\t\tif (process.env.TERM === 'dumb') {\n\t\t\treturn false;\n\t\t}\n\n\t\tif (/^screen|^xterm|^vt100|color|ansi|cygwin|linux/i.test(process.env.TERM)) {\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t}();\n\t/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(8)))\n\n/***/ }),\n/* 624 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tmodule.exports = function toFastproperties(o) {\n\t\tfunction Sub() {}\n\t\tSub.prototype = o;\n\t\tvar receiver = new Sub(); // create an instance\n\t\tfunction ic() {\n\t\t\treturn _typeof(receiver.foo);\n\t\t} // perform access\n\t\tic();\n\t\tic();\n\t\treturn o;\n\t\teval(\"o\" + o); // ensure no dead code elimination\n\t};\n\n/***/ }),\n/* 625 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tmodule.exports = function (str) {\n\t\tvar tail = str.length;\n\n\t\twhile (/[\\s\\uFEFF\\u00A0]/.test(str[tail - 1])) {\n\t\t\ttail--;\n\t\t}\n\n\t\treturn str.slice(0, tail);\n\t};\n\n/***/ }),\n/* 626 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tif (typeof Object.create === 'function') {\n\t  // implementation from standard node.js 'util' module\n\t  module.exports = function inherits(ctor, superCtor) {\n\t    ctor.super_ = superCtor;\n\t    ctor.prototype = Object.create(superCtor.prototype, {\n\t      constructor: {\n\t        value: ctor,\n\t        enumerable: false,\n\t        writable: true,\n\t        configurable: true\n\t      }\n\t    });\n\t  };\n\t} else {\n\t  // old school shim for old browsers\n\t  module.exports = function inherits(ctor, superCtor) {\n\t    ctor.super_ = superCtor;\n\t    var TempCtor = function TempCtor() {};\n\t    TempCtor.prototype = superCtor.prototype;\n\t    ctor.prototype = new TempCtor();\n\t    ctor.prototype.constructor = ctor;\n\t  };\n\t}\n\n/***/ }),\n/* 627 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\n\tmodule.exports = function isBuffer(arg) {\n\t  return arg && (typeof arg === 'undefined' ? 'undefined' : _typeof(arg)) === 'object' && typeof arg.copy === 'function' && typeof arg.fill === 'function' && typeof arg.readUInt8 === 'function';\n\t};\n\n/***/ }),\n/* 628 */\n/***/ (function(module, exports, __webpack_require__) {\n\n\t\"use strict\";\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\t/**\r\n\t * A shim that replaces Babel's require('package.json') statement.\r\n\t * Babel requires the entire package.json file just to get the version number.\r\n\t */\n\tvar version = exports.version = (\"6.26.0\");\n\n/***/ }),\n/* 629 */\n/***/ (function(module, exports) {\n\n\t'use strict';\n\n\tObject.defineProperty(exports, \"__esModule\", {\n\t  value: true\n\t});\n\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\n\texports.runScripts = runScripts;\n\t/**\r\n\t * Copyright 2013-2015, Facebook, Inc.\r\n\t * All rights reserved.\r\n\t *\r\n\t * This source code is licensed under the BSD-style license found in the\r\n\t * LICENSE file in the root directory of the React source tree. An additional\r\n\t * grant of patent rights can be found in the PATENTS file in the same directory.\r\n\t */\n\n\tvar scriptTypes = ['text/jsx', 'text/babel'];\n\n\tvar headEl = void 0;\n\tvar inlineScriptCount = 0;\n\n\t/**\r\n\t * Actually transform the code.\r\n\t */\n\tfunction transformCode(transformFn, script) {\n\t  var source = void 0;\n\t  if (script.url != null) {\n\t    source = script.url;\n\t  } else {\n\t    source = 'Inline Babel script';\n\t    inlineScriptCount++;\n\t    if (inlineScriptCount > 1) {\n\t      source += ' (' + inlineScriptCount + ')';\n\t    }\n\t  }\n\n\t  return transformFn(script.content, _extends({\n\t    filename: source\n\t  }, buildBabelOptions(script))).code;\n\t}\n\n\t/**\r\n\t * Builds the Babel options for transforming the specified script, using some\r\n\t * sensible default presets and plugins if none were explicitly provided.\r\n\t */\n\tfunction buildBabelOptions(script) {\n\t  return {\n\t    presets: script.presets || ['react', 'es2015'],\n\t    plugins: script.plugins || ['transform-class-properties', 'transform-object-rest-spread', 'transform-flow-strip-types'],\n\t    sourceMaps: 'inline'\n\t  };\n\t}\n\n\t/**\r\n\t * Appends a script element at the end of the <head> with the content of code,\r\n\t * after transforming it.\r\n\t */\n\tfunction run(transformFn, script) {\n\t  var scriptEl = document.createElement('script');\n\t  scriptEl.text = transformCode(transformFn, script);\n\t  headEl.appendChild(scriptEl);\n\t}\n\n\t/**\r\n\t * Load script from the provided url and pass the content to the callback.\r\n\t */\n\tfunction load(url, successCallback, errorCallback) {\n\t  var xhr = new XMLHttpRequest();\n\n\t  // async, however scripts will be executed in the order they are in the\n\t  // DOM to mirror normal script loading.\n\t  xhr.open('GET', url, true);\n\t  if ('overrideMimeType' in xhr) {\n\t    xhr.overrideMimeType('text/plain');\n\t  }\n\t  xhr.onreadystatechange = function () {\n\t    if (xhr.readyState === 4) {\n\t      if (xhr.status === 0 || xhr.status === 200) {\n\t        successCallback(xhr.responseText);\n\t      } else {\n\t        errorCallback();\n\t        throw new Error('Could not load ' + url);\n\t      }\n\t    }\n\t  };\n\t  return xhr.send(null);\n\t}\n\n\t/**\r\n\t * Converts a comma-separated data attribute string into an array of values. If\r\n\t * the string is empty, returns an empty array. If the string is not defined,\r\n\t * returns null.\r\n\t */\n\tfunction getPluginsOrPresetsFromScript(script, attributeName) {\n\t  var rawValue = script.getAttribute(attributeName);\n\t  if (rawValue === '') {\n\t    // Empty string means to not load ANY presets or plugins\n\t    return [];\n\t  }\n\t  if (!rawValue) {\n\t    // Any other falsy value (null, undefined) means we're not overriding this\n\t    // setting, and should use the default.\n\t    return null;\n\t  }\n\t  return rawValue.split(',').map(function (item) {\n\t    return item.trim();\n\t  });\n\t}\n\n\t/**\r\n\t * Loop over provided script tags and get the content, via innerHTML if an\r\n\t * inline script, or by using XHR. Transforms are applied if needed. The scripts\r\n\t * are executed in the order they are found on the page.\r\n\t */\n\tfunction loadScripts(transformFn, scripts) {\n\t  var result = [];\n\t  var count = scripts.length;\n\n\t  function check() {\n\t    var script, i;\n\n\t    for (i = 0; i < count; i++) {\n\t      script = result[i];\n\n\t      if (script.loaded && !script.executed) {\n\t        script.executed = true;\n\t        run(transformFn, script);\n\t      } else if (!script.loaded && !script.error && !script.async) {\n\t        break;\n\t      }\n\t    }\n\t  }\n\n\t  scripts.forEach(function (script, i) {\n\t    var scriptData = {\n\t      // script.async is always true for non-JavaScript script tags\n\t      async: script.hasAttribute('async'),\n\t      error: false,\n\t      executed: false,\n\t      plugins: getPluginsOrPresetsFromScript(script, 'data-plugins'),\n\t      presets: getPluginsOrPresetsFromScript(script, 'data-presets')\n\t    };\n\n\t    if (script.src) {\n\t      result[i] = _extends({}, scriptData, {\n\t        content: null,\n\t        loaded: false,\n\t        url: script.src\n\t      });\n\n\t      load(script.src, function (content) {\n\t        result[i].loaded = true;\n\t        result[i].content = content;\n\t        check();\n\t      }, function () {\n\t        result[i].error = true;\n\t        check();\n\t      });\n\t    } else {\n\t      result[i] = _extends({}, scriptData, {\n\t        content: script.innerHTML,\n\t        loaded: true,\n\t        url: null\n\t      });\n\t    }\n\t  });\n\n\t  check();\n\t}\n\n\t/**\r\n\t * Run script tags with type=\"text/jsx\".\r\n\t * @param {Array} scriptTags specify script tags to run, run all in the <head> if not given\r\n\t */\n\tfunction runScripts(transformFn, scripts) {\n\t  headEl = document.getElementsByTagName('head')[0];\n\t  if (!scripts) {\n\t    scripts = document.getElementsByTagName('script');\n\t  }\n\n\t  // Array.prototype.slice cannot be used on NodeList on IE8\n\t  var jsxScripts = [];\n\t  for (var i = 0; i < scripts.length; i++) {\n\t    var script = scripts.item(i);\n\t    // Support the old type=\"text/jsx;harmony=true\"\n\t    var type = script.type.split(';')[0];\n\t    if (scriptTypes.indexOf(type) !== -1) {\n\t      jsxScripts.push(script);\n\t    }\n\t  }\n\n\t  if (jsxScripts.length === 0) {\n\t    return;\n\t  }\n\n\t  console.warn('You are using the in-browser Babel transformer. Be sure to precompile ' + 'your scripts for production - https://babeljs.io/docs/setup/');\n\n\t  loadScripts(transformFn, jsxScripts);\n\t}\n\n/***/ }),\n/* 630 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = {\"builtin\":{\"Array\":false,\"ArrayBuffer\":false,\"Boolean\":false,\"constructor\":false,\"DataView\":false,\"Date\":false,\"decodeURI\":false,\"decodeURIComponent\":false,\"encodeURI\":false,\"encodeURIComponent\":false,\"Error\":false,\"escape\":false,\"eval\":false,\"EvalError\":false,\"Float32Array\":false,\"Float64Array\":false,\"Function\":false,\"hasOwnProperty\":false,\"Infinity\":false,\"Int16Array\":false,\"Int32Array\":false,\"Int8Array\":false,\"isFinite\":false,\"isNaN\":false,\"isPrototypeOf\":false,\"JSON\":false,\"Map\":false,\"Math\":false,\"NaN\":false,\"Number\":false,\"Object\":false,\"parseFloat\":false,\"parseInt\":false,\"Promise\":false,\"propertyIsEnumerable\":false,\"Proxy\":false,\"RangeError\":false,\"ReferenceError\":false,\"Reflect\":false,\"RegExp\":false,\"Set\":false,\"String\":false,\"Symbol\":false,\"SyntaxError\":false,\"System\":false,\"toLocaleString\":false,\"toString\":false,\"TypeError\":false,\"Uint16Array\":false,\"Uint32Array\":false,\"Uint8Array\":false,\"Uint8ClampedArray\":false,\"undefined\":false,\"unescape\":false,\"URIError\":false,\"valueOf\":false,\"WeakMap\":false,\"WeakSet\":false},\"es5\":{\"Array\":false,\"Boolean\":false,\"constructor\":false,\"Date\":false,\"decodeURI\":false,\"decodeURIComponent\":false,\"encodeURI\":false,\"encodeURIComponent\":false,\"Error\":false,\"escape\":false,\"eval\":false,\"EvalError\":false,\"Function\":false,\"hasOwnProperty\":false,\"Infinity\":false,\"isFinite\":false,\"isNaN\":false,\"isPrototypeOf\":false,\"JSON\":false,\"Math\":false,\"NaN\":false,\"Number\":false,\"Object\":false,\"parseFloat\":false,\"parseInt\":false,\"propertyIsEnumerable\":false,\"RangeError\":false,\"ReferenceError\":false,\"RegExp\":false,\"String\":false,\"SyntaxError\":false,\"toLocaleString\":false,\"toString\":false,\"TypeError\":false,\"undefined\":false,\"unescape\":false,\"URIError\":false,\"valueOf\":false},\"es6\":{\"Array\":false,\"ArrayBuffer\":false,\"Boolean\":false,\"constructor\":false,\"DataView\":false,\"Date\":false,\"decodeURI\":false,\"decodeURIComponent\":false,\"encodeURI\":false,\"encodeURIComponent\":false,\"Error\":false,\"escape\":false,\"eval\":false,\"EvalError\":false,\"Float32Array\":false,\"Float64Array\":false,\"Function\":false,\"hasOwnProperty\":false,\"Infinity\":false,\"Int16Array\":false,\"Int32Array\":false,\"Int8Array\":false,\"isFinite\":false,\"isNaN\":false,\"isPrototypeOf\":false,\"JSON\":false,\"Map\":false,\"Math\":false,\"NaN\":false,\"Number\":false,\"Object\":false,\"parseFloat\":false,\"parseInt\":false,\"Promise\":false,\"propertyIsEnumerable\":false,\"Proxy\":false,\"RangeError\":false,\"ReferenceError\":false,\"Reflect\":false,\"RegExp\":false,\"Set\":false,\"String\":false,\"Symbol\":false,\"SyntaxError\":false,\"System\":false,\"toLocaleString\":false,\"toString\":false,\"TypeError\":false,\"Uint16Array\":false,\"Uint32Array\":false,\"Uint8Array\":false,\"Uint8ClampedArray\":false,\"undefined\":false,\"unescape\":false,\"URIError\":false,\"valueOf\":false,\"WeakMap\":false,\"WeakSet\":false},\"browser\":{\"addEventListener\":false,\"alert\":false,\"AnalyserNode\":false,\"Animation\":false,\"AnimationEffectReadOnly\":false,\"AnimationEffectTiming\":false,\"AnimationEffectTimingReadOnly\":false,\"AnimationEvent\":false,\"AnimationPlaybackEvent\":false,\"AnimationTimeline\":false,\"applicationCache\":false,\"ApplicationCache\":false,\"ApplicationCacheErrorEvent\":false,\"atob\":false,\"Attr\":false,\"Audio\":false,\"AudioBuffer\":false,\"AudioBufferSourceNode\":false,\"AudioContext\":false,\"AudioDestinationNode\":false,\"AudioListener\":false,\"AudioNode\":false,\"AudioParam\":false,\"AudioProcessingEvent\":false,\"AutocompleteErrorEvent\":false,\"BarProp\":false,\"BatteryManager\":false,\"BeforeUnloadEvent\":false,\"BiquadFilterNode\":false,\"Blob\":false,\"blur\":false,\"btoa\":false,\"Cache\":false,\"caches\":false,\"CacheStorage\":false,\"cancelAnimationFrame\":false,\"cancelIdleCallback\":false,\"CanvasGradient\":false,\"CanvasPattern\":false,\"CanvasRenderingContext2D\":false,\"CDATASection\":false,\"ChannelMergerNode\":false,\"ChannelSplitterNode\":false,\"CharacterData\":false,\"clearInterval\":false,\"clearTimeout\":false,\"clientInformation\":false,\"ClientRect\":false,\"ClientRectList\":false,\"ClipboardEvent\":false,\"close\":false,\"closed\":false,\"CloseEvent\":false,\"Comment\":false,\"CompositionEvent\":false,\"confirm\":false,\"console\":false,\"ConvolverNode\":false,\"createImageBitmap\":false,\"Credential\":false,\"CredentialsContainer\":false,\"crypto\":false,\"Crypto\":false,\"CryptoKey\":false,\"CSS\":false,\"CSSAnimation\":false,\"CSSFontFaceRule\":false,\"CSSImportRule\":false,\"CSSKeyframeRule\":false,\"CSSKeyframesRule\":false,\"CSSMediaRule\":false,\"CSSPageRule\":false,\"CSSRule\":false,\"CSSRuleList\":false,\"CSSStyleDeclaration\":false,\"CSSStyleRule\":false,\"CSSStyleSheet\":false,\"CSSSupportsRule\":false,\"CSSTransition\":false,\"CSSUnknownRule\":false,\"CSSViewportRule\":false,\"customElements\":false,\"CustomEvent\":false,\"DataTransfer\":false,\"DataTransferItem\":false,\"DataTransferItemList\":false,\"Debug\":false,\"defaultStatus\":false,\"defaultstatus\":false,\"DelayNode\":false,\"DeviceMotionEvent\":false,\"DeviceOrientationEvent\":false,\"devicePixelRatio\":false,\"dispatchEvent\":false,\"document\":false,\"Document\":false,\"DocumentFragment\":false,\"DocumentTimeline\":false,\"DocumentType\":false,\"DOMError\":false,\"DOMException\":false,\"DOMImplementation\":false,\"DOMParser\":false,\"DOMSettableTokenList\":false,\"DOMStringList\":false,\"DOMStringMap\":false,\"DOMTokenList\":false,\"DragEvent\":false,\"DynamicsCompressorNode\":false,\"Element\":false,\"ElementTimeControl\":false,\"ErrorEvent\":false,\"event\":false,\"Event\":false,\"EventSource\":false,\"EventTarget\":false,\"external\":false,\"FederatedCredential\":false,\"fetch\":false,\"File\":false,\"FileError\":false,\"FileList\":false,\"FileReader\":false,\"find\":false,\"focus\":false,\"FocusEvent\":false,\"FontFace\":false,\"FormData\":false,\"frameElement\":false,\"frames\":false,\"GainNode\":false,\"Gamepad\":false,\"GamepadButton\":false,\"GamepadEvent\":false,\"getComputedStyle\":false,\"getSelection\":false,\"HashChangeEvent\":false,\"Headers\":false,\"history\":false,\"History\":false,\"HTMLAllCollection\":false,\"HTMLAnchorElement\":false,\"HTMLAppletElement\":false,\"HTMLAreaElement\":false,\"HTMLAudioElement\":false,\"HTMLBaseElement\":false,\"HTMLBlockquoteElement\":false,\"HTMLBodyElement\":false,\"HTMLBRElement\":false,\"HTMLButtonElement\":false,\"HTMLCanvasElement\":false,\"HTMLCollection\":false,\"HTMLContentElement\":false,\"HTMLDataListElement\":false,\"HTMLDetailsElement\":false,\"HTMLDialogElement\":false,\"HTMLDirectoryElement\":false,\"HTMLDivElement\":false,\"HTMLDListElement\":false,\"HTMLDocument\":false,\"HTMLElement\":false,\"HTMLEmbedElement\":false,\"HTMLFieldSetElement\":false,\"HTMLFontElement\":false,\"HTMLFormControlsCollection\":false,\"HTMLFormElement\":false,\"HTMLFrameElement\":false,\"HTMLFrameSetElement\":false,\"HTMLHeadElement\":false,\"HTMLHeadingElement\":false,\"HTMLHRElement\":false,\"HTMLHtmlElement\":false,\"HTMLIFrameElement\":false,\"HTMLImageElement\":false,\"HTMLInputElement\":false,\"HTMLIsIndexElement\":false,\"HTMLKeygenElement\":false,\"HTMLLabelElement\":false,\"HTMLLayerElement\":false,\"HTMLLegendElement\":false,\"HTMLLIElement\":false,\"HTMLLinkElement\":false,\"HTMLMapElement\":false,\"HTMLMarqueeElement\":false,\"HTMLMediaElement\":false,\"HTMLMenuElement\":false,\"HTMLMetaElement\":false,\"HTMLMeterElement\":false,\"HTMLModElement\":false,\"HTMLObjectElement\":false,\"HTMLOListElement\":false,\"HTMLOptGroupElement\":false,\"HTMLOptionElement\":false,\"HTMLOptionsCollection\":false,\"HTMLOutputElement\":false,\"HTMLParagraphElement\":false,\"HTMLParamElement\":false,\"HTMLPictureElement\":false,\"HTMLPreElement\":false,\"HTMLProgressElement\":false,\"HTMLQuoteElement\":false,\"HTMLScriptElement\":false,\"HTMLSelectElement\":false,\"HTMLShadowElement\":false,\"HTMLSourceElement\":false,\"HTMLSpanElement\":false,\"HTMLStyleElement\":false,\"HTMLTableCaptionElement\":false,\"HTMLTableCellElement\":false,\"HTMLTableColElement\":false,\"HTMLTableElement\":false,\"HTMLTableRowElement\":false,\"HTMLTableSectionElement\":false,\"HTMLTemplateElement\":false,\"HTMLTextAreaElement\":false,\"HTMLTitleElement\":false,\"HTMLTrackElement\":false,\"HTMLUListElement\":false,\"HTMLUnknownElement\":false,\"HTMLVideoElement\":false,\"IDBCursor\":false,\"IDBCursorWithValue\":false,\"IDBDatabase\":false,\"IDBEnvironment\":false,\"IDBFactory\":false,\"IDBIndex\":false,\"IDBKeyRange\":false,\"IDBObjectStore\":false,\"IDBOpenDBRequest\":false,\"IDBRequest\":false,\"IDBTransaction\":false,\"IDBVersionChangeEvent\":false,\"Image\":false,\"ImageBitmap\":false,\"ImageData\":false,\"indexedDB\":false,\"innerHeight\":false,\"innerWidth\":false,\"InputEvent\":false,\"InputMethodContext\":false,\"IntersectionObserver\":false,\"IntersectionObserverEntry\":false,\"Intl\":false,\"KeyboardEvent\":false,\"KeyframeEffect\":false,\"KeyframeEffectReadOnly\":false,\"length\":false,\"localStorage\":false,\"location\":false,\"Location\":false,\"locationbar\":false,\"matchMedia\":false,\"MediaElementAudioSourceNode\":false,\"MediaEncryptedEvent\":false,\"MediaError\":false,\"MediaKeyError\":false,\"MediaKeyEvent\":false,\"MediaKeyMessageEvent\":false,\"MediaKeys\":false,\"MediaKeySession\":false,\"MediaKeyStatusMap\":false,\"MediaKeySystemAccess\":false,\"MediaList\":false,\"MediaQueryList\":false,\"MediaQueryListEvent\":false,\"MediaSource\":false,\"MediaRecorder\":false,\"MediaStream\":false,\"MediaStreamAudioDestinationNode\":false,\"MediaStreamAudioSourceNode\":false,\"MediaStreamEvent\":false,\"MediaStreamTrack\":false,\"menubar\":false,\"MessageChannel\":false,\"MessageEvent\":false,\"MessagePort\":false,\"MIDIAccess\":false,\"MIDIConnectionEvent\":false,\"MIDIInput\":false,\"MIDIInputMap\":false,\"MIDIMessageEvent\":false,\"MIDIOutput\":false,\"MIDIOutputMap\":false,\"MIDIPort\":false,\"MimeType\":false,\"MimeTypeArray\":false,\"MouseEvent\":false,\"moveBy\":false,\"moveTo\":false,\"MutationEvent\":false,\"MutationObserver\":false,\"MutationRecord\":false,\"name\":false,\"NamedNodeMap\":false,\"navigator\":false,\"Navigator\":false,\"Node\":false,\"NodeFilter\":false,\"NodeIterator\":false,\"NodeList\":false,\"Notification\":false,\"OfflineAudioCompletionEvent\":false,\"OfflineAudioContext\":false,\"offscreenBuffering\":false,\"onbeforeunload\":true,\"onblur\":true,\"onerror\":true,\"onfocus\":true,\"onload\":true,\"onresize\":true,\"onunload\":true,\"open\":false,\"openDatabase\":false,\"opener\":false,\"opera\":false,\"Option\":false,\"OscillatorNode\":false,\"outerHeight\":false,\"outerWidth\":false,\"PageTransitionEvent\":false,\"pageXOffset\":false,\"pageYOffset\":false,\"parent\":false,\"PasswordCredential\":false,\"Path2D\":false,\"performance\":false,\"Performance\":false,\"PerformanceEntry\":false,\"PerformanceMark\":false,\"PerformanceMeasure\":false,\"PerformanceNavigation\":false,\"PerformanceResourceTiming\":false,\"PerformanceTiming\":false,\"PeriodicWave\":false,\"Permissions\":false,\"PermissionStatus\":false,\"personalbar\":false,\"Plugin\":false,\"PluginArray\":false,\"PopStateEvent\":false,\"postMessage\":false,\"print\":false,\"ProcessingInstruction\":false,\"ProgressEvent\":false,\"PromiseRejectionEvent\":false,\"prompt\":false,\"PushManager\":false,\"PushSubscription\":false,\"RadioNodeList\":false,\"Range\":false,\"ReadableByteStream\":false,\"ReadableStream\":false,\"removeEventListener\":false,\"Request\":false,\"requestAnimationFrame\":false,\"requestIdleCallback\":false,\"resizeBy\":false,\"resizeTo\":false,\"Response\":false,\"RTCIceCandidate\":false,\"RTCSessionDescription\":false,\"RTCPeerConnection\":false,\"screen\":false,\"Screen\":false,\"screenLeft\":false,\"ScreenOrientation\":false,\"screenTop\":false,\"screenX\":false,\"screenY\":false,\"ScriptProcessorNode\":false,\"scroll\":false,\"scrollbars\":false,\"scrollBy\":false,\"scrollTo\":false,\"scrollX\":false,\"scrollY\":false,\"SecurityPolicyViolationEvent\":false,\"Selection\":false,\"self\":false,\"ServiceWorker\":false,\"ServiceWorkerContainer\":false,\"ServiceWorkerRegistration\":false,\"sessionStorage\":false,\"setInterval\":false,\"setTimeout\":false,\"ShadowRoot\":false,\"SharedKeyframeList\":false,\"SharedWorker\":false,\"showModalDialog\":false,\"SiteBoundCredential\":false,\"speechSynthesis\":false,\"SpeechSynthesisEvent\":false,\"SpeechSynthesisUtterance\":false,\"status\":false,\"statusbar\":false,\"stop\":false,\"Storage\":false,\"StorageEvent\":false,\"styleMedia\":false,\"StyleSheet\":false,\"StyleSheetList\":false,\"SubtleCrypto\":false,\"SVGAElement\":false,\"SVGAltGlyphDefElement\":false,\"SVGAltGlyphElement\":false,\"SVGAltGlyphItemElement\":false,\"SVGAngle\":false,\"SVGAnimateColorElement\":false,\"SVGAnimatedAngle\":false,\"SVGAnimatedBoolean\":false,\"SVGAnimatedEnumeration\":false,\"SVGAnimatedInteger\":false,\"SVGAnimatedLength\":false,\"SVGAnimatedLengthList\":false,\"SVGAnimatedNumber\":false,\"SVGAnimatedNumberList\":false,\"SVGAnimatedPathData\":false,\"SVGAnimatedPoints\":false,\"SVGAnimatedPreserveAspectRatio\":false,\"SVGAnimatedRect\":false,\"SVGAnimatedString\":false,\"SVGAnimatedTransformList\":false,\"SVGAnimateElement\":false,\"SVGAnimateMotionElement\":false,\"SVGAnimateTransformElement\":false,\"SVGAnimationElement\":false,\"SVGCircleElement\":false,\"SVGClipPathElement\":false,\"SVGColor\":false,\"SVGColorProfileElement\":false,\"SVGColorProfileRule\":false,\"SVGComponentTransferFunctionElement\":false,\"SVGCSSRule\":false,\"SVGCursorElement\":false,\"SVGDefsElement\":false,\"SVGDescElement\":false,\"SVGDiscardElement\":false,\"SVGDocument\":false,\"SVGElement\":false,\"SVGElementInstance\":false,\"SVGElementInstanceList\":false,\"SVGEllipseElement\":false,\"SVGEvent\":false,\"SVGExternalResourcesRequired\":false,\"SVGFEBlendElement\":false,\"SVGFEColorMatrixElement\":false,\"SVGFEComponentTransferElement\":false,\"SVGFECompositeElement\":false,\"SVGFEConvolveMatrixElement\":false,\"SVGFEDiffuseLightingElement\":false,\"SVGFEDisplacementMapElement\":false,\"SVGFEDistantLightElement\":false,\"SVGFEDropShadowElement\":false,\"SVGFEFloodElement\":false,\"SVGFEFuncAElement\":false,\"SVGFEFuncBElement\":false,\"SVGFEFuncGElement\":false,\"SVGFEFuncRElement\":false,\"SVGFEGaussianBlurElement\":false,\"SVGFEImageElement\":false,\"SVGFEMergeElement\":false,\"SVGFEMergeNodeElement\":false,\"SVGFEMorphologyElement\":false,\"SVGFEOffsetElement\":false,\"SVGFEPointLightElement\":false,\"SVGFESpecularLightingElement\":false,\"SVGFESpotLightElement\":false,\"SVGFETileElement\":false,\"SVGFETurbulenceElement\":false,\"SVGFilterElement\":false,\"SVGFilterPrimitiveStandardAttributes\":false,\"SVGFitToViewBox\":false,\"SVGFontElement\":false,\"SVGFontFaceElement\":false,\"SVGFontFaceFormatElement\":false,\"SVGFontFaceNameElement\":false,\"SVGFontFaceSrcElement\":false,\"SVGFontFaceUriElement\":false,\"SVGForeignObjectElement\":false,\"SVGGElement\":false,\"SVGGeometryElement\":false,\"SVGGlyphElement\":false,\"SVGGlyphRefElement\":false,\"SVGGradientElement\":false,\"SVGGraphicsElement\":false,\"SVGHKernElement\":false,\"SVGICCColor\":false,\"SVGImageElement\":false,\"SVGLangSpace\":false,\"SVGLength\":false,\"SVGLengthList\":false,\"SVGLinearGradientElement\":false,\"SVGLineElement\":false,\"SVGLocatable\":false,\"SVGMarkerElement\":false,\"SVGMaskElement\":false,\"SVGMatrix\":false,\"SVGMetadataElement\":false,\"SVGMissingGlyphElement\":false,\"SVGMPathElement\":false,\"SVGNumber\":false,\"SVGNumberList\":false,\"SVGPaint\":false,\"SVGPathElement\":false,\"SVGPathSeg\":false,\"SVGPathSegArcAbs\":false,\"SVGPathSegArcRel\":false,\"SVGPathSegClosePath\":false,\"SVGPathSegCurvetoCubicAbs\":false,\"SVGPathSegCurvetoCubicRel\":false,\"SVGPathSegCurvetoCubicSmoothAbs\":false,\"SVGPathSegCurvetoCubicSmoothRel\":false,\"SVGPathSegCurvetoQuadraticAbs\":false,\"SVGPathSegCurvetoQuadraticRel\":false,\"SVGPathSegCurvetoQuadraticSmoothAbs\":false,\"SVGPathSegCurvetoQuadraticSmoothRel\":false,\"SVGPathSegLinetoAbs\":false,\"SVGPathSegLinetoHorizontalAbs\":false,\"SVGPathSegLinetoHorizontalRel\":false,\"SVGPathSegLinetoRel\":false,\"SVGPathSegLinetoVerticalAbs\":false,\"SVGPathSegLinetoVerticalRel\":false,\"SVGPathSegList\":false,\"SVGPathSegMovetoAbs\":false,\"SVGPathSegMovetoRel\":false,\"SVGPatternElement\":false,\"SVGPoint\":false,\"SVGPointList\":false,\"SVGPolygonElement\":false,\"SVGPolylineElement\":false,\"SVGPreserveAspectRatio\":false,\"SVGRadialGradientElement\":false,\"SVGRect\":false,\"SVGRectElement\":false,\"SVGRenderingIntent\":false,\"SVGScriptElement\":false,\"SVGSetElement\":false,\"SVGStopElement\":false,\"SVGStringList\":false,\"SVGStylable\":false,\"SVGStyleElement\":false,\"SVGSVGElement\":false,\"SVGSwitchElement\":false,\"SVGSymbolElement\":false,\"SVGTests\":false,\"SVGTextContentElement\":false,\"SVGTextElement\":false,\"SVGTextPathElement\":false,\"SVGTextPositioningElement\":false,\"SVGTitleElement\":false,\"SVGTransform\":false,\"SVGTransformable\":false,\"SVGTransformList\":false,\"SVGTRefElement\":false,\"SVGTSpanElement\":false,\"SVGUnitTypes\":false,\"SVGURIReference\":false,\"SVGUseElement\":false,\"SVGViewElement\":false,\"SVGViewSpec\":false,\"SVGVKernElement\":false,\"SVGZoomAndPan\":false,\"SVGZoomEvent\":false,\"Text\":false,\"TextDecoder\":false,\"TextEncoder\":false,\"TextEvent\":false,\"TextMetrics\":false,\"TextTrack\":false,\"TextTrackCue\":false,\"TextTrackCueList\":false,\"TextTrackList\":false,\"TimeEvent\":false,\"TimeRanges\":false,\"toolbar\":false,\"top\":false,\"Touch\":false,\"TouchEvent\":false,\"TouchList\":false,\"TrackEvent\":false,\"TransitionEvent\":false,\"TreeWalker\":false,\"UIEvent\":false,\"URL\":false,\"URLSearchParams\":false,\"ValidityState\":false,\"VTTCue\":false,\"WaveShaperNode\":false,\"WebGLActiveInfo\":false,\"WebGLBuffer\":false,\"WebGLContextEvent\":false,\"WebGLFramebuffer\":false,\"WebGLProgram\":false,\"WebGLRenderbuffer\":false,\"WebGLRenderingContext\":false,\"WebGLShader\":false,\"WebGLShaderPrecisionFormat\":false,\"WebGLTexture\":false,\"WebGLUniformLocation\":false,\"WebSocket\":false,\"WheelEvent\":false,\"window\":false,\"Window\":false,\"Worker\":false,\"XDomainRequest\":false,\"XMLDocument\":false,\"XMLHttpRequest\":false,\"XMLHttpRequestEventTarget\":false,\"XMLHttpRequestProgressEvent\":false,\"XMLHttpRequestUpload\":false,\"XMLSerializer\":false,\"XPathEvaluator\":false,\"XPathException\":false,\"XPathExpression\":false,\"XPathNamespace\":false,\"XPathNSResolver\":false,\"XPathResult\":false,\"XSLTProcessor\":false},\"worker\":{\"applicationCache\":false,\"atob\":false,\"Blob\":false,\"BroadcastChannel\":false,\"btoa\":false,\"Cache\":false,\"caches\":false,\"clearInterval\":false,\"clearTimeout\":false,\"close\":true,\"console\":false,\"fetch\":false,\"FileReaderSync\":false,\"FormData\":false,\"Headers\":false,\"IDBCursor\":false,\"IDBCursorWithValue\":false,\"IDBDatabase\":false,\"IDBFactory\":false,\"IDBIndex\":false,\"IDBKeyRange\":false,\"IDBObjectStore\":false,\"IDBOpenDBRequest\":false,\"IDBRequest\":false,\"IDBTransaction\":false,\"IDBVersionChangeEvent\":false,\"ImageData\":false,\"importScripts\":true,\"indexedDB\":false,\"location\":false,\"MessageChannel\":false,\"MessagePort\":false,\"name\":false,\"navigator\":false,\"Notification\":false,\"onclose\":true,\"onconnect\":true,\"onerror\":true,\"onlanguagechange\":true,\"onmessage\":true,\"onoffline\":true,\"ononline\":true,\"onrejectionhandled\":true,\"onunhandledrejection\":true,\"performance\":false,\"Performance\":false,\"PerformanceEntry\":false,\"PerformanceMark\":false,\"PerformanceMeasure\":false,\"PerformanceNavigation\":false,\"PerformanceResourceTiming\":false,\"PerformanceTiming\":false,\"postMessage\":true,\"Promise\":false,\"Request\":false,\"Response\":false,\"self\":true,\"ServiceWorkerRegistration\":false,\"setInterval\":false,\"setTimeout\":false,\"TextDecoder\":false,\"TextEncoder\":false,\"URL\":false,\"URLSearchParams\":false,\"WebSocket\":false,\"Worker\":false,\"XMLHttpRequest\":false},\"node\":{\"__dirname\":false,\"__filename\":false,\"arguments\":false,\"Buffer\":false,\"clearImmediate\":false,\"clearInterval\":false,\"clearTimeout\":false,\"console\":false,\"exports\":true,\"GLOBAL\":false,\"global\":false,\"Intl\":false,\"module\":false,\"process\":false,\"require\":false,\"root\":false,\"setImmediate\":false,\"setInterval\":false,\"setTimeout\":false},\"commonjs\":{\"exports\":true,\"module\":false,\"require\":false,\"global\":false},\"amd\":{\"define\":false,\"require\":false},\"mocha\":{\"after\":false,\"afterEach\":false,\"before\":false,\"beforeEach\":false,\"context\":false,\"describe\":false,\"it\":false,\"mocha\":false,\"run\":false,\"setup\":false,\"specify\":false,\"suite\":false,\"suiteSetup\":false,\"suiteTeardown\":false,\"teardown\":false,\"test\":false,\"xcontext\":false,\"xdescribe\":false,\"xit\":false,\"xspecify\":false},\"jasmine\":{\"afterAll\":false,\"afterEach\":false,\"beforeAll\":false,\"beforeEach\":false,\"describe\":false,\"expect\":false,\"fail\":false,\"fdescribe\":false,\"fit\":false,\"it\":false,\"jasmine\":false,\"pending\":false,\"runs\":false,\"spyOn\":false,\"spyOnProperty\":false,\"waits\":false,\"waitsFor\":false,\"xdescribe\":false,\"xit\":false},\"jest\":{\"afterAll\":false,\"afterEach\":false,\"beforeAll\":false,\"beforeEach\":false,\"check\":false,\"describe\":false,\"expect\":false,\"gen\":false,\"it\":false,\"fdescribe\":false,\"fit\":false,\"jest\":false,\"pit\":false,\"require\":false,\"test\":false,\"xdescribe\":false,\"xit\":false,\"xtest\":false},\"qunit\":{\"asyncTest\":false,\"deepEqual\":false,\"equal\":false,\"expect\":false,\"module\":false,\"notDeepEqual\":false,\"notEqual\":false,\"notOk\":false,\"notPropEqual\":false,\"notStrictEqual\":false,\"ok\":false,\"propEqual\":false,\"QUnit\":false,\"raises\":false,\"start\":false,\"stop\":false,\"strictEqual\":false,\"test\":false,\"throws\":false},\"phantomjs\":{\"console\":true,\"exports\":true,\"phantom\":true,\"require\":true,\"WebPage\":true},\"couch\":{\"emit\":false,\"exports\":false,\"getRow\":false,\"log\":false,\"module\":false,\"provides\":false,\"require\":false,\"respond\":false,\"send\":false,\"start\":false,\"sum\":false},\"rhino\":{\"defineClass\":false,\"deserialize\":false,\"gc\":false,\"help\":false,\"importClass\":false,\"importPackage\":false,\"java\":false,\"load\":false,\"loadClass\":false,\"Packages\":false,\"print\":false,\"quit\":false,\"readFile\":false,\"readUrl\":false,\"runCommand\":false,\"seal\":false,\"serialize\":false,\"spawn\":false,\"sync\":false,\"toint32\":false,\"version\":false},\"nashorn\":{\"__DIR__\":false,\"__FILE__\":false,\"__LINE__\":false,\"com\":false,\"edu\":false,\"exit\":false,\"Java\":false,\"java\":false,\"javafx\":false,\"JavaImporter\":false,\"javax\":false,\"JSAdapter\":false,\"load\":false,\"loadWithNewGlobal\":false,\"org\":false,\"Packages\":false,\"print\":false,\"quit\":false},\"wsh\":{\"ActiveXObject\":true,\"Enumerator\":true,\"GetObject\":true,\"ScriptEngine\":true,\"ScriptEngineBuildVersion\":true,\"ScriptEngineMajorVersion\":true,\"ScriptEngineMinorVersion\":true,\"VBArray\":true,\"WScript\":true,\"WSH\":true,\"XDomainRequest\":true},\"jquery\":{\"$\":false,\"jQuery\":false},\"yui\":{\"Y\":false,\"YUI\":false,\"YUI_config\":false},\"shelljs\":{\"cat\":false,\"cd\":false,\"chmod\":false,\"config\":false,\"cp\":false,\"dirs\":false,\"echo\":false,\"env\":false,\"error\":false,\"exec\":false,\"exit\":false,\"find\":false,\"grep\":false,\"ls\":false,\"ln\":false,\"mkdir\":false,\"mv\":false,\"popd\":false,\"pushd\":false,\"pwd\":false,\"rm\":false,\"sed\":false,\"set\":false,\"target\":false,\"tempdir\":false,\"test\":false,\"touch\":false,\"which\":false},\"prototypejs\":{\"$\":false,\"$$\":false,\"$A\":false,\"$break\":false,\"$continue\":false,\"$F\":false,\"$H\":false,\"$R\":false,\"$w\":false,\"Abstract\":false,\"Ajax\":false,\"Autocompleter\":false,\"Builder\":false,\"Class\":false,\"Control\":false,\"Draggable\":false,\"Draggables\":false,\"Droppables\":false,\"Effect\":false,\"Element\":false,\"Enumerable\":false,\"Event\":false,\"Field\":false,\"Form\":false,\"Hash\":false,\"Insertion\":false,\"ObjectRange\":false,\"PeriodicalExecuter\":false,\"Position\":false,\"Prototype\":false,\"Scriptaculous\":false,\"Selector\":false,\"Sortable\":false,\"SortableObserver\":false,\"Sound\":false,\"Template\":false,\"Toggle\":false,\"Try\":false},\"meteor\":{\"$\":false,\"_\":false,\"Accounts\":false,\"AccountsClient\":false,\"AccountsServer\":false,\"AccountsCommon\":false,\"App\":false,\"Assets\":false,\"Blaze\":false,\"check\":false,\"Cordova\":false,\"DDP\":false,\"DDPServer\":false,\"DDPRateLimiter\":false,\"Deps\":false,\"EJSON\":false,\"Email\":false,\"HTTP\":false,\"Log\":false,\"Match\":false,\"Meteor\":false,\"Mongo\":false,\"MongoInternals\":false,\"Npm\":false,\"Package\":false,\"Plugin\":false,\"process\":false,\"Random\":false,\"ReactiveDict\":false,\"ReactiveVar\":false,\"Router\":false,\"ServiceConfiguration\":false,\"Session\":false,\"share\":false,\"Spacebars\":false,\"Template\":false,\"Tinytest\":false,\"Tracker\":false,\"UI\":false,\"Utils\":false,\"WebApp\":false,\"WebAppInternals\":false},\"mongo\":{\"_isWindows\":false,\"_rand\":false,\"BulkWriteResult\":false,\"cat\":false,\"cd\":false,\"connect\":false,\"db\":false,\"getHostName\":false,\"getMemInfo\":false,\"hostname\":false,\"ISODate\":false,\"listFiles\":false,\"load\":false,\"ls\":false,\"md5sumFile\":false,\"mkdir\":false,\"Mongo\":false,\"NumberInt\":false,\"NumberLong\":false,\"ObjectId\":false,\"PlanCache\":false,\"print\":false,\"printjson\":false,\"pwd\":false,\"quit\":false,\"removeFile\":false,\"rs\":false,\"sh\":false,\"UUID\":false,\"version\":false,\"WriteResult\":false},\"applescript\":{\"$\":false,\"Application\":false,\"Automation\":false,\"console\":false,\"delay\":false,\"Library\":false,\"ObjC\":false,\"ObjectSpecifier\":false,\"Path\":false,\"Progress\":false,\"Ref\":false},\"serviceworker\":{\"caches\":false,\"Cache\":false,\"CacheStorage\":false,\"Client\":false,\"clients\":false,\"Clients\":false,\"ExtendableEvent\":false,\"ExtendableMessageEvent\":false,\"FetchEvent\":false,\"importScripts\":false,\"registration\":false,\"self\":false,\"ServiceWorker\":false,\"ServiceWorkerContainer\":false,\"ServiceWorkerGlobalScope\":false,\"ServiceWorkerMessageEvent\":false,\"ServiceWorkerRegistration\":false,\"skipWaiting\":false,\"WindowClient\":false},\"atomtest\":{\"advanceClock\":false,\"fakeClearInterval\":false,\"fakeClearTimeout\":false,\"fakeSetInterval\":false,\"fakeSetTimeout\":false,\"resetTimeouts\":false,\"waitsForPromise\":false},\"embertest\":{\"andThen\":false,\"click\":false,\"currentPath\":false,\"currentRouteName\":false,\"currentURL\":false,\"fillIn\":false,\"find\":false,\"findWithAssert\":false,\"keyEvent\":false,\"pauseTest\":false,\"resumeTest\":false,\"triggerEvent\":false,\"visit\":false},\"protractor\":{\"$\":false,\"$$\":false,\"browser\":false,\"By\":false,\"by\":false,\"DartObject\":false,\"element\":false,\"protractor\":false},\"shared-node-browser\":{\"clearInterval\":false,\"clearTimeout\":false,\"console\":false,\"setInterval\":false,\"setTimeout\":false},\"webextensions\":{\"browser\":false,\"chrome\":false,\"opr\":false},\"greasemonkey\":{\"GM_addStyle\":false,\"GM_deleteValue\":false,\"GM_getResourceText\":false,\"GM_getResourceURL\":false,\"GM_getValue\":false,\"GM_info\":false,\"GM_listValues\":false,\"GM_log\":false,\"GM_openInTab\":false,\"GM_registerMenuCommand\":false,\"GM_setClipboard\":false,\"GM_setValue\":false,\"GM_xmlhttpRequest\":false,\"unsafeWindow\":false}}\n\n/***/ }),\n/* 631 */\n/***/ (function(module, exports) {\n\n\tmodule.exports = {\"75\":8490,\"83\":383,\"107\":8490,\"115\":383,\"181\":924,\"197\":8491,\"383\":83,\"452\":453,\"453\":452,\"455\":456,\"456\":455,\"458\":459,\"459\":458,\"497\":498,\"498\":497,\"837\":8126,\"914\":976,\"917\":1013,\"920\":1012,\"921\":8126,\"922\":1008,\"924\":181,\"928\":982,\"929\":1009,\"931\":962,\"934\":981,\"937\":8486,\"962\":931,\"976\":914,\"977\":1012,\"981\":934,\"982\":928,\"1008\":922,\"1009\":929,\"1012\":[920,977],\"1013\":917,\"7776\":7835,\"7835\":7776,\"8126\":[837,921],\"8486\":937,\"8490\":75,\"8491\":197,\"66560\":66600,\"66561\":66601,\"66562\":66602,\"66563\":66603,\"66564\":66604,\"66565\":66605,\"66566\":66606,\"66567\":66607,\"66568\":66608,\"66569\":66609,\"66570\":66610,\"66571\":66611,\"66572\":66612,\"66573\":66613,\"66574\":66614,\"66575\":66615,\"66576\":66616,\"66577\":66617,\"66578\":66618,\"66579\":66619,\"66580\":66620,\"66581\":66621,\"66582\":66622,\"66583\":66623,\"66584\":66624,\"66585\":66625,\"66586\":66626,\"66587\":66627,\"66588\":66628,\"66589\":66629,\"66590\":66630,\"66591\":66631,\"66592\":66632,\"66593\":66633,\"66594\":66634,\"66595\":66635,\"66596\":66636,\"66597\":66637,\"66598\":66638,\"66599\":66639,\"66600\":66560,\"66601\":66561,\"66602\":66562,\"66603\":66563,\"66604\":66564,\"66605\":66565,\"66606\":66566,\"66607\":66567,\"66608\":66568,\"66609\":66569,\"66610\":66570,\"66611\":66571,\"66612\":66572,\"66613\":66573,\"66614\":66574,\"66615\":66575,\"66616\":66576,\"66617\":66577,\"66618\":66578,\"66619\":66579,\"66620\":66580,\"66621\":66581,\"66622\":66582,\"66623\":66583,\"66624\":66584,\"66625\":66585,\"66626\":66586,\"66627\":66587,\"66628\":66588,\"66629\":66589,\"66630\":66590,\"66631\":66591,\"66632\":66592,\"66633\":66593,\"66634\":66594,\"66635\":66595,\"66636\":66596,\"66637\":66597,\"66638\":66598,\"66639\":66599,\"68736\":68800,\"68737\":68801,\"68738\":68802,\"68739\":68803,\"68740\":68804,\"68741\":68805,\"68742\":68806,\"68743\":68807,\"68744\":68808,\"68745\":68809,\"68746\":68810,\"68747\":68811,\"68748\":68812,\"68749\":68813,\"68750\":68814,\"68751\":68815,\"68752\":68816,\"68753\":68817,\"68754\":68818,\"68755\":68819,\"68756\":68820,\"68757\":68821,\"68758\":68822,\"68759\":68823,\"68760\":68824,\"68761\":68825,\"68762\":68826,\"68763\":68827,\"68764\":68828,\"68765\":68829,\"68766\":68830,\"68767\":68831,\"68768\":68832,\"68769\":68833,\"68770\":68834,\"68771\":68835,\"68772\":68836,\"68773\":68837,\"68774\":68838,\"68775\":68839,\"68776\":68840,\"68777\":68841,\"68778\":68842,\"68779\":68843,\"68780\":68844,\"68781\":68845,\"68782\":68846,\"68783\":68847,\"68784\":68848,\"68785\":68849,\"68786\":68850,\"68800\":68736,\"68801\":68737,\"68802\":68738,\"68803\":68739,\"68804\":68740,\"68805\":68741,\"68806\":68742,\"68807\":68743,\"68808\":68744,\"68809\":68745,\"68810\":68746,\"68811\":68747,\"68812\":68748,\"68813\":68749,\"68814\":68750,\"68815\":68751,\"68816\":68752,\"68817\":68753,\"68818\":68754,\"68819\":68755,\"68820\":68756,\"68821\":68757,\"68822\":68758,\"68823\":68759,\"68824\":68760,\"68825\":68761,\"68826\":68762,\"68827\":68763,\"68828\":68764,\"68829\":68765,\"68830\":68766,\"68831\":68767,\"68832\":68768,\"68833\":68769,\"68834\":68770,\"68835\":68771,\"68836\":68772,\"68837\":68773,\"68838\":68774,\"68839\":68775,\"68840\":68776,\"68841\":68777,\"68842\":68778,\"68843\":68779,\"68844\":68780,\"68845\":68781,\"68846\":68782,\"68847\":68783,\"68848\":68784,\"68849\":68785,\"68850\":68786,\"71840\":71872,\"71841\":71873,\"71842\":71874,\"71843\":71875,\"71844\":71876,\"71845\":71877,\"71846\":71878,\"71847\":71879,\"71848\":71880,\"71849\":71881,\"71850\":71882,\"71851\":71883,\"71852\":71884,\"71853\":71885,\"71854\":71886,\"71855\":71887,\"71856\":71888,\"71857\":71889,\"71858\":71890,\"71859\":71891,\"71860\":71892,\"71861\":71893,\"71862\":71894,\"71863\":71895,\"71864\":71896,\"71865\":71897,\"71866\":71898,\"71867\":71899,\"71868\":71900,\"71869\":71901,\"71870\":71902,\"71871\":71903,\"71872\":71840,\"71873\":71841,\"71874\":71842,\"71875\":71843,\"71876\":71844,\"71877\":71845,\"71878\":71846,\"71879\":71847,\"71880\":71848,\"71881\":71849,\"71882\":71850,\"71883\":71851,\"71884\":71852,\"71885\":71853,\"71886\":71854,\"71887\":71855,\"71888\":71856,\"71889\":71857,\"71890\":71858,\"71891\":71859,\"71892\":71860,\"71893\":71861,\"71894\":71862,\"71895\":71863,\"71896\":71864,\"71897\":71865,\"71898\":71866,\"71899\":71867,\"71900\":71868,\"71901\":71869,\"71902\":71870,\"71903\":71871}\n\n/***/ })\n/******/ ])))\n});\n;\n},{}],18:[function(require,module,exports){\nrequire('../../modules/es6.object.create');\nvar $Object = require('../../modules/_core').Object;\nmodule.exports = function create(P, D) {\n  return $Object.create(P, D);\n};\n\n},{\"../../modules/_core\":28,\"../../modules/es6.object.create\":80}],19:[function(require,module,exports){\nrequire('../../modules/es6.object.define-property');\nvar $Object = require('../../modules/_core').Object;\nmodule.exports = function defineProperty(it, key, desc) {\n  return $Object.defineProperty(it, key, desc);\n};\n\n},{\"../../modules/_core\":28,\"../../modules/es6.object.define-property\":81}],20:[function(require,module,exports){\nrequire('../../modules/es6.object.set-prototype-of');\nmodule.exports = require('../../modules/_core').Object.setPrototypeOf;\n\n},{\"../../modules/_core\":28,\"../../modules/es6.object.set-prototype-of\":82}],21:[function(require,module,exports){\nrequire('../../modules/es6.symbol');\nrequire('../../modules/es6.object.to-string');\nrequire('../../modules/es7.symbol.async-iterator');\nrequire('../../modules/es7.symbol.observable');\nmodule.exports = require('../../modules/_core').Symbol;\n\n},{\"../../modules/_core\":28,\"../../modules/es6.object.to-string\":83,\"../../modules/es6.symbol\":85,\"../../modules/es7.symbol.async-iterator\":86,\"../../modules/es7.symbol.observable\":87}],22:[function(require,module,exports){\nrequire('../../modules/es6.string.iterator');\nrequire('../../modules/web.dom.iterable');\nmodule.exports = require('../../modules/_wks-ext').f('iterator');\n\n},{\"../../modules/_wks-ext\":77,\"../../modules/es6.string.iterator\":84,\"../../modules/web.dom.iterable\":88}],23:[function(require,module,exports){\nmodule.exports = function (it) {\n  if (typeof it != 'function') throw TypeError(it + ' is not a function!');\n  return it;\n};\n\n},{}],24:[function(require,module,exports){\nmodule.exports = function () { /* empty */ };\n\n},{}],25:[function(require,module,exports){\nvar isObject = require('./_is-object');\nmodule.exports = function (it) {\n  if (!isObject(it)) throw TypeError(it + ' is not an object!');\n  return it;\n};\n\n},{\"./_is-object\":44}],26:[function(require,module,exports){\n// false -> Array#indexOf\n// true  -> Array#includes\nvar toIObject = require('./_to-iobject');\nvar toLength = require('./_to-length');\nvar toAbsoluteIndex = require('./_to-absolute-index');\nmodule.exports = function (IS_INCLUDES) {\n  return function ($this, el, fromIndex) {\n    var O = toIObject($this);\n    var length = toLength(O.length);\n    var index = toAbsoluteIndex(fromIndex, length);\n    var value;\n    // Array#includes uses SameValueZero equality algorithm\n    // eslint-disable-next-line no-self-compare\n    if (IS_INCLUDES && el != el) while (length > index) {\n      value = O[index++];\n      // eslint-disable-next-line no-self-compare\n      if (value != value) return true;\n    // Array#indexOf ignores holes, Array#includes - not\n    } else for (;length > index; index++) if (IS_INCLUDES || index in O) {\n      if (O[index] === el) return IS_INCLUDES || index || 0;\n    } return !IS_INCLUDES && -1;\n  };\n};\n\n},{\"./_to-absolute-index\":69,\"./_to-iobject\":71,\"./_to-length\":72}],27:[function(require,module,exports){\nvar toString = {}.toString;\n\nmodule.exports = function (it) {\n  return toString.call(it).slice(8, -1);\n};\n\n},{}],28:[function(require,module,exports){\nvar core = module.exports = { version: '2.5.1' };\nif (typeof __e == 'number') __e = core; // eslint-disable-line no-undef\n\n},{}],29:[function(require,module,exports){\n// optional / simple context binding\nvar aFunction = require('./_a-function');\nmodule.exports = function (fn, that, length) {\n  aFunction(fn);\n  if (that === undefined) return fn;\n  switch (length) {\n    case 1: return function (a) {\n      return fn.call(that, a);\n    };\n    case 2: return function (a, b) {\n      return fn.call(that, a, b);\n    };\n    case 3: return function (a, b, c) {\n      return fn.call(that, a, b, c);\n    };\n  }\n  return function (/* ...args */) {\n    return fn.apply(that, arguments);\n  };\n};\n\n},{\"./_a-function\":23}],30:[function(require,module,exports){\n// 7.2.1 RequireObjectCoercible(argument)\nmodule.exports = function (it) {\n  if (it == undefined) throw TypeError(\"Can't call method on  \" + it);\n  return it;\n};\n\n},{}],31:[function(require,module,exports){\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !require('./_fails')(function () {\n  return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n\n},{\"./_fails\":36}],32:[function(require,module,exports){\nvar isObject = require('./_is-object');\nvar document = require('./_global').document;\n// typeof document.createElement is 'object' in old IE\nvar is = isObject(document) && isObject(document.createElement);\nmodule.exports = function (it) {\n  return is ? document.createElement(it) : {};\n};\n\n},{\"./_global\":37,\"./_is-object\":44}],33:[function(require,module,exports){\n// IE 8- don't enum bug keys\nmodule.exports = (\n  'constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf'\n).split(',');\n\n},{}],34:[function(require,module,exports){\n// all enumerable object keys, includes symbols\nvar getKeys = require('./_object-keys');\nvar gOPS = require('./_object-gops');\nvar pIE = require('./_object-pie');\nmodule.exports = function (it) {\n  var result = getKeys(it);\n  var getSymbols = gOPS.f;\n  if (getSymbols) {\n    var symbols = getSymbols(it);\n    var isEnum = pIE.f;\n    var i = 0;\n    var key;\n    while (symbols.length > i) if (isEnum.call(it, key = symbols[i++])) result.push(key);\n  } return result;\n};\n\n},{\"./_object-gops\":57,\"./_object-keys\":60,\"./_object-pie\":61}],35:[function(require,module,exports){\nvar global = require('./_global');\nvar core = require('./_core');\nvar ctx = require('./_ctx');\nvar hide = require('./_hide');\nvar PROTOTYPE = 'prototype';\n\nvar $export = function (type, name, source) {\n  var IS_FORCED = type & $export.F;\n  var IS_GLOBAL = type & $export.G;\n  var IS_STATIC = type & $export.S;\n  var IS_PROTO = type & $export.P;\n  var IS_BIND = type & $export.B;\n  var IS_WRAP = type & $export.W;\n  var exports = IS_GLOBAL ? core : core[name] || (core[name] = {});\n  var expProto = exports[PROTOTYPE];\n  var target = IS_GLOBAL ? global : IS_STATIC ? global[name] : (global[name] || {})[PROTOTYPE];\n  var key, own, out;\n  if (IS_GLOBAL) source = name;\n  for (key in source) {\n    // contains in native\n    own = !IS_FORCED && target && target[key] !== undefined;\n    if (own && key in exports) continue;\n    // export native or passed\n    out = own ? target[key] : source[key];\n    // prevent global pollution for namespaces\n    exports[key] = IS_GLOBAL && typeof target[key] != 'function' ? source[key]\n    // bind timers to global for call from export context\n    : IS_BIND && own ? ctx(out, global)\n    // wrap global constructors for prevent change them in library\n    : IS_WRAP && target[key] == out ? (function (C) {\n      var F = function (a, b, c) {\n        if (this instanceof C) {\n          switch (arguments.length) {\n            case 0: return new C();\n            case 1: return new C(a);\n            case 2: return new C(a, b);\n          } return new C(a, b, c);\n        } return C.apply(this, arguments);\n      };\n      F[PROTOTYPE] = C[PROTOTYPE];\n      return F;\n    // make static versions for prototype methods\n    })(out) : IS_PROTO && typeof out == 'function' ? ctx(Function.call, out) : out;\n    // export proto methods to core.%CONSTRUCTOR%.methods.%NAME%\n    if (IS_PROTO) {\n      (exports.virtual || (exports.virtual = {}))[key] = out;\n      // export proto methods to core.%CONSTRUCTOR%.prototype.%NAME%\n      if (type & $export.R && expProto && !expProto[key]) hide(expProto, key, out);\n    }\n  }\n};\n// type bitmap\n$export.F = 1;   // forced\n$export.G = 2;   // global\n$export.S = 4;   // static\n$export.P = 8;   // proto\n$export.B = 16;  // bind\n$export.W = 32;  // wrap\n$export.U = 64;  // safe\n$export.R = 128; // real proto method for `library`\nmodule.exports = $export;\n\n},{\"./_core\":28,\"./_ctx\":29,\"./_global\":37,\"./_hide\":39}],36:[function(require,module,exports){\nmodule.exports = function (exec) {\n  try {\n    return !!exec();\n  } catch (e) {\n    return true;\n  }\n};\n\n},{}],37:[function(require,module,exports){\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nvar global = module.exports = typeof window != 'undefined' && window.Math == Math\n  ? window : typeof self != 'undefined' && self.Math == Math ? self\n  // eslint-disable-next-line no-new-func\n  : Function('return this')();\nif (typeof __g == 'number') __g = global; // eslint-disable-line no-undef\n\n},{}],38:[function(require,module,exports){\nvar hasOwnProperty = {}.hasOwnProperty;\nmodule.exports = function (it, key) {\n  return hasOwnProperty.call(it, key);\n};\n\n},{}],39:[function(require,module,exports){\nvar dP = require('./_object-dp');\nvar createDesc = require('./_property-desc');\nmodule.exports = require('./_descriptors') ? function (object, key, value) {\n  return dP.f(object, key, createDesc(1, value));\n} : function (object, key, value) {\n  object[key] = value;\n  return object;\n};\n\n},{\"./_descriptors\":31,\"./_object-dp\":52,\"./_property-desc\":62}],40:[function(require,module,exports){\nvar document = require('./_global').document;\nmodule.exports = document && document.documentElement;\n\n},{\"./_global\":37}],41:[function(require,module,exports){\nmodule.exports = !require('./_descriptors') && !require('./_fails')(function () {\n  return Object.defineProperty(require('./_dom-create')('div'), 'a', { get: function () { return 7; } }).a != 7;\n});\n\n},{\"./_descriptors\":31,\"./_dom-create\":32,\"./_fails\":36}],42:[function(require,module,exports){\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nvar cof = require('./_cof');\n// eslint-disable-next-line no-prototype-builtins\nmodule.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {\n  return cof(it) == 'String' ? it.split('') : Object(it);\n};\n\n},{\"./_cof\":27}],43:[function(require,module,exports){\n// 7.2.2 IsArray(argument)\nvar cof = require('./_cof');\nmodule.exports = Array.isArray || function isArray(arg) {\n  return cof(arg) == 'Array';\n};\n\n},{\"./_cof\":27}],44:[function(require,module,exports){\nmodule.exports = function (it) {\n  return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n\n},{}],45:[function(require,module,exports){\n'use strict';\nvar create = require('./_object-create');\nvar descriptor = require('./_property-desc');\nvar setToStringTag = require('./_set-to-string-tag');\nvar IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nrequire('./_hide')(IteratorPrototype, require('./_wks')('iterator'), function () { return this; });\n\nmodule.exports = function (Constructor, NAME, next) {\n  Constructor.prototype = create(IteratorPrototype, { next: descriptor(1, next) });\n  setToStringTag(Constructor, NAME + ' Iterator');\n};\n\n},{\"./_hide\":39,\"./_object-create\":51,\"./_property-desc\":62,\"./_set-to-string-tag\":65,\"./_wks\":78}],46:[function(require,module,exports){\n'use strict';\nvar LIBRARY = require('./_library');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar hide = require('./_hide');\nvar has = require('./_has');\nvar Iterators = require('./_iterators');\nvar $iterCreate = require('./_iter-create');\nvar setToStringTag = require('./_set-to-string-tag');\nvar getPrototypeOf = require('./_object-gpo');\nvar ITERATOR = require('./_wks')('iterator');\nvar BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`\nvar FF_ITERATOR = '@@iterator';\nvar KEYS = 'keys';\nvar VALUES = 'values';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCED) {\n  $iterCreate(Constructor, NAME, next);\n  var getMethod = function (kind) {\n    if (!BUGGY && kind in proto) return proto[kind];\n    switch (kind) {\n      case KEYS: return function keys() { return new Constructor(this, kind); };\n      case VALUES: return function values() { return new Constructor(this, kind); };\n    } return function entries() { return new Constructor(this, kind); };\n  };\n  var TAG = NAME + ' Iterator';\n  var DEF_VALUES = DEFAULT == VALUES;\n  var VALUES_BUG = false;\n  var proto = Base.prototype;\n  var $native = proto[ITERATOR] || proto[FF_ITERATOR] || DEFAULT && proto[DEFAULT];\n  var $default = $native || getMethod(DEFAULT);\n  var $entries = DEFAULT ? !DEF_VALUES ? $default : getMethod('entries') : undefined;\n  var $anyNative = NAME == 'Array' ? proto.entries || $native : $native;\n  var methods, key, IteratorPrototype;\n  // Fix native\n  if ($anyNative) {\n    IteratorPrototype = getPrototypeOf($anyNative.call(new Base()));\n    if (IteratorPrototype !== Object.prototype && IteratorPrototype.next) {\n      // Set @@toStringTag to native iterators\n      setToStringTag(IteratorPrototype, TAG, true);\n      // fix for some old engines\n      if (!LIBRARY && !has(IteratorPrototype, ITERATOR)) hide(IteratorPrototype, ITERATOR, returnThis);\n    }\n  }\n  // fix Array#{values, @@iterator}.name in V8 / FF\n  if (DEF_VALUES && $native && $native.name !== VALUES) {\n    VALUES_BUG = true;\n    $default = function values() { return $native.call(this); };\n  }\n  // Define iterator\n  if ((!LIBRARY || FORCED) && (BUGGY || VALUES_BUG || !proto[ITERATOR])) {\n    hide(proto, ITERATOR, $default);\n  }\n  // Plug for library\n  Iterators[NAME] = $default;\n  Iterators[TAG] = returnThis;\n  if (DEFAULT) {\n    methods = {\n      values: DEF_VALUES ? $default : getMethod(VALUES),\n      keys: IS_SET ? $default : getMethod(KEYS),\n      entries: $entries\n    };\n    if (FORCED) for (key in methods) {\n      if (!(key in proto)) redefine(proto, key, methods[key]);\n    } else $export($export.P + $export.F * (BUGGY || VALUES_BUG), NAME, methods);\n  }\n  return methods;\n};\n\n},{\"./_export\":35,\"./_has\":38,\"./_hide\":39,\"./_iter-create\":45,\"./_iterators\":48,\"./_library\":49,\"./_object-gpo\":58,\"./_redefine\":63,\"./_set-to-string-tag\":65,\"./_wks\":78}],47:[function(require,module,exports){\nmodule.exports = function (done, value) {\n  return { value: value, done: !!done };\n};\n\n},{}],48:[function(require,module,exports){\nmodule.exports = {};\n\n},{}],49:[function(require,module,exports){\nmodule.exports = true;\n\n},{}],50:[function(require,module,exports){\nvar META = require('./_uid')('meta');\nvar isObject = require('./_is-object');\nvar has = require('./_has');\nvar setDesc = require('./_object-dp').f;\nvar id = 0;\nvar isExtensible = Object.isExtensible || function () {\n  return true;\n};\nvar FREEZE = !require('./_fails')(function () {\n  return isExtensible(Object.preventExtensions({}));\n});\nvar setMeta = function (it) {\n  setDesc(it, META, { value: {\n    i: 'O' + ++id, // object ID\n    w: {}          // weak collections IDs\n  } });\n};\nvar fastKey = function (it, create) {\n  // return primitive with prefix\n  if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n  if (!has(it, META)) {\n    // can't set metadata to uncaught frozen object\n    if (!isExtensible(it)) return 'F';\n    // not necessary to add metadata\n    if (!create) return 'E';\n    // add missing metadata\n    setMeta(it);\n  // return object ID\n  } return it[META].i;\n};\nvar getWeak = function (it, create) {\n  if (!has(it, META)) {\n    // can't set metadata to uncaught frozen object\n    if (!isExtensible(it)) return true;\n    // not necessary to add metadata\n    if (!create) return false;\n    // add missing metadata\n    setMeta(it);\n  // return hash weak collections IDs\n  } return it[META].w;\n};\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n  if (FREEZE && meta.NEED && isExtensible(it) && !has(it, META)) setMeta(it);\n  return it;\n};\nvar meta = module.exports = {\n  KEY: META,\n  NEED: false,\n  fastKey: fastKey,\n  getWeak: getWeak,\n  onFreeze: onFreeze\n};\n\n},{\"./_fails\":36,\"./_has\":38,\"./_is-object\":44,\"./_object-dp\":52,\"./_uid\":75}],51:[function(require,module,exports){\n// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\nvar anObject = require('./_an-object');\nvar dPs = require('./_object-dps');\nvar enumBugKeys = require('./_enum-bug-keys');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar Empty = function () { /* empty */ };\nvar PROTOTYPE = 'prototype';\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n  // Thrash, waste and sodomy: IE GC bug\n  var iframe = require('./_dom-create')('iframe');\n  var i = enumBugKeys.length;\n  var lt = '<';\n  var gt = '>';\n  var iframeDocument;\n  iframe.style.display = 'none';\n  require('./_html').appendChild(iframe);\n  iframe.src = 'javascript:'; // eslint-disable-line no-script-url\n  // createDict = iframe.contentWindow.Object;\n  // html.removeChild(iframe);\n  iframeDocument = iframe.contentWindow.document;\n  iframeDocument.open();\n  iframeDocument.write(lt + 'script' + gt + 'document.F=Object' + lt + '/script' + gt);\n  iframeDocument.close();\n  createDict = iframeDocument.F;\n  while (i--) delete createDict[PROTOTYPE][enumBugKeys[i]];\n  return createDict();\n};\n\nmodule.exports = Object.create || function create(O, Properties) {\n  var result;\n  if (O !== null) {\n    Empty[PROTOTYPE] = anObject(O);\n    result = new Empty();\n    Empty[PROTOTYPE] = null;\n    // add \"__proto__\" for Object.getPrototypeOf polyfill\n    result[IE_PROTO] = O;\n  } else result = createDict();\n  return Properties === undefined ? result : dPs(result, Properties);\n};\n\n},{\"./_an-object\":25,\"./_dom-create\":32,\"./_enum-bug-keys\":33,\"./_html\":40,\"./_object-dps\":53,\"./_shared-key\":66}],52:[function(require,module,exports){\nvar anObject = require('./_an-object');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar toPrimitive = require('./_to-primitive');\nvar dP = Object.defineProperty;\n\nexports.f = require('./_descriptors') ? Object.defineProperty : function defineProperty(O, P, Attributes) {\n  anObject(O);\n  P = toPrimitive(P, true);\n  anObject(Attributes);\n  if (IE8_DOM_DEFINE) try {\n    return dP(O, P, Attributes);\n  } catch (e) { /* empty */ }\n  if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported!');\n  if ('value' in Attributes) O[P] = Attributes.value;\n  return O;\n};\n\n},{\"./_an-object\":25,\"./_descriptors\":31,\"./_ie8-dom-define\":41,\"./_to-primitive\":74}],53:[function(require,module,exports){\nvar dP = require('./_object-dp');\nvar anObject = require('./_an-object');\nvar getKeys = require('./_object-keys');\n\nmodule.exports = require('./_descriptors') ? Object.defineProperties : function defineProperties(O, Properties) {\n  anObject(O);\n  var keys = getKeys(Properties);\n  var length = keys.length;\n  var i = 0;\n  var P;\n  while (length > i) dP.f(O, P = keys[i++], Properties[P]);\n  return O;\n};\n\n},{\"./_an-object\":25,\"./_descriptors\":31,\"./_object-dp\":52,\"./_object-keys\":60}],54:[function(require,module,exports){\nvar pIE = require('./_object-pie');\nvar createDesc = require('./_property-desc');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar has = require('./_has');\nvar IE8_DOM_DEFINE = require('./_ie8-dom-define');\nvar gOPD = Object.getOwnPropertyDescriptor;\n\nexports.f = require('./_descriptors') ? gOPD : function getOwnPropertyDescriptor(O, P) {\n  O = toIObject(O);\n  P = toPrimitive(P, true);\n  if (IE8_DOM_DEFINE) try {\n    return gOPD(O, P);\n  } catch (e) { /* empty */ }\n  if (has(O, P)) return createDesc(!pIE.f.call(O, P), O[P]);\n};\n\n},{\"./_descriptors\":31,\"./_has\":38,\"./_ie8-dom-define\":41,\"./_object-pie\":61,\"./_property-desc\":62,\"./_to-iobject\":71,\"./_to-primitive\":74}],55:[function(require,module,exports){\n// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window\nvar toIObject = require('./_to-iobject');\nvar gOPN = require('./_object-gopn').f;\nvar toString = {}.toString;\n\nvar windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames\n  ? Object.getOwnPropertyNames(window) : [];\n\nvar getWindowNames = function (it) {\n  try {\n    return gOPN(it);\n  } catch (e) {\n    return windowNames.slice();\n  }\n};\n\nmodule.exports.f = function getOwnPropertyNames(it) {\n  return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : gOPN(toIObject(it));\n};\n\n},{\"./_object-gopn\":56,\"./_to-iobject\":71}],56:[function(require,module,exports){\n// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)\nvar $keys = require('./_object-keys-internal');\nvar hiddenKeys = require('./_enum-bug-keys').concat('length', 'prototype');\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n  return $keys(O, hiddenKeys);\n};\n\n},{\"./_enum-bug-keys\":33,\"./_object-keys-internal\":59}],57:[function(require,module,exports){\nexports.f = Object.getOwnPropertySymbols;\n\n},{}],58:[function(require,module,exports){\n// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)\nvar has = require('./_has');\nvar toObject = require('./_to-object');\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\nvar ObjectProto = Object.prototype;\n\nmodule.exports = Object.getPrototypeOf || function (O) {\n  O = toObject(O);\n  if (has(O, IE_PROTO)) return O[IE_PROTO];\n  if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n    return O.constructor.prototype;\n  } return O instanceof Object ? ObjectProto : null;\n};\n\n},{\"./_has\":38,\"./_shared-key\":66,\"./_to-object\":73}],59:[function(require,module,exports){\nvar has = require('./_has');\nvar toIObject = require('./_to-iobject');\nvar arrayIndexOf = require('./_array-includes')(false);\nvar IE_PROTO = require('./_shared-key')('IE_PROTO');\n\nmodule.exports = function (object, names) {\n  var O = toIObject(object);\n  var i = 0;\n  var result = [];\n  var key;\n  for (key in O) if (key != IE_PROTO) has(O, key) && result.push(key);\n  // Don't enum bug & hidden keys\n  while (names.length > i) if (has(O, key = names[i++])) {\n    ~arrayIndexOf(result, key) || result.push(key);\n  }\n  return result;\n};\n\n},{\"./_array-includes\":26,\"./_has\":38,\"./_shared-key\":66,\"./_to-iobject\":71}],60:[function(require,module,exports){\n// 19.1.2.14 / 15.2.3.14 Object.keys(O)\nvar $keys = require('./_object-keys-internal');\nvar enumBugKeys = require('./_enum-bug-keys');\n\nmodule.exports = Object.keys || function keys(O) {\n  return $keys(O, enumBugKeys);\n};\n\n},{\"./_enum-bug-keys\":33,\"./_object-keys-internal\":59}],61:[function(require,module,exports){\nexports.f = {}.propertyIsEnumerable;\n\n},{}],62:[function(require,module,exports){\nmodule.exports = function (bitmap, value) {\n  return {\n    enumerable: !(bitmap & 1),\n    configurable: !(bitmap & 2),\n    writable: !(bitmap & 4),\n    value: value\n  };\n};\n\n},{}],63:[function(require,module,exports){\nmodule.exports = require('./_hide');\n\n},{\"./_hide\":39}],64:[function(require,module,exports){\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nvar isObject = require('./_is-object');\nvar anObject = require('./_an-object');\nvar check = function (O, proto) {\n  anObject(O);\n  if (!isObject(proto) && proto !== null) throw TypeError(proto + \": can't set as prototype!\");\n};\nmodule.exports = {\n  set: Object.setPrototypeOf || ('__proto__' in {} ? // eslint-disable-line\n    function (test, buggy, set) {\n      try {\n        set = require('./_ctx')(Function.call, require('./_object-gopd').f(Object.prototype, '__proto__').set, 2);\n        set(test, []);\n        buggy = !(test instanceof Array);\n      } catch (e) { buggy = true; }\n      return function setPrototypeOf(O, proto) {\n        check(O, proto);\n        if (buggy) O.__proto__ = proto;\n        else set(O, proto);\n        return O;\n      };\n    }({}, false) : undefined),\n  check: check\n};\n\n},{\"./_an-object\":25,\"./_ctx\":29,\"./_is-object\":44,\"./_object-gopd\":54}],65:[function(require,module,exports){\nvar def = require('./_object-dp').f;\nvar has = require('./_has');\nvar TAG = require('./_wks')('toStringTag');\n\nmodule.exports = function (it, tag, stat) {\n  if (it && !has(it = stat ? it : it.prototype, TAG)) def(it, TAG, { configurable: true, value: tag });\n};\n\n},{\"./_has\":38,\"./_object-dp\":52,\"./_wks\":78}],66:[function(require,module,exports){\nvar shared = require('./_shared')('keys');\nvar uid = require('./_uid');\nmodule.exports = function (key) {\n  return shared[key] || (shared[key] = uid(key));\n};\n\n},{\"./_shared\":67,\"./_uid\":75}],67:[function(require,module,exports){\nvar global = require('./_global');\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || (global[SHARED] = {});\nmodule.exports = function (key) {\n  return store[key] || (store[key] = {});\n};\n\n},{\"./_global\":37}],68:[function(require,module,exports){\nvar toInteger = require('./_to-integer');\nvar defined = require('./_defined');\n// true  -> String#at\n// false -> String#codePointAt\nmodule.exports = function (TO_STRING) {\n  return function (that, pos) {\n    var s = String(defined(that));\n    var i = toInteger(pos);\n    var l = s.length;\n    var a, b;\n    if (i < 0 || i >= l) return TO_STRING ? '' : undefined;\n    a = s.charCodeAt(i);\n    return a < 0xd800 || a > 0xdbff || i + 1 === l || (b = s.charCodeAt(i + 1)) < 0xdc00 || b > 0xdfff\n      ? TO_STRING ? s.charAt(i) : a\n      : TO_STRING ? s.slice(i, i + 2) : (a - 0xd800 << 10) + (b - 0xdc00) + 0x10000;\n  };\n};\n\n},{\"./_defined\":30,\"./_to-integer\":70}],69:[function(require,module,exports){\nvar toInteger = require('./_to-integer');\nvar max = Math.max;\nvar min = Math.min;\nmodule.exports = function (index, length) {\n  index = toInteger(index);\n  return index < 0 ? max(index + length, 0) : min(index, length);\n};\n\n},{\"./_to-integer\":70}],70:[function(require,module,exports){\n// 7.1.4 ToInteger\nvar ceil = Math.ceil;\nvar floor = Math.floor;\nmodule.exports = function (it) {\n  return isNaN(it = +it) ? 0 : (it > 0 ? floor : ceil)(it);\n};\n\n},{}],71:[function(require,module,exports){\n// to indexed object, toObject with fallback for non-array-like ES3 strings\nvar IObject = require('./_iobject');\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n  return IObject(defined(it));\n};\n\n},{\"./_defined\":30,\"./_iobject\":42}],72:[function(require,module,exports){\n// 7.1.15 ToLength\nvar toInteger = require('./_to-integer');\nvar min = Math.min;\nmodule.exports = function (it) {\n  return it > 0 ? min(toInteger(it), 0x1fffffffffffff) : 0; // pow(2, 53) - 1 == 9007199254740991\n};\n\n},{\"./_to-integer\":70}],73:[function(require,module,exports){\n// 7.1.13 ToObject(argument)\nvar defined = require('./_defined');\nmodule.exports = function (it) {\n  return Object(defined(it));\n};\n\n},{\"./_defined\":30}],74:[function(require,module,exports){\n// 7.1.1 ToPrimitive(input [, PreferredType])\nvar isObject = require('./_is-object');\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (it, S) {\n  if (!isObject(it)) return it;\n  var fn, val;\n  if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n  if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;\n  if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;\n  throw TypeError(\"Can't convert object to primitive value\");\n};\n\n},{\"./_is-object\":44}],75:[function(require,module,exports){\nvar id = 0;\nvar px = Math.random();\nmodule.exports = function (key) {\n  return 'Symbol('.concat(key === undefined ? '' : key, ')_', (++id + px).toString(36));\n};\n\n},{}],76:[function(require,module,exports){\nvar global = require('./_global');\nvar core = require('./_core');\nvar LIBRARY = require('./_library');\nvar wksExt = require('./_wks-ext');\nvar defineProperty = require('./_object-dp').f;\nmodule.exports = function (name) {\n  var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {});\n  if (name.charAt(0) != '_' && !(name in $Symbol)) defineProperty($Symbol, name, { value: wksExt.f(name) });\n};\n\n},{\"./_core\":28,\"./_global\":37,\"./_library\":49,\"./_object-dp\":52,\"./_wks-ext\":77}],77:[function(require,module,exports){\nexports.f = require('./_wks');\n\n},{\"./_wks\":78}],78:[function(require,module,exports){\nvar store = require('./_shared')('wks');\nvar uid = require('./_uid');\nvar Symbol = require('./_global').Symbol;\nvar USE_SYMBOL = typeof Symbol == 'function';\n\nvar $exports = module.exports = function (name) {\n  return store[name] || (store[name] =\n    USE_SYMBOL && Symbol[name] || (USE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n\n$exports.store = store;\n\n},{\"./_global\":37,\"./_shared\":67,\"./_uid\":75}],79:[function(require,module,exports){\n'use strict';\nvar addToUnscopables = require('./_add-to-unscopables');\nvar step = require('./_iter-step');\nvar Iterators = require('./_iterators');\nvar toIObject = require('./_to-iobject');\n\n// 22.1.3.4 Array.prototype.entries()\n// 22.1.3.13 Array.prototype.keys()\n// 22.1.3.29 Array.prototype.values()\n// 22.1.3.30 Array.prototype[@@iterator]()\nmodule.exports = require('./_iter-define')(Array, 'Array', function (iterated, kind) {\n  this._t = toIObject(iterated); // target\n  this._i = 0;                   // next index\n  this._k = kind;                // kind\n// 22.1.5.2.1 %ArrayIteratorPrototype%.next()\n}, function () {\n  var O = this._t;\n  var kind = this._k;\n  var index = this._i++;\n  if (!O || index >= O.length) {\n    this._t = undefined;\n    return step(1);\n  }\n  if (kind == 'keys') return step(0, index);\n  if (kind == 'values') return step(0, O[index]);\n  return step(0, [index, O[index]]);\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values% (9.4.4.6, 9.4.4.7)\nIterators.Arguments = Iterators.Array;\n\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n\n},{\"./_add-to-unscopables\":24,\"./_iter-define\":46,\"./_iter-step\":47,\"./_iterators\":48,\"./_to-iobject\":71}],80:[function(require,module,exports){\nvar $export = require('./_export');\n// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])\n$export($export.S, 'Object', { create: require('./_object-create') });\n\n},{\"./_export\":35,\"./_object-create\":51}],81:[function(require,module,exports){\nvar $export = require('./_export');\n// 19.1.2.4 / 15.2.3.6 Object.defineProperty(O, P, Attributes)\n$export($export.S + $export.F * !require('./_descriptors'), 'Object', { defineProperty: require('./_object-dp').f });\n\n},{\"./_descriptors\":31,\"./_export\":35,\"./_object-dp\":52}],82:[function(require,module,exports){\n// 19.1.3.19 Object.setPrototypeOf(O, proto)\nvar $export = require('./_export');\n$export($export.S, 'Object', { setPrototypeOf: require('./_set-proto').set });\n\n},{\"./_export\":35,\"./_set-proto\":64}],83:[function(require,module,exports){\n\n},{}],84:[function(require,module,exports){\n'use strict';\nvar $at = require('./_string-at')(true);\n\n// 21.1.3.27 String.prototype[@@iterator]()\nrequire('./_iter-define')(String, 'String', function (iterated) {\n  this._t = String(iterated); // target\n  this._i = 0;                // next index\n// 21.1.5.2.1 %StringIteratorPrototype%.next()\n}, function () {\n  var O = this._t;\n  var index = this._i;\n  var point;\n  if (index >= O.length) return { value: undefined, done: true };\n  point = $at(O, index);\n  this._i += point.length;\n  return { value: point, done: false };\n});\n\n},{\"./_iter-define\":46,\"./_string-at\":68}],85:[function(require,module,exports){\n'use strict';\n// ECMAScript 6 symbols shim\nvar global = require('./_global');\nvar has = require('./_has');\nvar DESCRIPTORS = require('./_descriptors');\nvar $export = require('./_export');\nvar redefine = require('./_redefine');\nvar META = require('./_meta').KEY;\nvar $fails = require('./_fails');\nvar shared = require('./_shared');\nvar setToStringTag = require('./_set-to-string-tag');\nvar uid = require('./_uid');\nvar wks = require('./_wks');\nvar wksExt = require('./_wks-ext');\nvar wksDefine = require('./_wks-define');\nvar enumKeys = require('./_enum-keys');\nvar isArray = require('./_is-array');\nvar anObject = require('./_an-object');\nvar toIObject = require('./_to-iobject');\nvar toPrimitive = require('./_to-primitive');\nvar createDesc = require('./_property-desc');\nvar _create = require('./_object-create');\nvar gOPNExt = require('./_object-gopn-ext');\nvar $GOPD = require('./_object-gopd');\nvar $DP = require('./_object-dp');\nvar $keys = require('./_object-keys');\nvar gOPD = $GOPD.f;\nvar dP = $DP.f;\nvar gOPN = gOPNExt.f;\nvar $Symbol = global.Symbol;\nvar $JSON = global.JSON;\nvar _stringify = $JSON && $JSON.stringify;\nvar PROTOTYPE = 'prototype';\nvar HIDDEN = wks('_hidden');\nvar TO_PRIMITIVE = wks('toPrimitive');\nvar isEnum = {}.propertyIsEnumerable;\nvar SymbolRegistry = shared('symbol-registry');\nvar AllSymbols = shared('symbols');\nvar OPSymbols = shared('op-symbols');\nvar ObjectProto = Object[PROTOTYPE];\nvar USE_NATIVE = typeof $Symbol == 'function';\nvar QObject = global.QObject;\n// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173\nvar setter = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;\n\n// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687\nvar setSymbolDesc = DESCRIPTORS && $fails(function () {\n  return _create(dP({}, 'a', {\n    get: function () { return dP(this, 'a', { value: 7 }).a; }\n  })).a != 7;\n}) ? function (it, key, D) {\n  var protoDesc = gOPD(ObjectProto, key);\n  if (protoDesc) delete ObjectProto[key];\n  dP(it, key, D);\n  if (protoDesc && it !== ObjectProto) dP(ObjectProto, key, protoDesc);\n} : dP;\n\nvar wrap = function (tag) {\n  var sym = AllSymbols[tag] = _create($Symbol[PROTOTYPE]);\n  sym._k = tag;\n  return sym;\n};\n\nvar isSymbol = USE_NATIVE && typeof $Symbol.iterator == 'symbol' ? function (it) {\n  return typeof it == 'symbol';\n} : function (it) {\n  return it instanceof $Symbol;\n};\n\nvar $defineProperty = function defineProperty(it, key, D) {\n  if (it === ObjectProto) $defineProperty(OPSymbols, key, D);\n  anObject(it);\n  key = toPrimitive(key, true);\n  anObject(D);\n  if (has(AllSymbols, key)) {\n    if (!D.enumerable) {\n      if (!has(it, HIDDEN)) dP(it, HIDDEN, createDesc(1, {}));\n      it[HIDDEN][key] = true;\n    } else {\n      if (has(it, HIDDEN) && it[HIDDEN][key]) it[HIDDEN][key] = false;\n      D = _create(D, { enumerable: createDesc(0, false) });\n    } return setSymbolDesc(it, key, D);\n  } return dP(it, key, D);\n};\nvar $defineProperties = function defineProperties(it, P) {\n  anObject(it);\n  var keys = enumKeys(P = toIObject(P));\n  var i = 0;\n  var l = keys.length;\n  var key;\n  while (l > i) $defineProperty(it, key = keys[i++], P[key]);\n  return it;\n};\nvar $create = function create(it, P) {\n  return P === undefined ? _create(it) : $defineProperties(_create(it), P);\n};\nvar $propertyIsEnumerable = function propertyIsEnumerable(key) {\n  var E = isEnum.call(this, key = toPrimitive(key, true));\n  if (this === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return false;\n  return E || !has(this, key) || !has(AllSymbols, key) || has(this, HIDDEN) && this[HIDDEN][key] ? E : true;\n};\nvar $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(it, key) {\n  it = toIObject(it);\n  key = toPrimitive(key, true);\n  if (it === ObjectProto && has(AllSymbols, key) && !has(OPSymbols, key)) return;\n  var D = gOPD(it, key);\n  if (D && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) D.enumerable = true;\n  return D;\n};\nvar $getOwnPropertyNames = function getOwnPropertyNames(it) {\n  var names = gOPN(toIObject(it));\n  var result = [];\n  var i = 0;\n  var key;\n  while (names.length > i) {\n    if (!has(AllSymbols, key = names[i++]) && key != HIDDEN && key != META) result.push(key);\n  } return result;\n};\nvar $getOwnPropertySymbols = function getOwnPropertySymbols(it) {\n  var IS_OP = it === ObjectProto;\n  var names = gOPN(IS_OP ? OPSymbols : toIObject(it));\n  var result = [];\n  var i = 0;\n  var key;\n  while (names.length > i) {\n    if (has(AllSymbols, key = names[i++]) && (IS_OP ? has(ObjectProto, key) : true)) result.push(AllSymbols[key]);\n  } return result;\n};\n\n// 19.4.1.1 Symbol([description])\nif (!USE_NATIVE) {\n  $Symbol = function Symbol() {\n    if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor!');\n    var tag = uid(arguments.length > 0 ? arguments[0] : undefined);\n    var $set = function (value) {\n      if (this === ObjectProto) $set.call(OPSymbols, value);\n      if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;\n      setSymbolDesc(this, tag, createDesc(1, value));\n    };\n    if (DESCRIPTORS && setter) setSymbolDesc(ObjectProto, tag, { configurable: true, set: $set });\n    return wrap(tag);\n  };\n  redefine($Symbol[PROTOTYPE], 'toString', function toString() {\n    return this._k;\n  });\n\n  $GOPD.f = $getOwnPropertyDescriptor;\n  $DP.f = $defineProperty;\n  require('./_object-gopn').f = gOPNExt.f = $getOwnPropertyNames;\n  require('./_object-pie').f = $propertyIsEnumerable;\n  require('./_object-gops').f = $getOwnPropertySymbols;\n\n  if (DESCRIPTORS && !require('./_library')) {\n    redefine(ObjectProto, 'propertyIsEnumerable', $propertyIsEnumerable, true);\n  }\n\n  wksExt.f = function (name) {\n    return wrap(wks(name));\n  };\n}\n\n$export($export.G + $export.W + $export.F * !USE_NATIVE, { Symbol: $Symbol });\n\nfor (var es6Symbols = (\n  // 19.4.2.2, 19.4.2.3, 19.4.2.4, 19.4.2.6, 19.4.2.8, 19.4.2.9, 19.4.2.10, 19.4.2.11, 19.4.2.12, 19.4.2.13, 19.4.2.14\n  'hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'\n).split(','), j = 0; es6Symbols.length > j;)wks(es6Symbols[j++]);\n\nfor (var wellKnownSymbols = $keys(wks.store), k = 0; wellKnownSymbols.length > k;) wksDefine(wellKnownSymbols[k++]);\n\n$export($export.S + $export.F * !USE_NATIVE, 'Symbol', {\n  // 19.4.2.1 Symbol.for(key)\n  'for': function (key) {\n    return has(SymbolRegistry, key += '')\n      ? SymbolRegistry[key]\n      : SymbolRegistry[key] = $Symbol(key);\n  },\n  // 19.4.2.5 Symbol.keyFor(sym)\n  keyFor: function keyFor(sym) {\n    if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol!');\n    for (var key in SymbolRegistry) if (SymbolRegistry[key] === sym) return key;\n  },\n  useSetter: function () { setter = true; },\n  useSimple: function () { setter = false; }\n});\n\n$export($export.S + $export.F * !USE_NATIVE, 'Object', {\n  // 19.1.2.2 Object.create(O [, Properties])\n  create: $create,\n  // 19.1.2.4 Object.defineProperty(O, P, Attributes)\n  defineProperty: $defineProperty,\n  // 19.1.2.3 Object.defineProperties(O, Properties)\n  defineProperties: $defineProperties,\n  // 19.1.2.6 Object.getOwnPropertyDescriptor(O, P)\n  getOwnPropertyDescriptor: $getOwnPropertyDescriptor,\n  // 19.1.2.7 Object.getOwnPropertyNames(O)\n  getOwnPropertyNames: $getOwnPropertyNames,\n  // 19.1.2.8 Object.getOwnPropertySymbols(O)\n  getOwnPropertySymbols: $getOwnPropertySymbols\n});\n\n// 24.3.2 JSON.stringify(value [, replacer [, space]])\n$JSON && $export($export.S + $export.F * (!USE_NATIVE || $fails(function () {\n  var S = $Symbol();\n  // MS Edge converts symbol values to JSON as {}\n  // WebKit converts symbol values to JSON as null\n  // V8 throws on boxed symbols\n  return _stringify([S]) != '[null]' || _stringify({ a: S }) != '{}' || _stringify(Object(S)) != '{}';\n})), 'JSON', {\n  stringify: function stringify(it) {\n    if (it === undefined || isSymbol(it)) return; // IE8 returns string on undefined\n    var args = [it];\n    var i = 1;\n    var replacer, $replacer;\n    while (arguments.length > i) args.push(arguments[i++]);\n    replacer = args[1];\n    if (typeof replacer == 'function') $replacer = replacer;\n    if ($replacer || !isArray(replacer)) replacer = function (key, value) {\n      if ($replacer) value = $replacer.call(this, key, value);\n      if (!isSymbol(value)) return value;\n    };\n    args[1] = replacer;\n    return _stringify.apply($JSON, args);\n  }\n});\n\n// 19.4.3.4 Symbol.prototype[@@toPrimitive](hint)\n$Symbol[PROTOTYPE][TO_PRIMITIVE] || require('./_hide')($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);\n// 19.4.3.5 Symbol.prototype[@@toStringTag]\nsetToStringTag($Symbol, 'Symbol');\n// 20.2.1.9 Math[@@toStringTag]\nsetToStringTag(Math, 'Math', true);\n// 24.3.3 JSON[@@toStringTag]\nsetToStringTag(global.JSON, 'JSON', true);\n\n},{\"./_an-object\":25,\"./_descriptors\":31,\"./_enum-keys\":34,\"./_export\":35,\"./_fails\":36,\"./_global\":37,\"./_has\":38,\"./_hide\":39,\"./_is-array\":43,\"./_library\":49,\"./_meta\":50,\"./_object-create\":51,\"./_object-dp\":52,\"./_object-gopd\":54,\"./_object-gopn\":56,\"./_object-gopn-ext\":55,\"./_object-gops\":57,\"./_object-keys\":60,\"./_object-pie\":61,\"./_property-desc\":62,\"./_redefine\":63,\"./_set-to-string-tag\":65,\"./_shared\":67,\"./_to-iobject\":71,\"./_to-primitive\":74,\"./_uid\":75,\"./_wks\":78,\"./_wks-define\":76,\"./_wks-ext\":77}],86:[function(require,module,exports){\nrequire('./_wks-define')('asyncIterator');\n\n},{\"./_wks-define\":76}],87:[function(require,module,exports){\nrequire('./_wks-define')('observable');\n\n},{\"./_wks-define\":76}],88:[function(require,module,exports){\nrequire('./es6.array.iterator');\nvar global = require('./_global');\nvar hide = require('./_hide');\nvar Iterators = require('./_iterators');\nvar TO_STRING_TAG = require('./_wks')('toStringTag');\n\nvar DOMIterables = ('CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,' +\n  'DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,' +\n  'MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,' +\n  'SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,' +\n  'TextTrackList,TouchList').split(',');\n\nfor (var i = 0; i < DOMIterables.length; i++) {\n  var NAME = DOMIterables[i];\n  var Collection = global[NAME];\n  var proto = Collection && Collection.prototype;\n  if (proto && !proto[TO_STRING_TAG]) hide(proto, TO_STRING_TAG, NAME);\n  Iterators[NAME] = Iterators.Array;\n}\n\n},{\"./_global\":37,\"./_hide\":39,\"./_iterators\":48,\"./_wks\":78,\"./es6.array.iterator\":79}],89:[function(require,module,exports){\n(function (process){\n'use strict';\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\nvar emptyFunction = require('./emptyFunction');\n\n/**\n * Upstream version of event listener. Does not take into account specific\n * nature of platform.\n */\nvar EventListener = {\n  /**\n   * Listen to DOM events during the bubble phase.\n   *\n   * @param {DOMEventTarget} target DOM element to register listener on.\n   * @param {string} eventType Event type, e.g. 'click' or 'mouseover'.\n   * @param {function} callback Callback function.\n   * @return {object} Object with a `remove` method.\n   */\n  listen: function listen(target, eventType, callback) {\n    if (target.addEventListener) {\n      target.addEventListener(eventType, callback, false);\n      return {\n        remove: function remove() {\n          target.removeEventListener(eventType, callback, false);\n        }\n      };\n    } else if (target.attachEvent) {\n      target.attachEvent('on' + eventType, callback);\n      return {\n        remove: function remove() {\n          target.detachEvent('on' + eventType, callback);\n        }\n      };\n    }\n  },\n\n  /**\n   * Listen to DOM events during the capture phase.\n   *\n   * @param {DOMEventTarget} target DOM element to register listener on.\n   * @param {string} eventType Event type, e.g. 'click' or 'mouseover'.\n   * @param {function} callback Callback function.\n   * @return {object} Object with a `remove` method.\n   */\n  capture: function capture(target, eventType, callback) {\n    if (target.addEventListener) {\n      target.addEventListener(eventType, callback, true);\n      return {\n        remove: function remove() {\n          target.removeEventListener(eventType, callback, true);\n        }\n      };\n    } else {\n      if (process.env.NODE_ENV !== 'production') {\n        console.error('Attempted to listen to events during the capture phase on a ' + 'browser that does not support the capture phase. Your application ' + 'will not receive some events.');\n      }\n      return {\n        remove: emptyFunction\n      };\n    }\n  },\n\n  registerDefault: function registerDefault() {}\n};\n\nmodule.exports = EventListener;\n}).call(this,require('_process'))\n},{\"./emptyFunction\":96,\"_process\":112}],90:[function(require,module,exports){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n */\n\n'use strict';\n\nvar canUseDOM = !!(typeof window !== 'undefined' && window.document && window.document.createElement);\n\n/**\n * Simple, lightweight module assisting with the detection and context of\n * Worker. Helps avoid circular dependencies and allows code to reason about\n * whether or not they are in a Worker, even if they never include the main\n * `ReactWorker` dependency.\n */\nvar ExecutionEnvironment = {\n\n  canUseDOM: canUseDOM,\n\n  canUseWorkers: typeof Worker !== 'undefined',\n\n  canUseEventListeners: canUseDOM && !!(window.addEventListener || window.attachEvent),\n\n  canUseViewport: canUseDOM && !!window.screen,\n\n  isInWorker: !canUseDOM // For now, this is true - might change in the future.\n\n};\n\nmodule.exports = ExecutionEnvironment;\n},{}],91:[function(require,module,exports){\n\"use strict\";\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\nvar _hyphenPattern = /-(.)/g;\n\n/**\n * Camelcases a hyphenated string, for example:\n *\n *   > camelize('background-color')\n *   < \"backgroundColor\"\n *\n * @param {string} string\n * @return {string}\n */\nfunction camelize(string) {\n  return string.replace(_hyphenPattern, function (_, character) {\n    return character.toUpperCase();\n  });\n}\n\nmodule.exports = camelize;\n},{}],92:[function(require,module,exports){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\n'use strict';\n\nvar camelize = require('./camelize');\n\nvar msPattern = /^-ms-/;\n\n/**\n * Camelcases a hyphenated CSS property name, for example:\n *\n *   > camelizeStyleName('background-color')\n *   < \"backgroundColor\"\n *   > camelizeStyleName('-moz-transition')\n *   < \"MozTransition\"\n *   > camelizeStyleName('-ms-transition')\n *   < \"msTransition\"\n *\n * As Andi Smith suggests\n * (http://www.andismith.com/blog/2012/02/modernizr-prefixed/), an `-ms` prefix\n * is converted to lowercase `ms`.\n *\n * @param {string} string\n * @return {string}\n */\nfunction camelizeStyleName(string) {\n  return camelize(string.replace(msPattern, 'ms-'));\n}\n\nmodule.exports = camelizeStyleName;\n},{\"./camelize\":91}],93:[function(require,module,exports){\n'use strict';\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\n\nvar isTextNode = require('./isTextNode');\n\n/*eslint-disable no-bitwise */\n\n/**\n * Checks if a given DOM node contains or is another DOM node.\n */\nfunction containsNode(outerNode, innerNode) {\n  if (!outerNode || !innerNode) {\n    return false;\n  } else if (outerNode === innerNode) {\n    return true;\n  } else if (isTextNode(outerNode)) {\n    return false;\n  } else if (isTextNode(innerNode)) {\n    return containsNode(outerNode, innerNode.parentNode);\n  } else if ('contains' in outerNode) {\n    return outerNode.contains(innerNode);\n  } else if (outerNode.compareDocumentPosition) {\n    return !!(outerNode.compareDocumentPosition(innerNode) & 16);\n  } else {\n    return false;\n  }\n}\n\nmodule.exports = containsNode;\n},{\"./isTextNode\":106}],94:[function(require,module,exports){\n(function (process){\n'use strict';\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\nvar invariant = require('./invariant');\n\n/**\n * Convert array-like objects to arrays.\n *\n * This API assumes the caller knows the contents of the data type. For less\n * well defined inputs use createArrayFromMixed.\n *\n * @param {object|function|filelist} obj\n * @return {array}\n */\nfunction toArray(obj) {\n  var length = obj.length;\n\n  // Some browsers builtin objects can report typeof 'function' (e.g. NodeList\n  // in old versions of Safari).\n  !(!Array.isArray(obj) && (typeof obj === 'object' || typeof obj === 'function')) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'toArray: Array-like object expected') : invariant(false) : void 0;\n\n  !(typeof length === 'number') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'toArray: Object needs a length property') : invariant(false) : void 0;\n\n  !(length === 0 || length - 1 in obj) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'toArray: Object should have keys for indices') : invariant(false) : void 0;\n\n  !(typeof obj.callee !== 'function') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'toArray: Object can\\'t be `arguments`. Use rest params ' + '(function(...args) {}) or Array.from() instead.') : invariant(false) : void 0;\n\n  // Old IE doesn't give collections access to hasOwnProperty. Assume inputs\n  // without method will throw during the slice call and skip straight to the\n  // fallback.\n  if (obj.hasOwnProperty) {\n    try {\n      return Array.prototype.slice.call(obj);\n    } catch (e) {\n      // IE < 9 does not support Array#slice on collections objects\n    }\n  }\n\n  // Fall back to copying key by key. This assumes all keys have a value,\n  // so will not preserve sparsely populated inputs.\n  var ret = Array(length);\n  for (var ii = 0; ii < length; ii++) {\n    ret[ii] = obj[ii];\n  }\n  return ret;\n}\n\n/**\n * Perform a heuristic test to determine if an object is \"array-like\".\n *\n *   A monk asked Joshu, a Zen master, \"Has a dog Buddha nature?\"\n *   Joshu replied: \"Mu.\"\n *\n * This function determines if its argument has \"array nature\": it returns\n * true if the argument is an actual array, an `arguments' object, or an\n * HTMLCollection (e.g. node.childNodes or node.getElementsByTagName()).\n *\n * It will return false for other array-like objects like Filelist.\n *\n * @param {*} obj\n * @return {boolean}\n */\nfunction hasArrayNature(obj) {\n  return (\n    // not null/false\n    !!obj && (\n    // arrays are objects, NodeLists are functions in Safari\n    typeof obj == 'object' || typeof obj == 'function') &&\n    // quacks like an array\n    'length' in obj &&\n    // not window\n    !('setInterval' in obj) &&\n    // no DOM node should be considered an array-like\n    // a 'select' element has 'length' and 'item' properties on IE8\n    typeof obj.nodeType != 'number' && (\n    // a real array\n    Array.isArray(obj) ||\n    // arguments\n    'callee' in obj ||\n    // HTMLCollection/NodeList\n    'item' in obj)\n  );\n}\n\n/**\n * Ensure that the argument is an array by wrapping it in an array if it is not.\n * Creates a copy of the argument if it is already an array.\n *\n * This is mostly useful idiomatically:\n *\n *   var createArrayFromMixed = require('createArrayFromMixed');\n *\n *   function takesOneOrMoreThings(things) {\n *     things = createArrayFromMixed(things);\n *     ...\n *   }\n *\n * This allows you to treat `things' as an array, but accept scalars in the API.\n *\n * If you need to convert an array-like object, like `arguments`, into an array\n * use toArray instead.\n *\n * @param {*} obj\n * @return {array}\n */\nfunction createArrayFromMixed(obj) {\n  if (!hasArrayNature(obj)) {\n    return [obj];\n  } else if (Array.isArray(obj)) {\n    return obj.slice();\n  } else {\n    return toArray(obj);\n  }\n}\n\nmodule.exports = createArrayFromMixed;\n}).call(this,require('_process'))\n},{\"./invariant\":104,\"_process\":112}],95:[function(require,module,exports){\n(function (process){\n'use strict';\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\n/*eslint-disable fb-www/unsafe-html*/\n\nvar ExecutionEnvironment = require('./ExecutionEnvironment');\n\nvar createArrayFromMixed = require('./createArrayFromMixed');\nvar getMarkupWrap = require('./getMarkupWrap');\nvar invariant = require('./invariant');\n\n/**\n * Dummy container used to render all markup.\n */\nvar dummyNode = ExecutionEnvironment.canUseDOM ? document.createElement('div') : null;\n\n/**\n * Pattern used by `getNodeName`.\n */\nvar nodeNamePattern = /^\\s*<(\\w+)/;\n\n/**\n * Extracts the `nodeName` of the first element in a string of markup.\n *\n * @param {string} markup String of markup.\n * @return {?string} Node name of the supplied markup.\n */\nfunction getNodeName(markup) {\n  var nodeNameMatch = markup.match(nodeNamePattern);\n  return nodeNameMatch && nodeNameMatch[1].toLowerCase();\n}\n\n/**\n * Creates an array containing the nodes rendered from the supplied markup. The\n * optionally supplied `handleScript` function will be invoked once for each\n * <script> element that is rendered. If no `handleScript` function is supplied,\n * an exception is thrown if any <script> elements are rendered.\n *\n * @param {string} markup A string of valid HTML markup.\n * @param {?function} handleScript Invoked once for each rendered <script>.\n * @return {array<DOMElement|DOMTextNode>} An array of rendered nodes.\n */\nfunction createNodesFromMarkup(markup, handleScript) {\n  var node = dummyNode;\n  !!!dummyNode ? process.env.NODE_ENV !== 'production' ? invariant(false, 'createNodesFromMarkup dummy not initialized') : invariant(false) : void 0;\n  var nodeName = getNodeName(markup);\n\n  var wrap = nodeName && getMarkupWrap(nodeName);\n  if (wrap) {\n    node.innerHTML = wrap[1] + markup + wrap[2];\n\n    var wrapDepth = wrap[0];\n    while (wrapDepth--) {\n      node = node.lastChild;\n    }\n  } else {\n    node.innerHTML = markup;\n  }\n\n  var scripts = node.getElementsByTagName('script');\n  if (scripts.length) {\n    !handleScript ? process.env.NODE_ENV !== 'production' ? invariant(false, 'createNodesFromMarkup(...): Unexpected <script> element rendered.') : invariant(false) : void 0;\n    createArrayFromMixed(scripts).forEach(handleScript);\n  }\n\n  var nodes = Array.from(node.childNodes);\n  while (node.lastChild) {\n    node.removeChild(node.lastChild);\n  }\n  return nodes;\n}\n\nmodule.exports = createNodesFromMarkup;\n}).call(this,require('_process'))\n},{\"./ExecutionEnvironment\":90,\"./createArrayFromMixed\":94,\"./getMarkupWrap\":100,\"./invariant\":104,\"_process\":112}],96:[function(require,module,exports){\n\"use strict\";\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\n\nfunction makeEmptyFunction(arg) {\n  return function () {\n    return arg;\n  };\n}\n\n/**\n * This function accepts and discards inputs; it has no side effects. This is\n * primarily useful idiomatically for overridable function endpoints which\n * always need to be callable, since JS lacks a null-call idiom ala Cocoa.\n */\nvar emptyFunction = function emptyFunction() {};\n\nemptyFunction.thatReturns = makeEmptyFunction;\nemptyFunction.thatReturnsFalse = makeEmptyFunction(false);\nemptyFunction.thatReturnsTrue = makeEmptyFunction(true);\nemptyFunction.thatReturnsNull = makeEmptyFunction(null);\nemptyFunction.thatReturnsThis = function () {\n  return this;\n};\nemptyFunction.thatReturnsArgument = function (arg) {\n  return arg;\n};\n\nmodule.exports = emptyFunction;\n},{}],97:[function(require,module,exports){\n(function (process){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n */\n\n'use strict';\n\nvar emptyObject = {};\n\nif (process.env.NODE_ENV !== 'production') {\n  Object.freeze(emptyObject);\n}\n\nmodule.exports = emptyObject;\n}).call(this,require('_process'))\n},{\"_process\":112}],98:[function(require,module,exports){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n */\n\n'use strict';\n\n/**\n * @param {DOMElement} node input/textarea to focus\n */\n\nfunction focusNode(node) {\n  // IE8 can throw \"Can't move focus to the control because it is invisible,\n  // not enabled, or of a type that does not accept the focus.\" for all kinds of\n  // reasons that are too expensive and fragile to test.\n  try {\n    node.focus();\n  } catch (e) {}\n}\n\nmodule.exports = focusNode;\n},{}],99:[function(require,module,exports){\n'use strict';\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\n/* eslint-disable fb-www/typeof-undefined */\n\n/**\n * Same as document.activeElement but wraps in a try-catch block. In IE it is\n * not safe to call document.activeElement if there is nothing focused.\n *\n * The activeElement will be null only if the document or document body is not\n * yet defined.\n *\n * @param {?DOMDocument} doc Defaults to current document.\n * @return {?DOMElement}\n */\nfunction getActiveElement(doc) /*?DOMElement*/{\n  doc = doc || (typeof document !== 'undefined' ? document : undefined);\n  if (typeof doc === 'undefined') {\n    return null;\n  }\n  try {\n    return doc.activeElement || doc.body;\n  } catch (e) {\n    return doc.body;\n  }\n}\n\nmodule.exports = getActiveElement;\n},{}],100:[function(require,module,exports){\n(function (process){\n'use strict';\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n */\n\n/*eslint-disable fb-www/unsafe-html */\n\nvar ExecutionEnvironment = require('./ExecutionEnvironment');\n\nvar invariant = require('./invariant');\n\n/**\n * Dummy container used to detect which wraps are necessary.\n */\nvar dummyNode = ExecutionEnvironment.canUseDOM ? document.createElement('div') : null;\n\n/**\n * Some browsers cannot use `innerHTML` to render certain elements standalone,\n * so we wrap them, render the wrapped nodes, then extract the desired node.\n *\n * In IE8, certain elements cannot render alone, so wrap all elements ('*').\n */\n\nvar shouldWrap = {};\n\nvar selectWrap = [1, '<select multiple=\"true\">', '</select>'];\nvar tableWrap = [1, '<table>', '</table>'];\nvar trWrap = [3, '<table><tbody><tr>', '</tr></tbody></table>'];\n\nvar svgWrap = [1, '<svg xmlns=\"http://www.w3.org/2000/svg\">', '</svg>'];\n\nvar markupWrap = {\n  '*': [1, '?<div>', '</div>'],\n\n  'area': [1, '<map>', '</map>'],\n  'col': [2, '<table><tbody></tbody><colgroup>', '</colgroup></table>'],\n  'legend': [1, '<fieldset>', '</fieldset>'],\n  'param': [1, '<object>', '</object>'],\n  'tr': [2, '<table><tbody>', '</tbody></table>'],\n\n  'optgroup': selectWrap,\n  'option': selectWrap,\n\n  'caption': tableWrap,\n  'colgroup': tableWrap,\n  'tbody': tableWrap,\n  'tfoot': tableWrap,\n  'thead': tableWrap,\n\n  'td': trWrap,\n  'th': trWrap\n};\n\n// Initialize the SVG elements since we know they'll always need to be wrapped\n// consistently. If they are created inside a <div> they will be initialized in\n// the wrong namespace (and will not display).\nvar svgElements = ['circle', 'clipPath', 'defs', 'ellipse', 'g', 'image', 'line', 'linearGradient', 'mask', 'path', 'pattern', 'polygon', 'polyline', 'radialGradient', 'rect', 'stop', 'text', 'tspan'];\nsvgElements.forEach(function (nodeName) {\n  markupWrap[nodeName] = svgWrap;\n  shouldWrap[nodeName] = true;\n});\n\n/**\n * Gets the markup wrap configuration for the supplied `nodeName`.\n *\n * NOTE: This lazily detects which wraps are necessary for the current browser.\n *\n * @param {string} nodeName Lowercase `nodeName`.\n * @return {?array} Markup wrap configuration, if applicable.\n */\nfunction getMarkupWrap(nodeName) {\n  !!!dummyNode ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Markup wrapping node not initialized') : invariant(false) : void 0;\n  if (!markupWrap.hasOwnProperty(nodeName)) {\n    nodeName = '*';\n  }\n  if (!shouldWrap.hasOwnProperty(nodeName)) {\n    if (nodeName === '*') {\n      dummyNode.innerHTML = '<link />';\n    } else {\n      dummyNode.innerHTML = '<' + nodeName + '></' + nodeName + '>';\n    }\n    shouldWrap[nodeName] = !dummyNode.firstChild;\n  }\n  return shouldWrap[nodeName] ? markupWrap[nodeName] : null;\n}\n\nmodule.exports = getMarkupWrap;\n}).call(this,require('_process'))\n},{\"./ExecutionEnvironment\":90,\"./invariant\":104,\"_process\":112}],101:[function(require,module,exports){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\n'use strict';\n\n/**\n * Gets the scroll position of the supplied element or window.\n *\n * The return values are unbounded, unlike `getScrollPosition`. This means they\n * may be negative or exceed the element boundaries (which is possible using\n * inertial scrolling).\n *\n * @param {DOMWindow|DOMElement} scrollable\n * @return {object} Map with `x` and `y` keys.\n */\n\nfunction getUnboundedScrollPosition(scrollable) {\n  if (scrollable.Window && scrollable instanceof scrollable.Window) {\n    return {\n      x: scrollable.pageXOffset || scrollable.document.documentElement.scrollLeft,\n      y: scrollable.pageYOffset || scrollable.document.documentElement.scrollTop\n    };\n  }\n  return {\n    x: scrollable.scrollLeft,\n    y: scrollable.scrollTop\n  };\n}\n\nmodule.exports = getUnboundedScrollPosition;\n},{}],102:[function(require,module,exports){\n'use strict';\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\nvar _uppercasePattern = /([A-Z])/g;\n\n/**\n * Hyphenates a camelcased string, for example:\n *\n *   > hyphenate('backgroundColor')\n *   < \"background-color\"\n *\n * For CSS style names, use `hyphenateStyleName` instead which works properly\n * with all vendor prefixes, including `ms`.\n *\n * @param {string} string\n * @return {string}\n */\nfunction hyphenate(string) {\n  return string.replace(_uppercasePattern, '-$1').toLowerCase();\n}\n\nmodule.exports = hyphenate;\n},{}],103:[function(require,module,exports){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\n'use strict';\n\nvar hyphenate = require('./hyphenate');\n\nvar msPattern = /^ms-/;\n\n/**\n * Hyphenates a camelcased CSS property name, for example:\n *\n *   > hyphenateStyleName('backgroundColor')\n *   < \"background-color\"\n *   > hyphenateStyleName('MozTransition')\n *   < \"-moz-transition\"\n *   > hyphenateStyleName('msTransition')\n *   < \"-ms-transition\"\n *\n * As Modernizr suggests (http://modernizr.com/docs/#prefixed), an `ms` prefix\n * is converted to `-ms-`.\n *\n * @param {string} string\n * @return {string}\n */\nfunction hyphenateStyleName(string) {\n  return hyphenate(string).replace(msPattern, '-ms-');\n}\n\nmodule.exports = hyphenateStyleName;\n},{\"./hyphenate\":102}],104:[function(require,module,exports){\n(function (process){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n */\n\n'use strict';\n\n/**\n * Use invariant() to assert state which your program assumes to be true.\n *\n * Provide sprintf-style format (only %s is supported) and arguments\n * to provide information about what broke and what you were\n * expecting.\n *\n * The invariant message will be stripped in production, but the invariant\n * will remain to ensure logic does not differ in production.\n */\n\nvar validateFormat = function validateFormat(format) {};\n\nif (process.env.NODE_ENV !== 'production') {\n  validateFormat = function validateFormat(format) {\n    if (format === undefined) {\n      throw new Error('invariant requires an error message argument');\n    }\n  };\n}\n\nfunction invariant(condition, format, a, b, c, d, e, f) {\n  validateFormat(format);\n\n  if (!condition) {\n    var error;\n    if (format === undefined) {\n      error = new Error('Minified exception occurred; use the non-minified dev environment ' + 'for the full error message and additional helpful warnings.');\n    } else {\n      var args = [a, b, c, d, e, f];\n      var argIndex = 0;\n      error = new Error(format.replace(/%s/g, function () {\n        return args[argIndex++];\n      }));\n      error.name = 'Invariant Violation';\n    }\n\n    error.framesToPop = 1; // we don't care about invariant's own frame\n    throw error;\n  }\n}\n\nmodule.exports = invariant;\n}).call(this,require('_process'))\n},{\"_process\":112}],105:[function(require,module,exports){\n'use strict';\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\n/**\n * @param {*} object The object to check.\n * @return {boolean} Whether or not the object is a DOM node.\n */\nfunction isNode(object) {\n  var doc = object ? object.ownerDocument || object : document;\n  var defaultView = doc.defaultView || window;\n  return !!(object && (typeof defaultView.Node === 'function' ? object instanceof defaultView.Node : typeof object === 'object' && typeof object.nodeType === 'number' && typeof object.nodeName === 'string'));\n}\n\nmodule.exports = isNode;\n},{}],106:[function(require,module,exports){\n'use strict';\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\nvar isNode = require('./isNode');\n\n/**\n * @param {*} object The object to check.\n * @return {boolean} Whether or not the object is a DOM text node.\n */\nfunction isTextNode(object) {\n  return isNode(object) && object.nodeType == 3;\n}\n\nmodule.exports = isTextNode;\n},{\"./isNode\":105}],107:[function(require,module,exports){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n * @typechecks static-only\n */\n\n'use strict';\n\n/**\n * Memoizes the return value of a function that accepts one string argument.\n */\n\nfunction memoizeStringOnly(callback) {\n  var cache = {};\n  return function (string) {\n    if (!cache.hasOwnProperty(string)) {\n      cache[string] = callback.call(this, string);\n    }\n    return cache[string];\n  };\n}\n\nmodule.exports = memoizeStringOnly;\n},{}],108:[function(require,module,exports){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\n'use strict';\n\nvar ExecutionEnvironment = require('./ExecutionEnvironment');\n\nvar performance;\n\nif (ExecutionEnvironment.canUseDOM) {\n  performance = window.performance || window.msPerformance || window.webkitPerformance;\n}\n\nmodule.exports = performance || {};\n},{\"./ExecutionEnvironment\":90}],109:[function(require,module,exports){\n'use strict';\n\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n */\n\nvar performance = require('./performance');\n\nvar performanceNow;\n\n/**\n * Detect if we can use `window.performance.now()` and gracefully fallback to\n * `Date.now()` if it doesn't exist. We need to support Firefox < 15 for now\n * because of Facebook's testing infrastructure.\n */\nif (performance.now) {\n  performanceNow = function performanceNow() {\n    return performance.now();\n  };\n} else {\n  performanceNow = function performanceNow() {\n    return Date.now();\n  };\n}\n\nmodule.exports = performanceNow;\n},{\"./performance\":108}],110:[function(require,module,exports){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * @typechecks\n * \n */\n\n/*eslint-disable no-self-compare */\n\n'use strict';\n\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\n\n/**\n * inlined Object.is polyfill to avoid requiring consumers ship their own\n * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is\n */\nfunction is(x, y) {\n  // SameValue algorithm\n  if (x === y) {\n    // Steps 1-5, 7-10\n    // Steps 6.b-6.e: +0 != -0\n    // Added the nonzero y check to make Flow happy, but it is redundant\n    return x !== 0 || y !== 0 || 1 / x === 1 / y;\n  } else {\n    // Step 6.a: NaN == NaN\n    return x !== x && y !== y;\n  }\n}\n\n/**\n * Performs equality by iterating through keys on an object and returning false\n * when any key has values which are not strictly equal between the arguments.\n * Returns true when the values of all keys are strictly equal.\n */\nfunction shallowEqual(objA, objB) {\n  if (is(objA, objB)) {\n    return true;\n  }\n\n  if (typeof objA !== 'object' || objA === null || typeof objB !== 'object' || objB === null) {\n    return false;\n  }\n\n  var keysA = Object.keys(objA);\n  var keysB = Object.keys(objB);\n\n  if (keysA.length !== keysB.length) {\n    return false;\n  }\n\n  // Test for A's keys different from B.\n  for (var i = 0; i < keysA.length; i++) {\n    if (!hasOwnProperty.call(objB, keysA[i]) || !is(objA[keysA[i]], objB[keysA[i]])) {\n      return false;\n    }\n  }\n\n  return true;\n}\n\nmodule.exports = shallowEqual;\n},{}],111:[function(require,module,exports){\n(function (process){\n/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n */\n\n'use strict';\n\nvar emptyFunction = require('./emptyFunction');\n\n/**\n * Similar to invariant but only logs a warning if the condition is not met.\n * This can be used to log issues in development environments in critical\n * paths. Removing the logging code for production environments will keep the\n * same logic and follow the same code paths.\n */\n\nvar warning = emptyFunction;\n\nif (process.env.NODE_ENV !== 'production') {\n  var printWarning = function printWarning(format) {\n    for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n      args[_key - 1] = arguments[_key];\n    }\n\n    var argIndex = 0;\n    var message = 'Warning: ' + format.replace(/%s/g, function () {\n      return args[argIndex++];\n    });\n    if (typeof console !== 'undefined') {\n      console.error(message);\n    }\n    try {\n      // --- Welcome to debugging React ---\n      // This error was thrown as a convenience so that you can use this stack\n      // to find the callsite that caused this warning to fire.\n      throw new Error(message);\n    } catch (x) {}\n  };\n\n  warning = function warning(condition, format) {\n    if (format === undefined) {\n      throw new Error('`warning(condition, format, ...args)` requires a warning ' + 'message argument');\n    }\n\n    if (format.indexOf('Failed Composite propType: ') === 0) {\n      return; // Ignore CompositeComponent proptype check.\n    }\n\n    if (!condition) {\n      for (var _len2 = arguments.length, args = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {\n        args[_key2 - 2] = arguments[_key2];\n      }\n\n      printWarning.apply(undefined, [format].concat(args));\n    }\n  };\n}\n\nmodule.exports = warning;\n}).call(this,require('_process'))\n},{\"./emptyFunction\":96,\"_process\":112}],112:[function(require,module,exports){\n// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things.  But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals.  It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n    throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n    throw new Error('clearTimeout has not been defined');\n}\n(function () {\n    try {\n        if (typeof setTimeout === 'function') {\n            cachedSetTimeout = setTimeout;\n        } else {\n            cachedSetTimeout = defaultSetTimout;\n        }\n    } catch (e) {\n        cachedSetTimeout = defaultSetTimout;\n    }\n    try {\n        if (typeof clearTimeout === 'function') {\n            cachedClearTimeout = clearTimeout;\n        } else {\n            cachedClearTimeout = defaultClearTimeout;\n        }\n    } catch (e) {\n        cachedClearTimeout = defaultClearTimeout;\n    }\n} ())\nfunction runTimeout(fun) {\n    if (cachedSetTimeout === setTimeout) {\n        //normal enviroments in sane situations\n        return setTimeout(fun, 0);\n    }\n    // if setTimeout wasn't available but was latter defined\n    if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n        cachedSetTimeout = setTimeout;\n        return setTimeout(fun, 0);\n    }\n    try {\n        // when when somebody has screwed with setTimeout but no I.E. maddness\n        return cachedSetTimeout(fun, 0);\n    } catch(e){\n        try {\n            // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n            return cachedSetTimeout.call(null, fun, 0);\n        } catch(e){\n            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n            return cachedSetTimeout.call(this, fun, 0);\n        }\n    }\n\n\n}\nfunction runClearTimeout(marker) {\n    if (cachedClearTimeout === clearTimeout) {\n        //normal enviroments in sane situations\n        return clearTimeout(marker);\n    }\n    // if clearTimeout wasn't available but was latter defined\n    if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n        cachedClearTimeout = clearTimeout;\n        return clearTimeout(marker);\n    }\n    try {\n        // when when somebody has screwed with setTimeout but no I.E. maddness\n        return cachedClearTimeout(marker);\n    } catch (e){\n        try {\n            // When we are in I.E. but the script has been evaled so I.E. doesn't  trust the global object when called normally\n            return cachedClearTimeout.call(null, marker);\n        } catch (e){\n            // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n            // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n            return cachedClearTimeout.call(this, marker);\n        }\n    }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n    if (!draining || !currentQueue) {\n        return;\n    }\n    draining = false;\n    if (currentQueue.length) {\n        queue = currentQueue.concat(queue);\n    } else {\n        queueIndex = -1;\n    }\n    if (queue.length) {\n        drainQueue();\n    }\n}\n\nfunction drainQueue() {\n    if (draining) {\n        return;\n    }\n    var timeout = runTimeout(cleanUpNextTick);\n    draining = true;\n\n    var len = queue.length;\n    while(len) {\n        currentQueue = queue;\n        queue = [];\n        while (++queueIndex < len) {\n            if (currentQueue) {\n                currentQueue[queueIndex].run();\n            }\n        }\n        queueIndex = -1;\n        len = queue.length;\n    }\n    currentQueue = null;\n    draining = false;\n    runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n    var args = new Array(arguments.length - 1);\n    if (arguments.length > 1) {\n        for (var i = 1; i < arguments.length; i++) {\n            args[i - 1] = arguments[i];\n        }\n    }\n    queue.push(new Item(fun, args));\n    if (queue.length === 1 && !draining) {\n        runTimeout(drainQueue);\n    }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n    this.fun = fun;\n    this.array = array;\n}\nItem.prototype.run = function () {\n    this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n    throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n    throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n\n},{}],113:[function(require,module,exports){\nif (window.NodeList && !NodeList.prototype.forEach) {\r\n    NodeList.prototype.forEach = function (callback, thisArg) {\r\n        thisArg = thisArg || window;\r\n        for (var i = 0; i < this.length; i++) {\r\n            callback.call(thisArg, this[i], i, this);\r\n        }\r\n    };\r\n}\r\n\n},{}],114:[function(require,module,exports){\n/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc');  // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n\n},{}],115:[function(require,module,exports){\n(function (process){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nif (process.env.NODE_ENV !== 'production') {\n  var invariant = require('fbjs/lib/invariant');\n  var warning = require('fbjs/lib/warning');\n  var ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n  var loggedTypeFailures = {};\n}\n\n/**\n * Assert that the values match with the type specs.\n * Error messages are memorized and will only be shown once.\n *\n * @param {object} typeSpecs Map of name to a ReactPropType\n * @param {object} values Runtime values that need to be type-checked\n * @param {string} location e.g. \"prop\", \"context\", \"child context\"\n * @param {string} componentName Name of the component for error messages.\n * @param {?Function} getStack Returns the component stack.\n * @private\n */\nfunction checkPropTypes(typeSpecs, values, location, componentName, getStack) {\n  if (process.env.NODE_ENV !== 'production') {\n    for (var typeSpecName in typeSpecs) {\n      if (typeSpecs.hasOwnProperty(typeSpecName)) {\n        var error;\n        // Prop type validation may throw. In case they do, we don't want to\n        // fail the render phase where it didn't fail before. So we log it.\n        // After these have been cleaned up, we'll let them throw.\n        try {\n          // This is intentionally an invariant that gets caught. It's the same\n          // behavior as without this statement except with a better message.\n          invariant(typeof typeSpecs[typeSpecName] === 'function', '%s: %s type `%s` is invalid; it must be a function, usually from ' + 'the `prop-types` package, but received `%s`.', componentName || 'React class', location, typeSpecName, typeof typeSpecs[typeSpecName]);\n          error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);\n        } catch (ex) {\n          error = ex;\n        }\n        warning(!error || error instanceof Error, '%s: type specification of %s `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error);\n        if (error instanceof Error && !(error.message in loggedTypeFailures)) {\n          // Only monitor this failure once because there tends to be a lot of the\n          // same error.\n          loggedTypeFailures[error.message] = true;\n\n          var stack = getStack ? getStack() : '';\n\n          warning(false, 'Failed %s type: %s%s', location, error.message, stack != null ? stack : '');\n        }\n      }\n    }\n  }\n}\n\nmodule.exports = checkPropTypes;\n\n}).call(this,require('_process'))\n},{\"./lib/ReactPropTypesSecret\":118,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111}],116:[function(require,module,exports){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\n// React 15.5 references this module, and assumes PropTypes are still callable in production.\n// Therefore we re-export development-only version with all the PropTypes checks here.\n// However if one is migrating to the `prop-types` npm library, they will go through the\n// `index.js` entry point, and it will branch depending on the environment.\nvar factory = require('./factoryWithTypeCheckers');\nmodule.exports = function(isValidElement) {\n  // It is still allowed in 15.5.\n  var throwOnDirectAccess = false;\n  return factory(isValidElement, throwOnDirectAccess);\n};\n\n},{\"./factoryWithTypeCheckers\":117}],117:[function(require,module,exports){\n(function (process){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar emptyFunction = require('fbjs/lib/emptyFunction');\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\nvar assign = require('object-assign');\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\nvar checkPropTypes = require('./checkPropTypes');\n\nmodule.exports = function(isValidElement, throwOnDirectAccess) {\n  /* global Symbol */\n  var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;\n  var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.\n\n  /**\n   * Returns the iterator method function contained on the iterable object.\n   *\n   * Be sure to invoke the function with the iterable as context:\n   *\n   *     var iteratorFn = getIteratorFn(myIterable);\n   *     if (iteratorFn) {\n   *       var iterator = iteratorFn.call(myIterable);\n   *       ...\n   *     }\n   *\n   * @param {?object} maybeIterable\n   * @return {?function}\n   */\n  function getIteratorFn(maybeIterable) {\n    var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);\n    if (typeof iteratorFn === 'function') {\n      return iteratorFn;\n    }\n  }\n\n  /**\n   * Collection of methods that allow declaration and validation of props that are\n   * supplied to React components. Example usage:\n   *\n   *   var Props = require('ReactPropTypes');\n   *   var MyArticle = React.createClass({\n   *     propTypes: {\n   *       // An optional string prop named \"description\".\n   *       description: Props.string,\n   *\n   *       // A required enum prop named \"category\".\n   *       category: Props.oneOf(['News','Photos']).isRequired,\n   *\n   *       // A prop named \"dialog\" that requires an instance of Dialog.\n   *       dialog: Props.instanceOf(Dialog).isRequired\n   *     },\n   *     render: function() { ... }\n   *   });\n   *\n   * A more formal specification of how these methods are used:\n   *\n   *   type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...)\n   *   decl := ReactPropTypes.{type}(.isRequired)?\n   *\n   * Each and every declaration produces a function with the same signature. This\n   * allows the creation of custom validation functions. For example:\n   *\n   *  var MyLink = React.createClass({\n   *    propTypes: {\n   *      // An optional string or URI prop named \"href\".\n   *      href: function(props, propName, componentName) {\n   *        var propValue = props[propName];\n   *        if (propValue != null && typeof propValue !== 'string' &&\n   *            !(propValue instanceof URI)) {\n   *          return new Error(\n   *            'Expected a string or an URI for ' + propName + ' in ' +\n   *            componentName\n   *          );\n   *        }\n   *      }\n   *    },\n   *    render: function() {...}\n   *  });\n   *\n   * @internal\n   */\n\n  var ANONYMOUS = '<<anonymous>>';\n\n  // Important!\n  // Keep this list in sync with production version in `./factoryWithThrowingShims.js`.\n  var ReactPropTypes = {\n    array: createPrimitiveTypeChecker('array'),\n    bool: createPrimitiveTypeChecker('boolean'),\n    func: createPrimitiveTypeChecker('function'),\n    number: createPrimitiveTypeChecker('number'),\n    object: createPrimitiveTypeChecker('object'),\n    string: createPrimitiveTypeChecker('string'),\n    symbol: createPrimitiveTypeChecker('symbol'),\n\n    any: createAnyTypeChecker(),\n    arrayOf: createArrayOfTypeChecker,\n    element: createElementTypeChecker(),\n    instanceOf: createInstanceTypeChecker,\n    node: createNodeChecker(),\n    objectOf: createObjectOfTypeChecker,\n    oneOf: createEnumTypeChecker,\n    oneOfType: createUnionTypeChecker,\n    shape: createShapeTypeChecker,\n    exact: createStrictShapeTypeChecker,\n  };\n\n  /**\n   * inlined Object.is polyfill to avoid requiring consumers ship their own\n   * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is\n   */\n  /*eslint-disable no-self-compare*/\n  function is(x, y) {\n    // SameValue algorithm\n    if (x === y) {\n      // Steps 1-5, 7-10\n      // Steps 6.b-6.e: +0 != -0\n      return x !== 0 || 1 / x === 1 / y;\n    } else {\n      // Step 6.a: NaN == NaN\n      return x !== x && y !== y;\n    }\n  }\n  /*eslint-enable no-self-compare*/\n\n  /**\n   * We use an Error-like object for backward compatibility as people may call\n   * PropTypes directly and inspect their output. However, we don't use real\n   * Errors anymore. We don't inspect their stack anyway, and creating them\n   * is prohibitively expensive if they are created too often, such as what\n   * happens in oneOfType() for any type before the one that matched.\n   */\n  function PropTypeError(message) {\n    this.message = message;\n    this.stack = '';\n  }\n  // Make `instanceof Error` still work for returned errors.\n  PropTypeError.prototype = Error.prototype;\n\n  function createChainableTypeChecker(validate) {\n    if (process.env.NODE_ENV !== 'production') {\n      var manualPropTypeCallCache = {};\n      var manualPropTypeWarningCount = 0;\n    }\n    function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {\n      componentName = componentName || ANONYMOUS;\n      propFullName = propFullName || propName;\n\n      if (secret !== ReactPropTypesSecret) {\n        if (throwOnDirectAccess) {\n          // New behavior only for users of `prop-types` package\n          invariant(\n            false,\n            'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n            'Use `PropTypes.checkPropTypes()` to call them. ' +\n            'Read more at http://fb.me/use-check-prop-types'\n          );\n        } else if (process.env.NODE_ENV !== 'production' && typeof console !== 'undefined') {\n          // Old behavior for people using React.PropTypes\n          var cacheKey = componentName + ':' + propName;\n          if (\n            !manualPropTypeCallCache[cacheKey] &&\n            // Avoid spamming the console because they are often not actionable except for lib authors\n            manualPropTypeWarningCount < 3\n          ) {\n            warning(\n              false,\n              'You are manually calling a React.PropTypes validation ' +\n              'function for the `%s` prop on `%s`. This is deprecated ' +\n              'and will throw in the standalone `prop-types` package. ' +\n              'You may be seeing this warning due to a third-party PropTypes ' +\n              'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.',\n              propFullName,\n              componentName\n            );\n            manualPropTypeCallCache[cacheKey] = true;\n            manualPropTypeWarningCount++;\n          }\n        }\n      }\n      if (props[propName] == null) {\n        if (isRequired) {\n          if (props[propName] === null) {\n            return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.'));\n          }\n          return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.'));\n        }\n        return null;\n      } else {\n        return validate(props, propName, componentName, location, propFullName);\n      }\n    }\n\n    var chainedCheckType = checkType.bind(null, false);\n    chainedCheckType.isRequired = checkType.bind(null, true);\n\n    return chainedCheckType;\n  }\n\n  function createPrimitiveTypeChecker(expectedType) {\n    function validate(props, propName, componentName, location, propFullName, secret) {\n      var propValue = props[propName];\n      var propType = getPropType(propValue);\n      if (propType !== expectedType) {\n        // `propValue` being instance of, say, date/regexp, pass the 'object'\n        // check, but we can offer a more precise error message here rather than\n        // 'of type `object`'.\n        var preciseType = getPreciseType(propValue);\n\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.'));\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createAnyTypeChecker() {\n    return createChainableTypeChecker(emptyFunction.thatReturnsNull);\n  }\n\n  function createArrayOfTypeChecker(typeChecker) {\n    function validate(props, propName, componentName, location, propFullName) {\n      if (typeof typeChecker !== 'function') {\n        return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.');\n      }\n      var propValue = props[propName];\n      if (!Array.isArray(propValue)) {\n        var propType = getPropType(propValue);\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));\n      }\n      for (var i = 0; i < propValue.length; i++) {\n        var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret);\n        if (error instanceof Error) {\n          return error;\n        }\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createElementTypeChecker() {\n    function validate(props, propName, componentName, location, propFullName) {\n      var propValue = props[propName];\n      if (!isValidElement(propValue)) {\n        var propType = getPropType(propValue);\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createInstanceTypeChecker(expectedClass) {\n    function validate(props, propName, componentName, location, propFullName) {\n      if (!(props[propName] instanceof expectedClass)) {\n        var expectedClassName = expectedClass.name || ANONYMOUS;\n        var actualClassName = getClassName(props[propName]);\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.'));\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createEnumTypeChecker(expectedValues) {\n    if (!Array.isArray(expectedValues)) {\n      process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid argument supplied to oneOf, expected an instance of array.') : void 0;\n      return emptyFunction.thatReturnsNull;\n    }\n\n    function validate(props, propName, componentName, location, propFullName) {\n      var propValue = props[propName];\n      for (var i = 0; i < expectedValues.length; i++) {\n        if (is(propValue, expectedValues[i])) {\n          return null;\n        }\n      }\n\n      var valuesString = JSON.stringify(expectedValues);\n      return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + propValue + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.'));\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createObjectOfTypeChecker(typeChecker) {\n    function validate(props, propName, componentName, location, propFullName) {\n      if (typeof typeChecker !== 'function') {\n        return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.');\n      }\n      var propValue = props[propName];\n      var propType = getPropType(propValue);\n      if (propType !== 'object') {\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.'));\n      }\n      for (var key in propValue) {\n        if (propValue.hasOwnProperty(key)) {\n          var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n          if (error instanceof Error) {\n            return error;\n          }\n        }\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createUnionTypeChecker(arrayOfTypeCheckers) {\n    if (!Array.isArray(arrayOfTypeCheckers)) {\n      process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;\n      return emptyFunction.thatReturnsNull;\n    }\n\n    for (var i = 0; i < arrayOfTypeCheckers.length; i++) {\n      var checker = arrayOfTypeCheckers[i];\n      if (typeof checker !== 'function') {\n        warning(\n          false,\n          'Invalid argument supplied to oneOfType. Expected an array of check functions, but ' +\n          'received %s at index %s.',\n          getPostfixForTypeWarning(checker),\n          i\n        );\n        return emptyFunction.thatReturnsNull;\n      }\n    }\n\n    function validate(props, propName, componentName, location, propFullName) {\n      for (var i = 0; i < arrayOfTypeCheckers.length; i++) {\n        var checker = arrayOfTypeCheckers[i];\n        if (checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret) == null) {\n          return null;\n        }\n      }\n\n      return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`.'));\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createNodeChecker() {\n    function validate(props, propName, componentName, location, propFullName) {\n      if (!isNode(props[propName])) {\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.'));\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createShapeTypeChecker(shapeTypes) {\n    function validate(props, propName, componentName, location, propFullName) {\n      var propValue = props[propName];\n      var propType = getPropType(propValue);\n      if (propType !== 'object') {\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));\n      }\n      for (var key in shapeTypes) {\n        var checker = shapeTypes[key];\n        if (!checker) {\n          continue;\n        }\n        var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n        if (error) {\n          return error;\n        }\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createStrictShapeTypeChecker(shapeTypes) {\n    function validate(props, propName, componentName, location, propFullName) {\n      var propValue = props[propName];\n      var propType = getPropType(propValue);\n      if (propType !== 'object') {\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));\n      }\n      // We need to check all keys in case some are required but missing from\n      // props.\n      var allKeys = assign({}, props[propName], shapeTypes);\n      for (var key in allKeys) {\n        var checker = shapeTypes[key];\n        if (!checker) {\n          return new PropTypeError(\n            'Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' +\n            '\\nBad object: ' + JSON.stringify(props[propName], null, '  ') +\n            '\\nValid keys: ' +  JSON.stringify(Object.keys(shapeTypes), null, '  ')\n          );\n        }\n        var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n        if (error) {\n          return error;\n        }\n      }\n      return null;\n    }\n\n    return createChainableTypeChecker(validate);\n  }\n\n  function isNode(propValue) {\n    switch (typeof propValue) {\n      case 'number':\n      case 'string':\n      case 'undefined':\n        return true;\n      case 'boolean':\n        return !propValue;\n      case 'object':\n        if (Array.isArray(propValue)) {\n          return propValue.every(isNode);\n        }\n        if (propValue === null || isValidElement(propValue)) {\n          return true;\n        }\n\n        var iteratorFn = getIteratorFn(propValue);\n        if (iteratorFn) {\n          var iterator = iteratorFn.call(propValue);\n          var step;\n          if (iteratorFn !== propValue.entries) {\n            while (!(step = iterator.next()).done) {\n              if (!isNode(step.value)) {\n                return false;\n              }\n            }\n          } else {\n            // Iterator will provide entry [k,v] tuples rather than values.\n            while (!(step = iterator.next()).done) {\n              var entry = step.value;\n              if (entry) {\n                if (!isNode(entry[1])) {\n                  return false;\n                }\n              }\n            }\n          }\n        } else {\n          return false;\n        }\n\n        return true;\n      default:\n        return false;\n    }\n  }\n\n  function isSymbol(propType, propValue) {\n    // Native Symbol.\n    if (propType === 'symbol') {\n      return true;\n    }\n\n    // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol'\n    if (propValue['@@toStringTag'] === 'Symbol') {\n      return true;\n    }\n\n    // Fallback for non-spec compliant Symbols which are polyfilled.\n    if (typeof Symbol === 'function' && propValue instanceof Symbol) {\n      return true;\n    }\n\n    return false;\n  }\n\n  // Equivalent of `typeof` but with special handling for array and regexp.\n  function getPropType(propValue) {\n    var propType = typeof propValue;\n    if (Array.isArray(propValue)) {\n      return 'array';\n    }\n    if (propValue instanceof RegExp) {\n      // Old webkits (at least until Android 4.0) return 'function' rather than\n      // 'object' for typeof a RegExp. We'll normalize this here so that /bla/\n      // passes PropTypes.object.\n      return 'object';\n    }\n    if (isSymbol(propType, propValue)) {\n      return 'symbol';\n    }\n    return propType;\n  }\n\n  // This handles more types than `getPropType`. Only used for error messages.\n  // See `createPrimitiveTypeChecker`.\n  function getPreciseType(propValue) {\n    if (typeof propValue === 'undefined' || propValue === null) {\n      return '' + propValue;\n    }\n    var propType = getPropType(propValue);\n    if (propType === 'object') {\n      if (propValue instanceof Date) {\n        return 'date';\n      } else if (propValue instanceof RegExp) {\n        return 'regexp';\n      }\n    }\n    return propType;\n  }\n\n  // Returns a string that is postfixed to a warning about an invalid type.\n  // For example, \"undefined\" or \"of type array\"\n  function getPostfixForTypeWarning(value) {\n    var type = getPreciseType(value);\n    switch (type) {\n      case 'array':\n      case 'object':\n        return 'an ' + type;\n      case 'boolean':\n      case 'date':\n      case 'regexp':\n        return 'a ' + type;\n      default:\n        return type;\n    }\n  }\n\n  // Returns class name of the object, if any.\n  function getClassName(propValue) {\n    if (!propValue.constructor || !propValue.constructor.name) {\n      return ANONYMOUS;\n    }\n    return propValue.constructor.name;\n  }\n\n  ReactPropTypes.checkPropTypes = checkPropTypes;\n  ReactPropTypes.PropTypes = ReactPropTypes;\n\n  return ReactPropTypes;\n};\n\n}).call(this,require('_process'))\n},{\"./checkPropTypes\":115,\"./lib/ReactPropTypesSecret\":118,\"_process\":112,\"fbjs/lib/emptyFunction\":96,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111,\"object-assign\":114}],118:[function(require,module,exports){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n\n},{}],119:[function(require,module,exports){\n'use strict';\n\nmodule.exports = require('./lib/ReactDOM');\n\n},{\"./lib/ReactDOM\":149}],120:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ARIADOMPropertyConfig = {\n  Properties: {\n    // Global States and Properties\n    'aria-current': 0, // state\n    'aria-details': 0,\n    'aria-disabled': 0, // state\n    'aria-hidden': 0, // state\n    'aria-invalid': 0, // state\n    'aria-keyshortcuts': 0,\n    'aria-label': 0,\n    'aria-roledescription': 0,\n    // Widget Attributes\n    'aria-autocomplete': 0,\n    'aria-checked': 0,\n    'aria-expanded': 0,\n    'aria-haspopup': 0,\n    'aria-level': 0,\n    'aria-modal': 0,\n    'aria-multiline': 0,\n    'aria-multiselectable': 0,\n    'aria-orientation': 0,\n    'aria-placeholder': 0,\n    'aria-pressed': 0,\n    'aria-readonly': 0,\n    'aria-required': 0,\n    'aria-selected': 0,\n    'aria-sort': 0,\n    'aria-valuemax': 0,\n    'aria-valuemin': 0,\n    'aria-valuenow': 0,\n    'aria-valuetext': 0,\n    // Live Region Attributes\n    'aria-atomic': 0,\n    'aria-busy': 0,\n    'aria-live': 0,\n    'aria-relevant': 0,\n    // Drag-and-Drop Attributes\n    'aria-dropeffect': 0,\n    'aria-grabbed': 0,\n    // Relationship Attributes\n    'aria-activedescendant': 0,\n    'aria-colcount': 0,\n    'aria-colindex': 0,\n    'aria-colspan': 0,\n    'aria-controls': 0,\n    'aria-describedby': 0,\n    'aria-errormessage': 0,\n    'aria-flowto': 0,\n    'aria-labelledby': 0,\n    'aria-owns': 0,\n    'aria-posinset': 0,\n    'aria-rowcount': 0,\n    'aria-rowindex': 0,\n    'aria-rowspan': 0,\n    'aria-setsize': 0\n  },\n  DOMAttributeNames: {},\n  DOMPropertyNames: {}\n};\n\nmodule.exports = ARIADOMPropertyConfig;\n},{}],121:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\n\nvar focusNode = require('fbjs/lib/focusNode');\n\nvar AutoFocusUtils = {\n  focusDOMComponent: function () {\n    focusNode(ReactDOMComponentTree.getNodeFromInstance(this));\n  }\n};\n\nmodule.exports = AutoFocusUtils;\n},{\"./ReactDOMComponentTree\":152,\"fbjs/lib/focusNode\":98}],122:[function(require,module,exports){\n/**\n * Copyright 2013-present Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar EventPropagators = require('./EventPropagators');\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\nvar FallbackCompositionState = require('./FallbackCompositionState');\nvar SyntheticCompositionEvent = require('./SyntheticCompositionEvent');\nvar SyntheticInputEvent = require('./SyntheticInputEvent');\n\nvar END_KEYCODES = [9, 13, 27, 32]; // Tab, Return, Esc, Space\nvar START_KEYCODE = 229;\n\nvar canUseCompositionEvent = ExecutionEnvironment.canUseDOM && 'CompositionEvent' in window;\n\nvar documentMode = null;\nif (ExecutionEnvironment.canUseDOM && 'documentMode' in document) {\n  documentMode = document.documentMode;\n}\n\n// Webkit offers a very useful `textInput` event that can be used to\n// directly represent `beforeInput`. The IE `textinput` event is not as\n// useful, so we don't use it.\nvar canUseTextInputEvent = ExecutionEnvironment.canUseDOM && 'TextEvent' in window && !documentMode && !isPresto();\n\n// In IE9+, we have access to composition events, but the data supplied\n// by the native compositionend event may be incorrect. Japanese ideographic\n// spaces, for instance (\\u3000) are not recorded correctly.\nvar useFallbackCompositionData = ExecutionEnvironment.canUseDOM && (!canUseCompositionEvent || documentMode && documentMode > 8 && documentMode <= 11);\n\n/**\n * Opera <= 12 includes TextEvent in window, but does not fire\n * text input events. Rely on keypress instead.\n */\nfunction isPresto() {\n  var opera = window.opera;\n  return typeof opera === 'object' && typeof opera.version === 'function' && parseInt(opera.version(), 10) <= 12;\n}\n\nvar SPACEBAR_CODE = 32;\nvar SPACEBAR_CHAR = String.fromCharCode(SPACEBAR_CODE);\n\n// Events and their corresponding property names.\nvar eventTypes = {\n  beforeInput: {\n    phasedRegistrationNames: {\n      bubbled: 'onBeforeInput',\n      captured: 'onBeforeInputCapture'\n    },\n    dependencies: ['topCompositionEnd', 'topKeyPress', 'topTextInput', 'topPaste']\n  },\n  compositionEnd: {\n    phasedRegistrationNames: {\n      bubbled: 'onCompositionEnd',\n      captured: 'onCompositionEndCapture'\n    },\n    dependencies: ['topBlur', 'topCompositionEnd', 'topKeyDown', 'topKeyPress', 'topKeyUp', 'topMouseDown']\n  },\n  compositionStart: {\n    phasedRegistrationNames: {\n      bubbled: 'onCompositionStart',\n      captured: 'onCompositionStartCapture'\n    },\n    dependencies: ['topBlur', 'topCompositionStart', 'topKeyDown', 'topKeyPress', 'topKeyUp', 'topMouseDown']\n  },\n  compositionUpdate: {\n    phasedRegistrationNames: {\n      bubbled: 'onCompositionUpdate',\n      captured: 'onCompositionUpdateCapture'\n    },\n    dependencies: ['topBlur', 'topCompositionUpdate', 'topKeyDown', 'topKeyPress', 'topKeyUp', 'topMouseDown']\n  }\n};\n\n// Track whether we've ever handled a keypress on the space key.\nvar hasSpaceKeypress = false;\n\n/**\n * Return whether a native keypress event is assumed to be a command.\n * This is required because Firefox fires `keypress` events for key commands\n * (cut, copy, select-all, etc.) even though no character is inserted.\n */\nfunction isKeypressCommand(nativeEvent) {\n  return (nativeEvent.ctrlKey || nativeEvent.altKey || nativeEvent.metaKey) &&\n  // ctrlKey && altKey is equivalent to AltGr, and is not a command.\n  !(nativeEvent.ctrlKey && nativeEvent.altKey);\n}\n\n/**\n * Translate native top level events into event types.\n *\n * @param {string} topLevelType\n * @return {object}\n */\nfunction getCompositionEventType(topLevelType) {\n  switch (topLevelType) {\n    case 'topCompositionStart':\n      return eventTypes.compositionStart;\n    case 'topCompositionEnd':\n      return eventTypes.compositionEnd;\n    case 'topCompositionUpdate':\n      return eventTypes.compositionUpdate;\n  }\n}\n\n/**\n * Does our fallback best-guess model think this event signifies that\n * composition has begun?\n *\n * @param {string} topLevelType\n * @param {object} nativeEvent\n * @return {boolean}\n */\nfunction isFallbackCompositionStart(topLevelType, nativeEvent) {\n  return topLevelType === 'topKeyDown' && nativeEvent.keyCode === START_KEYCODE;\n}\n\n/**\n * Does our fallback mode think that this event is the end of composition?\n *\n * @param {string} topLevelType\n * @param {object} nativeEvent\n * @return {boolean}\n */\nfunction isFallbackCompositionEnd(topLevelType, nativeEvent) {\n  switch (topLevelType) {\n    case 'topKeyUp':\n      // Command keys insert or clear IME input.\n      return END_KEYCODES.indexOf(nativeEvent.keyCode) !== -1;\n    case 'topKeyDown':\n      // Expect IME keyCode on each keydown. If we get any other\n      // code we must have exited earlier.\n      return nativeEvent.keyCode !== START_KEYCODE;\n    case 'topKeyPress':\n    case 'topMouseDown':\n    case 'topBlur':\n      // Events are not possible without cancelling IME.\n      return true;\n    default:\n      return false;\n  }\n}\n\n/**\n * Google Input Tools provides composition data via a CustomEvent,\n * with the `data` property populated in the `detail` object. If this\n * is available on the event object, use it. If not, this is a plain\n * composition event and we have nothing special to extract.\n *\n * @param {object} nativeEvent\n * @return {?string}\n */\nfunction getDataFromCustomEvent(nativeEvent) {\n  var detail = nativeEvent.detail;\n  if (typeof detail === 'object' && 'data' in detail) {\n    return detail.data;\n  }\n  return null;\n}\n\n// Track the current IME composition fallback object, if any.\nvar currentComposition = null;\n\n/**\n * @return {?object} A SyntheticCompositionEvent.\n */\nfunction extractCompositionEvent(topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n  var eventType;\n  var fallbackData;\n\n  if (canUseCompositionEvent) {\n    eventType = getCompositionEventType(topLevelType);\n  } else if (!currentComposition) {\n    if (isFallbackCompositionStart(topLevelType, nativeEvent)) {\n      eventType = eventTypes.compositionStart;\n    }\n  } else if (isFallbackCompositionEnd(topLevelType, nativeEvent)) {\n    eventType = eventTypes.compositionEnd;\n  }\n\n  if (!eventType) {\n    return null;\n  }\n\n  if (useFallbackCompositionData) {\n    // The current composition is stored statically and must not be\n    // overwritten while composition continues.\n    if (!currentComposition && eventType === eventTypes.compositionStart) {\n      currentComposition = FallbackCompositionState.getPooled(nativeEventTarget);\n    } else if (eventType === eventTypes.compositionEnd) {\n      if (currentComposition) {\n        fallbackData = currentComposition.getData();\n      }\n    }\n  }\n\n  var event = SyntheticCompositionEvent.getPooled(eventType, targetInst, nativeEvent, nativeEventTarget);\n\n  if (fallbackData) {\n    // Inject data generated from fallback path into the synthetic event.\n    // This matches the property of native CompositionEventInterface.\n    event.data = fallbackData;\n  } else {\n    var customData = getDataFromCustomEvent(nativeEvent);\n    if (customData !== null) {\n      event.data = customData;\n    }\n  }\n\n  EventPropagators.accumulateTwoPhaseDispatches(event);\n  return event;\n}\n\n/**\n * @param {string} topLevelType Record from `EventConstants`.\n * @param {object} nativeEvent Native browser event.\n * @return {?string} The string corresponding to this `beforeInput` event.\n */\nfunction getNativeBeforeInputChars(topLevelType, nativeEvent) {\n  switch (topLevelType) {\n    case 'topCompositionEnd':\n      return getDataFromCustomEvent(nativeEvent);\n    case 'topKeyPress':\n      /**\n       * If native `textInput` events are available, our goal is to make\n       * use of them. However, there is a special case: the spacebar key.\n       * In Webkit, preventing default on a spacebar `textInput` event\n       * cancels character insertion, but it *also* causes the browser\n       * to fall back to its default spacebar behavior of scrolling the\n       * page.\n       *\n       * Tracking at:\n       * https://code.google.com/p/chromium/issues/detail?id=355103\n       *\n       * To avoid this issue, use the keypress event as if no `textInput`\n       * event is available.\n       */\n      var which = nativeEvent.which;\n      if (which !== SPACEBAR_CODE) {\n        return null;\n      }\n\n      hasSpaceKeypress = true;\n      return SPACEBAR_CHAR;\n\n    case 'topTextInput':\n      // Record the characters to be added to the DOM.\n      var chars = nativeEvent.data;\n\n      // If it's a spacebar character, assume that we have already handled\n      // it at the keypress level and bail immediately. Android Chrome\n      // doesn't give us keycodes, so we need to blacklist it.\n      if (chars === SPACEBAR_CHAR && hasSpaceKeypress) {\n        return null;\n      }\n\n      return chars;\n\n    default:\n      // For other native event types, do nothing.\n      return null;\n  }\n}\n\n/**\n * For browsers that do not provide the `textInput` event, extract the\n * appropriate string to use for SyntheticInputEvent.\n *\n * @param {string} topLevelType Record from `EventConstants`.\n * @param {object} nativeEvent Native browser event.\n * @return {?string} The fallback string for this `beforeInput` event.\n */\nfunction getFallbackBeforeInputChars(topLevelType, nativeEvent) {\n  // If we are currently composing (IME) and using a fallback to do so,\n  // try to extract the composed characters from the fallback object.\n  // If composition event is available, we extract a string only at\n  // compositionevent, otherwise extract it at fallback events.\n  if (currentComposition) {\n    if (topLevelType === 'topCompositionEnd' || !canUseCompositionEvent && isFallbackCompositionEnd(topLevelType, nativeEvent)) {\n      var chars = currentComposition.getData();\n      FallbackCompositionState.release(currentComposition);\n      currentComposition = null;\n      return chars;\n    }\n    return null;\n  }\n\n  switch (topLevelType) {\n    case 'topPaste':\n      // If a paste event occurs after a keypress, throw out the input\n      // chars. Paste events should not lead to BeforeInput events.\n      return null;\n    case 'topKeyPress':\n      /**\n       * As of v27, Firefox may fire keypress events even when no character\n       * will be inserted. A few possibilities:\n       *\n       * - `which` is `0`. Arrow keys, Esc key, etc.\n       *\n       * - `which` is the pressed key code, but no char is available.\n       *   Ex: 'AltGr + d` in Polish. There is no modified character for\n       *   this key combination and no character is inserted into the\n       *   document, but FF fires the keypress for char code `100` anyway.\n       *   No `input` event will occur.\n       *\n       * - `which` is the pressed key code, but a command combination is\n       *   being used. Ex: `Cmd+C`. No character is inserted, and no\n       *   `input` event will occur.\n       */\n      if (nativeEvent.which && !isKeypressCommand(nativeEvent)) {\n        return String.fromCharCode(nativeEvent.which);\n      }\n      return null;\n    case 'topCompositionEnd':\n      return useFallbackCompositionData ? null : nativeEvent.data;\n    default:\n      return null;\n  }\n}\n\n/**\n * Extract a SyntheticInputEvent for `beforeInput`, based on either native\n * `textInput` or fallback behavior.\n *\n * @return {?object} A SyntheticInputEvent.\n */\nfunction extractBeforeInputEvent(topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n  var chars;\n\n  if (canUseTextInputEvent) {\n    chars = getNativeBeforeInputChars(topLevelType, nativeEvent);\n  } else {\n    chars = getFallbackBeforeInputChars(topLevelType, nativeEvent);\n  }\n\n  // If no characters are being inserted, no BeforeInput event should\n  // be fired.\n  if (!chars) {\n    return null;\n  }\n\n  var event = SyntheticInputEvent.getPooled(eventTypes.beforeInput, targetInst, nativeEvent, nativeEventTarget);\n\n  event.data = chars;\n  EventPropagators.accumulateTwoPhaseDispatches(event);\n  return event;\n}\n\n/**\n * Create an `onBeforeInput` event to match\n * http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105/#events-inputevents.\n *\n * This event plugin is based on the native `textInput` event\n * available in Chrome, Safari, Opera, and IE. This event fires after\n * `onKeyPress` and `onCompositionEnd`, but before `onInput`.\n *\n * `beforeInput` is spec'd but not implemented in any browsers, and\n * the `input` event does not provide any useful information about what has\n * actually been added, contrary to the spec. Thus, `textInput` is the best\n * available event to identify the characters that have actually been inserted\n * into the target node.\n *\n * This plugin is also responsible for emitting `composition` events, thus\n * allowing us to share composition fallback code for both `beforeInput` and\n * `composition` event types.\n */\nvar BeforeInputEventPlugin = {\n\n  eventTypes: eventTypes,\n\n  extractEvents: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n    return [extractCompositionEvent(topLevelType, targetInst, nativeEvent, nativeEventTarget), extractBeforeInputEvent(topLevelType, targetInst, nativeEvent, nativeEventTarget)];\n  }\n};\n\nmodule.exports = BeforeInputEventPlugin;\n},{\"./EventPropagators\":138,\"./FallbackCompositionState\":139,\"./SyntheticCompositionEvent\":203,\"./SyntheticInputEvent\":207,\"fbjs/lib/ExecutionEnvironment\":90}],123:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\n/**\n * CSS properties which accept numbers but are not in units of \"px\".\n */\n\nvar isUnitlessNumber = {\n  animationIterationCount: true,\n  borderImageOutset: true,\n  borderImageSlice: true,\n  borderImageWidth: true,\n  boxFlex: true,\n  boxFlexGroup: true,\n  boxOrdinalGroup: true,\n  columnCount: true,\n  flex: true,\n  flexGrow: true,\n  flexPositive: true,\n  flexShrink: true,\n  flexNegative: true,\n  flexOrder: true,\n  gridRow: true,\n  gridColumn: true,\n  fontWeight: true,\n  lineClamp: true,\n  lineHeight: true,\n  opacity: true,\n  order: true,\n  orphans: true,\n  tabSize: true,\n  widows: true,\n  zIndex: true,\n  zoom: true,\n\n  // SVG-related properties\n  fillOpacity: true,\n  floodOpacity: true,\n  stopOpacity: true,\n  strokeDasharray: true,\n  strokeDashoffset: true,\n  strokeMiterlimit: true,\n  strokeOpacity: true,\n  strokeWidth: true\n};\n\n/**\n * @param {string} prefix vendor-specific prefix, eg: Webkit\n * @param {string} key style name, eg: transitionDuration\n * @return {string} style name prefixed with `prefix`, properly camelCased, eg:\n * WebkitTransitionDuration\n */\nfunction prefixKey(prefix, key) {\n  return prefix + key.charAt(0).toUpperCase() + key.substring(1);\n}\n\n/**\n * Support style names that may come passed in prefixed by adding permutations\n * of vendor prefixes.\n */\nvar prefixes = ['Webkit', 'ms', 'Moz', 'O'];\n\n// Using Object.keys here, or else the vanilla for-in loop makes IE8 go into an\n// infinite loop, because it iterates over the newly added props too.\nObject.keys(isUnitlessNumber).forEach(function (prop) {\n  prefixes.forEach(function (prefix) {\n    isUnitlessNumber[prefixKey(prefix, prop)] = isUnitlessNumber[prop];\n  });\n});\n\n/**\n * Most style properties can be unset by doing .style[prop] = '' but IE8\n * doesn't like doing that with shorthand properties so for the properties that\n * IE8 breaks on, which are listed here, we instead unset each of the\n * individual properties. See http://bugs.jquery.com/ticket/12385.\n * The 4-value 'clock' properties like margin, padding, border-width seem to\n * behave without any problems. Curiously, list-style works too without any\n * special prodding.\n */\nvar shorthandPropertyExpansions = {\n  background: {\n    backgroundAttachment: true,\n    backgroundColor: true,\n    backgroundImage: true,\n    backgroundPositionX: true,\n    backgroundPositionY: true,\n    backgroundRepeat: true\n  },\n  backgroundPosition: {\n    backgroundPositionX: true,\n    backgroundPositionY: true\n  },\n  border: {\n    borderWidth: true,\n    borderStyle: true,\n    borderColor: true\n  },\n  borderBottom: {\n    borderBottomWidth: true,\n    borderBottomStyle: true,\n    borderBottomColor: true\n  },\n  borderLeft: {\n    borderLeftWidth: true,\n    borderLeftStyle: true,\n    borderLeftColor: true\n  },\n  borderRight: {\n    borderRightWidth: true,\n    borderRightStyle: true,\n    borderRightColor: true\n  },\n  borderTop: {\n    borderTopWidth: true,\n    borderTopStyle: true,\n    borderTopColor: true\n  },\n  font: {\n    fontStyle: true,\n    fontVariant: true,\n    fontWeight: true,\n    fontSize: true,\n    lineHeight: true,\n    fontFamily: true\n  },\n  outline: {\n    outlineWidth: true,\n    outlineStyle: true,\n    outlineColor: true\n  }\n};\n\nvar CSSProperty = {\n  isUnitlessNumber: isUnitlessNumber,\n  shorthandPropertyExpansions: shorthandPropertyExpansions\n};\n\nmodule.exports = CSSProperty;\n},{}],124:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar CSSProperty = require('./CSSProperty');\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\nvar ReactInstrumentation = require('./ReactInstrumentation');\n\nvar camelizeStyleName = require('fbjs/lib/camelizeStyleName');\nvar dangerousStyleValue = require('./dangerousStyleValue');\nvar hyphenateStyleName = require('fbjs/lib/hyphenateStyleName');\nvar memoizeStringOnly = require('fbjs/lib/memoizeStringOnly');\nvar warning = require('fbjs/lib/warning');\n\nvar processStyleName = memoizeStringOnly(function (styleName) {\n  return hyphenateStyleName(styleName);\n});\n\nvar hasShorthandPropertyBug = false;\nvar styleFloatAccessor = 'cssFloat';\nif (ExecutionEnvironment.canUseDOM) {\n  var tempStyle = document.createElement('div').style;\n  try {\n    // IE8 throws \"Invalid argument.\" if resetting shorthand style properties.\n    tempStyle.font = '';\n  } catch (e) {\n    hasShorthandPropertyBug = true;\n  }\n  // IE8 only supports accessing cssFloat (standard) as styleFloat\n  if (document.documentElement.style.cssFloat === undefined) {\n    styleFloatAccessor = 'styleFloat';\n  }\n}\n\nif (process.env.NODE_ENV !== 'production') {\n  // 'msTransform' is correct, but the other prefixes should be capitalized\n  var badVendoredStyleNamePattern = /^(?:webkit|moz|o)[A-Z]/;\n\n  // style values shouldn't contain a semicolon\n  var badStyleValueWithSemicolonPattern = /;\\s*$/;\n\n  var warnedStyleNames = {};\n  var warnedStyleValues = {};\n  var warnedForNaNValue = false;\n\n  var warnHyphenatedStyleName = function (name, owner) {\n    if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) {\n      return;\n    }\n\n    warnedStyleNames[name] = true;\n    process.env.NODE_ENV !== 'production' ? warning(false, 'Unsupported style property %s. Did you mean %s?%s', name, camelizeStyleName(name), checkRenderMessage(owner)) : void 0;\n  };\n\n  var warnBadVendoredStyleName = function (name, owner) {\n    if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) {\n      return;\n    }\n\n    warnedStyleNames[name] = true;\n    process.env.NODE_ENV !== 'production' ? warning(false, 'Unsupported vendor-prefixed style property %s. Did you mean %s?%s', name, name.charAt(0).toUpperCase() + name.slice(1), checkRenderMessage(owner)) : void 0;\n  };\n\n  var warnStyleValueWithSemicolon = function (name, value, owner) {\n    if (warnedStyleValues.hasOwnProperty(value) && warnedStyleValues[value]) {\n      return;\n    }\n\n    warnedStyleValues[value] = true;\n    process.env.NODE_ENV !== 'production' ? warning(false, 'Style property values shouldn\\'t contain a semicolon.%s ' + 'Try \"%s: %s\" instead.', checkRenderMessage(owner), name, value.replace(badStyleValueWithSemicolonPattern, '')) : void 0;\n  };\n\n  var warnStyleValueIsNaN = function (name, value, owner) {\n    if (warnedForNaNValue) {\n      return;\n    }\n\n    warnedForNaNValue = true;\n    process.env.NODE_ENV !== 'production' ? warning(false, '`NaN` is an invalid value for the `%s` css style property.%s', name, checkRenderMessage(owner)) : void 0;\n  };\n\n  var checkRenderMessage = function (owner) {\n    if (owner) {\n      var name = owner.getName();\n      if (name) {\n        return ' Check the render method of `' + name + '`.';\n      }\n    }\n    return '';\n  };\n\n  /**\n   * @param {string} name\n   * @param {*} value\n   * @param {ReactDOMComponent} component\n   */\n  var warnValidStyle = function (name, value, component) {\n    var owner;\n    if (component) {\n      owner = component._currentElement._owner;\n    }\n    if (name.indexOf('-') > -1) {\n      warnHyphenatedStyleName(name, owner);\n    } else if (badVendoredStyleNamePattern.test(name)) {\n      warnBadVendoredStyleName(name, owner);\n    } else if (badStyleValueWithSemicolonPattern.test(value)) {\n      warnStyleValueWithSemicolon(name, value, owner);\n    }\n\n    if (typeof value === 'number' && isNaN(value)) {\n      warnStyleValueIsNaN(name, value, owner);\n    }\n  };\n}\n\n/**\n * Operations for dealing with CSS properties.\n */\nvar CSSPropertyOperations = {\n\n  /**\n   * Serializes a mapping of style properties for use as inline styles:\n   *\n   *   > createMarkupForStyles({width: '200px', height: 0})\n   *   \"width:200px;height:0;\"\n   *\n   * Undefined values are ignored so that declarative programming is easier.\n   * The result should be HTML-escaped before insertion into the DOM.\n   *\n   * @param {object} styles\n   * @param {ReactDOMComponent} component\n   * @return {?string}\n   */\n  createMarkupForStyles: function (styles, component) {\n    var serialized = '';\n    for (var styleName in styles) {\n      if (!styles.hasOwnProperty(styleName)) {\n        continue;\n      }\n      var styleValue = styles[styleName];\n      if (process.env.NODE_ENV !== 'production') {\n        warnValidStyle(styleName, styleValue, component);\n      }\n      if (styleValue != null) {\n        serialized += processStyleName(styleName) + ':';\n        serialized += dangerousStyleValue(styleName, styleValue, component) + ';';\n      }\n    }\n    return serialized || null;\n  },\n\n  /**\n   * Sets the value for multiple styles on a node.  If a value is specified as\n   * '' (empty string), the corresponding style property will be unset.\n   *\n   * @param {DOMElement} node\n   * @param {object} styles\n   * @param {ReactDOMComponent} component\n   */\n  setValueForStyles: function (node, styles, component) {\n    if (process.env.NODE_ENV !== 'production') {\n      ReactInstrumentation.debugTool.onHostOperation({\n        instanceID: component._debugID,\n        type: 'update styles',\n        payload: styles\n      });\n    }\n\n    var style = node.style;\n    for (var styleName in styles) {\n      if (!styles.hasOwnProperty(styleName)) {\n        continue;\n      }\n      if (process.env.NODE_ENV !== 'production') {\n        warnValidStyle(styleName, styles[styleName], component);\n      }\n      var styleValue = dangerousStyleValue(styleName, styles[styleName], component);\n      if (styleName === 'float' || styleName === 'cssFloat') {\n        styleName = styleFloatAccessor;\n      }\n      if (styleValue) {\n        style[styleName] = styleValue;\n      } else {\n        var expansion = hasShorthandPropertyBug && CSSProperty.shorthandPropertyExpansions[styleName];\n        if (expansion) {\n          // Shorthand property that IE8 won't like unsetting, so unset each\n          // component to placate it\n          for (var individualStyleName in expansion) {\n            style[individualStyleName] = '';\n          }\n        } else {\n          style[styleName] = '';\n        }\n      }\n    }\n  }\n\n};\n\nmodule.exports = CSSPropertyOperations;\n}).call(this,require('_process'))\n},{\"./CSSProperty\":123,\"./ReactInstrumentation\":181,\"./dangerousStyleValue\":220,\"_process\":112,\"fbjs/lib/ExecutionEnvironment\":90,\"fbjs/lib/camelizeStyleName\":92,\"fbjs/lib/hyphenateStyleName\":103,\"fbjs/lib/memoizeStringOnly\":107,\"fbjs/lib/warning\":111}],125:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar PooledClass = require('./PooledClass');\n\nvar invariant = require('fbjs/lib/invariant');\n\n/**\n * A specialized pseudo-event module to help keep track of components waiting to\n * be notified when their DOM representations are available for use.\n *\n * This implements `PooledClass`, so you should never need to instantiate this.\n * Instead, use `CallbackQueue.getPooled()`.\n *\n * @class ReactMountReady\n * @implements PooledClass\n * @internal\n */\n\nvar CallbackQueue = function () {\n  function CallbackQueue(arg) {\n    _classCallCheck(this, CallbackQueue);\n\n    this._callbacks = null;\n    this._contexts = null;\n    this._arg = arg;\n  }\n\n  /**\n   * Enqueues a callback to be invoked when `notifyAll` is invoked.\n   *\n   * @param {function} callback Invoked when `notifyAll` is invoked.\n   * @param {?object} context Context to call `callback` with.\n   * @internal\n   */\n\n\n  CallbackQueue.prototype.enqueue = function enqueue(callback, context) {\n    this._callbacks = this._callbacks || [];\n    this._callbacks.push(callback);\n    this._contexts = this._contexts || [];\n    this._contexts.push(context);\n  };\n\n  /**\n   * Invokes all enqueued callbacks and clears the queue. This is invoked after\n   * the DOM representation of a component has been created or updated.\n   *\n   * @internal\n   */\n\n\n  CallbackQueue.prototype.notifyAll = function notifyAll() {\n    var callbacks = this._callbacks;\n    var contexts = this._contexts;\n    var arg = this._arg;\n    if (callbacks && contexts) {\n      !(callbacks.length === contexts.length) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Mismatched list of contexts in callback queue') : _prodInvariant('24') : void 0;\n      this._callbacks = null;\n      this._contexts = null;\n      for (var i = 0; i < callbacks.length; i++) {\n        callbacks[i].call(contexts[i], arg);\n      }\n      callbacks.length = 0;\n      contexts.length = 0;\n    }\n  };\n\n  CallbackQueue.prototype.checkpoint = function checkpoint() {\n    return this._callbacks ? this._callbacks.length : 0;\n  };\n\n  CallbackQueue.prototype.rollback = function rollback(len) {\n    if (this._callbacks && this._contexts) {\n      this._callbacks.length = len;\n      this._contexts.length = len;\n    }\n  };\n\n  /**\n   * Resets the internal queue.\n   *\n   * @internal\n   */\n\n\n  CallbackQueue.prototype.reset = function reset() {\n    this._callbacks = null;\n    this._contexts = null;\n  };\n\n  /**\n   * `PooledClass` looks for this.\n   */\n\n\n  CallbackQueue.prototype.destructor = function destructor() {\n    this.reset();\n  };\n\n  return CallbackQueue;\n}();\n\nmodule.exports = PooledClass.addPoolingTo(CallbackQueue);\n}).call(this,require('_process'))\n},{\"./PooledClass\":143,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104}],126:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar EventPluginHub = require('./EventPluginHub');\nvar EventPropagators = require('./EventPropagators');\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactUpdates = require('./ReactUpdates');\nvar SyntheticEvent = require('./SyntheticEvent');\n\nvar getEventTarget = require('./getEventTarget');\nvar isEventSupported = require('./isEventSupported');\nvar isTextInputElement = require('./isTextInputElement');\n\nvar eventTypes = {\n  change: {\n    phasedRegistrationNames: {\n      bubbled: 'onChange',\n      captured: 'onChangeCapture'\n    },\n    dependencies: ['topBlur', 'topChange', 'topClick', 'topFocus', 'topInput', 'topKeyDown', 'topKeyUp', 'topSelectionChange']\n  }\n};\n\n/**\n * For IE shims\n */\nvar activeElement = null;\nvar activeElementInst = null;\nvar activeElementValue = null;\nvar activeElementValueProp = null;\n\n/**\n * SECTION: handle `change` event\n */\nfunction shouldUseChangeEvent(elem) {\n  var nodeName = elem.nodeName && elem.nodeName.toLowerCase();\n  return nodeName === 'select' || nodeName === 'input' && elem.type === 'file';\n}\n\nvar doesChangeEventBubble = false;\nif (ExecutionEnvironment.canUseDOM) {\n  // See `handleChange` comment below\n  doesChangeEventBubble = isEventSupported('change') && (!document.documentMode || document.documentMode > 8);\n}\n\nfunction manualDispatchChangeEvent(nativeEvent) {\n  var event = SyntheticEvent.getPooled(eventTypes.change, activeElementInst, nativeEvent, getEventTarget(nativeEvent));\n  EventPropagators.accumulateTwoPhaseDispatches(event);\n\n  // If change and propertychange bubbled, we'd just bind to it like all the\n  // other events and have it go through ReactBrowserEventEmitter. Since it\n  // doesn't, we manually listen for the events and so we have to enqueue and\n  // process the abstract event manually.\n  //\n  // Batching is necessary here in order to ensure that all event handlers run\n  // before the next rerender (including event handlers attached to ancestor\n  // elements instead of directly on the input). Without this, controlled\n  // components don't work properly in conjunction with event bubbling because\n  // the component is rerendered and the value reverted before all the event\n  // handlers can run. See https://github.com/facebook/react/issues/708.\n  ReactUpdates.batchedUpdates(runEventInBatch, event);\n}\n\nfunction runEventInBatch(event) {\n  EventPluginHub.enqueueEvents(event);\n  EventPluginHub.processEventQueue(false);\n}\n\nfunction startWatchingForChangeEventIE8(target, targetInst) {\n  activeElement = target;\n  activeElementInst = targetInst;\n  activeElement.attachEvent('onchange', manualDispatchChangeEvent);\n}\n\nfunction stopWatchingForChangeEventIE8() {\n  if (!activeElement) {\n    return;\n  }\n  activeElement.detachEvent('onchange', manualDispatchChangeEvent);\n  activeElement = null;\n  activeElementInst = null;\n}\n\nfunction getTargetInstForChangeEvent(topLevelType, targetInst) {\n  if (topLevelType === 'topChange') {\n    return targetInst;\n  }\n}\nfunction handleEventsForChangeEventIE8(topLevelType, target, targetInst) {\n  if (topLevelType === 'topFocus') {\n    // stopWatching() should be a noop here but we call it just in case we\n    // missed a blur event somehow.\n    stopWatchingForChangeEventIE8();\n    startWatchingForChangeEventIE8(target, targetInst);\n  } else if (topLevelType === 'topBlur') {\n    stopWatchingForChangeEventIE8();\n  }\n}\n\n/**\n * SECTION: handle `input` event\n */\nvar isInputEventSupported = false;\nif (ExecutionEnvironment.canUseDOM) {\n  // IE9 claims to support the input event but fails to trigger it when\n  // deleting text, so we ignore its input events.\n  // IE10+ fire input events to often, such when a placeholder\n  // changes or when an input with a placeholder is focused.\n  isInputEventSupported = isEventSupported('input') && (!document.documentMode || document.documentMode > 11);\n}\n\n/**\n * (For IE <=11) Replacement getter/setter for the `value` property that gets\n * set on the active element.\n */\nvar newValueProp = {\n  get: function () {\n    return activeElementValueProp.get.call(this);\n  },\n  set: function (val) {\n    // Cast to a string so we can do equality checks.\n    activeElementValue = '' + val;\n    activeElementValueProp.set.call(this, val);\n  }\n};\n\n/**\n * (For IE <=11) Starts tracking propertychange events on the passed-in element\n * and override the value property so that we can distinguish user events from\n * value changes in JS.\n */\nfunction startWatchingForValueChange(target, targetInst) {\n  activeElement = target;\n  activeElementInst = targetInst;\n  activeElementValue = target.value;\n  activeElementValueProp = Object.getOwnPropertyDescriptor(target.constructor.prototype, 'value');\n\n  // Not guarded in a canDefineProperty check: IE8 supports defineProperty only\n  // on DOM elements\n  Object.defineProperty(activeElement, 'value', newValueProp);\n  if (activeElement.attachEvent) {\n    activeElement.attachEvent('onpropertychange', handlePropertyChange);\n  } else {\n    activeElement.addEventListener('propertychange', handlePropertyChange, false);\n  }\n}\n\n/**\n * (For IE <=11) Removes the event listeners from the currently-tracked element,\n * if any exists.\n */\nfunction stopWatchingForValueChange() {\n  if (!activeElement) {\n    return;\n  }\n\n  // delete restores the original property definition\n  delete activeElement.value;\n\n  if (activeElement.detachEvent) {\n    activeElement.detachEvent('onpropertychange', handlePropertyChange);\n  } else {\n    activeElement.removeEventListener('propertychange', handlePropertyChange, false);\n  }\n\n  activeElement = null;\n  activeElementInst = null;\n  activeElementValue = null;\n  activeElementValueProp = null;\n}\n\n/**\n * (For IE <=11) Handles a propertychange event, sending a `change` event if\n * the value of the active element has changed.\n */\nfunction handlePropertyChange(nativeEvent) {\n  if (nativeEvent.propertyName !== 'value') {\n    return;\n  }\n  var value = nativeEvent.srcElement.value;\n  if (value === activeElementValue) {\n    return;\n  }\n  activeElementValue = value;\n\n  manualDispatchChangeEvent(nativeEvent);\n}\n\n/**\n * If a `change` event should be fired, returns the target's ID.\n */\nfunction getTargetInstForInputEvent(topLevelType, targetInst) {\n  if (topLevelType === 'topInput') {\n    // In modern browsers (i.e., not IE8 or IE9), the input event is exactly\n    // what we want so fall through here and trigger an abstract event\n    return targetInst;\n  }\n}\n\nfunction handleEventsForInputEventIE(topLevelType, target, targetInst) {\n  if (topLevelType === 'topFocus') {\n    // In IE8, we can capture almost all .value changes by adding a\n    // propertychange handler and looking for events with propertyName\n    // equal to 'value'\n    // In IE9-11, propertychange fires for most input events but is buggy and\n    // doesn't fire when text is deleted, but conveniently, selectionchange\n    // appears to fire in all of the remaining cases so we catch those and\n    // forward the event if the value has changed\n    // In either case, we don't want to call the event handler if the value\n    // is changed from JS so we redefine a setter for `.value` that updates\n    // our activeElementValue variable, allowing us to ignore those changes\n    //\n    // stopWatching() should be a noop here but we call it just in case we\n    // missed a blur event somehow.\n    stopWatchingForValueChange();\n    startWatchingForValueChange(target, targetInst);\n  } else if (topLevelType === 'topBlur') {\n    stopWatchingForValueChange();\n  }\n}\n\n// For IE8 and IE9.\nfunction getTargetInstForInputEventIE(topLevelType, targetInst) {\n  if (topLevelType === 'topSelectionChange' || topLevelType === 'topKeyUp' || topLevelType === 'topKeyDown') {\n    // On the selectionchange event, the target is just document which isn't\n    // helpful for us so just check activeElement instead.\n    //\n    // 99% of the time, keydown and keyup aren't necessary. IE8 fails to fire\n    // propertychange on the first input event after setting `value` from a\n    // script and fires only keydown, keypress, keyup. Catching keyup usually\n    // gets it and catching keydown lets us fire an event for the first\n    // keystroke if user does a key repeat (it'll be a little delayed: right\n    // before the second keystroke). Other input methods (e.g., paste) seem to\n    // fire selectionchange normally.\n    if (activeElement && activeElement.value !== activeElementValue) {\n      activeElementValue = activeElement.value;\n      return activeElementInst;\n    }\n  }\n}\n\n/**\n * SECTION: handle `click` event\n */\nfunction shouldUseClickEvent(elem) {\n  // Use the `click` event to detect changes to checkbox and radio inputs.\n  // This approach works across all browsers, whereas `change` does not fire\n  // until `blur` in IE8.\n  return elem.nodeName && elem.nodeName.toLowerCase() === 'input' && (elem.type === 'checkbox' || elem.type === 'radio');\n}\n\nfunction getTargetInstForClickEvent(topLevelType, targetInst) {\n  if (topLevelType === 'topClick') {\n    return targetInst;\n  }\n}\n\nfunction handleControlledInputBlur(inst, node) {\n  // TODO: In IE, inst is occasionally null. Why?\n  if (inst == null) {\n    return;\n  }\n\n  // Fiber and ReactDOM keep wrapper state in separate places\n  var state = inst._wrapperState || node._wrapperState;\n\n  if (!state || !state.controlled || node.type !== 'number') {\n    return;\n  }\n\n  // If controlled, assign the value attribute to the current value on blur\n  var value = '' + node.value;\n  if (node.getAttribute('value') !== value) {\n    node.setAttribute('value', value);\n  }\n}\n\n/**\n * This plugin creates an `onChange` event that normalizes change events\n * across form elements. This event fires at a time when it's possible to\n * change the element's value without seeing a flicker.\n *\n * Supported elements are:\n * - input (see `isTextInputElement`)\n * - textarea\n * - select\n */\nvar ChangeEventPlugin = {\n\n  eventTypes: eventTypes,\n\n  extractEvents: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n    var targetNode = targetInst ? ReactDOMComponentTree.getNodeFromInstance(targetInst) : window;\n\n    var getTargetInstFunc, handleEventFunc;\n    if (shouldUseChangeEvent(targetNode)) {\n      if (doesChangeEventBubble) {\n        getTargetInstFunc = getTargetInstForChangeEvent;\n      } else {\n        handleEventFunc = handleEventsForChangeEventIE8;\n      }\n    } else if (isTextInputElement(targetNode)) {\n      if (isInputEventSupported) {\n        getTargetInstFunc = getTargetInstForInputEvent;\n      } else {\n        getTargetInstFunc = getTargetInstForInputEventIE;\n        handleEventFunc = handleEventsForInputEventIE;\n      }\n    } else if (shouldUseClickEvent(targetNode)) {\n      getTargetInstFunc = getTargetInstForClickEvent;\n    }\n\n    if (getTargetInstFunc) {\n      var inst = getTargetInstFunc(topLevelType, targetInst);\n      if (inst) {\n        var event = SyntheticEvent.getPooled(eventTypes.change, inst, nativeEvent, nativeEventTarget);\n        event.type = 'change';\n        EventPropagators.accumulateTwoPhaseDispatches(event);\n        return event;\n      }\n    }\n\n    if (handleEventFunc) {\n      handleEventFunc(topLevelType, targetNode, targetInst);\n    }\n\n    // When blurring, set the value attribute for number inputs\n    if (topLevelType === 'topBlur') {\n      handleControlledInputBlur(targetInst, targetNode);\n    }\n  }\n\n};\n\nmodule.exports = ChangeEventPlugin;\n},{\"./EventPluginHub\":135,\"./EventPropagators\":138,\"./ReactDOMComponentTree\":152,\"./ReactUpdates\":196,\"./SyntheticEvent\":205,\"./getEventTarget\":228,\"./isEventSupported\":235,\"./isTextInputElement\":236,\"fbjs/lib/ExecutionEnvironment\":90}],127:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar DOMLazyTree = require('./DOMLazyTree');\nvar Danger = require('./Danger');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactInstrumentation = require('./ReactInstrumentation');\n\nvar createMicrosoftUnsafeLocalFunction = require('./createMicrosoftUnsafeLocalFunction');\nvar setInnerHTML = require('./setInnerHTML');\nvar setTextContent = require('./setTextContent');\n\nfunction getNodeAfter(parentNode, node) {\n  // Special case for text components, which return [open, close] comments\n  // from getHostNode.\n  if (Array.isArray(node)) {\n    node = node[1];\n  }\n  return node ? node.nextSibling : parentNode.firstChild;\n}\n\n/**\n * Inserts `childNode` as a child of `parentNode` at the `index`.\n *\n * @param {DOMElement} parentNode Parent node in which to insert.\n * @param {DOMElement} childNode Child node to insert.\n * @param {number} index Index at which to insert the child.\n * @internal\n */\nvar insertChildAt = createMicrosoftUnsafeLocalFunction(function (parentNode, childNode, referenceNode) {\n  // We rely exclusively on `insertBefore(node, null)` instead of also using\n  // `appendChild(node)`. (Using `undefined` is not allowed by all browsers so\n  // we are careful to use `null`.)\n  parentNode.insertBefore(childNode, referenceNode);\n});\n\nfunction insertLazyTreeChildAt(parentNode, childTree, referenceNode) {\n  DOMLazyTree.insertTreeBefore(parentNode, childTree, referenceNode);\n}\n\nfunction moveChild(parentNode, childNode, referenceNode) {\n  if (Array.isArray(childNode)) {\n    moveDelimitedText(parentNode, childNode[0], childNode[1], referenceNode);\n  } else {\n    insertChildAt(parentNode, childNode, referenceNode);\n  }\n}\n\nfunction removeChild(parentNode, childNode) {\n  if (Array.isArray(childNode)) {\n    var closingComment = childNode[1];\n    childNode = childNode[0];\n    removeDelimitedText(parentNode, childNode, closingComment);\n    parentNode.removeChild(closingComment);\n  }\n  parentNode.removeChild(childNode);\n}\n\nfunction moveDelimitedText(parentNode, openingComment, closingComment, referenceNode) {\n  var node = openingComment;\n  while (true) {\n    var nextNode = node.nextSibling;\n    insertChildAt(parentNode, node, referenceNode);\n    if (node === closingComment) {\n      break;\n    }\n    node = nextNode;\n  }\n}\n\nfunction removeDelimitedText(parentNode, startNode, closingComment) {\n  while (true) {\n    var node = startNode.nextSibling;\n    if (node === closingComment) {\n      // The closing comment is removed by ReactMultiChild.\n      break;\n    } else {\n      parentNode.removeChild(node);\n    }\n  }\n}\n\nfunction replaceDelimitedText(openingComment, closingComment, stringText) {\n  var parentNode = openingComment.parentNode;\n  var nodeAfterComment = openingComment.nextSibling;\n  if (nodeAfterComment === closingComment) {\n    // There are no text nodes between the opening and closing comments; insert\n    // a new one if stringText isn't empty.\n    if (stringText) {\n      insertChildAt(parentNode, document.createTextNode(stringText), nodeAfterComment);\n    }\n  } else {\n    if (stringText) {\n      // Set the text content of the first node after the opening comment, and\n      // remove all following nodes up until the closing comment.\n      setTextContent(nodeAfterComment, stringText);\n      removeDelimitedText(parentNode, nodeAfterComment, closingComment);\n    } else {\n      removeDelimitedText(parentNode, openingComment, closingComment);\n    }\n  }\n\n  if (process.env.NODE_ENV !== 'production') {\n    ReactInstrumentation.debugTool.onHostOperation({\n      instanceID: ReactDOMComponentTree.getInstanceFromNode(openingComment)._debugID,\n      type: 'replace text',\n      payload: stringText\n    });\n  }\n}\n\nvar dangerouslyReplaceNodeWithMarkup = Danger.dangerouslyReplaceNodeWithMarkup;\nif (process.env.NODE_ENV !== 'production') {\n  dangerouslyReplaceNodeWithMarkup = function (oldChild, markup, prevInstance) {\n    Danger.dangerouslyReplaceNodeWithMarkup(oldChild, markup);\n    if (prevInstance._debugID !== 0) {\n      ReactInstrumentation.debugTool.onHostOperation({\n        instanceID: prevInstance._debugID,\n        type: 'replace with',\n        payload: markup.toString()\n      });\n    } else {\n      var nextInstance = ReactDOMComponentTree.getInstanceFromNode(markup.node);\n      if (nextInstance._debugID !== 0) {\n        ReactInstrumentation.debugTool.onHostOperation({\n          instanceID: nextInstance._debugID,\n          type: 'mount',\n          payload: markup.toString()\n        });\n      }\n    }\n  };\n}\n\n/**\n * Operations for updating with DOM children.\n */\nvar DOMChildrenOperations = {\n\n  dangerouslyReplaceNodeWithMarkup: dangerouslyReplaceNodeWithMarkup,\n\n  replaceDelimitedText: replaceDelimitedText,\n\n  /**\n   * Updates a component's children by processing a series of updates. The\n   * update configurations are each expected to have a `parentNode` property.\n   *\n   * @param {array<object>} updates List of update configurations.\n   * @internal\n   */\n  processUpdates: function (parentNode, updates) {\n    if (process.env.NODE_ENV !== 'production') {\n      var parentNodeDebugID = ReactDOMComponentTree.getInstanceFromNode(parentNode)._debugID;\n    }\n\n    for (var k = 0; k < updates.length; k++) {\n      var update = updates[k];\n      switch (update.type) {\n        case 'INSERT_MARKUP':\n          insertLazyTreeChildAt(parentNode, update.content, getNodeAfter(parentNode, update.afterNode));\n          if (process.env.NODE_ENV !== 'production') {\n            ReactInstrumentation.debugTool.onHostOperation({\n              instanceID: parentNodeDebugID,\n              type: 'insert child',\n              payload: { toIndex: update.toIndex, content: update.content.toString() }\n            });\n          }\n          break;\n        case 'MOVE_EXISTING':\n          moveChild(parentNode, update.fromNode, getNodeAfter(parentNode, update.afterNode));\n          if (process.env.NODE_ENV !== 'production') {\n            ReactInstrumentation.debugTool.onHostOperation({\n              instanceID: parentNodeDebugID,\n              type: 'move child',\n              payload: { fromIndex: update.fromIndex, toIndex: update.toIndex }\n            });\n          }\n          break;\n        case 'SET_MARKUP':\n          setInnerHTML(parentNode, update.content);\n          if (process.env.NODE_ENV !== 'production') {\n            ReactInstrumentation.debugTool.onHostOperation({\n              instanceID: parentNodeDebugID,\n              type: 'replace children',\n              payload: update.content.toString()\n            });\n          }\n          break;\n        case 'TEXT_CONTENT':\n          setTextContent(parentNode, update.content);\n          if (process.env.NODE_ENV !== 'production') {\n            ReactInstrumentation.debugTool.onHostOperation({\n              instanceID: parentNodeDebugID,\n              type: 'replace text',\n              payload: update.content.toString()\n            });\n          }\n          break;\n        case 'REMOVE_NODE':\n          removeChild(parentNode, update.fromNode);\n          if (process.env.NODE_ENV !== 'production') {\n            ReactInstrumentation.debugTool.onHostOperation({\n              instanceID: parentNodeDebugID,\n              type: 'remove child',\n              payload: { fromIndex: update.fromIndex }\n            });\n          }\n          break;\n      }\n    }\n  }\n\n};\n\nmodule.exports = DOMChildrenOperations;\n}).call(this,require('_process'))\n},{\"./DOMLazyTree\":128,\"./Danger\":132,\"./ReactDOMComponentTree\":152,\"./ReactInstrumentation\":181,\"./createMicrosoftUnsafeLocalFunction\":219,\"./setInnerHTML\":240,\"./setTextContent\":241,\"_process\":112}],128:[function(require,module,exports){\n/**\n * Copyright 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar DOMNamespaces = require('./DOMNamespaces');\nvar setInnerHTML = require('./setInnerHTML');\n\nvar createMicrosoftUnsafeLocalFunction = require('./createMicrosoftUnsafeLocalFunction');\nvar setTextContent = require('./setTextContent');\n\nvar ELEMENT_NODE_TYPE = 1;\nvar DOCUMENT_FRAGMENT_NODE_TYPE = 11;\n\n/**\n * In IE (8-11) and Edge, appending nodes with no children is dramatically\n * faster than appending a full subtree, so we essentially queue up the\n * .appendChild calls here and apply them so each node is added to its parent\n * before any children are added.\n *\n * In other browsers, doing so is slower or neutral compared to the other order\n * (in Firefox, twice as slow) so we only do this inversion in IE.\n *\n * See https://github.com/spicyj/innerhtml-vs-createelement-vs-clonenode.\n */\nvar enableLazy = typeof document !== 'undefined' && typeof document.documentMode === 'number' || typeof navigator !== 'undefined' && typeof navigator.userAgent === 'string' && /\\bEdge\\/\\d/.test(navigator.userAgent);\n\nfunction insertTreeChildren(tree) {\n  if (!enableLazy) {\n    return;\n  }\n  var node = tree.node;\n  var children = tree.children;\n  if (children.length) {\n    for (var i = 0; i < children.length; i++) {\n      insertTreeBefore(node, children[i], null);\n    }\n  } else if (tree.html != null) {\n    setInnerHTML(node, tree.html);\n  } else if (tree.text != null) {\n    setTextContent(node, tree.text);\n  }\n}\n\nvar insertTreeBefore = createMicrosoftUnsafeLocalFunction(function (parentNode, tree, referenceNode) {\n  // DocumentFragments aren't actually part of the DOM after insertion so\n  // appending children won't update the DOM. We need to ensure the fragment\n  // is properly populated first, breaking out of our lazy approach for just\n  // this level. Also, some <object> plugins (like Flash Player) will read\n  // <param> nodes immediately upon insertion into the DOM, so <object>\n  // must also be populated prior to insertion into the DOM.\n  if (tree.node.nodeType === DOCUMENT_FRAGMENT_NODE_TYPE || tree.node.nodeType === ELEMENT_NODE_TYPE && tree.node.nodeName.toLowerCase() === 'object' && (tree.node.namespaceURI == null || tree.node.namespaceURI === DOMNamespaces.html)) {\n    insertTreeChildren(tree);\n    parentNode.insertBefore(tree.node, referenceNode);\n  } else {\n    parentNode.insertBefore(tree.node, referenceNode);\n    insertTreeChildren(tree);\n  }\n});\n\nfunction replaceChildWithTree(oldNode, newTree) {\n  oldNode.parentNode.replaceChild(newTree.node, oldNode);\n  insertTreeChildren(newTree);\n}\n\nfunction queueChild(parentTree, childTree) {\n  if (enableLazy) {\n    parentTree.children.push(childTree);\n  } else {\n    parentTree.node.appendChild(childTree.node);\n  }\n}\n\nfunction queueHTML(tree, html) {\n  if (enableLazy) {\n    tree.html = html;\n  } else {\n    setInnerHTML(tree.node, html);\n  }\n}\n\nfunction queueText(tree, text) {\n  if (enableLazy) {\n    tree.text = text;\n  } else {\n    setTextContent(tree.node, text);\n  }\n}\n\nfunction toString() {\n  return this.node.nodeName;\n}\n\nfunction DOMLazyTree(node) {\n  return {\n    node: node,\n    children: [],\n    html: null,\n    text: null,\n    toString: toString\n  };\n}\n\nDOMLazyTree.insertTreeBefore = insertTreeBefore;\nDOMLazyTree.replaceChildWithTree = replaceChildWithTree;\nDOMLazyTree.queueChild = queueChild;\nDOMLazyTree.queueHTML = queueHTML;\nDOMLazyTree.queueText = queueText;\n\nmodule.exports = DOMLazyTree;\n},{\"./DOMNamespaces\":129,\"./createMicrosoftUnsafeLocalFunction\":219,\"./setInnerHTML\":240,\"./setTextContent\":241}],129:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar DOMNamespaces = {\n  html: 'http://www.w3.org/1999/xhtml',\n  mathml: 'http://www.w3.org/1998/Math/MathML',\n  svg: 'http://www.w3.org/2000/svg'\n};\n\nmodule.exports = DOMNamespaces;\n},{}],130:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar invariant = require('fbjs/lib/invariant');\n\nfunction checkMask(value, bitmask) {\n  return (value & bitmask) === bitmask;\n}\n\nvar DOMPropertyInjection = {\n  /**\n   * Mapping from normalized, camelcased property names to a configuration that\n   * specifies how the associated DOM property should be accessed or rendered.\n   */\n  MUST_USE_PROPERTY: 0x1,\n  HAS_BOOLEAN_VALUE: 0x4,\n  HAS_NUMERIC_VALUE: 0x8,\n  HAS_POSITIVE_NUMERIC_VALUE: 0x10 | 0x8,\n  HAS_OVERLOADED_BOOLEAN_VALUE: 0x20,\n\n  /**\n   * Inject some specialized knowledge about the DOM. This takes a config object\n   * with the following properties:\n   *\n   * isCustomAttribute: function that given an attribute name will return true\n   * if it can be inserted into the DOM verbatim. Useful for data-* or aria-*\n   * attributes where it's impossible to enumerate all of the possible\n   * attribute names,\n   *\n   * Properties: object mapping DOM property name to one of the\n   * DOMPropertyInjection constants or null. If your attribute isn't in here,\n   * it won't get written to the DOM.\n   *\n   * DOMAttributeNames: object mapping React attribute name to the DOM\n   * attribute name. Attribute names not specified use the **lowercase**\n   * normalized name.\n   *\n   * DOMAttributeNamespaces: object mapping React attribute name to the DOM\n   * attribute namespace URL. (Attribute names not specified use no namespace.)\n   *\n   * DOMPropertyNames: similar to DOMAttributeNames but for DOM properties.\n   * Property names not specified use the normalized name.\n   *\n   * DOMMutationMethods: Properties that require special mutation methods. If\n   * `value` is undefined, the mutation method should unset the property.\n   *\n   * @param {object} domPropertyConfig the config as described above.\n   */\n  injectDOMPropertyConfig: function (domPropertyConfig) {\n    var Injection = DOMPropertyInjection;\n    var Properties = domPropertyConfig.Properties || {};\n    var DOMAttributeNamespaces = domPropertyConfig.DOMAttributeNamespaces || {};\n    var DOMAttributeNames = domPropertyConfig.DOMAttributeNames || {};\n    var DOMPropertyNames = domPropertyConfig.DOMPropertyNames || {};\n    var DOMMutationMethods = domPropertyConfig.DOMMutationMethods || {};\n\n    if (domPropertyConfig.isCustomAttribute) {\n      DOMProperty._isCustomAttributeFunctions.push(domPropertyConfig.isCustomAttribute);\n    }\n\n    for (var propName in Properties) {\n      !!DOMProperty.properties.hasOwnProperty(propName) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'injectDOMPropertyConfig(...): You\\'re trying to inject DOM property \\'%s\\' which has already been injected. You may be accidentally injecting the same DOM property config twice, or you may be injecting two configs that have conflicting property names.', propName) : _prodInvariant('48', propName) : void 0;\n\n      var lowerCased = propName.toLowerCase();\n      var propConfig = Properties[propName];\n\n      var propertyInfo = {\n        attributeName: lowerCased,\n        attributeNamespace: null,\n        propertyName: propName,\n        mutationMethod: null,\n\n        mustUseProperty: checkMask(propConfig, Injection.MUST_USE_PROPERTY),\n        hasBooleanValue: checkMask(propConfig, Injection.HAS_BOOLEAN_VALUE),\n        hasNumericValue: checkMask(propConfig, Injection.HAS_NUMERIC_VALUE),\n        hasPositiveNumericValue: checkMask(propConfig, Injection.HAS_POSITIVE_NUMERIC_VALUE),\n        hasOverloadedBooleanValue: checkMask(propConfig, Injection.HAS_OVERLOADED_BOOLEAN_VALUE)\n      };\n      !(propertyInfo.hasBooleanValue + propertyInfo.hasNumericValue + propertyInfo.hasOverloadedBooleanValue <= 1) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'DOMProperty: Value can be one of boolean, overloaded boolean, or numeric value, but not a combination: %s', propName) : _prodInvariant('50', propName) : void 0;\n\n      if (process.env.NODE_ENV !== 'production') {\n        DOMProperty.getPossibleStandardName[lowerCased] = propName;\n      }\n\n      if (DOMAttributeNames.hasOwnProperty(propName)) {\n        var attributeName = DOMAttributeNames[propName];\n        propertyInfo.attributeName = attributeName;\n        if (process.env.NODE_ENV !== 'production') {\n          DOMProperty.getPossibleStandardName[attributeName] = propName;\n        }\n      }\n\n      if (DOMAttributeNamespaces.hasOwnProperty(propName)) {\n        propertyInfo.attributeNamespace = DOMAttributeNamespaces[propName];\n      }\n\n      if (DOMPropertyNames.hasOwnProperty(propName)) {\n        propertyInfo.propertyName = DOMPropertyNames[propName];\n      }\n\n      if (DOMMutationMethods.hasOwnProperty(propName)) {\n        propertyInfo.mutationMethod = DOMMutationMethods[propName];\n      }\n\n      DOMProperty.properties[propName] = propertyInfo;\n    }\n  }\n};\n\n/* eslint-disable max-len */\nvar ATTRIBUTE_NAME_START_CHAR = ':A-Z_a-z\\\\u00C0-\\\\u00D6\\\\u00D8-\\\\u00F6\\\\u00F8-\\\\u02FF\\\\u0370-\\\\u037D\\\\u037F-\\\\u1FFF\\\\u200C-\\\\u200D\\\\u2070-\\\\u218F\\\\u2C00-\\\\u2FEF\\\\u3001-\\\\uD7FF\\\\uF900-\\\\uFDCF\\\\uFDF0-\\\\uFFFD';\n/* eslint-enable max-len */\n\n/**\n * DOMProperty exports lookup objects that can be used like functions:\n *\n *   > DOMProperty.isValid['id']\n *   true\n *   > DOMProperty.isValid['foobar']\n *   undefined\n *\n * Although this may be confusing, it performs better in general.\n *\n * @see http://jsperf.com/key-exists\n * @see http://jsperf.com/key-missing\n */\nvar DOMProperty = {\n\n  ID_ATTRIBUTE_NAME: 'data-reactid',\n  ROOT_ATTRIBUTE_NAME: 'data-reactroot',\n\n  ATTRIBUTE_NAME_START_CHAR: ATTRIBUTE_NAME_START_CHAR,\n  ATTRIBUTE_NAME_CHAR: ATTRIBUTE_NAME_START_CHAR + '\\\\-.0-9\\\\u00B7\\\\u0300-\\\\u036F\\\\u203F-\\\\u2040',\n\n  /**\n   * Map from property \"standard name\" to an object with info about how to set\n   * the property in the DOM. Each object contains:\n   *\n   * attributeName:\n   *   Used when rendering markup or with `*Attribute()`.\n   * attributeNamespace\n   * propertyName:\n   *   Used on DOM node instances. (This includes properties that mutate due to\n   *   external factors.)\n   * mutationMethod:\n   *   If non-null, used instead of the property or `setAttribute()` after\n   *   initial render.\n   * mustUseProperty:\n   *   Whether the property must be accessed and mutated as an object property.\n   * hasBooleanValue:\n   *   Whether the property should be removed when set to a falsey value.\n   * hasNumericValue:\n   *   Whether the property must be numeric or parse as a numeric and should be\n   *   removed when set to a falsey value.\n   * hasPositiveNumericValue:\n   *   Whether the property must be positive numeric or parse as a positive\n   *   numeric and should be removed when set to a falsey value.\n   * hasOverloadedBooleanValue:\n   *   Whether the property can be used as a flag as well as with a value.\n   *   Removed when strictly equal to false; present without a value when\n   *   strictly equal to true; present with a value otherwise.\n   */\n  properties: {},\n\n  /**\n   * Mapping from lowercase property names to the properly cased version, used\n   * to warn in the case of missing properties. Available only in __DEV__.\n   *\n   * autofocus is predefined, because adding it to the property whitelist\n   * causes unintended side effects.\n   *\n   * @type {Object}\n   */\n  getPossibleStandardName: process.env.NODE_ENV !== 'production' ? { autofocus: 'autoFocus' } : null,\n\n  /**\n   * All of the isCustomAttribute() functions that have been injected.\n   */\n  _isCustomAttributeFunctions: [],\n\n  /**\n   * Checks whether a property name is a custom attribute.\n   * @method\n   */\n  isCustomAttribute: function (attributeName) {\n    for (var i = 0; i < DOMProperty._isCustomAttributeFunctions.length; i++) {\n      var isCustomAttributeFn = DOMProperty._isCustomAttributeFunctions[i];\n      if (isCustomAttributeFn(attributeName)) {\n        return true;\n      }\n    }\n    return false;\n  },\n\n  injection: DOMPropertyInjection\n};\n\nmodule.exports = DOMProperty;\n}).call(this,require('_process'))\n},{\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104}],131:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar DOMProperty = require('./DOMProperty');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactInstrumentation = require('./ReactInstrumentation');\n\nvar quoteAttributeValueForBrowser = require('./quoteAttributeValueForBrowser');\nvar warning = require('fbjs/lib/warning');\n\nvar VALID_ATTRIBUTE_NAME_REGEX = new RegExp('^[' + DOMProperty.ATTRIBUTE_NAME_START_CHAR + '][' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$');\nvar illegalAttributeNameCache = {};\nvar validatedAttributeNameCache = {};\n\nfunction isAttributeNameSafe(attributeName) {\n  if (validatedAttributeNameCache.hasOwnProperty(attributeName)) {\n    return true;\n  }\n  if (illegalAttributeNameCache.hasOwnProperty(attributeName)) {\n    return false;\n  }\n  if (VALID_ATTRIBUTE_NAME_REGEX.test(attributeName)) {\n    validatedAttributeNameCache[attributeName] = true;\n    return true;\n  }\n  illegalAttributeNameCache[attributeName] = true;\n  process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid attribute name: `%s`', attributeName) : void 0;\n  return false;\n}\n\nfunction shouldIgnoreValue(propertyInfo, value) {\n  return value == null || propertyInfo.hasBooleanValue && !value || propertyInfo.hasNumericValue && isNaN(value) || propertyInfo.hasPositiveNumericValue && value < 1 || propertyInfo.hasOverloadedBooleanValue && value === false;\n}\n\n/**\n * Operations for dealing with DOM properties.\n */\nvar DOMPropertyOperations = {\n\n  /**\n   * Creates markup for the ID property.\n   *\n   * @param {string} id Unescaped ID.\n   * @return {string} Markup string.\n   */\n  createMarkupForID: function (id) {\n    return DOMProperty.ID_ATTRIBUTE_NAME + '=' + quoteAttributeValueForBrowser(id);\n  },\n\n  setAttributeForID: function (node, id) {\n    node.setAttribute(DOMProperty.ID_ATTRIBUTE_NAME, id);\n  },\n\n  createMarkupForRoot: function () {\n    return DOMProperty.ROOT_ATTRIBUTE_NAME + '=\"\"';\n  },\n\n  setAttributeForRoot: function (node) {\n    node.setAttribute(DOMProperty.ROOT_ATTRIBUTE_NAME, '');\n  },\n\n  /**\n   * Creates markup for a property.\n   *\n   * @param {string} name\n   * @param {*} value\n   * @return {?string} Markup string, or null if the property was invalid.\n   */\n  createMarkupForProperty: function (name, value) {\n    var propertyInfo = DOMProperty.properties.hasOwnProperty(name) ? DOMProperty.properties[name] : null;\n    if (propertyInfo) {\n      if (shouldIgnoreValue(propertyInfo, value)) {\n        return '';\n      }\n      var attributeName = propertyInfo.attributeName;\n      if (propertyInfo.hasBooleanValue || propertyInfo.hasOverloadedBooleanValue && value === true) {\n        return attributeName + '=\"\"';\n      }\n      return attributeName + '=' + quoteAttributeValueForBrowser(value);\n    } else if (DOMProperty.isCustomAttribute(name)) {\n      if (value == null) {\n        return '';\n      }\n      return name + '=' + quoteAttributeValueForBrowser(value);\n    }\n    return null;\n  },\n\n  /**\n   * Creates markup for a custom property.\n   *\n   * @param {string} name\n   * @param {*} value\n   * @return {string} Markup string, or empty string if the property was invalid.\n   */\n  createMarkupForCustomAttribute: function (name, value) {\n    if (!isAttributeNameSafe(name) || value == null) {\n      return '';\n    }\n    return name + '=' + quoteAttributeValueForBrowser(value);\n  },\n\n  /**\n   * Sets the value for a property on a node.\n   *\n   * @param {DOMElement} node\n   * @param {string} name\n   * @param {*} value\n   */\n  setValueForProperty: function (node, name, value) {\n    var propertyInfo = DOMProperty.properties.hasOwnProperty(name) ? DOMProperty.properties[name] : null;\n    if (propertyInfo) {\n      var mutationMethod = propertyInfo.mutationMethod;\n      if (mutationMethod) {\n        mutationMethod(node, value);\n      } else if (shouldIgnoreValue(propertyInfo, value)) {\n        this.deleteValueForProperty(node, name);\n        return;\n      } else if (propertyInfo.mustUseProperty) {\n        // Contrary to `setAttribute`, object properties are properly\n        // `toString`ed by IE8/9.\n        node[propertyInfo.propertyName] = value;\n      } else {\n        var attributeName = propertyInfo.attributeName;\n        var namespace = propertyInfo.attributeNamespace;\n        // `setAttribute` with objects becomes only `[object]` in IE8/9,\n        // ('' + value) makes it output the correct toString()-value.\n        if (namespace) {\n          node.setAttributeNS(namespace, attributeName, '' + value);\n        } else if (propertyInfo.hasBooleanValue || propertyInfo.hasOverloadedBooleanValue && value === true) {\n          node.setAttribute(attributeName, '');\n        } else {\n          node.setAttribute(attributeName, '' + value);\n        }\n      }\n    } else if (DOMProperty.isCustomAttribute(name)) {\n      DOMPropertyOperations.setValueForAttribute(node, name, value);\n      return;\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      var payload = {};\n      payload[name] = value;\n      ReactInstrumentation.debugTool.onHostOperation({\n        instanceID: ReactDOMComponentTree.getInstanceFromNode(node)._debugID,\n        type: 'update attribute',\n        payload: payload\n      });\n    }\n  },\n\n  setValueForAttribute: function (node, name, value) {\n    if (!isAttributeNameSafe(name)) {\n      return;\n    }\n    if (value == null) {\n      node.removeAttribute(name);\n    } else {\n      node.setAttribute(name, '' + value);\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      var payload = {};\n      payload[name] = value;\n      ReactInstrumentation.debugTool.onHostOperation({\n        instanceID: ReactDOMComponentTree.getInstanceFromNode(node)._debugID,\n        type: 'update attribute',\n        payload: payload\n      });\n    }\n  },\n\n  /**\n   * Deletes an attributes from a node.\n   *\n   * @param {DOMElement} node\n   * @param {string} name\n   */\n  deleteValueForAttribute: function (node, name) {\n    node.removeAttribute(name);\n    if (process.env.NODE_ENV !== 'production') {\n      ReactInstrumentation.debugTool.onHostOperation({\n        instanceID: ReactDOMComponentTree.getInstanceFromNode(node)._debugID,\n        type: 'remove attribute',\n        payload: name\n      });\n    }\n  },\n\n  /**\n   * Deletes the value for a property on a node.\n   *\n   * @param {DOMElement} node\n   * @param {string} name\n   */\n  deleteValueForProperty: function (node, name) {\n    var propertyInfo = DOMProperty.properties.hasOwnProperty(name) ? DOMProperty.properties[name] : null;\n    if (propertyInfo) {\n      var mutationMethod = propertyInfo.mutationMethod;\n      if (mutationMethod) {\n        mutationMethod(node, undefined);\n      } else if (propertyInfo.mustUseProperty) {\n        var propName = propertyInfo.propertyName;\n        if (propertyInfo.hasBooleanValue) {\n          node[propName] = false;\n        } else {\n          node[propName] = '';\n        }\n      } else {\n        node.removeAttribute(propertyInfo.attributeName);\n      }\n    } else if (DOMProperty.isCustomAttribute(name)) {\n      node.removeAttribute(name);\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      ReactInstrumentation.debugTool.onHostOperation({\n        instanceID: ReactDOMComponentTree.getInstanceFromNode(node)._debugID,\n        type: 'remove attribute',\n        payload: name\n      });\n    }\n  }\n\n};\n\nmodule.exports = DOMPropertyOperations;\n}).call(this,require('_process'))\n},{\"./DOMProperty\":130,\"./ReactDOMComponentTree\":152,\"./ReactInstrumentation\":181,\"./quoteAttributeValueForBrowser\":237,\"_process\":112,\"fbjs/lib/warning\":111}],132:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar DOMLazyTree = require('./DOMLazyTree');\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\n\nvar createNodesFromMarkup = require('fbjs/lib/createNodesFromMarkup');\nvar emptyFunction = require('fbjs/lib/emptyFunction');\nvar invariant = require('fbjs/lib/invariant');\n\nvar Danger = {\n\n  /**\n   * Replaces a node with a string of markup at its current position within its\n   * parent. The markup must render into a single root node.\n   *\n   * @param {DOMElement} oldChild Child node to replace.\n   * @param {string} markup Markup to render in place of the child node.\n   * @internal\n   */\n  dangerouslyReplaceNodeWithMarkup: function (oldChild, markup) {\n    !ExecutionEnvironment.canUseDOM ? process.env.NODE_ENV !== 'production' ? invariant(false, 'dangerouslyReplaceNodeWithMarkup(...): Cannot render markup in a worker thread. Make sure `window` and `document` are available globally before requiring React when unit testing or use ReactDOMServer.renderToString() for server rendering.') : _prodInvariant('56') : void 0;\n    !markup ? process.env.NODE_ENV !== 'production' ? invariant(false, 'dangerouslyReplaceNodeWithMarkup(...): Missing markup.') : _prodInvariant('57') : void 0;\n    !(oldChild.nodeName !== 'HTML') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'dangerouslyReplaceNodeWithMarkup(...): Cannot replace markup of the <html> node. This is because browser quirks make this unreliable and/or slow. If you want to render to the root you must use server rendering. See ReactDOMServer.renderToString().') : _prodInvariant('58') : void 0;\n\n    if (typeof markup === 'string') {\n      var newChild = createNodesFromMarkup(markup, emptyFunction)[0];\n      oldChild.parentNode.replaceChild(newChild, oldChild);\n    } else {\n      DOMLazyTree.replaceChildWithTree(oldChild, markup);\n    }\n  }\n\n};\n\nmodule.exports = Danger;\n}).call(this,require('_process'))\n},{\"./DOMLazyTree\":128,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/ExecutionEnvironment\":90,\"fbjs/lib/createNodesFromMarkup\":95,\"fbjs/lib/emptyFunction\":96,\"fbjs/lib/invariant\":104}],133:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\n/**\n * Module that is injectable into `EventPluginHub`, that specifies a\n * deterministic ordering of `EventPlugin`s. A convenient way to reason about\n * plugins, without having to package every one of them. This is better than\n * having plugins be ordered in the same order that they are injected because\n * that ordering would be influenced by the packaging order.\n * `ResponderEventPlugin` must occur before `SimpleEventPlugin` so that\n * preventing default on events is convenient in `SimpleEventPlugin` handlers.\n */\n\nvar DefaultEventPluginOrder = ['ResponderEventPlugin', 'SimpleEventPlugin', 'TapEventPlugin', 'EnterLeaveEventPlugin', 'ChangeEventPlugin', 'SelectEventPlugin', 'BeforeInputEventPlugin'];\n\nmodule.exports = DefaultEventPluginOrder;\n},{}],134:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar EventPropagators = require('./EventPropagators');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar SyntheticMouseEvent = require('./SyntheticMouseEvent');\n\nvar eventTypes = {\n  mouseEnter: {\n    registrationName: 'onMouseEnter',\n    dependencies: ['topMouseOut', 'topMouseOver']\n  },\n  mouseLeave: {\n    registrationName: 'onMouseLeave',\n    dependencies: ['topMouseOut', 'topMouseOver']\n  }\n};\n\nvar EnterLeaveEventPlugin = {\n\n  eventTypes: eventTypes,\n\n  /**\n   * For almost every interaction we care about, there will be both a top-level\n   * `mouseover` and `mouseout` event that occurs. Only use `mouseout` so that\n   * we do not extract duplicate events. However, moving the mouse into the\n   * browser from outside will not fire a `mouseout` event. In this case, we use\n   * the `mouseover` top-level event.\n   */\n  extractEvents: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n    if (topLevelType === 'topMouseOver' && (nativeEvent.relatedTarget || nativeEvent.fromElement)) {\n      return null;\n    }\n    if (topLevelType !== 'topMouseOut' && topLevelType !== 'topMouseOver') {\n      // Must not be a mouse in or mouse out - ignoring.\n      return null;\n    }\n\n    var win;\n    if (nativeEventTarget.window === nativeEventTarget) {\n      // `nativeEventTarget` is probably a window object.\n      win = nativeEventTarget;\n    } else {\n      // TODO: Figure out why `ownerDocument` is sometimes undefined in IE8.\n      var doc = nativeEventTarget.ownerDocument;\n      if (doc) {\n        win = doc.defaultView || doc.parentWindow;\n      } else {\n        win = window;\n      }\n    }\n\n    var from;\n    var to;\n    if (topLevelType === 'topMouseOut') {\n      from = targetInst;\n      var related = nativeEvent.relatedTarget || nativeEvent.toElement;\n      to = related ? ReactDOMComponentTree.getClosestInstanceFromNode(related) : null;\n    } else {\n      // Moving to a node from outside the window.\n      from = null;\n      to = targetInst;\n    }\n\n    if (from === to) {\n      // Nothing pertains to our managed components.\n      return null;\n    }\n\n    var fromNode = from == null ? win : ReactDOMComponentTree.getNodeFromInstance(from);\n    var toNode = to == null ? win : ReactDOMComponentTree.getNodeFromInstance(to);\n\n    var leave = SyntheticMouseEvent.getPooled(eventTypes.mouseLeave, from, nativeEvent, nativeEventTarget);\n    leave.type = 'mouseleave';\n    leave.target = fromNode;\n    leave.relatedTarget = toNode;\n\n    var enter = SyntheticMouseEvent.getPooled(eventTypes.mouseEnter, to, nativeEvent, nativeEventTarget);\n    enter.type = 'mouseenter';\n    enter.target = toNode;\n    enter.relatedTarget = fromNode;\n\n    EventPropagators.accumulateEnterLeaveDispatches(leave, enter, from, to);\n\n    return [leave, enter];\n  }\n\n};\n\nmodule.exports = EnterLeaveEventPlugin;\n},{\"./EventPropagators\":138,\"./ReactDOMComponentTree\":152,\"./SyntheticMouseEvent\":209}],135:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar EventPluginRegistry = require('./EventPluginRegistry');\nvar EventPluginUtils = require('./EventPluginUtils');\nvar ReactErrorUtils = require('./ReactErrorUtils');\n\nvar accumulateInto = require('./accumulateInto');\nvar forEachAccumulated = require('./forEachAccumulated');\nvar invariant = require('fbjs/lib/invariant');\n\n/**\n * Internal store for event listeners\n */\nvar listenerBank = {};\n\n/**\n * Internal queue of events that have accumulated their dispatches and are\n * waiting to have their dispatches executed.\n */\nvar eventQueue = null;\n\n/**\n * Dispatches an event and releases it back into the pool, unless persistent.\n *\n * @param {?object} event Synthetic event to be dispatched.\n * @param {boolean} simulated If the event is simulated (changes exn behavior)\n * @private\n */\nvar executeDispatchesAndRelease = function (event, simulated) {\n  if (event) {\n    EventPluginUtils.executeDispatchesInOrder(event, simulated);\n\n    if (!event.isPersistent()) {\n      event.constructor.release(event);\n    }\n  }\n};\nvar executeDispatchesAndReleaseSimulated = function (e) {\n  return executeDispatchesAndRelease(e, true);\n};\nvar executeDispatchesAndReleaseTopLevel = function (e) {\n  return executeDispatchesAndRelease(e, false);\n};\n\nvar getDictionaryKey = function (inst) {\n  // Prevents V8 performance issue:\n  // https://github.com/facebook/react/pull/7232\n  return '.' + inst._rootNodeID;\n};\n\nfunction isInteractive(tag) {\n  return tag === 'button' || tag === 'input' || tag === 'select' || tag === 'textarea';\n}\n\nfunction shouldPreventMouseEvent(name, type, props) {\n  switch (name) {\n    case 'onClick':\n    case 'onClickCapture':\n    case 'onDoubleClick':\n    case 'onDoubleClickCapture':\n    case 'onMouseDown':\n    case 'onMouseDownCapture':\n    case 'onMouseMove':\n    case 'onMouseMoveCapture':\n    case 'onMouseUp':\n    case 'onMouseUpCapture':\n      return !!(props.disabled && isInteractive(type));\n    default:\n      return false;\n  }\n}\n\n/**\n * This is a unified interface for event plugins to be installed and configured.\n *\n * Event plugins can implement the following properties:\n *\n *   `extractEvents` {function(string, DOMEventTarget, string, object): *}\n *     Required. When a top-level event is fired, this method is expected to\n *     extract synthetic events that will in turn be queued and dispatched.\n *\n *   `eventTypes` {object}\n *     Optional, plugins that fire events must publish a mapping of registration\n *     names that are used to register listeners. Values of this mapping must\n *     be objects that contain `registrationName` or `phasedRegistrationNames`.\n *\n *   `executeDispatch` {function(object, function, string)}\n *     Optional, allows plugins to override how an event gets dispatched. By\n *     default, the listener is simply invoked.\n *\n * Each plugin that is injected into `EventsPluginHub` is immediately operable.\n *\n * @public\n */\nvar EventPluginHub = {\n\n  /**\n   * Methods for injecting dependencies.\n   */\n  injection: {\n\n    /**\n     * @param {array} InjectedEventPluginOrder\n     * @public\n     */\n    injectEventPluginOrder: EventPluginRegistry.injectEventPluginOrder,\n\n    /**\n     * @param {object} injectedNamesToPlugins Map from names to plugin modules.\n     */\n    injectEventPluginsByName: EventPluginRegistry.injectEventPluginsByName\n\n  },\n\n  /**\n   * Stores `listener` at `listenerBank[registrationName][key]`. Is idempotent.\n   *\n   * @param {object} inst The instance, which is the source of events.\n   * @param {string} registrationName Name of listener (e.g. `onClick`).\n   * @param {function} listener The callback to store.\n   */\n  putListener: function (inst, registrationName, listener) {\n    !(typeof listener === 'function') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Expected %s listener to be a function, instead got type %s', registrationName, typeof listener) : _prodInvariant('94', registrationName, typeof listener) : void 0;\n\n    var key = getDictionaryKey(inst);\n    var bankForRegistrationName = listenerBank[registrationName] || (listenerBank[registrationName] = {});\n    bankForRegistrationName[key] = listener;\n\n    var PluginModule = EventPluginRegistry.registrationNameModules[registrationName];\n    if (PluginModule && PluginModule.didPutListener) {\n      PluginModule.didPutListener(inst, registrationName, listener);\n    }\n  },\n\n  /**\n   * @param {object} inst The instance, which is the source of events.\n   * @param {string} registrationName Name of listener (e.g. `onClick`).\n   * @return {?function} The stored callback.\n   */\n  getListener: function (inst, registrationName) {\n    // TODO: shouldPreventMouseEvent is DOM-specific and definitely should not\n    // live here; needs to be moved to a better place soon\n    var bankForRegistrationName = listenerBank[registrationName];\n    if (shouldPreventMouseEvent(registrationName, inst._currentElement.type, inst._currentElement.props)) {\n      return null;\n    }\n    var key = getDictionaryKey(inst);\n    return bankForRegistrationName && bankForRegistrationName[key];\n  },\n\n  /**\n   * Deletes a listener from the registration bank.\n   *\n   * @param {object} inst The instance, which is the source of events.\n   * @param {string} registrationName Name of listener (e.g. `onClick`).\n   */\n  deleteListener: function (inst, registrationName) {\n    var PluginModule = EventPluginRegistry.registrationNameModules[registrationName];\n    if (PluginModule && PluginModule.willDeleteListener) {\n      PluginModule.willDeleteListener(inst, registrationName);\n    }\n\n    var bankForRegistrationName = listenerBank[registrationName];\n    // TODO: This should never be null -- when is it?\n    if (bankForRegistrationName) {\n      var key = getDictionaryKey(inst);\n      delete bankForRegistrationName[key];\n    }\n  },\n\n  /**\n   * Deletes all listeners for the DOM element with the supplied ID.\n   *\n   * @param {object} inst The instance, which is the source of events.\n   */\n  deleteAllListeners: function (inst) {\n    var key = getDictionaryKey(inst);\n    for (var registrationName in listenerBank) {\n      if (!listenerBank.hasOwnProperty(registrationName)) {\n        continue;\n      }\n\n      if (!listenerBank[registrationName][key]) {\n        continue;\n      }\n\n      var PluginModule = EventPluginRegistry.registrationNameModules[registrationName];\n      if (PluginModule && PluginModule.willDeleteListener) {\n        PluginModule.willDeleteListener(inst, registrationName);\n      }\n\n      delete listenerBank[registrationName][key];\n    }\n  },\n\n  /**\n   * Allows registered plugins an opportunity to extract events from top-level\n   * native browser events.\n   *\n   * @return {*} An accumulation of synthetic events.\n   * @internal\n   */\n  extractEvents: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n    var events;\n    var plugins = EventPluginRegistry.plugins;\n    for (var i = 0; i < plugins.length; i++) {\n      // Not every plugin in the ordering may be loaded at runtime.\n      var possiblePlugin = plugins[i];\n      if (possiblePlugin) {\n        var extractedEvents = possiblePlugin.extractEvents(topLevelType, targetInst, nativeEvent, nativeEventTarget);\n        if (extractedEvents) {\n          events = accumulateInto(events, extractedEvents);\n        }\n      }\n    }\n    return events;\n  },\n\n  /**\n   * Enqueues a synthetic event that should be dispatched when\n   * `processEventQueue` is invoked.\n   *\n   * @param {*} events An accumulation of synthetic events.\n   * @internal\n   */\n  enqueueEvents: function (events) {\n    if (events) {\n      eventQueue = accumulateInto(eventQueue, events);\n    }\n  },\n\n  /**\n   * Dispatches all synthetic events on the event queue.\n   *\n   * @internal\n   */\n  processEventQueue: function (simulated) {\n    // Set `eventQueue` to null before processing it so that we can tell if more\n    // events get enqueued while processing.\n    var processingEventQueue = eventQueue;\n    eventQueue = null;\n    if (simulated) {\n      forEachAccumulated(processingEventQueue, executeDispatchesAndReleaseSimulated);\n    } else {\n      forEachAccumulated(processingEventQueue, executeDispatchesAndReleaseTopLevel);\n    }\n    !!eventQueue ? process.env.NODE_ENV !== 'production' ? invariant(false, 'processEventQueue(): Additional events were enqueued while processing an event queue. Support for this has not yet been implemented.') : _prodInvariant('95') : void 0;\n    // This would be a good time to rethrow if any of the event handlers threw.\n    ReactErrorUtils.rethrowCaughtError();\n  },\n\n  /**\n   * These are needed for tests only. Do not use!\n   */\n  __purge: function () {\n    listenerBank = {};\n  },\n\n  __getListenerBank: function () {\n    return listenerBank;\n  }\n\n};\n\nmodule.exports = EventPluginHub;\n}).call(this,require('_process'))\n},{\"./EventPluginRegistry\":136,\"./EventPluginUtils\":137,\"./ReactErrorUtils\":172,\"./accumulateInto\":216,\"./forEachAccumulated\":224,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104}],136:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar invariant = require('fbjs/lib/invariant');\n\n/**\n * Injectable ordering of event plugins.\n */\nvar eventPluginOrder = null;\n\n/**\n * Injectable mapping from names to event plugin modules.\n */\nvar namesToPlugins = {};\n\n/**\n * Recomputes the plugin list using the injected plugins and plugin ordering.\n *\n * @private\n */\nfunction recomputePluginOrdering() {\n  if (!eventPluginOrder) {\n    // Wait until an `eventPluginOrder` is injected.\n    return;\n  }\n  for (var pluginName in namesToPlugins) {\n    var pluginModule = namesToPlugins[pluginName];\n    var pluginIndex = eventPluginOrder.indexOf(pluginName);\n    !(pluginIndex > -1) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'EventPluginRegistry: Cannot inject event plugins that do not exist in the plugin ordering, `%s`.', pluginName) : _prodInvariant('96', pluginName) : void 0;\n    if (EventPluginRegistry.plugins[pluginIndex]) {\n      continue;\n    }\n    !pluginModule.extractEvents ? process.env.NODE_ENV !== 'production' ? invariant(false, 'EventPluginRegistry: Event plugins must implement an `extractEvents` method, but `%s` does not.', pluginName) : _prodInvariant('97', pluginName) : void 0;\n    EventPluginRegistry.plugins[pluginIndex] = pluginModule;\n    var publishedEvents = pluginModule.eventTypes;\n    for (var eventName in publishedEvents) {\n      !publishEventForPlugin(publishedEvents[eventName], pluginModule, eventName) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'EventPluginRegistry: Failed to publish event `%s` for plugin `%s`.', eventName, pluginName) : _prodInvariant('98', eventName, pluginName) : void 0;\n    }\n  }\n}\n\n/**\n * Publishes an event so that it can be dispatched by the supplied plugin.\n *\n * @param {object} dispatchConfig Dispatch configuration for the event.\n * @param {object} PluginModule Plugin publishing the event.\n * @return {boolean} True if the event was successfully published.\n * @private\n */\nfunction publishEventForPlugin(dispatchConfig, pluginModule, eventName) {\n  !!EventPluginRegistry.eventNameDispatchConfigs.hasOwnProperty(eventName) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'EventPluginHub: More than one plugin attempted to publish the same event name, `%s`.', eventName) : _prodInvariant('99', eventName) : void 0;\n  EventPluginRegistry.eventNameDispatchConfigs[eventName] = dispatchConfig;\n\n  var phasedRegistrationNames = dispatchConfig.phasedRegistrationNames;\n  if (phasedRegistrationNames) {\n    for (var phaseName in phasedRegistrationNames) {\n      if (phasedRegistrationNames.hasOwnProperty(phaseName)) {\n        var phasedRegistrationName = phasedRegistrationNames[phaseName];\n        publishRegistrationName(phasedRegistrationName, pluginModule, eventName);\n      }\n    }\n    return true;\n  } else if (dispatchConfig.registrationName) {\n    publishRegistrationName(dispatchConfig.registrationName, pluginModule, eventName);\n    return true;\n  }\n  return false;\n}\n\n/**\n * Publishes a registration name that is used to identify dispatched events and\n * can be used with `EventPluginHub.putListener` to register listeners.\n *\n * @param {string} registrationName Registration name to add.\n * @param {object} PluginModule Plugin publishing the event.\n * @private\n */\nfunction publishRegistrationName(registrationName, pluginModule, eventName) {\n  !!EventPluginRegistry.registrationNameModules[registrationName] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'EventPluginHub: More than one plugin attempted to publish the same registration name, `%s`.', registrationName) : _prodInvariant('100', registrationName) : void 0;\n  EventPluginRegistry.registrationNameModules[registrationName] = pluginModule;\n  EventPluginRegistry.registrationNameDependencies[registrationName] = pluginModule.eventTypes[eventName].dependencies;\n\n  if (process.env.NODE_ENV !== 'production') {\n    var lowerCasedName = registrationName.toLowerCase();\n    EventPluginRegistry.possibleRegistrationNames[lowerCasedName] = registrationName;\n\n    if (registrationName === 'onDoubleClick') {\n      EventPluginRegistry.possibleRegistrationNames.ondblclick = registrationName;\n    }\n  }\n}\n\n/**\n * Registers plugins so that they can extract and dispatch events.\n *\n * @see {EventPluginHub}\n */\nvar EventPluginRegistry = {\n\n  /**\n   * Ordered list of injected plugins.\n   */\n  plugins: [],\n\n  /**\n   * Mapping from event name to dispatch config\n   */\n  eventNameDispatchConfigs: {},\n\n  /**\n   * Mapping from registration name to plugin module\n   */\n  registrationNameModules: {},\n\n  /**\n   * Mapping from registration name to event name\n   */\n  registrationNameDependencies: {},\n\n  /**\n   * Mapping from lowercase registration names to the properly cased version,\n   * used to warn in the case of missing event handlers. Available\n   * only in __DEV__.\n   * @type {Object}\n   */\n  possibleRegistrationNames: process.env.NODE_ENV !== 'production' ? {} : null,\n  // Trust the developer to only use possibleRegistrationNames in __DEV__\n\n  /**\n   * Injects an ordering of plugins (by plugin name). This allows the ordering\n   * to be decoupled from injection of the actual plugins so that ordering is\n   * always deterministic regardless of packaging, on-the-fly injection, etc.\n   *\n   * @param {array} InjectedEventPluginOrder\n   * @internal\n   * @see {EventPluginHub.injection.injectEventPluginOrder}\n   */\n  injectEventPluginOrder: function (injectedEventPluginOrder) {\n    !!eventPluginOrder ? process.env.NODE_ENV !== 'production' ? invariant(false, 'EventPluginRegistry: Cannot inject event plugin ordering more than once. You are likely trying to load more than one copy of React.') : _prodInvariant('101') : void 0;\n    // Clone the ordering so it cannot be dynamically mutated.\n    eventPluginOrder = Array.prototype.slice.call(injectedEventPluginOrder);\n    recomputePluginOrdering();\n  },\n\n  /**\n   * Injects plugins to be used by `EventPluginHub`. The plugin names must be\n   * in the ordering injected by `injectEventPluginOrder`.\n   *\n   * Plugins can be injected as part of page initialization or on-the-fly.\n   *\n   * @param {object} injectedNamesToPlugins Map from names to plugin modules.\n   * @internal\n   * @see {EventPluginHub.injection.injectEventPluginsByName}\n   */\n  injectEventPluginsByName: function (injectedNamesToPlugins) {\n    var isOrderingDirty = false;\n    for (var pluginName in injectedNamesToPlugins) {\n      if (!injectedNamesToPlugins.hasOwnProperty(pluginName)) {\n        continue;\n      }\n      var pluginModule = injectedNamesToPlugins[pluginName];\n      if (!namesToPlugins.hasOwnProperty(pluginName) || namesToPlugins[pluginName] !== pluginModule) {\n        !!namesToPlugins[pluginName] ? process.env.NODE_ENV !== 'production' ? invariant(false, 'EventPluginRegistry: Cannot inject two different event plugins using the same name, `%s`.', pluginName) : _prodInvariant('102', pluginName) : void 0;\n        namesToPlugins[pluginName] = pluginModule;\n        isOrderingDirty = true;\n      }\n    }\n    if (isOrderingDirty) {\n      recomputePluginOrdering();\n    }\n  },\n\n  /**\n   * Looks up the plugin for the supplied event.\n   *\n   * @param {object} event A synthetic event.\n   * @return {?object} The plugin that created the supplied event.\n   * @internal\n   */\n  getPluginModuleForEvent: function (event) {\n    var dispatchConfig = event.dispatchConfig;\n    if (dispatchConfig.registrationName) {\n      return EventPluginRegistry.registrationNameModules[dispatchConfig.registrationName] || null;\n    }\n    if (dispatchConfig.phasedRegistrationNames !== undefined) {\n      // pulling phasedRegistrationNames out of dispatchConfig helps Flow see\n      // that it is not undefined.\n      var phasedRegistrationNames = dispatchConfig.phasedRegistrationNames;\n\n      for (var phase in phasedRegistrationNames) {\n        if (!phasedRegistrationNames.hasOwnProperty(phase)) {\n          continue;\n        }\n        var pluginModule = EventPluginRegistry.registrationNameModules[phasedRegistrationNames[phase]];\n        if (pluginModule) {\n          return pluginModule;\n        }\n      }\n    }\n    return null;\n  },\n\n  /**\n   * Exposed for unit testing.\n   * @private\n   */\n  _resetEventPlugins: function () {\n    eventPluginOrder = null;\n    for (var pluginName in namesToPlugins) {\n      if (namesToPlugins.hasOwnProperty(pluginName)) {\n        delete namesToPlugins[pluginName];\n      }\n    }\n    EventPluginRegistry.plugins.length = 0;\n\n    var eventNameDispatchConfigs = EventPluginRegistry.eventNameDispatchConfigs;\n    for (var eventName in eventNameDispatchConfigs) {\n      if (eventNameDispatchConfigs.hasOwnProperty(eventName)) {\n        delete eventNameDispatchConfigs[eventName];\n      }\n    }\n\n    var registrationNameModules = EventPluginRegistry.registrationNameModules;\n    for (var registrationName in registrationNameModules) {\n      if (registrationNameModules.hasOwnProperty(registrationName)) {\n        delete registrationNameModules[registrationName];\n      }\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      var possibleRegistrationNames = EventPluginRegistry.possibleRegistrationNames;\n      for (var lowerCasedName in possibleRegistrationNames) {\n        if (possibleRegistrationNames.hasOwnProperty(lowerCasedName)) {\n          delete possibleRegistrationNames[lowerCasedName];\n        }\n      }\n    }\n  }\n\n};\n\nmodule.exports = EventPluginRegistry;\n}).call(this,require('_process'))\n},{\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104}],137:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar ReactErrorUtils = require('./ReactErrorUtils');\n\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\n/**\n * Injected dependencies:\n */\n\n/**\n * - `ComponentTree`: [required] Module that can convert between React instances\n *   and actual node references.\n */\nvar ComponentTree;\nvar TreeTraversal;\nvar injection = {\n  injectComponentTree: function (Injected) {\n    ComponentTree = Injected;\n    if (process.env.NODE_ENV !== 'production') {\n      process.env.NODE_ENV !== 'production' ? warning(Injected && Injected.getNodeFromInstance && Injected.getInstanceFromNode, 'EventPluginUtils.injection.injectComponentTree(...): Injected ' + 'module is missing getNodeFromInstance or getInstanceFromNode.') : void 0;\n    }\n  },\n  injectTreeTraversal: function (Injected) {\n    TreeTraversal = Injected;\n    if (process.env.NODE_ENV !== 'production') {\n      process.env.NODE_ENV !== 'production' ? warning(Injected && Injected.isAncestor && Injected.getLowestCommonAncestor, 'EventPluginUtils.injection.injectTreeTraversal(...): Injected ' + 'module is missing isAncestor or getLowestCommonAncestor.') : void 0;\n    }\n  }\n};\n\nfunction isEndish(topLevelType) {\n  return topLevelType === 'topMouseUp' || topLevelType === 'topTouchEnd' || topLevelType === 'topTouchCancel';\n}\n\nfunction isMoveish(topLevelType) {\n  return topLevelType === 'topMouseMove' || topLevelType === 'topTouchMove';\n}\nfunction isStartish(topLevelType) {\n  return topLevelType === 'topMouseDown' || topLevelType === 'topTouchStart';\n}\n\nvar validateEventDispatches;\nif (process.env.NODE_ENV !== 'production') {\n  validateEventDispatches = function (event) {\n    var dispatchListeners = event._dispatchListeners;\n    var dispatchInstances = event._dispatchInstances;\n\n    var listenersIsArr = Array.isArray(dispatchListeners);\n    var listenersLen = listenersIsArr ? dispatchListeners.length : dispatchListeners ? 1 : 0;\n\n    var instancesIsArr = Array.isArray(dispatchInstances);\n    var instancesLen = instancesIsArr ? dispatchInstances.length : dispatchInstances ? 1 : 0;\n\n    process.env.NODE_ENV !== 'production' ? warning(instancesIsArr === listenersIsArr && instancesLen === listenersLen, 'EventPluginUtils: Invalid `event`.') : void 0;\n  };\n}\n\n/**\n * Dispatch the event to the listener.\n * @param {SyntheticEvent} event SyntheticEvent to handle\n * @param {boolean} simulated If the event is simulated (changes exn behavior)\n * @param {function} listener Application-level callback\n * @param {*} inst Internal component instance\n */\nfunction executeDispatch(event, simulated, listener, inst) {\n  var type = event.type || 'unknown-event';\n  event.currentTarget = EventPluginUtils.getNodeFromInstance(inst);\n  if (simulated) {\n    ReactErrorUtils.invokeGuardedCallbackWithCatch(type, listener, event);\n  } else {\n    ReactErrorUtils.invokeGuardedCallback(type, listener, event);\n  }\n  event.currentTarget = null;\n}\n\n/**\n * Standard/simple iteration through an event's collected dispatches.\n */\nfunction executeDispatchesInOrder(event, simulated) {\n  var dispatchListeners = event._dispatchListeners;\n  var dispatchInstances = event._dispatchInstances;\n  if (process.env.NODE_ENV !== 'production') {\n    validateEventDispatches(event);\n  }\n  if (Array.isArray(dispatchListeners)) {\n    for (var i = 0; i < dispatchListeners.length; i++) {\n      if (event.isPropagationStopped()) {\n        break;\n      }\n      // Listeners and Instances are two parallel arrays that are always in sync.\n      executeDispatch(event, simulated, dispatchListeners[i], dispatchInstances[i]);\n    }\n  } else if (dispatchListeners) {\n    executeDispatch(event, simulated, dispatchListeners, dispatchInstances);\n  }\n  event._dispatchListeners = null;\n  event._dispatchInstances = null;\n}\n\n/**\n * Standard/simple iteration through an event's collected dispatches, but stops\n * at the first dispatch execution returning true, and returns that id.\n *\n * @return {?string} id of the first dispatch execution who's listener returns\n * true, or null if no listener returned true.\n */\nfunction executeDispatchesInOrderStopAtTrueImpl(event) {\n  var dispatchListeners = event._dispatchListeners;\n  var dispatchInstances = event._dispatchInstances;\n  if (process.env.NODE_ENV !== 'production') {\n    validateEventDispatches(event);\n  }\n  if (Array.isArray(dispatchListeners)) {\n    for (var i = 0; i < dispatchListeners.length; i++) {\n      if (event.isPropagationStopped()) {\n        break;\n      }\n      // Listeners and Instances are two parallel arrays that are always in sync.\n      if (dispatchListeners[i](event, dispatchInstances[i])) {\n        return dispatchInstances[i];\n      }\n    }\n  } else if (dispatchListeners) {\n    if (dispatchListeners(event, dispatchInstances)) {\n      return dispatchInstances;\n    }\n  }\n  return null;\n}\n\n/**\n * @see executeDispatchesInOrderStopAtTrueImpl\n */\nfunction executeDispatchesInOrderStopAtTrue(event) {\n  var ret = executeDispatchesInOrderStopAtTrueImpl(event);\n  event._dispatchInstances = null;\n  event._dispatchListeners = null;\n  return ret;\n}\n\n/**\n * Execution of a \"direct\" dispatch - there must be at most one dispatch\n * accumulated on the event or it is considered an error. It doesn't really make\n * sense for an event with multiple dispatches (bubbled) to keep track of the\n * return values at each dispatch execution, but it does tend to make sense when\n * dealing with \"direct\" dispatches.\n *\n * @return {*} The return value of executing the single dispatch.\n */\nfunction executeDirectDispatch(event) {\n  if (process.env.NODE_ENV !== 'production') {\n    validateEventDispatches(event);\n  }\n  var dispatchListener = event._dispatchListeners;\n  var dispatchInstance = event._dispatchInstances;\n  !!Array.isArray(dispatchListener) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'executeDirectDispatch(...): Invalid `event`.') : _prodInvariant('103') : void 0;\n  event.currentTarget = dispatchListener ? EventPluginUtils.getNodeFromInstance(dispatchInstance) : null;\n  var res = dispatchListener ? dispatchListener(event) : null;\n  event.currentTarget = null;\n  event._dispatchListeners = null;\n  event._dispatchInstances = null;\n  return res;\n}\n\n/**\n * @param {SyntheticEvent} event\n * @return {boolean} True iff number of dispatches accumulated is greater than 0.\n */\nfunction hasDispatches(event) {\n  return !!event._dispatchListeners;\n}\n\n/**\n * General utilities that are useful in creating custom Event Plugins.\n */\nvar EventPluginUtils = {\n  isEndish: isEndish,\n  isMoveish: isMoveish,\n  isStartish: isStartish,\n\n  executeDirectDispatch: executeDirectDispatch,\n  executeDispatchesInOrder: executeDispatchesInOrder,\n  executeDispatchesInOrderStopAtTrue: executeDispatchesInOrderStopAtTrue,\n  hasDispatches: hasDispatches,\n\n  getInstanceFromNode: function (node) {\n    return ComponentTree.getInstanceFromNode(node);\n  },\n  getNodeFromInstance: function (node) {\n    return ComponentTree.getNodeFromInstance(node);\n  },\n  isAncestor: function (a, b) {\n    return TreeTraversal.isAncestor(a, b);\n  },\n  getLowestCommonAncestor: function (a, b) {\n    return TreeTraversal.getLowestCommonAncestor(a, b);\n  },\n  getParentInstance: function (inst) {\n    return TreeTraversal.getParentInstance(inst);\n  },\n  traverseTwoPhase: function (target, fn, arg) {\n    return TreeTraversal.traverseTwoPhase(target, fn, arg);\n  },\n  traverseEnterLeave: function (from, to, fn, argFrom, argTo) {\n    return TreeTraversal.traverseEnterLeave(from, to, fn, argFrom, argTo);\n  },\n\n  injection: injection\n};\n\nmodule.exports = EventPluginUtils;\n}).call(this,require('_process'))\n},{\"./ReactErrorUtils\":172,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111}],138:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar EventPluginHub = require('./EventPluginHub');\nvar EventPluginUtils = require('./EventPluginUtils');\n\nvar accumulateInto = require('./accumulateInto');\nvar forEachAccumulated = require('./forEachAccumulated');\nvar warning = require('fbjs/lib/warning');\n\nvar getListener = EventPluginHub.getListener;\n\n/**\n * Some event types have a notion of different registration names for different\n * \"phases\" of propagation. This finds listeners by a given phase.\n */\nfunction listenerAtPhase(inst, event, propagationPhase) {\n  var registrationName = event.dispatchConfig.phasedRegistrationNames[propagationPhase];\n  return getListener(inst, registrationName);\n}\n\n/**\n * Tags a `SyntheticEvent` with dispatched listeners. Creating this function\n * here, allows us to not have to bind or create functions for each event.\n * Mutating the event's members allows us to not have to create a wrapping\n * \"dispatch\" object that pairs the event with the listener.\n */\nfunction accumulateDirectionalDispatches(inst, phase, event) {\n  if (process.env.NODE_ENV !== 'production') {\n    process.env.NODE_ENV !== 'production' ? warning(inst, 'Dispatching inst must not be null') : void 0;\n  }\n  var listener = listenerAtPhase(inst, event, phase);\n  if (listener) {\n    event._dispatchListeners = accumulateInto(event._dispatchListeners, listener);\n    event._dispatchInstances = accumulateInto(event._dispatchInstances, inst);\n  }\n}\n\n/**\n * Collect dispatches (must be entirely collected before dispatching - see unit\n * tests). Lazily allocate the array to conserve memory.  We must loop through\n * each event and perform the traversal for each one. We cannot perform a\n * single traversal for the entire collection of events because each event may\n * have a different target.\n */\nfunction accumulateTwoPhaseDispatchesSingle(event) {\n  if (event && event.dispatchConfig.phasedRegistrationNames) {\n    EventPluginUtils.traverseTwoPhase(event._targetInst, accumulateDirectionalDispatches, event);\n  }\n}\n\n/**\n * Same as `accumulateTwoPhaseDispatchesSingle`, but skips over the targetID.\n */\nfunction accumulateTwoPhaseDispatchesSingleSkipTarget(event) {\n  if (event && event.dispatchConfig.phasedRegistrationNames) {\n    var targetInst = event._targetInst;\n    var parentInst = targetInst ? EventPluginUtils.getParentInstance(targetInst) : null;\n    EventPluginUtils.traverseTwoPhase(parentInst, accumulateDirectionalDispatches, event);\n  }\n}\n\n/**\n * Accumulates without regard to direction, does not look for phased\n * registration names. Same as `accumulateDirectDispatchesSingle` but without\n * requiring that the `dispatchMarker` be the same as the dispatched ID.\n */\nfunction accumulateDispatches(inst, ignoredDirection, event) {\n  if (event && event.dispatchConfig.registrationName) {\n    var registrationName = event.dispatchConfig.registrationName;\n    var listener = getListener(inst, registrationName);\n    if (listener) {\n      event._dispatchListeners = accumulateInto(event._dispatchListeners, listener);\n      event._dispatchInstances = accumulateInto(event._dispatchInstances, inst);\n    }\n  }\n}\n\n/**\n * Accumulates dispatches on an `SyntheticEvent`, but only for the\n * `dispatchMarker`.\n * @param {SyntheticEvent} event\n */\nfunction accumulateDirectDispatchesSingle(event) {\n  if (event && event.dispatchConfig.registrationName) {\n    accumulateDispatches(event._targetInst, null, event);\n  }\n}\n\nfunction accumulateTwoPhaseDispatches(events) {\n  forEachAccumulated(events, accumulateTwoPhaseDispatchesSingle);\n}\n\nfunction accumulateTwoPhaseDispatchesSkipTarget(events) {\n  forEachAccumulated(events, accumulateTwoPhaseDispatchesSingleSkipTarget);\n}\n\nfunction accumulateEnterLeaveDispatches(leave, enter, from, to) {\n  EventPluginUtils.traverseEnterLeave(from, to, accumulateDispatches, leave, enter);\n}\n\nfunction accumulateDirectDispatches(events) {\n  forEachAccumulated(events, accumulateDirectDispatchesSingle);\n}\n\n/**\n * A small set of propagation patterns, each of which will accept a small amount\n * of information, and generate a set of \"dispatch ready event objects\" - which\n * are sets of events that have already been annotated with a set of dispatched\n * listener functions/ids. The API is designed this way to discourage these\n * propagation strategies from actually executing the dispatches, since we\n * always want to collect the entire set of dispatches before executing event a\n * single one.\n *\n * @constructor EventPropagators\n */\nvar EventPropagators = {\n  accumulateTwoPhaseDispatches: accumulateTwoPhaseDispatches,\n  accumulateTwoPhaseDispatchesSkipTarget: accumulateTwoPhaseDispatchesSkipTarget,\n  accumulateDirectDispatches: accumulateDirectDispatches,\n  accumulateEnterLeaveDispatches: accumulateEnterLeaveDispatches\n};\n\nmodule.exports = EventPropagators;\n}).call(this,require('_process'))\n},{\"./EventPluginHub\":135,\"./EventPluginUtils\":137,\"./accumulateInto\":216,\"./forEachAccumulated\":224,\"_process\":112,\"fbjs/lib/warning\":111}],139:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar PooledClass = require('./PooledClass');\n\nvar getTextContentAccessor = require('./getTextContentAccessor');\n\n/**\n * This helper class stores information about text content of a target node,\n * allowing comparison of content before and after a given event.\n *\n * Identify the node where selection currently begins, then observe\n * both its text content and its current position in the DOM. Since the\n * browser may natively replace the target node during composition, we can\n * use its position to find its replacement.\n *\n * @param {DOMEventTarget} root\n */\nfunction FallbackCompositionState(root) {\n  this._root = root;\n  this._startText = this.getText();\n  this._fallbackText = null;\n}\n\n_assign(FallbackCompositionState.prototype, {\n  destructor: function () {\n    this._root = null;\n    this._startText = null;\n    this._fallbackText = null;\n  },\n\n  /**\n   * Get current text of input.\n   *\n   * @return {string}\n   */\n  getText: function () {\n    if ('value' in this._root) {\n      return this._root.value;\n    }\n    return this._root[getTextContentAccessor()];\n  },\n\n  /**\n   * Determine the differing substring between the initially stored\n   * text content and the current content.\n   *\n   * @return {string}\n   */\n  getData: function () {\n    if (this._fallbackText) {\n      return this._fallbackText;\n    }\n\n    var start;\n    var startValue = this._startText;\n    var startLength = startValue.length;\n    var end;\n    var endValue = this.getText();\n    var endLength = endValue.length;\n\n    for (start = 0; start < startLength; start++) {\n      if (startValue[start] !== endValue[start]) {\n        break;\n      }\n    }\n\n    var minEnd = startLength - start;\n    for (end = 1; end <= minEnd; end++) {\n      if (startValue[startLength - end] !== endValue[endLength - end]) {\n        break;\n      }\n    }\n\n    var sliceTail = end > 1 ? 1 - end : undefined;\n    this._fallbackText = endValue.slice(start, sliceTail);\n    return this._fallbackText;\n  }\n});\n\nPooledClass.addPoolingTo(FallbackCompositionState);\n\nmodule.exports = FallbackCompositionState;\n},{\"./PooledClass\":143,\"./getTextContentAccessor\":232,\"object-assign\":114}],140:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar DOMProperty = require('./DOMProperty');\n\nvar MUST_USE_PROPERTY = DOMProperty.injection.MUST_USE_PROPERTY;\nvar HAS_BOOLEAN_VALUE = DOMProperty.injection.HAS_BOOLEAN_VALUE;\nvar HAS_NUMERIC_VALUE = DOMProperty.injection.HAS_NUMERIC_VALUE;\nvar HAS_POSITIVE_NUMERIC_VALUE = DOMProperty.injection.HAS_POSITIVE_NUMERIC_VALUE;\nvar HAS_OVERLOADED_BOOLEAN_VALUE = DOMProperty.injection.HAS_OVERLOADED_BOOLEAN_VALUE;\n\nvar HTMLDOMPropertyConfig = {\n  isCustomAttribute: RegExp.prototype.test.bind(new RegExp('^(data|aria)-[' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$')),\n  Properties: {\n    /**\n     * Standard Properties\n     */\n    accept: 0,\n    acceptCharset: 0,\n    accessKey: 0,\n    action: 0,\n    allowFullScreen: HAS_BOOLEAN_VALUE,\n    allowTransparency: 0,\n    alt: 0,\n    // specifies target context for links with `preload` type\n    as: 0,\n    async: HAS_BOOLEAN_VALUE,\n    autoComplete: 0,\n    // autoFocus is polyfilled/normalized by AutoFocusUtils\n    // autoFocus: HAS_BOOLEAN_VALUE,\n    autoPlay: HAS_BOOLEAN_VALUE,\n    capture: HAS_BOOLEAN_VALUE,\n    cellPadding: 0,\n    cellSpacing: 0,\n    charSet: 0,\n    challenge: 0,\n    checked: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,\n    cite: 0,\n    classID: 0,\n    className: 0,\n    cols: HAS_POSITIVE_NUMERIC_VALUE,\n    colSpan: 0,\n    content: 0,\n    contentEditable: 0,\n    contextMenu: 0,\n    controls: HAS_BOOLEAN_VALUE,\n    coords: 0,\n    crossOrigin: 0,\n    data: 0, // For `<object />` acts as `src`.\n    dateTime: 0,\n    'default': HAS_BOOLEAN_VALUE,\n    defer: HAS_BOOLEAN_VALUE,\n    dir: 0,\n    disabled: HAS_BOOLEAN_VALUE,\n    download: HAS_OVERLOADED_BOOLEAN_VALUE,\n    draggable: 0,\n    encType: 0,\n    form: 0,\n    formAction: 0,\n    formEncType: 0,\n    formMethod: 0,\n    formNoValidate: HAS_BOOLEAN_VALUE,\n    formTarget: 0,\n    frameBorder: 0,\n    headers: 0,\n    height: 0,\n    hidden: HAS_BOOLEAN_VALUE,\n    high: 0,\n    href: 0,\n    hrefLang: 0,\n    htmlFor: 0,\n    httpEquiv: 0,\n    icon: 0,\n    id: 0,\n    inputMode: 0,\n    integrity: 0,\n    is: 0,\n    keyParams: 0,\n    keyType: 0,\n    kind: 0,\n    label: 0,\n    lang: 0,\n    list: 0,\n    loop: HAS_BOOLEAN_VALUE,\n    low: 0,\n    manifest: 0,\n    marginHeight: 0,\n    marginWidth: 0,\n    max: 0,\n    maxLength: 0,\n    media: 0,\n    mediaGroup: 0,\n    method: 0,\n    min: 0,\n    minLength: 0,\n    // Caution; `option.selected` is not updated if `select.multiple` is\n    // disabled with `removeAttribute`.\n    multiple: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,\n    muted: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,\n    name: 0,\n    nonce: 0,\n    noValidate: HAS_BOOLEAN_VALUE,\n    open: HAS_BOOLEAN_VALUE,\n    optimum: 0,\n    pattern: 0,\n    placeholder: 0,\n    playsInline: HAS_BOOLEAN_VALUE,\n    poster: 0,\n    preload: 0,\n    profile: 0,\n    radioGroup: 0,\n    readOnly: HAS_BOOLEAN_VALUE,\n    referrerPolicy: 0,\n    rel: 0,\n    required: HAS_BOOLEAN_VALUE,\n    reversed: HAS_BOOLEAN_VALUE,\n    role: 0,\n    rows: HAS_POSITIVE_NUMERIC_VALUE,\n    rowSpan: HAS_NUMERIC_VALUE,\n    sandbox: 0,\n    scope: 0,\n    scoped: HAS_BOOLEAN_VALUE,\n    scrolling: 0,\n    seamless: HAS_BOOLEAN_VALUE,\n    selected: MUST_USE_PROPERTY | HAS_BOOLEAN_VALUE,\n    shape: 0,\n    size: HAS_POSITIVE_NUMERIC_VALUE,\n    sizes: 0,\n    span: HAS_POSITIVE_NUMERIC_VALUE,\n    spellCheck: 0,\n    src: 0,\n    srcDoc: 0,\n    srcLang: 0,\n    srcSet: 0,\n    start: HAS_NUMERIC_VALUE,\n    step: 0,\n    style: 0,\n    summary: 0,\n    tabIndex: 0,\n    target: 0,\n    title: 0,\n    // Setting .type throws on non-<input> tags\n    type: 0,\n    useMap: 0,\n    value: 0,\n    width: 0,\n    wmode: 0,\n    wrap: 0,\n\n    /**\n     * RDFa Properties\n     */\n    about: 0,\n    datatype: 0,\n    inlist: 0,\n    prefix: 0,\n    // property is also supported for OpenGraph in meta tags.\n    property: 0,\n    resource: 0,\n    'typeof': 0,\n    vocab: 0,\n\n    /**\n     * Non-standard Properties\n     */\n    // autoCapitalize and autoCorrect are supported in Mobile Safari for\n    // keyboard hints.\n    autoCapitalize: 0,\n    autoCorrect: 0,\n    // autoSave allows WebKit/Blink to persist values of input fields on page reloads\n    autoSave: 0,\n    // color is for Safari mask-icon link\n    color: 0,\n    // itemProp, itemScope, itemType are for\n    // Microdata support. See http://schema.org/docs/gs.html\n    itemProp: 0,\n    itemScope: HAS_BOOLEAN_VALUE,\n    itemType: 0,\n    // itemID and itemRef are for Microdata support as well but\n    // only specified in the WHATWG spec document. See\n    // https://html.spec.whatwg.org/multipage/microdata.html#microdata-dom-api\n    itemID: 0,\n    itemRef: 0,\n    // results show looking glass icon and recent searches on input\n    // search fields in WebKit/Blink\n    results: 0,\n    // IE-only attribute that specifies security restrictions on an iframe\n    // as an alternative to the sandbox attribute on IE<10\n    security: 0,\n    // IE-only attribute that controls focus behavior\n    unselectable: 0\n  },\n  DOMAttributeNames: {\n    acceptCharset: 'accept-charset',\n    className: 'class',\n    htmlFor: 'for',\n    httpEquiv: 'http-equiv'\n  },\n  DOMPropertyNames: {},\n  DOMMutationMethods: {\n    value: function (node, value) {\n      if (value == null) {\n        return node.removeAttribute('value');\n      }\n\n      // Number inputs get special treatment due to some edge cases in\n      // Chrome. Let everything else assign the value attribute as normal.\n      // https://github.com/facebook/react/issues/7253#issuecomment-236074326\n      if (node.type !== 'number' || node.hasAttribute('value') === false) {\n        node.setAttribute('value', '' + value);\n      } else if (node.validity && !node.validity.badInput && node.ownerDocument.activeElement !== node) {\n        // Don't assign an attribute if validation reports bad\n        // input. Chrome will clear the value. Additionally, don't\n        // operate on inputs that have focus, otherwise Chrome might\n        // strip off trailing decimal places and cause the user's\n        // cursor position to jump to the beginning of the input.\n        //\n        // In ReactDOMInput, we have an onBlur event that will trigger\n        // this function again when focus is lost.\n        node.setAttribute('value', '' + value);\n      }\n    }\n  }\n};\n\nmodule.exports = HTMLDOMPropertyConfig;\n},{\"./DOMProperty\":130}],141:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\n/**\n * Escape and wrap key so it is safe to use as a reactid\n *\n * @param {string} key to be escaped.\n * @return {string} the escaped key.\n */\n\nfunction escape(key) {\n  var escapeRegex = /[=:]/g;\n  var escaperLookup = {\n    '=': '=0',\n    ':': '=2'\n  };\n  var escapedString = ('' + key).replace(escapeRegex, function (match) {\n    return escaperLookup[match];\n  });\n\n  return '$' + escapedString;\n}\n\n/**\n * Unescape and unwrap key for human-readable display\n *\n * @param {string} key to unescape.\n * @return {string} the unescaped key.\n */\nfunction unescape(key) {\n  var unescapeRegex = /(=0|=2)/g;\n  var unescaperLookup = {\n    '=0': '=',\n    '=2': ':'\n  };\n  var keySubstring = key[0] === '.' && key[1] === '$' ? key.substring(2) : key.substring(1);\n\n  return ('' + keySubstring).replace(unescapeRegex, function (match) {\n    return unescaperLookup[match];\n  });\n}\n\nvar KeyEscapeUtils = {\n  escape: escape,\n  unescape: unescape\n};\n\nmodule.exports = KeyEscapeUtils;\n},{}],142:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar ReactPropTypesSecret = require('./ReactPropTypesSecret');\nvar propTypesFactory = require('prop-types/factory');\n\nvar React = require('react/lib/React');\nvar PropTypes = propTypesFactory(React.isValidElement);\n\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\nvar hasReadOnlyValue = {\n  'button': true,\n  'checkbox': true,\n  'image': true,\n  'hidden': true,\n  'radio': true,\n  'reset': true,\n  'submit': true\n};\n\nfunction _assertSingleLink(inputProps) {\n  !(inputProps.checkedLink == null || inputProps.valueLink == null) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Cannot provide a checkedLink and a valueLink. If you want to use checkedLink, you probably don\\'t want to use valueLink and vice versa.') : _prodInvariant('87') : void 0;\n}\nfunction _assertValueLink(inputProps) {\n  _assertSingleLink(inputProps);\n  !(inputProps.value == null && inputProps.onChange == null) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Cannot provide a valueLink and a value or onChange event. If you want to use value or onChange, you probably don\\'t want to use valueLink.') : _prodInvariant('88') : void 0;\n}\n\nfunction _assertCheckedLink(inputProps) {\n  _assertSingleLink(inputProps);\n  !(inputProps.checked == null && inputProps.onChange == null) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Cannot provide a checkedLink and a checked property or onChange event. If you want to use checked or onChange, you probably don\\'t want to use checkedLink') : _prodInvariant('89') : void 0;\n}\n\nvar propTypes = {\n  value: function (props, propName, componentName) {\n    if (!props[propName] || hasReadOnlyValue[props.type] || props.onChange || props.readOnly || props.disabled) {\n      return null;\n    }\n    return new Error('You provided a `value` prop to a form field without an ' + '`onChange` handler. This will render a read-only field. If ' + 'the field should be mutable use `defaultValue`. Otherwise, ' + 'set either `onChange` or `readOnly`.');\n  },\n  checked: function (props, propName, componentName) {\n    if (!props[propName] || props.onChange || props.readOnly || props.disabled) {\n      return null;\n    }\n    return new Error('You provided a `checked` prop to a form field without an ' + '`onChange` handler. This will render a read-only field. If ' + 'the field should be mutable use `defaultChecked`. Otherwise, ' + 'set either `onChange` or `readOnly`.');\n  },\n  onChange: PropTypes.func\n};\n\nvar loggedTypeFailures = {};\nfunction getDeclarationErrorAddendum(owner) {\n  if (owner) {\n    var name = owner.getName();\n    if (name) {\n      return ' Check the render method of `' + name + '`.';\n    }\n  }\n  return '';\n}\n\n/**\n * Provide a linked `value` attribute for controlled forms. You should not use\n * this outside of the ReactDOM controlled form components.\n */\nvar LinkedValueUtils = {\n  checkPropTypes: function (tagName, props, owner) {\n    for (var propName in propTypes) {\n      if (propTypes.hasOwnProperty(propName)) {\n        var error = propTypes[propName](props, propName, tagName, 'prop', null, ReactPropTypesSecret);\n      }\n      if (error instanceof Error && !(error.message in loggedTypeFailures)) {\n        // Only monitor this failure once because there tends to be a lot of the\n        // same error.\n        loggedTypeFailures[error.message] = true;\n\n        var addendum = getDeclarationErrorAddendum(owner);\n        process.env.NODE_ENV !== 'production' ? warning(false, 'Failed form propType: %s%s', error.message, addendum) : void 0;\n      }\n    }\n  },\n\n  /**\n   * @param {object} inputProps Props for form component\n   * @return {*} current value of the input either from value prop or link.\n   */\n  getValue: function (inputProps) {\n    if (inputProps.valueLink) {\n      _assertValueLink(inputProps);\n      return inputProps.valueLink.value;\n    }\n    return inputProps.value;\n  },\n\n  /**\n   * @param {object} inputProps Props for form component\n   * @return {*} current checked status of the input either from checked prop\n   *             or link.\n   */\n  getChecked: function (inputProps) {\n    if (inputProps.checkedLink) {\n      _assertCheckedLink(inputProps);\n      return inputProps.checkedLink.value;\n    }\n    return inputProps.checked;\n  },\n\n  /**\n   * @param {object} inputProps Props for form component\n   * @param {SyntheticEvent} event change event to handle\n   */\n  executeOnChange: function (inputProps, event) {\n    if (inputProps.valueLink) {\n      _assertValueLink(inputProps);\n      return inputProps.valueLink.requestChange(event.target.value);\n    } else if (inputProps.checkedLink) {\n      _assertCheckedLink(inputProps);\n      return inputProps.checkedLink.requestChange(event.target.checked);\n    } else if (inputProps.onChange) {\n      return inputProps.onChange.call(undefined, event);\n    }\n  }\n};\n\nmodule.exports = LinkedValueUtils;\n}).call(this,require('_process'))\n},{\"./ReactPropTypesSecret\":189,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111,\"prop-types/factory\":246,\"react/lib/React\":251}],143:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar invariant = require('fbjs/lib/invariant');\n\n/**\n * Static poolers. Several custom versions for each potential number of\n * arguments. A completely generic pooler is easy to implement, but would\n * require accessing the `arguments` object. In each of these, `this` refers to\n * the Class itself, not an instance. If any others are needed, simply add them\n * here, or in their own files.\n */\nvar oneArgumentPooler = function (copyFieldsFrom) {\n  var Klass = this;\n  if (Klass.instancePool.length) {\n    var instance = Klass.instancePool.pop();\n    Klass.call(instance, copyFieldsFrom);\n    return instance;\n  } else {\n    return new Klass(copyFieldsFrom);\n  }\n};\n\nvar twoArgumentPooler = function (a1, a2) {\n  var Klass = this;\n  if (Klass.instancePool.length) {\n    var instance = Klass.instancePool.pop();\n    Klass.call(instance, a1, a2);\n    return instance;\n  } else {\n    return new Klass(a1, a2);\n  }\n};\n\nvar threeArgumentPooler = function (a1, a2, a3) {\n  var Klass = this;\n  if (Klass.instancePool.length) {\n    var instance = Klass.instancePool.pop();\n    Klass.call(instance, a1, a2, a3);\n    return instance;\n  } else {\n    return new Klass(a1, a2, a3);\n  }\n};\n\nvar fourArgumentPooler = function (a1, a2, a3, a4) {\n  var Klass = this;\n  if (Klass.instancePool.length) {\n    var instance = Klass.instancePool.pop();\n    Klass.call(instance, a1, a2, a3, a4);\n    return instance;\n  } else {\n    return new Klass(a1, a2, a3, a4);\n  }\n};\n\nvar standardReleaser = function (instance) {\n  var Klass = this;\n  !(instance instanceof Klass) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Trying to release an instance into a pool of a different type.') : _prodInvariant('25') : void 0;\n  instance.destructor();\n  if (Klass.instancePool.length < Klass.poolSize) {\n    Klass.instancePool.push(instance);\n  }\n};\n\nvar DEFAULT_POOL_SIZE = 10;\nvar DEFAULT_POOLER = oneArgumentPooler;\n\n/**\n * Augments `CopyConstructor` to be a poolable class, augmenting only the class\n * itself (statically) not adding any prototypical fields. Any CopyConstructor\n * you give this may have a `poolSize` property, and will look for a\n * prototypical `destructor` on instances.\n *\n * @param {Function} CopyConstructor Constructor that can be used to reset.\n * @param {Function} pooler Customizable pooler.\n */\nvar addPoolingTo = function (CopyConstructor, pooler) {\n  // Casting as any so that flow ignores the actual implementation and trusts\n  // it to match the type we declared\n  var NewKlass = CopyConstructor;\n  NewKlass.instancePool = [];\n  NewKlass.getPooled = pooler || DEFAULT_POOLER;\n  if (!NewKlass.poolSize) {\n    NewKlass.poolSize = DEFAULT_POOL_SIZE;\n  }\n  NewKlass.release = standardReleaser;\n  return NewKlass;\n};\n\nvar PooledClass = {\n  addPoolingTo: addPoolingTo,\n  oneArgumentPooler: oneArgumentPooler,\n  twoArgumentPooler: twoArgumentPooler,\n  threeArgumentPooler: threeArgumentPooler,\n  fourArgumentPooler: fourArgumentPooler\n};\n\nmodule.exports = PooledClass;\n}).call(this,require('_process'))\n},{\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104}],144:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar EventPluginRegistry = require('./EventPluginRegistry');\nvar ReactEventEmitterMixin = require('./ReactEventEmitterMixin');\nvar ViewportMetrics = require('./ViewportMetrics');\n\nvar getVendorPrefixedEventName = require('./getVendorPrefixedEventName');\nvar isEventSupported = require('./isEventSupported');\n\n/**\n * Summary of `ReactBrowserEventEmitter` event handling:\n *\n *  - Top-level delegation is used to trap most native browser events. This\n *    may only occur in the main thread and is the responsibility of\n *    ReactEventListener, which is injected and can therefore support pluggable\n *    event sources. This is the only work that occurs in the main thread.\n *\n *  - We normalize and de-duplicate events to account for browser quirks. This\n *    may be done in the worker thread.\n *\n *  - Forward these native events (with the associated top-level type used to\n *    trap it) to `EventPluginHub`, which in turn will ask plugins if they want\n *    to extract any synthetic events.\n *\n *  - The `EventPluginHub` will then process each event by annotating them with\n *    \"dispatches\", a sequence of listeners and IDs that care about that event.\n *\n *  - The `EventPluginHub` then dispatches the events.\n *\n * Overview of React and the event system:\n *\n * +------------+    .\n * |    DOM     |    .\n * +------------+    .\n *       |           .\n *       v           .\n * +------------+    .\n * | ReactEvent |    .\n * |  Listener  |    .\n * +------------+    .                         +-----------+\n *       |           .               +--------+|SimpleEvent|\n *       |           .               |         |Plugin     |\n * +-----|------+    .               v         +-----------+\n * |     |      |    .    +--------------+                    +------------+\n * |     +-----------.--->|EventPluginHub|                    |    Event   |\n * |            |    .    |              |     +-----------+  | Propagators|\n * | ReactEvent |    .    |              |     |TapEvent   |  |------------|\n * |  Emitter   |    .    |              |<---+|Plugin     |  |other plugin|\n * |            |    .    |              |     +-----------+  |  utilities |\n * |     +-----------.--->|              |                    +------------+\n * |     |      |    .    +--------------+\n * +-----|------+    .                ^        +-----------+\n *       |           .                |        |Enter/Leave|\n *       +           .                +-------+|Plugin     |\n * +-------------+   .                         +-----------+\n * | application |   .\n * |-------------|   .\n * |             |   .\n * |             |   .\n * +-------------+   .\n *                   .\n *    React Core     .  General Purpose Event Plugin System\n */\n\nvar hasEventPageXY;\nvar alreadyListeningTo = {};\nvar isMonitoringScrollValue = false;\nvar reactTopListenersCounter = 0;\n\n// For events like 'submit' which don't consistently bubble (which we trap at a\n// lower node than `document`), binding at `document` would cause duplicate\n// events so we don't include them here\nvar topEventMapping = {\n  topAbort: 'abort',\n  topAnimationEnd: getVendorPrefixedEventName('animationend') || 'animationend',\n  topAnimationIteration: getVendorPrefixedEventName('animationiteration') || 'animationiteration',\n  topAnimationStart: getVendorPrefixedEventName('animationstart') || 'animationstart',\n  topBlur: 'blur',\n  topCanPlay: 'canplay',\n  topCanPlayThrough: 'canplaythrough',\n  topChange: 'change',\n  topClick: 'click',\n  topCompositionEnd: 'compositionend',\n  topCompositionStart: 'compositionstart',\n  topCompositionUpdate: 'compositionupdate',\n  topContextMenu: 'contextmenu',\n  topCopy: 'copy',\n  topCut: 'cut',\n  topDoubleClick: 'dblclick',\n  topDrag: 'drag',\n  topDragEnd: 'dragend',\n  topDragEnter: 'dragenter',\n  topDragExit: 'dragexit',\n  topDragLeave: 'dragleave',\n  topDragOver: 'dragover',\n  topDragStart: 'dragstart',\n  topDrop: 'drop',\n  topDurationChange: 'durationchange',\n  topEmptied: 'emptied',\n  topEncrypted: 'encrypted',\n  topEnded: 'ended',\n  topError: 'error',\n  topFocus: 'focus',\n  topInput: 'input',\n  topKeyDown: 'keydown',\n  topKeyPress: 'keypress',\n  topKeyUp: 'keyup',\n  topLoadedData: 'loadeddata',\n  topLoadedMetadata: 'loadedmetadata',\n  topLoadStart: 'loadstart',\n  topMouseDown: 'mousedown',\n  topMouseMove: 'mousemove',\n  topMouseOut: 'mouseout',\n  topMouseOver: 'mouseover',\n  topMouseUp: 'mouseup',\n  topPaste: 'paste',\n  topPause: 'pause',\n  topPlay: 'play',\n  topPlaying: 'playing',\n  topProgress: 'progress',\n  topRateChange: 'ratechange',\n  topScroll: 'scroll',\n  topSeeked: 'seeked',\n  topSeeking: 'seeking',\n  topSelectionChange: 'selectionchange',\n  topStalled: 'stalled',\n  topSuspend: 'suspend',\n  topTextInput: 'textInput',\n  topTimeUpdate: 'timeupdate',\n  topTouchCancel: 'touchcancel',\n  topTouchEnd: 'touchend',\n  topTouchMove: 'touchmove',\n  topTouchStart: 'touchstart',\n  topTransitionEnd: getVendorPrefixedEventName('transitionend') || 'transitionend',\n  topVolumeChange: 'volumechange',\n  topWaiting: 'waiting',\n  topWheel: 'wheel'\n};\n\n/**\n * To ensure no conflicts with other potential React instances on the page\n */\nvar topListenersIDKey = '_reactListenersID' + String(Math.random()).slice(2);\n\nfunction getListeningForDocument(mountAt) {\n  // In IE8, `mountAt` is a host object and doesn't have `hasOwnProperty`\n  // directly.\n  if (!Object.prototype.hasOwnProperty.call(mountAt, topListenersIDKey)) {\n    mountAt[topListenersIDKey] = reactTopListenersCounter++;\n    alreadyListeningTo[mountAt[topListenersIDKey]] = {};\n  }\n  return alreadyListeningTo[mountAt[topListenersIDKey]];\n}\n\n/**\n * `ReactBrowserEventEmitter` is used to attach top-level event listeners. For\n * example:\n *\n *   EventPluginHub.putListener('myID', 'onClick', myFunction);\n *\n * This would allocate a \"registration\" of `('onClick', myFunction)` on 'myID'.\n *\n * @internal\n */\nvar ReactBrowserEventEmitter = _assign({}, ReactEventEmitterMixin, {\n\n  /**\n   * Injectable event backend\n   */\n  ReactEventListener: null,\n\n  injection: {\n    /**\n     * @param {object} ReactEventListener\n     */\n    injectReactEventListener: function (ReactEventListener) {\n      ReactEventListener.setHandleTopLevel(ReactBrowserEventEmitter.handleTopLevel);\n      ReactBrowserEventEmitter.ReactEventListener = ReactEventListener;\n    }\n  },\n\n  /**\n   * Sets whether or not any created callbacks should be enabled.\n   *\n   * @param {boolean} enabled True if callbacks should be enabled.\n   */\n  setEnabled: function (enabled) {\n    if (ReactBrowserEventEmitter.ReactEventListener) {\n      ReactBrowserEventEmitter.ReactEventListener.setEnabled(enabled);\n    }\n  },\n\n  /**\n   * @return {boolean} True if callbacks are enabled.\n   */\n  isEnabled: function () {\n    return !!(ReactBrowserEventEmitter.ReactEventListener && ReactBrowserEventEmitter.ReactEventListener.isEnabled());\n  },\n\n  /**\n   * We listen for bubbled touch events on the document object.\n   *\n   * Firefox v8.01 (and possibly others) exhibited strange behavior when\n   * mounting `onmousemove` events at some node that was not the document\n   * element. The symptoms were that if your mouse is not moving over something\n   * contained within that mount point (for example on the background) the\n   * top-level listeners for `onmousemove` won't be called. However, if you\n   * register the `mousemove` on the document object, then it will of course\n   * catch all `mousemove`s. This along with iOS quirks, justifies restricting\n   * top-level listeners to the document object only, at least for these\n   * movement types of events and possibly all events.\n   *\n   * @see http://www.quirksmode.org/blog/archives/2010/09/click_event_del.html\n   *\n   * Also, `keyup`/`keypress`/`keydown` do not bubble to the window on IE, but\n   * they bubble to document.\n   *\n   * @param {string} registrationName Name of listener (e.g. `onClick`).\n   * @param {object} contentDocumentHandle Document which owns the container\n   */\n  listenTo: function (registrationName, contentDocumentHandle) {\n    var mountAt = contentDocumentHandle;\n    var isListening = getListeningForDocument(mountAt);\n    var dependencies = EventPluginRegistry.registrationNameDependencies[registrationName];\n\n    for (var i = 0; i < dependencies.length; i++) {\n      var dependency = dependencies[i];\n      if (!(isListening.hasOwnProperty(dependency) && isListening[dependency])) {\n        if (dependency === 'topWheel') {\n          if (isEventSupported('wheel')) {\n            ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent('topWheel', 'wheel', mountAt);\n          } else if (isEventSupported('mousewheel')) {\n            ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent('topWheel', 'mousewheel', mountAt);\n          } else {\n            // Firefox needs to capture a different mouse scroll event.\n            // @see http://www.quirksmode.org/dom/events/tests/scroll.html\n            ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent('topWheel', 'DOMMouseScroll', mountAt);\n          }\n        } else if (dependency === 'topScroll') {\n\n          if (isEventSupported('scroll', true)) {\n            ReactBrowserEventEmitter.ReactEventListener.trapCapturedEvent('topScroll', 'scroll', mountAt);\n          } else {\n            ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent('topScroll', 'scroll', ReactBrowserEventEmitter.ReactEventListener.WINDOW_HANDLE);\n          }\n        } else if (dependency === 'topFocus' || dependency === 'topBlur') {\n\n          if (isEventSupported('focus', true)) {\n            ReactBrowserEventEmitter.ReactEventListener.trapCapturedEvent('topFocus', 'focus', mountAt);\n            ReactBrowserEventEmitter.ReactEventListener.trapCapturedEvent('topBlur', 'blur', mountAt);\n          } else if (isEventSupported('focusin')) {\n            // IE has `focusin` and `focusout` events which bubble.\n            // @see http://www.quirksmode.org/blog/archives/2008/04/delegating_the.html\n            ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent('topFocus', 'focusin', mountAt);\n            ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent('topBlur', 'focusout', mountAt);\n          }\n\n          // to make sure blur and focus event listeners are only attached once\n          isListening.topBlur = true;\n          isListening.topFocus = true;\n        } else if (topEventMapping.hasOwnProperty(dependency)) {\n          ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent(dependency, topEventMapping[dependency], mountAt);\n        }\n\n        isListening[dependency] = true;\n      }\n    }\n  },\n\n  trapBubbledEvent: function (topLevelType, handlerBaseName, handle) {\n    return ReactBrowserEventEmitter.ReactEventListener.trapBubbledEvent(topLevelType, handlerBaseName, handle);\n  },\n\n  trapCapturedEvent: function (topLevelType, handlerBaseName, handle) {\n    return ReactBrowserEventEmitter.ReactEventListener.trapCapturedEvent(topLevelType, handlerBaseName, handle);\n  },\n\n  /**\n   * Protect against document.createEvent() returning null\n   * Some popup blocker extensions appear to do this:\n   * https://github.com/facebook/react/issues/6887\n   */\n  supportsEventPageXY: function () {\n    if (!document.createEvent) {\n      return false;\n    }\n    var ev = document.createEvent('MouseEvent');\n    return ev != null && 'pageX' in ev;\n  },\n\n  /**\n   * Listens to window scroll and resize events. We cache scroll values so that\n   * application code can access them without triggering reflows.\n   *\n   * ViewportMetrics is only used by SyntheticMouse/TouchEvent and only when\n   * pageX/pageY isn't supported (legacy browsers).\n   *\n   * NOTE: Scroll events do not bubble.\n   *\n   * @see http://www.quirksmode.org/dom/events/scroll.html\n   */\n  ensureScrollValueMonitoring: function () {\n    if (hasEventPageXY === undefined) {\n      hasEventPageXY = ReactBrowserEventEmitter.supportsEventPageXY();\n    }\n    if (!hasEventPageXY && !isMonitoringScrollValue) {\n      var refresh = ViewportMetrics.refreshScrollValues;\n      ReactBrowserEventEmitter.ReactEventListener.monitorScrollValue(refresh);\n      isMonitoringScrollValue = true;\n    }\n  }\n\n});\n\nmodule.exports = ReactBrowserEventEmitter;\n},{\"./EventPluginRegistry\":136,\"./ReactEventEmitterMixin\":173,\"./ViewportMetrics\":215,\"./getVendorPrefixedEventName\":233,\"./isEventSupported\":235,\"object-assign\":114}],145:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ReactReconciler = require('./ReactReconciler');\n\nvar instantiateReactComponent = require('./instantiateReactComponent');\nvar KeyEscapeUtils = require('./KeyEscapeUtils');\nvar shouldUpdateReactComponent = require('./shouldUpdateReactComponent');\nvar traverseAllChildren = require('./traverseAllChildren');\nvar warning = require('fbjs/lib/warning');\n\nvar ReactComponentTreeHook;\n\nif (typeof process !== 'undefined' && process.env && process.env.NODE_ENV === 'test') {\n  // Temporary hack.\n  // Inline requires don't work well with Jest:\n  // https://github.com/facebook/react/issues/7240\n  // Remove the inline requires when we don't need them anymore:\n  // https://github.com/facebook/react/pull/7178\n  ReactComponentTreeHook = require('react/lib/ReactComponentTreeHook');\n}\n\nfunction instantiateChild(childInstances, child, name, selfDebugID) {\n  // We found a component instance.\n  var keyUnique = childInstances[name] === undefined;\n  if (process.env.NODE_ENV !== 'production') {\n    if (!ReactComponentTreeHook) {\n      ReactComponentTreeHook = require('react/lib/ReactComponentTreeHook');\n    }\n    if (!keyUnique) {\n      process.env.NODE_ENV !== 'production' ? warning(false, 'flattenChildren(...): Encountered two children with the same key, ' + '`%s`. Child keys must be unique; when two children share a key, only ' + 'the first child will be used.%s', KeyEscapeUtils.unescape(name), ReactComponentTreeHook.getStackAddendumByID(selfDebugID)) : void 0;\n    }\n  }\n  if (child != null && keyUnique) {\n    childInstances[name] = instantiateReactComponent(child, true);\n  }\n}\n\n/**\n * ReactChildReconciler provides helpers for initializing or updating a set of\n * children. Its output is suitable for passing it onto ReactMultiChild which\n * does diffed reordering and insertion.\n */\nvar ReactChildReconciler = {\n  /**\n   * Generates a \"mount image\" for each of the supplied children. In the case\n   * of `ReactDOMComponent`, a mount image is a string of markup.\n   *\n   * @param {?object} nestedChildNodes Nested child maps.\n   * @return {?object} A set of child instances.\n   * @internal\n   */\n  instantiateChildren: function (nestedChildNodes, transaction, context, selfDebugID // 0 in production and for roots\n  ) {\n    if (nestedChildNodes == null) {\n      return null;\n    }\n    var childInstances = {};\n\n    if (process.env.NODE_ENV !== 'production') {\n      traverseAllChildren(nestedChildNodes, function (childInsts, child, name) {\n        return instantiateChild(childInsts, child, name, selfDebugID);\n      }, childInstances);\n    } else {\n      traverseAllChildren(nestedChildNodes, instantiateChild, childInstances);\n    }\n    return childInstances;\n  },\n\n  /**\n   * Updates the rendered children and returns a new set of children.\n   *\n   * @param {?object} prevChildren Previously initialized set of children.\n   * @param {?object} nextChildren Flat child element maps.\n   * @param {ReactReconcileTransaction} transaction\n   * @param {object} context\n   * @return {?object} A new set of child instances.\n   * @internal\n   */\n  updateChildren: function (prevChildren, nextChildren, mountImages, removedNodes, transaction, hostParent, hostContainerInfo, context, selfDebugID // 0 in production and for roots\n  ) {\n    // We currently don't have a way to track moves here but if we use iterators\n    // instead of for..in we can zip the iterators and check if an item has\n    // moved.\n    // TODO: If nothing has changed, return the prevChildren object so that we\n    // can quickly bailout if nothing has changed.\n    if (!nextChildren && !prevChildren) {\n      return;\n    }\n    var name;\n    var prevChild;\n    for (name in nextChildren) {\n      if (!nextChildren.hasOwnProperty(name)) {\n        continue;\n      }\n      prevChild = prevChildren && prevChildren[name];\n      var prevElement = prevChild && prevChild._currentElement;\n      var nextElement = nextChildren[name];\n      if (prevChild != null && shouldUpdateReactComponent(prevElement, nextElement)) {\n        ReactReconciler.receiveComponent(prevChild, nextElement, transaction, context);\n        nextChildren[name] = prevChild;\n      } else {\n        if (prevChild) {\n          removedNodes[name] = ReactReconciler.getHostNode(prevChild);\n          ReactReconciler.unmountComponent(prevChild, false);\n        }\n        // The child must be instantiated before it's mounted.\n        var nextChildInstance = instantiateReactComponent(nextElement, true);\n        nextChildren[name] = nextChildInstance;\n        // Creating mount image now ensures refs are resolved in right order\n        // (see https://github.com/facebook/react/pull/7101 for explanation).\n        var nextChildMountImage = ReactReconciler.mountComponent(nextChildInstance, transaction, hostParent, hostContainerInfo, context, selfDebugID);\n        mountImages.push(nextChildMountImage);\n      }\n    }\n    // Unmount children that are no longer present.\n    for (name in prevChildren) {\n      if (prevChildren.hasOwnProperty(name) && !(nextChildren && nextChildren.hasOwnProperty(name))) {\n        prevChild = prevChildren[name];\n        removedNodes[name] = ReactReconciler.getHostNode(prevChild);\n        ReactReconciler.unmountComponent(prevChild, false);\n      }\n    }\n  },\n\n  /**\n   * Unmounts all rendered children. This should be used to clean up children\n   * when this component is unmounted.\n   *\n   * @param {?object} renderedChildren Previously initialized set of children.\n   * @internal\n   */\n  unmountChildren: function (renderedChildren, safely) {\n    for (var name in renderedChildren) {\n      if (renderedChildren.hasOwnProperty(name)) {\n        var renderedChild = renderedChildren[name];\n        ReactReconciler.unmountComponent(renderedChild, safely);\n      }\n    }\n  }\n\n};\n\nmodule.exports = ReactChildReconciler;\n}).call(this,require('_process'))\n},{\"./KeyEscapeUtils\":141,\"./ReactReconciler\":191,\"./instantiateReactComponent\":234,\"./shouldUpdateReactComponent\":242,\"./traverseAllChildren\":243,\"_process\":112,\"fbjs/lib/warning\":111,\"react/lib/ReactComponentTreeHook\":255}],146:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar DOMChildrenOperations = require('./DOMChildrenOperations');\nvar ReactDOMIDOperations = require('./ReactDOMIDOperations');\n\n/**\n * Abstracts away all functionality of the reconciler that requires knowledge of\n * the browser context. TODO: These callers should be refactored to avoid the\n * need for this injection.\n */\nvar ReactComponentBrowserEnvironment = {\n\n  processChildrenUpdates: ReactDOMIDOperations.dangerouslyProcessChildrenUpdates,\n\n  replaceNodeWithMarkup: DOMChildrenOperations.dangerouslyReplaceNodeWithMarkup\n\n};\n\nmodule.exports = ReactComponentBrowserEnvironment;\n},{\"./DOMChildrenOperations\":127,\"./ReactDOMIDOperations\":156}],147:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar invariant = require('fbjs/lib/invariant');\n\nvar injected = false;\n\nvar ReactComponentEnvironment = {\n\n  /**\n   * Optionally injectable hook for swapping out mount images in the middle of\n   * the tree.\n   */\n  replaceNodeWithMarkup: null,\n\n  /**\n   * Optionally injectable hook for processing a queue of child updates. Will\n   * later move into MultiChildComponents.\n   */\n  processChildrenUpdates: null,\n\n  injection: {\n    injectEnvironment: function (environment) {\n      !!injected ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactCompositeComponent: injectEnvironment() can only be called once.') : _prodInvariant('104') : void 0;\n      ReactComponentEnvironment.replaceNodeWithMarkup = environment.replaceNodeWithMarkup;\n      ReactComponentEnvironment.processChildrenUpdates = environment.processChildrenUpdates;\n      injected = true;\n    }\n  }\n\n};\n\nmodule.exports = ReactComponentEnvironment;\n}).call(this,require('_process'))\n},{\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104}],148:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant'),\n    _assign = require('object-assign');\n\nvar React = require('react/lib/React');\nvar ReactComponentEnvironment = require('./ReactComponentEnvironment');\nvar ReactCurrentOwner = require('react/lib/ReactCurrentOwner');\nvar ReactErrorUtils = require('./ReactErrorUtils');\nvar ReactInstanceMap = require('./ReactInstanceMap');\nvar ReactInstrumentation = require('./ReactInstrumentation');\nvar ReactNodeTypes = require('./ReactNodeTypes');\nvar ReactReconciler = require('./ReactReconciler');\n\nif (process.env.NODE_ENV !== 'production') {\n  var checkReactTypeSpec = require('./checkReactTypeSpec');\n}\n\nvar emptyObject = require('fbjs/lib/emptyObject');\nvar invariant = require('fbjs/lib/invariant');\nvar shallowEqual = require('fbjs/lib/shallowEqual');\nvar shouldUpdateReactComponent = require('./shouldUpdateReactComponent');\nvar warning = require('fbjs/lib/warning');\n\nvar CompositeTypes = {\n  ImpureClass: 0,\n  PureClass: 1,\n  StatelessFunctional: 2\n};\n\nfunction StatelessComponent(Component) {}\nStatelessComponent.prototype.render = function () {\n  var Component = ReactInstanceMap.get(this)._currentElement.type;\n  var element = Component(this.props, this.context, this.updater);\n  warnIfInvalidElement(Component, element);\n  return element;\n};\n\nfunction warnIfInvalidElement(Component, element) {\n  if (process.env.NODE_ENV !== 'production') {\n    process.env.NODE_ENV !== 'production' ? warning(element === null || element === false || React.isValidElement(element), '%s(...): A valid React element (or null) must be returned. You may have ' + 'returned undefined, an array or some other invalid object.', Component.displayName || Component.name || 'Component') : void 0;\n    process.env.NODE_ENV !== 'production' ? warning(!Component.childContextTypes, '%s(...): childContextTypes cannot be defined on a functional component.', Component.displayName || Component.name || 'Component') : void 0;\n  }\n}\n\nfunction shouldConstruct(Component) {\n  return !!(Component.prototype && Component.prototype.isReactComponent);\n}\n\nfunction isPureComponent(Component) {\n  return !!(Component.prototype && Component.prototype.isPureReactComponent);\n}\n\n// Separated into a function to contain deoptimizations caused by try/finally.\nfunction measureLifeCyclePerf(fn, debugID, timerType) {\n  if (debugID === 0) {\n    // Top-level wrappers (see ReactMount) and empty components (see\n    // ReactDOMEmptyComponent) are invisible to hooks and devtools.\n    // Both are implementation details that should go away in the future.\n    return fn();\n  }\n\n  ReactInstrumentation.debugTool.onBeginLifeCycleTimer(debugID, timerType);\n  try {\n    return fn();\n  } finally {\n    ReactInstrumentation.debugTool.onEndLifeCycleTimer(debugID, timerType);\n  }\n}\n\n/**\n * ------------------ The Life-Cycle of a Composite Component ------------------\n *\n * - constructor: Initialization of state. The instance is now retained.\n *   - componentWillMount\n *   - render\n *   - [children's constructors]\n *     - [children's componentWillMount and render]\n *     - [children's componentDidMount]\n *     - componentDidMount\n *\n *       Update Phases:\n *       - componentWillReceiveProps (only called if parent updated)\n *       - shouldComponentUpdate\n *         - componentWillUpdate\n *           - render\n *           - [children's constructors or receive props phases]\n *         - componentDidUpdate\n *\n *     - componentWillUnmount\n *     - [children's componentWillUnmount]\n *   - [children destroyed]\n * - (destroyed): The instance is now blank, released by React and ready for GC.\n *\n * -----------------------------------------------------------------------------\n */\n\n/**\n * An incrementing ID assigned to each component when it is mounted. This is\n * used to enforce the order in which `ReactUpdates` updates dirty components.\n *\n * @private\n */\nvar nextMountID = 1;\n\n/**\n * @lends {ReactCompositeComponent.prototype}\n */\nvar ReactCompositeComponent = {\n\n  /**\n   * Base constructor for all composite component.\n   *\n   * @param {ReactElement} element\n   * @final\n   * @internal\n   */\n  construct: function (element) {\n    this._currentElement = element;\n    this._rootNodeID = 0;\n    this._compositeType = null;\n    this._instance = null;\n    this._hostParent = null;\n    this._hostContainerInfo = null;\n\n    // See ReactUpdateQueue\n    this._updateBatchNumber = null;\n    this._pendingElement = null;\n    this._pendingStateQueue = null;\n    this._pendingReplaceState = false;\n    this._pendingForceUpdate = false;\n\n    this._renderedNodeType = null;\n    this._renderedComponent = null;\n    this._context = null;\n    this._mountOrder = 0;\n    this._topLevelWrapper = null;\n\n    // See ReactUpdates and ReactUpdateQueue.\n    this._pendingCallbacks = null;\n\n    // ComponentWillUnmount shall only be called once\n    this._calledComponentWillUnmount = false;\n\n    if (process.env.NODE_ENV !== 'production') {\n      this._warnedAboutRefsInRender = false;\n    }\n  },\n\n  /**\n   * Initializes the component, renders markup, and registers event listeners.\n   *\n   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n   * @param {?object} hostParent\n   * @param {?object} hostContainerInfo\n   * @param {?object} context\n   * @return {?string} Rendered markup to be inserted into the DOM.\n   * @final\n   * @internal\n   */\n  mountComponent: function (transaction, hostParent, hostContainerInfo, context) {\n    var _this = this;\n\n    this._context = context;\n    this._mountOrder = nextMountID++;\n    this._hostParent = hostParent;\n    this._hostContainerInfo = hostContainerInfo;\n\n    var publicProps = this._currentElement.props;\n    var publicContext = this._processContext(context);\n\n    var Component = this._currentElement.type;\n\n    var updateQueue = transaction.getUpdateQueue();\n\n    // Initialize the public class\n    var doConstruct = shouldConstruct(Component);\n    var inst = this._constructComponent(doConstruct, publicProps, publicContext, updateQueue);\n    var renderedElement;\n\n    // Support functional components\n    if (!doConstruct && (inst == null || inst.render == null)) {\n      renderedElement = inst;\n      warnIfInvalidElement(Component, renderedElement);\n      !(inst === null || inst === false || React.isValidElement(inst)) ? process.env.NODE_ENV !== 'production' ? invariant(false, '%s(...): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object.', Component.displayName || Component.name || 'Component') : _prodInvariant('105', Component.displayName || Component.name || 'Component') : void 0;\n      inst = new StatelessComponent(Component);\n      this._compositeType = CompositeTypes.StatelessFunctional;\n    } else {\n      if (isPureComponent(Component)) {\n        this._compositeType = CompositeTypes.PureClass;\n      } else {\n        this._compositeType = CompositeTypes.ImpureClass;\n      }\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      // This will throw later in _renderValidatedComponent, but add an early\n      // warning now to help debugging\n      if (inst.render == null) {\n        process.env.NODE_ENV !== 'production' ? warning(false, '%s(...): No `render` method found on the returned component ' + 'instance: you may have forgotten to define `render`.', Component.displayName || Component.name || 'Component') : void 0;\n      }\n\n      var propsMutated = inst.props !== publicProps;\n      var componentName = Component.displayName || Component.name || 'Component';\n\n      process.env.NODE_ENV !== 'production' ? warning(inst.props === undefined || !propsMutated, '%s(...): When calling super() in `%s`, make sure to pass ' + 'up the same props that your component\\'s constructor was passed.', componentName, componentName) : void 0;\n    }\n\n    // These should be set up in the constructor, but as a convenience for\n    // simpler class abstractions, we set them up after the fact.\n    inst.props = publicProps;\n    inst.context = publicContext;\n    inst.refs = emptyObject;\n    inst.updater = updateQueue;\n\n    this._instance = inst;\n\n    // Store a reference from the instance back to the internal representation\n    ReactInstanceMap.set(inst, this);\n\n    if (process.env.NODE_ENV !== 'production') {\n      // Since plain JS classes are defined without any special initialization\n      // logic, we can not catch common errors early. Therefore, we have to\n      // catch them here, at initialization time, instead.\n      process.env.NODE_ENV !== 'production' ? warning(!inst.getInitialState || inst.getInitialState.isReactClassApproved || inst.state, 'getInitialState was defined on %s, a plain JavaScript class. ' + 'This is only supported for classes created using React.createClass. ' + 'Did you mean to define a state property instead?', this.getName() || 'a component') : void 0;\n      process.env.NODE_ENV !== 'production' ? warning(!inst.getDefaultProps || inst.getDefaultProps.isReactClassApproved, 'getDefaultProps was defined on %s, a plain JavaScript class. ' + 'This is only supported for classes created using React.createClass. ' + 'Use a static property to define defaultProps instead.', this.getName() || 'a component') : void 0;\n      process.env.NODE_ENV !== 'production' ? warning(!inst.propTypes, 'propTypes was defined as an instance property on %s. Use a static ' + 'property to define propTypes instead.', this.getName() || 'a component') : void 0;\n      process.env.NODE_ENV !== 'production' ? warning(!inst.contextTypes, 'contextTypes was defined as an instance property on %s. Use a ' + 'static property to define contextTypes instead.', this.getName() || 'a component') : void 0;\n      process.env.NODE_ENV !== 'production' ? warning(typeof inst.componentShouldUpdate !== 'function', '%s has a method called ' + 'componentShouldUpdate(). Did you mean shouldComponentUpdate()? ' + 'The name is phrased as a question because the function is ' + 'expected to return a value.', this.getName() || 'A component') : void 0;\n      process.env.NODE_ENV !== 'production' ? warning(typeof inst.componentDidUnmount !== 'function', '%s has a method called ' + 'componentDidUnmount(). But there is no such lifecycle method. ' + 'Did you mean componentWillUnmount()?', this.getName() || 'A component') : void 0;\n      process.env.NODE_ENV !== 'production' ? warning(typeof inst.componentWillRecieveProps !== 'function', '%s has a method called ' + 'componentWillRecieveProps(). Did you mean componentWillReceiveProps()?', this.getName() || 'A component') : void 0;\n    }\n\n    var initialState = inst.state;\n    if (initialState === undefined) {\n      inst.state = initialState = null;\n    }\n    !(typeof initialState === 'object' && !Array.isArray(initialState)) ? process.env.NODE_ENV !== 'production' ? invariant(false, '%s.state: must be set to an object or null', this.getName() || 'ReactCompositeComponent') : _prodInvariant('106', this.getName() || 'ReactCompositeComponent') : void 0;\n\n    this._pendingStateQueue = null;\n    this._pendingReplaceState = false;\n    this._pendingForceUpdate = false;\n\n    var markup;\n    if (inst.unstable_handleError) {\n      markup = this.performInitialMountWithErrorHandling(renderedElement, hostParent, hostContainerInfo, transaction, context);\n    } else {\n      markup = this.performInitialMount(renderedElement, hostParent, hostContainerInfo, transaction, context);\n    }\n\n    if (inst.componentDidMount) {\n      if (process.env.NODE_ENV !== 'production') {\n        transaction.getReactMountReady().enqueue(function () {\n          measureLifeCyclePerf(function () {\n            return inst.componentDidMount();\n          }, _this._debugID, 'componentDidMount');\n        });\n      } else {\n        transaction.getReactMountReady().enqueue(inst.componentDidMount, inst);\n      }\n    }\n\n    return markup;\n  },\n\n  _constructComponent: function (doConstruct, publicProps, publicContext, updateQueue) {\n    if (process.env.NODE_ENV !== 'production') {\n      ReactCurrentOwner.current = this;\n      try {\n        return this._constructComponentWithoutOwner(doConstruct, publicProps, publicContext, updateQueue);\n      } finally {\n        ReactCurrentOwner.current = null;\n      }\n    } else {\n      return this._constructComponentWithoutOwner(doConstruct, publicProps, publicContext, updateQueue);\n    }\n  },\n\n  _constructComponentWithoutOwner: function (doConstruct, publicProps, publicContext, updateQueue) {\n    var Component = this._currentElement.type;\n\n    if (doConstruct) {\n      if (process.env.NODE_ENV !== 'production') {\n        return measureLifeCyclePerf(function () {\n          return new Component(publicProps, publicContext, updateQueue);\n        }, this._debugID, 'ctor');\n      } else {\n        return new Component(publicProps, publicContext, updateQueue);\n      }\n    }\n\n    // This can still be an instance in case of factory components\n    // but we'll count this as time spent rendering as the more common case.\n    if (process.env.NODE_ENV !== 'production') {\n      return measureLifeCyclePerf(function () {\n        return Component(publicProps, publicContext, updateQueue);\n      }, this._debugID, 'render');\n    } else {\n      return Component(publicProps, publicContext, updateQueue);\n    }\n  },\n\n  performInitialMountWithErrorHandling: function (renderedElement, hostParent, hostContainerInfo, transaction, context) {\n    var markup;\n    var checkpoint = transaction.checkpoint();\n    try {\n      markup = this.performInitialMount(renderedElement, hostParent, hostContainerInfo, transaction, context);\n    } catch (e) {\n      // Roll back to checkpoint, handle error (which may add items to the transaction), and take a new checkpoint\n      transaction.rollback(checkpoint);\n      this._instance.unstable_handleError(e);\n      if (this._pendingStateQueue) {\n        this._instance.state = this._processPendingState(this._instance.props, this._instance.context);\n      }\n      checkpoint = transaction.checkpoint();\n\n      this._renderedComponent.unmountComponent(true);\n      transaction.rollback(checkpoint);\n\n      // Try again - we've informed the component about the error, so they can render an error message this time.\n      // If this throws again, the error will bubble up (and can be caught by a higher error boundary).\n      markup = this.performInitialMount(renderedElement, hostParent, hostContainerInfo, transaction, context);\n    }\n    return markup;\n  },\n\n  performInitialMount: function (renderedElement, hostParent, hostContainerInfo, transaction, context) {\n    var inst = this._instance;\n\n    var debugID = 0;\n    if (process.env.NODE_ENV !== 'production') {\n      debugID = this._debugID;\n    }\n\n    if (inst.componentWillMount) {\n      if (process.env.NODE_ENV !== 'production') {\n        measureLifeCyclePerf(function () {\n          return inst.componentWillMount();\n        }, debugID, 'componentWillMount');\n      } else {\n        inst.componentWillMount();\n      }\n      // When mounting, calls to `setState` by `componentWillMount` will set\n      // `this._pendingStateQueue` without triggering a re-render.\n      if (this._pendingStateQueue) {\n        inst.state = this._processPendingState(inst.props, inst.context);\n      }\n    }\n\n    // If not a stateless component, we now render\n    if (renderedElement === undefined) {\n      renderedElement = this._renderValidatedComponent();\n    }\n\n    var nodeType = ReactNodeTypes.getType(renderedElement);\n    this._renderedNodeType = nodeType;\n    var child = this._instantiateReactComponent(renderedElement, nodeType !== ReactNodeTypes.EMPTY /* shouldHaveDebugID */\n    );\n    this._renderedComponent = child;\n\n    var markup = ReactReconciler.mountComponent(child, transaction, hostParent, hostContainerInfo, this._processChildContext(context), debugID);\n\n    if (process.env.NODE_ENV !== 'production') {\n      if (debugID !== 0) {\n        var childDebugIDs = child._debugID !== 0 ? [child._debugID] : [];\n        ReactInstrumentation.debugTool.onSetChildren(debugID, childDebugIDs);\n      }\n    }\n\n    return markup;\n  },\n\n  getHostNode: function () {\n    return ReactReconciler.getHostNode(this._renderedComponent);\n  },\n\n  /**\n   * Releases any resources allocated by `mountComponent`.\n   *\n   * @final\n   * @internal\n   */\n  unmountComponent: function (safely) {\n    if (!this._renderedComponent) {\n      return;\n    }\n\n    var inst = this._instance;\n\n    if (inst.componentWillUnmount && !inst._calledComponentWillUnmount) {\n      inst._calledComponentWillUnmount = true;\n\n      if (safely) {\n        var name = this.getName() + '.componentWillUnmount()';\n        ReactErrorUtils.invokeGuardedCallback(name, inst.componentWillUnmount.bind(inst));\n      } else {\n        if (process.env.NODE_ENV !== 'production') {\n          measureLifeCyclePerf(function () {\n            return inst.componentWillUnmount();\n          }, this._debugID, 'componentWillUnmount');\n        } else {\n          inst.componentWillUnmount();\n        }\n      }\n    }\n\n    if (this._renderedComponent) {\n      ReactReconciler.unmountComponent(this._renderedComponent, safely);\n      this._renderedNodeType = null;\n      this._renderedComponent = null;\n      this._instance = null;\n    }\n\n    // Reset pending fields\n    // Even if this component is scheduled for another update in ReactUpdates,\n    // it would still be ignored because these fields are reset.\n    this._pendingStateQueue = null;\n    this._pendingReplaceState = false;\n    this._pendingForceUpdate = false;\n    this._pendingCallbacks = null;\n    this._pendingElement = null;\n\n    // These fields do not really need to be reset since this object is no\n    // longer accessible.\n    this._context = null;\n    this._rootNodeID = 0;\n    this._topLevelWrapper = null;\n\n    // Delete the reference from the instance to this internal representation\n    // which allow the internals to be properly cleaned up even if the user\n    // leaks a reference to the public instance.\n    ReactInstanceMap.remove(inst);\n\n    // Some existing components rely on inst.props even after they've been\n    // destroyed (in event handlers).\n    // TODO: inst.props = null;\n    // TODO: inst.state = null;\n    // TODO: inst.context = null;\n  },\n\n  /**\n   * Filters the context object to only contain keys specified in\n   * `contextTypes`\n   *\n   * @param {object} context\n   * @return {?object}\n   * @private\n   */\n  _maskContext: function (context) {\n    var Component = this._currentElement.type;\n    var contextTypes = Component.contextTypes;\n    if (!contextTypes) {\n      return emptyObject;\n    }\n    var maskedContext = {};\n    for (var contextName in contextTypes) {\n      maskedContext[contextName] = context[contextName];\n    }\n    return maskedContext;\n  },\n\n  /**\n   * Filters the context object to only contain keys specified in\n   * `contextTypes`, and asserts that they are valid.\n   *\n   * @param {object} context\n   * @return {?object}\n   * @private\n   */\n  _processContext: function (context) {\n    var maskedContext = this._maskContext(context);\n    if (process.env.NODE_ENV !== 'production') {\n      var Component = this._currentElement.type;\n      if (Component.contextTypes) {\n        this._checkContextTypes(Component.contextTypes, maskedContext, 'context');\n      }\n    }\n    return maskedContext;\n  },\n\n  /**\n   * @param {object} currentContext\n   * @return {object}\n   * @private\n   */\n  _processChildContext: function (currentContext) {\n    var Component = this._currentElement.type;\n    var inst = this._instance;\n    var childContext;\n\n    if (inst.getChildContext) {\n      if (process.env.NODE_ENV !== 'production') {\n        ReactInstrumentation.debugTool.onBeginProcessingChildContext();\n        try {\n          childContext = inst.getChildContext();\n        } finally {\n          ReactInstrumentation.debugTool.onEndProcessingChildContext();\n        }\n      } else {\n        childContext = inst.getChildContext();\n      }\n    }\n\n    if (childContext) {\n      !(typeof Component.childContextTypes === 'object') ? process.env.NODE_ENV !== 'production' ? invariant(false, '%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().', this.getName() || 'ReactCompositeComponent') : _prodInvariant('107', this.getName() || 'ReactCompositeComponent') : void 0;\n      if (process.env.NODE_ENV !== 'production') {\n        this._checkContextTypes(Component.childContextTypes, childContext, 'child context');\n      }\n      for (var name in childContext) {\n        !(name in Component.childContextTypes) ? process.env.NODE_ENV !== 'production' ? invariant(false, '%s.getChildContext(): key \"%s\" is not defined in childContextTypes.', this.getName() || 'ReactCompositeComponent', name) : _prodInvariant('108', this.getName() || 'ReactCompositeComponent', name) : void 0;\n      }\n      return _assign({}, currentContext, childContext);\n    }\n    return currentContext;\n  },\n\n  /**\n   * Assert that the context types are valid\n   *\n   * @param {object} typeSpecs Map of context field to a ReactPropType\n   * @param {object} values Runtime values that need to be type-checked\n   * @param {string} location e.g. \"prop\", \"context\", \"child context\"\n   * @private\n   */\n  _checkContextTypes: function (typeSpecs, values, location) {\n    if (process.env.NODE_ENV !== 'production') {\n      checkReactTypeSpec(typeSpecs, values, location, this.getName(), null, this._debugID);\n    }\n  },\n\n  receiveComponent: function (nextElement, transaction, nextContext) {\n    var prevElement = this._currentElement;\n    var prevContext = this._context;\n\n    this._pendingElement = null;\n\n    this.updateComponent(transaction, prevElement, nextElement, prevContext, nextContext);\n  },\n\n  /**\n   * If any of `_pendingElement`, `_pendingStateQueue`, or `_pendingForceUpdate`\n   * is set, update the component.\n   *\n   * @param {ReactReconcileTransaction} transaction\n   * @internal\n   */\n  performUpdateIfNecessary: function (transaction) {\n    if (this._pendingElement != null) {\n      ReactReconciler.receiveComponent(this, this._pendingElement, transaction, this._context);\n    } else if (this._pendingStateQueue !== null || this._pendingForceUpdate) {\n      this.updateComponent(transaction, this._currentElement, this._currentElement, this._context, this._context);\n    } else {\n      this._updateBatchNumber = null;\n    }\n  },\n\n  /**\n   * Perform an update to a mounted component. The componentWillReceiveProps and\n   * shouldComponentUpdate methods are called, then (assuming the update isn't\n   * skipped) the remaining update lifecycle methods are called and the DOM\n   * representation is updated.\n   *\n   * By default, this implements React's rendering and reconciliation algorithm.\n   * Sophisticated clients may wish to override this.\n   *\n   * @param {ReactReconcileTransaction} transaction\n   * @param {ReactElement} prevParentElement\n   * @param {ReactElement} nextParentElement\n   * @internal\n   * @overridable\n   */\n  updateComponent: function (transaction, prevParentElement, nextParentElement, prevUnmaskedContext, nextUnmaskedContext) {\n    var inst = this._instance;\n    !(inst != null) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Attempted to update component `%s` that has already been unmounted (or failed to mount).', this.getName() || 'ReactCompositeComponent') : _prodInvariant('136', this.getName() || 'ReactCompositeComponent') : void 0;\n\n    var willReceive = false;\n    var nextContext;\n\n    // Determine if the context has changed or not\n    if (this._context === nextUnmaskedContext) {\n      nextContext = inst.context;\n    } else {\n      nextContext = this._processContext(nextUnmaskedContext);\n      willReceive = true;\n    }\n\n    var prevProps = prevParentElement.props;\n    var nextProps = nextParentElement.props;\n\n    // Not a simple state update but a props update\n    if (prevParentElement !== nextParentElement) {\n      willReceive = true;\n    }\n\n    // An update here will schedule an update but immediately set\n    // _pendingStateQueue which will ensure that any state updates gets\n    // immediately reconciled instead of waiting for the next batch.\n    if (willReceive && inst.componentWillReceiveProps) {\n      if (process.env.NODE_ENV !== 'production') {\n        measureLifeCyclePerf(function () {\n          return inst.componentWillReceiveProps(nextProps, nextContext);\n        }, this._debugID, 'componentWillReceiveProps');\n      } else {\n        inst.componentWillReceiveProps(nextProps, nextContext);\n      }\n    }\n\n    var nextState = this._processPendingState(nextProps, nextContext);\n    var shouldUpdate = true;\n\n    if (!this._pendingForceUpdate) {\n      if (inst.shouldComponentUpdate) {\n        if (process.env.NODE_ENV !== 'production') {\n          shouldUpdate = measureLifeCyclePerf(function () {\n            return inst.shouldComponentUpdate(nextProps, nextState, nextContext);\n          }, this._debugID, 'shouldComponentUpdate');\n        } else {\n          shouldUpdate = inst.shouldComponentUpdate(nextProps, nextState, nextContext);\n        }\n      } else {\n        if (this._compositeType === CompositeTypes.PureClass) {\n          shouldUpdate = !shallowEqual(prevProps, nextProps) || !shallowEqual(inst.state, nextState);\n        }\n      }\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      process.env.NODE_ENV !== 'production' ? warning(shouldUpdate !== undefined, '%s.shouldComponentUpdate(): Returned undefined instead of a ' + 'boolean value. Make sure to return true or false.', this.getName() || 'ReactCompositeComponent') : void 0;\n    }\n\n    this._updateBatchNumber = null;\n    if (shouldUpdate) {\n      this._pendingForceUpdate = false;\n      // Will set `this.props`, `this.state` and `this.context`.\n      this._performComponentUpdate(nextParentElement, nextProps, nextState, nextContext, transaction, nextUnmaskedContext);\n    } else {\n      // If it's determined that a component should not update, we still want\n      // to set props and state but we shortcut the rest of the update.\n      this._currentElement = nextParentElement;\n      this._context = nextUnmaskedContext;\n      inst.props = nextProps;\n      inst.state = nextState;\n      inst.context = nextContext;\n    }\n  },\n\n  _processPendingState: function (props, context) {\n    var inst = this._instance;\n    var queue = this._pendingStateQueue;\n    var replace = this._pendingReplaceState;\n    this._pendingReplaceState = false;\n    this._pendingStateQueue = null;\n\n    if (!queue) {\n      return inst.state;\n    }\n\n    if (replace && queue.length === 1) {\n      return queue[0];\n    }\n\n    var nextState = _assign({}, replace ? queue[0] : inst.state);\n    for (var i = replace ? 1 : 0; i < queue.length; i++) {\n      var partial = queue[i];\n      _assign(nextState, typeof partial === 'function' ? partial.call(inst, nextState, props, context) : partial);\n    }\n\n    return nextState;\n  },\n\n  /**\n   * Merges new props and state, notifies delegate methods of update and\n   * performs update.\n   *\n   * @param {ReactElement} nextElement Next element\n   * @param {object} nextProps Next public object to set as properties.\n   * @param {?object} nextState Next object to set as state.\n   * @param {?object} nextContext Next public object to set as context.\n   * @param {ReactReconcileTransaction} transaction\n   * @param {?object} unmaskedContext\n   * @private\n   */\n  _performComponentUpdate: function (nextElement, nextProps, nextState, nextContext, transaction, unmaskedContext) {\n    var _this2 = this;\n\n    var inst = this._instance;\n\n    var hasComponentDidUpdate = Boolean(inst.componentDidUpdate);\n    var prevProps;\n    var prevState;\n    var prevContext;\n    if (hasComponentDidUpdate) {\n      prevProps = inst.props;\n      prevState = inst.state;\n      prevContext = inst.context;\n    }\n\n    if (inst.componentWillUpdate) {\n      if (process.env.NODE_ENV !== 'production') {\n        measureLifeCyclePerf(function () {\n          return inst.componentWillUpdate(nextProps, nextState, nextContext);\n        }, this._debugID, 'componentWillUpdate');\n      } else {\n        inst.componentWillUpdate(nextProps, nextState, nextContext);\n      }\n    }\n\n    this._currentElement = nextElement;\n    this._context = unmaskedContext;\n    inst.props = nextProps;\n    inst.state = nextState;\n    inst.context = nextContext;\n\n    this._updateRenderedComponent(transaction, unmaskedContext);\n\n    if (hasComponentDidUpdate) {\n      if (process.env.NODE_ENV !== 'production') {\n        transaction.getReactMountReady().enqueue(function () {\n          measureLifeCyclePerf(inst.componentDidUpdate.bind(inst, prevProps, prevState, prevContext), _this2._debugID, 'componentDidUpdate');\n        });\n      } else {\n        transaction.getReactMountReady().enqueue(inst.componentDidUpdate.bind(inst, prevProps, prevState, prevContext), inst);\n      }\n    }\n  },\n\n  /**\n   * Call the component's `render` method and update the DOM accordingly.\n   *\n   * @param {ReactReconcileTransaction} transaction\n   * @internal\n   */\n  _updateRenderedComponent: function (transaction, context) {\n    var prevComponentInstance = this._renderedComponent;\n    var prevRenderedElement = prevComponentInstance._currentElement;\n    var nextRenderedElement = this._renderValidatedComponent();\n\n    var debugID = 0;\n    if (process.env.NODE_ENV !== 'production') {\n      debugID = this._debugID;\n    }\n\n    if (shouldUpdateReactComponent(prevRenderedElement, nextRenderedElement)) {\n      ReactReconciler.receiveComponent(prevComponentInstance, nextRenderedElement, transaction, this._processChildContext(context));\n    } else {\n      var oldHostNode = ReactReconciler.getHostNode(prevComponentInstance);\n      ReactReconciler.unmountComponent(prevComponentInstance, false);\n\n      var nodeType = ReactNodeTypes.getType(nextRenderedElement);\n      this._renderedNodeType = nodeType;\n      var child = this._instantiateReactComponent(nextRenderedElement, nodeType !== ReactNodeTypes.EMPTY /* shouldHaveDebugID */\n      );\n      this._renderedComponent = child;\n\n      var nextMarkup = ReactReconciler.mountComponent(child, transaction, this._hostParent, this._hostContainerInfo, this._processChildContext(context), debugID);\n\n      if (process.env.NODE_ENV !== 'production') {\n        if (debugID !== 0) {\n          var childDebugIDs = child._debugID !== 0 ? [child._debugID] : [];\n          ReactInstrumentation.debugTool.onSetChildren(debugID, childDebugIDs);\n        }\n      }\n\n      this._replaceNodeWithMarkup(oldHostNode, nextMarkup, prevComponentInstance);\n    }\n  },\n\n  /**\n   * Overridden in shallow rendering.\n   *\n   * @protected\n   */\n  _replaceNodeWithMarkup: function (oldHostNode, nextMarkup, prevInstance) {\n    ReactComponentEnvironment.replaceNodeWithMarkup(oldHostNode, nextMarkup, prevInstance);\n  },\n\n  /**\n   * @protected\n   */\n  _renderValidatedComponentWithoutOwnerOrContext: function () {\n    var inst = this._instance;\n    var renderedElement;\n\n    if (process.env.NODE_ENV !== 'production') {\n      renderedElement = measureLifeCyclePerf(function () {\n        return inst.render();\n      }, this._debugID, 'render');\n    } else {\n      renderedElement = inst.render();\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      // We allow auto-mocks to proceed as if they're returning null.\n      if (renderedElement === undefined && inst.render._isMockFunction) {\n        // This is probably bad practice. Consider warning here and\n        // deprecating this convenience.\n        renderedElement = null;\n      }\n    }\n\n    return renderedElement;\n  },\n\n  /**\n   * @private\n   */\n  _renderValidatedComponent: function () {\n    var renderedElement;\n    if (process.env.NODE_ENV !== 'production' || this._compositeType !== CompositeTypes.StatelessFunctional) {\n      ReactCurrentOwner.current = this;\n      try {\n        renderedElement = this._renderValidatedComponentWithoutOwnerOrContext();\n      } finally {\n        ReactCurrentOwner.current = null;\n      }\n    } else {\n      renderedElement = this._renderValidatedComponentWithoutOwnerOrContext();\n    }\n    !(\n    // TODO: An `isValidNode` function would probably be more appropriate\n    renderedElement === null || renderedElement === false || React.isValidElement(renderedElement)) ? process.env.NODE_ENV !== 'production' ? invariant(false, '%s.render(): A valid React element (or null) must be returned. You may have returned undefined, an array or some other invalid object.', this.getName() || 'ReactCompositeComponent') : _prodInvariant('109', this.getName() || 'ReactCompositeComponent') : void 0;\n\n    return renderedElement;\n  },\n\n  /**\n   * Lazily allocates the refs object and stores `component` as `ref`.\n   *\n   * @param {string} ref Reference name.\n   * @param {component} component Component to store as `ref`.\n   * @final\n   * @private\n   */\n  attachRef: function (ref, component) {\n    var inst = this.getPublicInstance();\n    !(inst != null) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Stateless function components cannot have refs.') : _prodInvariant('110') : void 0;\n    var publicComponentInstance = component.getPublicInstance();\n    if (process.env.NODE_ENV !== 'production') {\n      var componentName = component && component.getName ? component.getName() : 'a component';\n      process.env.NODE_ENV !== 'production' ? warning(publicComponentInstance != null || component._compositeType !== CompositeTypes.StatelessFunctional, 'Stateless function components cannot be given refs ' + '(See ref \"%s\" in %s created by %s). ' + 'Attempts to access this ref will fail.', ref, componentName, this.getName()) : void 0;\n    }\n    var refs = inst.refs === emptyObject ? inst.refs = {} : inst.refs;\n    refs[ref] = publicComponentInstance;\n  },\n\n  /**\n   * Detaches a reference name.\n   *\n   * @param {string} ref Name to dereference.\n   * @final\n   * @private\n   */\n  detachRef: function (ref) {\n    var refs = this.getPublicInstance().refs;\n    delete refs[ref];\n  },\n\n  /**\n   * Get a text description of the component that can be used to identify it\n   * in error messages.\n   * @return {string} The name or null.\n   * @internal\n   */\n  getName: function () {\n    var type = this._currentElement.type;\n    var constructor = this._instance && this._instance.constructor;\n    return type.displayName || constructor && constructor.displayName || type.name || constructor && constructor.name || null;\n  },\n\n  /**\n   * Get the publicly accessible representation of this component - i.e. what\n   * is exposed by refs and returned by render. Can be null for stateless\n   * components.\n   *\n   * @return {ReactComponent} the public component instance.\n   * @internal\n   */\n  getPublicInstance: function () {\n    var inst = this._instance;\n    if (this._compositeType === CompositeTypes.StatelessFunctional) {\n      return null;\n    }\n    return inst;\n  },\n\n  // Stub\n  _instantiateReactComponent: null\n\n};\n\nmodule.exports = ReactCompositeComponent;\n}).call(this,require('_process'))\n},{\"./ReactComponentEnvironment\":147,\"./ReactErrorUtils\":172,\"./ReactInstanceMap\":180,\"./ReactInstrumentation\":181,\"./ReactNodeTypes\":186,\"./ReactReconciler\":191,\"./checkReactTypeSpec\":218,\"./reactProdInvariant\":238,\"./shouldUpdateReactComponent\":242,\"_process\":112,\"fbjs/lib/emptyObject\":97,\"fbjs/lib/invariant\":104,\"fbjs/lib/shallowEqual\":110,\"fbjs/lib/warning\":111,\"object-assign\":114,\"react/lib/React\":251,\"react/lib/ReactCurrentOwner\":256}],149:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n/* globals __REACT_DEVTOOLS_GLOBAL_HOOK__*/\n\n'use strict';\n\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactDefaultInjection = require('./ReactDefaultInjection');\nvar ReactMount = require('./ReactMount');\nvar ReactReconciler = require('./ReactReconciler');\nvar ReactUpdates = require('./ReactUpdates');\nvar ReactVersion = require('./ReactVersion');\n\nvar findDOMNode = require('./findDOMNode');\nvar getHostComponentFromComposite = require('./getHostComponentFromComposite');\nvar renderSubtreeIntoContainer = require('./renderSubtreeIntoContainer');\nvar warning = require('fbjs/lib/warning');\n\nReactDefaultInjection.inject();\n\nvar ReactDOM = {\n  findDOMNode: findDOMNode,\n  render: ReactMount.render,\n  unmountComponentAtNode: ReactMount.unmountComponentAtNode,\n  version: ReactVersion,\n\n  /* eslint-disable camelcase */\n  unstable_batchedUpdates: ReactUpdates.batchedUpdates,\n  unstable_renderSubtreeIntoContainer: renderSubtreeIntoContainer\n};\n\n// Inject the runtime into a devtools global hook regardless of browser.\n// Allows for debugging when the hook is injected on the page.\nif (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ !== 'undefined' && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.inject === 'function') {\n  __REACT_DEVTOOLS_GLOBAL_HOOK__.inject({\n    ComponentTree: {\n      getClosestInstanceFromNode: ReactDOMComponentTree.getClosestInstanceFromNode,\n      getNodeFromInstance: function (inst) {\n        // inst is an internal instance (but could be a composite)\n        if (inst._renderedComponent) {\n          inst = getHostComponentFromComposite(inst);\n        }\n        if (inst) {\n          return ReactDOMComponentTree.getNodeFromInstance(inst);\n        } else {\n          return null;\n        }\n      }\n    },\n    Mount: ReactMount,\n    Reconciler: ReactReconciler\n  });\n}\n\nif (process.env.NODE_ENV !== 'production') {\n  var ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\n  if (ExecutionEnvironment.canUseDOM && window.top === window.self) {\n\n    // First check if devtools is not installed\n    if (typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined') {\n      // If we're in Chrome or Firefox, provide a download link if not installed.\n      if (navigator.userAgent.indexOf('Chrome') > -1 && navigator.userAgent.indexOf('Edge') === -1 || navigator.userAgent.indexOf('Firefox') > -1) {\n        // Firefox does not have the issue with devtools loaded over file://\n        var showFileUrlMessage = window.location.protocol.indexOf('http') === -1 && navigator.userAgent.indexOf('Firefox') === -1;\n        console.debug('Download the React DevTools ' + (showFileUrlMessage ? 'and use an HTTP server (instead of a file: URL) ' : '') + 'for a better development experience: ' + 'https://fb.me/react-devtools');\n      }\n    }\n\n    var testFunc = function testFn() {};\n    process.env.NODE_ENV !== 'production' ? warning((testFunc.name || testFunc.toString()).indexOf('testFn') !== -1, 'It looks like you\\'re using a minified copy of the development build ' + 'of React. When deploying React apps to production, make sure to use ' + 'the production build which skips development warnings and is faster. ' + 'See https://fb.me/react-minification for more details.') : void 0;\n\n    // If we're in IE8, check to see if we are in compatibility mode and provide\n    // information on preventing compatibility mode\n    var ieCompatibilityMode = document.documentMode && document.documentMode < 8;\n\n    process.env.NODE_ENV !== 'production' ? warning(!ieCompatibilityMode, 'Internet Explorer is running in compatibility mode; please add the ' + 'following tag to your HTML to prevent this from happening: ' + '<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\" />') : void 0;\n\n    var expectedFeatures = [\n    // shims\n    Array.isArray, Array.prototype.every, Array.prototype.forEach, Array.prototype.indexOf, Array.prototype.map, Date.now, Function.prototype.bind, Object.keys, String.prototype.trim];\n\n    for (var i = 0; i < expectedFeatures.length; i++) {\n      if (!expectedFeatures[i]) {\n        process.env.NODE_ENV !== 'production' ? warning(false, 'One or more ES5 shims expected by React are not available: ' + 'https://fb.me/react-warning-polyfills') : void 0;\n        break;\n      }\n    }\n  }\n}\n\nif (process.env.NODE_ENV !== 'production') {\n  var ReactInstrumentation = require('./ReactInstrumentation');\n  var ReactDOMUnknownPropertyHook = require('./ReactDOMUnknownPropertyHook');\n  var ReactDOMNullInputValuePropHook = require('./ReactDOMNullInputValuePropHook');\n  var ReactDOMInvalidARIAHook = require('./ReactDOMInvalidARIAHook');\n\n  ReactInstrumentation.debugTool.addHook(ReactDOMUnknownPropertyHook);\n  ReactInstrumentation.debugTool.addHook(ReactDOMNullInputValuePropHook);\n  ReactInstrumentation.debugTool.addHook(ReactDOMInvalidARIAHook);\n}\n\nmodule.exports = ReactDOM;\n}).call(this,require('_process'))\n},{\"./ReactDOMComponentTree\":152,\"./ReactDOMInvalidARIAHook\":158,\"./ReactDOMNullInputValuePropHook\":159,\"./ReactDOMUnknownPropertyHook\":166,\"./ReactDefaultInjection\":169,\"./ReactInstrumentation\":181,\"./ReactMount\":184,\"./ReactReconciler\":191,\"./ReactUpdates\":196,\"./ReactVersion\":197,\"./findDOMNode\":222,\"./getHostComponentFromComposite\":229,\"./renderSubtreeIntoContainer\":239,\"_process\":112,\"fbjs/lib/ExecutionEnvironment\":90,\"fbjs/lib/warning\":111}],150:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n/* global hasOwnProperty:true */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant'),\n    _assign = require('object-assign');\n\nvar AutoFocusUtils = require('./AutoFocusUtils');\nvar CSSPropertyOperations = require('./CSSPropertyOperations');\nvar DOMLazyTree = require('./DOMLazyTree');\nvar DOMNamespaces = require('./DOMNamespaces');\nvar DOMProperty = require('./DOMProperty');\nvar DOMPropertyOperations = require('./DOMPropertyOperations');\nvar EventPluginHub = require('./EventPluginHub');\nvar EventPluginRegistry = require('./EventPluginRegistry');\nvar ReactBrowserEventEmitter = require('./ReactBrowserEventEmitter');\nvar ReactDOMComponentFlags = require('./ReactDOMComponentFlags');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactDOMInput = require('./ReactDOMInput');\nvar ReactDOMOption = require('./ReactDOMOption');\nvar ReactDOMSelect = require('./ReactDOMSelect');\nvar ReactDOMTextarea = require('./ReactDOMTextarea');\nvar ReactInstrumentation = require('./ReactInstrumentation');\nvar ReactMultiChild = require('./ReactMultiChild');\nvar ReactServerRenderingTransaction = require('./ReactServerRenderingTransaction');\n\nvar emptyFunction = require('fbjs/lib/emptyFunction');\nvar escapeTextContentForBrowser = require('./escapeTextContentForBrowser');\nvar invariant = require('fbjs/lib/invariant');\nvar isEventSupported = require('./isEventSupported');\nvar shallowEqual = require('fbjs/lib/shallowEqual');\nvar validateDOMNesting = require('./validateDOMNesting');\nvar warning = require('fbjs/lib/warning');\n\nvar Flags = ReactDOMComponentFlags;\nvar deleteListener = EventPluginHub.deleteListener;\nvar getNode = ReactDOMComponentTree.getNodeFromInstance;\nvar listenTo = ReactBrowserEventEmitter.listenTo;\nvar registrationNameModules = EventPluginRegistry.registrationNameModules;\n\n// For quickly matching children type, to test if can be treated as content.\nvar CONTENT_TYPES = { 'string': true, 'number': true };\n\nvar STYLE = 'style';\nvar HTML = '__html';\nvar RESERVED_PROPS = {\n  children: null,\n  dangerouslySetInnerHTML: null,\n  suppressContentEditableWarning: null\n};\n\n// Node type for document fragments (Node.DOCUMENT_FRAGMENT_NODE).\nvar DOC_FRAGMENT_TYPE = 11;\n\nfunction getDeclarationErrorAddendum(internalInstance) {\n  if (internalInstance) {\n    var owner = internalInstance._currentElement._owner || null;\n    if (owner) {\n      var name = owner.getName();\n      if (name) {\n        return ' This DOM node was rendered by `' + name + '`.';\n      }\n    }\n  }\n  return '';\n}\n\nfunction friendlyStringify(obj) {\n  if (typeof obj === 'object') {\n    if (Array.isArray(obj)) {\n      return '[' + obj.map(friendlyStringify).join(', ') + ']';\n    } else {\n      var pairs = [];\n      for (var key in obj) {\n        if (Object.prototype.hasOwnProperty.call(obj, key)) {\n          var keyEscaped = /^[a-z$_][\\w$_]*$/i.test(key) ? key : JSON.stringify(key);\n          pairs.push(keyEscaped + ': ' + friendlyStringify(obj[key]));\n        }\n      }\n      return '{' + pairs.join(', ') + '}';\n    }\n  } else if (typeof obj === 'string') {\n    return JSON.stringify(obj);\n  } else if (typeof obj === 'function') {\n    return '[function object]';\n  }\n  // Differs from JSON.stringify in that undefined because undefined and that\n  // inf and nan don't become null\n  return String(obj);\n}\n\nvar styleMutationWarning = {};\n\nfunction checkAndWarnForMutatedStyle(style1, style2, component) {\n  if (style1 == null || style2 == null) {\n    return;\n  }\n  if (shallowEqual(style1, style2)) {\n    return;\n  }\n\n  var componentName = component._tag;\n  var owner = component._currentElement._owner;\n  var ownerName;\n  if (owner) {\n    ownerName = owner.getName();\n  }\n\n  var hash = ownerName + '|' + componentName;\n\n  if (styleMutationWarning.hasOwnProperty(hash)) {\n    return;\n  }\n\n  styleMutationWarning[hash] = true;\n\n  process.env.NODE_ENV !== 'production' ? warning(false, '`%s` was passed a style object that has previously been mutated. ' + 'Mutating `style` is deprecated. Consider cloning it beforehand. Check ' + 'the `render` %s. Previous style: %s. Mutated style: %s.', componentName, owner ? 'of `' + ownerName + '`' : 'using <' + componentName + '>', friendlyStringify(style1), friendlyStringify(style2)) : void 0;\n}\n\n/**\n * @param {object} component\n * @param {?object} props\n */\nfunction assertValidProps(component, props) {\n  if (!props) {\n    return;\n  }\n  // Note the use of `==` which checks for null or undefined.\n  if (voidElementTags[component._tag]) {\n    !(props.children == null && props.dangerouslySetInnerHTML == null) ? process.env.NODE_ENV !== 'production' ? invariant(false, '%s is a void element tag and must neither have `children` nor use `dangerouslySetInnerHTML`.%s', component._tag, component._currentElement._owner ? ' Check the render method of ' + component._currentElement._owner.getName() + '.' : '') : _prodInvariant('137', component._tag, component._currentElement._owner ? ' Check the render method of ' + component._currentElement._owner.getName() + '.' : '') : void 0;\n  }\n  if (props.dangerouslySetInnerHTML != null) {\n    !(props.children == null) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Can only set one of `children` or `props.dangerouslySetInnerHTML`.') : _prodInvariant('60') : void 0;\n    !(typeof props.dangerouslySetInnerHTML === 'object' && HTML in props.dangerouslySetInnerHTML) ? process.env.NODE_ENV !== 'production' ? invariant(false, '`props.dangerouslySetInnerHTML` must be in the form `{__html: ...}`. Please visit https://fb.me/react-invariant-dangerously-set-inner-html for more information.') : _prodInvariant('61') : void 0;\n  }\n  if (process.env.NODE_ENV !== 'production') {\n    process.env.NODE_ENV !== 'production' ? warning(props.innerHTML == null, 'Directly setting property `innerHTML` is not permitted. ' + 'For more information, lookup documentation on `dangerouslySetInnerHTML`.') : void 0;\n    process.env.NODE_ENV !== 'production' ? warning(props.suppressContentEditableWarning || !props.contentEditable || props.children == null, 'A component is `contentEditable` and contains `children` managed by ' + 'React. It is now your responsibility to guarantee that none of ' + 'those nodes are unexpectedly modified or duplicated. This is ' + 'probably not intentional.') : void 0;\n    process.env.NODE_ENV !== 'production' ? warning(props.onFocusIn == null && props.onFocusOut == null, 'React uses onFocus and onBlur instead of onFocusIn and onFocusOut. ' + 'All React events are normalized to bubble, so onFocusIn and onFocusOut ' + 'are not needed/supported by React.') : void 0;\n  }\n  !(props.style == null || typeof props.style === 'object') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'The `style` prop expects a mapping from style properties to values, not a string. For example, style={{marginRight: spacing + \\'em\\'}} when using JSX.%s', getDeclarationErrorAddendum(component)) : _prodInvariant('62', getDeclarationErrorAddendum(component)) : void 0;\n}\n\nfunction enqueuePutListener(inst, registrationName, listener, transaction) {\n  if (transaction instanceof ReactServerRenderingTransaction) {\n    return;\n  }\n  if (process.env.NODE_ENV !== 'production') {\n    // IE8 has no API for event capturing and the `onScroll` event doesn't\n    // bubble.\n    process.env.NODE_ENV !== 'production' ? warning(registrationName !== 'onScroll' || isEventSupported('scroll', true), 'This browser doesn\\'t support the `onScroll` event') : void 0;\n  }\n  var containerInfo = inst._hostContainerInfo;\n  var isDocumentFragment = containerInfo._node && containerInfo._node.nodeType === DOC_FRAGMENT_TYPE;\n  var doc = isDocumentFragment ? containerInfo._node : containerInfo._ownerDocument;\n  listenTo(registrationName, doc);\n  transaction.getReactMountReady().enqueue(putListener, {\n    inst: inst,\n    registrationName: registrationName,\n    listener: listener\n  });\n}\n\nfunction putListener() {\n  var listenerToPut = this;\n  EventPluginHub.putListener(listenerToPut.inst, listenerToPut.registrationName, listenerToPut.listener);\n}\n\nfunction inputPostMount() {\n  var inst = this;\n  ReactDOMInput.postMountWrapper(inst);\n}\n\nfunction textareaPostMount() {\n  var inst = this;\n  ReactDOMTextarea.postMountWrapper(inst);\n}\n\nfunction optionPostMount() {\n  var inst = this;\n  ReactDOMOption.postMountWrapper(inst);\n}\n\nvar setAndValidateContentChildDev = emptyFunction;\nif (process.env.NODE_ENV !== 'production') {\n  setAndValidateContentChildDev = function (content) {\n    var hasExistingContent = this._contentDebugID != null;\n    var debugID = this._debugID;\n    // This ID represents the inlined child that has no backing instance:\n    var contentDebugID = -debugID;\n\n    if (content == null) {\n      if (hasExistingContent) {\n        ReactInstrumentation.debugTool.onUnmountComponent(this._contentDebugID);\n      }\n      this._contentDebugID = null;\n      return;\n    }\n\n    validateDOMNesting(null, String(content), this, this._ancestorInfo);\n    this._contentDebugID = contentDebugID;\n    if (hasExistingContent) {\n      ReactInstrumentation.debugTool.onBeforeUpdateComponent(contentDebugID, content);\n      ReactInstrumentation.debugTool.onUpdateComponent(contentDebugID);\n    } else {\n      ReactInstrumentation.debugTool.onBeforeMountComponent(contentDebugID, content, debugID);\n      ReactInstrumentation.debugTool.onMountComponent(contentDebugID);\n      ReactInstrumentation.debugTool.onSetChildren(debugID, [contentDebugID]);\n    }\n  };\n}\n\n// There are so many media events, it makes sense to just\n// maintain a list rather than create a `trapBubbledEvent` for each\nvar mediaEvents = {\n  topAbort: 'abort',\n  topCanPlay: 'canplay',\n  topCanPlayThrough: 'canplaythrough',\n  topDurationChange: 'durationchange',\n  topEmptied: 'emptied',\n  topEncrypted: 'encrypted',\n  topEnded: 'ended',\n  topError: 'error',\n  topLoadedData: 'loadeddata',\n  topLoadedMetadata: 'loadedmetadata',\n  topLoadStart: 'loadstart',\n  topPause: 'pause',\n  topPlay: 'play',\n  topPlaying: 'playing',\n  topProgress: 'progress',\n  topRateChange: 'ratechange',\n  topSeeked: 'seeked',\n  topSeeking: 'seeking',\n  topStalled: 'stalled',\n  topSuspend: 'suspend',\n  topTimeUpdate: 'timeupdate',\n  topVolumeChange: 'volumechange',\n  topWaiting: 'waiting'\n};\n\nfunction trapBubbledEventsLocal() {\n  var inst = this;\n  // If a component renders to null or if another component fatals and causes\n  // the state of the tree to be corrupted, `node` here can be null.\n  !inst._rootNodeID ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Must be mounted to trap events') : _prodInvariant('63') : void 0;\n  var node = getNode(inst);\n  !node ? process.env.NODE_ENV !== 'production' ? invariant(false, 'trapBubbledEvent(...): Requires node to be rendered.') : _prodInvariant('64') : void 0;\n\n  switch (inst._tag) {\n    case 'iframe':\n    case 'object':\n      inst._wrapperState.listeners = [ReactBrowserEventEmitter.trapBubbledEvent('topLoad', 'load', node)];\n      break;\n    case 'video':\n    case 'audio':\n\n      inst._wrapperState.listeners = [];\n      // Create listener for each media event\n      for (var event in mediaEvents) {\n        if (mediaEvents.hasOwnProperty(event)) {\n          inst._wrapperState.listeners.push(ReactBrowserEventEmitter.trapBubbledEvent(event, mediaEvents[event], node));\n        }\n      }\n      break;\n    case 'source':\n      inst._wrapperState.listeners = [ReactBrowserEventEmitter.trapBubbledEvent('topError', 'error', node)];\n      break;\n    case 'img':\n      inst._wrapperState.listeners = [ReactBrowserEventEmitter.trapBubbledEvent('topError', 'error', node), ReactBrowserEventEmitter.trapBubbledEvent('topLoad', 'load', node)];\n      break;\n    case 'form':\n      inst._wrapperState.listeners = [ReactBrowserEventEmitter.trapBubbledEvent('topReset', 'reset', node), ReactBrowserEventEmitter.trapBubbledEvent('topSubmit', 'submit', node)];\n      break;\n    case 'input':\n    case 'select':\n    case 'textarea':\n      inst._wrapperState.listeners = [ReactBrowserEventEmitter.trapBubbledEvent('topInvalid', 'invalid', node)];\n      break;\n  }\n}\n\nfunction postUpdateSelectWrapper() {\n  ReactDOMSelect.postUpdateWrapper(this);\n}\n\n// For HTML, certain tags should omit their close tag. We keep a whitelist for\n// those special-case tags.\n\nvar omittedCloseTags = {\n  'area': true,\n  'base': true,\n  'br': true,\n  'col': true,\n  'embed': true,\n  'hr': true,\n  'img': true,\n  'input': true,\n  'keygen': true,\n  'link': true,\n  'meta': true,\n  'param': true,\n  'source': true,\n  'track': true,\n  'wbr': true\n};\n\nvar newlineEatingTags = {\n  'listing': true,\n  'pre': true,\n  'textarea': true\n};\n\n// For HTML, certain tags cannot have children. This has the same purpose as\n// `omittedCloseTags` except that `menuitem` should still have its closing tag.\n\nvar voidElementTags = _assign({\n  'menuitem': true\n}, omittedCloseTags);\n\n// We accept any tag to be rendered but since this gets injected into arbitrary\n// HTML, we want to make sure that it's a safe tag.\n// http://www.w3.org/TR/REC-xml/#NT-Name\n\nvar VALID_TAG_REGEX = /^[a-zA-Z][a-zA-Z:_\\.\\-\\d]*$/; // Simplified subset\nvar validatedTagCache = {};\nvar hasOwnProperty = {}.hasOwnProperty;\n\nfunction validateDangerousTag(tag) {\n  if (!hasOwnProperty.call(validatedTagCache, tag)) {\n    !VALID_TAG_REGEX.test(tag) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Invalid tag: %s', tag) : _prodInvariant('65', tag) : void 0;\n    validatedTagCache[tag] = true;\n  }\n}\n\nfunction isCustomComponent(tagName, props) {\n  return tagName.indexOf('-') >= 0 || props.is != null;\n}\n\nvar globalIdCounter = 1;\n\n/**\n * Creates a new React class that is idempotent and capable of containing other\n * React components. It accepts event listeners and DOM properties that are\n * valid according to `DOMProperty`.\n *\n *  - Event listeners: `onClick`, `onMouseDown`, etc.\n *  - DOM properties: `className`, `name`, `title`, etc.\n *\n * The `style` property functions differently from the DOM API. It accepts an\n * object mapping of style properties to values.\n *\n * @constructor ReactDOMComponent\n * @extends ReactMultiChild\n */\nfunction ReactDOMComponent(element) {\n  var tag = element.type;\n  validateDangerousTag(tag);\n  this._currentElement = element;\n  this._tag = tag.toLowerCase();\n  this._namespaceURI = null;\n  this._renderedChildren = null;\n  this._previousStyle = null;\n  this._previousStyleCopy = null;\n  this._hostNode = null;\n  this._hostParent = null;\n  this._rootNodeID = 0;\n  this._domID = 0;\n  this._hostContainerInfo = null;\n  this._wrapperState = null;\n  this._topLevelWrapper = null;\n  this._flags = 0;\n  if (process.env.NODE_ENV !== 'production') {\n    this._ancestorInfo = null;\n    setAndValidateContentChildDev.call(this, null);\n  }\n}\n\nReactDOMComponent.displayName = 'ReactDOMComponent';\n\nReactDOMComponent.Mixin = {\n\n  /**\n   * Generates root tag markup then recurses. This method has side effects and\n   * is not idempotent.\n   *\n   * @internal\n   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n   * @param {?ReactDOMComponent} the parent component instance\n   * @param {?object} info about the host container\n   * @param {object} context\n   * @return {string} The computed markup.\n   */\n  mountComponent: function (transaction, hostParent, hostContainerInfo, context) {\n    this._rootNodeID = globalIdCounter++;\n    this._domID = hostContainerInfo._idCounter++;\n    this._hostParent = hostParent;\n    this._hostContainerInfo = hostContainerInfo;\n\n    var props = this._currentElement.props;\n\n    switch (this._tag) {\n      case 'audio':\n      case 'form':\n      case 'iframe':\n      case 'img':\n      case 'link':\n      case 'object':\n      case 'source':\n      case 'video':\n        this._wrapperState = {\n          listeners: null\n        };\n        transaction.getReactMountReady().enqueue(trapBubbledEventsLocal, this);\n        break;\n      case 'input':\n        ReactDOMInput.mountWrapper(this, props, hostParent);\n        props = ReactDOMInput.getHostProps(this, props);\n        transaction.getReactMountReady().enqueue(trapBubbledEventsLocal, this);\n        break;\n      case 'option':\n        ReactDOMOption.mountWrapper(this, props, hostParent);\n        props = ReactDOMOption.getHostProps(this, props);\n        break;\n      case 'select':\n        ReactDOMSelect.mountWrapper(this, props, hostParent);\n        props = ReactDOMSelect.getHostProps(this, props);\n        transaction.getReactMountReady().enqueue(trapBubbledEventsLocal, this);\n        break;\n      case 'textarea':\n        ReactDOMTextarea.mountWrapper(this, props, hostParent);\n        props = ReactDOMTextarea.getHostProps(this, props);\n        transaction.getReactMountReady().enqueue(trapBubbledEventsLocal, this);\n        break;\n    }\n\n    assertValidProps(this, props);\n\n    // We create tags in the namespace of their parent container, except HTML\n    // tags get no namespace.\n    var namespaceURI;\n    var parentTag;\n    if (hostParent != null) {\n      namespaceURI = hostParent._namespaceURI;\n      parentTag = hostParent._tag;\n    } else if (hostContainerInfo._tag) {\n      namespaceURI = hostContainerInfo._namespaceURI;\n      parentTag = hostContainerInfo._tag;\n    }\n    if (namespaceURI == null || namespaceURI === DOMNamespaces.svg && parentTag === 'foreignobject') {\n      namespaceURI = DOMNamespaces.html;\n    }\n    if (namespaceURI === DOMNamespaces.html) {\n      if (this._tag === 'svg') {\n        namespaceURI = DOMNamespaces.svg;\n      } else if (this._tag === 'math') {\n        namespaceURI = DOMNamespaces.mathml;\n      }\n    }\n    this._namespaceURI = namespaceURI;\n\n    if (process.env.NODE_ENV !== 'production') {\n      var parentInfo;\n      if (hostParent != null) {\n        parentInfo = hostParent._ancestorInfo;\n      } else if (hostContainerInfo._tag) {\n        parentInfo = hostContainerInfo._ancestorInfo;\n      }\n      if (parentInfo) {\n        // parentInfo should always be present except for the top-level\n        // component when server rendering\n        validateDOMNesting(this._tag, null, this, parentInfo);\n      }\n      this._ancestorInfo = validateDOMNesting.updatedAncestorInfo(parentInfo, this._tag, this);\n    }\n\n    var mountImage;\n    if (transaction.useCreateElement) {\n      var ownerDocument = hostContainerInfo._ownerDocument;\n      var el;\n      if (namespaceURI === DOMNamespaces.html) {\n        if (this._tag === 'script') {\n          // Create the script via .innerHTML so its \"parser-inserted\" flag is\n          // set to true and it does not execute\n          var div = ownerDocument.createElement('div');\n          var type = this._currentElement.type;\n          div.innerHTML = '<' + type + '></' + type + '>';\n          el = div.removeChild(div.firstChild);\n        } else if (props.is) {\n          el = ownerDocument.createElement(this._currentElement.type, props.is);\n        } else {\n          // Separate else branch instead of using `props.is || undefined` above becuase of a Firefox bug.\n          // See discussion in https://github.com/facebook/react/pull/6896\n          // and discussion in https://bugzilla.mozilla.org/show_bug.cgi?id=1276240\n          el = ownerDocument.createElement(this._currentElement.type);\n        }\n      } else {\n        el = ownerDocument.createElementNS(namespaceURI, this._currentElement.type);\n      }\n      ReactDOMComponentTree.precacheNode(this, el);\n      this._flags |= Flags.hasCachedChildNodes;\n      if (!this._hostParent) {\n        DOMPropertyOperations.setAttributeForRoot(el);\n      }\n      this._updateDOMProperties(null, props, transaction);\n      var lazyTree = DOMLazyTree(el);\n      this._createInitialChildren(transaction, props, context, lazyTree);\n      mountImage = lazyTree;\n    } else {\n      var tagOpen = this._createOpenTagMarkupAndPutListeners(transaction, props);\n      var tagContent = this._createContentMarkup(transaction, props, context);\n      if (!tagContent && omittedCloseTags[this._tag]) {\n        mountImage = tagOpen + '/>';\n      } else {\n        mountImage = tagOpen + '>' + tagContent + '</' + this._currentElement.type + '>';\n      }\n    }\n\n    switch (this._tag) {\n      case 'input':\n        transaction.getReactMountReady().enqueue(inputPostMount, this);\n        if (props.autoFocus) {\n          transaction.getReactMountReady().enqueue(AutoFocusUtils.focusDOMComponent, this);\n        }\n        break;\n      case 'textarea':\n        transaction.getReactMountReady().enqueue(textareaPostMount, this);\n        if (props.autoFocus) {\n          transaction.getReactMountReady().enqueue(AutoFocusUtils.focusDOMComponent, this);\n        }\n        break;\n      case 'select':\n        if (props.autoFocus) {\n          transaction.getReactMountReady().enqueue(AutoFocusUtils.focusDOMComponent, this);\n        }\n        break;\n      case 'button':\n        if (props.autoFocus) {\n          transaction.getReactMountReady().enqueue(AutoFocusUtils.focusDOMComponent, this);\n        }\n        break;\n      case 'option':\n        transaction.getReactMountReady().enqueue(optionPostMount, this);\n        break;\n    }\n\n    return mountImage;\n  },\n\n  /**\n   * Creates markup for the open tag and all attributes.\n   *\n   * This method has side effects because events get registered.\n   *\n   * Iterating over object properties is faster than iterating over arrays.\n   * @see http://jsperf.com/obj-vs-arr-iteration\n   *\n   * @private\n   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n   * @param {object} props\n   * @return {string} Markup of opening tag.\n   */\n  _createOpenTagMarkupAndPutListeners: function (transaction, props) {\n    var ret = '<' + this._currentElement.type;\n\n    for (var propKey in props) {\n      if (!props.hasOwnProperty(propKey)) {\n        continue;\n      }\n      var propValue = props[propKey];\n      if (propValue == null) {\n        continue;\n      }\n      if (registrationNameModules.hasOwnProperty(propKey)) {\n        if (propValue) {\n          enqueuePutListener(this, propKey, propValue, transaction);\n        }\n      } else {\n        if (propKey === STYLE) {\n          if (propValue) {\n            if (process.env.NODE_ENV !== 'production') {\n              // See `_updateDOMProperties`. style block\n              this._previousStyle = propValue;\n            }\n            propValue = this._previousStyleCopy = _assign({}, props.style);\n          }\n          propValue = CSSPropertyOperations.createMarkupForStyles(propValue, this);\n        }\n        var markup = null;\n        if (this._tag != null && isCustomComponent(this._tag, props)) {\n          if (!RESERVED_PROPS.hasOwnProperty(propKey)) {\n            markup = DOMPropertyOperations.createMarkupForCustomAttribute(propKey, propValue);\n          }\n        } else {\n          markup = DOMPropertyOperations.createMarkupForProperty(propKey, propValue);\n        }\n        if (markup) {\n          ret += ' ' + markup;\n        }\n      }\n    }\n\n    // For static pages, no need to put React ID and checksum. Saves lots of\n    // bytes.\n    if (transaction.renderToStaticMarkup) {\n      return ret;\n    }\n\n    if (!this._hostParent) {\n      ret += ' ' + DOMPropertyOperations.createMarkupForRoot();\n    }\n    ret += ' ' + DOMPropertyOperations.createMarkupForID(this._domID);\n    return ret;\n  },\n\n  /**\n   * Creates markup for the content between the tags.\n   *\n   * @private\n   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n   * @param {object} props\n   * @param {object} context\n   * @return {string} Content markup.\n   */\n  _createContentMarkup: function (transaction, props, context) {\n    var ret = '';\n\n    // Intentional use of != to avoid catching zero/false.\n    var innerHTML = props.dangerouslySetInnerHTML;\n    if (innerHTML != null) {\n      if (innerHTML.__html != null) {\n        ret = innerHTML.__html;\n      }\n    } else {\n      var contentToUse = CONTENT_TYPES[typeof props.children] ? props.children : null;\n      var childrenToUse = contentToUse != null ? null : props.children;\n      if (contentToUse != null) {\n        // TODO: Validate that text is allowed as a child of this node\n        ret = escapeTextContentForBrowser(contentToUse);\n        if (process.env.NODE_ENV !== 'production') {\n          setAndValidateContentChildDev.call(this, contentToUse);\n        }\n      } else if (childrenToUse != null) {\n        var mountImages = this.mountChildren(childrenToUse, transaction, context);\n        ret = mountImages.join('');\n      }\n    }\n    if (newlineEatingTags[this._tag] && ret.charAt(0) === '\\n') {\n      // text/html ignores the first character in these tags if it's a newline\n      // Prefer to break application/xml over text/html (for now) by adding\n      // a newline specifically to get eaten by the parser. (Alternately for\n      // textareas, replacing \"^\\n\" with \"\\r\\n\" doesn't get eaten, and the first\n      // \\r is normalized out by HTMLTextAreaElement#value.)\n      // See: <http://www.w3.org/TR/html-polyglot/#newlines-in-textarea-and-pre>\n      // See: <http://www.w3.org/TR/html5/syntax.html#element-restrictions>\n      // See: <http://www.w3.org/TR/html5/syntax.html#newlines>\n      // See: Parsing of \"textarea\" \"listing\" and \"pre\" elements\n      //  from <http://www.w3.org/TR/html5/syntax.html#parsing-main-inbody>\n      return '\\n' + ret;\n    } else {\n      return ret;\n    }\n  },\n\n  _createInitialChildren: function (transaction, props, context, lazyTree) {\n    // Intentional use of != to avoid catching zero/false.\n    var innerHTML = props.dangerouslySetInnerHTML;\n    if (innerHTML != null) {\n      if (innerHTML.__html != null) {\n        DOMLazyTree.queueHTML(lazyTree, innerHTML.__html);\n      }\n    } else {\n      var contentToUse = CONTENT_TYPES[typeof props.children] ? props.children : null;\n      var childrenToUse = contentToUse != null ? null : props.children;\n      // TODO: Validate that text is allowed as a child of this node\n      if (contentToUse != null) {\n        // Avoid setting textContent when the text is empty. In IE11 setting\n        // textContent on a text area will cause the placeholder to not\n        // show within the textarea until it has been focused and blurred again.\n        // https://github.com/facebook/react/issues/6731#issuecomment-254874553\n        if (contentToUse !== '') {\n          if (process.env.NODE_ENV !== 'production') {\n            setAndValidateContentChildDev.call(this, contentToUse);\n          }\n          DOMLazyTree.queueText(lazyTree, contentToUse);\n        }\n      } else if (childrenToUse != null) {\n        var mountImages = this.mountChildren(childrenToUse, transaction, context);\n        for (var i = 0; i < mountImages.length; i++) {\n          DOMLazyTree.queueChild(lazyTree, mountImages[i]);\n        }\n      }\n    }\n  },\n\n  /**\n   * Receives a next element and updates the component.\n   *\n   * @internal\n   * @param {ReactElement} nextElement\n   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n   * @param {object} context\n   */\n  receiveComponent: function (nextElement, transaction, context) {\n    var prevElement = this._currentElement;\n    this._currentElement = nextElement;\n    this.updateComponent(transaction, prevElement, nextElement, context);\n  },\n\n  /**\n   * Updates a DOM component after it has already been allocated and\n   * attached to the DOM. Reconciles the root DOM node, then recurses.\n   *\n   * @param {ReactReconcileTransaction} transaction\n   * @param {ReactElement} prevElement\n   * @param {ReactElement} nextElement\n   * @internal\n   * @overridable\n   */\n  updateComponent: function (transaction, prevElement, nextElement, context) {\n    var lastProps = prevElement.props;\n    var nextProps = this._currentElement.props;\n\n    switch (this._tag) {\n      case 'input':\n        lastProps = ReactDOMInput.getHostProps(this, lastProps);\n        nextProps = ReactDOMInput.getHostProps(this, nextProps);\n        break;\n      case 'option':\n        lastProps = ReactDOMOption.getHostProps(this, lastProps);\n        nextProps = ReactDOMOption.getHostProps(this, nextProps);\n        break;\n      case 'select':\n        lastProps = ReactDOMSelect.getHostProps(this, lastProps);\n        nextProps = ReactDOMSelect.getHostProps(this, nextProps);\n        break;\n      case 'textarea':\n        lastProps = ReactDOMTextarea.getHostProps(this, lastProps);\n        nextProps = ReactDOMTextarea.getHostProps(this, nextProps);\n        break;\n    }\n\n    assertValidProps(this, nextProps);\n    this._updateDOMProperties(lastProps, nextProps, transaction);\n    this._updateDOMChildren(lastProps, nextProps, transaction, context);\n\n    switch (this._tag) {\n      case 'input':\n        // Update the wrapper around inputs *after* updating props. This has to\n        // happen after `_updateDOMProperties`. Otherwise HTML5 input validations\n        // raise warnings and prevent the new value from being assigned.\n        ReactDOMInput.updateWrapper(this);\n        break;\n      case 'textarea':\n        ReactDOMTextarea.updateWrapper(this);\n        break;\n      case 'select':\n        // <select> value update needs to occur after <option> children\n        // reconciliation\n        transaction.getReactMountReady().enqueue(postUpdateSelectWrapper, this);\n        break;\n    }\n  },\n\n  /**\n   * Reconciles the properties by detecting differences in property values and\n   * updating the DOM as necessary. This function is probably the single most\n   * critical path for performance optimization.\n   *\n   * TODO: Benchmark whether checking for changed values in memory actually\n   *       improves performance (especially statically positioned elements).\n   * TODO: Benchmark the effects of putting this at the top since 99% of props\n   *       do not change for a given reconciliation.\n   * TODO: Benchmark areas that can be improved with caching.\n   *\n   * @private\n   * @param {object} lastProps\n   * @param {object} nextProps\n   * @param {?DOMElement} node\n   */\n  _updateDOMProperties: function (lastProps, nextProps, transaction) {\n    var propKey;\n    var styleName;\n    var styleUpdates;\n    for (propKey in lastProps) {\n      if (nextProps.hasOwnProperty(propKey) || !lastProps.hasOwnProperty(propKey) || lastProps[propKey] == null) {\n        continue;\n      }\n      if (propKey === STYLE) {\n        var lastStyle = this._previousStyleCopy;\n        for (styleName in lastStyle) {\n          if (lastStyle.hasOwnProperty(styleName)) {\n            styleUpdates = styleUpdates || {};\n            styleUpdates[styleName] = '';\n          }\n        }\n        this._previousStyleCopy = null;\n      } else if (registrationNameModules.hasOwnProperty(propKey)) {\n        if (lastProps[propKey]) {\n          // Only call deleteListener if there was a listener previously or\n          // else willDeleteListener gets called when there wasn't actually a\n          // listener (e.g., onClick={null})\n          deleteListener(this, propKey);\n        }\n      } else if (isCustomComponent(this._tag, lastProps)) {\n        if (!RESERVED_PROPS.hasOwnProperty(propKey)) {\n          DOMPropertyOperations.deleteValueForAttribute(getNode(this), propKey);\n        }\n      } else if (DOMProperty.properties[propKey] || DOMProperty.isCustomAttribute(propKey)) {\n        DOMPropertyOperations.deleteValueForProperty(getNode(this), propKey);\n      }\n    }\n    for (propKey in nextProps) {\n      var nextProp = nextProps[propKey];\n      var lastProp = propKey === STYLE ? this._previousStyleCopy : lastProps != null ? lastProps[propKey] : undefined;\n      if (!nextProps.hasOwnProperty(propKey) || nextProp === lastProp || nextProp == null && lastProp == null) {\n        continue;\n      }\n      if (propKey === STYLE) {\n        if (nextProp) {\n          if (process.env.NODE_ENV !== 'production') {\n            checkAndWarnForMutatedStyle(this._previousStyleCopy, this._previousStyle, this);\n            this._previousStyle = nextProp;\n          }\n          nextProp = this._previousStyleCopy = _assign({}, nextProp);\n        } else {\n          this._previousStyleCopy = null;\n        }\n        if (lastProp) {\n          // Unset styles on `lastProp` but not on `nextProp`.\n          for (styleName in lastProp) {\n            if (lastProp.hasOwnProperty(styleName) && (!nextProp || !nextProp.hasOwnProperty(styleName))) {\n              styleUpdates = styleUpdates || {};\n              styleUpdates[styleName] = '';\n            }\n          }\n          // Update styles that changed since `lastProp`.\n          for (styleName in nextProp) {\n            if (nextProp.hasOwnProperty(styleName) && lastProp[styleName] !== nextProp[styleName]) {\n              styleUpdates = styleUpdates || {};\n              styleUpdates[styleName] = nextProp[styleName];\n            }\n          }\n        } else {\n          // Relies on `updateStylesByID` not mutating `styleUpdates`.\n          styleUpdates = nextProp;\n        }\n      } else if (registrationNameModules.hasOwnProperty(propKey)) {\n        if (nextProp) {\n          enqueuePutListener(this, propKey, nextProp, transaction);\n        } else if (lastProp) {\n          deleteListener(this, propKey);\n        }\n      } else if (isCustomComponent(this._tag, nextProps)) {\n        if (!RESERVED_PROPS.hasOwnProperty(propKey)) {\n          DOMPropertyOperations.setValueForAttribute(getNode(this), propKey, nextProp);\n        }\n      } else if (DOMProperty.properties[propKey] || DOMProperty.isCustomAttribute(propKey)) {\n        var node = getNode(this);\n        // If we're updating to null or undefined, we should remove the property\n        // from the DOM node instead of inadvertently setting to a string. This\n        // brings us in line with the same behavior we have on initial render.\n        if (nextProp != null) {\n          DOMPropertyOperations.setValueForProperty(node, propKey, nextProp);\n        } else {\n          DOMPropertyOperations.deleteValueForProperty(node, propKey);\n        }\n      }\n    }\n    if (styleUpdates) {\n      CSSPropertyOperations.setValueForStyles(getNode(this), styleUpdates, this);\n    }\n  },\n\n  /**\n   * Reconciles the children with the various properties that affect the\n   * children content.\n   *\n   * @param {object} lastProps\n   * @param {object} nextProps\n   * @param {ReactReconcileTransaction} transaction\n   * @param {object} context\n   */\n  _updateDOMChildren: function (lastProps, nextProps, transaction, context) {\n    var lastContent = CONTENT_TYPES[typeof lastProps.children] ? lastProps.children : null;\n    var nextContent = CONTENT_TYPES[typeof nextProps.children] ? nextProps.children : null;\n\n    var lastHtml = lastProps.dangerouslySetInnerHTML && lastProps.dangerouslySetInnerHTML.__html;\n    var nextHtml = nextProps.dangerouslySetInnerHTML && nextProps.dangerouslySetInnerHTML.__html;\n\n    // Note the use of `!=` which checks for null or undefined.\n    var lastChildren = lastContent != null ? null : lastProps.children;\n    var nextChildren = nextContent != null ? null : nextProps.children;\n\n    // If we're switching from children to content/html or vice versa, remove\n    // the old content\n    var lastHasContentOrHtml = lastContent != null || lastHtml != null;\n    var nextHasContentOrHtml = nextContent != null || nextHtml != null;\n    if (lastChildren != null && nextChildren == null) {\n      this.updateChildren(null, transaction, context);\n    } else if (lastHasContentOrHtml && !nextHasContentOrHtml) {\n      this.updateTextContent('');\n      if (process.env.NODE_ENV !== 'production') {\n        ReactInstrumentation.debugTool.onSetChildren(this._debugID, []);\n      }\n    }\n\n    if (nextContent != null) {\n      if (lastContent !== nextContent) {\n        this.updateTextContent('' + nextContent);\n        if (process.env.NODE_ENV !== 'production') {\n          setAndValidateContentChildDev.call(this, nextContent);\n        }\n      }\n    } else if (nextHtml != null) {\n      if (lastHtml !== nextHtml) {\n        this.updateMarkup('' + nextHtml);\n      }\n      if (process.env.NODE_ENV !== 'production') {\n        ReactInstrumentation.debugTool.onSetChildren(this._debugID, []);\n      }\n    } else if (nextChildren != null) {\n      if (process.env.NODE_ENV !== 'production') {\n        setAndValidateContentChildDev.call(this, null);\n      }\n\n      this.updateChildren(nextChildren, transaction, context);\n    }\n  },\n\n  getHostNode: function () {\n    return getNode(this);\n  },\n\n  /**\n   * Destroys all event registrations for this instance. Does not remove from\n   * the DOM. That must be done by the parent.\n   *\n   * @internal\n   */\n  unmountComponent: function (safely) {\n    switch (this._tag) {\n      case 'audio':\n      case 'form':\n      case 'iframe':\n      case 'img':\n      case 'link':\n      case 'object':\n      case 'source':\n      case 'video':\n        var listeners = this._wrapperState.listeners;\n        if (listeners) {\n          for (var i = 0; i < listeners.length; i++) {\n            listeners[i].remove();\n          }\n        }\n        break;\n      case 'html':\n      case 'head':\n      case 'body':\n        /**\n         * Components like <html> <head> and <body> can't be removed or added\n         * easily in a cross-browser way, however it's valuable to be able to\n         * take advantage of React's reconciliation for styling and <title>\n         * management. So we just document it and throw in dangerous cases.\n         */\n        !false ? process.env.NODE_ENV !== 'production' ? invariant(false, '<%s> tried to unmount. Because of cross-browser quirks it is impossible to unmount some top-level components (eg <html>, <head>, and <body>) reliably and efficiently. To fix this, have a single top-level component that never unmounts render these elements.', this._tag) : _prodInvariant('66', this._tag) : void 0;\n        break;\n    }\n\n    this.unmountChildren(safely);\n    ReactDOMComponentTree.uncacheNode(this);\n    EventPluginHub.deleteAllListeners(this);\n    this._rootNodeID = 0;\n    this._domID = 0;\n    this._wrapperState = null;\n\n    if (process.env.NODE_ENV !== 'production') {\n      setAndValidateContentChildDev.call(this, null);\n    }\n  },\n\n  getPublicInstance: function () {\n    return getNode(this);\n  }\n\n};\n\n_assign(ReactDOMComponent.prototype, ReactDOMComponent.Mixin, ReactMultiChild.Mixin);\n\nmodule.exports = ReactDOMComponent;\n}).call(this,require('_process'))\n},{\"./AutoFocusUtils\":121,\"./CSSPropertyOperations\":124,\"./DOMLazyTree\":128,\"./DOMNamespaces\":129,\"./DOMProperty\":130,\"./DOMPropertyOperations\":131,\"./EventPluginHub\":135,\"./EventPluginRegistry\":136,\"./ReactBrowserEventEmitter\":144,\"./ReactDOMComponentFlags\":151,\"./ReactDOMComponentTree\":152,\"./ReactDOMInput\":157,\"./ReactDOMOption\":160,\"./ReactDOMSelect\":161,\"./ReactDOMTextarea\":164,\"./ReactInstrumentation\":181,\"./ReactMultiChild\":185,\"./ReactServerRenderingTransaction\":193,\"./escapeTextContentForBrowser\":221,\"./isEventSupported\":235,\"./reactProdInvariant\":238,\"./validateDOMNesting\":244,\"_process\":112,\"fbjs/lib/emptyFunction\":96,\"fbjs/lib/invariant\":104,\"fbjs/lib/shallowEqual\":110,\"fbjs/lib/warning\":111,\"object-assign\":114}],151:[function(require,module,exports){\n/**\n * Copyright 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ReactDOMComponentFlags = {\n  hasCachedChildNodes: 1 << 0\n};\n\nmodule.exports = ReactDOMComponentFlags;\n},{}],152:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar DOMProperty = require('./DOMProperty');\nvar ReactDOMComponentFlags = require('./ReactDOMComponentFlags');\n\nvar invariant = require('fbjs/lib/invariant');\n\nvar ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;\nvar Flags = ReactDOMComponentFlags;\n\nvar internalInstanceKey = '__reactInternalInstance$' + Math.random().toString(36).slice(2);\n\n/**\n * Check if a given node should be cached.\n */\nfunction shouldPrecacheNode(node, nodeID) {\n  return node.nodeType === 1 && node.getAttribute(ATTR_NAME) === String(nodeID) || node.nodeType === 8 && node.nodeValue === ' react-text: ' + nodeID + ' ' || node.nodeType === 8 && node.nodeValue === ' react-empty: ' + nodeID + ' ';\n}\n\n/**\n * Drill down (through composites and empty components) until we get a host or\n * host text component.\n *\n * This is pretty polymorphic but unavoidable with the current structure we have\n * for `_renderedChildren`.\n */\nfunction getRenderedHostOrTextFromComponent(component) {\n  var rendered;\n  while (rendered = component._renderedComponent) {\n    component = rendered;\n  }\n  return component;\n}\n\n/**\n * Populate `_hostNode` on the rendered host/text component with the given\n * DOM node. The passed `inst` can be a composite.\n */\nfunction precacheNode(inst, node) {\n  var hostInst = getRenderedHostOrTextFromComponent(inst);\n  hostInst._hostNode = node;\n  node[internalInstanceKey] = hostInst;\n}\n\nfunction uncacheNode(inst) {\n  var node = inst._hostNode;\n  if (node) {\n    delete node[internalInstanceKey];\n    inst._hostNode = null;\n  }\n}\n\n/**\n * Populate `_hostNode` on each child of `inst`, assuming that the children\n * match up with the DOM (element) children of `node`.\n *\n * We cache entire levels at once to avoid an n^2 problem where we access the\n * children of a node sequentially and have to walk from the start to our target\n * node every time.\n *\n * Since we update `_renderedChildren` and the actual DOM at (slightly)\n * different times, we could race here and see a newer `_renderedChildren` than\n * the DOM nodes we see. To avoid this, ReactMultiChild calls\n * `prepareToManageChildren` before we change `_renderedChildren`, at which\n * time the container's child nodes are always cached (until it unmounts).\n */\nfunction precacheChildNodes(inst, node) {\n  if (inst._flags & Flags.hasCachedChildNodes) {\n    return;\n  }\n  var children = inst._renderedChildren;\n  var childNode = node.firstChild;\n  outer: for (var name in children) {\n    if (!children.hasOwnProperty(name)) {\n      continue;\n    }\n    var childInst = children[name];\n    var childID = getRenderedHostOrTextFromComponent(childInst)._domID;\n    if (childID === 0) {\n      // We're currently unmounting this child in ReactMultiChild; skip it.\n      continue;\n    }\n    // We assume the child nodes are in the same order as the child instances.\n    for (; childNode !== null; childNode = childNode.nextSibling) {\n      if (shouldPrecacheNode(childNode, childID)) {\n        precacheNode(childInst, childNode);\n        continue outer;\n      }\n    }\n    // We reached the end of the DOM children without finding an ID match.\n    !false ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Unable to find element with ID %s.', childID) : _prodInvariant('32', childID) : void 0;\n  }\n  inst._flags |= Flags.hasCachedChildNodes;\n}\n\n/**\n * Given a DOM node, return the closest ReactDOMComponent or\n * ReactDOMTextComponent instance ancestor.\n */\nfunction getClosestInstanceFromNode(node) {\n  if (node[internalInstanceKey]) {\n    return node[internalInstanceKey];\n  }\n\n  // Walk up the tree until we find an ancestor whose instance we have cached.\n  var parents = [];\n  while (!node[internalInstanceKey]) {\n    parents.push(node);\n    if (node.parentNode) {\n      node = node.parentNode;\n    } else {\n      // Top of the tree. This node must not be part of a React tree (or is\n      // unmounted, potentially).\n      return null;\n    }\n  }\n\n  var closest;\n  var inst;\n  for (; node && (inst = node[internalInstanceKey]); node = parents.pop()) {\n    closest = inst;\n    if (parents.length) {\n      precacheChildNodes(inst, node);\n    }\n  }\n\n  return closest;\n}\n\n/**\n * Given a DOM node, return the ReactDOMComponent or ReactDOMTextComponent\n * instance, or null if the node was not rendered by this React.\n */\nfunction getInstanceFromNode(node) {\n  var inst = getClosestInstanceFromNode(node);\n  if (inst != null && inst._hostNode === node) {\n    return inst;\n  } else {\n    return null;\n  }\n}\n\n/**\n * Given a ReactDOMComponent or ReactDOMTextComponent, return the corresponding\n * DOM node.\n */\nfunction getNodeFromInstance(inst) {\n  // Without this first invariant, passing a non-DOM-component triggers the next\n  // invariant for a missing parent, which is super confusing.\n  !(inst._hostNode !== undefined) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'getNodeFromInstance: Invalid argument.') : _prodInvariant('33') : void 0;\n\n  if (inst._hostNode) {\n    return inst._hostNode;\n  }\n\n  // Walk up the tree until we find an ancestor whose DOM node we have cached.\n  var parents = [];\n  while (!inst._hostNode) {\n    parents.push(inst);\n    !inst._hostParent ? process.env.NODE_ENV !== 'production' ? invariant(false, 'React DOM tree root should always have a node reference.') : _prodInvariant('34') : void 0;\n    inst = inst._hostParent;\n  }\n\n  // Now parents contains each ancestor that does *not* have a cached native\n  // node, and `inst` is the deepest ancestor that does.\n  for (; parents.length; inst = parents.pop()) {\n    precacheChildNodes(inst, inst._hostNode);\n  }\n\n  return inst._hostNode;\n}\n\nvar ReactDOMComponentTree = {\n  getClosestInstanceFromNode: getClosestInstanceFromNode,\n  getInstanceFromNode: getInstanceFromNode,\n  getNodeFromInstance: getNodeFromInstance,\n  precacheChildNodes: precacheChildNodes,\n  precacheNode: precacheNode,\n  uncacheNode: uncacheNode\n};\n\nmodule.exports = ReactDOMComponentTree;\n}).call(this,require('_process'))\n},{\"./DOMProperty\":130,\"./ReactDOMComponentFlags\":151,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104}],153:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar validateDOMNesting = require('./validateDOMNesting');\n\nvar DOC_NODE_TYPE = 9;\n\nfunction ReactDOMContainerInfo(topLevelWrapper, node) {\n  var info = {\n    _topLevelWrapper: topLevelWrapper,\n    _idCounter: 1,\n    _ownerDocument: node ? node.nodeType === DOC_NODE_TYPE ? node : node.ownerDocument : null,\n    _node: node,\n    _tag: node ? node.nodeName.toLowerCase() : null,\n    _namespaceURI: node ? node.namespaceURI : null\n  };\n  if (process.env.NODE_ENV !== 'production') {\n    info._ancestorInfo = node ? validateDOMNesting.updatedAncestorInfo(null, info._tag, null) : null;\n  }\n  return info;\n}\n\nmodule.exports = ReactDOMContainerInfo;\n}).call(this,require('_process'))\n},{\"./validateDOMNesting\":244,\"_process\":112}],154:[function(require,module,exports){\n/**\n * Copyright 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar DOMLazyTree = require('./DOMLazyTree');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\n\nvar ReactDOMEmptyComponent = function (instantiate) {\n  // ReactCompositeComponent uses this:\n  this._currentElement = null;\n  // ReactDOMComponentTree uses these:\n  this._hostNode = null;\n  this._hostParent = null;\n  this._hostContainerInfo = null;\n  this._domID = 0;\n};\n_assign(ReactDOMEmptyComponent.prototype, {\n  mountComponent: function (transaction, hostParent, hostContainerInfo, context) {\n    var domID = hostContainerInfo._idCounter++;\n    this._domID = domID;\n    this._hostParent = hostParent;\n    this._hostContainerInfo = hostContainerInfo;\n\n    var nodeValue = ' react-empty: ' + this._domID + ' ';\n    if (transaction.useCreateElement) {\n      var ownerDocument = hostContainerInfo._ownerDocument;\n      var node = ownerDocument.createComment(nodeValue);\n      ReactDOMComponentTree.precacheNode(this, node);\n      return DOMLazyTree(node);\n    } else {\n      if (transaction.renderToStaticMarkup) {\n        // Normally we'd insert a comment node, but since this is a situation\n        // where React won't take over (static pages), we can simply return\n        // nothing.\n        return '';\n      }\n      return '<!--' + nodeValue + '-->';\n    }\n  },\n  receiveComponent: function () {},\n  getHostNode: function () {\n    return ReactDOMComponentTree.getNodeFromInstance(this);\n  },\n  unmountComponent: function () {\n    ReactDOMComponentTree.uncacheNode(this);\n  }\n});\n\nmodule.exports = ReactDOMEmptyComponent;\n},{\"./DOMLazyTree\":128,\"./ReactDOMComponentTree\":152,\"object-assign\":114}],155:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ReactDOMFeatureFlags = {\n  useCreateElement: true,\n  useFiber: false\n};\n\nmodule.exports = ReactDOMFeatureFlags;\n},{}],156:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar DOMChildrenOperations = require('./DOMChildrenOperations');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\n\n/**\n * Operations used to process updates to DOM nodes.\n */\nvar ReactDOMIDOperations = {\n\n  /**\n   * Updates a component's children by processing a series of updates.\n   *\n   * @param {array<object>} updates List of update configurations.\n   * @internal\n   */\n  dangerouslyProcessChildrenUpdates: function (parentInst, updates) {\n    var node = ReactDOMComponentTree.getNodeFromInstance(parentInst);\n    DOMChildrenOperations.processUpdates(node, updates);\n  }\n};\n\nmodule.exports = ReactDOMIDOperations;\n},{\"./DOMChildrenOperations\":127,\"./ReactDOMComponentTree\":152}],157:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant'),\n    _assign = require('object-assign');\n\nvar DOMPropertyOperations = require('./DOMPropertyOperations');\nvar LinkedValueUtils = require('./LinkedValueUtils');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactUpdates = require('./ReactUpdates');\n\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\nvar didWarnValueLink = false;\nvar didWarnCheckedLink = false;\nvar didWarnValueDefaultValue = false;\nvar didWarnCheckedDefaultChecked = false;\nvar didWarnControlledToUncontrolled = false;\nvar didWarnUncontrolledToControlled = false;\n\nfunction forceUpdateIfMounted() {\n  if (this._rootNodeID) {\n    // DOM component is still mounted; update\n    ReactDOMInput.updateWrapper(this);\n  }\n}\n\nfunction isControlled(props) {\n  var usesChecked = props.type === 'checkbox' || props.type === 'radio';\n  return usesChecked ? props.checked != null : props.value != null;\n}\n\n/**\n * Implements an <input> host component that allows setting these optional\n * props: `checked`, `value`, `defaultChecked`, and `defaultValue`.\n *\n * If `checked` or `value` are not supplied (or null/undefined), user actions\n * that affect the checked state or value will trigger updates to the element.\n *\n * If they are supplied (and not null/undefined), the rendered element will not\n * trigger updates to the element. Instead, the props must change in order for\n * the rendered element to be updated.\n *\n * The rendered element will be initialized as unchecked (or `defaultChecked`)\n * with an empty value (or `defaultValue`).\n *\n * @see http://www.w3.org/TR/2012/WD-html5-20121025/the-input-element.html\n */\nvar ReactDOMInput = {\n  getHostProps: function (inst, props) {\n    var value = LinkedValueUtils.getValue(props);\n    var checked = LinkedValueUtils.getChecked(props);\n\n    var hostProps = _assign({\n      // Make sure we set .type before any other properties (setting .value\n      // before .type means .value is lost in IE11 and below)\n      type: undefined,\n      // Make sure we set .step before .value (setting .value before .step\n      // means .value is rounded on mount, based upon step precision)\n      step: undefined,\n      // Make sure we set .min & .max before .value (to ensure proper order\n      // in corner cases such as min or max deriving from value, e.g. Issue #7170)\n      min: undefined,\n      max: undefined\n    }, props, {\n      defaultChecked: undefined,\n      defaultValue: undefined,\n      value: value != null ? value : inst._wrapperState.initialValue,\n      checked: checked != null ? checked : inst._wrapperState.initialChecked,\n      onChange: inst._wrapperState.onChange\n    });\n\n    return hostProps;\n  },\n\n  mountWrapper: function (inst, props) {\n    if (process.env.NODE_ENV !== 'production') {\n      LinkedValueUtils.checkPropTypes('input', props, inst._currentElement._owner);\n\n      var owner = inst._currentElement._owner;\n\n      if (props.valueLink !== undefined && !didWarnValueLink) {\n        process.env.NODE_ENV !== 'production' ? warning(false, '`valueLink` prop on `input` is deprecated; set `value` and `onChange` instead.') : void 0;\n        didWarnValueLink = true;\n      }\n      if (props.checkedLink !== undefined && !didWarnCheckedLink) {\n        process.env.NODE_ENV !== 'production' ? warning(false, '`checkedLink` prop on `input` is deprecated; set `value` and `onChange` instead.') : void 0;\n        didWarnCheckedLink = true;\n      }\n      if (props.checked !== undefined && props.defaultChecked !== undefined && !didWarnCheckedDefaultChecked) {\n        process.env.NODE_ENV !== 'production' ? warning(false, '%s contains an input of type %s with both checked and defaultChecked props. ' + 'Input elements must be either controlled or uncontrolled ' + '(specify either the checked prop, or the defaultChecked prop, but not ' + 'both). Decide between using a controlled or uncontrolled input ' + 'element and remove one of these props. More info: ' + 'https://fb.me/react-controlled-components', owner && owner.getName() || 'A component', props.type) : void 0;\n        didWarnCheckedDefaultChecked = true;\n      }\n      if (props.value !== undefined && props.defaultValue !== undefined && !didWarnValueDefaultValue) {\n        process.env.NODE_ENV !== 'production' ? warning(false, '%s contains an input of type %s with both value and defaultValue props. ' + 'Input elements must be either controlled or uncontrolled ' + '(specify either the value prop, or the defaultValue prop, but not ' + 'both). Decide between using a controlled or uncontrolled input ' + 'element and remove one of these props. More info: ' + 'https://fb.me/react-controlled-components', owner && owner.getName() || 'A component', props.type) : void 0;\n        didWarnValueDefaultValue = true;\n      }\n    }\n\n    var defaultValue = props.defaultValue;\n    inst._wrapperState = {\n      initialChecked: props.checked != null ? props.checked : props.defaultChecked,\n      initialValue: props.value != null ? props.value : defaultValue,\n      listeners: null,\n      onChange: _handleChange.bind(inst),\n      controlled: isControlled(props)\n    };\n  },\n\n  updateWrapper: function (inst) {\n    var props = inst._currentElement.props;\n\n    if (process.env.NODE_ENV !== 'production') {\n      var controlled = isControlled(props);\n      var owner = inst._currentElement._owner;\n\n      if (!inst._wrapperState.controlled && controlled && !didWarnUncontrolledToControlled) {\n        process.env.NODE_ENV !== 'production' ? warning(false, '%s is changing an uncontrolled input of type %s to be controlled. ' + 'Input elements should not switch from uncontrolled to controlled (or vice versa). ' + 'Decide between using a controlled or uncontrolled input ' + 'element for the lifetime of the component. More info: https://fb.me/react-controlled-components', owner && owner.getName() || 'A component', props.type) : void 0;\n        didWarnUncontrolledToControlled = true;\n      }\n      if (inst._wrapperState.controlled && !controlled && !didWarnControlledToUncontrolled) {\n        process.env.NODE_ENV !== 'production' ? warning(false, '%s is changing a controlled input of type %s to be uncontrolled. ' + 'Input elements should not switch from controlled to uncontrolled (or vice versa). ' + 'Decide between using a controlled or uncontrolled input ' + 'element for the lifetime of the component. More info: https://fb.me/react-controlled-components', owner && owner.getName() || 'A component', props.type) : void 0;\n        didWarnControlledToUncontrolled = true;\n      }\n    }\n\n    // TODO: Shouldn't this be getChecked(props)?\n    var checked = props.checked;\n    if (checked != null) {\n      DOMPropertyOperations.setValueForProperty(ReactDOMComponentTree.getNodeFromInstance(inst), 'checked', checked || false);\n    }\n\n    var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n    var value = LinkedValueUtils.getValue(props);\n    if (value != null) {\n      if (value === 0 && node.value === '') {\n        node.value = '0';\n        // Note: IE9 reports a number inputs as 'text', so check props instead.\n      } else if (props.type === 'number') {\n        // Simulate `input.valueAsNumber`. IE9 does not support it\n        var valueAsNumber = parseFloat(node.value, 10) || 0;\n\n        // eslint-disable-next-line\n        if (value != valueAsNumber) {\n          // Cast `value` to a string to ensure the value is set correctly. While\n          // browsers typically do this as necessary, jsdom doesn't.\n          node.value = '' + value;\n        }\n        // eslint-disable-next-line\n      } else if (value != node.value) {\n        // Cast `value` to a string to ensure the value is set correctly. While\n        // browsers typically do this as necessary, jsdom doesn't.\n        node.value = '' + value;\n      }\n    } else {\n      if (props.value == null && props.defaultValue != null) {\n        // In Chrome, assigning defaultValue to certain input types triggers input validation.\n        // For number inputs, the display value loses trailing decimal points. For email inputs,\n        // Chrome raises \"The specified value <x> is not a valid email address\".\n        //\n        // Here we check to see if the defaultValue has actually changed, avoiding these problems\n        // when the user is inputting text\n        //\n        // https://github.com/facebook/react/issues/7253\n        if (node.defaultValue !== '' + props.defaultValue) {\n          node.defaultValue = '' + props.defaultValue;\n        }\n      }\n      if (props.checked == null && props.defaultChecked != null) {\n        node.defaultChecked = !!props.defaultChecked;\n      }\n    }\n  },\n\n  postMountWrapper: function (inst) {\n    var props = inst._currentElement.props;\n\n    // This is in postMount because we need access to the DOM node, which is not\n    // available until after the component has mounted.\n    var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n\n    // Detach value from defaultValue. We won't do anything if we're working on\n    // submit or reset inputs as those values & defaultValues are linked. They\n    // are not resetable nodes so this operation doesn't matter and actually\n    // removes browser-default values (eg \"Submit Query\") when no value is\n    // provided.\n\n    switch (props.type) {\n      case 'submit':\n      case 'reset':\n        break;\n      case 'color':\n      case 'date':\n      case 'datetime':\n      case 'datetime-local':\n      case 'month':\n      case 'time':\n      case 'week':\n        // This fixes the no-show issue on iOS Safari and Android Chrome:\n        // https://github.com/facebook/react/issues/7233\n        node.value = '';\n        node.value = node.defaultValue;\n        break;\n      default:\n        node.value = node.value;\n        break;\n    }\n\n    // Normally, we'd just do `node.checked = node.checked` upon initial mount, less this bug\n    // this is needed to work around a chrome bug where setting defaultChecked\n    // will sometimes influence the value of checked (even after detachment).\n    // Reference: https://bugs.chromium.org/p/chromium/issues/detail?id=608416\n    // We need to temporarily unset name to avoid disrupting radio button groups.\n    var name = node.name;\n    if (name !== '') {\n      node.name = '';\n    }\n    node.defaultChecked = !node.defaultChecked;\n    node.defaultChecked = !node.defaultChecked;\n    if (name !== '') {\n      node.name = name;\n    }\n  }\n};\n\nfunction _handleChange(event) {\n  var props = this._currentElement.props;\n\n  var returnValue = LinkedValueUtils.executeOnChange(props, event);\n\n  // Here we use asap to wait until all updates have propagated, which\n  // is important when using controlled components within layers:\n  // https://github.com/facebook/react/issues/1698\n  ReactUpdates.asap(forceUpdateIfMounted, this);\n\n  var name = props.name;\n  if (props.type === 'radio' && name != null) {\n    var rootNode = ReactDOMComponentTree.getNodeFromInstance(this);\n    var queryRoot = rootNode;\n\n    while (queryRoot.parentNode) {\n      queryRoot = queryRoot.parentNode;\n    }\n\n    // If `rootNode.form` was non-null, then we could try `form.elements`,\n    // but that sometimes behaves strangely in IE8. We could also try using\n    // `form.getElementsByName`, but that will only return direct children\n    // and won't include inputs that use the HTML5 `form=` attribute. Since\n    // the input might not even be in a form, let's just use the global\n    // `querySelectorAll` to ensure we don't miss anything.\n    var group = queryRoot.querySelectorAll('input[name=' + JSON.stringify('' + name) + '][type=\"radio\"]');\n\n    for (var i = 0; i < group.length; i++) {\n      var otherNode = group[i];\n      if (otherNode === rootNode || otherNode.form !== rootNode.form) {\n        continue;\n      }\n      // This will throw if radio buttons rendered by different copies of React\n      // and the same name are rendered into the same form (same as #1939).\n      // That's probably okay; we don't support it just as we don't support\n      // mixing React radio buttons with non-React ones.\n      var otherInstance = ReactDOMComponentTree.getInstanceFromNode(otherNode);\n      !otherInstance ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported.') : _prodInvariant('90') : void 0;\n      // If this is a controlled radio button group, forcing the input that\n      // was previously checked to update will cause it to be come re-checked\n      // as appropriate.\n      ReactUpdates.asap(forceUpdateIfMounted, otherInstance);\n    }\n  }\n\n  return returnValue;\n}\n\nmodule.exports = ReactDOMInput;\n}).call(this,require('_process'))\n},{\"./DOMPropertyOperations\":131,\"./LinkedValueUtils\":142,\"./ReactDOMComponentTree\":152,\"./ReactUpdates\":196,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111,\"object-assign\":114}],158:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar DOMProperty = require('./DOMProperty');\nvar ReactComponentTreeHook = require('react/lib/ReactComponentTreeHook');\n\nvar warning = require('fbjs/lib/warning');\n\nvar warnedProperties = {};\nvar rARIA = new RegExp('^(aria)-[' + DOMProperty.ATTRIBUTE_NAME_CHAR + ']*$');\n\nfunction validateProperty(tagName, name, debugID) {\n  if (warnedProperties.hasOwnProperty(name) && warnedProperties[name]) {\n    return true;\n  }\n\n  if (rARIA.test(name)) {\n    var lowerCasedName = name.toLowerCase();\n    var standardName = DOMProperty.getPossibleStandardName.hasOwnProperty(lowerCasedName) ? DOMProperty.getPossibleStandardName[lowerCasedName] : null;\n\n    // If this is an aria-* attribute, but is not listed in the known DOM\n    // DOM properties, then it is an invalid aria-* attribute.\n    if (standardName == null) {\n      warnedProperties[name] = true;\n      return false;\n    }\n    // aria-* attributes should be lowercase; suggest the lowercase version.\n    if (name !== standardName) {\n      process.env.NODE_ENV !== 'production' ? warning(false, 'Unknown ARIA attribute %s. Did you mean %s?%s', name, standardName, ReactComponentTreeHook.getStackAddendumByID(debugID)) : void 0;\n      warnedProperties[name] = true;\n      return true;\n    }\n  }\n\n  return true;\n}\n\nfunction warnInvalidARIAProps(debugID, element) {\n  var invalidProps = [];\n\n  for (var key in element.props) {\n    var isValid = validateProperty(element.type, key, debugID);\n    if (!isValid) {\n      invalidProps.push(key);\n    }\n  }\n\n  var unknownPropString = invalidProps.map(function (prop) {\n    return '`' + prop + '`';\n  }).join(', ');\n\n  if (invalidProps.length === 1) {\n    process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid aria prop %s on <%s> tag. ' + 'For details, see https://fb.me/invalid-aria-prop%s', unknownPropString, element.type, ReactComponentTreeHook.getStackAddendumByID(debugID)) : void 0;\n  } else if (invalidProps.length > 1) {\n    process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid aria props %s on <%s> tag. ' + 'For details, see https://fb.me/invalid-aria-prop%s', unknownPropString, element.type, ReactComponentTreeHook.getStackAddendumByID(debugID)) : void 0;\n  }\n}\n\nfunction handleElement(debugID, element) {\n  if (element == null || typeof element.type !== 'string') {\n    return;\n  }\n  if (element.type.indexOf('-') >= 0 || element.props.is) {\n    return;\n  }\n\n  warnInvalidARIAProps(debugID, element);\n}\n\nvar ReactDOMInvalidARIAHook = {\n  onBeforeMountComponent: function (debugID, element) {\n    if (process.env.NODE_ENV !== 'production') {\n      handleElement(debugID, element);\n    }\n  },\n  onBeforeUpdateComponent: function (debugID, element) {\n    if (process.env.NODE_ENV !== 'production') {\n      handleElement(debugID, element);\n    }\n  }\n};\n\nmodule.exports = ReactDOMInvalidARIAHook;\n}).call(this,require('_process'))\n},{\"./DOMProperty\":130,\"_process\":112,\"fbjs/lib/warning\":111,\"react/lib/ReactComponentTreeHook\":255}],159:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ReactComponentTreeHook = require('react/lib/ReactComponentTreeHook');\n\nvar warning = require('fbjs/lib/warning');\n\nvar didWarnValueNull = false;\n\nfunction handleElement(debugID, element) {\n  if (element == null) {\n    return;\n  }\n  if (element.type !== 'input' && element.type !== 'textarea' && element.type !== 'select') {\n    return;\n  }\n  if (element.props != null && element.props.value === null && !didWarnValueNull) {\n    process.env.NODE_ENV !== 'production' ? warning(false, '`value` prop on `%s` should not be null. ' + 'Consider using the empty string to clear the component or `undefined` ' + 'for uncontrolled components.%s', element.type, ReactComponentTreeHook.getStackAddendumByID(debugID)) : void 0;\n\n    didWarnValueNull = true;\n  }\n}\n\nvar ReactDOMNullInputValuePropHook = {\n  onBeforeMountComponent: function (debugID, element) {\n    handleElement(debugID, element);\n  },\n  onBeforeUpdateComponent: function (debugID, element) {\n    handleElement(debugID, element);\n  }\n};\n\nmodule.exports = ReactDOMNullInputValuePropHook;\n}).call(this,require('_process'))\n},{\"_process\":112,\"fbjs/lib/warning\":111,\"react/lib/ReactComponentTreeHook\":255}],160:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar React = require('react/lib/React');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactDOMSelect = require('./ReactDOMSelect');\n\nvar warning = require('fbjs/lib/warning');\nvar didWarnInvalidOptionChildren = false;\n\nfunction flattenChildren(children) {\n  var content = '';\n\n  // Flatten children and warn if they aren't strings or numbers;\n  // invalid types are ignored.\n  React.Children.forEach(children, function (child) {\n    if (child == null) {\n      return;\n    }\n    if (typeof child === 'string' || typeof child === 'number') {\n      content += child;\n    } else if (!didWarnInvalidOptionChildren) {\n      didWarnInvalidOptionChildren = true;\n      process.env.NODE_ENV !== 'production' ? warning(false, 'Only strings and numbers are supported as <option> children.') : void 0;\n    }\n  });\n\n  return content;\n}\n\n/**\n * Implements an <option> host component that warns when `selected` is set.\n */\nvar ReactDOMOption = {\n  mountWrapper: function (inst, props, hostParent) {\n    // TODO (yungsters): Remove support for `selected` in <option>.\n    if (process.env.NODE_ENV !== 'production') {\n      process.env.NODE_ENV !== 'production' ? warning(props.selected == null, 'Use the `defaultValue` or `value` props on <select> instead of ' + 'setting `selected` on <option>.') : void 0;\n    }\n\n    // Look up whether this option is 'selected'\n    var selectValue = null;\n    if (hostParent != null) {\n      var selectParent = hostParent;\n\n      if (selectParent._tag === 'optgroup') {\n        selectParent = selectParent._hostParent;\n      }\n\n      if (selectParent != null && selectParent._tag === 'select') {\n        selectValue = ReactDOMSelect.getSelectValueContext(selectParent);\n      }\n    }\n\n    // If the value is null (e.g., no specified value or after initial mount)\n    // or missing (e.g., for <datalist>), we don't change props.selected\n    var selected = null;\n    if (selectValue != null) {\n      var value;\n      if (props.value != null) {\n        value = props.value + '';\n      } else {\n        value = flattenChildren(props.children);\n      }\n      selected = false;\n      if (Array.isArray(selectValue)) {\n        // multiple\n        for (var i = 0; i < selectValue.length; i++) {\n          if ('' + selectValue[i] === value) {\n            selected = true;\n            break;\n          }\n        }\n      } else {\n        selected = '' + selectValue === value;\n      }\n    }\n\n    inst._wrapperState = { selected: selected };\n  },\n\n  postMountWrapper: function (inst) {\n    // value=\"\" should make a value attribute (#6219)\n    var props = inst._currentElement.props;\n    if (props.value != null) {\n      var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n      node.setAttribute('value', props.value);\n    }\n  },\n\n  getHostProps: function (inst, props) {\n    var hostProps = _assign({ selected: undefined, children: undefined }, props);\n\n    // Read state only from initial mount because <select> updates value\n    // manually; we need the initial state only for server rendering\n    if (inst._wrapperState.selected != null) {\n      hostProps.selected = inst._wrapperState.selected;\n    }\n\n    var content = flattenChildren(props.children);\n\n    if (content) {\n      hostProps.children = content;\n    }\n\n    return hostProps;\n  }\n\n};\n\nmodule.exports = ReactDOMOption;\n}).call(this,require('_process'))\n},{\"./ReactDOMComponentTree\":152,\"./ReactDOMSelect\":161,\"_process\":112,\"fbjs/lib/warning\":111,\"object-assign\":114,\"react/lib/React\":251}],161:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar LinkedValueUtils = require('./LinkedValueUtils');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactUpdates = require('./ReactUpdates');\n\nvar warning = require('fbjs/lib/warning');\n\nvar didWarnValueLink = false;\nvar didWarnValueDefaultValue = false;\n\nfunction updateOptionsIfPendingUpdateAndMounted() {\n  if (this._rootNodeID && this._wrapperState.pendingUpdate) {\n    this._wrapperState.pendingUpdate = false;\n\n    var props = this._currentElement.props;\n    var value = LinkedValueUtils.getValue(props);\n\n    if (value != null) {\n      updateOptions(this, Boolean(props.multiple), value);\n    }\n  }\n}\n\nfunction getDeclarationErrorAddendum(owner) {\n  if (owner) {\n    var name = owner.getName();\n    if (name) {\n      return ' Check the render method of `' + name + '`.';\n    }\n  }\n  return '';\n}\n\nvar valuePropNames = ['value', 'defaultValue'];\n\n/**\n * Validation function for `value` and `defaultValue`.\n * @private\n */\nfunction checkSelectPropTypes(inst, props) {\n  var owner = inst._currentElement._owner;\n  LinkedValueUtils.checkPropTypes('select', props, owner);\n\n  if (props.valueLink !== undefined && !didWarnValueLink) {\n    process.env.NODE_ENV !== 'production' ? warning(false, '`valueLink` prop on `select` is deprecated; set `value` and `onChange` instead.') : void 0;\n    didWarnValueLink = true;\n  }\n\n  for (var i = 0; i < valuePropNames.length; i++) {\n    var propName = valuePropNames[i];\n    if (props[propName] == null) {\n      continue;\n    }\n    var isArray = Array.isArray(props[propName]);\n    if (props.multiple && !isArray) {\n      process.env.NODE_ENV !== 'production' ? warning(false, 'The `%s` prop supplied to <select> must be an array if ' + '`multiple` is true.%s', propName, getDeclarationErrorAddendum(owner)) : void 0;\n    } else if (!props.multiple && isArray) {\n      process.env.NODE_ENV !== 'production' ? warning(false, 'The `%s` prop supplied to <select> must be a scalar ' + 'value if `multiple` is false.%s', propName, getDeclarationErrorAddendum(owner)) : void 0;\n    }\n  }\n}\n\n/**\n * @param {ReactDOMComponent} inst\n * @param {boolean} multiple\n * @param {*} propValue A stringable (with `multiple`, a list of stringables).\n * @private\n */\nfunction updateOptions(inst, multiple, propValue) {\n  var selectedValue, i;\n  var options = ReactDOMComponentTree.getNodeFromInstance(inst).options;\n\n  if (multiple) {\n    selectedValue = {};\n    for (i = 0; i < propValue.length; i++) {\n      selectedValue['' + propValue[i]] = true;\n    }\n    for (i = 0; i < options.length; i++) {\n      var selected = selectedValue.hasOwnProperty(options[i].value);\n      if (options[i].selected !== selected) {\n        options[i].selected = selected;\n      }\n    }\n  } else {\n    // Do not set `select.value` as exact behavior isn't consistent across all\n    // browsers for all cases.\n    selectedValue = '' + propValue;\n    for (i = 0; i < options.length; i++) {\n      if (options[i].value === selectedValue) {\n        options[i].selected = true;\n        return;\n      }\n    }\n    if (options.length) {\n      options[0].selected = true;\n    }\n  }\n}\n\n/**\n * Implements a <select> host component that allows optionally setting the\n * props `value` and `defaultValue`. If `multiple` is false, the prop must be a\n * stringable. If `multiple` is true, the prop must be an array of stringables.\n *\n * If `value` is not supplied (or null/undefined), user actions that change the\n * selected option will trigger updates to the rendered options.\n *\n * If it is supplied (and not null/undefined), the rendered options will not\n * update in response to user actions. Instead, the `value` prop must change in\n * order for the rendered options to update.\n *\n * If `defaultValue` is provided, any options with the supplied values will be\n * selected.\n */\nvar ReactDOMSelect = {\n  getHostProps: function (inst, props) {\n    return _assign({}, props, {\n      onChange: inst._wrapperState.onChange,\n      value: undefined\n    });\n  },\n\n  mountWrapper: function (inst, props) {\n    if (process.env.NODE_ENV !== 'production') {\n      checkSelectPropTypes(inst, props);\n    }\n\n    var value = LinkedValueUtils.getValue(props);\n    inst._wrapperState = {\n      pendingUpdate: false,\n      initialValue: value != null ? value : props.defaultValue,\n      listeners: null,\n      onChange: _handleChange.bind(inst),\n      wasMultiple: Boolean(props.multiple)\n    };\n\n    if (props.value !== undefined && props.defaultValue !== undefined && !didWarnValueDefaultValue) {\n      process.env.NODE_ENV !== 'production' ? warning(false, 'Select elements must be either controlled or uncontrolled ' + '(specify either the value prop, or the defaultValue prop, but not ' + 'both). Decide between using a controlled or uncontrolled select ' + 'element and remove one of these props. More info: ' + 'https://fb.me/react-controlled-components') : void 0;\n      didWarnValueDefaultValue = true;\n    }\n  },\n\n  getSelectValueContext: function (inst) {\n    // ReactDOMOption looks at this initial value so the initial generated\n    // markup has correct `selected` attributes\n    return inst._wrapperState.initialValue;\n  },\n\n  postUpdateWrapper: function (inst) {\n    var props = inst._currentElement.props;\n\n    // After the initial mount, we control selected-ness manually so don't pass\n    // this value down\n    inst._wrapperState.initialValue = undefined;\n\n    var wasMultiple = inst._wrapperState.wasMultiple;\n    inst._wrapperState.wasMultiple = Boolean(props.multiple);\n\n    var value = LinkedValueUtils.getValue(props);\n    if (value != null) {\n      inst._wrapperState.pendingUpdate = false;\n      updateOptions(inst, Boolean(props.multiple), value);\n    } else if (wasMultiple !== Boolean(props.multiple)) {\n      // For simplicity, reapply `defaultValue` if `multiple` is toggled.\n      if (props.defaultValue != null) {\n        updateOptions(inst, Boolean(props.multiple), props.defaultValue);\n      } else {\n        // Revert the select back to its default unselected state.\n        updateOptions(inst, Boolean(props.multiple), props.multiple ? [] : '');\n      }\n    }\n  }\n};\n\nfunction _handleChange(event) {\n  var props = this._currentElement.props;\n  var returnValue = LinkedValueUtils.executeOnChange(props, event);\n\n  if (this._rootNodeID) {\n    this._wrapperState.pendingUpdate = true;\n  }\n  ReactUpdates.asap(updateOptionsIfPendingUpdateAndMounted, this);\n  return returnValue;\n}\n\nmodule.exports = ReactDOMSelect;\n}).call(this,require('_process'))\n},{\"./LinkedValueUtils\":142,\"./ReactDOMComponentTree\":152,\"./ReactUpdates\":196,\"_process\":112,\"fbjs/lib/warning\":111,\"object-assign\":114}],162:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\n\nvar getNodeForCharacterOffset = require('./getNodeForCharacterOffset');\nvar getTextContentAccessor = require('./getTextContentAccessor');\n\n/**\n * While `isCollapsed` is available on the Selection object and `collapsed`\n * is available on the Range object, IE11 sometimes gets them wrong.\n * If the anchor/focus nodes and offsets are the same, the range is collapsed.\n */\nfunction isCollapsed(anchorNode, anchorOffset, focusNode, focusOffset) {\n  return anchorNode === focusNode && anchorOffset === focusOffset;\n}\n\n/**\n * Get the appropriate anchor and focus node/offset pairs for IE.\n *\n * The catch here is that IE's selection API doesn't provide information\n * about whether the selection is forward or backward, so we have to\n * behave as though it's always forward.\n *\n * IE text differs from modern selection in that it behaves as though\n * block elements end with a new line. This means character offsets will\n * differ between the two APIs.\n *\n * @param {DOMElement} node\n * @return {object}\n */\nfunction getIEOffsets(node) {\n  var selection = document.selection;\n  var selectedRange = selection.createRange();\n  var selectedLength = selectedRange.text.length;\n\n  // Duplicate selection so we can move range without breaking user selection.\n  var fromStart = selectedRange.duplicate();\n  fromStart.moveToElementText(node);\n  fromStart.setEndPoint('EndToStart', selectedRange);\n\n  var startOffset = fromStart.text.length;\n  var endOffset = startOffset + selectedLength;\n\n  return {\n    start: startOffset,\n    end: endOffset\n  };\n}\n\n/**\n * @param {DOMElement} node\n * @return {?object}\n */\nfunction getModernOffsets(node) {\n  var selection = window.getSelection && window.getSelection();\n\n  if (!selection || selection.rangeCount === 0) {\n    return null;\n  }\n\n  var anchorNode = selection.anchorNode;\n  var anchorOffset = selection.anchorOffset;\n  var focusNode = selection.focusNode;\n  var focusOffset = selection.focusOffset;\n\n  var currentRange = selection.getRangeAt(0);\n\n  // In Firefox, range.startContainer and range.endContainer can be \"anonymous\n  // divs\", e.g. the up/down buttons on an <input type=\"number\">. Anonymous\n  // divs do not seem to expose properties, triggering a \"Permission denied\n  // error\" if any of its properties are accessed. The only seemingly possible\n  // way to avoid erroring is to access a property that typically works for\n  // non-anonymous divs and catch any error that may otherwise arise. See\n  // https://bugzilla.mozilla.org/show_bug.cgi?id=208427\n  try {\n    /* eslint-disable no-unused-expressions */\n    currentRange.startContainer.nodeType;\n    currentRange.endContainer.nodeType;\n    /* eslint-enable no-unused-expressions */\n  } catch (e) {\n    return null;\n  }\n\n  // If the node and offset values are the same, the selection is collapsed.\n  // `Selection.isCollapsed` is available natively, but IE sometimes gets\n  // this value wrong.\n  var isSelectionCollapsed = isCollapsed(selection.anchorNode, selection.anchorOffset, selection.focusNode, selection.focusOffset);\n\n  var rangeLength = isSelectionCollapsed ? 0 : currentRange.toString().length;\n\n  var tempRange = currentRange.cloneRange();\n  tempRange.selectNodeContents(node);\n  tempRange.setEnd(currentRange.startContainer, currentRange.startOffset);\n\n  var isTempRangeCollapsed = isCollapsed(tempRange.startContainer, tempRange.startOffset, tempRange.endContainer, tempRange.endOffset);\n\n  var start = isTempRangeCollapsed ? 0 : tempRange.toString().length;\n  var end = start + rangeLength;\n\n  // Detect whether the selection is backward.\n  var detectionRange = document.createRange();\n  detectionRange.setStart(anchorNode, anchorOffset);\n  detectionRange.setEnd(focusNode, focusOffset);\n  var isBackward = detectionRange.collapsed;\n\n  return {\n    start: isBackward ? end : start,\n    end: isBackward ? start : end\n  };\n}\n\n/**\n * @param {DOMElement|DOMTextNode} node\n * @param {object} offsets\n */\nfunction setIEOffsets(node, offsets) {\n  var range = document.selection.createRange().duplicate();\n  var start, end;\n\n  if (offsets.end === undefined) {\n    start = offsets.start;\n    end = start;\n  } else if (offsets.start > offsets.end) {\n    start = offsets.end;\n    end = offsets.start;\n  } else {\n    start = offsets.start;\n    end = offsets.end;\n  }\n\n  range.moveToElementText(node);\n  range.moveStart('character', start);\n  range.setEndPoint('EndToStart', range);\n  range.moveEnd('character', end - start);\n  range.select();\n}\n\n/**\n * In modern non-IE browsers, we can support both forward and backward\n * selections.\n *\n * Note: IE10+ supports the Selection object, but it does not support\n * the `extend` method, which means that even in modern IE, it's not possible\n * to programmatically create a backward selection. Thus, for all IE\n * versions, we use the old IE API to create our selections.\n *\n * @param {DOMElement|DOMTextNode} node\n * @param {object} offsets\n */\nfunction setModernOffsets(node, offsets) {\n  if (!window.getSelection) {\n    return;\n  }\n\n  var selection = window.getSelection();\n  var length = node[getTextContentAccessor()].length;\n  var start = Math.min(offsets.start, length);\n  var end = offsets.end === undefined ? start : Math.min(offsets.end, length);\n\n  // IE 11 uses modern selection, but doesn't support the extend method.\n  // Flip backward selections, so we can set with a single range.\n  if (!selection.extend && start > end) {\n    var temp = end;\n    end = start;\n    start = temp;\n  }\n\n  var startMarker = getNodeForCharacterOffset(node, start);\n  var endMarker = getNodeForCharacterOffset(node, end);\n\n  if (startMarker && endMarker) {\n    var range = document.createRange();\n    range.setStart(startMarker.node, startMarker.offset);\n    selection.removeAllRanges();\n\n    if (start > end) {\n      selection.addRange(range);\n      selection.extend(endMarker.node, endMarker.offset);\n    } else {\n      range.setEnd(endMarker.node, endMarker.offset);\n      selection.addRange(range);\n    }\n  }\n}\n\nvar useIEOffsets = ExecutionEnvironment.canUseDOM && 'selection' in document && !('getSelection' in window);\n\nvar ReactDOMSelection = {\n  /**\n   * @param {DOMElement} node\n   */\n  getOffsets: useIEOffsets ? getIEOffsets : getModernOffsets,\n\n  /**\n   * @param {DOMElement|DOMTextNode} node\n   * @param {object} offsets\n   */\n  setOffsets: useIEOffsets ? setIEOffsets : setModernOffsets\n};\n\nmodule.exports = ReactDOMSelection;\n},{\"./getNodeForCharacterOffset\":231,\"./getTextContentAccessor\":232,\"fbjs/lib/ExecutionEnvironment\":90}],163:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant'),\n    _assign = require('object-assign');\n\nvar DOMChildrenOperations = require('./DOMChildrenOperations');\nvar DOMLazyTree = require('./DOMLazyTree');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\n\nvar escapeTextContentForBrowser = require('./escapeTextContentForBrowser');\nvar invariant = require('fbjs/lib/invariant');\nvar validateDOMNesting = require('./validateDOMNesting');\n\n/**\n * Text nodes violate a couple assumptions that React makes about components:\n *\n *  - When mounting text into the DOM, adjacent text nodes are merged.\n *  - Text nodes cannot be assigned a React root ID.\n *\n * This component is used to wrap strings between comment nodes so that they\n * can undergo the same reconciliation that is applied to elements.\n *\n * TODO: Investigate representing React components in the DOM with text nodes.\n *\n * @class ReactDOMTextComponent\n * @extends ReactComponent\n * @internal\n */\nvar ReactDOMTextComponent = function (text) {\n  // TODO: This is really a ReactText (ReactNode), not a ReactElement\n  this._currentElement = text;\n  this._stringText = '' + text;\n  // ReactDOMComponentTree uses these:\n  this._hostNode = null;\n  this._hostParent = null;\n\n  // Properties\n  this._domID = 0;\n  this._mountIndex = 0;\n  this._closingComment = null;\n  this._commentNodes = null;\n};\n\n_assign(ReactDOMTextComponent.prototype, {\n\n  /**\n   * Creates the markup for this text node. This node is not intended to have\n   * any features besides containing text content.\n   *\n   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n   * @return {string} Markup for this text node.\n   * @internal\n   */\n  mountComponent: function (transaction, hostParent, hostContainerInfo, context) {\n    if (process.env.NODE_ENV !== 'production') {\n      var parentInfo;\n      if (hostParent != null) {\n        parentInfo = hostParent._ancestorInfo;\n      } else if (hostContainerInfo != null) {\n        parentInfo = hostContainerInfo._ancestorInfo;\n      }\n      if (parentInfo) {\n        // parentInfo should always be present except for the top-level\n        // component when server rendering\n        validateDOMNesting(null, this._stringText, this, parentInfo);\n      }\n    }\n\n    var domID = hostContainerInfo._idCounter++;\n    var openingValue = ' react-text: ' + domID + ' ';\n    var closingValue = ' /react-text ';\n    this._domID = domID;\n    this._hostParent = hostParent;\n    if (transaction.useCreateElement) {\n      var ownerDocument = hostContainerInfo._ownerDocument;\n      var openingComment = ownerDocument.createComment(openingValue);\n      var closingComment = ownerDocument.createComment(closingValue);\n      var lazyTree = DOMLazyTree(ownerDocument.createDocumentFragment());\n      DOMLazyTree.queueChild(lazyTree, DOMLazyTree(openingComment));\n      if (this._stringText) {\n        DOMLazyTree.queueChild(lazyTree, DOMLazyTree(ownerDocument.createTextNode(this._stringText)));\n      }\n      DOMLazyTree.queueChild(lazyTree, DOMLazyTree(closingComment));\n      ReactDOMComponentTree.precacheNode(this, openingComment);\n      this._closingComment = closingComment;\n      return lazyTree;\n    } else {\n      var escapedText = escapeTextContentForBrowser(this._stringText);\n\n      if (transaction.renderToStaticMarkup) {\n        // Normally we'd wrap this between comment nodes for the reasons stated\n        // above, but since this is a situation where React won't take over\n        // (static pages), we can simply return the text as it is.\n        return escapedText;\n      }\n\n      return '<!--' + openingValue + '-->' + escapedText + '<!--' + closingValue + '-->';\n    }\n  },\n\n  /**\n   * Updates this component by updating the text content.\n   *\n   * @param {ReactText} nextText The next text content\n   * @param {ReactReconcileTransaction} transaction\n   * @internal\n   */\n  receiveComponent: function (nextText, transaction) {\n    if (nextText !== this._currentElement) {\n      this._currentElement = nextText;\n      var nextStringText = '' + nextText;\n      if (nextStringText !== this._stringText) {\n        // TODO: Save this as pending props and use performUpdateIfNecessary\n        // and/or updateComponent to do the actual update for consistency with\n        // other component types?\n        this._stringText = nextStringText;\n        var commentNodes = this.getHostNode();\n        DOMChildrenOperations.replaceDelimitedText(commentNodes[0], commentNodes[1], nextStringText);\n      }\n    }\n  },\n\n  getHostNode: function () {\n    var hostNode = this._commentNodes;\n    if (hostNode) {\n      return hostNode;\n    }\n    if (!this._closingComment) {\n      var openingComment = ReactDOMComponentTree.getNodeFromInstance(this);\n      var node = openingComment.nextSibling;\n      while (true) {\n        !(node != null) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Missing closing comment for text component %s', this._domID) : _prodInvariant('67', this._domID) : void 0;\n        if (node.nodeType === 8 && node.nodeValue === ' /react-text ') {\n          this._closingComment = node;\n          break;\n        }\n        node = node.nextSibling;\n      }\n    }\n    hostNode = [this._hostNode, this._closingComment];\n    this._commentNodes = hostNode;\n    return hostNode;\n  },\n\n  unmountComponent: function () {\n    this._closingComment = null;\n    this._commentNodes = null;\n    ReactDOMComponentTree.uncacheNode(this);\n  }\n\n});\n\nmodule.exports = ReactDOMTextComponent;\n}).call(this,require('_process'))\n},{\"./DOMChildrenOperations\":127,\"./DOMLazyTree\":128,\"./ReactDOMComponentTree\":152,\"./escapeTextContentForBrowser\":221,\"./reactProdInvariant\":238,\"./validateDOMNesting\":244,\"_process\":112,\"fbjs/lib/invariant\":104,\"object-assign\":114}],164:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant'),\n    _assign = require('object-assign');\n\nvar LinkedValueUtils = require('./LinkedValueUtils');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactUpdates = require('./ReactUpdates');\n\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\nvar didWarnValueLink = false;\nvar didWarnValDefaultVal = false;\n\nfunction forceUpdateIfMounted() {\n  if (this._rootNodeID) {\n    // DOM component is still mounted; update\n    ReactDOMTextarea.updateWrapper(this);\n  }\n}\n\n/**\n * Implements a <textarea> host component that allows setting `value`, and\n * `defaultValue`. This differs from the traditional DOM API because value is\n * usually set as PCDATA children.\n *\n * If `value` is not supplied (or null/undefined), user actions that affect the\n * value will trigger updates to the element.\n *\n * If `value` is supplied (and not null/undefined), the rendered element will\n * not trigger updates to the element. Instead, the `value` prop must change in\n * order for the rendered element to be updated.\n *\n * The rendered element will be initialized with an empty value, the prop\n * `defaultValue` if specified, or the children content (deprecated).\n */\nvar ReactDOMTextarea = {\n  getHostProps: function (inst, props) {\n    !(props.dangerouslySetInnerHTML == null) ? process.env.NODE_ENV !== 'production' ? invariant(false, '`dangerouslySetInnerHTML` does not make sense on <textarea>.') : _prodInvariant('91') : void 0;\n\n    // Always set children to the same thing. In IE9, the selection range will\n    // get reset if `textContent` is mutated.  We could add a check in setTextContent\n    // to only set the value if/when the value differs from the node value (which would\n    // completely solve this IE9 bug), but Sebastian+Ben seemed to like this solution.\n    // The value can be a boolean or object so that's why it's forced to be a string.\n    var hostProps = _assign({}, props, {\n      value: undefined,\n      defaultValue: undefined,\n      children: '' + inst._wrapperState.initialValue,\n      onChange: inst._wrapperState.onChange\n    });\n\n    return hostProps;\n  },\n\n  mountWrapper: function (inst, props) {\n    if (process.env.NODE_ENV !== 'production') {\n      LinkedValueUtils.checkPropTypes('textarea', props, inst._currentElement._owner);\n      if (props.valueLink !== undefined && !didWarnValueLink) {\n        process.env.NODE_ENV !== 'production' ? warning(false, '`valueLink` prop on `textarea` is deprecated; set `value` and `onChange` instead.') : void 0;\n        didWarnValueLink = true;\n      }\n      if (props.value !== undefined && props.defaultValue !== undefined && !didWarnValDefaultVal) {\n        process.env.NODE_ENV !== 'production' ? warning(false, 'Textarea elements must be either controlled or uncontrolled ' + '(specify either the value prop, or the defaultValue prop, but not ' + 'both). Decide between using a controlled or uncontrolled textarea ' + 'and remove one of these props. More info: ' + 'https://fb.me/react-controlled-components') : void 0;\n        didWarnValDefaultVal = true;\n      }\n    }\n\n    var value = LinkedValueUtils.getValue(props);\n    var initialValue = value;\n\n    // Only bother fetching default value if we're going to use it\n    if (value == null) {\n      var defaultValue = props.defaultValue;\n      // TODO (yungsters): Remove support for children content in <textarea>.\n      var children = props.children;\n      if (children != null) {\n        if (process.env.NODE_ENV !== 'production') {\n          process.env.NODE_ENV !== 'production' ? warning(false, 'Use the `defaultValue` or `value` props instead of setting ' + 'children on <textarea>.') : void 0;\n        }\n        !(defaultValue == null) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'If you supply `defaultValue` on a <textarea>, do not pass children.') : _prodInvariant('92') : void 0;\n        if (Array.isArray(children)) {\n          !(children.length <= 1) ? process.env.NODE_ENV !== 'production' ? invariant(false, '<textarea> can only have at most one child.') : _prodInvariant('93') : void 0;\n          children = children[0];\n        }\n\n        defaultValue = '' + children;\n      }\n      if (defaultValue == null) {\n        defaultValue = '';\n      }\n      initialValue = defaultValue;\n    }\n\n    inst._wrapperState = {\n      initialValue: '' + initialValue,\n      listeners: null,\n      onChange: _handleChange.bind(inst)\n    };\n  },\n\n  updateWrapper: function (inst) {\n    var props = inst._currentElement.props;\n\n    var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n    var value = LinkedValueUtils.getValue(props);\n    if (value != null) {\n      // Cast `value` to a string to ensure the value is set correctly. While\n      // browsers typically do this as necessary, jsdom doesn't.\n      var newValue = '' + value;\n\n      // To avoid side effects (such as losing text selection), only set value if changed\n      if (newValue !== node.value) {\n        node.value = newValue;\n      }\n      if (props.defaultValue == null) {\n        node.defaultValue = newValue;\n      }\n    }\n    if (props.defaultValue != null) {\n      node.defaultValue = props.defaultValue;\n    }\n  },\n\n  postMountWrapper: function (inst) {\n    // This is in postMount because we need access to the DOM node, which is not\n    // available until after the component has mounted.\n    var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n    var textContent = node.textContent;\n\n    // Only set node.value if textContent is equal to the expected\n    // initial value. In IE10/IE11 there is a bug where the placeholder attribute\n    // will populate textContent as well.\n    // https://developer.microsoft.com/microsoft-edge/platform/issues/101525/\n    if (textContent === inst._wrapperState.initialValue) {\n      node.value = textContent;\n    }\n  }\n};\n\nfunction _handleChange(event) {\n  var props = this._currentElement.props;\n  var returnValue = LinkedValueUtils.executeOnChange(props, event);\n  ReactUpdates.asap(forceUpdateIfMounted, this);\n  return returnValue;\n}\n\nmodule.exports = ReactDOMTextarea;\n}).call(this,require('_process'))\n},{\"./LinkedValueUtils\":142,\"./ReactDOMComponentTree\":152,\"./ReactUpdates\":196,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111,\"object-assign\":114}],165:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar invariant = require('fbjs/lib/invariant');\n\n/**\n * Return the lowest common ancestor of A and B, or null if they are in\n * different trees.\n */\nfunction getLowestCommonAncestor(instA, instB) {\n  !('_hostNode' in instA) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'getNodeFromInstance: Invalid argument.') : _prodInvariant('33') : void 0;\n  !('_hostNode' in instB) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'getNodeFromInstance: Invalid argument.') : _prodInvariant('33') : void 0;\n\n  var depthA = 0;\n  for (var tempA = instA; tempA; tempA = tempA._hostParent) {\n    depthA++;\n  }\n  var depthB = 0;\n  for (var tempB = instB; tempB; tempB = tempB._hostParent) {\n    depthB++;\n  }\n\n  // If A is deeper, crawl up.\n  while (depthA - depthB > 0) {\n    instA = instA._hostParent;\n    depthA--;\n  }\n\n  // If B is deeper, crawl up.\n  while (depthB - depthA > 0) {\n    instB = instB._hostParent;\n    depthB--;\n  }\n\n  // Walk in lockstep until we find a match.\n  var depth = depthA;\n  while (depth--) {\n    if (instA === instB) {\n      return instA;\n    }\n    instA = instA._hostParent;\n    instB = instB._hostParent;\n  }\n  return null;\n}\n\n/**\n * Return if A is an ancestor of B.\n */\nfunction isAncestor(instA, instB) {\n  !('_hostNode' in instA) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'isAncestor: Invalid argument.') : _prodInvariant('35') : void 0;\n  !('_hostNode' in instB) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'isAncestor: Invalid argument.') : _prodInvariant('35') : void 0;\n\n  while (instB) {\n    if (instB === instA) {\n      return true;\n    }\n    instB = instB._hostParent;\n  }\n  return false;\n}\n\n/**\n * Return the parent instance of the passed-in instance.\n */\nfunction getParentInstance(inst) {\n  !('_hostNode' in inst) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'getParentInstance: Invalid argument.') : _prodInvariant('36') : void 0;\n\n  return inst._hostParent;\n}\n\n/**\n * Simulates the traversal of a two-phase, capture/bubble event dispatch.\n */\nfunction traverseTwoPhase(inst, fn, arg) {\n  var path = [];\n  while (inst) {\n    path.push(inst);\n    inst = inst._hostParent;\n  }\n  var i;\n  for (i = path.length; i-- > 0;) {\n    fn(path[i], 'captured', arg);\n  }\n  for (i = 0; i < path.length; i++) {\n    fn(path[i], 'bubbled', arg);\n  }\n}\n\n/**\n * Traverses the ID hierarchy and invokes the supplied `cb` on any IDs that\n * should would receive a `mouseEnter` or `mouseLeave` event.\n *\n * Does not invoke the callback on the nearest common ancestor because nothing\n * \"entered\" or \"left\" that element.\n */\nfunction traverseEnterLeave(from, to, fn, argFrom, argTo) {\n  var common = from && to ? getLowestCommonAncestor(from, to) : null;\n  var pathFrom = [];\n  while (from && from !== common) {\n    pathFrom.push(from);\n    from = from._hostParent;\n  }\n  var pathTo = [];\n  while (to && to !== common) {\n    pathTo.push(to);\n    to = to._hostParent;\n  }\n  var i;\n  for (i = 0; i < pathFrom.length; i++) {\n    fn(pathFrom[i], 'bubbled', argFrom);\n  }\n  for (i = pathTo.length; i-- > 0;) {\n    fn(pathTo[i], 'captured', argTo);\n  }\n}\n\nmodule.exports = {\n  isAncestor: isAncestor,\n  getLowestCommonAncestor: getLowestCommonAncestor,\n  getParentInstance: getParentInstance,\n  traverseTwoPhase: traverseTwoPhase,\n  traverseEnterLeave: traverseEnterLeave\n};\n}).call(this,require('_process'))\n},{\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104}],166:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar DOMProperty = require('./DOMProperty');\nvar EventPluginRegistry = require('./EventPluginRegistry');\nvar ReactComponentTreeHook = require('react/lib/ReactComponentTreeHook');\n\nvar warning = require('fbjs/lib/warning');\n\nif (process.env.NODE_ENV !== 'production') {\n  var reactProps = {\n    children: true,\n    dangerouslySetInnerHTML: true,\n    key: true,\n    ref: true,\n\n    autoFocus: true,\n    defaultValue: true,\n    valueLink: true,\n    defaultChecked: true,\n    checkedLink: true,\n    innerHTML: true,\n    suppressContentEditableWarning: true,\n    onFocusIn: true,\n    onFocusOut: true\n  };\n  var warnedProperties = {};\n\n  var validateProperty = function (tagName, name, debugID) {\n    if (DOMProperty.properties.hasOwnProperty(name) || DOMProperty.isCustomAttribute(name)) {\n      return true;\n    }\n    if (reactProps.hasOwnProperty(name) && reactProps[name] || warnedProperties.hasOwnProperty(name) && warnedProperties[name]) {\n      return true;\n    }\n    if (EventPluginRegistry.registrationNameModules.hasOwnProperty(name)) {\n      return true;\n    }\n    warnedProperties[name] = true;\n    var lowerCasedName = name.toLowerCase();\n\n    // data-* attributes should be lowercase; suggest the lowercase version\n    var standardName = DOMProperty.isCustomAttribute(lowerCasedName) ? lowerCasedName : DOMProperty.getPossibleStandardName.hasOwnProperty(lowerCasedName) ? DOMProperty.getPossibleStandardName[lowerCasedName] : null;\n\n    var registrationName = EventPluginRegistry.possibleRegistrationNames.hasOwnProperty(lowerCasedName) ? EventPluginRegistry.possibleRegistrationNames[lowerCasedName] : null;\n\n    if (standardName != null) {\n      process.env.NODE_ENV !== 'production' ? warning(false, 'Unknown DOM property %s. Did you mean %s?%s', name, standardName, ReactComponentTreeHook.getStackAddendumByID(debugID)) : void 0;\n      return true;\n    } else if (registrationName != null) {\n      process.env.NODE_ENV !== 'production' ? warning(false, 'Unknown event handler property %s. Did you mean `%s`?%s', name, registrationName, ReactComponentTreeHook.getStackAddendumByID(debugID)) : void 0;\n      return true;\n    } else {\n      // We were unable to guess which prop the user intended.\n      // It is likely that the user was just blindly spreading/forwarding props\n      // Components should be careful to only render valid props/attributes.\n      // Warning will be invoked in warnUnknownProperties to allow grouping.\n      return false;\n    }\n  };\n}\n\nvar warnUnknownProperties = function (debugID, element) {\n  var unknownProps = [];\n  for (var key in element.props) {\n    var isValid = validateProperty(element.type, key, debugID);\n    if (!isValid) {\n      unknownProps.push(key);\n    }\n  }\n\n  var unknownPropString = unknownProps.map(function (prop) {\n    return '`' + prop + '`';\n  }).join(', ');\n\n  if (unknownProps.length === 1) {\n    process.env.NODE_ENV !== 'production' ? warning(false, 'Unknown prop %s on <%s> tag. Remove this prop from the element. ' + 'For details, see https://fb.me/react-unknown-prop%s', unknownPropString, element.type, ReactComponentTreeHook.getStackAddendumByID(debugID)) : void 0;\n  } else if (unknownProps.length > 1) {\n    process.env.NODE_ENV !== 'production' ? warning(false, 'Unknown props %s on <%s> tag. Remove these props from the element. ' + 'For details, see https://fb.me/react-unknown-prop%s', unknownPropString, element.type, ReactComponentTreeHook.getStackAddendumByID(debugID)) : void 0;\n  }\n};\n\nfunction handleElement(debugID, element) {\n  if (element == null || typeof element.type !== 'string') {\n    return;\n  }\n  if (element.type.indexOf('-') >= 0 || element.props.is) {\n    return;\n  }\n  warnUnknownProperties(debugID, element);\n}\n\nvar ReactDOMUnknownPropertyHook = {\n  onBeforeMountComponent: function (debugID, element) {\n    handleElement(debugID, element);\n  },\n  onBeforeUpdateComponent: function (debugID, element) {\n    handleElement(debugID, element);\n  }\n};\n\nmodule.exports = ReactDOMUnknownPropertyHook;\n}).call(this,require('_process'))\n},{\"./DOMProperty\":130,\"./EventPluginRegistry\":136,\"_process\":112,\"fbjs/lib/warning\":111,\"react/lib/ReactComponentTreeHook\":255}],167:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2016-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar ReactInvalidSetStateWarningHook = require('./ReactInvalidSetStateWarningHook');\nvar ReactHostOperationHistoryHook = require('./ReactHostOperationHistoryHook');\nvar ReactComponentTreeHook = require('react/lib/ReactComponentTreeHook');\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\n\nvar performanceNow = require('fbjs/lib/performanceNow');\nvar warning = require('fbjs/lib/warning');\n\nvar hooks = [];\nvar didHookThrowForEvent = {};\n\nfunction callHook(event, fn, context, arg1, arg2, arg3, arg4, arg5) {\n  try {\n    fn.call(context, arg1, arg2, arg3, arg4, arg5);\n  } catch (e) {\n    process.env.NODE_ENV !== 'production' ? warning(didHookThrowForEvent[event], 'Exception thrown by hook while handling %s: %s', event, e + '\\n' + e.stack) : void 0;\n    didHookThrowForEvent[event] = true;\n  }\n}\n\nfunction emitEvent(event, arg1, arg2, arg3, arg4, arg5) {\n  for (var i = 0; i < hooks.length; i++) {\n    var hook = hooks[i];\n    var fn = hook[event];\n    if (fn) {\n      callHook(event, fn, hook, arg1, arg2, arg3, arg4, arg5);\n    }\n  }\n}\n\nvar isProfiling = false;\nvar flushHistory = [];\nvar lifeCycleTimerStack = [];\nvar currentFlushNesting = 0;\nvar currentFlushMeasurements = [];\nvar currentFlushStartTime = 0;\nvar currentTimerDebugID = null;\nvar currentTimerStartTime = 0;\nvar currentTimerNestedFlushDuration = 0;\nvar currentTimerType = null;\n\nvar lifeCycleTimerHasWarned = false;\n\nfunction clearHistory() {\n  ReactComponentTreeHook.purgeUnmountedComponents();\n  ReactHostOperationHistoryHook.clearHistory();\n}\n\nfunction getTreeSnapshot(registeredIDs) {\n  return registeredIDs.reduce(function (tree, id) {\n    var ownerID = ReactComponentTreeHook.getOwnerID(id);\n    var parentID = ReactComponentTreeHook.getParentID(id);\n    tree[id] = {\n      displayName: ReactComponentTreeHook.getDisplayName(id),\n      text: ReactComponentTreeHook.getText(id),\n      updateCount: ReactComponentTreeHook.getUpdateCount(id),\n      childIDs: ReactComponentTreeHook.getChildIDs(id),\n      // Text nodes don't have owners but this is close enough.\n      ownerID: ownerID || parentID && ReactComponentTreeHook.getOwnerID(parentID) || 0,\n      parentID: parentID\n    };\n    return tree;\n  }, {});\n}\n\nfunction resetMeasurements() {\n  var previousStartTime = currentFlushStartTime;\n  var previousMeasurements = currentFlushMeasurements;\n  var previousOperations = ReactHostOperationHistoryHook.getHistory();\n\n  if (currentFlushNesting === 0) {\n    currentFlushStartTime = 0;\n    currentFlushMeasurements = [];\n    clearHistory();\n    return;\n  }\n\n  if (previousMeasurements.length || previousOperations.length) {\n    var registeredIDs = ReactComponentTreeHook.getRegisteredIDs();\n    flushHistory.push({\n      duration: performanceNow() - previousStartTime,\n      measurements: previousMeasurements || [],\n      operations: previousOperations || [],\n      treeSnapshot: getTreeSnapshot(registeredIDs)\n    });\n  }\n\n  clearHistory();\n  currentFlushStartTime = performanceNow();\n  currentFlushMeasurements = [];\n}\n\nfunction checkDebugID(debugID) {\n  var allowRoot = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n  if (allowRoot && debugID === 0) {\n    return;\n  }\n  if (!debugID) {\n    process.env.NODE_ENV !== 'production' ? warning(false, 'ReactDebugTool: debugID may not be empty.') : void 0;\n  }\n}\n\nfunction beginLifeCycleTimer(debugID, timerType) {\n  if (currentFlushNesting === 0) {\n    return;\n  }\n  if (currentTimerType && !lifeCycleTimerHasWarned) {\n    process.env.NODE_ENV !== 'production' ? warning(false, 'There is an internal error in the React performance measurement code. ' + 'Did not expect %s timer to start while %s timer is still in ' + 'progress for %s instance.', timerType, currentTimerType || 'no', debugID === currentTimerDebugID ? 'the same' : 'another') : void 0;\n    lifeCycleTimerHasWarned = true;\n  }\n  currentTimerStartTime = performanceNow();\n  currentTimerNestedFlushDuration = 0;\n  currentTimerDebugID = debugID;\n  currentTimerType = timerType;\n}\n\nfunction endLifeCycleTimer(debugID, timerType) {\n  if (currentFlushNesting === 0) {\n    return;\n  }\n  if (currentTimerType !== timerType && !lifeCycleTimerHasWarned) {\n    process.env.NODE_ENV !== 'production' ? warning(false, 'There is an internal error in the React performance measurement code. ' + 'We did not expect %s timer to stop while %s timer is still in ' + 'progress for %s instance. Please report this as a bug in React.', timerType, currentTimerType || 'no', debugID === currentTimerDebugID ? 'the same' : 'another') : void 0;\n    lifeCycleTimerHasWarned = true;\n  }\n  if (isProfiling) {\n    currentFlushMeasurements.push({\n      timerType: timerType,\n      instanceID: debugID,\n      duration: performanceNow() - currentTimerStartTime - currentTimerNestedFlushDuration\n    });\n  }\n  currentTimerStartTime = 0;\n  currentTimerNestedFlushDuration = 0;\n  currentTimerDebugID = null;\n  currentTimerType = null;\n}\n\nfunction pauseCurrentLifeCycleTimer() {\n  var currentTimer = {\n    startTime: currentTimerStartTime,\n    nestedFlushStartTime: performanceNow(),\n    debugID: currentTimerDebugID,\n    timerType: currentTimerType\n  };\n  lifeCycleTimerStack.push(currentTimer);\n  currentTimerStartTime = 0;\n  currentTimerNestedFlushDuration = 0;\n  currentTimerDebugID = null;\n  currentTimerType = null;\n}\n\nfunction resumeCurrentLifeCycleTimer() {\n  var _lifeCycleTimerStack$ = lifeCycleTimerStack.pop(),\n      startTime = _lifeCycleTimerStack$.startTime,\n      nestedFlushStartTime = _lifeCycleTimerStack$.nestedFlushStartTime,\n      debugID = _lifeCycleTimerStack$.debugID,\n      timerType = _lifeCycleTimerStack$.timerType;\n\n  var nestedFlushDuration = performanceNow() - nestedFlushStartTime;\n  currentTimerStartTime = startTime;\n  currentTimerNestedFlushDuration += nestedFlushDuration;\n  currentTimerDebugID = debugID;\n  currentTimerType = timerType;\n}\n\nvar lastMarkTimeStamp = 0;\nvar canUsePerformanceMeasure = typeof performance !== 'undefined' && typeof performance.mark === 'function' && typeof performance.clearMarks === 'function' && typeof performance.measure === 'function' && typeof performance.clearMeasures === 'function';\n\nfunction shouldMark(debugID) {\n  if (!isProfiling || !canUsePerformanceMeasure) {\n    return false;\n  }\n  var element = ReactComponentTreeHook.getElement(debugID);\n  if (element == null || typeof element !== 'object') {\n    return false;\n  }\n  var isHostElement = typeof element.type === 'string';\n  if (isHostElement) {\n    return false;\n  }\n  return true;\n}\n\nfunction markBegin(debugID, markType) {\n  if (!shouldMark(debugID)) {\n    return;\n  }\n\n  var markName = debugID + '::' + markType;\n  lastMarkTimeStamp = performanceNow();\n  performance.mark(markName);\n}\n\nfunction markEnd(debugID, markType) {\n  if (!shouldMark(debugID)) {\n    return;\n  }\n\n  var markName = debugID + '::' + markType;\n  var displayName = ReactComponentTreeHook.getDisplayName(debugID) || 'Unknown';\n\n  // Chrome has an issue of dropping markers recorded too fast:\n  // https://bugs.chromium.org/p/chromium/issues/detail?id=640652\n  // To work around this, we will not report very small measurements.\n  // I determined the magic number by tweaking it back and forth.\n  // 0.05ms was enough to prevent the issue, but I set it to 0.1ms to be safe.\n  // When the bug is fixed, we can `measure()` unconditionally if we want to.\n  var timeStamp = performanceNow();\n  if (timeStamp - lastMarkTimeStamp > 0.1) {\n    var measurementName = displayName + ' [' + markType + ']';\n    performance.measure(measurementName, markName);\n  }\n\n  performance.clearMarks(markName);\n  performance.clearMeasures(measurementName);\n}\n\nvar ReactDebugTool = {\n  addHook: function (hook) {\n    hooks.push(hook);\n  },\n  removeHook: function (hook) {\n    for (var i = 0; i < hooks.length; i++) {\n      if (hooks[i] === hook) {\n        hooks.splice(i, 1);\n        i--;\n      }\n    }\n  },\n  isProfiling: function () {\n    return isProfiling;\n  },\n  beginProfiling: function () {\n    if (isProfiling) {\n      return;\n    }\n\n    isProfiling = true;\n    flushHistory.length = 0;\n    resetMeasurements();\n    ReactDebugTool.addHook(ReactHostOperationHistoryHook);\n  },\n  endProfiling: function () {\n    if (!isProfiling) {\n      return;\n    }\n\n    isProfiling = false;\n    resetMeasurements();\n    ReactDebugTool.removeHook(ReactHostOperationHistoryHook);\n  },\n  getFlushHistory: function () {\n    return flushHistory;\n  },\n  onBeginFlush: function () {\n    currentFlushNesting++;\n    resetMeasurements();\n    pauseCurrentLifeCycleTimer();\n    emitEvent('onBeginFlush');\n  },\n  onEndFlush: function () {\n    resetMeasurements();\n    currentFlushNesting--;\n    resumeCurrentLifeCycleTimer();\n    emitEvent('onEndFlush');\n  },\n  onBeginLifeCycleTimer: function (debugID, timerType) {\n    checkDebugID(debugID);\n    emitEvent('onBeginLifeCycleTimer', debugID, timerType);\n    markBegin(debugID, timerType);\n    beginLifeCycleTimer(debugID, timerType);\n  },\n  onEndLifeCycleTimer: function (debugID, timerType) {\n    checkDebugID(debugID);\n    endLifeCycleTimer(debugID, timerType);\n    markEnd(debugID, timerType);\n    emitEvent('onEndLifeCycleTimer', debugID, timerType);\n  },\n  onBeginProcessingChildContext: function () {\n    emitEvent('onBeginProcessingChildContext');\n  },\n  onEndProcessingChildContext: function () {\n    emitEvent('onEndProcessingChildContext');\n  },\n  onHostOperation: function (operation) {\n    checkDebugID(operation.instanceID);\n    emitEvent('onHostOperation', operation);\n  },\n  onSetState: function () {\n    emitEvent('onSetState');\n  },\n  onSetChildren: function (debugID, childDebugIDs) {\n    checkDebugID(debugID);\n    childDebugIDs.forEach(checkDebugID);\n    emitEvent('onSetChildren', debugID, childDebugIDs);\n  },\n  onBeforeMountComponent: function (debugID, element, parentDebugID) {\n    checkDebugID(debugID);\n    checkDebugID(parentDebugID, true);\n    emitEvent('onBeforeMountComponent', debugID, element, parentDebugID);\n    markBegin(debugID, 'mount');\n  },\n  onMountComponent: function (debugID) {\n    checkDebugID(debugID);\n    markEnd(debugID, 'mount');\n    emitEvent('onMountComponent', debugID);\n  },\n  onBeforeUpdateComponent: function (debugID, element) {\n    checkDebugID(debugID);\n    emitEvent('onBeforeUpdateComponent', debugID, element);\n    markBegin(debugID, 'update');\n  },\n  onUpdateComponent: function (debugID) {\n    checkDebugID(debugID);\n    markEnd(debugID, 'update');\n    emitEvent('onUpdateComponent', debugID);\n  },\n  onBeforeUnmountComponent: function (debugID) {\n    checkDebugID(debugID);\n    emitEvent('onBeforeUnmountComponent', debugID);\n    markBegin(debugID, 'unmount');\n  },\n  onUnmountComponent: function (debugID) {\n    checkDebugID(debugID);\n    markEnd(debugID, 'unmount');\n    emitEvent('onUnmountComponent', debugID);\n  },\n  onTestEvent: function () {\n    emitEvent('onTestEvent');\n  }\n};\n\n// TODO remove these when RN/www gets updated\nReactDebugTool.addDevtool = ReactDebugTool.addHook;\nReactDebugTool.removeDevtool = ReactDebugTool.removeHook;\n\nReactDebugTool.addHook(ReactInvalidSetStateWarningHook);\nReactDebugTool.addHook(ReactComponentTreeHook);\nvar url = ExecutionEnvironment.canUseDOM && window.location.href || '';\nif (/[?&]react_perf\\b/.test(url)) {\n  ReactDebugTool.beginProfiling();\n}\n\nmodule.exports = ReactDebugTool;\n}).call(this,require('_process'))\n},{\"./ReactHostOperationHistoryHook\":177,\"./ReactInvalidSetStateWarningHook\":182,\"_process\":112,\"fbjs/lib/ExecutionEnvironment\":90,\"fbjs/lib/performanceNow\":109,\"fbjs/lib/warning\":111,\"react/lib/ReactComponentTreeHook\":255}],168:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar ReactUpdates = require('./ReactUpdates');\nvar Transaction = require('./Transaction');\n\nvar emptyFunction = require('fbjs/lib/emptyFunction');\n\nvar RESET_BATCHED_UPDATES = {\n  initialize: emptyFunction,\n  close: function () {\n    ReactDefaultBatchingStrategy.isBatchingUpdates = false;\n  }\n};\n\nvar FLUSH_BATCHED_UPDATES = {\n  initialize: emptyFunction,\n  close: ReactUpdates.flushBatchedUpdates.bind(ReactUpdates)\n};\n\nvar TRANSACTION_WRAPPERS = [FLUSH_BATCHED_UPDATES, RESET_BATCHED_UPDATES];\n\nfunction ReactDefaultBatchingStrategyTransaction() {\n  this.reinitializeTransaction();\n}\n\n_assign(ReactDefaultBatchingStrategyTransaction.prototype, Transaction, {\n  getTransactionWrappers: function () {\n    return TRANSACTION_WRAPPERS;\n  }\n});\n\nvar transaction = new ReactDefaultBatchingStrategyTransaction();\n\nvar ReactDefaultBatchingStrategy = {\n  isBatchingUpdates: false,\n\n  /**\n   * Call the provided function in a context within which calls to `setState`\n   * and friends are batched such that components aren't updated unnecessarily.\n   */\n  batchedUpdates: function (callback, a, b, c, d, e) {\n    var alreadyBatchingUpdates = ReactDefaultBatchingStrategy.isBatchingUpdates;\n\n    ReactDefaultBatchingStrategy.isBatchingUpdates = true;\n\n    // The code is written this way to avoid extra allocations\n    if (alreadyBatchingUpdates) {\n      return callback(a, b, c, d, e);\n    } else {\n      return transaction.perform(callback, null, a, b, c, d, e);\n    }\n  }\n};\n\nmodule.exports = ReactDefaultBatchingStrategy;\n},{\"./ReactUpdates\":196,\"./Transaction\":214,\"fbjs/lib/emptyFunction\":96,\"object-assign\":114}],169:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ARIADOMPropertyConfig = require('./ARIADOMPropertyConfig');\nvar BeforeInputEventPlugin = require('./BeforeInputEventPlugin');\nvar ChangeEventPlugin = require('./ChangeEventPlugin');\nvar DefaultEventPluginOrder = require('./DefaultEventPluginOrder');\nvar EnterLeaveEventPlugin = require('./EnterLeaveEventPlugin');\nvar HTMLDOMPropertyConfig = require('./HTMLDOMPropertyConfig');\nvar ReactComponentBrowserEnvironment = require('./ReactComponentBrowserEnvironment');\nvar ReactDOMComponent = require('./ReactDOMComponent');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactDOMEmptyComponent = require('./ReactDOMEmptyComponent');\nvar ReactDOMTreeTraversal = require('./ReactDOMTreeTraversal');\nvar ReactDOMTextComponent = require('./ReactDOMTextComponent');\nvar ReactDefaultBatchingStrategy = require('./ReactDefaultBatchingStrategy');\nvar ReactEventListener = require('./ReactEventListener');\nvar ReactInjection = require('./ReactInjection');\nvar ReactReconcileTransaction = require('./ReactReconcileTransaction');\nvar SVGDOMPropertyConfig = require('./SVGDOMPropertyConfig');\nvar SelectEventPlugin = require('./SelectEventPlugin');\nvar SimpleEventPlugin = require('./SimpleEventPlugin');\n\nvar alreadyInjected = false;\n\nfunction inject() {\n  if (alreadyInjected) {\n    // TODO: This is currently true because these injections are shared between\n    // the client and the server package. They should be built independently\n    // and not share any injection state. Then this problem will be solved.\n    return;\n  }\n  alreadyInjected = true;\n\n  ReactInjection.EventEmitter.injectReactEventListener(ReactEventListener);\n\n  /**\n   * Inject modules for resolving DOM hierarchy and plugin ordering.\n   */\n  ReactInjection.EventPluginHub.injectEventPluginOrder(DefaultEventPluginOrder);\n  ReactInjection.EventPluginUtils.injectComponentTree(ReactDOMComponentTree);\n  ReactInjection.EventPluginUtils.injectTreeTraversal(ReactDOMTreeTraversal);\n\n  /**\n   * Some important event plugins included by default (without having to require\n   * them).\n   */\n  ReactInjection.EventPluginHub.injectEventPluginsByName({\n    SimpleEventPlugin: SimpleEventPlugin,\n    EnterLeaveEventPlugin: EnterLeaveEventPlugin,\n    ChangeEventPlugin: ChangeEventPlugin,\n    SelectEventPlugin: SelectEventPlugin,\n    BeforeInputEventPlugin: BeforeInputEventPlugin\n  });\n\n  ReactInjection.HostComponent.injectGenericComponentClass(ReactDOMComponent);\n\n  ReactInjection.HostComponent.injectTextComponentClass(ReactDOMTextComponent);\n\n  ReactInjection.DOMProperty.injectDOMPropertyConfig(ARIADOMPropertyConfig);\n  ReactInjection.DOMProperty.injectDOMPropertyConfig(HTMLDOMPropertyConfig);\n  ReactInjection.DOMProperty.injectDOMPropertyConfig(SVGDOMPropertyConfig);\n\n  ReactInjection.EmptyComponent.injectEmptyComponentFactory(function (instantiate) {\n    return new ReactDOMEmptyComponent(instantiate);\n  });\n\n  ReactInjection.Updates.injectReconcileTransaction(ReactReconcileTransaction);\n  ReactInjection.Updates.injectBatchingStrategy(ReactDefaultBatchingStrategy);\n\n  ReactInjection.Component.injectEnvironment(ReactComponentBrowserEnvironment);\n}\n\nmodule.exports = {\n  inject: inject\n};\n},{\"./ARIADOMPropertyConfig\":120,\"./BeforeInputEventPlugin\":122,\"./ChangeEventPlugin\":126,\"./DefaultEventPluginOrder\":133,\"./EnterLeaveEventPlugin\":134,\"./HTMLDOMPropertyConfig\":140,\"./ReactComponentBrowserEnvironment\":146,\"./ReactDOMComponent\":150,\"./ReactDOMComponentTree\":152,\"./ReactDOMEmptyComponent\":154,\"./ReactDOMTextComponent\":163,\"./ReactDOMTreeTraversal\":165,\"./ReactDefaultBatchingStrategy\":168,\"./ReactEventListener\":174,\"./ReactInjection\":178,\"./ReactReconcileTransaction\":190,\"./SVGDOMPropertyConfig\":198,\"./SelectEventPlugin\":199,\"./SimpleEventPlugin\":200}],170:[function(require,module,exports){\n/**\n * Copyright 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\n// The Symbol used to tag the ReactElement type. If there is no native Symbol\n// nor polyfill, then a plain number is used for performance.\n\nvar REACT_ELEMENT_TYPE = typeof Symbol === 'function' && Symbol['for'] && Symbol['for']('react.element') || 0xeac7;\n\nmodule.exports = REACT_ELEMENT_TYPE;\n},{}],171:[function(require,module,exports){\n/**\n * Copyright 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar emptyComponentFactory;\n\nvar ReactEmptyComponentInjection = {\n  injectEmptyComponentFactory: function (factory) {\n    emptyComponentFactory = factory;\n  }\n};\n\nvar ReactEmptyComponent = {\n  create: function (instantiate) {\n    return emptyComponentFactory(instantiate);\n  }\n};\n\nReactEmptyComponent.injection = ReactEmptyComponentInjection;\n\nmodule.exports = ReactEmptyComponent;\n},{}],172:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar caughtError = null;\n\n/**\n * Call a function while guarding against errors that happens within it.\n *\n * @param {String} name of the guard to use for logging or debugging\n * @param {Function} func The function to invoke\n * @param {*} a First argument\n * @param {*} b Second argument\n */\nfunction invokeGuardedCallback(name, func, a) {\n  try {\n    func(a);\n  } catch (x) {\n    if (caughtError === null) {\n      caughtError = x;\n    }\n  }\n}\n\nvar ReactErrorUtils = {\n  invokeGuardedCallback: invokeGuardedCallback,\n\n  /**\n   * Invoked by ReactTestUtils.Simulate so that any errors thrown by the event\n   * handler are sure to be rethrown by rethrowCaughtError.\n   */\n  invokeGuardedCallbackWithCatch: invokeGuardedCallback,\n\n  /**\n   * During execution of guarded functions we will capture the first error which\n   * we will rethrow to be handled by the top level error handler.\n   */\n  rethrowCaughtError: function () {\n    if (caughtError) {\n      var error = caughtError;\n      caughtError = null;\n      throw error;\n    }\n  }\n};\n\nif (process.env.NODE_ENV !== 'production') {\n  /**\n   * To help development we can get better devtools integration by simulating a\n   * real browser event.\n   */\n  if (typeof window !== 'undefined' && typeof window.dispatchEvent === 'function' && typeof document !== 'undefined' && typeof document.createEvent === 'function') {\n    var fakeNode = document.createElement('react');\n    ReactErrorUtils.invokeGuardedCallback = function (name, func, a) {\n      var boundFunc = func.bind(null, a);\n      var evtType = 'react-' + name;\n      fakeNode.addEventListener(evtType, boundFunc, false);\n      var evt = document.createEvent('Event');\n      evt.initEvent(evtType, false, false);\n      fakeNode.dispatchEvent(evt);\n      fakeNode.removeEventListener(evtType, boundFunc, false);\n    };\n  }\n}\n\nmodule.exports = ReactErrorUtils;\n}).call(this,require('_process'))\n},{\"_process\":112}],173:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar EventPluginHub = require('./EventPluginHub');\n\nfunction runEventQueueInBatch(events) {\n  EventPluginHub.enqueueEvents(events);\n  EventPluginHub.processEventQueue(false);\n}\n\nvar ReactEventEmitterMixin = {\n\n  /**\n   * Streams a fired top-level event to `EventPluginHub` where plugins have the\n   * opportunity to create `ReactEvent`s to be dispatched.\n   */\n  handleTopLevel: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n    var events = EventPluginHub.extractEvents(topLevelType, targetInst, nativeEvent, nativeEventTarget);\n    runEventQueueInBatch(events);\n  }\n};\n\nmodule.exports = ReactEventEmitterMixin;\n},{\"./EventPluginHub\":135}],174:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar EventListener = require('fbjs/lib/EventListener');\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\nvar PooledClass = require('./PooledClass');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactUpdates = require('./ReactUpdates');\n\nvar getEventTarget = require('./getEventTarget');\nvar getUnboundedScrollPosition = require('fbjs/lib/getUnboundedScrollPosition');\n\n/**\n * Find the deepest React component completely containing the root of the\n * passed-in instance (for use when entire React trees are nested within each\n * other). If React trees are not nested, returns null.\n */\nfunction findParent(inst) {\n  // TODO: It may be a good idea to cache this to prevent unnecessary DOM\n  // traversal, but caching is difficult to do correctly without using a\n  // mutation observer to listen for all DOM changes.\n  while (inst._hostParent) {\n    inst = inst._hostParent;\n  }\n  var rootNode = ReactDOMComponentTree.getNodeFromInstance(inst);\n  var container = rootNode.parentNode;\n  return ReactDOMComponentTree.getClosestInstanceFromNode(container);\n}\n\n// Used to store ancestor hierarchy in top level callback\nfunction TopLevelCallbackBookKeeping(topLevelType, nativeEvent) {\n  this.topLevelType = topLevelType;\n  this.nativeEvent = nativeEvent;\n  this.ancestors = [];\n}\n_assign(TopLevelCallbackBookKeeping.prototype, {\n  destructor: function () {\n    this.topLevelType = null;\n    this.nativeEvent = null;\n    this.ancestors.length = 0;\n  }\n});\nPooledClass.addPoolingTo(TopLevelCallbackBookKeeping, PooledClass.twoArgumentPooler);\n\nfunction handleTopLevelImpl(bookKeeping) {\n  var nativeEventTarget = getEventTarget(bookKeeping.nativeEvent);\n  var targetInst = ReactDOMComponentTree.getClosestInstanceFromNode(nativeEventTarget);\n\n  // Loop through the hierarchy, in case there's any nested components.\n  // It's important that we build the array of ancestors before calling any\n  // event handlers, because event handlers can modify the DOM, leading to\n  // inconsistencies with ReactMount's node cache. See #1105.\n  var ancestor = targetInst;\n  do {\n    bookKeeping.ancestors.push(ancestor);\n    ancestor = ancestor && findParent(ancestor);\n  } while (ancestor);\n\n  for (var i = 0; i < bookKeeping.ancestors.length; i++) {\n    targetInst = bookKeeping.ancestors[i];\n    ReactEventListener._handleTopLevel(bookKeeping.topLevelType, targetInst, bookKeeping.nativeEvent, getEventTarget(bookKeeping.nativeEvent));\n  }\n}\n\nfunction scrollValueMonitor(cb) {\n  var scrollPosition = getUnboundedScrollPosition(window);\n  cb(scrollPosition);\n}\n\nvar ReactEventListener = {\n  _enabled: true,\n  _handleTopLevel: null,\n\n  WINDOW_HANDLE: ExecutionEnvironment.canUseDOM ? window : null,\n\n  setHandleTopLevel: function (handleTopLevel) {\n    ReactEventListener._handleTopLevel = handleTopLevel;\n  },\n\n  setEnabled: function (enabled) {\n    ReactEventListener._enabled = !!enabled;\n  },\n\n  isEnabled: function () {\n    return ReactEventListener._enabled;\n  },\n\n  /**\n   * Traps top-level events by using event bubbling.\n   *\n   * @param {string} topLevelType Record from `EventConstants`.\n   * @param {string} handlerBaseName Event name (e.g. \"click\").\n   * @param {object} element Element on which to attach listener.\n   * @return {?object} An object with a remove function which will forcefully\n   *                  remove the listener.\n   * @internal\n   */\n  trapBubbledEvent: function (topLevelType, handlerBaseName, element) {\n    if (!element) {\n      return null;\n    }\n    return EventListener.listen(element, handlerBaseName, ReactEventListener.dispatchEvent.bind(null, topLevelType));\n  },\n\n  /**\n   * Traps a top-level event by using event capturing.\n   *\n   * @param {string} topLevelType Record from `EventConstants`.\n   * @param {string} handlerBaseName Event name (e.g. \"click\").\n   * @param {object} element Element on which to attach listener.\n   * @return {?object} An object with a remove function which will forcefully\n   *                  remove the listener.\n   * @internal\n   */\n  trapCapturedEvent: function (topLevelType, handlerBaseName, element) {\n    if (!element) {\n      return null;\n    }\n    return EventListener.capture(element, handlerBaseName, ReactEventListener.dispatchEvent.bind(null, topLevelType));\n  },\n\n  monitorScrollValue: function (refresh) {\n    var callback = scrollValueMonitor.bind(null, refresh);\n    EventListener.listen(window, 'scroll', callback);\n  },\n\n  dispatchEvent: function (topLevelType, nativeEvent) {\n    if (!ReactEventListener._enabled) {\n      return;\n    }\n\n    var bookKeeping = TopLevelCallbackBookKeeping.getPooled(topLevelType, nativeEvent);\n    try {\n      // Event queue being processed in the same cycle allows\n      // `preventDefault`.\n      ReactUpdates.batchedUpdates(handleTopLevelImpl, bookKeeping);\n    } finally {\n      TopLevelCallbackBookKeeping.release(bookKeeping);\n    }\n  }\n};\n\nmodule.exports = ReactEventListener;\n},{\"./PooledClass\":143,\"./ReactDOMComponentTree\":152,\"./ReactUpdates\":196,\"./getEventTarget\":228,\"fbjs/lib/EventListener\":89,\"fbjs/lib/ExecutionEnvironment\":90,\"fbjs/lib/getUnboundedScrollPosition\":101,\"object-assign\":114}],175:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar ReactFeatureFlags = {\n  // When true, call console.time() before and .timeEnd() after each top-level\n  // render (both initial renders and updates). Useful when looking at prod-mode\n  // timeline profiles in Chrome, for example.\n  logTopLevelRenders: false\n};\n\nmodule.exports = ReactFeatureFlags;\n},{}],176:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar invariant = require('fbjs/lib/invariant');\n\nvar genericComponentClass = null;\nvar textComponentClass = null;\n\nvar ReactHostComponentInjection = {\n  // This accepts a class that receives the tag string. This is a catch all\n  // that can render any kind of tag.\n  injectGenericComponentClass: function (componentClass) {\n    genericComponentClass = componentClass;\n  },\n  // This accepts a text component class that takes the text string to be\n  // rendered as props.\n  injectTextComponentClass: function (componentClass) {\n    textComponentClass = componentClass;\n  }\n};\n\n/**\n * Get a host internal component class for a specific tag.\n *\n * @param {ReactElement} element The element to create.\n * @return {function} The internal class constructor function.\n */\nfunction createInternalComponent(element) {\n  !genericComponentClass ? process.env.NODE_ENV !== 'production' ? invariant(false, 'There is no registered component for the tag %s', element.type) : _prodInvariant('111', element.type) : void 0;\n  return new genericComponentClass(element);\n}\n\n/**\n * @param {ReactText} text\n * @return {ReactComponent}\n */\nfunction createInstanceForText(text) {\n  return new textComponentClass(text);\n}\n\n/**\n * @param {ReactComponent} component\n * @return {boolean}\n */\nfunction isTextComponent(component) {\n  return component instanceof textComponentClass;\n}\n\nvar ReactHostComponent = {\n  createInternalComponent: createInternalComponent,\n  createInstanceForText: createInstanceForText,\n  isTextComponent: isTextComponent,\n  injection: ReactHostComponentInjection\n};\n\nmodule.exports = ReactHostComponent;\n}).call(this,require('_process'))\n},{\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104}],177:[function(require,module,exports){\n/**\n * Copyright 2016-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar history = [];\n\nvar ReactHostOperationHistoryHook = {\n  onHostOperation: function (operation) {\n    history.push(operation);\n  },\n  clearHistory: function () {\n    if (ReactHostOperationHistoryHook._preventClearing) {\n      // Should only be used for tests.\n      return;\n    }\n\n    history = [];\n  },\n  getHistory: function () {\n    return history;\n  }\n};\n\nmodule.exports = ReactHostOperationHistoryHook;\n},{}],178:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar DOMProperty = require('./DOMProperty');\nvar EventPluginHub = require('./EventPluginHub');\nvar EventPluginUtils = require('./EventPluginUtils');\nvar ReactComponentEnvironment = require('./ReactComponentEnvironment');\nvar ReactEmptyComponent = require('./ReactEmptyComponent');\nvar ReactBrowserEventEmitter = require('./ReactBrowserEventEmitter');\nvar ReactHostComponent = require('./ReactHostComponent');\nvar ReactUpdates = require('./ReactUpdates');\n\nvar ReactInjection = {\n  Component: ReactComponentEnvironment.injection,\n  DOMProperty: DOMProperty.injection,\n  EmptyComponent: ReactEmptyComponent.injection,\n  EventPluginHub: EventPluginHub.injection,\n  EventPluginUtils: EventPluginUtils.injection,\n  EventEmitter: ReactBrowserEventEmitter.injection,\n  HostComponent: ReactHostComponent.injection,\n  Updates: ReactUpdates.injection\n};\n\nmodule.exports = ReactInjection;\n},{\"./DOMProperty\":130,\"./EventPluginHub\":135,\"./EventPluginUtils\":137,\"./ReactBrowserEventEmitter\":144,\"./ReactComponentEnvironment\":147,\"./ReactEmptyComponent\":171,\"./ReactHostComponent\":176,\"./ReactUpdates\":196}],179:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ReactDOMSelection = require('./ReactDOMSelection');\n\nvar containsNode = require('fbjs/lib/containsNode');\nvar focusNode = require('fbjs/lib/focusNode');\nvar getActiveElement = require('fbjs/lib/getActiveElement');\n\nfunction isInDocument(node) {\n  return containsNode(document.documentElement, node);\n}\n\n/**\n * @ReactInputSelection: React input selection module. Based on Selection.js,\n * but modified to be suitable for react and has a couple of bug fixes (doesn't\n * assume buttons have range selections allowed).\n * Input selection module for React.\n */\nvar ReactInputSelection = {\n\n  hasSelectionCapabilities: function (elem) {\n    var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();\n    return nodeName && (nodeName === 'input' && elem.type === 'text' || nodeName === 'textarea' || elem.contentEditable === 'true');\n  },\n\n  getSelectionInformation: function () {\n    var focusedElem = getActiveElement();\n    return {\n      focusedElem: focusedElem,\n      selectionRange: ReactInputSelection.hasSelectionCapabilities(focusedElem) ? ReactInputSelection.getSelection(focusedElem) : null\n    };\n  },\n\n  /**\n   * @restoreSelection: If any selection information was potentially lost,\n   * restore it. This is useful when performing operations that could remove dom\n   * nodes and place them back in, resulting in focus being lost.\n   */\n  restoreSelection: function (priorSelectionInformation) {\n    var curFocusedElem = getActiveElement();\n    var priorFocusedElem = priorSelectionInformation.focusedElem;\n    var priorSelectionRange = priorSelectionInformation.selectionRange;\n    if (curFocusedElem !== priorFocusedElem && isInDocument(priorFocusedElem)) {\n      if (ReactInputSelection.hasSelectionCapabilities(priorFocusedElem)) {\n        ReactInputSelection.setSelection(priorFocusedElem, priorSelectionRange);\n      }\n      focusNode(priorFocusedElem);\n    }\n  },\n\n  /**\n   * @getSelection: Gets the selection bounds of a focused textarea, input or\n   * contentEditable node.\n   * -@input: Look up selection bounds of this input\n   * -@return {start: selectionStart, end: selectionEnd}\n   */\n  getSelection: function (input) {\n    var selection;\n\n    if ('selectionStart' in input) {\n      // Modern browser with input or textarea.\n      selection = {\n        start: input.selectionStart,\n        end: input.selectionEnd\n      };\n    } else if (document.selection && input.nodeName && input.nodeName.toLowerCase() === 'input') {\n      // IE8 input.\n      var range = document.selection.createRange();\n      // There can only be one selection per document in IE, so it must\n      // be in our element.\n      if (range.parentElement() === input) {\n        selection = {\n          start: -range.moveStart('character', -input.value.length),\n          end: -range.moveEnd('character', -input.value.length)\n        };\n      }\n    } else {\n      // Content editable or old IE textarea.\n      selection = ReactDOMSelection.getOffsets(input);\n    }\n\n    return selection || { start: 0, end: 0 };\n  },\n\n  /**\n   * @setSelection: Sets the selection bounds of a textarea or input and focuses\n   * the input.\n   * -@input     Set selection bounds of this input or textarea\n   * -@offsets   Object of same form that is returned from get*\n   */\n  setSelection: function (input, offsets) {\n    var start = offsets.start;\n    var end = offsets.end;\n    if (end === undefined) {\n      end = start;\n    }\n\n    if ('selectionStart' in input) {\n      input.selectionStart = start;\n      input.selectionEnd = Math.min(end, input.value.length);\n    } else if (document.selection && input.nodeName && input.nodeName.toLowerCase() === 'input') {\n      var range = input.createTextRange();\n      range.collapse(true);\n      range.moveStart('character', start);\n      range.moveEnd('character', end - start);\n      range.select();\n    } else {\n      ReactDOMSelection.setOffsets(input, offsets);\n    }\n  }\n};\n\nmodule.exports = ReactInputSelection;\n},{\"./ReactDOMSelection\":162,\"fbjs/lib/containsNode\":93,\"fbjs/lib/focusNode\":98,\"fbjs/lib/getActiveElement\":99}],180:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\n/**\n * `ReactInstanceMap` maintains a mapping from a public facing stateful\n * instance (key) and the internal representation (value). This allows public\n * methods to accept the user facing instance as an argument and map them back\n * to internal methods.\n */\n\n// TODO: Replace this with ES6: var ReactInstanceMap = new Map();\n\nvar ReactInstanceMap = {\n\n  /**\n   * This API should be called `delete` but we'd have to make sure to always\n   * transform these to strings for IE support. When this transform is fully\n   * supported we can rename it.\n   */\n  remove: function (key) {\n    key._reactInternalInstance = undefined;\n  },\n\n  get: function (key) {\n    return key._reactInternalInstance;\n  },\n\n  has: function (key) {\n    return key._reactInternalInstance !== undefined;\n  },\n\n  set: function (key, value) {\n    key._reactInternalInstance = value;\n  }\n\n};\n\nmodule.exports = ReactInstanceMap;\n},{}],181:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2016-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\n// Trust the developer to only use ReactInstrumentation with a __DEV__ check\n\nvar debugTool = null;\n\nif (process.env.NODE_ENV !== 'production') {\n  var ReactDebugTool = require('./ReactDebugTool');\n  debugTool = ReactDebugTool;\n}\n\nmodule.exports = { debugTool: debugTool };\n}).call(this,require('_process'))\n},{\"./ReactDebugTool\":167,\"_process\":112}],182:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2016-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar warning = require('fbjs/lib/warning');\n\nif (process.env.NODE_ENV !== 'production') {\n  var processingChildContext = false;\n\n  var warnInvalidSetState = function () {\n    process.env.NODE_ENV !== 'production' ? warning(!processingChildContext, 'setState(...): Cannot call setState() inside getChildContext()') : void 0;\n  };\n}\n\nvar ReactInvalidSetStateWarningHook = {\n  onBeginProcessingChildContext: function () {\n    processingChildContext = true;\n  },\n  onEndProcessingChildContext: function () {\n    processingChildContext = false;\n  },\n  onSetState: function () {\n    warnInvalidSetState();\n  }\n};\n\nmodule.exports = ReactInvalidSetStateWarningHook;\n}).call(this,require('_process'))\n},{\"_process\":112,\"fbjs/lib/warning\":111}],183:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar adler32 = require('./adler32');\n\nvar TAG_END = /\\/?>/;\nvar COMMENT_START = /^<\\!\\-\\-/;\n\nvar ReactMarkupChecksum = {\n  CHECKSUM_ATTR_NAME: 'data-react-checksum',\n\n  /**\n   * @param {string} markup Markup string\n   * @return {string} Markup string with checksum attribute attached\n   */\n  addChecksumToMarkup: function (markup) {\n    var checksum = adler32(markup);\n\n    // Add checksum (handle both parent tags, comments and self-closing tags)\n    if (COMMENT_START.test(markup)) {\n      return markup;\n    } else {\n      return markup.replace(TAG_END, ' ' + ReactMarkupChecksum.CHECKSUM_ATTR_NAME + '=\"' + checksum + '\"$&');\n    }\n  },\n\n  /**\n   * @param {string} markup to use\n   * @param {DOMElement} element root React element\n   * @returns {boolean} whether or not the markup is the same\n   */\n  canReuseMarkup: function (markup, element) {\n    var existingChecksum = element.getAttribute(ReactMarkupChecksum.CHECKSUM_ATTR_NAME);\n    existingChecksum = existingChecksum && parseInt(existingChecksum, 10);\n    var markupChecksum = adler32(markup);\n    return markupChecksum === existingChecksum;\n  }\n};\n\nmodule.exports = ReactMarkupChecksum;\n},{\"./adler32\":217}],184:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar DOMLazyTree = require('./DOMLazyTree');\nvar DOMProperty = require('./DOMProperty');\nvar React = require('react/lib/React');\nvar ReactBrowserEventEmitter = require('./ReactBrowserEventEmitter');\nvar ReactCurrentOwner = require('react/lib/ReactCurrentOwner');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactDOMContainerInfo = require('./ReactDOMContainerInfo');\nvar ReactDOMFeatureFlags = require('./ReactDOMFeatureFlags');\nvar ReactFeatureFlags = require('./ReactFeatureFlags');\nvar ReactInstanceMap = require('./ReactInstanceMap');\nvar ReactInstrumentation = require('./ReactInstrumentation');\nvar ReactMarkupChecksum = require('./ReactMarkupChecksum');\nvar ReactReconciler = require('./ReactReconciler');\nvar ReactUpdateQueue = require('./ReactUpdateQueue');\nvar ReactUpdates = require('./ReactUpdates');\n\nvar emptyObject = require('fbjs/lib/emptyObject');\nvar instantiateReactComponent = require('./instantiateReactComponent');\nvar invariant = require('fbjs/lib/invariant');\nvar setInnerHTML = require('./setInnerHTML');\nvar shouldUpdateReactComponent = require('./shouldUpdateReactComponent');\nvar warning = require('fbjs/lib/warning');\n\nvar ATTR_NAME = DOMProperty.ID_ATTRIBUTE_NAME;\nvar ROOT_ATTR_NAME = DOMProperty.ROOT_ATTRIBUTE_NAME;\n\nvar ELEMENT_NODE_TYPE = 1;\nvar DOC_NODE_TYPE = 9;\nvar DOCUMENT_FRAGMENT_NODE_TYPE = 11;\n\nvar instancesByReactRootID = {};\n\n/**\n * Finds the index of the first character\n * that's not common between the two given strings.\n *\n * @return {number} the index of the character where the strings diverge\n */\nfunction firstDifferenceIndex(string1, string2) {\n  var minLen = Math.min(string1.length, string2.length);\n  for (var i = 0; i < minLen; i++) {\n    if (string1.charAt(i) !== string2.charAt(i)) {\n      return i;\n    }\n  }\n  return string1.length === string2.length ? -1 : minLen;\n}\n\n/**\n * @param {DOMElement|DOMDocument} container DOM element that may contain\n * a React component\n * @return {?*} DOM element that may have the reactRoot ID, or null.\n */\nfunction getReactRootElementInContainer(container) {\n  if (!container) {\n    return null;\n  }\n\n  if (container.nodeType === DOC_NODE_TYPE) {\n    return container.documentElement;\n  } else {\n    return container.firstChild;\n  }\n}\n\nfunction internalGetID(node) {\n  // If node is something like a window, document, or text node, none of\n  // which support attributes or a .getAttribute method, gracefully return\n  // the empty string, as if the attribute were missing.\n  return node.getAttribute && node.getAttribute(ATTR_NAME) || '';\n}\n\n/**\n * Mounts this component and inserts it into the DOM.\n *\n * @param {ReactComponent} componentInstance The instance to mount.\n * @param {DOMElement} container DOM element to mount into.\n * @param {ReactReconcileTransaction} transaction\n * @param {boolean} shouldReuseMarkup If true, do not insert markup\n */\nfunction mountComponentIntoNode(wrapperInstance, container, transaction, shouldReuseMarkup, context) {\n  var markerName;\n  if (ReactFeatureFlags.logTopLevelRenders) {\n    var wrappedElement = wrapperInstance._currentElement.props.child;\n    var type = wrappedElement.type;\n    markerName = 'React mount: ' + (typeof type === 'string' ? type : type.displayName || type.name);\n    console.time(markerName);\n  }\n\n  var markup = ReactReconciler.mountComponent(wrapperInstance, transaction, null, ReactDOMContainerInfo(wrapperInstance, container), context, 0 /* parentDebugID */\n  );\n\n  if (markerName) {\n    console.timeEnd(markerName);\n  }\n\n  wrapperInstance._renderedComponent._topLevelWrapper = wrapperInstance;\n  ReactMount._mountImageIntoNode(markup, container, wrapperInstance, shouldReuseMarkup, transaction);\n}\n\n/**\n * Batched mount.\n *\n * @param {ReactComponent} componentInstance The instance to mount.\n * @param {DOMElement} container DOM element to mount into.\n * @param {boolean} shouldReuseMarkup If true, do not insert markup\n */\nfunction batchedMountComponentIntoNode(componentInstance, container, shouldReuseMarkup, context) {\n  var transaction = ReactUpdates.ReactReconcileTransaction.getPooled(\n  /* useCreateElement */\n  !shouldReuseMarkup && ReactDOMFeatureFlags.useCreateElement);\n  transaction.perform(mountComponentIntoNode, null, componentInstance, container, transaction, shouldReuseMarkup, context);\n  ReactUpdates.ReactReconcileTransaction.release(transaction);\n}\n\n/**\n * Unmounts a component and removes it from the DOM.\n *\n * @param {ReactComponent} instance React component instance.\n * @param {DOMElement} container DOM element to unmount from.\n * @final\n * @internal\n * @see {ReactMount.unmountComponentAtNode}\n */\nfunction unmountComponentFromNode(instance, container, safely) {\n  if (process.env.NODE_ENV !== 'production') {\n    ReactInstrumentation.debugTool.onBeginFlush();\n  }\n  ReactReconciler.unmountComponent(instance, safely);\n  if (process.env.NODE_ENV !== 'production') {\n    ReactInstrumentation.debugTool.onEndFlush();\n  }\n\n  if (container.nodeType === DOC_NODE_TYPE) {\n    container = container.documentElement;\n  }\n\n  // http://jsperf.com/emptying-a-node\n  while (container.lastChild) {\n    container.removeChild(container.lastChild);\n  }\n}\n\n/**\n * True if the supplied DOM node has a direct React-rendered child that is\n * not a React root element. Useful for warning in `render`,\n * `unmountComponentAtNode`, etc.\n *\n * @param {?DOMElement} node The candidate DOM node.\n * @return {boolean} True if the DOM element contains a direct child that was\n * rendered by React but is not a root element.\n * @internal\n */\nfunction hasNonRootReactChild(container) {\n  var rootEl = getReactRootElementInContainer(container);\n  if (rootEl) {\n    var inst = ReactDOMComponentTree.getInstanceFromNode(rootEl);\n    return !!(inst && inst._hostParent);\n  }\n}\n\n/**\n * True if the supplied DOM node is a React DOM element and\n * it has been rendered by another copy of React.\n *\n * @param {?DOMElement} node The candidate DOM node.\n * @return {boolean} True if the DOM has been rendered by another copy of React\n * @internal\n */\nfunction nodeIsRenderedByOtherInstance(container) {\n  var rootEl = getReactRootElementInContainer(container);\n  return !!(rootEl && isReactNode(rootEl) && !ReactDOMComponentTree.getInstanceFromNode(rootEl));\n}\n\n/**\n * True if the supplied DOM node is a valid node element.\n *\n * @param {?DOMElement} node The candidate DOM node.\n * @return {boolean} True if the DOM is a valid DOM node.\n * @internal\n */\nfunction isValidContainer(node) {\n  return !!(node && (node.nodeType === ELEMENT_NODE_TYPE || node.nodeType === DOC_NODE_TYPE || node.nodeType === DOCUMENT_FRAGMENT_NODE_TYPE));\n}\n\n/**\n * True if the supplied DOM node is a valid React node element.\n *\n * @param {?DOMElement} node The candidate DOM node.\n * @return {boolean} True if the DOM is a valid React DOM node.\n * @internal\n */\nfunction isReactNode(node) {\n  return isValidContainer(node) && (node.hasAttribute(ROOT_ATTR_NAME) || node.hasAttribute(ATTR_NAME));\n}\n\nfunction getHostRootInstanceInContainer(container) {\n  var rootEl = getReactRootElementInContainer(container);\n  var prevHostInstance = rootEl && ReactDOMComponentTree.getInstanceFromNode(rootEl);\n  return prevHostInstance && !prevHostInstance._hostParent ? prevHostInstance : null;\n}\n\nfunction getTopLevelWrapperInContainer(container) {\n  var root = getHostRootInstanceInContainer(container);\n  return root ? root._hostContainerInfo._topLevelWrapper : null;\n}\n\n/**\n * Temporary (?) hack so that we can store all top-level pending updates on\n * composites instead of having to worry about different types of components\n * here.\n */\nvar topLevelRootCounter = 1;\nvar TopLevelWrapper = function () {\n  this.rootID = topLevelRootCounter++;\n};\nTopLevelWrapper.prototype.isReactComponent = {};\nif (process.env.NODE_ENV !== 'production') {\n  TopLevelWrapper.displayName = 'TopLevelWrapper';\n}\nTopLevelWrapper.prototype.render = function () {\n  return this.props.child;\n};\nTopLevelWrapper.isReactTopLevelWrapper = true;\n\n/**\n * Mounting is the process of initializing a React component by creating its\n * representative DOM elements and inserting them into a supplied `container`.\n * Any prior content inside `container` is destroyed in the process.\n *\n *   ReactMount.render(\n *     component,\n *     document.getElementById('container')\n *   );\n *\n *   <div id=\"container\">                   <-- Supplied `container`.\n *     <div data-reactid=\".3\">              <-- Rendered reactRoot of React\n *       // ...                                 component.\n *     </div>\n *   </div>\n *\n * Inside of `container`, the first element rendered is the \"reactRoot\".\n */\nvar ReactMount = {\n\n  TopLevelWrapper: TopLevelWrapper,\n\n  /**\n   * Used by devtools. The keys are not important.\n   */\n  _instancesByReactRootID: instancesByReactRootID,\n\n  /**\n   * This is a hook provided to support rendering React components while\n   * ensuring that the apparent scroll position of its `container` does not\n   * change.\n   *\n   * @param {DOMElement} container The `container` being rendered into.\n   * @param {function} renderCallback This must be called once to do the render.\n   */\n  scrollMonitor: function (container, renderCallback) {\n    renderCallback();\n  },\n\n  /**\n   * Take a component that's already mounted into the DOM and replace its props\n   * @param {ReactComponent} prevComponent component instance already in the DOM\n   * @param {ReactElement} nextElement component instance to render\n   * @param {DOMElement} container container to render into\n   * @param {?function} callback function triggered on completion\n   */\n  _updateRootComponent: function (prevComponent, nextElement, nextContext, container, callback) {\n    ReactMount.scrollMonitor(container, function () {\n      ReactUpdateQueue.enqueueElementInternal(prevComponent, nextElement, nextContext);\n      if (callback) {\n        ReactUpdateQueue.enqueueCallbackInternal(prevComponent, callback);\n      }\n    });\n\n    return prevComponent;\n  },\n\n  /**\n   * Render a new component into the DOM. Hooked by hooks!\n   *\n   * @param {ReactElement} nextElement element to render\n   * @param {DOMElement} container container to render into\n   * @param {boolean} shouldReuseMarkup if we should skip the markup insertion\n   * @return {ReactComponent} nextComponent\n   */\n  _renderNewRootComponent: function (nextElement, container, shouldReuseMarkup, context) {\n    // Various parts of our code (such as ReactCompositeComponent's\n    // _renderValidatedComponent) assume that calls to render aren't nested;\n    // verify that that's the case.\n    process.env.NODE_ENV !== 'production' ? warning(ReactCurrentOwner.current == null, '_renderNewRootComponent(): Render methods should be a pure function ' + 'of props and state; triggering nested component updates from ' + 'render is not allowed. If necessary, trigger nested updates in ' + 'componentDidUpdate. Check the render method of %s.', ReactCurrentOwner.current && ReactCurrentOwner.current.getName() || 'ReactCompositeComponent') : void 0;\n\n    !isValidContainer(container) ? process.env.NODE_ENV !== 'production' ? invariant(false, '_registerComponent(...): Target container is not a DOM element.') : _prodInvariant('37') : void 0;\n\n    ReactBrowserEventEmitter.ensureScrollValueMonitoring();\n    var componentInstance = instantiateReactComponent(nextElement, false);\n\n    // The initial render is synchronous but any updates that happen during\n    // rendering, in componentWillMount or componentDidMount, will be batched\n    // according to the current batching strategy.\n\n    ReactUpdates.batchedUpdates(batchedMountComponentIntoNode, componentInstance, container, shouldReuseMarkup, context);\n\n    var wrapperID = componentInstance._instance.rootID;\n    instancesByReactRootID[wrapperID] = componentInstance;\n\n    return componentInstance;\n  },\n\n  /**\n   * Renders a React component into the DOM in the supplied `container`.\n   *\n   * If the React component was previously rendered into `container`, this will\n   * perform an update on it and only mutate the DOM as necessary to reflect the\n   * latest React component.\n   *\n   * @param {ReactComponent} parentComponent The conceptual parent of this render tree.\n   * @param {ReactElement} nextElement Component element to render.\n   * @param {DOMElement} container DOM element to render into.\n   * @param {?function} callback function triggered on completion\n   * @return {ReactComponent} Component instance rendered in `container`.\n   */\n  renderSubtreeIntoContainer: function (parentComponent, nextElement, container, callback) {\n    !(parentComponent != null && ReactInstanceMap.has(parentComponent)) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'parentComponent must be a valid React Component') : _prodInvariant('38') : void 0;\n    return ReactMount._renderSubtreeIntoContainer(parentComponent, nextElement, container, callback);\n  },\n\n  _renderSubtreeIntoContainer: function (parentComponent, nextElement, container, callback) {\n    ReactUpdateQueue.validateCallback(callback, 'ReactDOM.render');\n    !React.isValidElement(nextElement) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactDOM.render(): Invalid component element.%s', typeof nextElement === 'string' ? ' Instead of passing a string like \\'div\\', pass ' + 'React.createElement(\\'div\\') or <div />.' : typeof nextElement === 'function' ? ' Instead of passing a class like Foo, pass ' + 'React.createElement(Foo) or <Foo />.' :\n    // Check if it quacks like an element\n    nextElement != null && nextElement.props !== undefined ? ' This may be caused by unintentionally loading two independent ' + 'copies of React.' : '') : _prodInvariant('39', typeof nextElement === 'string' ? ' Instead of passing a string like \\'div\\', pass ' + 'React.createElement(\\'div\\') or <div />.' : typeof nextElement === 'function' ? ' Instead of passing a class like Foo, pass ' + 'React.createElement(Foo) or <Foo />.' : nextElement != null && nextElement.props !== undefined ? ' This may be caused by unintentionally loading two independent ' + 'copies of React.' : '') : void 0;\n\n    process.env.NODE_ENV !== 'production' ? warning(!container || !container.tagName || container.tagName.toUpperCase() !== 'BODY', 'render(): Rendering components directly into document.body is ' + 'discouraged, since its children are often manipulated by third-party ' + 'scripts and browser extensions. This may lead to subtle ' + 'reconciliation issues. Try rendering into a container element created ' + 'for your app.') : void 0;\n\n    var nextWrappedElement = React.createElement(TopLevelWrapper, { child: nextElement });\n\n    var nextContext;\n    if (parentComponent) {\n      var parentInst = ReactInstanceMap.get(parentComponent);\n      nextContext = parentInst._processChildContext(parentInst._context);\n    } else {\n      nextContext = emptyObject;\n    }\n\n    var prevComponent = getTopLevelWrapperInContainer(container);\n\n    if (prevComponent) {\n      var prevWrappedElement = prevComponent._currentElement;\n      var prevElement = prevWrappedElement.props.child;\n      if (shouldUpdateReactComponent(prevElement, nextElement)) {\n        var publicInst = prevComponent._renderedComponent.getPublicInstance();\n        var updatedCallback = callback && function () {\n          callback.call(publicInst);\n        };\n        ReactMount._updateRootComponent(prevComponent, nextWrappedElement, nextContext, container, updatedCallback);\n        return publicInst;\n      } else {\n        ReactMount.unmountComponentAtNode(container);\n      }\n    }\n\n    var reactRootElement = getReactRootElementInContainer(container);\n    var containerHasReactMarkup = reactRootElement && !!internalGetID(reactRootElement);\n    var containerHasNonRootReactChild = hasNonRootReactChild(container);\n\n    if (process.env.NODE_ENV !== 'production') {\n      process.env.NODE_ENV !== 'production' ? warning(!containerHasNonRootReactChild, 'render(...): Replacing React-rendered children with a new root ' + 'component. If you intended to update the children of this node, ' + 'you should instead have the existing children update their state ' + 'and render the new components instead of calling ReactDOM.render.') : void 0;\n\n      if (!containerHasReactMarkup || reactRootElement.nextSibling) {\n        var rootElementSibling = reactRootElement;\n        while (rootElementSibling) {\n          if (internalGetID(rootElementSibling)) {\n            process.env.NODE_ENV !== 'production' ? warning(false, 'render(): Target node has markup rendered by React, but there ' + 'are unrelated nodes as well. This is most commonly caused by ' + 'white-space inserted around server-rendered markup.') : void 0;\n            break;\n          }\n          rootElementSibling = rootElementSibling.nextSibling;\n        }\n      }\n    }\n\n    var shouldReuseMarkup = containerHasReactMarkup && !prevComponent && !containerHasNonRootReactChild;\n    var component = ReactMount._renderNewRootComponent(nextWrappedElement, container, shouldReuseMarkup, nextContext)._renderedComponent.getPublicInstance();\n    if (callback) {\n      callback.call(component);\n    }\n    return component;\n  },\n\n  /**\n   * Renders a React component into the DOM in the supplied `container`.\n   * See https://facebook.github.io/react/docs/top-level-api.html#reactdom.render\n   *\n   * If the React component was previously rendered into `container`, this will\n   * perform an update on it and only mutate the DOM as necessary to reflect the\n   * latest React component.\n   *\n   * @param {ReactElement} nextElement Component element to render.\n   * @param {DOMElement} container DOM element to render into.\n   * @param {?function} callback function triggered on completion\n   * @return {ReactComponent} Component instance rendered in `container`.\n   */\n  render: function (nextElement, container, callback) {\n    return ReactMount._renderSubtreeIntoContainer(null, nextElement, container, callback);\n  },\n\n  /**\n   * Unmounts and destroys the React component rendered in the `container`.\n   * See https://facebook.github.io/react/docs/top-level-api.html#reactdom.unmountcomponentatnode\n   *\n   * @param {DOMElement} container DOM element containing a React component.\n   * @return {boolean} True if a component was found in and unmounted from\n   *                   `container`\n   */\n  unmountComponentAtNode: function (container) {\n    // Various parts of our code (such as ReactCompositeComponent's\n    // _renderValidatedComponent) assume that calls to render aren't nested;\n    // verify that that's the case. (Strictly speaking, unmounting won't cause a\n    // render but we still don't expect to be in a render call here.)\n    process.env.NODE_ENV !== 'production' ? warning(ReactCurrentOwner.current == null, 'unmountComponentAtNode(): Render methods should be a pure function ' + 'of props and state; triggering nested component updates from render ' + 'is not allowed. If necessary, trigger nested updates in ' + 'componentDidUpdate. Check the render method of %s.', ReactCurrentOwner.current && ReactCurrentOwner.current.getName() || 'ReactCompositeComponent') : void 0;\n\n    !isValidContainer(container) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'unmountComponentAtNode(...): Target container is not a DOM element.') : _prodInvariant('40') : void 0;\n\n    if (process.env.NODE_ENV !== 'production') {\n      process.env.NODE_ENV !== 'production' ? warning(!nodeIsRenderedByOtherInstance(container), 'unmountComponentAtNode(): The node you\\'re attempting to unmount ' + 'was rendered by another copy of React.') : void 0;\n    }\n\n    var prevComponent = getTopLevelWrapperInContainer(container);\n    if (!prevComponent) {\n      // Check if the node being unmounted was rendered by React, but isn't a\n      // root node.\n      var containerHasNonRootReactChild = hasNonRootReactChild(container);\n\n      // Check if the container itself is a React root node.\n      var isContainerReactRoot = container.nodeType === 1 && container.hasAttribute(ROOT_ATTR_NAME);\n\n      if (process.env.NODE_ENV !== 'production') {\n        process.env.NODE_ENV !== 'production' ? warning(!containerHasNonRootReactChild, 'unmountComponentAtNode(): The node you\\'re attempting to unmount ' + 'was rendered by React and is not a top-level container. %s', isContainerReactRoot ? 'You may have accidentally passed in a React root node instead ' + 'of its container.' : 'Instead, have the parent component update its state and ' + 'rerender in order to remove this component.') : void 0;\n      }\n\n      return false;\n    }\n    delete instancesByReactRootID[prevComponent._instance.rootID];\n    ReactUpdates.batchedUpdates(unmountComponentFromNode, prevComponent, container, false);\n    return true;\n  },\n\n  _mountImageIntoNode: function (markup, container, instance, shouldReuseMarkup, transaction) {\n    !isValidContainer(container) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'mountComponentIntoNode(...): Target container is not valid.') : _prodInvariant('41') : void 0;\n\n    if (shouldReuseMarkup) {\n      var rootElement = getReactRootElementInContainer(container);\n      if (ReactMarkupChecksum.canReuseMarkup(markup, rootElement)) {\n        ReactDOMComponentTree.precacheNode(instance, rootElement);\n        return;\n      } else {\n        var checksum = rootElement.getAttribute(ReactMarkupChecksum.CHECKSUM_ATTR_NAME);\n        rootElement.removeAttribute(ReactMarkupChecksum.CHECKSUM_ATTR_NAME);\n\n        var rootMarkup = rootElement.outerHTML;\n        rootElement.setAttribute(ReactMarkupChecksum.CHECKSUM_ATTR_NAME, checksum);\n\n        var normalizedMarkup = markup;\n        if (process.env.NODE_ENV !== 'production') {\n          // because rootMarkup is retrieved from the DOM, various normalizations\n          // will have occurred which will not be present in `markup`. Here,\n          // insert markup into a <div> or <iframe> depending on the container\n          // type to perform the same normalizations before comparing.\n          var normalizer;\n          if (container.nodeType === ELEMENT_NODE_TYPE) {\n            normalizer = document.createElement('div');\n            normalizer.innerHTML = markup;\n            normalizedMarkup = normalizer.innerHTML;\n          } else {\n            normalizer = document.createElement('iframe');\n            document.body.appendChild(normalizer);\n            normalizer.contentDocument.write(markup);\n            normalizedMarkup = normalizer.contentDocument.documentElement.outerHTML;\n            document.body.removeChild(normalizer);\n          }\n        }\n\n        var diffIndex = firstDifferenceIndex(normalizedMarkup, rootMarkup);\n        var difference = ' (client) ' + normalizedMarkup.substring(diffIndex - 20, diffIndex + 20) + '\\n (server) ' + rootMarkup.substring(diffIndex - 20, diffIndex + 20);\n\n        !(container.nodeType !== DOC_NODE_TYPE) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'You\\'re trying to render a component to the document using server rendering but the checksum was invalid. This usually means you rendered a different component type or props on the client from the one on the server, or your render() methods are impure. React cannot handle this case due to cross-browser quirks by rendering at the document root. You should look for environment dependent code in your components and ensure the props are the same client and server side:\\n%s', difference) : _prodInvariant('42', difference) : void 0;\n\n        if (process.env.NODE_ENV !== 'production') {\n          process.env.NODE_ENV !== 'production' ? warning(false, 'React attempted to reuse markup in a container but the ' + 'checksum was invalid. This generally means that you are ' + 'using server rendering and the markup generated on the ' + 'server was not what the client was expecting. React injected ' + 'new markup to compensate which works but you have lost many ' + 'of the benefits of server rendering. Instead, figure out ' + 'why the markup being generated is different on the client ' + 'or server:\\n%s', difference) : void 0;\n        }\n      }\n    }\n\n    !(container.nodeType !== DOC_NODE_TYPE) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'You\\'re trying to render a component to the document but you didn\\'t use server rendering. We can\\'t do this without using server rendering due to cross-browser quirks. See ReactDOMServer.renderToString() for server rendering.') : _prodInvariant('43') : void 0;\n\n    if (transaction.useCreateElement) {\n      while (container.lastChild) {\n        container.removeChild(container.lastChild);\n      }\n      DOMLazyTree.insertTreeBefore(container, markup, null);\n    } else {\n      setInnerHTML(container, markup);\n      ReactDOMComponentTree.precacheNode(instance, container.firstChild);\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      var hostNode = ReactDOMComponentTree.getInstanceFromNode(container.firstChild);\n      if (hostNode._debugID !== 0) {\n        ReactInstrumentation.debugTool.onHostOperation({\n          instanceID: hostNode._debugID,\n          type: 'mount',\n          payload: markup.toString()\n        });\n      }\n    }\n  }\n};\n\nmodule.exports = ReactMount;\n}).call(this,require('_process'))\n},{\"./DOMLazyTree\":128,\"./DOMProperty\":130,\"./ReactBrowserEventEmitter\":144,\"./ReactDOMComponentTree\":152,\"./ReactDOMContainerInfo\":153,\"./ReactDOMFeatureFlags\":155,\"./ReactFeatureFlags\":175,\"./ReactInstanceMap\":180,\"./ReactInstrumentation\":181,\"./ReactMarkupChecksum\":183,\"./ReactReconciler\":191,\"./ReactUpdateQueue\":195,\"./ReactUpdates\":196,\"./instantiateReactComponent\":234,\"./reactProdInvariant\":238,\"./setInnerHTML\":240,\"./shouldUpdateReactComponent\":242,\"_process\":112,\"fbjs/lib/emptyObject\":97,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111,\"react/lib/React\":251,\"react/lib/ReactCurrentOwner\":256}],185:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar ReactComponentEnvironment = require('./ReactComponentEnvironment');\nvar ReactInstanceMap = require('./ReactInstanceMap');\nvar ReactInstrumentation = require('./ReactInstrumentation');\n\nvar ReactCurrentOwner = require('react/lib/ReactCurrentOwner');\nvar ReactReconciler = require('./ReactReconciler');\nvar ReactChildReconciler = require('./ReactChildReconciler');\n\nvar emptyFunction = require('fbjs/lib/emptyFunction');\nvar flattenChildren = require('./flattenChildren');\nvar invariant = require('fbjs/lib/invariant');\n\n/**\n * Make an update for markup to be rendered and inserted at a supplied index.\n *\n * @param {string} markup Markup that renders into an element.\n * @param {number} toIndex Destination index.\n * @private\n */\nfunction makeInsertMarkup(markup, afterNode, toIndex) {\n  // NOTE: Null values reduce hidden classes.\n  return {\n    type: 'INSERT_MARKUP',\n    content: markup,\n    fromIndex: null,\n    fromNode: null,\n    toIndex: toIndex,\n    afterNode: afterNode\n  };\n}\n\n/**\n * Make an update for moving an existing element to another index.\n *\n * @param {number} fromIndex Source index of the existing element.\n * @param {number} toIndex Destination index of the element.\n * @private\n */\nfunction makeMove(child, afterNode, toIndex) {\n  // NOTE: Null values reduce hidden classes.\n  return {\n    type: 'MOVE_EXISTING',\n    content: null,\n    fromIndex: child._mountIndex,\n    fromNode: ReactReconciler.getHostNode(child),\n    toIndex: toIndex,\n    afterNode: afterNode\n  };\n}\n\n/**\n * Make an update for removing an element at an index.\n *\n * @param {number} fromIndex Index of the element to remove.\n * @private\n */\nfunction makeRemove(child, node) {\n  // NOTE: Null values reduce hidden classes.\n  return {\n    type: 'REMOVE_NODE',\n    content: null,\n    fromIndex: child._mountIndex,\n    fromNode: node,\n    toIndex: null,\n    afterNode: null\n  };\n}\n\n/**\n * Make an update for setting the markup of a node.\n *\n * @param {string} markup Markup that renders into an element.\n * @private\n */\nfunction makeSetMarkup(markup) {\n  // NOTE: Null values reduce hidden classes.\n  return {\n    type: 'SET_MARKUP',\n    content: markup,\n    fromIndex: null,\n    fromNode: null,\n    toIndex: null,\n    afterNode: null\n  };\n}\n\n/**\n * Make an update for setting the text content.\n *\n * @param {string} textContent Text content to set.\n * @private\n */\nfunction makeTextContent(textContent) {\n  // NOTE: Null values reduce hidden classes.\n  return {\n    type: 'TEXT_CONTENT',\n    content: textContent,\n    fromIndex: null,\n    fromNode: null,\n    toIndex: null,\n    afterNode: null\n  };\n}\n\n/**\n * Push an update, if any, onto the queue. Creates a new queue if none is\n * passed and always returns the queue. Mutative.\n */\nfunction enqueue(queue, update) {\n  if (update) {\n    queue = queue || [];\n    queue.push(update);\n  }\n  return queue;\n}\n\n/**\n * Processes any enqueued updates.\n *\n * @private\n */\nfunction processQueue(inst, updateQueue) {\n  ReactComponentEnvironment.processChildrenUpdates(inst, updateQueue);\n}\n\nvar setChildrenForInstrumentation = emptyFunction;\nif (process.env.NODE_ENV !== 'production') {\n  var getDebugID = function (inst) {\n    if (!inst._debugID) {\n      // Check for ART-like instances. TODO: This is silly/gross.\n      var internal;\n      if (internal = ReactInstanceMap.get(inst)) {\n        inst = internal;\n      }\n    }\n    return inst._debugID;\n  };\n  setChildrenForInstrumentation = function (children) {\n    var debugID = getDebugID(this);\n    // TODO: React Native empty components are also multichild.\n    // This means they still get into this method but don't have _debugID.\n    if (debugID !== 0) {\n      ReactInstrumentation.debugTool.onSetChildren(debugID, children ? Object.keys(children).map(function (key) {\n        return children[key]._debugID;\n      }) : []);\n    }\n  };\n}\n\n/**\n * ReactMultiChild are capable of reconciling multiple children.\n *\n * @class ReactMultiChild\n * @internal\n */\nvar ReactMultiChild = {\n\n  /**\n   * Provides common functionality for components that must reconcile multiple\n   * children. This is used by `ReactDOMComponent` to mount, update, and\n   * unmount child components.\n   *\n   * @lends {ReactMultiChild.prototype}\n   */\n  Mixin: {\n\n    _reconcilerInstantiateChildren: function (nestedChildren, transaction, context) {\n      if (process.env.NODE_ENV !== 'production') {\n        var selfDebugID = getDebugID(this);\n        if (this._currentElement) {\n          try {\n            ReactCurrentOwner.current = this._currentElement._owner;\n            return ReactChildReconciler.instantiateChildren(nestedChildren, transaction, context, selfDebugID);\n          } finally {\n            ReactCurrentOwner.current = null;\n          }\n        }\n      }\n      return ReactChildReconciler.instantiateChildren(nestedChildren, transaction, context);\n    },\n\n    _reconcilerUpdateChildren: function (prevChildren, nextNestedChildrenElements, mountImages, removedNodes, transaction, context) {\n      var nextChildren;\n      var selfDebugID = 0;\n      if (process.env.NODE_ENV !== 'production') {\n        selfDebugID = getDebugID(this);\n        if (this._currentElement) {\n          try {\n            ReactCurrentOwner.current = this._currentElement._owner;\n            nextChildren = flattenChildren(nextNestedChildrenElements, selfDebugID);\n          } finally {\n            ReactCurrentOwner.current = null;\n          }\n          ReactChildReconciler.updateChildren(prevChildren, nextChildren, mountImages, removedNodes, transaction, this, this._hostContainerInfo, context, selfDebugID);\n          return nextChildren;\n        }\n      }\n      nextChildren = flattenChildren(nextNestedChildrenElements, selfDebugID);\n      ReactChildReconciler.updateChildren(prevChildren, nextChildren, mountImages, removedNodes, transaction, this, this._hostContainerInfo, context, selfDebugID);\n      return nextChildren;\n    },\n\n    /**\n     * Generates a \"mount image\" for each of the supplied children. In the case\n     * of `ReactDOMComponent`, a mount image is a string of markup.\n     *\n     * @param {?object} nestedChildren Nested child maps.\n     * @return {array} An array of mounted representations.\n     * @internal\n     */\n    mountChildren: function (nestedChildren, transaction, context) {\n      var children = this._reconcilerInstantiateChildren(nestedChildren, transaction, context);\n      this._renderedChildren = children;\n\n      var mountImages = [];\n      var index = 0;\n      for (var name in children) {\n        if (children.hasOwnProperty(name)) {\n          var child = children[name];\n          var selfDebugID = 0;\n          if (process.env.NODE_ENV !== 'production') {\n            selfDebugID = getDebugID(this);\n          }\n          var mountImage = ReactReconciler.mountComponent(child, transaction, this, this._hostContainerInfo, context, selfDebugID);\n          child._mountIndex = index++;\n          mountImages.push(mountImage);\n        }\n      }\n\n      if (process.env.NODE_ENV !== 'production') {\n        setChildrenForInstrumentation.call(this, children);\n      }\n\n      return mountImages;\n    },\n\n    /**\n     * Replaces any rendered children with a text content string.\n     *\n     * @param {string} nextContent String of content.\n     * @internal\n     */\n    updateTextContent: function (nextContent) {\n      var prevChildren = this._renderedChildren;\n      // Remove any rendered children.\n      ReactChildReconciler.unmountChildren(prevChildren, false);\n      for (var name in prevChildren) {\n        if (prevChildren.hasOwnProperty(name)) {\n          !false ? process.env.NODE_ENV !== 'production' ? invariant(false, 'updateTextContent called on non-empty component.') : _prodInvariant('118') : void 0;\n        }\n      }\n      // Set new text content.\n      var updates = [makeTextContent(nextContent)];\n      processQueue(this, updates);\n    },\n\n    /**\n     * Replaces any rendered children with a markup string.\n     *\n     * @param {string} nextMarkup String of markup.\n     * @internal\n     */\n    updateMarkup: function (nextMarkup) {\n      var prevChildren = this._renderedChildren;\n      // Remove any rendered children.\n      ReactChildReconciler.unmountChildren(prevChildren, false);\n      for (var name in prevChildren) {\n        if (prevChildren.hasOwnProperty(name)) {\n          !false ? process.env.NODE_ENV !== 'production' ? invariant(false, 'updateTextContent called on non-empty component.') : _prodInvariant('118') : void 0;\n        }\n      }\n      var updates = [makeSetMarkup(nextMarkup)];\n      processQueue(this, updates);\n    },\n\n    /**\n     * Updates the rendered children with new children.\n     *\n     * @param {?object} nextNestedChildrenElements Nested child element maps.\n     * @param {ReactReconcileTransaction} transaction\n     * @internal\n     */\n    updateChildren: function (nextNestedChildrenElements, transaction, context) {\n      // Hook used by React ART\n      this._updateChildren(nextNestedChildrenElements, transaction, context);\n    },\n\n    /**\n     * @param {?object} nextNestedChildrenElements Nested child element maps.\n     * @param {ReactReconcileTransaction} transaction\n     * @final\n     * @protected\n     */\n    _updateChildren: function (nextNestedChildrenElements, transaction, context) {\n      var prevChildren = this._renderedChildren;\n      var removedNodes = {};\n      var mountImages = [];\n      var nextChildren = this._reconcilerUpdateChildren(prevChildren, nextNestedChildrenElements, mountImages, removedNodes, transaction, context);\n      if (!nextChildren && !prevChildren) {\n        return;\n      }\n      var updates = null;\n      var name;\n      // `nextIndex` will increment for each child in `nextChildren`, but\n      // `lastIndex` will be the last index visited in `prevChildren`.\n      var nextIndex = 0;\n      var lastIndex = 0;\n      // `nextMountIndex` will increment for each newly mounted child.\n      var nextMountIndex = 0;\n      var lastPlacedNode = null;\n      for (name in nextChildren) {\n        if (!nextChildren.hasOwnProperty(name)) {\n          continue;\n        }\n        var prevChild = prevChildren && prevChildren[name];\n        var nextChild = nextChildren[name];\n        if (prevChild === nextChild) {\n          updates = enqueue(updates, this.moveChild(prevChild, lastPlacedNode, nextIndex, lastIndex));\n          lastIndex = Math.max(prevChild._mountIndex, lastIndex);\n          prevChild._mountIndex = nextIndex;\n        } else {\n          if (prevChild) {\n            // Update `lastIndex` before `_mountIndex` gets unset by unmounting.\n            lastIndex = Math.max(prevChild._mountIndex, lastIndex);\n            // The `removedNodes` loop below will actually remove the child.\n          }\n          // The child must be instantiated before it's mounted.\n          updates = enqueue(updates, this._mountChildAtIndex(nextChild, mountImages[nextMountIndex], lastPlacedNode, nextIndex, transaction, context));\n          nextMountIndex++;\n        }\n        nextIndex++;\n        lastPlacedNode = ReactReconciler.getHostNode(nextChild);\n      }\n      // Remove children that are no longer present.\n      for (name in removedNodes) {\n        if (removedNodes.hasOwnProperty(name)) {\n          updates = enqueue(updates, this._unmountChild(prevChildren[name], removedNodes[name]));\n        }\n      }\n      if (updates) {\n        processQueue(this, updates);\n      }\n      this._renderedChildren = nextChildren;\n\n      if (process.env.NODE_ENV !== 'production') {\n        setChildrenForInstrumentation.call(this, nextChildren);\n      }\n    },\n\n    /**\n     * Unmounts all rendered children. This should be used to clean up children\n     * when this component is unmounted. It does not actually perform any\n     * backend operations.\n     *\n     * @internal\n     */\n    unmountChildren: function (safely) {\n      var renderedChildren = this._renderedChildren;\n      ReactChildReconciler.unmountChildren(renderedChildren, safely);\n      this._renderedChildren = null;\n    },\n\n    /**\n     * Moves a child component to the supplied index.\n     *\n     * @param {ReactComponent} child Component to move.\n     * @param {number} toIndex Destination index of the element.\n     * @param {number} lastIndex Last index visited of the siblings of `child`.\n     * @protected\n     */\n    moveChild: function (child, afterNode, toIndex, lastIndex) {\n      // If the index of `child` is less than `lastIndex`, then it needs to\n      // be moved. Otherwise, we do not need to move it because a child will be\n      // inserted or moved before `child`.\n      if (child._mountIndex < lastIndex) {\n        return makeMove(child, afterNode, toIndex);\n      }\n    },\n\n    /**\n     * Creates a child component.\n     *\n     * @param {ReactComponent} child Component to create.\n     * @param {string} mountImage Markup to insert.\n     * @protected\n     */\n    createChild: function (child, afterNode, mountImage) {\n      return makeInsertMarkup(mountImage, afterNode, child._mountIndex);\n    },\n\n    /**\n     * Removes a child component.\n     *\n     * @param {ReactComponent} child Child to remove.\n     * @protected\n     */\n    removeChild: function (child, node) {\n      return makeRemove(child, node);\n    },\n\n    /**\n     * Mounts a child with the supplied name.\n     *\n     * NOTE: This is part of `updateChildren` and is here for readability.\n     *\n     * @param {ReactComponent} child Component to mount.\n     * @param {string} name Name of the child.\n     * @param {number} index Index at which to insert the child.\n     * @param {ReactReconcileTransaction} transaction\n     * @private\n     */\n    _mountChildAtIndex: function (child, mountImage, afterNode, index, transaction, context) {\n      child._mountIndex = index;\n      return this.createChild(child, afterNode, mountImage);\n    },\n\n    /**\n     * Unmounts a rendered child.\n     *\n     * NOTE: This is part of `updateChildren` and is here for readability.\n     *\n     * @param {ReactComponent} child Component to unmount.\n     * @private\n     */\n    _unmountChild: function (child, node) {\n      var update = this.removeChild(child, node);\n      child._mountIndex = null;\n      return update;\n    }\n\n  }\n\n};\n\nmodule.exports = ReactMultiChild;\n}).call(this,require('_process'))\n},{\"./ReactChildReconciler\":145,\"./ReactComponentEnvironment\":147,\"./ReactInstanceMap\":180,\"./ReactInstrumentation\":181,\"./ReactReconciler\":191,\"./flattenChildren\":223,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/emptyFunction\":96,\"fbjs/lib/invariant\":104,\"react/lib/ReactCurrentOwner\":256}],186:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar React = require('react/lib/React');\n\nvar invariant = require('fbjs/lib/invariant');\n\nvar ReactNodeTypes = {\n  HOST: 0,\n  COMPOSITE: 1,\n  EMPTY: 2,\n\n  getType: function (node) {\n    if (node === null || node === false) {\n      return ReactNodeTypes.EMPTY;\n    } else if (React.isValidElement(node)) {\n      if (typeof node.type === 'function') {\n        return ReactNodeTypes.COMPOSITE;\n      } else {\n        return ReactNodeTypes.HOST;\n      }\n    }\n    !false ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Unexpected node: %s', node) : _prodInvariant('26', node) : void 0;\n  }\n};\n\nmodule.exports = ReactNodeTypes;\n}).call(this,require('_process'))\n},{\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104,\"react/lib/React\":251}],187:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar invariant = require('fbjs/lib/invariant');\n\n/**\n * @param {?object} object\n * @return {boolean} True if `object` is a valid owner.\n * @final\n */\nfunction isValidOwner(object) {\n  return !!(object && typeof object.attachRef === 'function' && typeof object.detachRef === 'function');\n}\n\n/**\n * ReactOwners are capable of storing references to owned components.\n *\n * All components are capable of //being// referenced by owner components, but\n * only ReactOwner components are capable of //referencing// owned components.\n * The named reference is known as a \"ref\".\n *\n * Refs are available when mounted and updated during reconciliation.\n *\n *   var MyComponent = React.createClass({\n *     render: function() {\n *       return (\n *         <div onClick={this.handleClick}>\n *           <CustomComponent ref=\"custom\" />\n *         </div>\n *       );\n *     },\n *     handleClick: function() {\n *       this.refs.custom.handleClick();\n *     },\n *     componentDidMount: function() {\n *       this.refs.custom.initialize();\n *     }\n *   });\n *\n * Refs should rarely be used. When refs are used, they should only be done to\n * control data that is not handled by React's data flow.\n *\n * @class ReactOwner\n */\nvar ReactOwner = {\n  /**\n   * Adds a component by ref to an owner component.\n   *\n   * @param {ReactComponent} component Component to reference.\n   * @param {string} ref Name by which to refer to the component.\n   * @param {ReactOwner} owner Component on which to record the ref.\n   * @final\n   * @internal\n   */\n  addComponentAsRefTo: function (component, ref, owner) {\n    !isValidOwner(owner) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'addComponentAsRefTo(...): Only a ReactOwner can have refs. You might be adding a ref to a component that was not created inside a component\\'s `render` method, or you have multiple copies of React loaded (details: https://fb.me/react-refs-must-have-owner).') : _prodInvariant('119') : void 0;\n    owner.attachRef(ref, component);\n  },\n\n  /**\n   * Removes a component by ref from an owner component.\n   *\n   * @param {ReactComponent} component Component to dereference.\n   * @param {string} ref Name of the ref to remove.\n   * @param {ReactOwner} owner Component on which the ref is recorded.\n   * @final\n   * @internal\n   */\n  removeComponentAsRefFrom: function (component, ref, owner) {\n    !isValidOwner(owner) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'removeComponentAsRefFrom(...): Only a ReactOwner can have refs. You might be removing a ref to a component that was not created inside a component\\'s `render` method, or you have multiple copies of React loaded (details: https://fb.me/react-refs-must-have-owner).') : _prodInvariant('120') : void 0;\n    var ownerPublicInstance = owner.getPublicInstance();\n    // Check that `component`'s owner is still alive and that `component` is still the current ref\n    // because we do not want to detach the ref if another component stole it.\n    if (ownerPublicInstance && ownerPublicInstance.refs[ref] === component.getPublicInstance()) {\n      owner.detachRef(ref);\n    }\n  }\n\n};\n\nmodule.exports = ReactOwner;\n}).call(this,require('_process'))\n},{\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104}],188:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar ReactPropTypeLocationNames = {};\n\nif (process.env.NODE_ENV !== 'production') {\n  ReactPropTypeLocationNames = {\n    prop: 'prop',\n    context: 'context',\n    childContext: 'child context'\n  };\n}\n\nmodule.exports = ReactPropTypeLocationNames;\n}).call(this,require('_process'))\n},{\"_process\":112}],189:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n},{}],190:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar CallbackQueue = require('./CallbackQueue');\nvar PooledClass = require('./PooledClass');\nvar ReactBrowserEventEmitter = require('./ReactBrowserEventEmitter');\nvar ReactInputSelection = require('./ReactInputSelection');\nvar ReactInstrumentation = require('./ReactInstrumentation');\nvar Transaction = require('./Transaction');\nvar ReactUpdateQueue = require('./ReactUpdateQueue');\n\n/**\n * Ensures that, when possible, the selection range (currently selected text\n * input) is not disturbed by performing the transaction.\n */\nvar SELECTION_RESTORATION = {\n  /**\n   * @return {Selection} Selection information.\n   */\n  initialize: ReactInputSelection.getSelectionInformation,\n  /**\n   * @param {Selection} sel Selection information returned from `initialize`.\n   */\n  close: ReactInputSelection.restoreSelection\n};\n\n/**\n * Suppresses events (blur/focus) that could be inadvertently dispatched due to\n * high level DOM manipulations (like temporarily removing a text input from the\n * DOM).\n */\nvar EVENT_SUPPRESSION = {\n  /**\n   * @return {boolean} The enabled status of `ReactBrowserEventEmitter` before\n   * the reconciliation.\n   */\n  initialize: function () {\n    var currentlyEnabled = ReactBrowserEventEmitter.isEnabled();\n    ReactBrowserEventEmitter.setEnabled(false);\n    return currentlyEnabled;\n  },\n\n  /**\n   * @param {boolean} previouslyEnabled Enabled status of\n   *   `ReactBrowserEventEmitter` before the reconciliation occurred. `close`\n   *   restores the previous value.\n   */\n  close: function (previouslyEnabled) {\n    ReactBrowserEventEmitter.setEnabled(previouslyEnabled);\n  }\n};\n\n/**\n * Provides a queue for collecting `componentDidMount` and\n * `componentDidUpdate` callbacks during the transaction.\n */\nvar ON_DOM_READY_QUEUEING = {\n  /**\n   * Initializes the internal `onDOMReady` queue.\n   */\n  initialize: function () {\n    this.reactMountReady.reset();\n  },\n\n  /**\n   * After DOM is flushed, invoke all registered `onDOMReady` callbacks.\n   */\n  close: function () {\n    this.reactMountReady.notifyAll();\n  }\n};\n\n/**\n * Executed within the scope of the `Transaction` instance. Consider these as\n * being member methods, but with an implied ordering while being isolated from\n * each other.\n */\nvar TRANSACTION_WRAPPERS = [SELECTION_RESTORATION, EVENT_SUPPRESSION, ON_DOM_READY_QUEUEING];\n\nif (process.env.NODE_ENV !== 'production') {\n  TRANSACTION_WRAPPERS.push({\n    initialize: ReactInstrumentation.debugTool.onBeginFlush,\n    close: ReactInstrumentation.debugTool.onEndFlush\n  });\n}\n\n/**\n * Currently:\n * - The order that these are listed in the transaction is critical:\n * - Suppresses events.\n * - Restores selection range.\n *\n * Future:\n * - Restore document/overflow scroll positions that were unintentionally\n *   modified via DOM insertions above the top viewport boundary.\n * - Implement/integrate with customized constraint based layout system and keep\n *   track of which dimensions must be remeasured.\n *\n * @class ReactReconcileTransaction\n */\nfunction ReactReconcileTransaction(useCreateElement) {\n  this.reinitializeTransaction();\n  // Only server-side rendering really needs this option (see\n  // `ReactServerRendering`), but server-side uses\n  // `ReactServerRenderingTransaction` instead. This option is here so that it's\n  // accessible and defaults to false when `ReactDOMComponent` and\n  // `ReactDOMTextComponent` checks it in `mountComponent`.`\n  this.renderToStaticMarkup = false;\n  this.reactMountReady = CallbackQueue.getPooled(null);\n  this.useCreateElement = useCreateElement;\n}\n\nvar Mixin = {\n  /**\n   * @see Transaction\n   * @abstract\n   * @final\n   * @return {array<object>} List of operation wrap procedures.\n   *   TODO: convert to array<TransactionWrapper>\n   */\n  getTransactionWrappers: function () {\n    return TRANSACTION_WRAPPERS;\n  },\n\n  /**\n   * @return {object} The queue to collect `onDOMReady` callbacks with.\n   */\n  getReactMountReady: function () {\n    return this.reactMountReady;\n  },\n\n  /**\n   * @return {object} The queue to collect React async events.\n   */\n  getUpdateQueue: function () {\n    return ReactUpdateQueue;\n  },\n\n  /**\n   * Save current transaction state -- if the return value from this method is\n   * passed to `rollback`, the transaction will be reset to that state.\n   */\n  checkpoint: function () {\n    // reactMountReady is the our only stateful wrapper\n    return this.reactMountReady.checkpoint();\n  },\n\n  rollback: function (checkpoint) {\n    this.reactMountReady.rollback(checkpoint);\n  },\n\n  /**\n   * `PooledClass` looks for this, and will invoke this before allowing this\n   * instance to be reused.\n   */\n  destructor: function () {\n    CallbackQueue.release(this.reactMountReady);\n    this.reactMountReady = null;\n  }\n};\n\n_assign(ReactReconcileTransaction.prototype, Transaction, Mixin);\n\nPooledClass.addPoolingTo(ReactReconcileTransaction);\n\nmodule.exports = ReactReconcileTransaction;\n}).call(this,require('_process'))\n},{\"./CallbackQueue\":125,\"./PooledClass\":143,\"./ReactBrowserEventEmitter\":144,\"./ReactInputSelection\":179,\"./ReactInstrumentation\":181,\"./ReactUpdateQueue\":195,\"./Transaction\":214,\"_process\":112,\"object-assign\":114}],191:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ReactRef = require('./ReactRef');\nvar ReactInstrumentation = require('./ReactInstrumentation');\n\nvar warning = require('fbjs/lib/warning');\n\n/**\n * Helper to call ReactRef.attachRefs with this composite component, split out\n * to avoid allocations in the transaction mount-ready queue.\n */\nfunction attachRefs() {\n  ReactRef.attachRefs(this, this._currentElement);\n}\n\nvar ReactReconciler = {\n\n  /**\n   * Initializes the component, renders markup, and registers event listeners.\n   *\n   * @param {ReactComponent} internalInstance\n   * @param {ReactReconcileTransaction|ReactServerRenderingTransaction} transaction\n   * @param {?object} the containing host component instance\n   * @param {?object} info about the host container\n   * @return {?string} Rendered markup to be inserted into the DOM.\n   * @final\n   * @internal\n   */\n  mountComponent: function (internalInstance, transaction, hostParent, hostContainerInfo, context, parentDebugID // 0 in production and for roots\n  ) {\n    if (process.env.NODE_ENV !== 'production') {\n      if (internalInstance._debugID !== 0) {\n        ReactInstrumentation.debugTool.onBeforeMountComponent(internalInstance._debugID, internalInstance._currentElement, parentDebugID);\n      }\n    }\n    var markup = internalInstance.mountComponent(transaction, hostParent, hostContainerInfo, context, parentDebugID);\n    if (internalInstance._currentElement && internalInstance._currentElement.ref != null) {\n      transaction.getReactMountReady().enqueue(attachRefs, internalInstance);\n    }\n    if (process.env.NODE_ENV !== 'production') {\n      if (internalInstance._debugID !== 0) {\n        ReactInstrumentation.debugTool.onMountComponent(internalInstance._debugID);\n      }\n    }\n    return markup;\n  },\n\n  /**\n   * Returns a value that can be passed to\n   * ReactComponentEnvironment.replaceNodeWithMarkup.\n   */\n  getHostNode: function (internalInstance) {\n    return internalInstance.getHostNode();\n  },\n\n  /**\n   * Releases any resources allocated by `mountComponent`.\n   *\n   * @final\n   * @internal\n   */\n  unmountComponent: function (internalInstance, safely) {\n    if (process.env.NODE_ENV !== 'production') {\n      if (internalInstance._debugID !== 0) {\n        ReactInstrumentation.debugTool.onBeforeUnmountComponent(internalInstance._debugID);\n      }\n    }\n    ReactRef.detachRefs(internalInstance, internalInstance._currentElement);\n    internalInstance.unmountComponent(safely);\n    if (process.env.NODE_ENV !== 'production') {\n      if (internalInstance._debugID !== 0) {\n        ReactInstrumentation.debugTool.onUnmountComponent(internalInstance._debugID);\n      }\n    }\n  },\n\n  /**\n   * Update a component using a new element.\n   *\n   * @param {ReactComponent} internalInstance\n   * @param {ReactElement} nextElement\n   * @param {ReactReconcileTransaction} transaction\n   * @param {object} context\n   * @internal\n   */\n  receiveComponent: function (internalInstance, nextElement, transaction, context) {\n    var prevElement = internalInstance._currentElement;\n\n    if (nextElement === prevElement && context === internalInstance._context) {\n      // Since elements are immutable after the owner is rendered,\n      // we can do a cheap identity compare here to determine if this is a\n      // superfluous reconcile. It's possible for state to be mutable but such\n      // change should trigger an update of the owner which would recreate\n      // the element. We explicitly check for the existence of an owner since\n      // it's possible for an element created outside a composite to be\n      // deeply mutated and reused.\n\n      // TODO: Bailing out early is just a perf optimization right?\n      // TODO: Removing the return statement should affect correctness?\n      return;\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      if (internalInstance._debugID !== 0) {\n        ReactInstrumentation.debugTool.onBeforeUpdateComponent(internalInstance._debugID, nextElement);\n      }\n    }\n\n    var refsChanged = ReactRef.shouldUpdateRefs(prevElement, nextElement);\n\n    if (refsChanged) {\n      ReactRef.detachRefs(internalInstance, prevElement);\n    }\n\n    internalInstance.receiveComponent(nextElement, transaction, context);\n\n    if (refsChanged && internalInstance._currentElement && internalInstance._currentElement.ref != null) {\n      transaction.getReactMountReady().enqueue(attachRefs, internalInstance);\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      if (internalInstance._debugID !== 0) {\n        ReactInstrumentation.debugTool.onUpdateComponent(internalInstance._debugID);\n      }\n    }\n  },\n\n  /**\n   * Flush any dirty changes in a component.\n   *\n   * @param {ReactComponent} internalInstance\n   * @param {ReactReconcileTransaction} transaction\n   * @internal\n   */\n  performUpdateIfNecessary: function (internalInstance, transaction, updateBatchNumber) {\n    if (internalInstance._updateBatchNumber !== updateBatchNumber) {\n      // The component's enqueued batch number should always be the current\n      // batch or the following one.\n      process.env.NODE_ENV !== 'production' ? warning(internalInstance._updateBatchNumber == null || internalInstance._updateBatchNumber === updateBatchNumber + 1, 'performUpdateIfNecessary: Unexpected batch number (current %s, ' + 'pending %s)', updateBatchNumber, internalInstance._updateBatchNumber) : void 0;\n      return;\n    }\n    if (process.env.NODE_ENV !== 'production') {\n      if (internalInstance._debugID !== 0) {\n        ReactInstrumentation.debugTool.onBeforeUpdateComponent(internalInstance._debugID, internalInstance._currentElement);\n      }\n    }\n    internalInstance.performUpdateIfNecessary(transaction);\n    if (process.env.NODE_ENV !== 'production') {\n      if (internalInstance._debugID !== 0) {\n        ReactInstrumentation.debugTool.onUpdateComponent(internalInstance._debugID);\n      }\n    }\n  }\n\n};\n\nmodule.exports = ReactReconciler;\n}).call(this,require('_process'))\n},{\"./ReactInstrumentation\":181,\"./ReactRef\":192,\"_process\":112,\"fbjs/lib/warning\":111}],192:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar ReactOwner = require('./ReactOwner');\n\nvar ReactRef = {};\n\nfunction attachRef(ref, component, owner) {\n  if (typeof ref === 'function') {\n    ref(component.getPublicInstance());\n  } else {\n    // Legacy ref\n    ReactOwner.addComponentAsRefTo(component, ref, owner);\n  }\n}\n\nfunction detachRef(ref, component, owner) {\n  if (typeof ref === 'function') {\n    ref(null);\n  } else {\n    // Legacy ref\n    ReactOwner.removeComponentAsRefFrom(component, ref, owner);\n  }\n}\n\nReactRef.attachRefs = function (instance, element) {\n  if (element === null || typeof element !== 'object') {\n    return;\n  }\n  var ref = element.ref;\n  if (ref != null) {\n    attachRef(ref, instance, element._owner);\n  }\n};\n\nReactRef.shouldUpdateRefs = function (prevElement, nextElement) {\n  // If either the owner or a `ref` has changed, make sure the newest owner\n  // has stored a reference to `this`, and the previous owner (if different)\n  // has forgotten the reference to `this`. We use the element instead\n  // of the public this.props because the post processing cannot determine\n  // a ref. The ref conceptually lives on the element.\n\n  // TODO: Should this even be possible? The owner cannot change because\n  // it's forbidden by shouldUpdateReactComponent. The ref can change\n  // if you swap the keys of but not the refs. Reconsider where this check\n  // is made. It probably belongs where the key checking and\n  // instantiateReactComponent is done.\n\n  var prevRef = null;\n  var prevOwner = null;\n  if (prevElement !== null && typeof prevElement === 'object') {\n    prevRef = prevElement.ref;\n    prevOwner = prevElement._owner;\n  }\n\n  var nextRef = null;\n  var nextOwner = null;\n  if (nextElement !== null && typeof nextElement === 'object') {\n    nextRef = nextElement.ref;\n    nextOwner = nextElement._owner;\n  }\n\n  return prevRef !== nextRef ||\n  // If owner changes but we have an unchanged function ref, don't update refs\n  typeof nextRef === 'string' && nextOwner !== prevOwner;\n};\n\nReactRef.detachRefs = function (instance, element) {\n  if (element === null || typeof element !== 'object') {\n    return;\n  }\n  var ref = element.ref;\n  if (ref != null) {\n    detachRef(ref, instance, element._owner);\n  }\n};\n\nmodule.exports = ReactRef;\n},{\"./ReactOwner\":187}],193:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar PooledClass = require('./PooledClass');\nvar Transaction = require('./Transaction');\nvar ReactInstrumentation = require('./ReactInstrumentation');\nvar ReactServerUpdateQueue = require('./ReactServerUpdateQueue');\n\n/**\n * Executed within the scope of the `Transaction` instance. Consider these as\n * being member methods, but with an implied ordering while being isolated from\n * each other.\n */\nvar TRANSACTION_WRAPPERS = [];\n\nif (process.env.NODE_ENV !== 'production') {\n  TRANSACTION_WRAPPERS.push({\n    initialize: ReactInstrumentation.debugTool.onBeginFlush,\n    close: ReactInstrumentation.debugTool.onEndFlush\n  });\n}\n\nvar noopCallbackQueue = {\n  enqueue: function () {}\n};\n\n/**\n * @class ReactServerRenderingTransaction\n * @param {boolean} renderToStaticMarkup\n */\nfunction ReactServerRenderingTransaction(renderToStaticMarkup) {\n  this.reinitializeTransaction();\n  this.renderToStaticMarkup = renderToStaticMarkup;\n  this.useCreateElement = false;\n  this.updateQueue = new ReactServerUpdateQueue(this);\n}\n\nvar Mixin = {\n  /**\n   * @see Transaction\n   * @abstract\n   * @final\n   * @return {array} Empty list of operation wrap procedures.\n   */\n  getTransactionWrappers: function () {\n    return TRANSACTION_WRAPPERS;\n  },\n\n  /**\n   * @return {object} The queue to collect `onDOMReady` callbacks with.\n   */\n  getReactMountReady: function () {\n    return noopCallbackQueue;\n  },\n\n  /**\n   * @return {object} The queue to collect React async events.\n   */\n  getUpdateQueue: function () {\n    return this.updateQueue;\n  },\n\n  /**\n   * `PooledClass` looks for this, and will invoke this before allowing this\n   * instance to be reused.\n   */\n  destructor: function () {},\n\n  checkpoint: function () {},\n\n  rollback: function () {}\n};\n\n_assign(ReactServerRenderingTransaction.prototype, Transaction, Mixin);\n\nPooledClass.addPoolingTo(ReactServerRenderingTransaction);\n\nmodule.exports = ReactServerRenderingTransaction;\n}).call(this,require('_process'))\n},{\"./PooledClass\":143,\"./ReactInstrumentation\":181,\"./ReactServerUpdateQueue\":194,\"./Transaction\":214,\"_process\":112,\"object-assign\":114}],194:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar ReactUpdateQueue = require('./ReactUpdateQueue');\n\nvar warning = require('fbjs/lib/warning');\n\nfunction warnNoop(publicInstance, callerName) {\n  if (process.env.NODE_ENV !== 'production') {\n    var constructor = publicInstance.constructor;\n    process.env.NODE_ENV !== 'production' ? warning(false, '%s(...): Can only update a mounting component. ' + 'This usually means you called %s() outside componentWillMount() on the server. ' + 'This is a no-op. Please check the code for the %s component.', callerName, callerName, constructor && (constructor.displayName || constructor.name) || 'ReactClass') : void 0;\n  }\n}\n\n/**\n * This is the update queue used for server rendering.\n * It delegates to ReactUpdateQueue while server rendering is in progress and\n * switches to ReactNoopUpdateQueue after the transaction has completed.\n * @class ReactServerUpdateQueue\n * @param {Transaction} transaction\n */\n\nvar ReactServerUpdateQueue = function () {\n  function ReactServerUpdateQueue(transaction) {\n    _classCallCheck(this, ReactServerUpdateQueue);\n\n    this.transaction = transaction;\n  }\n\n  /**\n   * Checks whether or not this composite component is mounted.\n   * @param {ReactClass} publicInstance The instance we want to test.\n   * @return {boolean} True if mounted, false otherwise.\n   * @protected\n   * @final\n   */\n\n\n  ReactServerUpdateQueue.prototype.isMounted = function isMounted(publicInstance) {\n    return false;\n  };\n\n  /**\n   * Enqueue a callback that will be executed after all the pending updates\n   * have processed.\n   *\n   * @param {ReactClass} publicInstance The instance to use as `this` context.\n   * @param {?function} callback Called after state is updated.\n   * @internal\n   */\n\n\n  ReactServerUpdateQueue.prototype.enqueueCallback = function enqueueCallback(publicInstance, callback, callerName) {\n    if (this.transaction.isInTransaction()) {\n      ReactUpdateQueue.enqueueCallback(publicInstance, callback, callerName);\n    }\n  };\n\n  /**\n   * Forces an update. This should only be invoked when it is known with\n   * certainty that we are **not** in a DOM transaction.\n   *\n   * You may want to call this when you know that some deeper aspect of the\n   * component's state has changed but `setState` was not called.\n   *\n   * This will not invoke `shouldComponentUpdate`, but it will invoke\n   * `componentWillUpdate` and `componentDidUpdate`.\n   *\n   * @param {ReactClass} publicInstance The instance that should rerender.\n   * @internal\n   */\n\n\n  ReactServerUpdateQueue.prototype.enqueueForceUpdate = function enqueueForceUpdate(publicInstance) {\n    if (this.transaction.isInTransaction()) {\n      ReactUpdateQueue.enqueueForceUpdate(publicInstance);\n    } else {\n      warnNoop(publicInstance, 'forceUpdate');\n    }\n  };\n\n  /**\n   * Replaces all of the state. Always use this or `setState` to mutate state.\n   * You should treat `this.state` as immutable.\n   *\n   * There is no guarantee that `this.state` will be immediately updated, so\n   * accessing `this.state` after calling this method may return the old value.\n   *\n   * @param {ReactClass} publicInstance The instance that should rerender.\n   * @param {object|function} completeState Next state.\n   * @internal\n   */\n\n\n  ReactServerUpdateQueue.prototype.enqueueReplaceState = function enqueueReplaceState(publicInstance, completeState) {\n    if (this.transaction.isInTransaction()) {\n      ReactUpdateQueue.enqueueReplaceState(publicInstance, completeState);\n    } else {\n      warnNoop(publicInstance, 'replaceState');\n    }\n  };\n\n  /**\n   * Sets a subset of the state. This only exists because _pendingState is\n   * internal. This provides a merging strategy that is not available to deep\n   * properties which is confusing. TODO: Expose pendingState or don't use it\n   * during the merge.\n   *\n   * @param {ReactClass} publicInstance The instance that should rerender.\n   * @param {object|function} partialState Next partial state to be merged with state.\n   * @internal\n   */\n\n\n  ReactServerUpdateQueue.prototype.enqueueSetState = function enqueueSetState(publicInstance, partialState) {\n    if (this.transaction.isInTransaction()) {\n      ReactUpdateQueue.enqueueSetState(publicInstance, partialState);\n    } else {\n      warnNoop(publicInstance, 'setState');\n    }\n  };\n\n  return ReactServerUpdateQueue;\n}();\n\nmodule.exports = ReactServerUpdateQueue;\n}).call(this,require('_process'))\n},{\"./ReactUpdateQueue\":195,\"_process\":112,\"fbjs/lib/warning\":111}],195:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar ReactCurrentOwner = require('react/lib/ReactCurrentOwner');\nvar ReactInstanceMap = require('./ReactInstanceMap');\nvar ReactInstrumentation = require('./ReactInstrumentation');\nvar ReactUpdates = require('./ReactUpdates');\n\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\nfunction enqueueUpdate(internalInstance) {\n  ReactUpdates.enqueueUpdate(internalInstance);\n}\n\nfunction formatUnexpectedArgument(arg) {\n  var type = typeof arg;\n  if (type !== 'object') {\n    return type;\n  }\n  var displayName = arg.constructor && arg.constructor.name || type;\n  var keys = Object.keys(arg);\n  if (keys.length > 0 && keys.length < 20) {\n    return displayName + ' (keys: ' + keys.join(', ') + ')';\n  }\n  return displayName;\n}\n\nfunction getInternalInstanceReadyForUpdate(publicInstance, callerName) {\n  var internalInstance = ReactInstanceMap.get(publicInstance);\n  if (!internalInstance) {\n    if (process.env.NODE_ENV !== 'production') {\n      var ctor = publicInstance.constructor;\n      // Only warn when we have a callerName. Otherwise we should be silent.\n      // We're probably calling from enqueueCallback. We don't want to warn\n      // there because we already warned for the corresponding lifecycle method.\n      process.env.NODE_ENV !== 'production' ? warning(!callerName, '%s(...): Can only update a mounted or mounting component. ' + 'This usually means you called %s() on an unmounted component. ' + 'This is a no-op. Please check the code for the %s component.', callerName, callerName, ctor && (ctor.displayName || ctor.name) || 'ReactClass') : void 0;\n    }\n    return null;\n  }\n\n  if (process.env.NODE_ENV !== 'production') {\n    process.env.NODE_ENV !== 'production' ? warning(ReactCurrentOwner.current == null, '%s(...): Cannot update during an existing state transition (such as ' + 'within `render` or another component\\'s constructor). Render methods ' + 'should be a pure function of props and state; constructor ' + 'side-effects are an anti-pattern, but can be moved to ' + '`componentWillMount`.', callerName) : void 0;\n  }\n\n  return internalInstance;\n}\n\n/**\n * ReactUpdateQueue allows for state updates to be scheduled into a later\n * reconciliation step.\n */\nvar ReactUpdateQueue = {\n\n  /**\n   * Checks whether or not this composite component is mounted.\n   * @param {ReactClass} publicInstance The instance we want to test.\n   * @return {boolean} True if mounted, false otherwise.\n   * @protected\n   * @final\n   */\n  isMounted: function (publicInstance) {\n    if (process.env.NODE_ENV !== 'production') {\n      var owner = ReactCurrentOwner.current;\n      if (owner !== null) {\n        process.env.NODE_ENV !== 'production' ? warning(owner._warnedAboutRefsInRender, '%s is accessing isMounted inside its render() function. ' + 'render() should be a pure function of props and state. It should ' + 'never access something that requires stale data from the previous ' + 'render, such as refs. Move this logic to componentDidMount and ' + 'componentDidUpdate instead.', owner.getName() || 'A component') : void 0;\n        owner._warnedAboutRefsInRender = true;\n      }\n    }\n    var internalInstance = ReactInstanceMap.get(publicInstance);\n    if (internalInstance) {\n      // During componentWillMount and render this will still be null but after\n      // that will always render to something. At least for now. So we can use\n      // this hack.\n      return !!internalInstance._renderedComponent;\n    } else {\n      return false;\n    }\n  },\n\n  /**\n   * Enqueue a callback that will be executed after all the pending updates\n   * have processed.\n   *\n   * @param {ReactClass} publicInstance The instance to use as `this` context.\n   * @param {?function} callback Called after state is updated.\n   * @param {string} callerName Name of the calling function in the public API.\n   * @internal\n   */\n  enqueueCallback: function (publicInstance, callback, callerName) {\n    ReactUpdateQueue.validateCallback(callback, callerName);\n    var internalInstance = getInternalInstanceReadyForUpdate(publicInstance);\n\n    // Previously we would throw an error if we didn't have an internal\n    // instance. Since we want to make it a no-op instead, we mirror the same\n    // behavior we have in other enqueue* methods.\n    // We also need to ignore callbacks in componentWillMount. See\n    // enqueueUpdates.\n    if (!internalInstance) {\n      return null;\n    }\n\n    if (internalInstance._pendingCallbacks) {\n      internalInstance._pendingCallbacks.push(callback);\n    } else {\n      internalInstance._pendingCallbacks = [callback];\n    }\n    // TODO: The callback here is ignored when setState is called from\n    // componentWillMount. Either fix it or disallow doing so completely in\n    // favor of getInitialState. Alternatively, we can disallow\n    // componentWillMount during server-side rendering.\n    enqueueUpdate(internalInstance);\n  },\n\n  enqueueCallbackInternal: function (internalInstance, callback) {\n    if (internalInstance._pendingCallbacks) {\n      internalInstance._pendingCallbacks.push(callback);\n    } else {\n      internalInstance._pendingCallbacks = [callback];\n    }\n    enqueueUpdate(internalInstance);\n  },\n\n  /**\n   * Forces an update. This should only be invoked when it is known with\n   * certainty that we are **not** in a DOM transaction.\n   *\n   * You may want to call this when you know that some deeper aspect of the\n   * component's state has changed but `setState` was not called.\n   *\n   * This will not invoke `shouldComponentUpdate`, but it will invoke\n   * `componentWillUpdate` and `componentDidUpdate`.\n   *\n   * @param {ReactClass} publicInstance The instance that should rerender.\n   * @internal\n   */\n  enqueueForceUpdate: function (publicInstance) {\n    var internalInstance = getInternalInstanceReadyForUpdate(publicInstance, 'forceUpdate');\n\n    if (!internalInstance) {\n      return;\n    }\n\n    internalInstance._pendingForceUpdate = true;\n\n    enqueueUpdate(internalInstance);\n  },\n\n  /**\n   * Replaces all of the state. Always use this or `setState` to mutate state.\n   * You should treat `this.state` as immutable.\n   *\n   * There is no guarantee that `this.state` will be immediately updated, so\n   * accessing `this.state` after calling this method may return the old value.\n   *\n   * @param {ReactClass} publicInstance The instance that should rerender.\n   * @param {object} completeState Next state.\n   * @internal\n   */\n  enqueueReplaceState: function (publicInstance, completeState, callback) {\n    var internalInstance = getInternalInstanceReadyForUpdate(publicInstance, 'replaceState');\n\n    if (!internalInstance) {\n      return;\n    }\n\n    internalInstance._pendingStateQueue = [completeState];\n    internalInstance._pendingReplaceState = true;\n\n    // Future-proof 15.5\n    if (callback !== undefined && callback !== null) {\n      ReactUpdateQueue.validateCallback(callback, 'replaceState');\n      if (internalInstance._pendingCallbacks) {\n        internalInstance._pendingCallbacks.push(callback);\n      } else {\n        internalInstance._pendingCallbacks = [callback];\n      }\n    }\n\n    enqueueUpdate(internalInstance);\n  },\n\n  /**\n   * Sets a subset of the state. This only exists because _pendingState is\n   * internal. This provides a merging strategy that is not available to deep\n   * properties which is confusing. TODO: Expose pendingState or don't use it\n   * during the merge.\n   *\n   * @param {ReactClass} publicInstance The instance that should rerender.\n   * @param {object} partialState Next partial state to be merged with state.\n   * @internal\n   */\n  enqueueSetState: function (publicInstance, partialState) {\n    if (process.env.NODE_ENV !== 'production') {\n      ReactInstrumentation.debugTool.onSetState();\n      process.env.NODE_ENV !== 'production' ? warning(partialState != null, 'setState(...): You passed an undefined or null state object; ' + 'instead, use forceUpdate().') : void 0;\n    }\n\n    var internalInstance = getInternalInstanceReadyForUpdate(publicInstance, 'setState');\n\n    if (!internalInstance) {\n      return;\n    }\n\n    var queue = internalInstance._pendingStateQueue || (internalInstance._pendingStateQueue = []);\n    queue.push(partialState);\n\n    enqueueUpdate(internalInstance);\n  },\n\n  enqueueElementInternal: function (internalInstance, nextElement, nextContext) {\n    internalInstance._pendingElement = nextElement;\n    // TODO: introduce _pendingContext instead of setting it directly.\n    internalInstance._context = nextContext;\n    enqueueUpdate(internalInstance);\n  },\n\n  validateCallback: function (callback, callerName) {\n    !(!callback || typeof callback === 'function') ? process.env.NODE_ENV !== 'production' ? invariant(false, '%s(...): Expected the last optional `callback` argument to be a function. Instead received: %s.', callerName, formatUnexpectedArgument(callback)) : _prodInvariant('122', callerName, formatUnexpectedArgument(callback)) : void 0;\n  }\n\n};\n\nmodule.exports = ReactUpdateQueue;\n}).call(this,require('_process'))\n},{\"./ReactInstanceMap\":180,\"./ReactInstrumentation\":181,\"./ReactUpdates\":196,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111,\"react/lib/ReactCurrentOwner\":256}],196:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant'),\n    _assign = require('object-assign');\n\nvar CallbackQueue = require('./CallbackQueue');\nvar PooledClass = require('./PooledClass');\nvar ReactFeatureFlags = require('./ReactFeatureFlags');\nvar ReactReconciler = require('./ReactReconciler');\nvar Transaction = require('./Transaction');\n\nvar invariant = require('fbjs/lib/invariant');\n\nvar dirtyComponents = [];\nvar updateBatchNumber = 0;\nvar asapCallbackQueue = CallbackQueue.getPooled();\nvar asapEnqueued = false;\n\nvar batchingStrategy = null;\n\nfunction ensureInjected() {\n  !(ReactUpdates.ReactReconcileTransaction && batchingStrategy) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactUpdates: must inject a reconcile transaction class and batching strategy') : _prodInvariant('123') : void 0;\n}\n\nvar NESTED_UPDATES = {\n  initialize: function () {\n    this.dirtyComponentsLength = dirtyComponents.length;\n  },\n  close: function () {\n    if (this.dirtyComponentsLength !== dirtyComponents.length) {\n      // Additional updates were enqueued by componentDidUpdate handlers or\n      // similar; before our own UPDATE_QUEUEING wrapper closes, we want to run\n      // these new updates so that if A's componentDidUpdate calls setState on\n      // B, B will update before the callback A's updater provided when calling\n      // setState.\n      dirtyComponents.splice(0, this.dirtyComponentsLength);\n      flushBatchedUpdates();\n    } else {\n      dirtyComponents.length = 0;\n    }\n  }\n};\n\nvar UPDATE_QUEUEING = {\n  initialize: function () {\n    this.callbackQueue.reset();\n  },\n  close: function () {\n    this.callbackQueue.notifyAll();\n  }\n};\n\nvar TRANSACTION_WRAPPERS = [NESTED_UPDATES, UPDATE_QUEUEING];\n\nfunction ReactUpdatesFlushTransaction() {\n  this.reinitializeTransaction();\n  this.dirtyComponentsLength = null;\n  this.callbackQueue = CallbackQueue.getPooled();\n  this.reconcileTransaction = ReactUpdates.ReactReconcileTransaction.getPooled(\n  /* useCreateElement */true);\n}\n\n_assign(ReactUpdatesFlushTransaction.prototype, Transaction, {\n  getTransactionWrappers: function () {\n    return TRANSACTION_WRAPPERS;\n  },\n\n  destructor: function () {\n    this.dirtyComponentsLength = null;\n    CallbackQueue.release(this.callbackQueue);\n    this.callbackQueue = null;\n    ReactUpdates.ReactReconcileTransaction.release(this.reconcileTransaction);\n    this.reconcileTransaction = null;\n  },\n\n  perform: function (method, scope, a) {\n    // Essentially calls `this.reconcileTransaction.perform(method, scope, a)`\n    // with this transaction's wrappers around it.\n    return Transaction.perform.call(this, this.reconcileTransaction.perform, this.reconcileTransaction, method, scope, a);\n  }\n});\n\nPooledClass.addPoolingTo(ReactUpdatesFlushTransaction);\n\nfunction batchedUpdates(callback, a, b, c, d, e) {\n  ensureInjected();\n  return batchingStrategy.batchedUpdates(callback, a, b, c, d, e);\n}\n\n/**\n * Array comparator for ReactComponents by mount ordering.\n *\n * @param {ReactComponent} c1 first component you're comparing\n * @param {ReactComponent} c2 second component you're comparing\n * @return {number} Return value usable by Array.prototype.sort().\n */\nfunction mountOrderComparator(c1, c2) {\n  return c1._mountOrder - c2._mountOrder;\n}\n\nfunction runBatchedUpdates(transaction) {\n  var len = transaction.dirtyComponentsLength;\n  !(len === dirtyComponents.length) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Expected flush transaction\\'s stored dirty-components length (%s) to match dirty-components array length (%s).', len, dirtyComponents.length) : _prodInvariant('124', len, dirtyComponents.length) : void 0;\n\n  // Since reconciling a component higher in the owner hierarchy usually (not\n  // always -- see shouldComponentUpdate()) will reconcile children, reconcile\n  // them before their children by sorting the array.\n  dirtyComponents.sort(mountOrderComparator);\n\n  // Any updates enqueued while reconciling must be performed after this entire\n  // batch. Otherwise, if dirtyComponents is [A, B] where A has children B and\n  // C, B could update twice in a single batch if C's render enqueues an update\n  // to B (since B would have already updated, we should skip it, and the only\n  // way we can know to do so is by checking the batch counter).\n  updateBatchNumber++;\n\n  for (var i = 0; i < len; i++) {\n    // If a component is unmounted before pending changes apply, it will still\n    // be here, but we assume that it has cleared its _pendingCallbacks and\n    // that performUpdateIfNecessary is a noop.\n    var component = dirtyComponents[i];\n\n    // If performUpdateIfNecessary happens to enqueue any new updates, we\n    // shouldn't execute the callbacks until the next render happens, so\n    // stash the callbacks first\n    var callbacks = component._pendingCallbacks;\n    component._pendingCallbacks = null;\n\n    var markerName;\n    if (ReactFeatureFlags.logTopLevelRenders) {\n      var namedComponent = component;\n      // Duck type TopLevelWrapper. This is probably always true.\n      if (component._currentElement.type.isReactTopLevelWrapper) {\n        namedComponent = component._renderedComponent;\n      }\n      markerName = 'React update: ' + namedComponent.getName();\n      console.time(markerName);\n    }\n\n    ReactReconciler.performUpdateIfNecessary(component, transaction.reconcileTransaction, updateBatchNumber);\n\n    if (markerName) {\n      console.timeEnd(markerName);\n    }\n\n    if (callbacks) {\n      for (var j = 0; j < callbacks.length; j++) {\n        transaction.callbackQueue.enqueue(callbacks[j], component.getPublicInstance());\n      }\n    }\n  }\n}\n\nvar flushBatchedUpdates = function () {\n  // ReactUpdatesFlushTransaction's wrappers will clear the dirtyComponents\n  // array and perform any updates enqueued by mount-ready handlers (i.e.,\n  // componentDidUpdate) but we need to check here too in order to catch\n  // updates enqueued by setState callbacks and asap calls.\n  while (dirtyComponents.length || asapEnqueued) {\n    if (dirtyComponents.length) {\n      var transaction = ReactUpdatesFlushTransaction.getPooled();\n      transaction.perform(runBatchedUpdates, null, transaction);\n      ReactUpdatesFlushTransaction.release(transaction);\n    }\n\n    if (asapEnqueued) {\n      asapEnqueued = false;\n      var queue = asapCallbackQueue;\n      asapCallbackQueue = CallbackQueue.getPooled();\n      queue.notifyAll();\n      CallbackQueue.release(queue);\n    }\n  }\n};\n\n/**\n * Mark a component as needing a rerender, adding an optional callback to a\n * list of functions which will be executed once the rerender occurs.\n */\nfunction enqueueUpdate(component) {\n  ensureInjected();\n\n  // Various parts of our code (such as ReactCompositeComponent's\n  // _renderValidatedComponent) assume that calls to render aren't nested;\n  // verify that that's the case. (This is called by each top-level update\n  // function, like setState, forceUpdate, etc.; creation and\n  // destruction of top-level components is guarded in ReactMount.)\n\n  if (!batchingStrategy.isBatchingUpdates) {\n    batchingStrategy.batchedUpdates(enqueueUpdate, component);\n    return;\n  }\n\n  dirtyComponents.push(component);\n  if (component._updateBatchNumber == null) {\n    component._updateBatchNumber = updateBatchNumber + 1;\n  }\n}\n\n/**\n * Enqueue a callback to be run at the end of the current batching cycle. Throws\n * if no updates are currently being performed.\n */\nfunction asap(callback, context) {\n  !batchingStrategy.isBatchingUpdates ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactUpdates.asap: Can\\'t enqueue an asap callback in a context whereupdates are not being batched.') : _prodInvariant('125') : void 0;\n  asapCallbackQueue.enqueue(callback, context);\n  asapEnqueued = true;\n}\n\nvar ReactUpdatesInjection = {\n  injectReconcileTransaction: function (ReconcileTransaction) {\n    !ReconcileTransaction ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactUpdates: must provide a reconcile transaction class') : _prodInvariant('126') : void 0;\n    ReactUpdates.ReactReconcileTransaction = ReconcileTransaction;\n  },\n\n  injectBatchingStrategy: function (_batchingStrategy) {\n    !_batchingStrategy ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactUpdates: must provide a batching strategy') : _prodInvariant('127') : void 0;\n    !(typeof _batchingStrategy.batchedUpdates === 'function') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactUpdates: must provide a batchedUpdates() function') : _prodInvariant('128') : void 0;\n    !(typeof _batchingStrategy.isBatchingUpdates === 'boolean') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactUpdates: must provide an isBatchingUpdates boolean attribute') : _prodInvariant('129') : void 0;\n    batchingStrategy = _batchingStrategy;\n  }\n};\n\nvar ReactUpdates = {\n  /**\n   * React references `ReactReconcileTransaction` using this property in order\n   * to allow dependency injection.\n   *\n   * @internal\n   */\n  ReactReconcileTransaction: null,\n\n  batchedUpdates: batchedUpdates,\n  enqueueUpdate: enqueueUpdate,\n  flushBatchedUpdates: flushBatchedUpdates,\n  injection: ReactUpdatesInjection,\n  asap: asap\n};\n\nmodule.exports = ReactUpdates;\n}).call(this,require('_process'))\n},{\"./CallbackQueue\":125,\"./PooledClass\":143,\"./ReactFeatureFlags\":175,\"./ReactReconciler\":191,\"./Transaction\":214,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104,\"object-assign\":114}],197:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nmodule.exports = '15.5.4';\n},{}],198:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar NS = {\n  xlink: 'http://www.w3.org/1999/xlink',\n  xml: 'http://www.w3.org/XML/1998/namespace'\n};\n\n// We use attributes for everything SVG so let's avoid some duplication and run\n// code instead.\n// The following are all specified in the HTML config already so we exclude here.\n// - class (as className)\n// - color\n// - height\n// - id\n// - lang\n// - max\n// - media\n// - method\n// - min\n// - name\n// - style\n// - target\n// - type\n// - width\nvar ATTRS = {\n  accentHeight: 'accent-height',\n  accumulate: 0,\n  additive: 0,\n  alignmentBaseline: 'alignment-baseline',\n  allowReorder: 'allowReorder',\n  alphabetic: 0,\n  amplitude: 0,\n  arabicForm: 'arabic-form',\n  ascent: 0,\n  attributeName: 'attributeName',\n  attributeType: 'attributeType',\n  autoReverse: 'autoReverse',\n  azimuth: 0,\n  baseFrequency: 'baseFrequency',\n  baseProfile: 'baseProfile',\n  baselineShift: 'baseline-shift',\n  bbox: 0,\n  begin: 0,\n  bias: 0,\n  by: 0,\n  calcMode: 'calcMode',\n  capHeight: 'cap-height',\n  clip: 0,\n  clipPath: 'clip-path',\n  clipRule: 'clip-rule',\n  clipPathUnits: 'clipPathUnits',\n  colorInterpolation: 'color-interpolation',\n  colorInterpolationFilters: 'color-interpolation-filters',\n  colorProfile: 'color-profile',\n  colorRendering: 'color-rendering',\n  contentScriptType: 'contentScriptType',\n  contentStyleType: 'contentStyleType',\n  cursor: 0,\n  cx: 0,\n  cy: 0,\n  d: 0,\n  decelerate: 0,\n  descent: 0,\n  diffuseConstant: 'diffuseConstant',\n  direction: 0,\n  display: 0,\n  divisor: 0,\n  dominantBaseline: 'dominant-baseline',\n  dur: 0,\n  dx: 0,\n  dy: 0,\n  edgeMode: 'edgeMode',\n  elevation: 0,\n  enableBackground: 'enable-background',\n  end: 0,\n  exponent: 0,\n  externalResourcesRequired: 'externalResourcesRequired',\n  fill: 0,\n  fillOpacity: 'fill-opacity',\n  fillRule: 'fill-rule',\n  filter: 0,\n  filterRes: 'filterRes',\n  filterUnits: 'filterUnits',\n  floodColor: 'flood-color',\n  floodOpacity: 'flood-opacity',\n  focusable: 0,\n  fontFamily: 'font-family',\n  fontSize: 'font-size',\n  fontSizeAdjust: 'font-size-adjust',\n  fontStretch: 'font-stretch',\n  fontStyle: 'font-style',\n  fontVariant: 'font-variant',\n  fontWeight: 'font-weight',\n  format: 0,\n  from: 0,\n  fx: 0,\n  fy: 0,\n  g1: 0,\n  g2: 0,\n  glyphName: 'glyph-name',\n  glyphOrientationHorizontal: 'glyph-orientation-horizontal',\n  glyphOrientationVertical: 'glyph-orientation-vertical',\n  glyphRef: 'glyphRef',\n  gradientTransform: 'gradientTransform',\n  gradientUnits: 'gradientUnits',\n  hanging: 0,\n  horizAdvX: 'horiz-adv-x',\n  horizOriginX: 'horiz-origin-x',\n  ideographic: 0,\n  imageRendering: 'image-rendering',\n  'in': 0,\n  in2: 0,\n  intercept: 0,\n  k: 0,\n  k1: 0,\n  k2: 0,\n  k3: 0,\n  k4: 0,\n  kernelMatrix: 'kernelMatrix',\n  kernelUnitLength: 'kernelUnitLength',\n  kerning: 0,\n  keyPoints: 'keyPoints',\n  keySplines: 'keySplines',\n  keyTimes: 'keyTimes',\n  lengthAdjust: 'lengthAdjust',\n  letterSpacing: 'letter-spacing',\n  lightingColor: 'lighting-color',\n  limitingConeAngle: 'limitingConeAngle',\n  local: 0,\n  markerEnd: 'marker-end',\n  markerMid: 'marker-mid',\n  markerStart: 'marker-start',\n  markerHeight: 'markerHeight',\n  markerUnits: 'markerUnits',\n  markerWidth: 'markerWidth',\n  mask: 0,\n  maskContentUnits: 'maskContentUnits',\n  maskUnits: 'maskUnits',\n  mathematical: 0,\n  mode: 0,\n  numOctaves: 'numOctaves',\n  offset: 0,\n  opacity: 0,\n  operator: 0,\n  order: 0,\n  orient: 0,\n  orientation: 0,\n  origin: 0,\n  overflow: 0,\n  overlinePosition: 'overline-position',\n  overlineThickness: 'overline-thickness',\n  paintOrder: 'paint-order',\n  panose1: 'panose-1',\n  pathLength: 'pathLength',\n  patternContentUnits: 'patternContentUnits',\n  patternTransform: 'patternTransform',\n  patternUnits: 'patternUnits',\n  pointerEvents: 'pointer-events',\n  points: 0,\n  pointsAtX: 'pointsAtX',\n  pointsAtY: 'pointsAtY',\n  pointsAtZ: 'pointsAtZ',\n  preserveAlpha: 'preserveAlpha',\n  preserveAspectRatio: 'preserveAspectRatio',\n  primitiveUnits: 'primitiveUnits',\n  r: 0,\n  radius: 0,\n  refX: 'refX',\n  refY: 'refY',\n  renderingIntent: 'rendering-intent',\n  repeatCount: 'repeatCount',\n  repeatDur: 'repeatDur',\n  requiredExtensions: 'requiredExtensions',\n  requiredFeatures: 'requiredFeatures',\n  restart: 0,\n  result: 0,\n  rotate: 0,\n  rx: 0,\n  ry: 0,\n  scale: 0,\n  seed: 0,\n  shapeRendering: 'shape-rendering',\n  slope: 0,\n  spacing: 0,\n  specularConstant: 'specularConstant',\n  specularExponent: 'specularExponent',\n  speed: 0,\n  spreadMethod: 'spreadMethod',\n  startOffset: 'startOffset',\n  stdDeviation: 'stdDeviation',\n  stemh: 0,\n  stemv: 0,\n  stitchTiles: 'stitchTiles',\n  stopColor: 'stop-color',\n  stopOpacity: 'stop-opacity',\n  strikethroughPosition: 'strikethrough-position',\n  strikethroughThickness: 'strikethrough-thickness',\n  string: 0,\n  stroke: 0,\n  strokeDasharray: 'stroke-dasharray',\n  strokeDashoffset: 'stroke-dashoffset',\n  strokeLinecap: 'stroke-linecap',\n  strokeLinejoin: 'stroke-linejoin',\n  strokeMiterlimit: 'stroke-miterlimit',\n  strokeOpacity: 'stroke-opacity',\n  strokeWidth: 'stroke-width',\n  surfaceScale: 'surfaceScale',\n  systemLanguage: 'systemLanguage',\n  tableValues: 'tableValues',\n  targetX: 'targetX',\n  targetY: 'targetY',\n  textAnchor: 'text-anchor',\n  textDecoration: 'text-decoration',\n  textRendering: 'text-rendering',\n  textLength: 'textLength',\n  to: 0,\n  transform: 0,\n  u1: 0,\n  u2: 0,\n  underlinePosition: 'underline-position',\n  underlineThickness: 'underline-thickness',\n  unicode: 0,\n  unicodeBidi: 'unicode-bidi',\n  unicodeRange: 'unicode-range',\n  unitsPerEm: 'units-per-em',\n  vAlphabetic: 'v-alphabetic',\n  vHanging: 'v-hanging',\n  vIdeographic: 'v-ideographic',\n  vMathematical: 'v-mathematical',\n  values: 0,\n  vectorEffect: 'vector-effect',\n  version: 0,\n  vertAdvY: 'vert-adv-y',\n  vertOriginX: 'vert-origin-x',\n  vertOriginY: 'vert-origin-y',\n  viewBox: 'viewBox',\n  viewTarget: 'viewTarget',\n  visibility: 0,\n  widths: 0,\n  wordSpacing: 'word-spacing',\n  writingMode: 'writing-mode',\n  x: 0,\n  xHeight: 'x-height',\n  x1: 0,\n  x2: 0,\n  xChannelSelector: 'xChannelSelector',\n  xlinkActuate: 'xlink:actuate',\n  xlinkArcrole: 'xlink:arcrole',\n  xlinkHref: 'xlink:href',\n  xlinkRole: 'xlink:role',\n  xlinkShow: 'xlink:show',\n  xlinkTitle: 'xlink:title',\n  xlinkType: 'xlink:type',\n  xmlBase: 'xml:base',\n  xmlns: 0,\n  xmlnsXlink: 'xmlns:xlink',\n  xmlLang: 'xml:lang',\n  xmlSpace: 'xml:space',\n  y: 0,\n  y1: 0,\n  y2: 0,\n  yChannelSelector: 'yChannelSelector',\n  z: 0,\n  zoomAndPan: 'zoomAndPan'\n};\n\nvar SVGDOMPropertyConfig = {\n  Properties: {},\n  DOMAttributeNamespaces: {\n    xlinkActuate: NS.xlink,\n    xlinkArcrole: NS.xlink,\n    xlinkHref: NS.xlink,\n    xlinkRole: NS.xlink,\n    xlinkShow: NS.xlink,\n    xlinkTitle: NS.xlink,\n    xlinkType: NS.xlink,\n    xmlBase: NS.xml,\n    xmlLang: NS.xml,\n    xmlSpace: NS.xml\n  },\n  DOMAttributeNames: {}\n};\n\nObject.keys(ATTRS).forEach(function (key) {\n  SVGDOMPropertyConfig.Properties[key] = 0;\n  if (ATTRS[key]) {\n    SVGDOMPropertyConfig.DOMAttributeNames[key] = ATTRS[key];\n  }\n});\n\nmodule.exports = SVGDOMPropertyConfig;\n},{}],199:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar EventPropagators = require('./EventPropagators');\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactInputSelection = require('./ReactInputSelection');\nvar SyntheticEvent = require('./SyntheticEvent');\n\nvar getActiveElement = require('fbjs/lib/getActiveElement');\nvar isTextInputElement = require('./isTextInputElement');\nvar shallowEqual = require('fbjs/lib/shallowEqual');\n\nvar skipSelectionChangeEvent = ExecutionEnvironment.canUseDOM && 'documentMode' in document && document.documentMode <= 11;\n\nvar eventTypes = {\n  select: {\n    phasedRegistrationNames: {\n      bubbled: 'onSelect',\n      captured: 'onSelectCapture'\n    },\n    dependencies: ['topBlur', 'topContextMenu', 'topFocus', 'topKeyDown', 'topKeyUp', 'topMouseDown', 'topMouseUp', 'topSelectionChange']\n  }\n};\n\nvar activeElement = null;\nvar activeElementInst = null;\nvar lastSelection = null;\nvar mouseDown = false;\n\n// Track whether a listener exists for this plugin. If none exist, we do\n// not extract events. See #3639.\nvar hasListener = false;\n\n/**\n * Get an object which is a unique representation of the current selection.\n *\n * The return value will not be consistent across nodes or browsers, but\n * two identical selections on the same node will return identical objects.\n *\n * @param {DOMElement} node\n * @return {object}\n */\nfunction getSelection(node) {\n  if ('selectionStart' in node && ReactInputSelection.hasSelectionCapabilities(node)) {\n    return {\n      start: node.selectionStart,\n      end: node.selectionEnd\n    };\n  } else if (window.getSelection) {\n    var selection = window.getSelection();\n    return {\n      anchorNode: selection.anchorNode,\n      anchorOffset: selection.anchorOffset,\n      focusNode: selection.focusNode,\n      focusOffset: selection.focusOffset\n    };\n  } else if (document.selection) {\n    var range = document.selection.createRange();\n    return {\n      parentElement: range.parentElement(),\n      text: range.text,\n      top: range.boundingTop,\n      left: range.boundingLeft\n    };\n  }\n}\n\n/**\n * Poll selection to see whether it's changed.\n *\n * @param {object} nativeEvent\n * @return {?SyntheticEvent}\n */\nfunction constructSelectEvent(nativeEvent, nativeEventTarget) {\n  // Ensure we have the right element, and that the user is not dragging a\n  // selection (this matches native `select` event behavior). In HTML5, select\n  // fires only on input and textarea thus if there's no focused element we\n  // won't dispatch.\n  if (mouseDown || activeElement == null || activeElement !== getActiveElement()) {\n    return null;\n  }\n\n  // Only fire when selection has actually changed.\n  var currentSelection = getSelection(activeElement);\n  if (!lastSelection || !shallowEqual(lastSelection, currentSelection)) {\n    lastSelection = currentSelection;\n\n    var syntheticEvent = SyntheticEvent.getPooled(eventTypes.select, activeElementInst, nativeEvent, nativeEventTarget);\n\n    syntheticEvent.type = 'select';\n    syntheticEvent.target = activeElement;\n\n    EventPropagators.accumulateTwoPhaseDispatches(syntheticEvent);\n\n    return syntheticEvent;\n  }\n\n  return null;\n}\n\n/**\n * This plugin creates an `onSelect` event that normalizes select events\n * across form elements.\n *\n * Supported elements are:\n * - input (see `isTextInputElement`)\n * - textarea\n * - contentEditable\n *\n * This differs from native browser implementations in the following ways:\n * - Fires on contentEditable fields as well as inputs.\n * - Fires for collapsed selection.\n * - Fires after user input.\n */\nvar SelectEventPlugin = {\n\n  eventTypes: eventTypes,\n\n  extractEvents: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n    if (!hasListener) {\n      return null;\n    }\n\n    var targetNode = targetInst ? ReactDOMComponentTree.getNodeFromInstance(targetInst) : window;\n\n    switch (topLevelType) {\n      // Track the input node that has focus.\n      case 'topFocus':\n        if (isTextInputElement(targetNode) || targetNode.contentEditable === 'true') {\n          activeElement = targetNode;\n          activeElementInst = targetInst;\n          lastSelection = null;\n        }\n        break;\n      case 'topBlur':\n        activeElement = null;\n        activeElementInst = null;\n        lastSelection = null;\n        break;\n\n      // Don't fire the event while the user is dragging. This matches the\n      // semantics of the native select event.\n      case 'topMouseDown':\n        mouseDown = true;\n        break;\n      case 'topContextMenu':\n      case 'topMouseUp':\n        mouseDown = false;\n        return constructSelectEvent(nativeEvent, nativeEventTarget);\n\n      // Chrome and IE fire non-standard event when selection is changed (and\n      // sometimes when it hasn't). IE's event fires out of order with respect\n      // to key and input events on deletion, so we discard it.\n      //\n      // Firefox doesn't support selectionchange, so check selection status\n      // after each key entry. The selection changes after keydown and before\n      // keyup, but we check on keydown as well in the case of holding down a\n      // key, when multiple keydown events are fired but only one keyup is.\n      // This is also our approach for IE handling, for the reason above.\n      case 'topSelectionChange':\n        if (skipSelectionChangeEvent) {\n          break;\n        }\n      // falls through\n      case 'topKeyDown':\n      case 'topKeyUp':\n        return constructSelectEvent(nativeEvent, nativeEventTarget);\n    }\n\n    return null;\n  },\n\n  didPutListener: function (inst, registrationName, listener) {\n    if (registrationName === 'onSelect') {\n      hasListener = true;\n    }\n  }\n};\n\nmodule.exports = SelectEventPlugin;\n},{\"./EventPropagators\":138,\"./ReactDOMComponentTree\":152,\"./ReactInputSelection\":179,\"./SyntheticEvent\":205,\"./isTextInputElement\":236,\"fbjs/lib/ExecutionEnvironment\":90,\"fbjs/lib/getActiveElement\":99,\"fbjs/lib/shallowEqual\":110}],200:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar EventListener = require('fbjs/lib/EventListener');\nvar EventPropagators = require('./EventPropagators');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar SyntheticAnimationEvent = require('./SyntheticAnimationEvent');\nvar SyntheticClipboardEvent = require('./SyntheticClipboardEvent');\nvar SyntheticEvent = require('./SyntheticEvent');\nvar SyntheticFocusEvent = require('./SyntheticFocusEvent');\nvar SyntheticKeyboardEvent = require('./SyntheticKeyboardEvent');\nvar SyntheticMouseEvent = require('./SyntheticMouseEvent');\nvar SyntheticDragEvent = require('./SyntheticDragEvent');\nvar SyntheticTouchEvent = require('./SyntheticTouchEvent');\nvar SyntheticTransitionEvent = require('./SyntheticTransitionEvent');\nvar SyntheticUIEvent = require('./SyntheticUIEvent');\nvar SyntheticWheelEvent = require('./SyntheticWheelEvent');\n\nvar emptyFunction = require('fbjs/lib/emptyFunction');\nvar getEventCharCode = require('./getEventCharCode');\nvar invariant = require('fbjs/lib/invariant');\n\n/**\n * Turns\n * ['abort', ...]\n * into\n * eventTypes = {\n *   'abort': {\n *     phasedRegistrationNames: {\n *       bubbled: 'onAbort',\n *       captured: 'onAbortCapture',\n *     },\n *     dependencies: ['topAbort'],\n *   },\n *   ...\n * };\n * topLevelEventsToDispatchConfig = {\n *   'topAbort': { sameConfig }\n * };\n */\nvar eventTypes = {};\nvar topLevelEventsToDispatchConfig = {};\n['abort', 'animationEnd', 'animationIteration', 'animationStart', 'blur', 'canPlay', 'canPlayThrough', 'click', 'contextMenu', 'copy', 'cut', 'doubleClick', 'drag', 'dragEnd', 'dragEnter', 'dragExit', 'dragLeave', 'dragOver', 'dragStart', 'drop', 'durationChange', 'emptied', 'encrypted', 'ended', 'error', 'focus', 'input', 'invalid', 'keyDown', 'keyPress', 'keyUp', 'load', 'loadedData', 'loadedMetadata', 'loadStart', 'mouseDown', 'mouseMove', 'mouseOut', 'mouseOver', 'mouseUp', 'paste', 'pause', 'play', 'playing', 'progress', 'rateChange', 'reset', 'scroll', 'seeked', 'seeking', 'stalled', 'submit', 'suspend', 'timeUpdate', 'touchCancel', 'touchEnd', 'touchMove', 'touchStart', 'transitionEnd', 'volumeChange', 'waiting', 'wheel'].forEach(function (event) {\n  var capitalizedEvent = event[0].toUpperCase() + event.slice(1);\n  var onEvent = 'on' + capitalizedEvent;\n  var topEvent = 'top' + capitalizedEvent;\n\n  var type = {\n    phasedRegistrationNames: {\n      bubbled: onEvent,\n      captured: onEvent + 'Capture'\n    },\n    dependencies: [topEvent]\n  };\n  eventTypes[event] = type;\n  topLevelEventsToDispatchConfig[topEvent] = type;\n});\n\nvar onClickListeners = {};\n\nfunction getDictionaryKey(inst) {\n  // Prevents V8 performance issue:\n  // https://github.com/facebook/react/pull/7232\n  return '.' + inst._rootNodeID;\n}\n\nfunction isInteractive(tag) {\n  return tag === 'button' || tag === 'input' || tag === 'select' || tag === 'textarea';\n}\n\nvar SimpleEventPlugin = {\n\n  eventTypes: eventTypes,\n\n  extractEvents: function (topLevelType, targetInst, nativeEvent, nativeEventTarget) {\n    var dispatchConfig = topLevelEventsToDispatchConfig[topLevelType];\n    if (!dispatchConfig) {\n      return null;\n    }\n    var EventConstructor;\n    switch (topLevelType) {\n      case 'topAbort':\n      case 'topCanPlay':\n      case 'topCanPlayThrough':\n      case 'topDurationChange':\n      case 'topEmptied':\n      case 'topEncrypted':\n      case 'topEnded':\n      case 'topError':\n      case 'topInput':\n      case 'topInvalid':\n      case 'topLoad':\n      case 'topLoadedData':\n      case 'topLoadedMetadata':\n      case 'topLoadStart':\n      case 'topPause':\n      case 'topPlay':\n      case 'topPlaying':\n      case 'topProgress':\n      case 'topRateChange':\n      case 'topReset':\n      case 'topSeeked':\n      case 'topSeeking':\n      case 'topStalled':\n      case 'topSubmit':\n      case 'topSuspend':\n      case 'topTimeUpdate':\n      case 'topVolumeChange':\n      case 'topWaiting':\n        // HTML Events\n        // @see http://www.w3.org/TR/html5/index.html#events-0\n        EventConstructor = SyntheticEvent;\n        break;\n      case 'topKeyPress':\n        // Firefox creates a keypress event for function keys too. This removes\n        // the unwanted keypress events. Enter is however both printable and\n        // non-printable. One would expect Tab to be as well (but it isn't).\n        if (getEventCharCode(nativeEvent) === 0) {\n          return null;\n        }\n      /* falls through */\n      case 'topKeyDown':\n      case 'topKeyUp':\n        EventConstructor = SyntheticKeyboardEvent;\n        break;\n      case 'topBlur':\n      case 'topFocus':\n        EventConstructor = SyntheticFocusEvent;\n        break;\n      case 'topClick':\n        // Firefox creates a click event on right mouse clicks. This removes the\n        // unwanted click events.\n        if (nativeEvent.button === 2) {\n          return null;\n        }\n      /* falls through */\n      case 'topDoubleClick':\n      case 'topMouseDown':\n      case 'topMouseMove':\n      case 'topMouseUp':\n      // TODO: Disabled elements should not respond to mouse events\n      /* falls through */\n      case 'topMouseOut':\n      case 'topMouseOver':\n      case 'topContextMenu':\n        EventConstructor = SyntheticMouseEvent;\n        break;\n      case 'topDrag':\n      case 'topDragEnd':\n      case 'topDragEnter':\n      case 'topDragExit':\n      case 'topDragLeave':\n      case 'topDragOver':\n      case 'topDragStart':\n      case 'topDrop':\n        EventConstructor = SyntheticDragEvent;\n        break;\n      case 'topTouchCancel':\n      case 'topTouchEnd':\n      case 'topTouchMove':\n      case 'topTouchStart':\n        EventConstructor = SyntheticTouchEvent;\n        break;\n      case 'topAnimationEnd':\n      case 'topAnimationIteration':\n      case 'topAnimationStart':\n        EventConstructor = SyntheticAnimationEvent;\n        break;\n      case 'topTransitionEnd':\n        EventConstructor = SyntheticTransitionEvent;\n        break;\n      case 'topScroll':\n        EventConstructor = SyntheticUIEvent;\n        break;\n      case 'topWheel':\n        EventConstructor = SyntheticWheelEvent;\n        break;\n      case 'topCopy':\n      case 'topCut':\n      case 'topPaste':\n        EventConstructor = SyntheticClipboardEvent;\n        break;\n    }\n    !EventConstructor ? process.env.NODE_ENV !== 'production' ? invariant(false, 'SimpleEventPlugin: Unhandled event type, `%s`.', topLevelType) : _prodInvariant('86', topLevelType) : void 0;\n    var event = EventConstructor.getPooled(dispatchConfig, targetInst, nativeEvent, nativeEventTarget);\n    EventPropagators.accumulateTwoPhaseDispatches(event);\n    return event;\n  },\n\n  didPutListener: function (inst, registrationName, listener) {\n    // Mobile Safari does not fire properly bubble click events on\n    // non-interactive elements, which means delegated click listeners do not\n    // fire. The workaround for this bug involves attaching an empty click\n    // listener on the target node.\n    // http://www.quirksmode.org/blog/archives/2010/09/click_event_del.html\n    if (registrationName === 'onClick' && !isInteractive(inst._tag)) {\n      var key = getDictionaryKey(inst);\n      var node = ReactDOMComponentTree.getNodeFromInstance(inst);\n      if (!onClickListeners[key]) {\n        onClickListeners[key] = EventListener.listen(node, 'click', emptyFunction);\n      }\n    }\n  },\n\n  willDeleteListener: function (inst, registrationName) {\n    if (registrationName === 'onClick' && !isInteractive(inst._tag)) {\n      var key = getDictionaryKey(inst);\n      onClickListeners[key].remove();\n      delete onClickListeners[key];\n    }\n  }\n\n};\n\nmodule.exports = SimpleEventPlugin;\n}).call(this,require('_process'))\n},{\"./EventPropagators\":138,\"./ReactDOMComponentTree\":152,\"./SyntheticAnimationEvent\":201,\"./SyntheticClipboardEvent\":202,\"./SyntheticDragEvent\":204,\"./SyntheticEvent\":205,\"./SyntheticFocusEvent\":206,\"./SyntheticKeyboardEvent\":208,\"./SyntheticMouseEvent\":209,\"./SyntheticTouchEvent\":210,\"./SyntheticTransitionEvent\":211,\"./SyntheticUIEvent\":212,\"./SyntheticWheelEvent\":213,\"./getEventCharCode\":225,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/EventListener\":89,\"fbjs/lib/emptyFunction\":96,\"fbjs/lib/invariant\":104}],201:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticEvent = require('./SyntheticEvent');\n\n/**\n * @interface Event\n * @see http://www.w3.org/TR/css3-animations/#AnimationEvent-interface\n * @see https://developer.mozilla.org/en-US/docs/Web/API/AnimationEvent\n */\nvar AnimationEventInterface = {\n  animationName: null,\n  elapsedTime: null,\n  pseudoElement: null\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticEvent}\n */\nfunction SyntheticAnimationEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticEvent.augmentClass(SyntheticAnimationEvent, AnimationEventInterface);\n\nmodule.exports = SyntheticAnimationEvent;\n},{\"./SyntheticEvent\":205}],202:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticEvent = require('./SyntheticEvent');\n\n/**\n * @interface Event\n * @see http://www.w3.org/TR/clipboard-apis/\n */\nvar ClipboardEventInterface = {\n  clipboardData: function (event) {\n    return 'clipboardData' in event ? event.clipboardData : window.clipboardData;\n  }\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticUIEvent}\n */\nfunction SyntheticClipboardEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticEvent.augmentClass(SyntheticClipboardEvent, ClipboardEventInterface);\n\nmodule.exports = SyntheticClipboardEvent;\n},{\"./SyntheticEvent\":205}],203:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticEvent = require('./SyntheticEvent');\n\n/**\n * @interface Event\n * @see http://www.w3.org/TR/DOM-Level-3-Events/#events-compositionevents\n */\nvar CompositionEventInterface = {\n  data: null\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticUIEvent}\n */\nfunction SyntheticCompositionEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticEvent.augmentClass(SyntheticCompositionEvent, CompositionEventInterface);\n\nmodule.exports = SyntheticCompositionEvent;\n},{\"./SyntheticEvent\":205}],204:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticMouseEvent = require('./SyntheticMouseEvent');\n\n/**\n * @interface DragEvent\n * @see http://www.w3.org/TR/DOM-Level-3-Events/\n */\nvar DragEventInterface = {\n  dataTransfer: null\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticUIEvent}\n */\nfunction SyntheticDragEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticMouseEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticMouseEvent.augmentClass(SyntheticDragEvent, DragEventInterface);\n\nmodule.exports = SyntheticDragEvent;\n},{\"./SyntheticMouseEvent\":209}],205:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar PooledClass = require('./PooledClass');\n\nvar emptyFunction = require('fbjs/lib/emptyFunction');\nvar warning = require('fbjs/lib/warning');\n\nvar didWarnForAddedNewProperty = false;\nvar isProxySupported = typeof Proxy === 'function';\n\nvar shouldBeReleasedProperties = ['dispatchConfig', '_targetInst', 'nativeEvent', 'isDefaultPrevented', 'isPropagationStopped', '_dispatchListeners', '_dispatchInstances'];\n\n/**\n * @interface Event\n * @see http://www.w3.org/TR/DOM-Level-3-Events/\n */\nvar EventInterface = {\n  type: null,\n  target: null,\n  // currentTarget is set when dispatching; no use in copying it here\n  currentTarget: emptyFunction.thatReturnsNull,\n  eventPhase: null,\n  bubbles: null,\n  cancelable: null,\n  timeStamp: function (event) {\n    return event.timeStamp || Date.now();\n  },\n  defaultPrevented: null,\n  isTrusted: null\n};\n\n/**\n * Synthetic events are dispatched by event plugins, typically in response to a\n * top-level event delegation handler.\n *\n * These systems should generally use pooling to reduce the frequency of garbage\n * collection. The system should check `isPersistent` to determine whether the\n * event should be released into the pool after being dispatched. Users that\n * need a persisted event should invoke `persist`.\n *\n * Synthetic events (and subclasses) implement the DOM Level 3 Events API by\n * normalizing browser quirks. Subclasses do not necessarily have to implement a\n * DOM interface; custom application-specific events can also subclass this.\n *\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {*} targetInst Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @param {DOMEventTarget} nativeEventTarget Target node.\n */\nfunction SyntheticEvent(dispatchConfig, targetInst, nativeEvent, nativeEventTarget) {\n  if (process.env.NODE_ENV !== 'production') {\n    // these have a getter/setter for warnings\n    delete this.nativeEvent;\n    delete this.preventDefault;\n    delete this.stopPropagation;\n  }\n\n  this.dispatchConfig = dispatchConfig;\n  this._targetInst = targetInst;\n  this.nativeEvent = nativeEvent;\n\n  var Interface = this.constructor.Interface;\n  for (var propName in Interface) {\n    if (!Interface.hasOwnProperty(propName)) {\n      continue;\n    }\n    if (process.env.NODE_ENV !== 'production') {\n      delete this[propName]; // this has a getter/setter for warnings\n    }\n    var normalize = Interface[propName];\n    if (normalize) {\n      this[propName] = normalize(nativeEvent);\n    } else {\n      if (propName === 'target') {\n        this.target = nativeEventTarget;\n      } else {\n        this[propName] = nativeEvent[propName];\n      }\n    }\n  }\n\n  var defaultPrevented = nativeEvent.defaultPrevented != null ? nativeEvent.defaultPrevented : nativeEvent.returnValue === false;\n  if (defaultPrevented) {\n    this.isDefaultPrevented = emptyFunction.thatReturnsTrue;\n  } else {\n    this.isDefaultPrevented = emptyFunction.thatReturnsFalse;\n  }\n  this.isPropagationStopped = emptyFunction.thatReturnsFalse;\n  return this;\n}\n\n_assign(SyntheticEvent.prototype, {\n\n  preventDefault: function () {\n    this.defaultPrevented = true;\n    var event = this.nativeEvent;\n    if (!event) {\n      return;\n    }\n\n    if (event.preventDefault) {\n      event.preventDefault();\n    } else if (typeof event.returnValue !== 'unknown') {\n      // eslint-disable-line valid-typeof\n      event.returnValue = false;\n    }\n    this.isDefaultPrevented = emptyFunction.thatReturnsTrue;\n  },\n\n  stopPropagation: function () {\n    var event = this.nativeEvent;\n    if (!event) {\n      return;\n    }\n\n    if (event.stopPropagation) {\n      event.stopPropagation();\n    } else if (typeof event.cancelBubble !== 'unknown') {\n      // eslint-disable-line valid-typeof\n      // The ChangeEventPlugin registers a \"propertychange\" event for\n      // IE. This event does not support bubbling or cancelling, and\n      // any references to cancelBubble throw \"Member not found\".  A\n      // typeof check of \"unknown\" circumvents this issue (and is also\n      // IE specific).\n      event.cancelBubble = true;\n    }\n\n    this.isPropagationStopped = emptyFunction.thatReturnsTrue;\n  },\n\n  /**\n   * We release all dispatched `SyntheticEvent`s after each event loop, adding\n   * them back into the pool. This allows a way to hold onto a reference that\n   * won't be added back into the pool.\n   */\n  persist: function () {\n    this.isPersistent = emptyFunction.thatReturnsTrue;\n  },\n\n  /**\n   * Checks if this event should be released back into the pool.\n   *\n   * @return {boolean} True if this should not be released, false otherwise.\n   */\n  isPersistent: emptyFunction.thatReturnsFalse,\n\n  /**\n   * `PooledClass` looks for `destructor` on each instance it releases.\n   */\n  destructor: function () {\n    var Interface = this.constructor.Interface;\n    for (var propName in Interface) {\n      if (process.env.NODE_ENV !== 'production') {\n        Object.defineProperty(this, propName, getPooledWarningPropertyDefinition(propName, Interface[propName]));\n      } else {\n        this[propName] = null;\n      }\n    }\n    for (var i = 0; i < shouldBeReleasedProperties.length; i++) {\n      this[shouldBeReleasedProperties[i]] = null;\n    }\n    if (process.env.NODE_ENV !== 'production') {\n      Object.defineProperty(this, 'nativeEvent', getPooledWarningPropertyDefinition('nativeEvent', null));\n      Object.defineProperty(this, 'preventDefault', getPooledWarningPropertyDefinition('preventDefault', emptyFunction));\n      Object.defineProperty(this, 'stopPropagation', getPooledWarningPropertyDefinition('stopPropagation', emptyFunction));\n    }\n  }\n\n});\n\nSyntheticEvent.Interface = EventInterface;\n\nif (process.env.NODE_ENV !== 'production') {\n  if (isProxySupported) {\n    /*eslint-disable no-func-assign */\n    SyntheticEvent = new Proxy(SyntheticEvent, {\n      construct: function (target, args) {\n        return this.apply(target, Object.create(target.prototype), args);\n      },\n      apply: function (constructor, that, args) {\n        return new Proxy(constructor.apply(that, args), {\n          set: function (target, prop, value) {\n            if (prop !== 'isPersistent' && !target.constructor.Interface.hasOwnProperty(prop) && shouldBeReleasedProperties.indexOf(prop) === -1) {\n              process.env.NODE_ENV !== 'production' ? warning(didWarnForAddedNewProperty || target.isPersistent(), 'This synthetic event is reused for performance reasons. If you\\'re ' + 'seeing this, you\\'re adding a new property in the synthetic event object. ' + 'The property is never released. See ' + 'https://fb.me/react-event-pooling for more information.') : void 0;\n              didWarnForAddedNewProperty = true;\n            }\n            target[prop] = value;\n            return true;\n          }\n        });\n      }\n    });\n    /*eslint-enable no-func-assign */\n  }\n}\n/**\n * Helper to reduce boilerplate when creating subclasses.\n *\n * @param {function} Class\n * @param {?object} Interface\n */\nSyntheticEvent.augmentClass = function (Class, Interface) {\n  var Super = this;\n\n  var E = function () {};\n  E.prototype = Super.prototype;\n  var prototype = new E();\n\n  _assign(prototype, Class.prototype);\n  Class.prototype = prototype;\n  Class.prototype.constructor = Class;\n\n  Class.Interface = _assign({}, Super.Interface, Interface);\n  Class.augmentClass = Super.augmentClass;\n\n  PooledClass.addPoolingTo(Class, PooledClass.fourArgumentPooler);\n};\n\nPooledClass.addPoolingTo(SyntheticEvent, PooledClass.fourArgumentPooler);\n\nmodule.exports = SyntheticEvent;\n\n/**\n  * Helper to nullify syntheticEvent instance properties when destructing\n  *\n  * @param {object} SyntheticEvent\n  * @param {String} propName\n  * @return {object} defineProperty object\n  */\nfunction getPooledWarningPropertyDefinition(propName, getVal) {\n  var isFunction = typeof getVal === 'function';\n  return {\n    configurable: true,\n    set: set,\n    get: get\n  };\n\n  function set(val) {\n    var action = isFunction ? 'setting the method' : 'setting the property';\n    warn(action, 'This is effectively a no-op');\n    return val;\n  }\n\n  function get() {\n    var action = isFunction ? 'accessing the method' : 'accessing the property';\n    var result = isFunction ? 'This is a no-op function' : 'This is set to null';\n    warn(action, result);\n    return getVal;\n  }\n\n  function warn(action, result) {\n    var warningCondition = false;\n    process.env.NODE_ENV !== 'production' ? warning(warningCondition, 'This synthetic event is reused for performance reasons. If you\\'re seeing this, ' + 'you\\'re %s `%s` on a released/nullified synthetic event. %s. ' + 'If you must keep the original synthetic event around, use event.persist(). ' + 'See https://fb.me/react-event-pooling for more information.', action, propName, result) : void 0;\n  }\n}\n}).call(this,require('_process'))\n},{\"./PooledClass\":143,\"_process\":112,\"fbjs/lib/emptyFunction\":96,\"fbjs/lib/warning\":111,\"object-assign\":114}],206:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticUIEvent = require('./SyntheticUIEvent');\n\n/**\n * @interface FocusEvent\n * @see http://www.w3.org/TR/DOM-Level-3-Events/\n */\nvar FocusEventInterface = {\n  relatedTarget: null\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticUIEvent}\n */\nfunction SyntheticFocusEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticUIEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticUIEvent.augmentClass(SyntheticFocusEvent, FocusEventInterface);\n\nmodule.exports = SyntheticFocusEvent;\n},{\"./SyntheticUIEvent\":212}],207:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticEvent = require('./SyntheticEvent');\n\n/**\n * @interface Event\n * @see http://www.w3.org/TR/2013/WD-DOM-Level-3-Events-20131105\n *      /#events-inputevents\n */\nvar InputEventInterface = {\n  data: null\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticUIEvent}\n */\nfunction SyntheticInputEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticEvent.augmentClass(SyntheticInputEvent, InputEventInterface);\n\nmodule.exports = SyntheticInputEvent;\n},{\"./SyntheticEvent\":205}],208:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticUIEvent = require('./SyntheticUIEvent');\n\nvar getEventCharCode = require('./getEventCharCode');\nvar getEventKey = require('./getEventKey');\nvar getEventModifierState = require('./getEventModifierState');\n\n/**\n * @interface KeyboardEvent\n * @see http://www.w3.org/TR/DOM-Level-3-Events/\n */\nvar KeyboardEventInterface = {\n  key: getEventKey,\n  location: null,\n  ctrlKey: null,\n  shiftKey: null,\n  altKey: null,\n  metaKey: null,\n  repeat: null,\n  locale: null,\n  getModifierState: getEventModifierState,\n  // Legacy Interface\n  charCode: function (event) {\n    // `charCode` is the result of a KeyPress event and represents the value of\n    // the actual printable character.\n\n    // KeyPress is deprecated, but its replacement is not yet final and not\n    // implemented in any major browser. Only KeyPress has charCode.\n    if (event.type === 'keypress') {\n      return getEventCharCode(event);\n    }\n    return 0;\n  },\n  keyCode: function (event) {\n    // `keyCode` is the result of a KeyDown/Up event and represents the value of\n    // physical keyboard key.\n\n    // The actual meaning of the value depends on the users' keyboard layout\n    // which cannot be detected. Assuming that it is a US keyboard layout\n    // provides a surprisingly accurate mapping for US and European users.\n    // Due to this, it is left to the user to implement at this time.\n    if (event.type === 'keydown' || event.type === 'keyup') {\n      return event.keyCode;\n    }\n    return 0;\n  },\n  which: function (event) {\n    // `which` is an alias for either `keyCode` or `charCode` depending on the\n    // type of the event.\n    if (event.type === 'keypress') {\n      return getEventCharCode(event);\n    }\n    if (event.type === 'keydown' || event.type === 'keyup') {\n      return event.keyCode;\n    }\n    return 0;\n  }\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticUIEvent}\n */\nfunction SyntheticKeyboardEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticUIEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticUIEvent.augmentClass(SyntheticKeyboardEvent, KeyboardEventInterface);\n\nmodule.exports = SyntheticKeyboardEvent;\n},{\"./SyntheticUIEvent\":212,\"./getEventCharCode\":225,\"./getEventKey\":226,\"./getEventModifierState\":227}],209:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticUIEvent = require('./SyntheticUIEvent');\nvar ViewportMetrics = require('./ViewportMetrics');\n\nvar getEventModifierState = require('./getEventModifierState');\n\n/**\n * @interface MouseEvent\n * @see http://www.w3.org/TR/DOM-Level-3-Events/\n */\nvar MouseEventInterface = {\n  screenX: null,\n  screenY: null,\n  clientX: null,\n  clientY: null,\n  ctrlKey: null,\n  shiftKey: null,\n  altKey: null,\n  metaKey: null,\n  getModifierState: getEventModifierState,\n  button: function (event) {\n    // Webkit, Firefox, IE9+\n    // which:  1 2 3\n    // button: 0 1 2 (standard)\n    var button = event.button;\n    if ('which' in event) {\n      return button;\n    }\n    // IE<9\n    // which:  undefined\n    // button: 0 0 0\n    // button: 1 4 2 (onmouseup)\n    return button === 2 ? 2 : button === 4 ? 1 : 0;\n  },\n  buttons: null,\n  relatedTarget: function (event) {\n    return event.relatedTarget || (event.fromElement === event.srcElement ? event.toElement : event.fromElement);\n  },\n  // \"Proprietary\" Interface.\n  pageX: function (event) {\n    return 'pageX' in event ? event.pageX : event.clientX + ViewportMetrics.currentScrollLeft;\n  },\n  pageY: function (event) {\n    return 'pageY' in event ? event.pageY : event.clientY + ViewportMetrics.currentScrollTop;\n  }\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticUIEvent}\n */\nfunction SyntheticMouseEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticUIEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticUIEvent.augmentClass(SyntheticMouseEvent, MouseEventInterface);\n\nmodule.exports = SyntheticMouseEvent;\n},{\"./SyntheticUIEvent\":212,\"./ViewportMetrics\":215,\"./getEventModifierState\":227}],210:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticUIEvent = require('./SyntheticUIEvent');\n\nvar getEventModifierState = require('./getEventModifierState');\n\n/**\n * @interface TouchEvent\n * @see http://www.w3.org/TR/touch-events/\n */\nvar TouchEventInterface = {\n  touches: null,\n  targetTouches: null,\n  changedTouches: null,\n  altKey: null,\n  metaKey: null,\n  ctrlKey: null,\n  shiftKey: null,\n  getModifierState: getEventModifierState\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticUIEvent}\n */\nfunction SyntheticTouchEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticUIEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticUIEvent.augmentClass(SyntheticTouchEvent, TouchEventInterface);\n\nmodule.exports = SyntheticTouchEvent;\n},{\"./SyntheticUIEvent\":212,\"./getEventModifierState\":227}],211:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticEvent = require('./SyntheticEvent');\n\n/**\n * @interface Event\n * @see http://www.w3.org/TR/2009/WD-css3-transitions-20090320/#transition-events-\n * @see https://developer.mozilla.org/en-US/docs/Web/API/TransitionEvent\n */\nvar TransitionEventInterface = {\n  propertyName: null,\n  elapsedTime: null,\n  pseudoElement: null\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticEvent}\n */\nfunction SyntheticTransitionEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticEvent.augmentClass(SyntheticTransitionEvent, TransitionEventInterface);\n\nmodule.exports = SyntheticTransitionEvent;\n},{\"./SyntheticEvent\":205}],212:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticEvent = require('./SyntheticEvent');\n\nvar getEventTarget = require('./getEventTarget');\n\n/**\n * @interface UIEvent\n * @see http://www.w3.org/TR/DOM-Level-3-Events/\n */\nvar UIEventInterface = {\n  view: function (event) {\n    if (event.view) {\n      return event.view;\n    }\n\n    var target = getEventTarget(event);\n    if (target.window === target) {\n      // target is a window object\n      return target;\n    }\n\n    var doc = target.ownerDocument;\n    // TODO: Figure out why `ownerDocument` is sometimes undefined in IE8.\n    if (doc) {\n      return doc.defaultView || doc.parentWindow;\n    } else {\n      return window;\n    }\n  },\n  detail: function (event) {\n    return event.detail || 0;\n  }\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticEvent}\n */\nfunction SyntheticUIEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticEvent.augmentClass(SyntheticUIEvent, UIEventInterface);\n\nmodule.exports = SyntheticUIEvent;\n},{\"./SyntheticEvent\":205,\"./getEventTarget\":228}],213:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar SyntheticMouseEvent = require('./SyntheticMouseEvent');\n\n/**\n * @interface WheelEvent\n * @see http://www.w3.org/TR/DOM-Level-3-Events/\n */\nvar WheelEventInterface = {\n  deltaX: function (event) {\n    return 'deltaX' in event ? event.deltaX :\n    // Fallback to `wheelDeltaX` for Webkit and normalize (right is positive).\n    'wheelDeltaX' in event ? -event.wheelDeltaX : 0;\n  },\n  deltaY: function (event) {\n    return 'deltaY' in event ? event.deltaY :\n    // Fallback to `wheelDeltaY` for Webkit and normalize (down is positive).\n    'wheelDeltaY' in event ? -event.wheelDeltaY :\n    // Fallback to `wheelDelta` for IE<9 and normalize (down is positive).\n    'wheelDelta' in event ? -event.wheelDelta : 0;\n  },\n  deltaZ: null,\n\n  // Browsers without \"deltaMode\" is reporting in raw wheel delta where one\n  // notch on the scroll is always +/- 120, roughly equivalent to pixels.\n  // A good approximation of DOM_DELTA_LINE (1) is 5% of viewport size or\n  // ~40 pixels, for DOM_DELTA_SCREEN (2) it is 87.5% of viewport size.\n  deltaMode: null\n};\n\n/**\n * @param {object} dispatchConfig Configuration used to dispatch this event.\n * @param {string} dispatchMarker Marker identifying the event target.\n * @param {object} nativeEvent Native browser event.\n * @extends {SyntheticMouseEvent}\n */\nfunction SyntheticWheelEvent(dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget) {\n  return SyntheticMouseEvent.call(this, dispatchConfig, dispatchMarker, nativeEvent, nativeEventTarget);\n}\n\nSyntheticMouseEvent.augmentClass(SyntheticWheelEvent, WheelEventInterface);\n\nmodule.exports = SyntheticWheelEvent;\n},{\"./SyntheticMouseEvent\":209}],214:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar invariant = require('fbjs/lib/invariant');\n\nvar OBSERVED_ERROR = {};\n\n/**\n * `Transaction` creates a black box that is able to wrap any method such that\n * certain invariants are maintained before and after the method is invoked\n * (Even if an exception is thrown while invoking the wrapped method). Whoever\n * instantiates a transaction can provide enforcers of the invariants at\n * creation time. The `Transaction` class itself will supply one additional\n * automatic invariant for you - the invariant that any transaction instance\n * should not be run while it is already being run. You would typically create a\n * single instance of a `Transaction` for reuse multiple times, that potentially\n * is used to wrap several different methods. Wrappers are extremely simple -\n * they only require implementing two methods.\n *\n * <pre>\n *                       wrappers (injected at creation time)\n *                                      +        +\n *                                      |        |\n *                    +-----------------|--------|--------------+\n *                    |                 v        |              |\n *                    |      +---------------+   |              |\n *                    |   +--|    wrapper1   |---|----+         |\n *                    |   |  +---------------+   v    |         |\n *                    |   |          +-------------+  |         |\n *                    |   |     +----|   wrapper2  |--------+   |\n *                    |   |     |    +-------------+  |     |   |\n *                    |   |     |                     |     |   |\n *                    |   v     v                     v     v   | wrapper\n *                    | +---+ +---+   +---------+   +---+ +---+ | invariants\n * perform(anyMethod) | |   | |   |   |         |   |   | |   | | maintained\n * +----------------->|-|---|-|---|-->|anyMethod|---|---|-|---|-|-------->\n *                    | |   | |   |   |         |   |   | |   | |\n *                    | |   | |   |   |         |   |   | |   | |\n *                    | |   | |   |   |         |   |   | |   | |\n *                    | +---+ +---+   +---------+   +---+ +---+ |\n *                    |  initialize                    close    |\n *                    +-----------------------------------------+\n * </pre>\n *\n * Use cases:\n * - Preserving the input selection ranges before/after reconciliation.\n *   Restoring selection even in the event of an unexpected error.\n * - Deactivating events while rearranging the DOM, preventing blurs/focuses,\n *   while guaranteeing that afterwards, the event system is reactivated.\n * - Flushing a queue of collected DOM mutations to the main UI thread after a\n *   reconciliation takes place in a worker thread.\n * - Invoking any collected `componentDidUpdate` callbacks after rendering new\n *   content.\n * - (Future use case): Wrapping particular flushes of the `ReactWorker` queue\n *   to preserve the `scrollTop` (an automatic scroll aware DOM).\n * - (Future use case): Layout calculations before and after DOM updates.\n *\n * Transactional plugin API:\n * - A module that has an `initialize` method that returns any precomputation.\n * - and a `close` method that accepts the precomputation. `close` is invoked\n *   when the wrapped process is completed, or has failed.\n *\n * @param {Array<TransactionalWrapper>} transactionWrapper Wrapper modules\n * that implement `initialize` and `close`.\n * @return {Transaction} Single transaction for reuse in thread.\n *\n * @class Transaction\n */\nvar TransactionImpl = {\n  /**\n   * Sets up this instance so that it is prepared for collecting metrics. Does\n   * so such that this setup method may be used on an instance that is already\n   * initialized, in a way that does not consume additional memory upon reuse.\n   * That can be useful if you decide to make your subclass of this mixin a\n   * \"PooledClass\".\n   */\n  reinitializeTransaction: function () {\n    this.transactionWrappers = this.getTransactionWrappers();\n    if (this.wrapperInitData) {\n      this.wrapperInitData.length = 0;\n    } else {\n      this.wrapperInitData = [];\n    }\n    this._isInTransaction = false;\n  },\n\n  _isInTransaction: false,\n\n  /**\n   * @abstract\n   * @return {Array<TransactionWrapper>} Array of transaction wrappers.\n   */\n  getTransactionWrappers: null,\n\n  isInTransaction: function () {\n    return !!this._isInTransaction;\n  },\n\n  /**\n   * Executes the function within a safety window. Use this for the top level\n   * methods that result in large amounts of computation/mutations that would\n   * need to be safety checked. The optional arguments helps prevent the need\n   * to bind in many cases.\n   *\n   * @param {function} method Member of scope to call.\n   * @param {Object} scope Scope to invoke from.\n   * @param {Object?=} a Argument to pass to the method.\n   * @param {Object?=} b Argument to pass to the method.\n   * @param {Object?=} c Argument to pass to the method.\n   * @param {Object?=} d Argument to pass to the method.\n   * @param {Object?=} e Argument to pass to the method.\n   * @param {Object?=} f Argument to pass to the method.\n   *\n   * @return {*} Return value from `method`.\n   */\n  perform: function (method, scope, a, b, c, d, e, f) {\n    !!this.isInTransaction() ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Transaction.perform(...): Cannot initialize a transaction when there is already an outstanding transaction.') : _prodInvariant('27') : void 0;\n    var errorThrown;\n    var ret;\n    try {\n      this._isInTransaction = true;\n      // Catching errors makes debugging more difficult, so we start with\n      // errorThrown set to true before setting it to false after calling\n      // close -- if it's still set to true in the finally block, it means\n      // one of these calls threw.\n      errorThrown = true;\n      this.initializeAll(0);\n      ret = method.call(scope, a, b, c, d, e, f);\n      errorThrown = false;\n    } finally {\n      try {\n        if (errorThrown) {\n          // If `method` throws, prefer to show that stack trace over any thrown\n          // by invoking `closeAll`.\n          try {\n            this.closeAll(0);\n          } catch (err) {}\n        } else {\n          // Since `method` didn't throw, we don't want to silence the exception\n          // here.\n          this.closeAll(0);\n        }\n      } finally {\n        this._isInTransaction = false;\n      }\n    }\n    return ret;\n  },\n\n  initializeAll: function (startIndex) {\n    var transactionWrappers = this.transactionWrappers;\n    for (var i = startIndex; i < transactionWrappers.length; i++) {\n      var wrapper = transactionWrappers[i];\n      try {\n        // Catching errors makes debugging more difficult, so we start with the\n        // OBSERVED_ERROR state before overwriting it with the real return value\n        // of initialize -- if it's still set to OBSERVED_ERROR in the finally\n        // block, it means wrapper.initialize threw.\n        this.wrapperInitData[i] = OBSERVED_ERROR;\n        this.wrapperInitData[i] = wrapper.initialize ? wrapper.initialize.call(this) : null;\n      } finally {\n        if (this.wrapperInitData[i] === OBSERVED_ERROR) {\n          // The initializer for wrapper i threw an error; initialize the\n          // remaining wrappers but silence any exceptions from them to ensure\n          // that the first error is the one to bubble up.\n          try {\n            this.initializeAll(i + 1);\n          } catch (err) {}\n        }\n      }\n    }\n  },\n\n  /**\n   * Invokes each of `this.transactionWrappers.close[i]` functions, passing into\n   * them the respective return values of `this.transactionWrappers.init[i]`\n   * (`close`rs that correspond to initializers that failed will not be\n   * invoked).\n   */\n  closeAll: function (startIndex) {\n    !this.isInTransaction() ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Transaction.closeAll(): Cannot close transaction when none are open.') : _prodInvariant('28') : void 0;\n    var transactionWrappers = this.transactionWrappers;\n    for (var i = startIndex; i < transactionWrappers.length; i++) {\n      var wrapper = transactionWrappers[i];\n      var initData = this.wrapperInitData[i];\n      var errorThrown;\n      try {\n        // Catching errors makes debugging more difficult, so we start with\n        // errorThrown set to true before setting it to false after calling\n        // close -- if it's still set to true in the finally block, it means\n        // wrapper.close threw.\n        errorThrown = true;\n        if (initData !== OBSERVED_ERROR && wrapper.close) {\n          wrapper.close.call(this, initData);\n        }\n        errorThrown = false;\n      } finally {\n        if (errorThrown) {\n          // The closer for wrapper i threw an error; close the remaining\n          // wrappers but silence any exceptions from them to ensure that the\n          // first error is the one to bubble up.\n          try {\n            this.closeAll(i + 1);\n          } catch (e) {}\n        }\n      }\n    }\n    this.wrapperInitData.length = 0;\n  }\n};\n\nmodule.exports = TransactionImpl;\n}).call(this,require('_process'))\n},{\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104}],215:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ViewportMetrics = {\n\n  currentScrollLeft: 0,\n\n  currentScrollTop: 0,\n\n  refreshScrollValues: function (scrollPosition) {\n    ViewportMetrics.currentScrollLeft = scrollPosition.x;\n    ViewportMetrics.currentScrollTop = scrollPosition.y;\n  }\n\n};\n\nmodule.exports = ViewportMetrics;\n},{}],216:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar invariant = require('fbjs/lib/invariant');\n\n/**\n * Accumulates items that must not be null or undefined into the first one. This\n * is used to conserve memory by avoiding array allocations, and thus sacrifices\n * API cleanness. Since `current` can be null before being passed in and not\n * null after this function, make sure to assign it back to `current`:\n *\n * `a = accumulateInto(a, b);`\n *\n * This API should be sparingly used. Try `accumulate` for something cleaner.\n *\n * @return {*|array<*>} An accumulation of items.\n */\n\nfunction accumulateInto(current, next) {\n  !(next != null) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'accumulateInto(...): Accumulated items must not be null or undefined.') : _prodInvariant('30') : void 0;\n\n  if (current == null) {\n    return next;\n  }\n\n  // Both are not empty. Warning: Never call x.concat(y) when you are not\n  // certain that x is an Array (x could be a string with concat method).\n  if (Array.isArray(current)) {\n    if (Array.isArray(next)) {\n      current.push.apply(current, next);\n      return current;\n    }\n    current.push(next);\n    return current;\n  }\n\n  if (Array.isArray(next)) {\n    // A bit too dangerous to mutate `next`.\n    return [current].concat(next);\n  }\n\n  return [current, next];\n}\n\nmodule.exports = accumulateInto;\n}).call(this,require('_process'))\n},{\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104}],217:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar MOD = 65521;\n\n// adler32 is not cryptographically strong, and is only used to sanity check that\n// markup generated on the server matches the markup generated on the client.\n// This implementation (a modified version of the SheetJS version) has been optimized\n// for our use case, at the expense of conforming to the adler32 specification\n// for non-ascii inputs.\nfunction adler32(data) {\n  var a = 1;\n  var b = 0;\n  var i = 0;\n  var l = data.length;\n  var m = l & ~0x3;\n  while (i < m) {\n    var n = Math.min(i + 4096, m);\n    for (; i < n; i += 4) {\n      b += (a += data.charCodeAt(i)) + (a += data.charCodeAt(i + 1)) + (a += data.charCodeAt(i + 2)) + (a += data.charCodeAt(i + 3));\n    }\n    a %= MOD;\n    b %= MOD;\n  }\n  for (; i < l; i++) {\n    b += a += data.charCodeAt(i);\n  }\n  a %= MOD;\n  b %= MOD;\n  return a | b << 16;\n}\n\nmodule.exports = adler32;\n},{}],218:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar ReactPropTypeLocationNames = require('./ReactPropTypeLocationNames');\nvar ReactPropTypesSecret = require('./ReactPropTypesSecret');\n\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\nvar ReactComponentTreeHook;\n\nif (typeof process !== 'undefined' && process.env && process.env.NODE_ENV === 'test') {\n  // Temporary hack.\n  // Inline requires don't work well with Jest:\n  // https://github.com/facebook/react/issues/7240\n  // Remove the inline requires when we don't need them anymore:\n  // https://github.com/facebook/react/pull/7178\n  ReactComponentTreeHook = require('react/lib/ReactComponentTreeHook');\n}\n\nvar loggedTypeFailures = {};\n\n/**\n * Assert that the values match with the type specs.\n * Error messages are memorized and will only be shown once.\n *\n * @param {object} typeSpecs Map of name to a ReactPropType\n * @param {object} values Runtime values that need to be type-checked\n * @param {string} location e.g. \"prop\", \"context\", \"child context\"\n * @param {string} componentName Name of the component for error messages.\n * @param {?object} element The React element that is being type-checked\n * @param {?number} debugID The React component instance that is being type-checked\n * @private\n */\nfunction checkReactTypeSpec(typeSpecs, values, location, componentName, element, debugID) {\n  for (var typeSpecName in typeSpecs) {\n    if (typeSpecs.hasOwnProperty(typeSpecName)) {\n      var error;\n      // Prop type validation may throw. In case they do, we don't want to\n      // fail the render phase where it didn't fail before. So we log it.\n      // After these have been cleaned up, we'll let them throw.\n      try {\n        // This is intentionally an invariant that gets caught. It's the same\n        // behavior as without this statement except with a better message.\n        !(typeof typeSpecs[typeSpecName] === 'function') ? process.env.NODE_ENV !== 'production' ? invariant(false, '%s: %s type `%s` is invalid; it must be a function, usually from React.PropTypes.', componentName || 'React class', ReactPropTypeLocationNames[location], typeSpecName) : _prodInvariant('84', componentName || 'React class', ReactPropTypeLocationNames[location], typeSpecName) : void 0;\n        error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);\n      } catch (ex) {\n        error = ex;\n      }\n      process.env.NODE_ENV !== 'production' ? warning(!error || error instanceof Error, '%s: type specification of %s `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', ReactPropTypeLocationNames[location], typeSpecName, typeof error) : void 0;\n      if (error instanceof Error && !(error.message in loggedTypeFailures)) {\n        // Only monitor this failure once because there tends to be a lot of the\n        // same error.\n        loggedTypeFailures[error.message] = true;\n\n        var componentStackInfo = '';\n\n        if (process.env.NODE_ENV !== 'production') {\n          if (!ReactComponentTreeHook) {\n            ReactComponentTreeHook = require('react/lib/ReactComponentTreeHook');\n          }\n          if (debugID !== null) {\n            componentStackInfo = ReactComponentTreeHook.getStackAddendumByID(debugID);\n          } else if (element !== null) {\n            componentStackInfo = ReactComponentTreeHook.getCurrentStackAddendum(element);\n          }\n        }\n\n        process.env.NODE_ENV !== 'production' ? warning(false, 'Failed %s type: %s%s', location, error.message, componentStackInfo) : void 0;\n      }\n    }\n  }\n}\n\nmodule.exports = checkReactTypeSpec;\n}).call(this,require('_process'))\n},{\"./ReactPropTypeLocationNames\":188,\"./ReactPropTypesSecret\":189,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111,\"react/lib/ReactComponentTreeHook\":255}],219:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n/* globals MSApp */\n\n'use strict';\n\n/**\n * Create a function which has 'unsafe' privileges (required by windows8 apps)\n */\n\nvar createMicrosoftUnsafeLocalFunction = function (func) {\n  if (typeof MSApp !== 'undefined' && MSApp.execUnsafeLocalFunction) {\n    return function (arg0, arg1, arg2, arg3) {\n      MSApp.execUnsafeLocalFunction(function () {\n        return func(arg0, arg1, arg2, arg3);\n      });\n    };\n  } else {\n    return func;\n  }\n};\n\nmodule.exports = createMicrosoftUnsafeLocalFunction;\n},{}],220:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar CSSProperty = require('./CSSProperty');\nvar warning = require('fbjs/lib/warning');\n\nvar isUnitlessNumber = CSSProperty.isUnitlessNumber;\nvar styleWarnings = {};\n\n/**\n * Convert a value into the proper css writable value. The style name `name`\n * should be logical (no hyphens), as specified\n * in `CSSProperty.isUnitlessNumber`.\n *\n * @param {string} name CSS property name such as `topMargin`.\n * @param {*} value CSS property value such as `10px`.\n * @param {ReactDOMComponent} component\n * @return {string} Normalized style value with dimensions applied.\n */\nfunction dangerousStyleValue(name, value, component) {\n  // Note that we've removed escapeTextForBrowser() calls here since the\n  // whole string will be escaped when the attribute is injected into\n  // the markup. If you provide unsafe user data here they can inject\n  // arbitrary CSS which may be problematic (I couldn't repro this):\n  // https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet\n  // http://www.thespanner.co.uk/2007/11/26/ultimate-xss-css-injection/\n  // This is not an XSS hole but instead a potential CSS injection issue\n  // which has lead to a greater discussion about how we're going to\n  // trust URLs moving forward. See #2115901\n\n  var isEmpty = value == null || typeof value === 'boolean' || value === '';\n  if (isEmpty) {\n    return '';\n  }\n\n  var isNonNumeric = isNaN(value);\n  if (isNonNumeric || value === 0 || isUnitlessNumber.hasOwnProperty(name) && isUnitlessNumber[name]) {\n    return '' + value; // cast to string\n  }\n\n  if (typeof value === 'string') {\n    if (process.env.NODE_ENV !== 'production') {\n      // Allow '0' to pass through without warning. 0 is already special and\n      // doesn't require units, so we don't need to warn about it.\n      if (component && value !== '0') {\n        var owner = component._currentElement._owner;\n        var ownerName = owner ? owner.getName() : null;\n        if (ownerName && !styleWarnings[ownerName]) {\n          styleWarnings[ownerName] = {};\n        }\n        var warned = false;\n        if (ownerName) {\n          var warnings = styleWarnings[ownerName];\n          warned = warnings[name];\n          if (!warned) {\n            warnings[name] = true;\n          }\n        }\n        if (!warned) {\n          process.env.NODE_ENV !== 'production' ? warning(false, 'a `%s` tag (owner: `%s`) was passed a numeric string value ' + 'for CSS property `%s` (value: `%s`) which will be treated ' + 'as a unitless number in a future version of React.', component._currentElement.type, ownerName || 'unknown', name, value) : void 0;\n        }\n      }\n    }\n    value = value.trim();\n  }\n  return value + 'px';\n}\n\nmodule.exports = dangerousStyleValue;\n}).call(this,require('_process'))\n},{\"./CSSProperty\":123,\"_process\":112,\"fbjs/lib/warning\":111}],221:[function(require,module,exports){\n/**\n * Copyright 2016-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * Based on the escape-html library, which is used under the MIT License below:\n *\n * Copyright (c) 2012-2013 TJ Holowaychuk\n * Copyright (c) 2015 Andreas Lubbe\n * Copyright (c) 2015 Tiancheng \"Timothy\" Gu\n *\n * Permission is hereby granted, free of charge, to any person obtaining\n * a copy of this software and associated documentation files (the\n * 'Software'), to deal in the Software without restriction, including\n * without limitation the rights to use, copy, modify, merge, publish,\n * distribute, sublicense, and/or sell copies of the Software, and to\n * permit persons to whom the Software is furnished to do so, subject to\n * the following conditions:\n *\n * The above copyright notice and this permission notice shall be\n * included in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\n * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\n * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\n * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\n * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n *\n */\n\n'use strict';\n\n// code copied and modified from escape-html\n/**\n * Module variables.\n * @private\n */\n\nvar matchHtmlRegExp = /[\"'&<>]/;\n\n/**\n * Escape special characters in the given string of html.\n *\n * @param  {string} string The string to escape for inserting into HTML\n * @return {string}\n * @public\n */\n\nfunction escapeHtml(string) {\n  var str = '' + string;\n  var match = matchHtmlRegExp.exec(str);\n\n  if (!match) {\n    return str;\n  }\n\n  var escape;\n  var html = '';\n  var index = 0;\n  var lastIndex = 0;\n\n  for (index = match.index; index < str.length; index++) {\n    switch (str.charCodeAt(index)) {\n      case 34:\n        // \"\n        escape = '&quot;';\n        break;\n      case 38:\n        // &\n        escape = '&amp;';\n        break;\n      case 39:\n        // '\n        escape = '&#x27;'; // modified from escape-html; used to be '&#39'\n        break;\n      case 60:\n        // <\n        escape = '&lt;';\n        break;\n      case 62:\n        // >\n        escape = '&gt;';\n        break;\n      default:\n        continue;\n    }\n\n    if (lastIndex !== index) {\n      html += str.substring(lastIndex, index);\n    }\n\n    lastIndex = index + 1;\n    html += escape;\n  }\n\n  return lastIndex !== index ? html + str.substring(lastIndex, index) : html;\n}\n// end code copied and modified from escape-html\n\n\n/**\n * Escapes text to prevent scripting attacks.\n *\n * @param {*} text Text value to escape.\n * @return {string} An escaped string.\n */\nfunction escapeTextContentForBrowser(text) {\n  if (typeof text === 'boolean' || typeof text === 'number') {\n    // this shortcircuit helps perf for types that we know will never have\n    // special characters, especially given that this function is used often\n    // for numeric dom ids.\n    return '' + text;\n  }\n  return escapeHtml(text);\n}\n\nmodule.exports = escapeTextContentForBrowser;\n},{}],222:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar ReactCurrentOwner = require('react/lib/ReactCurrentOwner');\nvar ReactDOMComponentTree = require('./ReactDOMComponentTree');\nvar ReactInstanceMap = require('./ReactInstanceMap');\n\nvar getHostComponentFromComposite = require('./getHostComponentFromComposite');\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\n/**\n * Returns the DOM node rendered by this element.\n *\n * See https://facebook.github.io/react/docs/top-level-api.html#reactdom.finddomnode\n *\n * @param {ReactComponent|DOMElement} componentOrElement\n * @return {?DOMElement} The root node of this element.\n */\nfunction findDOMNode(componentOrElement) {\n  if (process.env.NODE_ENV !== 'production') {\n    var owner = ReactCurrentOwner.current;\n    if (owner !== null) {\n      process.env.NODE_ENV !== 'production' ? warning(owner._warnedAboutRefsInRender, '%s is accessing findDOMNode inside its render(). ' + 'render() should be a pure function of props and state. It should ' + 'never access something that requires stale data from the previous ' + 'render, such as refs. Move this logic to componentDidMount and ' + 'componentDidUpdate instead.', owner.getName() || 'A component') : void 0;\n      owner._warnedAboutRefsInRender = true;\n    }\n  }\n  if (componentOrElement == null) {\n    return null;\n  }\n  if (componentOrElement.nodeType === 1) {\n    return componentOrElement;\n  }\n\n  var inst = ReactInstanceMap.get(componentOrElement);\n  if (inst) {\n    inst = getHostComponentFromComposite(inst);\n    return inst ? ReactDOMComponentTree.getNodeFromInstance(inst) : null;\n  }\n\n  if (typeof componentOrElement.render === 'function') {\n    !false ? process.env.NODE_ENV !== 'production' ? invariant(false, 'findDOMNode was called on an unmounted component.') : _prodInvariant('44') : void 0;\n  } else {\n    !false ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Element appears to be neither ReactComponent nor DOMNode (keys: %s)', Object.keys(componentOrElement)) : _prodInvariant('45', Object.keys(componentOrElement)) : void 0;\n  }\n}\n\nmodule.exports = findDOMNode;\n}).call(this,require('_process'))\n},{\"./ReactDOMComponentTree\":152,\"./ReactInstanceMap\":180,\"./getHostComponentFromComposite\":229,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111,\"react/lib/ReactCurrentOwner\":256}],223:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar KeyEscapeUtils = require('./KeyEscapeUtils');\nvar traverseAllChildren = require('./traverseAllChildren');\nvar warning = require('fbjs/lib/warning');\n\nvar ReactComponentTreeHook;\n\nif (typeof process !== 'undefined' && process.env && process.env.NODE_ENV === 'test') {\n  // Temporary hack.\n  // Inline requires don't work well with Jest:\n  // https://github.com/facebook/react/issues/7240\n  // Remove the inline requires when we don't need them anymore:\n  // https://github.com/facebook/react/pull/7178\n  ReactComponentTreeHook = require('react/lib/ReactComponentTreeHook');\n}\n\n/**\n * @param {function} traverseContext Context passed through traversal.\n * @param {?ReactComponent} child React child component.\n * @param {!string} name String name of key path to child.\n * @param {number=} selfDebugID Optional debugID of the current internal instance.\n */\nfunction flattenSingleChildIntoContext(traverseContext, child, name, selfDebugID) {\n  // We found a component instance.\n  if (traverseContext && typeof traverseContext === 'object') {\n    var result = traverseContext;\n    var keyUnique = result[name] === undefined;\n    if (process.env.NODE_ENV !== 'production') {\n      if (!ReactComponentTreeHook) {\n        ReactComponentTreeHook = require('react/lib/ReactComponentTreeHook');\n      }\n      if (!keyUnique) {\n        process.env.NODE_ENV !== 'production' ? warning(false, 'flattenChildren(...): Encountered two children with the same key, ' + '`%s`. Child keys must be unique; when two children share a key, only ' + 'the first child will be used.%s', KeyEscapeUtils.unescape(name), ReactComponentTreeHook.getStackAddendumByID(selfDebugID)) : void 0;\n      }\n    }\n    if (keyUnique && child != null) {\n      result[name] = child;\n    }\n  }\n}\n\n/**\n * Flattens children that are typically specified as `props.children`. Any null\n * children will not be included in the resulting object.\n * @return {!object} flattened children keyed by name.\n */\nfunction flattenChildren(children, selfDebugID) {\n  if (children == null) {\n    return children;\n  }\n  var result = {};\n\n  if (process.env.NODE_ENV !== 'production') {\n    traverseAllChildren(children, function (traverseContext, child, name) {\n      return flattenSingleChildIntoContext(traverseContext, child, name, selfDebugID);\n    }, result);\n  } else {\n    traverseAllChildren(children, flattenSingleChildIntoContext, result);\n  }\n  return result;\n}\n\nmodule.exports = flattenChildren;\n}).call(this,require('_process'))\n},{\"./KeyEscapeUtils\":141,\"./traverseAllChildren\":243,\"_process\":112,\"fbjs/lib/warning\":111,\"react/lib/ReactComponentTreeHook\":255}],224:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\n/**\n * @param {array} arr an \"accumulation\" of items which is either an Array or\n * a single item. Useful when paired with the `accumulate` module. This is a\n * simple utility that allows us to reason about a collection of items, but\n * handling the case when there is exactly one item (and we do not need to\n * allocate an array).\n */\n\nfunction forEachAccumulated(arr, cb, scope) {\n  if (Array.isArray(arr)) {\n    arr.forEach(cb, scope);\n  } else if (arr) {\n    cb.call(scope, arr);\n  }\n}\n\nmodule.exports = forEachAccumulated;\n},{}],225:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\n/**\n * `charCode` represents the actual \"character code\" and is safe to use with\n * `String.fromCharCode`. As such, only keys that correspond to printable\n * characters produce a valid `charCode`, the only exception to this is Enter.\n * The Tab-key is considered non-printable and does not have a `charCode`,\n * presumably because it does not produce a tab-character in browsers.\n *\n * @param {object} nativeEvent Native browser event.\n * @return {number} Normalized `charCode` property.\n */\n\nfunction getEventCharCode(nativeEvent) {\n  var charCode;\n  var keyCode = nativeEvent.keyCode;\n\n  if ('charCode' in nativeEvent) {\n    charCode = nativeEvent.charCode;\n\n    // FF does not set `charCode` for the Enter-key, check against `keyCode`.\n    if (charCode === 0 && keyCode === 13) {\n      charCode = 13;\n    }\n  } else {\n    // IE8 does not implement `charCode`, but `keyCode` has the correct value.\n    charCode = keyCode;\n  }\n\n  // Some non-printable keys are reported in `charCode`/`keyCode`, discard them.\n  // Must not discard the (non-)printable Enter-key.\n  if (charCode >= 32 || charCode === 13) {\n    return charCode;\n  }\n\n  return 0;\n}\n\nmodule.exports = getEventCharCode;\n},{}],226:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar getEventCharCode = require('./getEventCharCode');\n\n/**\n * Normalization of deprecated HTML5 `key` values\n * @see https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent#Key_names\n */\nvar normalizeKey = {\n  'Esc': 'Escape',\n  'Spacebar': ' ',\n  'Left': 'ArrowLeft',\n  'Up': 'ArrowUp',\n  'Right': 'ArrowRight',\n  'Down': 'ArrowDown',\n  'Del': 'Delete',\n  'Win': 'OS',\n  'Menu': 'ContextMenu',\n  'Apps': 'ContextMenu',\n  'Scroll': 'ScrollLock',\n  'MozPrintableKey': 'Unidentified'\n};\n\n/**\n * Translation from legacy `keyCode` to HTML5 `key`\n * Only special keys supported, all others depend on keyboard layout or browser\n * @see https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent#Key_names\n */\nvar translateToKey = {\n  8: 'Backspace',\n  9: 'Tab',\n  12: 'Clear',\n  13: 'Enter',\n  16: 'Shift',\n  17: 'Control',\n  18: 'Alt',\n  19: 'Pause',\n  20: 'CapsLock',\n  27: 'Escape',\n  32: ' ',\n  33: 'PageUp',\n  34: 'PageDown',\n  35: 'End',\n  36: 'Home',\n  37: 'ArrowLeft',\n  38: 'ArrowUp',\n  39: 'ArrowRight',\n  40: 'ArrowDown',\n  45: 'Insert',\n  46: 'Delete',\n  112: 'F1', 113: 'F2', 114: 'F3', 115: 'F4', 116: 'F5', 117: 'F6',\n  118: 'F7', 119: 'F8', 120: 'F9', 121: 'F10', 122: 'F11', 123: 'F12',\n  144: 'NumLock',\n  145: 'ScrollLock',\n  224: 'Meta'\n};\n\n/**\n * @param {object} nativeEvent Native browser event.\n * @return {string} Normalized `key` property.\n */\nfunction getEventKey(nativeEvent) {\n  if (nativeEvent.key) {\n    // Normalize inconsistent values reported by browsers due to\n    // implementations of a working draft specification.\n\n    // FireFox implements `key` but returns `MozPrintableKey` for all\n    // printable characters (normalized to `Unidentified`), ignore it.\n    var key = normalizeKey[nativeEvent.key] || nativeEvent.key;\n    if (key !== 'Unidentified') {\n      return key;\n    }\n  }\n\n  // Browser does not implement `key`, polyfill as much of it as we can.\n  if (nativeEvent.type === 'keypress') {\n    var charCode = getEventCharCode(nativeEvent);\n\n    // The enter-key is technically both printable and non-printable and can\n    // thus be captured by `keypress`, no other non-printable key should.\n    return charCode === 13 ? 'Enter' : String.fromCharCode(charCode);\n  }\n  if (nativeEvent.type === 'keydown' || nativeEvent.type === 'keyup') {\n    // While user keyboard layout determines the actual meaning of each\n    // `keyCode` value, almost all function keys have a universal value.\n    return translateToKey[nativeEvent.keyCode] || 'Unidentified';\n  }\n  return '';\n}\n\nmodule.exports = getEventKey;\n},{\"./getEventCharCode\":225}],227:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\n/**\n * Translation from modifier key to the associated property in the event.\n * @see http://www.w3.org/TR/DOM-Level-3-Events/#keys-Modifiers\n */\n\nvar modifierKeyToProp = {\n  'Alt': 'altKey',\n  'Control': 'ctrlKey',\n  'Meta': 'metaKey',\n  'Shift': 'shiftKey'\n};\n\n// IE8 does not implement getModifierState so we simply map it to the only\n// modifier keys exposed by the event itself, does not support Lock-keys.\n// Currently, all major browsers except Chrome seems to support Lock-keys.\nfunction modifierStateGetter(keyArg) {\n  var syntheticEvent = this;\n  var nativeEvent = syntheticEvent.nativeEvent;\n  if (nativeEvent.getModifierState) {\n    return nativeEvent.getModifierState(keyArg);\n  }\n  var keyProp = modifierKeyToProp[keyArg];\n  return keyProp ? !!nativeEvent[keyProp] : false;\n}\n\nfunction getEventModifierState(nativeEvent) {\n  return modifierStateGetter;\n}\n\nmodule.exports = getEventModifierState;\n},{}],228:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\n/**\n * Gets the target node from a native browser event by accounting for\n * inconsistencies in browser DOM APIs.\n *\n * @param {object} nativeEvent Native browser event.\n * @return {DOMEventTarget} Target node.\n */\n\nfunction getEventTarget(nativeEvent) {\n  var target = nativeEvent.target || nativeEvent.srcElement || window;\n\n  // Normalize SVG <use> element events #4963\n  if (target.correspondingUseElement) {\n    target = target.correspondingUseElement;\n  }\n\n  // Safari may fire events on text nodes (Node.TEXT_NODE is 3).\n  // @see http://www.quirksmode.org/js/events_properties.html\n  return target.nodeType === 3 ? target.parentNode : target;\n}\n\nmodule.exports = getEventTarget;\n},{}],229:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ReactNodeTypes = require('./ReactNodeTypes');\n\nfunction getHostComponentFromComposite(inst) {\n  var type;\n\n  while ((type = inst._renderedNodeType) === ReactNodeTypes.COMPOSITE) {\n    inst = inst._renderedComponent;\n  }\n\n  if (type === ReactNodeTypes.HOST) {\n    return inst._renderedComponent;\n  } else if (type === ReactNodeTypes.EMPTY) {\n    return null;\n  }\n}\n\nmodule.exports = getHostComponentFromComposite;\n},{\"./ReactNodeTypes\":186}],230:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\n/* global Symbol */\n\nvar ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;\nvar FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.\n\n/**\n * Returns the iterator method function contained on the iterable object.\n *\n * Be sure to invoke the function with the iterable as context:\n *\n *     var iteratorFn = getIteratorFn(myIterable);\n *     if (iteratorFn) {\n *       var iterator = iteratorFn.call(myIterable);\n *       ...\n *     }\n *\n * @param {?object} maybeIterable\n * @return {?function}\n */\nfunction getIteratorFn(maybeIterable) {\n  var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);\n  if (typeof iteratorFn === 'function') {\n    return iteratorFn;\n  }\n}\n\nmodule.exports = getIteratorFn;\n},{}],231:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\n/**\n * Given any node return the first leaf node without children.\n *\n * @param {DOMElement|DOMTextNode} node\n * @return {DOMElement|DOMTextNode}\n */\n\nfunction getLeafNode(node) {\n  while (node && node.firstChild) {\n    node = node.firstChild;\n  }\n  return node;\n}\n\n/**\n * Get the next sibling within a container. This will walk up the\n * DOM if a node's siblings have been exhausted.\n *\n * @param {DOMElement|DOMTextNode} node\n * @return {?DOMElement|DOMTextNode}\n */\nfunction getSiblingNode(node) {\n  while (node) {\n    if (node.nextSibling) {\n      return node.nextSibling;\n    }\n    node = node.parentNode;\n  }\n}\n\n/**\n * Get object describing the nodes which contain characters at offset.\n *\n * @param {DOMElement|DOMTextNode} root\n * @param {number} offset\n * @return {?object}\n */\nfunction getNodeForCharacterOffset(root, offset) {\n  var node = getLeafNode(root);\n  var nodeStart = 0;\n  var nodeEnd = 0;\n\n  while (node) {\n    if (node.nodeType === 3) {\n      nodeEnd = nodeStart + node.textContent.length;\n\n      if (nodeStart <= offset && nodeEnd >= offset) {\n        return {\n          node: node,\n          offset: offset - nodeStart\n        };\n      }\n\n      nodeStart = nodeEnd;\n    }\n\n    node = getLeafNode(getSiblingNode(node));\n  }\n}\n\nmodule.exports = getNodeForCharacterOffset;\n},{}],232:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\n\nvar contentKey = null;\n\n/**\n * Gets the key used to access text content on a DOM node.\n *\n * @return {?string} Key used to access text content.\n * @internal\n */\nfunction getTextContentAccessor() {\n  if (!contentKey && ExecutionEnvironment.canUseDOM) {\n    // Prefer textContent to innerText because many browsers support both but\n    // SVG <text> elements don't support innerText even when <div> does.\n    contentKey = 'textContent' in document.documentElement ? 'textContent' : 'innerText';\n  }\n  return contentKey;\n}\n\nmodule.exports = getTextContentAccessor;\n},{\"fbjs/lib/ExecutionEnvironment\":90}],233:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\n\n/**\n * Generate a mapping of standard vendor prefixes using the defined style property and event name.\n *\n * @param {string} styleProp\n * @param {string} eventName\n * @returns {object}\n */\nfunction makePrefixMap(styleProp, eventName) {\n  var prefixes = {};\n\n  prefixes[styleProp.toLowerCase()] = eventName.toLowerCase();\n  prefixes['Webkit' + styleProp] = 'webkit' + eventName;\n  prefixes['Moz' + styleProp] = 'moz' + eventName;\n  prefixes['ms' + styleProp] = 'MS' + eventName;\n  prefixes['O' + styleProp] = 'o' + eventName.toLowerCase();\n\n  return prefixes;\n}\n\n/**\n * A list of event names to a configurable list of vendor prefixes.\n */\nvar vendorPrefixes = {\n  animationend: makePrefixMap('Animation', 'AnimationEnd'),\n  animationiteration: makePrefixMap('Animation', 'AnimationIteration'),\n  animationstart: makePrefixMap('Animation', 'AnimationStart'),\n  transitionend: makePrefixMap('Transition', 'TransitionEnd')\n};\n\n/**\n * Event names that have already been detected and prefixed (if applicable).\n */\nvar prefixedEventNames = {};\n\n/**\n * Element to check for prefixes on.\n */\nvar style = {};\n\n/**\n * Bootstrap if a DOM exists.\n */\nif (ExecutionEnvironment.canUseDOM) {\n  style = document.createElement('div').style;\n\n  // On some platforms, in particular some releases of Android 4.x,\n  // the un-prefixed \"animation\" and \"transition\" properties are defined on the\n  // style object but the events that fire will still be prefixed, so we need\n  // to check if the un-prefixed events are usable, and if not remove them from the map.\n  if (!('AnimationEvent' in window)) {\n    delete vendorPrefixes.animationend.animation;\n    delete vendorPrefixes.animationiteration.animation;\n    delete vendorPrefixes.animationstart.animation;\n  }\n\n  // Same as above\n  if (!('TransitionEvent' in window)) {\n    delete vendorPrefixes.transitionend.transition;\n  }\n}\n\n/**\n * Attempts to determine the correct vendor prefixed event name.\n *\n * @param {string} eventName\n * @returns {string}\n */\nfunction getVendorPrefixedEventName(eventName) {\n  if (prefixedEventNames[eventName]) {\n    return prefixedEventNames[eventName];\n  } else if (!vendorPrefixes[eventName]) {\n    return eventName;\n  }\n\n  var prefixMap = vendorPrefixes[eventName];\n\n  for (var styleProp in prefixMap) {\n    if (prefixMap.hasOwnProperty(styleProp) && styleProp in style) {\n      return prefixedEventNames[eventName] = prefixMap[styleProp];\n    }\n  }\n\n  return '';\n}\n\nmodule.exports = getVendorPrefixedEventName;\n},{\"fbjs/lib/ExecutionEnvironment\":90}],234:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant'),\n    _assign = require('object-assign');\n\nvar ReactCompositeComponent = require('./ReactCompositeComponent');\nvar ReactEmptyComponent = require('./ReactEmptyComponent');\nvar ReactHostComponent = require('./ReactHostComponent');\n\nvar getNextDebugID = require('react/lib/getNextDebugID');\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\n// To avoid a cyclic dependency, we create the final class in this module\nvar ReactCompositeComponentWrapper = function (element) {\n  this.construct(element);\n};\n\nfunction getDeclarationErrorAddendum(owner) {\n  if (owner) {\n    var name = owner.getName();\n    if (name) {\n      return ' Check the render method of `' + name + '`.';\n    }\n  }\n  return '';\n}\n\n/**\n * Check if the type reference is a known internal type. I.e. not a user\n * provided composite type.\n *\n * @param {function} type\n * @return {boolean} Returns true if this is a valid internal type.\n */\nfunction isInternalComponentType(type) {\n  return typeof type === 'function' && typeof type.prototype !== 'undefined' && typeof type.prototype.mountComponent === 'function' && typeof type.prototype.receiveComponent === 'function';\n}\n\n/**\n * Given a ReactNode, create an instance that will actually be mounted.\n *\n * @param {ReactNode} node\n * @param {boolean} shouldHaveDebugID\n * @return {object} A new instance of the element's constructor.\n * @protected\n */\nfunction instantiateReactComponent(node, shouldHaveDebugID) {\n  var instance;\n\n  if (node === null || node === false) {\n    instance = ReactEmptyComponent.create(instantiateReactComponent);\n  } else if (typeof node === 'object') {\n    var element = node;\n    var type = element.type;\n    if (typeof type !== 'function' && typeof type !== 'string') {\n      var info = '';\n      if (process.env.NODE_ENV !== 'production') {\n        if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {\n          info += ' You likely forgot to export your component from the file ' + 'it\\'s defined in.';\n        }\n      }\n      info += getDeclarationErrorAddendum(element._owner);\n      !false ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Element type is invalid: expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s', type == null ? type : typeof type, info) : _prodInvariant('130', type == null ? type : typeof type, info) : void 0;\n    }\n\n    // Special case string values\n    if (typeof element.type === 'string') {\n      instance = ReactHostComponent.createInternalComponent(element);\n    } else if (isInternalComponentType(element.type)) {\n      // This is temporarily available for custom components that are not string\n      // representations. I.e. ART. Once those are updated to use the string\n      // representation, we can drop this code path.\n      instance = new element.type(element);\n\n      // We renamed this. Allow the old name for compat. :(\n      if (!instance.getHostNode) {\n        instance.getHostNode = instance.getNativeNode;\n      }\n    } else {\n      instance = new ReactCompositeComponentWrapper(element);\n    }\n  } else if (typeof node === 'string' || typeof node === 'number') {\n    instance = ReactHostComponent.createInstanceForText(node);\n  } else {\n    !false ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Encountered invalid React node of type %s', typeof node) : _prodInvariant('131', typeof node) : void 0;\n  }\n\n  if (process.env.NODE_ENV !== 'production') {\n    process.env.NODE_ENV !== 'production' ? warning(typeof instance.mountComponent === 'function' && typeof instance.receiveComponent === 'function' && typeof instance.getHostNode === 'function' && typeof instance.unmountComponent === 'function', 'Only React Components can be mounted.') : void 0;\n  }\n\n  // These two fields are used by the DOM and ART diffing algorithms\n  // respectively. Instead of using expandos on components, we should be\n  // storing the state needed by the diffing algorithms elsewhere.\n  instance._mountIndex = 0;\n  instance._mountImage = null;\n\n  if (process.env.NODE_ENV !== 'production') {\n    instance._debugID = shouldHaveDebugID ? getNextDebugID() : 0;\n  }\n\n  // Internal instances should fully constructed at this point, so they should\n  // not get any new fields added to them at this point.\n  if (process.env.NODE_ENV !== 'production') {\n    if (Object.preventExtensions) {\n      Object.preventExtensions(instance);\n    }\n  }\n\n  return instance;\n}\n\n_assign(ReactCompositeComponentWrapper.prototype, ReactCompositeComponent, {\n  _instantiateReactComponent: instantiateReactComponent\n});\n\nmodule.exports = instantiateReactComponent;\n}).call(this,require('_process'))\n},{\"./ReactCompositeComponent\":148,\"./ReactEmptyComponent\":171,\"./ReactHostComponent\":176,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111,\"object-assign\":114,\"react/lib/getNextDebugID\":270}],235:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\n\nvar useHasFeature;\nif (ExecutionEnvironment.canUseDOM) {\n  useHasFeature = document.implementation && document.implementation.hasFeature &&\n  // always returns true in newer browsers as per the standard.\n  // @see http://dom.spec.whatwg.org/#dom-domimplementation-hasfeature\n  document.implementation.hasFeature('', '') !== true;\n}\n\n/**\n * Checks if an event is supported in the current execution environment.\n *\n * NOTE: This will not work correctly for non-generic events such as `change`,\n * `reset`, `load`, `error`, and `select`.\n *\n * Borrows from Modernizr.\n *\n * @param {string} eventNameSuffix Event name, e.g. \"click\".\n * @param {?boolean} capture Check if the capture phase is supported.\n * @return {boolean} True if the event is supported.\n * @internal\n * @license Modernizr 3.0.0pre (Custom Build) | MIT\n */\nfunction isEventSupported(eventNameSuffix, capture) {\n  if (!ExecutionEnvironment.canUseDOM || capture && !('addEventListener' in document)) {\n    return false;\n  }\n\n  var eventName = 'on' + eventNameSuffix;\n  var isSupported = eventName in document;\n\n  if (!isSupported) {\n    var element = document.createElement('div');\n    element.setAttribute(eventName, 'return;');\n    isSupported = typeof element[eventName] === 'function';\n  }\n\n  if (!isSupported && useHasFeature && eventNameSuffix === 'wheel') {\n    // This is the only way to test support for the `wheel` event in IE9+.\n    isSupported = document.implementation.hasFeature('Events.wheel', '3.0');\n  }\n\n  return isSupported;\n}\n\nmodule.exports = isEventSupported;\n},{\"fbjs/lib/ExecutionEnvironment\":90}],236:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\n/**\n * @see http://www.whatwg.org/specs/web-apps/current-work/multipage/the-input-element.html#input-type-attr-summary\n */\n\nvar supportedInputTypes = {\n  'color': true,\n  'date': true,\n  'datetime': true,\n  'datetime-local': true,\n  'email': true,\n  'month': true,\n  'number': true,\n  'password': true,\n  'range': true,\n  'search': true,\n  'tel': true,\n  'text': true,\n  'time': true,\n  'url': true,\n  'week': true\n};\n\nfunction isTextInputElement(elem) {\n  var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();\n\n  if (nodeName === 'input') {\n    return !!supportedInputTypes[elem.type];\n  }\n\n  if (nodeName === 'textarea') {\n    return true;\n  }\n\n  return false;\n}\n\nmodule.exports = isTextInputElement;\n},{}],237:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar escapeTextContentForBrowser = require('./escapeTextContentForBrowser');\n\n/**\n * Escapes attribute value to prevent scripting attacks.\n *\n * @param {*} value Value to escape.\n * @return {string} An escaped string.\n */\nfunction quoteAttributeValueForBrowser(value) {\n  return '\"' + escapeTextContentForBrowser(value) + '\"';\n}\n\nmodule.exports = quoteAttributeValueForBrowser;\n},{\"./escapeTextContentForBrowser\":221}],238:[function(require,module,exports){\n/**\n * Copyright (c) 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n'use strict';\n\n/**\n * WARNING: DO NOT manually require this module.\n * This is a replacement for `invariant(...)` used by the error code system\n * and will _only_ be required by the corresponding babel pass.\n * It always throws.\n */\n\nfunction reactProdInvariant(code) {\n  var argCount = arguments.length - 1;\n\n  var message = 'Minified React error #' + code + '; visit ' + 'http://facebook.github.io/react/docs/error-decoder.html?invariant=' + code;\n\n  for (var argIdx = 0; argIdx < argCount; argIdx++) {\n    message += '&args[]=' + encodeURIComponent(arguments[argIdx + 1]);\n  }\n\n  message += ' for the full message or use the non-minified dev environment' + ' for full errors and additional helpful warnings.';\n\n  var error = new Error(message);\n  error.name = 'Invariant Violation';\n  error.framesToPop = 1; // we don't care about reactProdInvariant's own frame\n\n  throw error;\n}\n\nmodule.exports = reactProdInvariant;\n},{}],239:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ReactMount = require('./ReactMount');\n\nmodule.exports = ReactMount.renderSubtreeIntoContainer;\n},{\"./ReactMount\":184}],240:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\nvar DOMNamespaces = require('./DOMNamespaces');\n\nvar WHITESPACE_TEST = /^[ \\r\\n\\t\\f]/;\nvar NONVISIBLE_TEST = /<(!--|link|noscript|meta|script|style)[ \\r\\n\\t\\f\\/>]/;\n\nvar createMicrosoftUnsafeLocalFunction = require('./createMicrosoftUnsafeLocalFunction');\n\n// SVG temp container for IE lacking innerHTML\nvar reusableSVGContainer;\n\n/**\n * Set the innerHTML property of a node, ensuring that whitespace is preserved\n * even in IE8.\n *\n * @param {DOMElement} node\n * @param {string} html\n * @internal\n */\nvar setInnerHTML = createMicrosoftUnsafeLocalFunction(function (node, html) {\n  // IE does not have innerHTML for SVG nodes, so instead we inject the\n  // new markup in a temp node and then move the child nodes across into\n  // the target node\n  if (node.namespaceURI === DOMNamespaces.svg && !('innerHTML' in node)) {\n    reusableSVGContainer = reusableSVGContainer || document.createElement('div');\n    reusableSVGContainer.innerHTML = '<svg>' + html + '</svg>';\n    var svgNode = reusableSVGContainer.firstChild;\n    while (svgNode.firstChild) {\n      node.appendChild(svgNode.firstChild);\n    }\n  } else {\n    node.innerHTML = html;\n  }\n});\n\nif (ExecutionEnvironment.canUseDOM) {\n  // IE8: When updating a just created node with innerHTML only leading\n  // whitespace is removed. When updating an existing node with innerHTML\n  // whitespace in root TextNodes is also collapsed.\n  // @see quirksmode.org/bugreports/archives/2004/11/innerhtml_and_t.html\n\n  // Feature detection; only IE8 is known to behave improperly like this.\n  var testElement = document.createElement('div');\n  testElement.innerHTML = ' ';\n  if (testElement.innerHTML === '') {\n    setInnerHTML = function (node, html) {\n      // Magic theory: IE8 supposedly differentiates between added and updated\n      // nodes when processing innerHTML, innerHTML on updated nodes suffers\n      // from worse whitespace behavior. Re-adding a node like this triggers\n      // the initial and more favorable whitespace behavior.\n      // TODO: What to do on a detached node?\n      if (node.parentNode) {\n        node.parentNode.replaceChild(node, node);\n      }\n\n      // We also implement a workaround for non-visible tags disappearing into\n      // thin air on IE8, this only happens if there is no visible text\n      // in-front of the non-visible tags. Piggyback on the whitespace fix\n      // and simply check if any non-visible tags appear in the source.\n      if (WHITESPACE_TEST.test(html) || html[0] === '<' && NONVISIBLE_TEST.test(html)) {\n        // Recover leading whitespace by temporarily prepending any character.\n        // \\uFEFF has the potential advantage of being zero-width/invisible.\n        // UglifyJS drops U+FEFF chars when parsing, so use String.fromCharCode\n        // in hopes that this is preserved even if \"\\uFEFF\" is transformed to\n        // the actual Unicode character (by Babel, for example).\n        // https://github.com/mishoo/UglifyJS2/blob/v2.4.20/lib/parse.js#L216\n        node.innerHTML = String.fromCharCode(0xFEFF) + html;\n\n        // deleteData leaves an empty `TextNode` which offsets the index of all\n        // children. Definitely want to avoid this.\n        var textNode = node.firstChild;\n        if (textNode.data.length === 1) {\n          node.removeChild(textNode);\n        } else {\n          textNode.deleteData(0, 1);\n        }\n      } else {\n        node.innerHTML = html;\n      }\n    };\n  }\n  testElement = null;\n}\n\nmodule.exports = setInnerHTML;\n},{\"./DOMNamespaces\":129,\"./createMicrosoftUnsafeLocalFunction\":219,\"fbjs/lib/ExecutionEnvironment\":90}],241:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ExecutionEnvironment = require('fbjs/lib/ExecutionEnvironment');\nvar escapeTextContentForBrowser = require('./escapeTextContentForBrowser');\nvar setInnerHTML = require('./setInnerHTML');\n\n/**\n * Set the textContent property of a node, ensuring that whitespace is preserved\n * even in IE8. innerText is a poor substitute for textContent and, among many\n * issues, inserts <br> instead of the literal newline chars. innerHTML behaves\n * as it should.\n *\n * @param {DOMElement} node\n * @param {string} text\n * @internal\n */\nvar setTextContent = function (node, text) {\n  if (text) {\n    var firstChild = node.firstChild;\n\n    if (firstChild && firstChild === node.lastChild && firstChild.nodeType === 3) {\n      firstChild.nodeValue = text;\n      return;\n    }\n  }\n  node.textContent = text;\n};\n\nif (ExecutionEnvironment.canUseDOM) {\n  if (!('textContent' in document.documentElement)) {\n    setTextContent = function (node, text) {\n      if (node.nodeType === 3) {\n        node.nodeValue = text;\n        return;\n      }\n      setInnerHTML(node, escapeTextContentForBrowser(text));\n    };\n  }\n}\n\nmodule.exports = setTextContent;\n},{\"./escapeTextContentForBrowser\":221,\"./setInnerHTML\":240,\"fbjs/lib/ExecutionEnvironment\":90}],242:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\n/**\n * Given a `prevElement` and `nextElement`, determines if the existing\n * instance should be updated as opposed to being destroyed or replaced by a new\n * instance. Both arguments are elements. This ensures that this logic can\n * operate on stateless trees without any backing instance.\n *\n * @param {?object} prevElement\n * @param {?object} nextElement\n * @return {boolean} True if the existing instance should be updated.\n * @protected\n */\n\nfunction shouldUpdateReactComponent(prevElement, nextElement) {\n  var prevEmpty = prevElement === null || prevElement === false;\n  var nextEmpty = nextElement === null || nextElement === false;\n  if (prevEmpty || nextEmpty) {\n    return prevEmpty === nextEmpty;\n  }\n\n  var prevType = typeof prevElement;\n  var nextType = typeof nextElement;\n  if (prevType === 'string' || prevType === 'number') {\n    return nextType === 'string' || nextType === 'number';\n  } else {\n    return nextType === 'object' && prevElement.type === nextElement.type && prevElement.key === nextElement.key;\n  }\n}\n\nmodule.exports = shouldUpdateReactComponent;\n},{}],243:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar ReactCurrentOwner = require('react/lib/ReactCurrentOwner');\nvar REACT_ELEMENT_TYPE = require('./ReactElementSymbol');\n\nvar getIteratorFn = require('./getIteratorFn');\nvar invariant = require('fbjs/lib/invariant');\nvar KeyEscapeUtils = require('./KeyEscapeUtils');\nvar warning = require('fbjs/lib/warning');\n\nvar SEPARATOR = '.';\nvar SUBSEPARATOR = ':';\n\n/**\n * This is inlined from ReactElement since this file is shared between\n * isomorphic and renderers. We could extract this to a\n *\n */\n\n/**\n * TODO: Test that a single child and an array with one item have the same key\n * pattern.\n */\n\nvar didWarnAboutMaps = false;\n\n/**\n * Generate a key string that identifies a component within a set.\n *\n * @param {*} component A component that could contain a manual key.\n * @param {number} index Index that is used if a manual key is not provided.\n * @return {string}\n */\nfunction getComponentKey(component, index) {\n  // Do some typechecking here since we call this blindly. We want to ensure\n  // that we don't block potential future ES APIs.\n  if (component && typeof component === 'object' && component.key != null) {\n    // Explicit key\n    return KeyEscapeUtils.escape(component.key);\n  }\n  // Implicit key determined by the index in the set\n  return index.toString(36);\n}\n\n/**\n * @param {?*} children Children tree container.\n * @param {!string} nameSoFar Name of the key path so far.\n * @param {!function} callback Callback to invoke with each child found.\n * @param {?*} traverseContext Used to pass information throughout the traversal\n * process.\n * @return {!number} The number of children in this subtree.\n */\nfunction traverseAllChildrenImpl(children, nameSoFar, callback, traverseContext) {\n  var type = typeof children;\n\n  if (type === 'undefined' || type === 'boolean') {\n    // All of the above are perceived as null.\n    children = null;\n  }\n\n  if (children === null || type === 'string' || type === 'number' ||\n  // The following is inlined from ReactElement. This means we can optimize\n  // some checks. React Fiber also inlines this logic for similar purposes.\n  type === 'object' && children.$$typeof === REACT_ELEMENT_TYPE) {\n    callback(traverseContext, children,\n    // If it's the only child, treat the name as if it was wrapped in an array\n    // so that it's consistent if the number of children grows.\n    nameSoFar === '' ? SEPARATOR + getComponentKey(children, 0) : nameSoFar);\n    return 1;\n  }\n\n  var child;\n  var nextName;\n  var subtreeCount = 0; // Count of children found in the current subtree.\n  var nextNamePrefix = nameSoFar === '' ? SEPARATOR : nameSoFar + SUBSEPARATOR;\n\n  if (Array.isArray(children)) {\n    for (var i = 0; i < children.length; i++) {\n      child = children[i];\n      nextName = nextNamePrefix + getComponentKey(child, i);\n      subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);\n    }\n  } else {\n    var iteratorFn = getIteratorFn(children);\n    if (iteratorFn) {\n      var iterator = iteratorFn.call(children);\n      var step;\n      if (iteratorFn !== children.entries) {\n        var ii = 0;\n        while (!(step = iterator.next()).done) {\n          child = step.value;\n          nextName = nextNamePrefix + getComponentKey(child, ii++);\n          subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);\n        }\n      } else {\n        if (process.env.NODE_ENV !== 'production') {\n          var mapsAsChildrenAddendum = '';\n          if (ReactCurrentOwner.current) {\n            var mapsAsChildrenOwnerName = ReactCurrentOwner.current.getName();\n            if (mapsAsChildrenOwnerName) {\n              mapsAsChildrenAddendum = ' Check the render method of `' + mapsAsChildrenOwnerName + '`.';\n            }\n          }\n          process.env.NODE_ENV !== 'production' ? warning(didWarnAboutMaps, 'Using Maps as children is not yet fully supported. It is an ' + 'experimental feature that might be removed. Convert it to a ' + 'sequence / iterable of keyed ReactElements instead.%s', mapsAsChildrenAddendum) : void 0;\n          didWarnAboutMaps = true;\n        }\n        // Iterator will provide entry [k,v] tuples rather than values.\n        while (!(step = iterator.next()).done) {\n          var entry = step.value;\n          if (entry) {\n            child = entry[1];\n            nextName = nextNamePrefix + KeyEscapeUtils.escape(entry[0]) + SUBSEPARATOR + getComponentKey(child, 0);\n            subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);\n          }\n        }\n      }\n    } else if (type === 'object') {\n      var addendum = '';\n      if (process.env.NODE_ENV !== 'production') {\n        addendum = ' If you meant to render a collection of children, use an array ' + 'instead or wrap the object using createFragment(object) from the ' + 'React add-ons.';\n        if (children._isReactElement) {\n          addendum = ' It looks like you\\'re using an element created by a different ' + 'version of React. Make sure to use only one copy of React.';\n        }\n        if (ReactCurrentOwner.current) {\n          var name = ReactCurrentOwner.current.getName();\n          if (name) {\n            addendum += ' Check the render method of `' + name + '`.';\n          }\n        }\n      }\n      var childrenString = String(children);\n      !false ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Objects are not valid as a React child (found: %s).%s', childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString, addendum) : _prodInvariant('31', childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString, addendum) : void 0;\n    }\n  }\n\n  return subtreeCount;\n}\n\n/**\n * Traverses children that are typically specified as `props.children`, but\n * might also be specified through attributes:\n *\n * - `traverseAllChildren(this.props.children, ...)`\n * - `traverseAllChildren(this.props.leftPanelChildren, ...)`\n *\n * The `traverseContext` is an optional argument that is passed through the\n * entire traversal. It can be used to store accumulations or anything else that\n * the callback might find relevant.\n *\n * @param {?*} children Children tree object.\n * @param {!function} callback To invoke upon traversing each child.\n * @param {?*} traverseContext Context for traversal.\n * @return {!number} The number of children in this subtree.\n */\nfunction traverseAllChildren(children, callback, traverseContext) {\n  if (children == null) {\n    return 0;\n  }\n\n  return traverseAllChildrenImpl(children, '', callback, traverseContext);\n}\n\nmodule.exports = traverseAllChildren;\n}).call(this,require('_process'))\n},{\"./KeyEscapeUtils\":141,\"./ReactElementSymbol\":170,\"./getIteratorFn\":230,\"./reactProdInvariant\":238,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111,\"react/lib/ReactCurrentOwner\":256}],244:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar emptyFunction = require('fbjs/lib/emptyFunction');\nvar warning = require('fbjs/lib/warning');\n\nvar validateDOMNesting = emptyFunction;\n\nif (process.env.NODE_ENV !== 'production') {\n  // This validation code was written based on the HTML5 parsing spec:\n  // https://html.spec.whatwg.org/multipage/syntax.html#has-an-element-in-scope\n  //\n  // Note: this does not catch all invalid nesting, nor does it try to (as it's\n  // not clear what practical benefit doing so provides); instead, we warn only\n  // for cases where the parser will give a parse tree differing from what React\n  // intended. For example, <b><div></div></b> is invalid but we don't warn\n  // because it still parses correctly; we do warn for other cases like nested\n  // <p> tags where the beginning of the second element implicitly closes the\n  // first, causing a confusing mess.\n\n  // https://html.spec.whatwg.org/multipage/syntax.html#special\n  var specialTags = ['address', 'applet', 'area', 'article', 'aside', 'base', 'basefont', 'bgsound', 'blockquote', 'body', 'br', 'button', 'caption', 'center', 'col', 'colgroup', 'dd', 'details', 'dir', 'div', 'dl', 'dt', 'embed', 'fieldset', 'figcaption', 'figure', 'footer', 'form', 'frame', 'frameset', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'head', 'header', 'hgroup', 'hr', 'html', 'iframe', 'img', 'input', 'isindex', 'li', 'link', 'listing', 'main', 'marquee', 'menu', 'menuitem', 'meta', 'nav', 'noembed', 'noframes', 'noscript', 'object', 'ol', 'p', 'param', 'plaintext', 'pre', 'script', 'section', 'select', 'source', 'style', 'summary', 'table', 'tbody', 'td', 'template', 'textarea', 'tfoot', 'th', 'thead', 'title', 'tr', 'track', 'ul', 'wbr', 'xmp'];\n\n  // https://html.spec.whatwg.org/multipage/syntax.html#has-an-element-in-scope\n  var inScopeTags = ['applet', 'caption', 'html', 'table', 'td', 'th', 'marquee', 'object', 'template',\n\n  // https://html.spec.whatwg.org/multipage/syntax.html#html-integration-point\n  // TODO: Distinguish by namespace here -- for <title>, including it here\n  // errs on the side of fewer warnings\n  'foreignObject', 'desc', 'title'];\n\n  // https://html.spec.whatwg.org/multipage/syntax.html#has-an-element-in-button-scope\n  var buttonScopeTags = inScopeTags.concat(['button']);\n\n  // https://html.spec.whatwg.org/multipage/syntax.html#generate-implied-end-tags\n  var impliedEndTags = ['dd', 'dt', 'li', 'option', 'optgroup', 'p', 'rp', 'rt'];\n\n  var emptyAncestorInfo = {\n    current: null,\n\n    formTag: null,\n    aTagInScope: null,\n    buttonTagInScope: null,\n    nobrTagInScope: null,\n    pTagInButtonScope: null,\n\n    listItemTagAutoclosing: null,\n    dlItemTagAutoclosing: null\n  };\n\n  var updatedAncestorInfo = function (oldInfo, tag, instance) {\n    var ancestorInfo = _assign({}, oldInfo || emptyAncestorInfo);\n    var info = { tag: tag, instance: instance };\n\n    if (inScopeTags.indexOf(tag) !== -1) {\n      ancestorInfo.aTagInScope = null;\n      ancestorInfo.buttonTagInScope = null;\n      ancestorInfo.nobrTagInScope = null;\n    }\n    if (buttonScopeTags.indexOf(tag) !== -1) {\n      ancestorInfo.pTagInButtonScope = null;\n    }\n\n    // See rules for 'li', 'dd', 'dt' start tags in\n    // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inbody\n    if (specialTags.indexOf(tag) !== -1 && tag !== 'address' && tag !== 'div' && tag !== 'p') {\n      ancestorInfo.listItemTagAutoclosing = null;\n      ancestorInfo.dlItemTagAutoclosing = null;\n    }\n\n    ancestorInfo.current = info;\n\n    if (tag === 'form') {\n      ancestorInfo.formTag = info;\n    }\n    if (tag === 'a') {\n      ancestorInfo.aTagInScope = info;\n    }\n    if (tag === 'button') {\n      ancestorInfo.buttonTagInScope = info;\n    }\n    if (tag === 'nobr') {\n      ancestorInfo.nobrTagInScope = info;\n    }\n    if (tag === 'p') {\n      ancestorInfo.pTagInButtonScope = info;\n    }\n    if (tag === 'li') {\n      ancestorInfo.listItemTagAutoclosing = info;\n    }\n    if (tag === 'dd' || tag === 'dt') {\n      ancestorInfo.dlItemTagAutoclosing = info;\n    }\n\n    return ancestorInfo;\n  };\n\n  /**\n   * Returns whether\n   */\n  var isTagValidWithParent = function (tag, parentTag) {\n    // First, let's check if we're in an unusual parsing mode...\n    switch (parentTag) {\n      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inselect\n      case 'select':\n        return tag === 'option' || tag === 'optgroup' || tag === '#text';\n      case 'optgroup':\n        return tag === 'option' || tag === '#text';\n      // Strictly speaking, seeing an <option> doesn't mean we're in a <select>\n      // but\n      case 'option':\n        return tag === '#text';\n\n      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-intd\n      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-incaption\n      // No special behavior since these rules fall back to \"in body\" mode for\n      // all except special table nodes which cause bad parsing behavior anyway.\n\n      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-intr\n      case 'tr':\n        return tag === 'th' || tag === 'td' || tag === 'style' || tag === 'script' || tag === 'template';\n\n      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-intbody\n      case 'tbody':\n      case 'thead':\n      case 'tfoot':\n        return tag === 'tr' || tag === 'style' || tag === 'script' || tag === 'template';\n\n      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-incolgroup\n      case 'colgroup':\n        return tag === 'col' || tag === 'template';\n\n      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-intable\n      case 'table':\n        return tag === 'caption' || tag === 'colgroup' || tag === 'tbody' || tag === 'tfoot' || tag === 'thead' || tag === 'style' || tag === 'script' || tag === 'template';\n\n      // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inhead\n      case 'head':\n        return tag === 'base' || tag === 'basefont' || tag === 'bgsound' || tag === 'link' || tag === 'meta' || tag === 'title' || tag === 'noscript' || tag === 'noframes' || tag === 'style' || tag === 'script' || tag === 'template';\n\n      // https://html.spec.whatwg.org/multipage/semantics.html#the-html-element\n      case 'html':\n        return tag === 'head' || tag === 'body';\n      case '#document':\n        return tag === 'html';\n    }\n\n    // Probably in the \"in body\" parsing mode, so we outlaw only tag combos\n    // where the parsing rules cause implicit opens or closes to be added.\n    // https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inbody\n    switch (tag) {\n      case 'h1':\n      case 'h2':\n      case 'h3':\n      case 'h4':\n      case 'h5':\n      case 'h6':\n        return parentTag !== 'h1' && parentTag !== 'h2' && parentTag !== 'h3' && parentTag !== 'h4' && parentTag !== 'h5' && parentTag !== 'h6';\n\n      case 'rp':\n      case 'rt':\n        return impliedEndTags.indexOf(parentTag) === -1;\n\n      case 'body':\n      case 'caption':\n      case 'col':\n      case 'colgroup':\n      case 'frame':\n      case 'head':\n      case 'html':\n      case 'tbody':\n      case 'td':\n      case 'tfoot':\n      case 'th':\n      case 'thead':\n      case 'tr':\n        // These tags are only valid with a few parents that have special child\n        // parsing rules -- if we're down here, then none of those matched and\n        // so we allow it only if we don't know what the parent is, as all other\n        // cases are invalid.\n        return parentTag == null;\n    }\n\n    return true;\n  };\n\n  /**\n   * Returns whether\n   */\n  var findInvalidAncestorForTag = function (tag, ancestorInfo) {\n    switch (tag) {\n      case 'address':\n      case 'article':\n      case 'aside':\n      case 'blockquote':\n      case 'center':\n      case 'details':\n      case 'dialog':\n      case 'dir':\n      case 'div':\n      case 'dl':\n      case 'fieldset':\n      case 'figcaption':\n      case 'figure':\n      case 'footer':\n      case 'header':\n      case 'hgroup':\n      case 'main':\n      case 'menu':\n      case 'nav':\n      case 'ol':\n      case 'p':\n      case 'section':\n      case 'summary':\n      case 'ul':\n      case 'pre':\n      case 'listing':\n      case 'table':\n      case 'hr':\n      case 'xmp':\n      case 'h1':\n      case 'h2':\n      case 'h3':\n      case 'h4':\n      case 'h5':\n      case 'h6':\n        return ancestorInfo.pTagInButtonScope;\n\n      case 'form':\n        return ancestorInfo.formTag || ancestorInfo.pTagInButtonScope;\n\n      case 'li':\n        return ancestorInfo.listItemTagAutoclosing;\n\n      case 'dd':\n      case 'dt':\n        return ancestorInfo.dlItemTagAutoclosing;\n\n      case 'button':\n        return ancestorInfo.buttonTagInScope;\n\n      case 'a':\n        // Spec says something about storing a list of markers, but it sounds\n        // equivalent to this check.\n        return ancestorInfo.aTagInScope;\n\n      case 'nobr':\n        return ancestorInfo.nobrTagInScope;\n    }\n\n    return null;\n  };\n\n  /**\n   * Given a ReactCompositeComponent instance, return a list of its recursive\n   * owners, starting at the root and ending with the instance itself.\n   */\n  var findOwnerStack = function (instance) {\n    if (!instance) {\n      return [];\n    }\n\n    var stack = [];\n    do {\n      stack.push(instance);\n    } while (instance = instance._currentElement._owner);\n    stack.reverse();\n    return stack;\n  };\n\n  var didWarn = {};\n\n  validateDOMNesting = function (childTag, childText, childInstance, ancestorInfo) {\n    ancestorInfo = ancestorInfo || emptyAncestorInfo;\n    var parentInfo = ancestorInfo.current;\n    var parentTag = parentInfo && parentInfo.tag;\n\n    if (childText != null) {\n      process.env.NODE_ENV !== 'production' ? warning(childTag == null, 'validateDOMNesting: when childText is passed, childTag should be null') : void 0;\n      childTag = '#text';\n    }\n\n    var invalidParent = isTagValidWithParent(childTag, parentTag) ? null : parentInfo;\n    var invalidAncestor = invalidParent ? null : findInvalidAncestorForTag(childTag, ancestorInfo);\n    var problematic = invalidParent || invalidAncestor;\n\n    if (problematic) {\n      var ancestorTag = problematic.tag;\n      var ancestorInstance = problematic.instance;\n\n      var childOwner = childInstance && childInstance._currentElement._owner;\n      var ancestorOwner = ancestorInstance && ancestorInstance._currentElement._owner;\n\n      var childOwners = findOwnerStack(childOwner);\n      var ancestorOwners = findOwnerStack(ancestorOwner);\n\n      var minStackLen = Math.min(childOwners.length, ancestorOwners.length);\n      var i;\n\n      var deepestCommon = -1;\n      for (i = 0; i < minStackLen; i++) {\n        if (childOwners[i] === ancestorOwners[i]) {\n          deepestCommon = i;\n        } else {\n          break;\n        }\n      }\n\n      var UNKNOWN = '(unknown)';\n      var childOwnerNames = childOwners.slice(deepestCommon + 1).map(function (inst) {\n        return inst.getName() || UNKNOWN;\n      });\n      var ancestorOwnerNames = ancestorOwners.slice(deepestCommon + 1).map(function (inst) {\n        return inst.getName() || UNKNOWN;\n      });\n      var ownerInfo = [].concat(\n      // If the parent and child instances have a common owner ancestor, start\n      // with that -- otherwise we just start with the parent's owners.\n      deepestCommon !== -1 ? childOwners[deepestCommon].getName() || UNKNOWN : [], ancestorOwnerNames, ancestorTag,\n      // If we're warning about an invalid (non-parent) ancestry, add '...'\n      invalidAncestor ? ['...'] : [], childOwnerNames, childTag).join(' > ');\n\n      var warnKey = !!invalidParent + '|' + childTag + '|' + ancestorTag + '|' + ownerInfo;\n      if (didWarn[warnKey]) {\n        return;\n      }\n      didWarn[warnKey] = true;\n\n      var tagDisplayName = childTag;\n      var whitespaceInfo = '';\n      if (childTag === '#text') {\n        if (/\\S/.test(childText)) {\n          tagDisplayName = 'Text nodes';\n        } else {\n          tagDisplayName = 'Whitespace text nodes';\n          whitespaceInfo = ' Make sure you don\\'t have any extra whitespace between tags on ' + 'each line of your source code.';\n        }\n      } else {\n        tagDisplayName = '<' + childTag + '>';\n      }\n\n      if (invalidParent) {\n        var info = '';\n        if (ancestorTag === 'table' && childTag === 'tr') {\n          info += ' Add a <tbody> to your code to match the DOM tree generated by ' + 'the browser.';\n        }\n        process.env.NODE_ENV !== 'production' ? warning(false, 'validateDOMNesting(...): %s cannot appear as a child of <%s>.%s ' + 'See %s.%s', tagDisplayName, ancestorTag, whitespaceInfo, ownerInfo, info) : void 0;\n      } else {\n        process.env.NODE_ENV !== 'production' ? warning(false, 'validateDOMNesting(...): %s cannot appear as a descendant of ' + '<%s>. See %s.', tagDisplayName, ancestorTag, ownerInfo) : void 0;\n      }\n    }\n  };\n\n  validateDOMNesting.updatedAncestorInfo = updatedAncestorInfo;\n\n  // For testing\n  validateDOMNesting.isTagValidInContext = function (tag, ancestorInfo) {\n    ancestorInfo = ancestorInfo || emptyAncestorInfo;\n    var parentInfo = ancestorInfo.current;\n    var parentTag = parentInfo && parentInfo.tag;\n    return isTagValidWithParent(tag, parentTag) && !findInvalidAncestorForTag(tag, ancestorInfo);\n  };\n}\n\nmodule.exports = validateDOMNesting;\n}).call(this,require('_process'))\n},{\"_process\":112,\"fbjs/lib/emptyFunction\":96,\"fbjs/lib/warning\":111,\"object-assign\":114}],245:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\n'use strict';\n\nif (process.env.NODE_ENV !== 'production') {\n  var invariant = require('fbjs/lib/invariant');\n  var warning = require('fbjs/lib/warning');\n  var ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n  var loggedTypeFailures = {};\n}\n\n/**\n * Assert that the values match with the type specs.\n * Error messages are memorized and will only be shown once.\n *\n * @param {object} typeSpecs Map of name to a ReactPropType\n * @param {object} values Runtime values that need to be type-checked\n * @param {string} location e.g. \"prop\", \"context\", \"child context\"\n * @param {string} componentName Name of the component for error messages.\n * @param {?Function} getStack Returns the component stack.\n * @private\n */\nfunction checkPropTypes(typeSpecs, values, location, componentName, getStack) {\n  if (process.env.NODE_ENV !== 'production') {\n    for (var typeSpecName in typeSpecs) {\n      if (typeSpecs.hasOwnProperty(typeSpecName)) {\n        var error;\n        // Prop type validation may throw. In case they do, we don't want to\n        // fail the render phase where it didn't fail before. So we log it.\n        // After these have been cleaned up, we'll let them throw.\n        try {\n          // This is intentionally an invariant that gets caught. It's the same\n          // behavior as without this statement except with a better message.\n          invariant(typeof typeSpecs[typeSpecName] === 'function', '%s: %s type `%s` is invalid; it must be a function, usually from ' + 'React.PropTypes.', componentName || 'React class', location, typeSpecName);\n          error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);\n        } catch (ex) {\n          error = ex;\n        }\n        warning(!error || error instanceof Error, '%s: type specification of %s `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', location, typeSpecName, typeof error);\n        if (error instanceof Error && !(error.message in loggedTypeFailures)) {\n          // Only monitor this failure once because there tends to be a lot of the\n          // same error.\n          loggedTypeFailures[error.message] = true;\n\n          var stack = getStack ? getStack() : '';\n\n          warning(false, 'Failed %s type: %s%s', location, error.message, stack != null ? stack : '');\n        }\n      }\n    }\n  }\n}\n\nmodule.exports = checkPropTypes;\n\n}).call(this,require('_process'))\n},{\"./lib/ReactPropTypesSecret\":248,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111}],246:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\n'use strict';\n\n// React 15.5 references this module, and assumes PropTypes are still callable in production.\n// Therefore we re-export development-only version with all the PropTypes checks here.\n// However if one is migrating to the `prop-types` npm library, they will go through the\n// `index.js` entry point, and it will branch depending on the environment.\nvar factory = require('./factoryWithTypeCheckers');\nmodule.exports = function(isValidElement) {\n  // It is still allowed in 15.5.\n  var throwOnDirectAccess = false;\n  return factory(isValidElement, throwOnDirectAccess);\n};\n\n},{\"./factoryWithTypeCheckers\":247}],247:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\n'use strict';\n\nvar emptyFunction = require('fbjs/lib/emptyFunction');\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\nvar checkPropTypes = require('./checkPropTypes');\n\nmodule.exports = function(isValidElement, throwOnDirectAccess) {\n  /* global Symbol */\n  var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;\n  var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.\n\n  /**\n   * Returns the iterator method function contained on the iterable object.\n   *\n   * Be sure to invoke the function with the iterable as context:\n   *\n   *     var iteratorFn = getIteratorFn(myIterable);\n   *     if (iteratorFn) {\n   *       var iterator = iteratorFn.call(myIterable);\n   *       ...\n   *     }\n   *\n   * @param {?object} maybeIterable\n   * @return {?function}\n   */\n  function getIteratorFn(maybeIterable) {\n    var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);\n    if (typeof iteratorFn === 'function') {\n      return iteratorFn;\n    }\n  }\n\n  /**\n   * Collection of methods that allow declaration and validation of props that are\n   * supplied to React components. Example usage:\n   *\n   *   var Props = require('ReactPropTypes');\n   *   var MyArticle = React.createClass({\n   *     propTypes: {\n   *       // An optional string prop named \"description\".\n   *       description: Props.string,\n   *\n   *       // A required enum prop named \"category\".\n   *       category: Props.oneOf(['News','Photos']).isRequired,\n   *\n   *       // A prop named \"dialog\" that requires an instance of Dialog.\n   *       dialog: Props.instanceOf(Dialog).isRequired\n   *     },\n   *     render: function() { ... }\n   *   });\n   *\n   * A more formal specification of how these methods are used:\n   *\n   *   type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...)\n   *   decl := ReactPropTypes.{type}(.isRequired)?\n   *\n   * Each and every declaration produces a function with the same signature. This\n   * allows the creation of custom validation functions. For example:\n   *\n   *  var MyLink = React.createClass({\n   *    propTypes: {\n   *      // An optional string or URI prop named \"href\".\n   *      href: function(props, propName, componentName) {\n   *        var propValue = props[propName];\n   *        if (propValue != null && typeof propValue !== 'string' &&\n   *            !(propValue instanceof URI)) {\n   *          return new Error(\n   *            'Expected a string or an URI for ' + propName + ' in ' +\n   *            componentName\n   *          );\n   *        }\n   *      }\n   *    },\n   *    render: function() {...}\n   *  });\n   *\n   * @internal\n   */\n\n  var ANONYMOUS = '<<anonymous>>';\n\n  // Important!\n  // Keep this list in sync with production version in `./factoryWithThrowingShims.js`.\n  var ReactPropTypes = {\n    array: createPrimitiveTypeChecker('array'),\n    bool: createPrimitiveTypeChecker('boolean'),\n    func: createPrimitiveTypeChecker('function'),\n    number: createPrimitiveTypeChecker('number'),\n    object: createPrimitiveTypeChecker('object'),\n    string: createPrimitiveTypeChecker('string'),\n    symbol: createPrimitiveTypeChecker('symbol'),\n\n    any: createAnyTypeChecker(),\n    arrayOf: createArrayOfTypeChecker,\n    element: createElementTypeChecker(),\n    instanceOf: createInstanceTypeChecker,\n    node: createNodeChecker(),\n    objectOf: createObjectOfTypeChecker,\n    oneOf: createEnumTypeChecker,\n    oneOfType: createUnionTypeChecker,\n    shape: createShapeTypeChecker\n  };\n\n  /**\n   * inlined Object.is polyfill to avoid requiring consumers ship their own\n   * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is\n   */\n  /*eslint-disable no-self-compare*/\n  function is(x, y) {\n    // SameValue algorithm\n    if (x === y) {\n      // Steps 1-5, 7-10\n      // Steps 6.b-6.e: +0 != -0\n      return x !== 0 || 1 / x === 1 / y;\n    } else {\n      // Step 6.a: NaN == NaN\n      return x !== x && y !== y;\n    }\n  }\n  /*eslint-enable no-self-compare*/\n\n  /**\n   * We use an Error-like object for backward compatibility as people may call\n   * PropTypes directly and inspect their output. However, we don't use real\n   * Errors anymore. We don't inspect their stack anyway, and creating them\n   * is prohibitively expensive if they are created too often, such as what\n   * happens in oneOfType() for any type before the one that matched.\n   */\n  function PropTypeError(message) {\n    this.message = message;\n    this.stack = '';\n  }\n  // Make `instanceof Error` still work for returned errors.\n  PropTypeError.prototype = Error.prototype;\n\n  function createChainableTypeChecker(validate) {\n    if (process.env.NODE_ENV !== 'production') {\n      var manualPropTypeCallCache = {};\n      var manualPropTypeWarningCount = 0;\n    }\n    function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {\n      componentName = componentName || ANONYMOUS;\n      propFullName = propFullName || propName;\n\n      if (secret !== ReactPropTypesSecret) {\n        if (throwOnDirectAccess) {\n          // New behavior only for users of `prop-types` package\n          invariant(\n            false,\n            'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n            'Use `PropTypes.checkPropTypes()` to call them. ' +\n            'Read more at http://fb.me/use-check-prop-types'\n          );\n        } else if (process.env.NODE_ENV !== 'production' && typeof console !== 'undefined') {\n          // Old behavior for people using React.PropTypes\n          var cacheKey = componentName + ':' + propName;\n          if (\n            !manualPropTypeCallCache[cacheKey] &&\n            // Avoid spamming the console because they are often not actionable except for lib authors\n            manualPropTypeWarningCount < 3\n          ) {\n            warning(\n              false,\n              'You are manually calling a React.PropTypes validation ' +\n              'function for the `%s` prop on `%s`. This is deprecated ' +\n              'and will throw in the standalone `prop-types` package. ' +\n              'You may be seeing this warning due to a third-party PropTypes ' +\n              'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.',\n              propFullName,\n              componentName\n            );\n            manualPropTypeCallCache[cacheKey] = true;\n            manualPropTypeWarningCount++;\n          }\n        }\n      }\n      if (props[propName] == null) {\n        if (isRequired) {\n          if (props[propName] === null) {\n            return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.'));\n          }\n          return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.'));\n        }\n        return null;\n      } else {\n        return validate(props, propName, componentName, location, propFullName);\n      }\n    }\n\n    var chainedCheckType = checkType.bind(null, false);\n    chainedCheckType.isRequired = checkType.bind(null, true);\n\n    return chainedCheckType;\n  }\n\n  function createPrimitiveTypeChecker(expectedType) {\n    function validate(props, propName, componentName, location, propFullName, secret) {\n      var propValue = props[propName];\n      var propType = getPropType(propValue);\n      if (propType !== expectedType) {\n        // `propValue` being instance of, say, date/regexp, pass the 'object'\n        // check, but we can offer a more precise error message here rather than\n        // 'of type `object`'.\n        var preciseType = getPreciseType(propValue);\n\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.'));\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createAnyTypeChecker() {\n    return createChainableTypeChecker(emptyFunction.thatReturnsNull);\n  }\n\n  function createArrayOfTypeChecker(typeChecker) {\n    function validate(props, propName, componentName, location, propFullName) {\n      if (typeof typeChecker !== 'function') {\n        return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.');\n      }\n      var propValue = props[propName];\n      if (!Array.isArray(propValue)) {\n        var propType = getPropType(propValue);\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));\n      }\n      for (var i = 0; i < propValue.length; i++) {\n        var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret);\n        if (error instanceof Error) {\n          return error;\n        }\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createElementTypeChecker() {\n    function validate(props, propName, componentName, location, propFullName) {\n      var propValue = props[propName];\n      if (!isValidElement(propValue)) {\n        var propType = getPropType(propValue);\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createInstanceTypeChecker(expectedClass) {\n    function validate(props, propName, componentName, location, propFullName) {\n      if (!(props[propName] instanceof expectedClass)) {\n        var expectedClassName = expectedClass.name || ANONYMOUS;\n        var actualClassName = getClassName(props[propName]);\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.'));\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createEnumTypeChecker(expectedValues) {\n    if (!Array.isArray(expectedValues)) {\n      process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid argument supplied to oneOf, expected an instance of array.') : void 0;\n      return emptyFunction.thatReturnsNull;\n    }\n\n    function validate(props, propName, componentName, location, propFullName) {\n      var propValue = props[propName];\n      for (var i = 0; i < expectedValues.length; i++) {\n        if (is(propValue, expectedValues[i])) {\n          return null;\n        }\n      }\n\n      var valuesString = JSON.stringify(expectedValues);\n      return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + propValue + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.'));\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createObjectOfTypeChecker(typeChecker) {\n    function validate(props, propName, componentName, location, propFullName) {\n      if (typeof typeChecker !== 'function') {\n        return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.');\n      }\n      var propValue = props[propName];\n      var propType = getPropType(propValue);\n      if (propType !== 'object') {\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.'));\n      }\n      for (var key in propValue) {\n        if (propValue.hasOwnProperty(key)) {\n          var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n          if (error instanceof Error) {\n            return error;\n          }\n        }\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createUnionTypeChecker(arrayOfTypeCheckers) {\n    if (!Array.isArray(arrayOfTypeCheckers)) {\n      process.env.NODE_ENV !== 'production' ? warning(false, 'Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;\n      return emptyFunction.thatReturnsNull;\n    }\n\n    for (var i = 0; i < arrayOfTypeCheckers.length; i++) {\n      var checker = arrayOfTypeCheckers[i];\n      if (typeof checker !== 'function') {\n        warning(\n          false,\n          'Invalid argument supplid to oneOfType. Expected an array of check functions, but ' +\n          'received %s at index %s.',\n          getPostfixForTypeWarning(checker),\n          i\n        );\n        return emptyFunction.thatReturnsNull;\n      }\n    }\n\n    function validate(props, propName, componentName, location, propFullName) {\n      for (var i = 0; i < arrayOfTypeCheckers.length; i++) {\n        var checker = arrayOfTypeCheckers[i];\n        if (checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret) == null) {\n          return null;\n        }\n      }\n\n      return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`.'));\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createNodeChecker() {\n    function validate(props, propName, componentName, location, propFullName) {\n      if (!isNode(props[propName])) {\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.'));\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function createShapeTypeChecker(shapeTypes) {\n    function validate(props, propName, componentName, location, propFullName) {\n      var propValue = props[propName];\n      var propType = getPropType(propValue);\n      if (propType !== 'object') {\n        return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));\n      }\n      for (var key in shapeTypes) {\n        var checker = shapeTypes[key];\n        if (!checker) {\n          continue;\n        }\n        var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret);\n        if (error) {\n          return error;\n        }\n      }\n      return null;\n    }\n    return createChainableTypeChecker(validate);\n  }\n\n  function isNode(propValue) {\n    switch (typeof propValue) {\n      case 'number':\n      case 'string':\n      case 'undefined':\n        return true;\n      case 'boolean':\n        return !propValue;\n      case 'object':\n        if (Array.isArray(propValue)) {\n          return propValue.every(isNode);\n        }\n        if (propValue === null || isValidElement(propValue)) {\n          return true;\n        }\n\n        var iteratorFn = getIteratorFn(propValue);\n        if (iteratorFn) {\n          var iterator = iteratorFn.call(propValue);\n          var step;\n          if (iteratorFn !== propValue.entries) {\n            while (!(step = iterator.next()).done) {\n              if (!isNode(step.value)) {\n                return false;\n              }\n            }\n          } else {\n            // Iterator will provide entry [k,v] tuples rather than values.\n            while (!(step = iterator.next()).done) {\n              var entry = step.value;\n              if (entry) {\n                if (!isNode(entry[1])) {\n                  return false;\n                }\n              }\n            }\n          }\n        } else {\n          return false;\n        }\n\n        return true;\n      default:\n        return false;\n    }\n  }\n\n  function isSymbol(propType, propValue) {\n    // Native Symbol.\n    if (propType === 'symbol') {\n      return true;\n    }\n\n    // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol'\n    if (propValue['@@toStringTag'] === 'Symbol') {\n      return true;\n    }\n\n    // Fallback for non-spec compliant Symbols which are polyfilled.\n    if (typeof Symbol === 'function' && propValue instanceof Symbol) {\n      return true;\n    }\n\n    return false;\n  }\n\n  // Equivalent of `typeof` but with special handling for array and regexp.\n  function getPropType(propValue) {\n    var propType = typeof propValue;\n    if (Array.isArray(propValue)) {\n      return 'array';\n    }\n    if (propValue instanceof RegExp) {\n      // Old webkits (at least until Android 4.0) return 'function' rather than\n      // 'object' for typeof a RegExp. We'll normalize this here so that /bla/\n      // passes PropTypes.object.\n      return 'object';\n    }\n    if (isSymbol(propType, propValue)) {\n      return 'symbol';\n    }\n    return propType;\n  }\n\n  // This handles more types than `getPropType`. Only used for error messages.\n  // See `createPrimitiveTypeChecker`.\n  function getPreciseType(propValue) {\n    if (typeof propValue === 'undefined' || propValue === null) {\n      return '' + propValue;\n    }\n    var propType = getPropType(propValue);\n    if (propType === 'object') {\n      if (propValue instanceof Date) {\n        return 'date';\n      } else if (propValue instanceof RegExp) {\n        return 'regexp';\n      }\n    }\n    return propType;\n  }\n\n  // Returns a string that is postfixed to a warning about an invalid type.\n  // For example, \"undefined\" or \"of type array\"\n  function getPostfixForTypeWarning(value) {\n    var type = getPreciseType(value);\n    switch (type) {\n      case 'array':\n      case 'object':\n        return 'an ' + type;\n      case 'boolean':\n      case 'date':\n      case 'regexp':\n        return 'a ' + type;\n      default:\n        return type;\n    }\n  }\n\n  // Returns class name of the object, if any.\n  function getClassName(propValue) {\n    if (!propValue.constructor || !propValue.constructor.name) {\n      return ANONYMOUS;\n    }\n    return propValue.constructor.name;\n  }\n\n  ReactPropTypes.checkPropTypes = checkPropTypes;\n  ReactPropTypes.PropTypes = ReactPropTypes;\n\n  return ReactPropTypes;\n};\n\n}).call(this,require('_process'))\n},{\"./checkPropTypes\":245,\"./lib/ReactPropTypesSecret\":248,\"_process\":112,\"fbjs/lib/emptyFunction\":96,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111}],248:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n\n},{}],249:[function(require,module,exports){\narguments[4][141][0].apply(exports,arguments)\n},{\"dup\":141}],250:[function(require,module,exports){\narguments[4][143][0].apply(exports,arguments)\n},{\"./reactProdInvariant\":272,\"_process\":112,\"dup\":143,\"fbjs/lib/invariant\":104}],251:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar ReactChildren = require('./ReactChildren');\nvar ReactComponent = require('./ReactComponent');\nvar ReactPureComponent = require('./ReactPureComponent');\nvar ReactClass = require('./ReactClass');\nvar ReactDOMFactories = require('./ReactDOMFactories');\nvar ReactElement = require('./ReactElement');\nvar ReactPropTypes = require('./ReactPropTypes');\nvar ReactVersion = require('./ReactVersion');\n\nvar onlyChild = require('./onlyChild');\nvar warning = require('fbjs/lib/warning');\n\nvar createElement = ReactElement.createElement;\nvar createFactory = ReactElement.createFactory;\nvar cloneElement = ReactElement.cloneElement;\n\nif (process.env.NODE_ENV !== 'production') {\n  var canDefineProperty = require('./canDefineProperty');\n  var ReactElementValidator = require('./ReactElementValidator');\n  var didWarnPropTypesDeprecated = false;\n  createElement = ReactElementValidator.createElement;\n  createFactory = ReactElementValidator.createFactory;\n  cloneElement = ReactElementValidator.cloneElement;\n}\n\nvar __spread = _assign;\n\nif (process.env.NODE_ENV !== 'production') {\n  var warned = false;\n  __spread = function () {\n    process.env.NODE_ENV !== 'production' ? warning(warned, 'React.__spread is deprecated and should not be used. Use ' + 'Object.assign directly or another helper function with similar ' + 'semantics. You may be seeing this warning due to your compiler. ' + 'See https://fb.me/react-spread-deprecation for more details.') : void 0;\n    warned = true;\n    return _assign.apply(null, arguments);\n  };\n}\n\nvar React = {\n\n  // Modern\n\n  Children: {\n    map: ReactChildren.map,\n    forEach: ReactChildren.forEach,\n    count: ReactChildren.count,\n    toArray: ReactChildren.toArray,\n    only: onlyChild\n  },\n\n  Component: ReactComponent,\n  PureComponent: ReactPureComponent,\n\n  createElement: createElement,\n  cloneElement: cloneElement,\n  isValidElement: ReactElement.isValidElement,\n\n  // Classic\n\n  PropTypes: ReactPropTypes,\n  createClass: ReactClass.createClass,\n  createFactory: createFactory,\n  createMixin: function (mixin) {\n    // Currently a noop. Will be used to validate and trace mixins.\n    return mixin;\n  },\n\n  // This looks DOM specific but these are actually isomorphic helpers\n  // since they are just generating DOM strings.\n  DOM: ReactDOMFactories,\n\n  version: ReactVersion,\n\n  // Deprecated hook for JSX spread, don't use this for anything.\n  __spread: __spread\n};\n\n// TODO: Fix tests so that this deprecation warning doesn't cause failures.\nif (process.env.NODE_ENV !== 'production') {\n  if (canDefineProperty) {\n    Object.defineProperty(React, 'PropTypes', {\n      get: function () {\n        process.env.NODE_ENV !== 'production' ? warning(didWarnPropTypesDeprecated, 'Accessing PropTypes via the main React package is deprecated. Use ' + 'the prop-types package from npm instead.') : void 0;\n        didWarnPropTypesDeprecated = true;\n        return ReactPropTypes;\n      }\n    });\n  }\n}\n\nmodule.exports = React;\n}).call(this,require('_process'))\n},{\"./ReactChildren\":252,\"./ReactClass\":253,\"./ReactComponent\":254,\"./ReactDOMFactories\":257,\"./ReactElement\":258,\"./ReactElementValidator\":260,\"./ReactPropTypes\":263,\"./ReactPureComponent\":265,\"./ReactVersion\":266,\"./canDefineProperty\":267,\"./onlyChild\":271,\"_process\":112,\"fbjs/lib/warning\":111,\"object-assign\":114}],252:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar PooledClass = require('./PooledClass');\nvar ReactElement = require('./ReactElement');\n\nvar emptyFunction = require('fbjs/lib/emptyFunction');\nvar traverseAllChildren = require('./traverseAllChildren');\n\nvar twoArgumentPooler = PooledClass.twoArgumentPooler;\nvar fourArgumentPooler = PooledClass.fourArgumentPooler;\n\nvar userProvidedKeyEscapeRegex = /\\/+/g;\nfunction escapeUserProvidedKey(text) {\n  return ('' + text).replace(userProvidedKeyEscapeRegex, '$&/');\n}\n\n/**\n * PooledClass representing the bookkeeping associated with performing a child\n * traversal. Allows avoiding binding callbacks.\n *\n * @constructor ForEachBookKeeping\n * @param {!function} forEachFunction Function to perform traversal with.\n * @param {?*} forEachContext Context to perform context with.\n */\nfunction ForEachBookKeeping(forEachFunction, forEachContext) {\n  this.func = forEachFunction;\n  this.context = forEachContext;\n  this.count = 0;\n}\nForEachBookKeeping.prototype.destructor = function () {\n  this.func = null;\n  this.context = null;\n  this.count = 0;\n};\nPooledClass.addPoolingTo(ForEachBookKeeping, twoArgumentPooler);\n\nfunction forEachSingleChild(bookKeeping, child, name) {\n  var func = bookKeeping.func,\n      context = bookKeeping.context;\n\n  func.call(context, child, bookKeeping.count++);\n}\n\n/**\n * Iterates through children that are typically specified as `props.children`.\n *\n * See https://facebook.github.io/react/docs/top-level-api.html#react.children.foreach\n *\n * The provided forEachFunc(child, index) will be called for each\n * leaf child.\n *\n * @param {?*} children Children tree container.\n * @param {function(*, int)} forEachFunc\n * @param {*} forEachContext Context for forEachContext.\n */\nfunction forEachChildren(children, forEachFunc, forEachContext) {\n  if (children == null) {\n    return children;\n  }\n  var traverseContext = ForEachBookKeeping.getPooled(forEachFunc, forEachContext);\n  traverseAllChildren(children, forEachSingleChild, traverseContext);\n  ForEachBookKeeping.release(traverseContext);\n}\n\n/**\n * PooledClass representing the bookkeeping associated with performing a child\n * mapping. Allows avoiding binding callbacks.\n *\n * @constructor MapBookKeeping\n * @param {!*} mapResult Object containing the ordered map of results.\n * @param {!function} mapFunction Function to perform mapping with.\n * @param {?*} mapContext Context to perform mapping with.\n */\nfunction MapBookKeeping(mapResult, keyPrefix, mapFunction, mapContext) {\n  this.result = mapResult;\n  this.keyPrefix = keyPrefix;\n  this.func = mapFunction;\n  this.context = mapContext;\n  this.count = 0;\n}\nMapBookKeeping.prototype.destructor = function () {\n  this.result = null;\n  this.keyPrefix = null;\n  this.func = null;\n  this.context = null;\n  this.count = 0;\n};\nPooledClass.addPoolingTo(MapBookKeeping, fourArgumentPooler);\n\nfunction mapSingleChildIntoContext(bookKeeping, child, childKey) {\n  var result = bookKeeping.result,\n      keyPrefix = bookKeeping.keyPrefix,\n      func = bookKeeping.func,\n      context = bookKeeping.context;\n\n\n  var mappedChild = func.call(context, child, bookKeeping.count++);\n  if (Array.isArray(mappedChild)) {\n    mapIntoWithKeyPrefixInternal(mappedChild, result, childKey, emptyFunction.thatReturnsArgument);\n  } else if (mappedChild != null) {\n    if (ReactElement.isValidElement(mappedChild)) {\n      mappedChild = ReactElement.cloneAndReplaceKey(mappedChild,\n      // Keep both the (mapped) and old keys if they differ, just as\n      // traverseAllChildren used to do for objects as children\n      keyPrefix + (mappedChild.key && (!child || child.key !== mappedChild.key) ? escapeUserProvidedKey(mappedChild.key) + '/' : '') + childKey);\n    }\n    result.push(mappedChild);\n  }\n}\n\nfunction mapIntoWithKeyPrefixInternal(children, array, prefix, func, context) {\n  var escapedPrefix = '';\n  if (prefix != null) {\n    escapedPrefix = escapeUserProvidedKey(prefix) + '/';\n  }\n  var traverseContext = MapBookKeeping.getPooled(array, escapedPrefix, func, context);\n  traverseAllChildren(children, mapSingleChildIntoContext, traverseContext);\n  MapBookKeeping.release(traverseContext);\n}\n\n/**\n * Maps children that are typically specified as `props.children`.\n *\n * See https://facebook.github.io/react/docs/top-level-api.html#react.children.map\n *\n * The provided mapFunction(child, key, index) will be called for each\n * leaf child.\n *\n * @param {?*} children Children tree container.\n * @param {function(*, int)} func The map function.\n * @param {*} context Context for mapFunction.\n * @return {object} Object containing the ordered map of results.\n */\nfunction mapChildren(children, func, context) {\n  if (children == null) {\n    return children;\n  }\n  var result = [];\n  mapIntoWithKeyPrefixInternal(children, result, null, func, context);\n  return result;\n}\n\nfunction forEachSingleChildDummy(traverseContext, child, name) {\n  return null;\n}\n\n/**\n * Count the number of children that are typically specified as\n * `props.children`.\n *\n * See https://facebook.github.io/react/docs/top-level-api.html#react.children.count\n *\n * @param {?*} children Children tree container.\n * @return {number} The number of children.\n */\nfunction countChildren(children, context) {\n  return traverseAllChildren(children, forEachSingleChildDummy, null);\n}\n\n/**\n * Flatten a children object (typically specified as `props.children`) and\n * return an array with appropriately re-keyed children.\n *\n * See https://facebook.github.io/react/docs/top-level-api.html#react.children.toarray\n */\nfunction toArray(children) {\n  var result = [];\n  mapIntoWithKeyPrefixInternal(children, result, null, emptyFunction.thatReturnsArgument);\n  return result;\n}\n\nvar ReactChildren = {\n  forEach: forEachChildren,\n  map: mapChildren,\n  mapIntoWithKeyPrefixInternal: mapIntoWithKeyPrefixInternal,\n  count: countChildren,\n  toArray: toArray\n};\n\nmodule.exports = ReactChildren;\n},{\"./PooledClass\":250,\"./ReactElement\":258,\"./traverseAllChildren\":273,\"fbjs/lib/emptyFunction\":96}],253:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant'),\n    _assign = require('object-assign');\n\nvar ReactComponent = require('./ReactComponent');\nvar ReactElement = require('./ReactElement');\nvar ReactPropTypeLocationNames = require('./ReactPropTypeLocationNames');\nvar ReactNoopUpdateQueue = require('./ReactNoopUpdateQueue');\n\nvar emptyObject = require('fbjs/lib/emptyObject');\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\nvar MIXINS_KEY = 'mixins';\n\n// Helper function to allow the creation of anonymous functions which do not\n// have .name set to the name of the variable being assigned to.\nfunction identity(fn) {\n  return fn;\n}\n\n/**\n * Policies that describe methods in `ReactClassInterface`.\n */\n\n\nvar injectedMixins = [];\n\n/**\n * Composite components are higher-level components that compose other composite\n * or host components.\n *\n * To create a new type of `ReactClass`, pass a specification of\n * your new class to `React.createClass`. The only requirement of your class\n * specification is that you implement a `render` method.\n *\n *   var MyComponent = React.createClass({\n *     render: function() {\n *       return <div>Hello World</div>;\n *     }\n *   });\n *\n * The class specification supports a specific protocol of methods that have\n * special meaning (e.g. `render`). See `ReactClassInterface` for\n * more the comprehensive protocol. Any other properties and methods in the\n * class specification will be available on the prototype.\n *\n * @interface ReactClassInterface\n * @internal\n */\nvar ReactClassInterface = {\n\n  /**\n   * An array of Mixin objects to include when defining your component.\n   *\n   * @type {array}\n   * @optional\n   */\n  mixins: 'DEFINE_MANY',\n\n  /**\n   * An object containing properties and methods that should be defined on\n   * the component's constructor instead of its prototype (static methods).\n   *\n   * @type {object}\n   * @optional\n   */\n  statics: 'DEFINE_MANY',\n\n  /**\n   * Definition of prop types for this component.\n   *\n   * @type {object}\n   * @optional\n   */\n  propTypes: 'DEFINE_MANY',\n\n  /**\n   * Definition of context types for this component.\n   *\n   * @type {object}\n   * @optional\n   */\n  contextTypes: 'DEFINE_MANY',\n\n  /**\n   * Definition of context types this component sets for its children.\n   *\n   * @type {object}\n   * @optional\n   */\n  childContextTypes: 'DEFINE_MANY',\n\n  // ==== Definition methods ====\n\n  /**\n   * Invoked when the component is mounted. Values in the mapping will be set on\n   * `this.props` if that prop is not specified (i.e. using an `in` check).\n   *\n   * This method is invoked before `getInitialState` and therefore cannot rely\n   * on `this.state` or use `this.setState`.\n   *\n   * @return {object}\n   * @optional\n   */\n  getDefaultProps: 'DEFINE_MANY_MERGED',\n\n  /**\n   * Invoked once before the component is mounted. The return value will be used\n   * as the initial value of `this.state`.\n   *\n   *   getInitialState: function() {\n   *     return {\n   *       isOn: false,\n   *       fooBaz: new BazFoo()\n   *     }\n   *   }\n   *\n   * @return {object}\n   * @optional\n   */\n  getInitialState: 'DEFINE_MANY_MERGED',\n\n  /**\n   * @return {object}\n   * @optional\n   */\n  getChildContext: 'DEFINE_MANY_MERGED',\n\n  /**\n   * Uses props from `this.props` and state from `this.state` to render the\n   * structure of the component.\n   *\n   * No guarantees are made about when or how often this method is invoked, so\n   * it must not have side effects.\n   *\n   *   render: function() {\n   *     var name = this.props.name;\n   *     return <div>Hello, {name}!</div>;\n   *   }\n   *\n   * @return {ReactComponent}\n   * @required\n   */\n  render: 'DEFINE_ONCE',\n\n  // ==== Delegate methods ====\n\n  /**\n   * Invoked when the component is initially created and about to be mounted.\n   * This may have side effects, but any external subscriptions or data created\n   * by this method must be cleaned up in `componentWillUnmount`.\n   *\n   * @optional\n   */\n  componentWillMount: 'DEFINE_MANY',\n\n  /**\n   * Invoked when the component has been mounted and has a DOM representation.\n   * However, there is no guarantee that the DOM node is in the document.\n   *\n   * Use this as an opportunity to operate on the DOM when the component has\n   * been mounted (initialized and rendered) for the first time.\n   *\n   * @param {DOMElement} rootNode DOM element representing the component.\n   * @optional\n   */\n  componentDidMount: 'DEFINE_MANY',\n\n  /**\n   * Invoked before the component receives new props.\n   *\n   * Use this as an opportunity to react to a prop transition by updating the\n   * state using `this.setState`. Current props are accessed via `this.props`.\n   *\n   *   componentWillReceiveProps: function(nextProps, nextContext) {\n   *     this.setState({\n   *       likesIncreasing: nextProps.likeCount > this.props.likeCount\n   *     });\n   *   }\n   *\n   * NOTE: There is no equivalent `componentWillReceiveState`. An incoming prop\n   * transition may cause a state change, but the opposite is not true. If you\n   * need it, you are probably looking for `componentWillUpdate`.\n   *\n   * @param {object} nextProps\n   * @optional\n   */\n  componentWillReceiveProps: 'DEFINE_MANY',\n\n  /**\n   * Invoked while deciding if the component should be updated as a result of\n   * receiving new props, state and/or context.\n   *\n   * Use this as an opportunity to `return false` when you're certain that the\n   * transition to the new props/state/context will not require a component\n   * update.\n   *\n   *   shouldComponentUpdate: function(nextProps, nextState, nextContext) {\n   *     return !equal(nextProps, this.props) ||\n   *       !equal(nextState, this.state) ||\n   *       !equal(nextContext, this.context);\n   *   }\n   *\n   * @param {object} nextProps\n   * @param {?object} nextState\n   * @param {?object} nextContext\n   * @return {boolean} True if the component should update.\n   * @optional\n   */\n  shouldComponentUpdate: 'DEFINE_ONCE',\n\n  /**\n   * Invoked when the component is about to update due to a transition from\n   * `this.props`, `this.state` and `this.context` to `nextProps`, `nextState`\n   * and `nextContext`.\n   *\n   * Use this as an opportunity to perform preparation before an update occurs.\n   *\n   * NOTE: You **cannot** use `this.setState()` in this method.\n   *\n   * @param {object} nextProps\n   * @param {?object} nextState\n   * @param {?object} nextContext\n   * @param {ReactReconcileTransaction} transaction\n   * @optional\n   */\n  componentWillUpdate: 'DEFINE_MANY',\n\n  /**\n   * Invoked when the component's DOM representation has been updated.\n   *\n   * Use this as an opportunity to operate on the DOM when the component has\n   * been updated.\n   *\n   * @param {object} prevProps\n   * @param {?object} prevState\n   * @param {?object} prevContext\n   * @param {DOMElement} rootNode DOM element representing the component.\n   * @optional\n   */\n  componentDidUpdate: 'DEFINE_MANY',\n\n  /**\n   * Invoked when the component is about to be removed from its parent and have\n   * its DOM representation destroyed.\n   *\n   * Use this as an opportunity to deallocate any external resources.\n   *\n   * NOTE: There is no `componentDidUnmount` since your component will have been\n   * destroyed by that point.\n   *\n   * @optional\n   */\n  componentWillUnmount: 'DEFINE_MANY',\n\n  // ==== Advanced methods ====\n\n  /**\n   * Updates the component's currently mounted DOM representation.\n   *\n   * By default, this implements React's rendering and reconciliation algorithm.\n   * Sophisticated clients may wish to override this.\n   *\n   * @param {ReactReconcileTransaction} transaction\n   * @internal\n   * @overridable\n   */\n  updateComponent: 'OVERRIDE_BASE'\n\n};\n\n/**\n * Mapping from class specification keys to special processing functions.\n *\n * Although these are declared like instance properties in the specification\n * when defining classes using `React.createClass`, they are actually static\n * and are accessible on the constructor instead of the prototype. Despite\n * being static, they must be defined outside of the \"statics\" key under\n * which all other static methods are defined.\n */\nvar RESERVED_SPEC_KEYS = {\n  displayName: function (Constructor, displayName) {\n    Constructor.displayName = displayName;\n  },\n  mixins: function (Constructor, mixins) {\n    if (mixins) {\n      for (var i = 0; i < mixins.length; i++) {\n        mixSpecIntoComponent(Constructor, mixins[i]);\n      }\n    }\n  },\n  childContextTypes: function (Constructor, childContextTypes) {\n    if (process.env.NODE_ENV !== 'production') {\n      validateTypeDef(Constructor, childContextTypes, 'childContext');\n    }\n    Constructor.childContextTypes = _assign({}, Constructor.childContextTypes, childContextTypes);\n  },\n  contextTypes: function (Constructor, contextTypes) {\n    if (process.env.NODE_ENV !== 'production') {\n      validateTypeDef(Constructor, contextTypes, 'context');\n    }\n    Constructor.contextTypes = _assign({}, Constructor.contextTypes, contextTypes);\n  },\n  /**\n   * Special case getDefaultProps which should move into statics but requires\n   * automatic merging.\n   */\n  getDefaultProps: function (Constructor, getDefaultProps) {\n    if (Constructor.getDefaultProps) {\n      Constructor.getDefaultProps = createMergedResultFunction(Constructor.getDefaultProps, getDefaultProps);\n    } else {\n      Constructor.getDefaultProps = getDefaultProps;\n    }\n  },\n  propTypes: function (Constructor, propTypes) {\n    if (process.env.NODE_ENV !== 'production') {\n      validateTypeDef(Constructor, propTypes, 'prop');\n    }\n    Constructor.propTypes = _assign({}, Constructor.propTypes, propTypes);\n  },\n  statics: function (Constructor, statics) {\n    mixStaticSpecIntoComponent(Constructor, statics);\n  },\n  autobind: function () {} };\n\nfunction validateTypeDef(Constructor, typeDef, location) {\n  for (var propName in typeDef) {\n    if (typeDef.hasOwnProperty(propName)) {\n      // use a warning instead of an invariant so components\n      // don't show up in prod but only in __DEV__\n      process.env.NODE_ENV !== 'production' ? warning(typeof typeDef[propName] === 'function', '%s: %s type `%s` is invalid; it must be a function, usually from ' + 'React.PropTypes.', Constructor.displayName || 'ReactClass', ReactPropTypeLocationNames[location], propName) : void 0;\n    }\n  }\n}\n\nfunction validateMethodOverride(isAlreadyDefined, name) {\n  var specPolicy = ReactClassInterface.hasOwnProperty(name) ? ReactClassInterface[name] : null;\n\n  // Disallow overriding of base class methods unless explicitly allowed.\n  if (ReactClassMixin.hasOwnProperty(name)) {\n    !(specPolicy === 'OVERRIDE_BASE') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactClassInterface: You are attempting to override `%s` from your class specification. Ensure that your method names do not overlap with React methods.', name) : _prodInvariant('73', name) : void 0;\n  }\n\n  // Disallow defining methods more than once unless explicitly allowed.\n  if (isAlreadyDefined) {\n    !(specPolicy === 'DEFINE_MANY' || specPolicy === 'DEFINE_MANY_MERGED') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactClassInterface: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.', name) : _prodInvariant('74', name) : void 0;\n  }\n}\n\n/**\n * Mixin helper which handles policy validation and reserved\n * specification keys when building React classes.\n */\nfunction mixSpecIntoComponent(Constructor, spec) {\n  if (!spec) {\n    if (process.env.NODE_ENV !== 'production') {\n      var typeofSpec = typeof spec;\n      var isMixinValid = typeofSpec === 'object' && spec !== null;\n\n      process.env.NODE_ENV !== 'production' ? warning(isMixinValid, '%s: You\\'re attempting to include a mixin that is either null ' + 'or not an object. Check the mixins included by the component, ' + 'as well as any mixins they include themselves. ' + 'Expected object but got %s.', Constructor.displayName || 'ReactClass', spec === null ? null : typeofSpec) : void 0;\n    }\n\n    return;\n  }\n\n  !(typeof spec !== 'function') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactClass: You\\'re attempting to use a component class or function as a mixin. Instead, just use a regular object.') : _prodInvariant('75') : void 0;\n  !!ReactElement.isValidElement(spec) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactClass: You\\'re attempting to use a component as a mixin. Instead, just use a regular object.') : _prodInvariant('76') : void 0;\n\n  var proto = Constructor.prototype;\n  var autoBindPairs = proto.__reactAutoBindPairs;\n\n  // By handling mixins before any other properties, we ensure the same\n  // chaining order is applied to methods with DEFINE_MANY policy, whether\n  // mixins are listed before or after these methods in the spec.\n  if (spec.hasOwnProperty(MIXINS_KEY)) {\n    RESERVED_SPEC_KEYS.mixins(Constructor, spec.mixins);\n  }\n\n  for (var name in spec) {\n    if (!spec.hasOwnProperty(name)) {\n      continue;\n    }\n\n    if (name === MIXINS_KEY) {\n      // We have already handled mixins in a special case above.\n      continue;\n    }\n\n    var property = spec[name];\n    var isAlreadyDefined = proto.hasOwnProperty(name);\n    validateMethodOverride(isAlreadyDefined, name);\n\n    if (RESERVED_SPEC_KEYS.hasOwnProperty(name)) {\n      RESERVED_SPEC_KEYS[name](Constructor, property);\n    } else {\n      // Setup methods on prototype:\n      // The following member methods should not be automatically bound:\n      // 1. Expected ReactClass methods (in the \"interface\").\n      // 2. Overridden methods (that were mixed in).\n      var isReactClassMethod = ReactClassInterface.hasOwnProperty(name);\n      var isFunction = typeof property === 'function';\n      var shouldAutoBind = isFunction && !isReactClassMethod && !isAlreadyDefined && spec.autobind !== false;\n\n      if (shouldAutoBind) {\n        autoBindPairs.push(name, property);\n        proto[name] = property;\n      } else {\n        if (isAlreadyDefined) {\n          var specPolicy = ReactClassInterface[name];\n\n          // These cases should already be caught by validateMethodOverride.\n          !(isReactClassMethod && (specPolicy === 'DEFINE_MANY_MERGED' || specPolicy === 'DEFINE_MANY')) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactClass: Unexpected spec policy %s for key %s when mixing in component specs.', specPolicy, name) : _prodInvariant('77', specPolicy, name) : void 0;\n\n          // For methods which are defined more than once, call the existing\n          // methods before calling the new property, merging if appropriate.\n          if (specPolicy === 'DEFINE_MANY_MERGED') {\n            proto[name] = createMergedResultFunction(proto[name], property);\n          } else if (specPolicy === 'DEFINE_MANY') {\n            proto[name] = createChainedFunction(proto[name], property);\n          }\n        } else {\n          proto[name] = property;\n          if (process.env.NODE_ENV !== 'production') {\n            // Add verbose displayName to the function, which helps when looking\n            // at profiling tools.\n            if (typeof property === 'function' && spec.displayName) {\n              proto[name].displayName = spec.displayName + '_' + name;\n            }\n          }\n        }\n      }\n    }\n  }\n}\n\nfunction mixStaticSpecIntoComponent(Constructor, statics) {\n  if (!statics) {\n    return;\n  }\n  for (var name in statics) {\n    var property = statics[name];\n    if (!statics.hasOwnProperty(name)) {\n      continue;\n    }\n\n    var isReserved = name in RESERVED_SPEC_KEYS;\n    !!isReserved ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactClass: You are attempting to define a reserved property, `%s`, that shouldn\\'t be on the \"statics\" key. Define it as an instance property instead; it will still be accessible on the constructor.', name) : _prodInvariant('78', name) : void 0;\n\n    var isInherited = name in Constructor;\n    !!isInherited ? process.env.NODE_ENV !== 'production' ? invariant(false, 'ReactClass: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.', name) : _prodInvariant('79', name) : void 0;\n    Constructor[name] = property;\n  }\n}\n\n/**\n * Merge two objects, but throw if both contain the same key.\n *\n * @param {object} one The first object, which is mutated.\n * @param {object} two The second object\n * @return {object} one after it has been mutated to contain everything in two.\n */\nfunction mergeIntoWithNoDuplicateKeys(one, two) {\n  !(one && two && typeof one === 'object' && typeof two === 'object') ? process.env.NODE_ENV !== 'production' ? invariant(false, 'mergeIntoWithNoDuplicateKeys(): Cannot merge non-objects.') : _prodInvariant('80') : void 0;\n\n  for (var key in two) {\n    if (two.hasOwnProperty(key)) {\n      !(one[key] === undefined) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'mergeIntoWithNoDuplicateKeys(): Tried to merge two objects with the same key: `%s`. This conflict may be due to a mixin; in particular, this may be caused by two getInitialState() or getDefaultProps() methods returning objects with clashing keys.', key) : _prodInvariant('81', key) : void 0;\n      one[key] = two[key];\n    }\n  }\n  return one;\n}\n\n/**\n * Creates a function that invokes two functions and merges their return values.\n *\n * @param {function} one Function to invoke first.\n * @param {function} two Function to invoke second.\n * @return {function} Function that invokes the two argument functions.\n * @private\n */\nfunction createMergedResultFunction(one, two) {\n  return function mergedResult() {\n    var a = one.apply(this, arguments);\n    var b = two.apply(this, arguments);\n    if (a == null) {\n      return b;\n    } else if (b == null) {\n      return a;\n    }\n    var c = {};\n    mergeIntoWithNoDuplicateKeys(c, a);\n    mergeIntoWithNoDuplicateKeys(c, b);\n    return c;\n  };\n}\n\n/**\n * Creates a function that invokes two functions and ignores their return vales.\n *\n * @param {function} one Function to invoke first.\n * @param {function} two Function to invoke second.\n * @return {function} Function that invokes the two argument functions.\n * @private\n */\nfunction createChainedFunction(one, two) {\n  return function chainedFunction() {\n    one.apply(this, arguments);\n    two.apply(this, arguments);\n  };\n}\n\n/**\n * Binds a method to the component.\n *\n * @param {object} component Component whose method is going to be bound.\n * @param {function} method Method to be bound.\n * @return {function} The bound method.\n */\nfunction bindAutoBindMethod(component, method) {\n  var boundMethod = method.bind(component);\n  if (process.env.NODE_ENV !== 'production') {\n    boundMethod.__reactBoundContext = component;\n    boundMethod.__reactBoundMethod = method;\n    boundMethod.__reactBoundArguments = null;\n    var componentName = component.constructor.displayName;\n    var _bind = boundMethod.bind;\n    boundMethod.bind = function (newThis) {\n      for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n        args[_key - 1] = arguments[_key];\n      }\n\n      // User is trying to bind() an autobound method; we effectively will\n      // ignore the value of \"this\" that the user is trying to use, so\n      // let's warn.\n      if (newThis !== component && newThis !== null) {\n        process.env.NODE_ENV !== 'production' ? warning(false, 'bind(): React component methods may only be bound to the ' + 'component instance. See %s', componentName) : void 0;\n      } else if (!args.length) {\n        process.env.NODE_ENV !== 'production' ? warning(false, 'bind(): You are binding a component method to the component. ' + 'React does this for you automatically in a high-performance ' + 'way, so you can safely remove this call. See %s', componentName) : void 0;\n        return boundMethod;\n      }\n      var reboundMethod = _bind.apply(boundMethod, arguments);\n      reboundMethod.__reactBoundContext = component;\n      reboundMethod.__reactBoundMethod = method;\n      reboundMethod.__reactBoundArguments = args;\n      return reboundMethod;\n    };\n  }\n  return boundMethod;\n}\n\n/**\n * Binds all auto-bound methods in a component.\n *\n * @param {object} component Component whose method is going to be bound.\n */\nfunction bindAutoBindMethods(component) {\n  var pairs = component.__reactAutoBindPairs;\n  for (var i = 0; i < pairs.length; i += 2) {\n    var autoBindKey = pairs[i];\n    var method = pairs[i + 1];\n    component[autoBindKey] = bindAutoBindMethod(component, method);\n  }\n}\n\n/**\n * Add more to the ReactClass base class. These are all legacy features and\n * therefore not already part of the modern ReactComponent.\n */\nvar ReactClassMixin = {\n\n  /**\n   * TODO: This will be deprecated because state should always keep a consistent\n   * type signature and the only use case for this, is to avoid that.\n   */\n  replaceState: function (newState, callback) {\n    this.updater.enqueueReplaceState(this, newState);\n    if (callback) {\n      this.updater.enqueueCallback(this, callback, 'replaceState');\n    }\n  },\n\n  /**\n   * Checks whether or not this composite component is mounted.\n   * @return {boolean} True if mounted, false otherwise.\n   * @protected\n   * @final\n   */\n  isMounted: function () {\n    return this.updater.isMounted(this);\n  }\n};\n\nvar ReactClassComponent = function () {};\n_assign(ReactClassComponent.prototype, ReactComponent.prototype, ReactClassMixin);\n\nvar didWarnDeprecated = false;\n\n/**\n * Module for creating composite components.\n *\n * @class ReactClass\n */\nvar ReactClass = {\n\n  /**\n   * Creates a composite component class given a class specification.\n   * See https://facebook.github.io/react/docs/top-level-api.html#react.createclass\n   *\n   * @param {object} spec Class specification (which must define `render`).\n   * @return {function} Component constructor function.\n   * @public\n   */\n  createClass: function (spec) {\n    if (process.env.NODE_ENV !== 'production') {\n      process.env.NODE_ENV !== 'production' ? warning(didWarnDeprecated, '%s: React.createClass is deprecated and will be removed in version 16. ' + 'Use plain JavaScript classes instead. If you\\'re not yet ready to ' + 'migrate, create-react-class is available on npm as a ' + 'drop-in replacement.', spec && spec.displayName || 'A Component') : void 0;\n      didWarnDeprecated = true;\n    }\n\n    // To keep our warnings more understandable, we'll use a little hack here to\n    // ensure that Constructor.name !== 'Constructor'. This makes sure we don't\n    // unnecessarily identify a class without displayName as 'Constructor'.\n    var Constructor = identity(function (props, context, updater) {\n      // This constructor gets overridden by mocks. The argument is used\n      // by mocks to assert on what gets mounted.\n\n      if (process.env.NODE_ENV !== 'production') {\n        process.env.NODE_ENV !== 'production' ? warning(this instanceof Constructor, 'Something is calling a React component directly. Use a factory or ' + 'JSX instead. See: https://fb.me/react-legacyfactory') : void 0;\n      }\n\n      // Wire up auto-binding\n      if (this.__reactAutoBindPairs.length) {\n        bindAutoBindMethods(this);\n      }\n\n      this.props = props;\n      this.context = context;\n      this.refs = emptyObject;\n      this.updater = updater || ReactNoopUpdateQueue;\n\n      this.state = null;\n\n      // ReactClasses doesn't have constructors. Instead, they use the\n      // getInitialState and componentWillMount methods for initialization.\n\n      var initialState = this.getInitialState ? this.getInitialState() : null;\n      if (process.env.NODE_ENV !== 'production') {\n        // We allow auto-mocks to proceed as if they're returning null.\n        if (initialState === undefined && this.getInitialState._isMockFunction) {\n          // This is probably bad practice. Consider warning here and\n          // deprecating this convenience.\n          initialState = null;\n        }\n      }\n      !(typeof initialState === 'object' && !Array.isArray(initialState)) ? process.env.NODE_ENV !== 'production' ? invariant(false, '%s.getInitialState(): must return an object or null', Constructor.displayName || 'ReactCompositeComponent') : _prodInvariant('82', Constructor.displayName || 'ReactCompositeComponent') : void 0;\n\n      this.state = initialState;\n    });\n    Constructor.prototype = new ReactClassComponent();\n    Constructor.prototype.constructor = Constructor;\n    Constructor.prototype.__reactAutoBindPairs = [];\n\n    injectedMixins.forEach(mixSpecIntoComponent.bind(null, Constructor));\n\n    mixSpecIntoComponent(Constructor, spec);\n\n    // Initialize the defaultProps property after all mixins have been merged.\n    if (Constructor.getDefaultProps) {\n      Constructor.defaultProps = Constructor.getDefaultProps();\n    }\n\n    if (process.env.NODE_ENV !== 'production') {\n      // This is a tag to indicate that the use of these method names is ok,\n      // since it's used with createClass. If it's not, then it's likely a\n      // mistake so we'll warn you to use the static property, property\n      // initializer or constructor respectively.\n      if (Constructor.getDefaultProps) {\n        Constructor.getDefaultProps.isReactClassApproved = {};\n      }\n      if (Constructor.prototype.getInitialState) {\n        Constructor.prototype.getInitialState.isReactClassApproved = {};\n      }\n    }\n\n    !Constructor.prototype.render ? process.env.NODE_ENV !== 'production' ? invariant(false, 'createClass(...): Class specification must implement a `render` method.') : _prodInvariant('83') : void 0;\n\n    if (process.env.NODE_ENV !== 'production') {\n      process.env.NODE_ENV !== 'production' ? warning(!Constructor.prototype.componentShouldUpdate, '%s has a method called ' + 'componentShouldUpdate(). Did you mean shouldComponentUpdate()? ' + 'The name is phrased as a question because the function is ' + 'expected to return a value.', spec.displayName || 'A component') : void 0;\n      process.env.NODE_ENV !== 'production' ? warning(!Constructor.prototype.componentWillRecieveProps, '%s has a method called ' + 'componentWillRecieveProps(). Did you mean componentWillReceiveProps()?', spec.displayName || 'A component') : void 0;\n    }\n\n    // Reduce time spent doing lookups by setting these on the prototype.\n    for (var methodName in ReactClassInterface) {\n      if (!Constructor.prototype[methodName]) {\n        Constructor.prototype[methodName] = null;\n      }\n    }\n\n    return Constructor;\n  },\n\n  injection: {\n    injectMixin: function (mixin) {\n      injectedMixins.push(mixin);\n    }\n  }\n\n};\n\nmodule.exports = ReactClass;\n}).call(this,require('_process'))\n},{\"./ReactComponent\":254,\"./ReactElement\":258,\"./ReactNoopUpdateQueue\":261,\"./ReactPropTypeLocationNames\":262,\"./reactProdInvariant\":272,\"_process\":112,\"fbjs/lib/emptyObject\":97,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111,\"object-assign\":114}],254:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar ReactNoopUpdateQueue = require('./ReactNoopUpdateQueue');\n\nvar canDefineProperty = require('./canDefineProperty');\nvar emptyObject = require('fbjs/lib/emptyObject');\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\n/**\n * Base class helpers for the updating state of a component.\n */\nfunction ReactComponent(props, context, updater) {\n  this.props = props;\n  this.context = context;\n  this.refs = emptyObject;\n  // We initialize the default updater but the real one gets injected by the\n  // renderer.\n  this.updater = updater || ReactNoopUpdateQueue;\n}\n\nReactComponent.prototype.isReactComponent = {};\n\n/**\n * Sets a subset of the state. Always use this to mutate\n * state. You should treat `this.state` as immutable.\n *\n * There is no guarantee that `this.state` will be immediately updated, so\n * accessing `this.state` after calling this method may return the old value.\n *\n * There is no guarantee that calls to `setState` will run synchronously,\n * as they may eventually be batched together.  You can provide an optional\n * callback that will be executed when the call to setState is actually\n * completed.\n *\n * When a function is provided to setState, it will be called at some point in\n * the future (not synchronously). It will be called with the up to date\n * component arguments (state, props, context). These values can be different\n * from this.* because your function may be called after receiveProps but before\n * shouldComponentUpdate, and this new state, props, and context will not yet be\n * assigned to this.\n *\n * @param {object|function} partialState Next partial state or function to\n *        produce next partial state to be merged with current state.\n * @param {?function} callback Called after state is updated.\n * @final\n * @protected\n */\nReactComponent.prototype.setState = function (partialState, callback) {\n  !(typeof partialState === 'object' || typeof partialState === 'function' || partialState == null) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'setState(...): takes an object of state variables to update or a function which returns an object of state variables.') : _prodInvariant('85') : void 0;\n  this.updater.enqueueSetState(this, partialState);\n  if (callback) {\n    this.updater.enqueueCallback(this, callback, 'setState');\n  }\n};\n\n/**\n * Forces an update. This should only be invoked when it is known with\n * certainty that we are **not** in a DOM transaction.\n *\n * You may want to call this when you know that some deeper aspect of the\n * component's state has changed but `setState` was not called.\n *\n * This will not invoke `shouldComponentUpdate`, but it will invoke\n * `componentWillUpdate` and `componentDidUpdate`.\n *\n * @param {?function} callback Called after update is complete.\n * @final\n * @protected\n */\nReactComponent.prototype.forceUpdate = function (callback) {\n  this.updater.enqueueForceUpdate(this);\n  if (callback) {\n    this.updater.enqueueCallback(this, callback, 'forceUpdate');\n  }\n};\n\n/**\n * Deprecated APIs. These APIs used to exist on classic React classes but since\n * we would like to deprecate them, we're not going to move them over to this\n * modern base class. Instead, we define a getter that warns if it's accessed.\n */\nif (process.env.NODE_ENV !== 'production') {\n  var deprecatedAPIs = {\n    isMounted: ['isMounted', 'Instead, make sure to clean up subscriptions and pending requests in ' + 'componentWillUnmount to prevent memory leaks.'],\n    replaceState: ['replaceState', 'Refactor your code to use setState instead (see ' + 'https://github.com/facebook/react/issues/3236).']\n  };\n  var defineDeprecationWarning = function (methodName, info) {\n    if (canDefineProperty) {\n      Object.defineProperty(ReactComponent.prototype, methodName, {\n        get: function () {\n          process.env.NODE_ENV !== 'production' ? warning(false, '%s(...) is deprecated in plain JavaScript React classes. %s', info[0], info[1]) : void 0;\n          return undefined;\n        }\n      });\n    }\n  };\n  for (var fnName in deprecatedAPIs) {\n    if (deprecatedAPIs.hasOwnProperty(fnName)) {\n      defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);\n    }\n  }\n}\n\nmodule.exports = ReactComponent;\n}).call(this,require('_process'))\n},{\"./ReactNoopUpdateQueue\":261,\"./canDefineProperty\":267,\"./reactProdInvariant\":272,\"_process\":112,\"fbjs/lib/emptyObject\":97,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111}],255:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2016-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar ReactCurrentOwner = require('./ReactCurrentOwner');\n\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\nfunction isNative(fn) {\n  // Based on isNative() from Lodash\n  var funcToString = Function.prototype.toString;\n  var hasOwnProperty = Object.prototype.hasOwnProperty;\n  var reIsNative = RegExp('^' + funcToString\n  // Take an example native function source for comparison\n  .call(hasOwnProperty)\n  // Strip regex characters so we can use it for regex\n  .replace(/[\\\\^$.*+?()[\\]{}|]/g, '\\\\$&')\n  // Remove hasOwnProperty from the template to make it generic\n  .replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$');\n  try {\n    var source = funcToString.call(fn);\n    return reIsNative.test(source);\n  } catch (err) {\n    return false;\n  }\n}\n\nvar canUseCollections =\n// Array.from\ntypeof Array.from === 'function' &&\n// Map\ntypeof Map === 'function' && isNative(Map) &&\n// Map.prototype.keys\nMap.prototype != null && typeof Map.prototype.keys === 'function' && isNative(Map.prototype.keys) &&\n// Set\ntypeof Set === 'function' && isNative(Set) &&\n// Set.prototype.keys\nSet.prototype != null && typeof Set.prototype.keys === 'function' && isNative(Set.prototype.keys);\n\nvar setItem;\nvar getItem;\nvar removeItem;\nvar getItemIDs;\nvar addRoot;\nvar removeRoot;\nvar getRootIDs;\n\nif (canUseCollections) {\n  var itemMap = new Map();\n  var rootIDSet = new Set();\n\n  setItem = function (id, item) {\n    itemMap.set(id, item);\n  };\n  getItem = function (id) {\n    return itemMap.get(id);\n  };\n  removeItem = function (id) {\n    itemMap['delete'](id);\n  };\n  getItemIDs = function () {\n    return Array.from(itemMap.keys());\n  };\n\n  addRoot = function (id) {\n    rootIDSet.add(id);\n  };\n  removeRoot = function (id) {\n    rootIDSet['delete'](id);\n  };\n  getRootIDs = function () {\n    return Array.from(rootIDSet.keys());\n  };\n} else {\n  var itemByKey = {};\n  var rootByKey = {};\n\n  // Use non-numeric keys to prevent V8 performance issues:\n  // https://github.com/facebook/react/pull/7232\n  var getKeyFromID = function (id) {\n    return '.' + id;\n  };\n  var getIDFromKey = function (key) {\n    return parseInt(key.substr(1), 10);\n  };\n\n  setItem = function (id, item) {\n    var key = getKeyFromID(id);\n    itemByKey[key] = item;\n  };\n  getItem = function (id) {\n    var key = getKeyFromID(id);\n    return itemByKey[key];\n  };\n  removeItem = function (id) {\n    var key = getKeyFromID(id);\n    delete itemByKey[key];\n  };\n  getItemIDs = function () {\n    return Object.keys(itemByKey).map(getIDFromKey);\n  };\n\n  addRoot = function (id) {\n    var key = getKeyFromID(id);\n    rootByKey[key] = true;\n  };\n  removeRoot = function (id) {\n    var key = getKeyFromID(id);\n    delete rootByKey[key];\n  };\n  getRootIDs = function () {\n    return Object.keys(rootByKey).map(getIDFromKey);\n  };\n}\n\nvar unmountedIDs = [];\n\nfunction purgeDeep(id) {\n  var item = getItem(id);\n  if (item) {\n    var childIDs = item.childIDs;\n\n    removeItem(id);\n    childIDs.forEach(purgeDeep);\n  }\n}\n\nfunction describeComponentFrame(name, source, ownerName) {\n  return '\\n    in ' + (name || 'Unknown') + (source ? ' (at ' + source.fileName.replace(/^.*[\\\\\\/]/, '') + ':' + source.lineNumber + ')' : ownerName ? ' (created by ' + ownerName + ')' : '');\n}\n\nfunction getDisplayName(element) {\n  if (element == null) {\n    return '#empty';\n  } else if (typeof element === 'string' || typeof element === 'number') {\n    return '#text';\n  } else if (typeof element.type === 'string') {\n    return element.type;\n  } else {\n    return element.type.displayName || element.type.name || 'Unknown';\n  }\n}\n\nfunction describeID(id) {\n  var name = ReactComponentTreeHook.getDisplayName(id);\n  var element = ReactComponentTreeHook.getElement(id);\n  var ownerID = ReactComponentTreeHook.getOwnerID(id);\n  var ownerName;\n  if (ownerID) {\n    ownerName = ReactComponentTreeHook.getDisplayName(ownerID);\n  }\n  process.env.NODE_ENV !== 'production' ? warning(element, 'ReactComponentTreeHook: Missing React element for debugID %s when ' + 'building stack', id) : void 0;\n  return describeComponentFrame(name, element && element._source, ownerName);\n}\n\nvar ReactComponentTreeHook = {\n  onSetChildren: function (id, nextChildIDs) {\n    var item = getItem(id);\n    !item ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Item must have been set') : _prodInvariant('144') : void 0;\n    item.childIDs = nextChildIDs;\n\n    for (var i = 0; i < nextChildIDs.length; i++) {\n      var nextChildID = nextChildIDs[i];\n      var nextChild = getItem(nextChildID);\n      !nextChild ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Expected hook events to fire for the child before its parent includes it in onSetChildren().') : _prodInvariant('140') : void 0;\n      !(nextChild.childIDs != null || typeof nextChild.element !== 'object' || nextChild.element == null) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Expected onSetChildren() to fire for a container child before its parent includes it in onSetChildren().') : _prodInvariant('141') : void 0;\n      !nextChild.isMounted ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Expected onMountComponent() to fire for the child before its parent includes it in onSetChildren().') : _prodInvariant('71') : void 0;\n      if (nextChild.parentID == null) {\n        nextChild.parentID = id;\n        // TODO: This shouldn't be necessary but mounting a new root during in\n        // componentWillMount currently causes not-yet-mounted components to\n        // be purged from our tree data so their parent id is missing.\n      }\n      !(nextChild.parentID === id) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Expected onBeforeMountComponent() parent and onSetChildren() to be consistent (%s has parents %s and %s).', nextChildID, nextChild.parentID, id) : _prodInvariant('142', nextChildID, nextChild.parentID, id) : void 0;\n    }\n  },\n  onBeforeMountComponent: function (id, element, parentID) {\n    var item = {\n      element: element,\n      parentID: parentID,\n      text: null,\n      childIDs: [],\n      isMounted: false,\n      updateCount: 0\n    };\n    setItem(id, item);\n  },\n  onBeforeUpdateComponent: function (id, element) {\n    var item = getItem(id);\n    if (!item || !item.isMounted) {\n      // We may end up here as a result of setState() in componentWillUnmount().\n      // In this case, ignore the element.\n      return;\n    }\n    item.element = element;\n  },\n  onMountComponent: function (id) {\n    var item = getItem(id);\n    !item ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Item must have been set') : _prodInvariant('144') : void 0;\n    item.isMounted = true;\n    var isRoot = item.parentID === 0;\n    if (isRoot) {\n      addRoot(id);\n    }\n  },\n  onUpdateComponent: function (id) {\n    var item = getItem(id);\n    if (!item || !item.isMounted) {\n      // We may end up here as a result of setState() in componentWillUnmount().\n      // In this case, ignore the element.\n      return;\n    }\n    item.updateCount++;\n  },\n  onUnmountComponent: function (id) {\n    var item = getItem(id);\n    if (item) {\n      // We need to check if it exists.\n      // `item` might not exist if it is inside an error boundary, and a sibling\n      // error boundary child threw while mounting. Then this instance never\n      // got a chance to mount, but it still gets an unmounting event during\n      // the error boundary cleanup.\n      item.isMounted = false;\n      var isRoot = item.parentID === 0;\n      if (isRoot) {\n        removeRoot(id);\n      }\n    }\n    unmountedIDs.push(id);\n  },\n  purgeUnmountedComponents: function () {\n    if (ReactComponentTreeHook._preventPurging) {\n      // Should only be used for testing.\n      return;\n    }\n\n    for (var i = 0; i < unmountedIDs.length; i++) {\n      var id = unmountedIDs[i];\n      purgeDeep(id);\n    }\n    unmountedIDs.length = 0;\n  },\n  isMounted: function (id) {\n    var item = getItem(id);\n    return item ? item.isMounted : false;\n  },\n  getCurrentStackAddendum: function (topElement) {\n    var info = '';\n    if (topElement) {\n      var name = getDisplayName(topElement);\n      var owner = topElement._owner;\n      info += describeComponentFrame(name, topElement._source, owner && owner.getName());\n    }\n\n    var currentOwner = ReactCurrentOwner.current;\n    var id = currentOwner && currentOwner._debugID;\n\n    info += ReactComponentTreeHook.getStackAddendumByID(id);\n    return info;\n  },\n  getStackAddendumByID: function (id) {\n    var info = '';\n    while (id) {\n      info += describeID(id);\n      id = ReactComponentTreeHook.getParentID(id);\n    }\n    return info;\n  },\n  getChildIDs: function (id) {\n    var item = getItem(id);\n    return item ? item.childIDs : [];\n  },\n  getDisplayName: function (id) {\n    var element = ReactComponentTreeHook.getElement(id);\n    if (!element) {\n      return null;\n    }\n    return getDisplayName(element);\n  },\n  getElement: function (id) {\n    var item = getItem(id);\n    return item ? item.element : null;\n  },\n  getOwnerID: function (id) {\n    var element = ReactComponentTreeHook.getElement(id);\n    if (!element || !element._owner) {\n      return null;\n    }\n    return element._owner._debugID;\n  },\n  getParentID: function (id) {\n    var item = getItem(id);\n    return item ? item.parentID : null;\n  },\n  getSource: function (id) {\n    var item = getItem(id);\n    var element = item ? item.element : null;\n    var source = element != null ? element._source : null;\n    return source;\n  },\n  getText: function (id) {\n    var element = ReactComponentTreeHook.getElement(id);\n    if (typeof element === 'string') {\n      return element;\n    } else if (typeof element === 'number') {\n      return '' + element;\n    } else {\n      return null;\n    }\n  },\n  getUpdateCount: function (id) {\n    var item = getItem(id);\n    return item ? item.updateCount : 0;\n  },\n\n\n  getRootIDs: getRootIDs,\n  getRegisteredIDs: getItemIDs\n};\n\nmodule.exports = ReactComponentTreeHook;\n}).call(this,require('_process'))\n},{\"./ReactCurrentOwner\":256,\"./reactProdInvariant\":272,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111}],256:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\n/**\n * Keeps track of the current owner.\n *\n * The current owner is the component who should own any components that are\n * currently being constructed.\n */\nvar ReactCurrentOwner = {\n\n  /**\n   * @internal\n   * @type {ReactComponent}\n   */\n  current: null\n\n};\n\nmodule.exports = ReactCurrentOwner;\n},{}],257:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar ReactElement = require('./ReactElement');\n\n/**\n * Create a factory that creates HTML tag elements.\n *\n * @private\n */\nvar createDOMFactory = ReactElement.createFactory;\nif (process.env.NODE_ENV !== 'production') {\n  var ReactElementValidator = require('./ReactElementValidator');\n  createDOMFactory = ReactElementValidator.createFactory;\n}\n\n/**\n * Creates a mapping from supported HTML tags to `ReactDOMComponent` classes.\n * This is also accessible via `React.DOM`.\n *\n * @public\n */\nvar ReactDOMFactories = {\n  a: createDOMFactory('a'),\n  abbr: createDOMFactory('abbr'),\n  address: createDOMFactory('address'),\n  area: createDOMFactory('area'),\n  article: createDOMFactory('article'),\n  aside: createDOMFactory('aside'),\n  audio: createDOMFactory('audio'),\n  b: createDOMFactory('b'),\n  base: createDOMFactory('base'),\n  bdi: createDOMFactory('bdi'),\n  bdo: createDOMFactory('bdo'),\n  big: createDOMFactory('big'),\n  blockquote: createDOMFactory('blockquote'),\n  body: createDOMFactory('body'),\n  br: createDOMFactory('br'),\n  button: createDOMFactory('button'),\n  canvas: createDOMFactory('canvas'),\n  caption: createDOMFactory('caption'),\n  cite: createDOMFactory('cite'),\n  code: createDOMFactory('code'),\n  col: createDOMFactory('col'),\n  colgroup: createDOMFactory('colgroup'),\n  data: createDOMFactory('data'),\n  datalist: createDOMFactory('datalist'),\n  dd: createDOMFactory('dd'),\n  del: createDOMFactory('del'),\n  details: createDOMFactory('details'),\n  dfn: createDOMFactory('dfn'),\n  dialog: createDOMFactory('dialog'),\n  div: createDOMFactory('div'),\n  dl: createDOMFactory('dl'),\n  dt: createDOMFactory('dt'),\n  em: createDOMFactory('em'),\n  embed: createDOMFactory('embed'),\n  fieldset: createDOMFactory('fieldset'),\n  figcaption: createDOMFactory('figcaption'),\n  figure: createDOMFactory('figure'),\n  footer: createDOMFactory('footer'),\n  form: createDOMFactory('form'),\n  h1: createDOMFactory('h1'),\n  h2: createDOMFactory('h2'),\n  h3: createDOMFactory('h3'),\n  h4: createDOMFactory('h4'),\n  h5: createDOMFactory('h5'),\n  h6: createDOMFactory('h6'),\n  head: createDOMFactory('head'),\n  header: createDOMFactory('header'),\n  hgroup: createDOMFactory('hgroup'),\n  hr: createDOMFactory('hr'),\n  html: createDOMFactory('html'),\n  i: createDOMFactory('i'),\n  iframe: createDOMFactory('iframe'),\n  img: createDOMFactory('img'),\n  input: createDOMFactory('input'),\n  ins: createDOMFactory('ins'),\n  kbd: createDOMFactory('kbd'),\n  keygen: createDOMFactory('keygen'),\n  label: createDOMFactory('label'),\n  legend: createDOMFactory('legend'),\n  li: createDOMFactory('li'),\n  link: createDOMFactory('link'),\n  main: createDOMFactory('main'),\n  map: createDOMFactory('map'),\n  mark: createDOMFactory('mark'),\n  menu: createDOMFactory('menu'),\n  menuitem: createDOMFactory('menuitem'),\n  meta: createDOMFactory('meta'),\n  meter: createDOMFactory('meter'),\n  nav: createDOMFactory('nav'),\n  noscript: createDOMFactory('noscript'),\n  object: createDOMFactory('object'),\n  ol: createDOMFactory('ol'),\n  optgroup: createDOMFactory('optgroup'),\n  option: createDOMFactory('option'),\n  output: createDOMFactory('output'),\n  p: createDOMFactory('p'),\n  param: createDOMFactory('param'),\n  picture: createDOMFactory('picture'),\n  pre: createDOMFactory('pre'),\n  progress: createDOMFactory('progress'),\n  q: createDOMFactory('q'),\n  rp: createDOMFactory('rp'),\n  rt: createDOMFactory('rt'),\n  ruby: createDOMFactory('ruby'),\n  s: createDOMFactory('s'),\n  samp: createDOMFactory('samp'),\n  script: createDOMFactory('script'),\n  section: createDOMFactory('section'),\n  select: createDOMFactory('select'),\n  small: createDOMFactory('small'),\n  source: createDOMFactory('source'),\n  span: createDOMFactory('span'),\n  strong: createDOMFactory('strong'),\n  style: createDOMFactory('style'),\n  sub: createDOMFactory('sub'),\n  summary: createDOMFactory('summary'),\n  sup: createDOMFactory('sup'),\n  table: createDOMFactory('table'),\n  tbody: createDOMFactory('tbody'),\n  td: createDOMFactory('td'),\n  textarea: createDOMFactory('textarea'),\n  tfoot: createDOMFactory('tfoot'),\n  th: createDOMFactory('th'),\n  thead: createDOMFactory('thead'),\n  time: createDOMFactory('time'),\n  title: createDOMFactory('title'),\n  tr: createDOMFactory('tr'),\n  track: createDOMFactory('track'),\n  u: createDOMFactory('u'),\n  ul: createDOMFactory('ul'),\n  'var': createDOMFactory('var'),\n  video: createDOMFactory('video'),\n  wbr: createDOMFactory('wbr'),\n\n  // SVG\n  circle: createDOMFactory('circle'),\n  clipPath: createDOMFactory('clipPath'),\n  defs: createDOMFactory('defs'),\n  ellipse: createDOMFactory('ellipse'),\n  g: createDOMFactory('g'),\n  image: createDOMFactory('image'),\n  line: createDOMFactory('line'),\n  linearGradient: createDOMFactory('linearGradient'),\n  mask: createDOMFactory('mask'),\n  path: createDOMFactory('path'),\n  pattern: createDOMFactory('pattern'),\n  polygon: createDOMFactory('polygon'),\n  polyline: createDOMFactory('polyline'),\n  radialGradient: createDOMFactory('radialGradient'),\n  rect: createDOMFactory('rect'),\n  stop: createDOMFactory('stop'),\n  svg: createDOMFactory('svg'),\n  text: createDOMFactory('text'),\n  tspan: createDOMFactory('tspan')\n};\n\nmodule.exports = ReactDOMFactories;\n}).call(this,require('_process'))\n},{\"./ReactElement\":258,\"./ReactElementValidator\":260,\"_process\":112}],258:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar ReactCurrentOwner = require('./ReactCurrentOwner');\n\nvar warning = require('fbjs/lib/warning');\nvar canDefineProperty = require('./canDefineProperty');\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\n\nvar REACT_ELEMENT_TYPE = require('./ReactElementSymbol');\n\nvar RESERVED_PROPS = {\n  key: true,\n  ref: true,\n  __self: true,\n  __source: true\n};\n\nvar specialPropKeyWarningShown, specialPropRefWarningShown;\n\nfunction hasValidRef(config) {\n  if (process.env.NODE_ENV !== 'production') {\n    if (hasOwnProperty.call(config, 'ref')) {\n      var getter = Object.getOwnPropertyDescriptor(config, 'ref').get;\n      if (getter && getter.isReactWarning) {\n        return false;\n      }\n    }\n  }\n  return config.ref !== undefined;\n}\n\nfunction hasValidKey(config) {\n  if (process.env.NODE_ENV !== 'production') {\n    if (hasOwnProperty.call(config, 'key')) {\n      var getter = Object.getOwnPropertyDescriptor(config, 'key').get;\n      if (getter && getter.isReactWarning) {\n        return false;\n      }\n    }\n  }\n  return config.key !== undefined;\n}\n\nfunction defineKeyPropWarningGetter(props, displayName) {\n  var warnAboutAccessingKey = function () {\n    if (!specialPropKeyWarningShown) {\n      specialPropKeyWarningShown = true;\n      process.env.NODE_ENV !== 'production' ? warning(false, '%s: `key` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName) : void 0;\n    }\n  };\n  warnAboutAccessingKey.isReactWarning = true;\n  Object.defineProperty(props, 'key', {\n    get: warnAboutAccessingKey,\n    configurable: true\n  });\n}\n\nfunction defineRefPropWarningGetter(props, displayName) {\n  var warnAboutAccessingRef = function () {\n    if (!specialPropRefWarningShown) {\n      specialPropRefWarningShown = true;\n      process.env.NODE_ENV !== 'production' ? warning(false, '%s: `ref` is not a prop. Trying to access it will result ' + 'in `undefined` being returned. If you need to access the same ' + 'value within the child component, you should pass it as a different ' + 'prop. (https://fb.me/react-special-props)', displayName) : void 0;\n    }\n  };\n  warnAboutAccessingRef.isReactWarning = true;\n  Object.defineProperty(props, 'ref', {\n    get: warnAboutAccessingRef,\n    configurable: true\n  });\n}\n\n/**\n * Factory method to create a new React element. This no longer adheres to\n * the class pattern, so do not use new to call it. Also, no instanceof check\n * will work. Instead test $$typeof field against Symbol.for('react.element') to check\n * if something is a React Element.\n *\n * @param {*} type\n * @param {*} key\n * @param {string|object} ref\n * @param {*} self A *temporary* helper to detect places where `this` is\n * different from the `owner` when React.createElement is called, so that we\n * can warn. We want to get rid of owner and replace string `ref`s with arrow\n * functions, and as long as `this` and owner are the same, there will be no\n * change in behavior.\n * @param {*} source An annotation object (added by a transpiler or otherwise)\n * indicating filename, line number, and/or other information.\n * @param {*} owner\n * @param {*} props\n * @internal\n */\nvar ReactElement = function (type, key, ref, self, source, owner, props) {\n  var element = {\n    // This tag allow us to uniquely identify this as a React Element\n    $$typeof: REACT_ELEMENT_TYPE,\n\n    // Built-in properties that belong on the element\n    type: type,\n    key: key,\n    ref: ref,\n    props: props,\n\n    // Record the component responsible for creating this element.\n    _owner: owner\n  };\n\n  if (process.env.NODE_ENV !== 'production') {\n    // The validation flag is currently mutative. We put it on\n    // an external backing store so that we can freeze the whole object.\n    // This can be replaced with a WeakMap once they are implemented in\n    // commonly used development environments.\n    element._store = {};\n\n    // To make comparing ReactElements easier for testing purposes, we make\n    // the validation flag non-enumerable (where possible, which should\n    // include every environment we run tests in), so the test framework\n    // ignores it.\n    if (canDefineProperty) {\n      Object.defineProperty(element._store, 'validated', {\n        configurable: false,\n        enumerable: false,\n        writable: true,\n        value: false\n      });\n      // self and source are DEV only properties.\n      Object.defineProperty(element, '_self', {\n        configurable: false,\n        enumerable: false,\n        writable: false,\n        value: self\n      });\n      // Two elements created in two different places should be considered\n      // equal for testing purposes and therefore we hide it from enumeration.\n      Object.defineProperty(element, '_source', {\n        configurable: false,\n        enumerable: false,\n        writable: false,\n        value: source\n      });\n    } else {\n      element._store.validated = false;\n      element._self = self;\n      element._source = source;\n    }\n    if (Object.freeze) {\n      Object.freeze(element.props);\n      Object.freeze(element);\n    }\n  }\n\n  return element;\n};\n\n/**\n * Create and return a new ReactElement of the given type.\n * See https://facebook.github.io/react/docs/top-level-api.html#react.createelement\n */\nReactElement.createElement = function (type, config, children) {\n  var propName;\n\n  // Reserved names are extracted\n  var props = {};\n\n  var key = null;\n  var ref = null;\n  var self = null;\n  var source = null;\n\n  if (config != null) {\n    if (hasValidRef(config)) {\n      ref = config.ref;\n    }\n    if (hasValidKey(config)) {\n      key = '' + config.key;\n    }\n\n    self = config.__self === undefined ? null : config.__self;\n    source = config.__source === undefined ? null : config.__source;\n    // Remaining properties are added to a new props object\n    for (propName in config) {\n      if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {\n        props[propName] = config[propName];\n      }\n    }\n  }\n\n  // Children can be more than one argument, and those are transferred onto\n  // the newly allocated props object.\n  var childrenLength = arguments.length - 2;\n  if (childrenLength === 1) {\n    props.children = children;\n  } else if (childrenLength > 1) {\n    var childArray = Array(childrenLength);\n    for (var i = 0; i < childrenLength; i++) {\n      childArray[i] = arguments[i + 2];\n    }\n    if (process.env.NODE_ENV !== 'production') {\n      if (Object.freeze) {\n        Object.freeze(childArray);\n      }\n    }\n    props.children = childArray;\n  }\n\n  // Resolve default props\n  if (type && type.defaultProps) {\n    var defaultProps = type.defaultProps;\n    for (propName in defaultProps) {\n      if (props[propName] === undefined) {\n        props[propName] = defaultProps[propName];\n      }\n    }\n  }\n  if (process.env.NODE_ENV !== 'production') {\n    if (key || ref) {\n      if (typeof props.$$typeof === 'undefined' || props.$$typeof !== REACT_ELEMENT_TYPE) {\n        var displayName = typeof type === 'function' ? type.displayName || type.name || 'Unknown' : type;\n        if (key) {\n          defineKeyPropWarningGetter(props, displayName);\n        }\n        if (ref) {\n          defineRefPropWarningGetter(props, displayName);\n        }\n      }\n    }\n  }\n  return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);\n};\n\n/**\n * Return a function that produces ReactElements of a given type.\n * See https://facebook.github.io/react/docs/top-level-api.html#react.createfactory\n */\nReactElement.createFactory = function (type) {\n  var factory = ReactElement.createElement.bind(null, type);\n  // Expose the type on the factory and the prototype so that it can be\n  // easily accessed on elements. E.g. `<Foo />.type === Foo`.\n  // This should not be named `constructor` since this may not be the function\n  // that created the element, and it may not even be a constructor.\n  // Legacy hook TODO: Warn if this is accessed\n  factory.type = type;\n  return factory;\n};\n\nReactElement.cloneAndReplaceKey = function (oldElement, newKey) {\n  var newElement = ReactElement(oldElement.type, newKey, oldElement.ref, oldElement._self, oldElement._source, oldElement._owner, oldElement.props);\n\n  return newElement;\n};\n\n/**\n * Clone and return a new ReactElement using element as the starting point.\n * See https://facebook.github.io/react/docs/top-level-api.html#react.cloneelement\n */\nReactElement.cloneElement = function (element, config, children) {\n  var propName;\n\n  // Original props are copied\n  var props = _assign({}, element.props);\n\n  // Reserved names are extracted\n  var key = element.key;\n  var ref = element.ref;\n  // Self is preserved since the owner is preserved.\n  var self = element._self;\n  // Source is preserved since cloneElement is unlikely to be targeted by a\n  // transpiler, and the original source is probably a better indicator of the\n  // true owner.\n  var source = element._source;\n\n  // Owner will be preserved, unless ref is overridden\n  var owner = element._owner;\n\n  if (config != null) {\n    if (hasValidRef(config)) {\n      // Silently steal the ref from the parent.\n      ref = config.ref;\n      owner = ReactCurrentOwner.current;\n    }\n    if (hasValidKey(config)) {\n      key = '' + config.key;\n    }\n\n    // Remaining properties override existing props\n    var defaultProps;\n    if (element.type && element.type.defaultProps) {\n      defaultProps = element.type.defaultProps;\n    }\n    for (propName in config) {\n      if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {\n        if (config[propName] === undefined && defaultProps !== undefined) {\n          // Resolve default props\n          props[propName] = defaultProps[propName];\n        } else {\n          props[propName] = config[propName];\n        }\n      }\n    }\n  }\n\n  // Children can be more than one argument, and those are transferred onto\n  // the newly allocated props object.\n  var childrenLength = arguments.length - 2;\n  if (childrenLength === 1) {\n    props.children = children;\n  } else if (childrenLength > 1) {\n    var childArray = Array(childrenLength);\n    for (var i = 0; i < childrenLength; i++) {\n      childArray[i] = arguments[i + 2];\n    }\n    props.children = childArray;\n  }\n\n  return ReactElement(element.type, key, ref, self, source, owner, props);\n};\n\n/**\n * Verifies the object is a ReactElement.\n * See https://facebook.github.io/react/docs/top-level-api.html#react.isvalidelement\n * @param {?object} object\n * @return {boolean} True if `object` is a valid component.\n * @final\n */\nReactElement.isValidElement = function (object) {\n  return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;\n};\n\nmodule.exports = ReactElement;\n}).call(this,require('_process'))\n},{\"./ReactCurrentOwner\":256,\"./ReactElementSymbol\":259,\"./canDefineProperty\":267,\"_process\":112,\"fbjs/lib/warning\":111,\"object-assign\":114}],259:[function(require,module,exports){\narguments[4][170][0].apply(exports,arguments)\n},{\"dup\":170}],260:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2014-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n/**\n * ReactElementValidator provides a wrapper around a element factory\n * which validates the props passed to the element. This is intended to be\n * used only in DEV and could be replaced by a static type checker for languages\n * that support it.\n */\n\n'use strict';\n\nvar ReactCurrentOwner = require('./ReactCurrentOwner');\nvar ReactComponentTreeHook = require('./ReactComponentTreeHook');\nvar ReactElement = require('./ReactElement');\n\nvar checkReactTypeSpec = require('./checkReactTypeSpec');\n\nvar canDefineProperty = require('./canDefineProperty');\nvar getIteratorFn = require('./getIteratorFn');\nvar warning = require('fbjs/lib/warning');\n\nfunction getDeclarationErrorAddendum() {\n  if (ReactCurrentOwner.current) {\n    var name = ReactCurrentOwner.current.getName();\n    if (name) {\n      return ' Check the render method of `' + name + '`.';\n    }\n  }\n  return '';\n}\n\nfunction getSourceInfoErrorAddendum(elementProps) {\n  if (elementProps !== null && elementProps !== undefined && elementProps.__source !== undefined) {\n    var source = elementProps.__source;\n    var fileName = source.fileName.replace(/^.*[\\\\\\/]/, '');\n    var lineNumber = source.lineNumber;\n    return ' Check your code at ' + fileName + ':' + lineNumber + '.';\n  }\n  return '';\n}\n\n/**\n * Warn if there's no key explicitly set on dynamic arrays of children or\n * object keys are not valid. This allows us to keep track of children between\n * updates.\n */\nvar ownerHasKeyUseWarning = {};\n\nfunction getCurrentComponentErrorInfo(parentType) {\n  var info = getDeclarationErrorAddendum();\n\n  if (!info) {\n    var parentName = typeof parentType === 'string' ? parentType : parentType.displayName || parentType.name;\n    if (parentName) {\n      info = ' Check the top-level render call using <' + parentName + '>.';\n    }\n  }\n  return info;\n}\n\n/**\n * Warn if the element doesn't have an explicit key assigned to it.\n * This element is in an array. The array could grow and shrink or be\n * reordered. All children that haven't already been validated are required to\n * have a \"key\" property assigned to it. Error statuses are cached so a warning\n * will only be shown once.\n *\n * @internal\n * @param {ReactElement} element Element that requires a key.\n * @param {*} parentType element's parent's type.\n */\nfunction validateExplicitKey(element, parentType) {\n  if (!element._store || element._store.validated || element.key != null) {\n    return;\n  }\n  element._store.validated = true;\n\n  var memoizer = ownerHasKeyUseWarning.uniqueKey || (ownerHasKeyUseWarning.uniqueKey = {});\n\n  var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);\n  if (memoizer[currentComponentErrorInfo]) {\n    return;\n  }\n  memoizer[currentComponentErrorInfo] = true;\n\n  // Usually the current owner is the offender, but if it accepts children as a\n  // property, it may be the creator of the child that's responsible for\n  // assigning it a key.\n  var childOwner = '';\n  if (element && element._owner && element._owner !== ReactCurrentOwner.current) {\n    // Give the component that originally created this child.\n    childOwner = ' It was passed a child from ' + element._owner.getName() + '.';\n  }\n\n  process.env.NODE_ENV !== 'production' ? warning(false, 'Each child in an array or iterator should have a unique \"key\" prop.' + '%s%s See https://fb.me/react-warning-keys for more information.%s', currentComponentErrorInfo, childOwner, ReactComponentTreeHook.getCurrentStackAddendum(element)) : void 0;\n}\n\n/**\n * Ensure that every element either is passed in a static location, in an\n * array with an explicit keys property defined, or in an object literal\n * with valid key property.\n *\n * @internal\n * @param {ReactNode} node Statically passed child of any type.\n * @param {*} parentType node's parent's type.\n */\nfunction validateChildKeys(node, parentType) {\n  if (typeof node !== 'object') {\n    return;\n  }\n  if (Array.isArray(node)) {\n    for (var i = 0; i < node.length; i++) {\n      var child = node[i];\n      if (ReactElement.isValidElement(child)) {\n        validateExplicitKey(child, parentType);\n      }\n    }\n  } else if (ReactElement.isValidElement(node)) {\n    // This element was passed in a valid location.\n    if (node._store) {\n      node._store.validated = true;\n    }\n  } else if (node) {\n    var iteratorFn = getIteratorFn(node);\n    // Entry iterators provide implicit keys.\n    if (iteratorFn) {\n      if (iteratorFn !== node.entries) {\n        var iterator = iteratorFn.call(node);\n        var step;\n        while (!(step = iterator.next()).done) {\n          if (ReactElement.isValidElement(step.value)) {\n            validateExplicitKey(step.value, parentType);\n          }\n        }\n      }\n    }\n  }\n}\n\n/**\n * Given an element, validate that its props follow the propTypes definition,\n * provided by the type.\n *\n * @param {ReactElement} element\n */\nfunction validatePropTypes(element) {\n  var componentClass = element.type;\n  if (typeof componentClass !== 'function') {\n    return;\n  }\n  var name = componentClass.displayName || componentClass.name;\n  if (componentClass.propTypes) {\n    checkReactTypeSpec(componentClass.propTypes, element.props, 'prop', name, element, null);\n  }\n  if (typeof componentClass.getDefaultProps === 'function') {\n    process.env.NODE_ENV !== 'production' ? warning(componentClass.getDefaultProps.isReactClassApproved, 'getDefaultProps is only used on classic React.createClass ' + 'definitions. Use a static property named `defaultProps` instead.') : void 0;\n  }\n}\n\nvar ReactElementValidator = {\n\n  createElement: function (type, props, children) {\n    var validType = typeof type === 'string' || typeof type === 'function';\n    // We warn in this case but don't throw. We expect the element creation to\n    // succeed and there will likely be errors in render.\n    if (!validType) {\n      if (typeof type !== 'function' && typeof type !== 'string') {\n        var info = '';\n        if (type === undefined || typeof type === 'object' && type !== null && Object.keys(type).length === 0) {\n          info += ' You likely forgot to export your component from the file ' + 'it\\'s defined in.';\n        }\n\n        var sourceInfo = getSourceInfoErrorAddendum(props);\n        if (sourceInfo) {\n          info += sourceInfo;\n        } else {\n          info += getDeclarationErrorAddendum();\n        }\n\n        info += ReactComponentTreeHook.getCurrentStackAddendum();\n\n        process.env.NODE_ENV !== 'production' ? warning(false, 'React.createElement: type is invalid -- expected a string (for ' + 'built-in components) or a class/function (for composite ' + 'components) but got: %s.%s', type == null ? type : typeof type, info) : void 0;\n      }\n    }\n\n    var element = ReactElement.createElement.apply(this, arguments);\n\n    // The result can be nullish if a mock or a custom function is used.\n    // TODO: Drop this when these are no longer allowed as the type argument.\n    if (element == null) {\n      return element;\n    }\n\n    // Skip key warning if the type isn't valid since our key validation logic\n    // doesn't expect a non-string/function type and can throw confusing errors.\n    // We don't want exception behavior to differ between dev and prod.\n    // (Rendering will throw with a helpful message and as soon as the type is\n    // fixed, the key warnings will appear.)\n    if (validType) {\n      for (var i = 2; i < arguments.length; i++) {\n        validateChildKeys(arguments[i], type);\n      }\n    }\n\n    validatePropTypes(element);\n\n    return element;\n  },\n\n  createFactory: function (type) {\n    var validatedFactory = ReactElementValidator.createElement.bind(null, type);\n    // Legacy hook TODO: Warn if this is accessed\n    validatedFactory.type = type;\n\n    if (process.env.NODE_ENV !== 'production') {\n      if (canDefineProperty) {\n        Object.defineProperty(validatedFactory, 'type', {\n          enumerable: false,\n          get: function () {\n            process.env.NODE_ENV !== 'production' ? warning(false, 'Factory.type is deprecated. Access the class directly ' + 'before passing it to createFactory.') : void 0;\n            Object.defineProperty(this, 'type', {\n              value: type\n            });\n            return type;\n          }\n        });\n      }\n    }\n\n    return validatedFactory;\n  },\n\n  cloneElement: function (element, props, children) {\n    var newElement = ReactElement.cloneElement.apply(this, arguments);\n    for (var i = 2; i < arguments.length; i++) {\n      validateChildKeys(arguments[i], newElement.type);\n    }\n    validatePropTypes(newElement);\n    return newElement;\n  }\n\n};\n\nmodule.exports = ReactElementValidator;\n}).call(this,require('_process'))\n},{\"./ReactComponentTreeHook\":255,\"./ReactCurrentOwner\":256,\"./ReactElement\":258,\"./canDefineProperty\":267,\"./checkReactTypeSpec\":268,\"./getIteratorFn\":269,\"_process\":112,\"fbjs/lib/warning\":111}],261:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2015-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar warning = require('fbjs/lib/warning');\n\nfunction warnNoop(publicInstance, callerName) {\n  if (process.env.NODE_ENV !== 'production') {\n    var constructor = publicInstance.constructor;\n    process.env.NODE_ENV !== 'production' ? warning(false, '%s(...): Can only update a mounted or mounting component. ' + 'This usually means you called %s() on an unmounted component. ' + 'This is a no-op. Please check the code for the %s component.', callerName, callerName, constructor && (constructor.displayName || constructor.name) || 'ReactClass') : void 0;\n  }\n}\n\n/**\n * This is the abstract API for an update queue.\n */\nvar ReactNoopUpdateQueue = {\n\n  /**\n   * Checks whether or not this composite component is mounted.\n   * @param {ReactClass} publicInstance The instance we want to test.\n   * @return {boolean} True if mounted, false otherwise.\n   * @protected\n   * @final\n   */\n  isMounted: function (publicInstance) {\n    return false;\n  },\n\n  /**\n   * Enqueue a callback that will be executed after all the pending updates\n   * have processed.\n   *\n   * @param {ReactClass} publicInstance The instance to use as `this` context.\n   * @param {?function} callback Called after state is updated.\n   * @internal\n   */\n  enqueueCallback: function (publicInstance, callback) {},\n\n  /**\n   * Forces an update. This should only be invoked when it is known with\n   * certainty that we are **not** in a DOM transaction.\n   *\n   * You may want to call this when you know that some deeper aspect of the\n   * component's state has changed but `setState` was not called.\n   *\n   * This will not invoke `shouldComponentUpdate`, but it will invoke\n   * `componentWillUpdate` and `componentDidUpdate`.\n   *\n   * @param {ReactClass} publicInstance The instance that should rerender.\n   * @internal\n   */\n  enqueueForceUpdate: function (publicInstance) {\n    warnNoop(publicInstance, 'forceUpdate');\n  },\n\n  /**\n   * Replaces all of the state. Always use this or `setState` to mutate state.\n   * You should treat `this.state` as immutable.\n   *\n   * There is no guarantee that `this.state` will be immediately updated, so\n   * accessing `this.state` after calling this method may return the old value.\n   *\n   * @param {ReactClass} publicInstance The instance that should rerender.\n   * @param {object} completeState Next state.\n   * @internal\n   */\n  enqueueReplaceState: function (publicInstance, completeState) {\n    warnNoop(publicInstance, 'replaceState');\n  },\n\n  /**\n   * Sets a subset of the state. This only exists because _pendingState is\n   * internal. This provides a merging strategy that is not available to deep\n   * properties which is confusing. TODO: Expose pendingState or don't use it\n   * during the merge.\n   *\n   * @param {ReactClass} publicInstance The instance that should rerender.\n   * @param {object} partialState Next partial state to be merged with state.\n   * @internal\n   */\n  enqueueSetState: function (publicInstance, partialState) {\n    warnNoop(publicInstance, 'setState');\n  }\n};\n\nmodule.exports = ReactNoopUpdateQueue;\n}).call(this,require('_process'))\n},{\"_process\":112,\"fbjs/lib/warning\":111}],262:[function(require,module,exports){\narguments[4][188][0].apply(exports,arguments)\n},{\"_process\":112,\"dup\":188}],263:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _require = require('./ReactElement'),\n    isValidElement = _require.isValidElement;\n\nvar factory = require('prop-types/factory');\n\nmodule.exports = factory(isValidElement);\n},{\"./ReactElement\":258,\"prop-types/factory\":116}],264:[function(require,module,exports){\narguments[4][189][0].apply(exports,arguments)\n},{\"dup\":189}],265:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _assign = require('object-assign');\n\nvar ReactComponent = require('./ReactComponent');\nvar ReactNoopUpdateQueue = require('./ReactNoopUpdateQueue');\n\nvar emptyObject = require('fbjs/lib/emptyObject');\n\n/**\n * Base class helpers for the updating state of a component.\n */\nfunction ReactPureComponent(props, context, updater) {\n  // Duplicated from ReactComponent.\n  this.props = props;\n  this.context = context;\n  this.refs = emptyObject;\n  // We initialize the default updater but the real one gets injected by the\n  // renderer.\n  this.updater = updater || ReactNoopUpdateQueue;\n}\n\nfunction ComponentDummy() {}\nComponentDummy.prototype = ReactComponent.prototype;\nReactPureComponent.prototype = new ComponentDummy();\nReactPureComponent.prototype.constructor = ReactPureComponent;\n// Avoid an extra prototype jump for these methods.\n_assign(ReactPureComponent.prototype, ReactComponent.prototype);\nReactPureComponent.prototype.isPureReactComponent = true;\n\nmodule.exports = ReactPureComponent;\n},{\"./ReactComponent\":254,\"./ReactNoopUpdateQueue\":261,\"fbjs/lib/emptyObject\":97,\"object-assign\":114}],266:[function(require,module,exports){\narguments[4][197][0].apply(exports,arguments)\n},{\"dup\":197}],267:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar canDefineProperty = false;\nif (process.env.NODE_ENV !== 'production') {\n  try {\n    // $FlowFixMe https://github.com/facebook/flow/issues/285\n    Object.defineProperty({}, 'x', { get: function () {} });\n    canDefineProperty = true;\n  } catch (x) {\n    // IE will fail on defineProperty\n  }\n}\n\nmodule.exports = canDefineProperty;\n}).call(this,require('_process'))\n},{\"_process\":112}],268:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar ReactPropTypeLocationNames = require('./ReactPropTypeLocationNames');\nvar ReactPropTypesSecret = require('./ReactPropTypesSecret');\n\nvar invariant = require('fbjs/lib/invariant');\nvar warning = require('fbjs/lib/warning');\n\nvar ReactComponentTreeHook;\n\nif (typeof process !== 'undefined' && process.env && process.env.NODE_ENV === 'test') {\n  // Temporary hack.\n  // Inline requires don't work well with Jest:\n  // https://github.com/facebook/react/issues/7240\n  // Remove the inline requires when we don't need them anymore:\n  // https://github.com/facebook/react/pull/7178\n  ReactComponentTreeHook = require('./ReactComponentTreeHook');\n}\n\nvar loggedTypeFailures = {};\n\n/**\n * Assert that the values match with the type specs.\n * Error messages are memorized and will only be shown once.\n *\n * @param {object} typeSpecs Map of name to a ReactPropType\n * @param {object} values Runtime values that need to be type-checked\n * @param {string} location e.g. \"prop\", \"context\", \"child context\"\n * @param {string} componentName Name of the component for error messages.\n * @param {?object} element The React element that is being type-checked\n * @param {?number} debugID The React component instance that is being type-checked\n * @private\n */\nfunction checkReactTypeSpec(typeSpecs, values, location, componentName, element, debugID) {\n  for (var typeSpecName in typeSpecs) {\n    if (typeSpecs.hasOwnProperty(typeSpecName)) {\n      var error;\n      // Prop type validation may throw. In case they do, we don't want to\n      // fail the render phase where it didn't fail before. So we log it.\n      // After these have been cleaned up, we'll let them throw.\n      try {\n        // This is intentionally an invariant that gets caught. It's the same\n        // behavior as without this statement except with a better message.\n        !(typeof typeSpecs[typeSpecName] === 'function') ? process.env.NODE_ENV !== 'production' ? invariant(false, '%s: %s type `%s` is invalid; it must be a function, usually from React.PropTypes.', componentName || 'React class', ReactPropTypeLocationNames[location], typeSpecName) : _prodInvariant('84', componentName || 'React class', ReactPropTypeLocationNames[location], typeSpecName) : void 0;\n        error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret);\n      } catch (ex) {\n        error = ex;\n      }\n      process.env.NODE_ENV !== 'production' ? warning(!error || error instanceof Error, '%s: type specification of %s `%s` is invalid; the type checker ' + 'function must return `null` or an `Error` but returned a %s. ' + 'You may have forgotten to pass an argument to the type checker ' + 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' + 'shape all require an argument).', componentName || 'React class', ReactPropTypeLocationNames[location], typeSpecName, typeof error) : void 0;\n      if (error instanceof Error && !(error.message in loggedTypeFailures)) {\n        // Only monitor this failure once because there tends to be a lot of the\n        // same error.\n        loggedTypeFailures[error.message] = true;\n\n        var componentStackInfo = '';\n\n        if (process.env.NODE_ENV !== 'production') {\n          if (!ReactComponentTreeHook) {\n            ReactComponentTreeHook = require('./ReactComponentTreeHook');\n          }\n          if (debugID !== null) {\n            componentStackInfo = ReactComponentTreeHook.getStackAddendumByID(debugID);\n          } else if (element !== null) {\n            componentStackInfo = ReactComponentTreeHook.getCurrentStackAddendum(element);\n          }\n        }\n\n        process.env.NODE_ENV !== 'production' ? warning(false, 'Failed %s type: %s%s', location, error.message, componentStackInfo) : void 0;\n      }\n    }\n  }\n}\n\nmodule.exports = checkReactTypeSpec;\n}).call(this,require('_process'))\n},{\"./ReactComponentTreeHook\":255,\"./ReactPropTypeLocationNames\":262,\"./ReactPropTypesSecret\":264,\"./reactProdInvariant\":272,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111}],269:[function(require,module,exports){\narguments[4][230][0].apply(exports,arguments)\n},{\"dup\":230}],270:[function(require,module,exports){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * \n */\n\n'use strict';\n\nvar nextDebugID = 1;\n\nfunction getNextDebugID() {\n  return nextDebugID++;\n}\n\nmodule.exports = getNextDebugID;\n},{}],271:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar ReactElement = require('./ReactElement');\n\nvar invariant = require('fbjs/lib/invariant');\n\n/**\n * Returns the first child in a collection of children and verifies that there\n * is only one child in the collection.\n *\n * See https://facebook.github.io/react/docs/top-level-api.html#react.children.only\n *\n * The current implementation of this function assumes that a single child gets\n * passed without a wrapper, but the purpose of this helper function is to\n * abstract away the particular structure of children.\n *\n * @param {?object} children Child collection structure.\n * @return {ReactElement} The first and only `ReactElement` contained in the\n * structure.\n */\nfunction onlyChild(children) {\n  !ReactElement.isValidElement(children) ? process.env.NODE_ENV !== 'production' ? invariant(false, 'React.Children.only expected to receive a single React element child.') : _prodInvariant('143') : void 0;\n  return children;\n}\n\nmodule.exports = onlyChild;\n}).call(this,require('_process'))\n},{\"./ReactElement\":258,\"./reactProdInvariant\":272,\"_process\":112,\"fbjs/lib/invariant\":104}],272:[function(require,module,exports){\narguments[4][238][0].apply(exports,arguments)\n},{\"dup\":238}],273:[function(require,module,exports){\n(function (process){\n/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar _prodInvariant = require('./reactProdInvariant');\n\nvar ReactCurrentOwner = require('./ReactCurrentOwner');\nvar REACT_ELEMENT_TYPE = require('./ReactElementSymbol');\n\nvar getIteratorFn = require('./getIteratorFn');\nvar invariant = require('fbjs/lib/invariant');\nvar KeyEscapeUtils = require('./KeyEscapeUtils');\nvar warning = require('fbjs/lib/warning');\n\nvar SEPARATOR = '.';\nvar SUBSEPARATOR = ':';\n\n/**\n * This is inlined from ReactElement since this file is shared between\n * isomorphic and renderers. We could extract this to a\n *\n */\n\n/**\n * TODO: Test that a single child and an array with one item have the same key\n * pattern.\n */\n\nvar didWarnAboutMaps = false;\n\n/**\n * Generate a key string that identifies a component within a set.\n *\n * @param {*} component A component that could contain a manual key.\n * @param {number} index Index that is used if a manual key is not provided.\n * @return {string}\n */\nfunction getComponentKey(component, index) {\n  // Do some typechecking here since we call this blindly. We want to ensure\n  // that we don't block potential future ES APIs.\n  if (component && typeof component === 'object' && component.key != null) {\n    // Explicit key\n    return KeyEscapeUtils.escape(component.key);\n  }\n  // Implicit key determined by the index in the set\n  return index.toString(36);\n}\n\n/**\n * @param {?*} children Children tree container.\n * @param {!string} nameSoFar Name of the key path so far.\n * @param {!function} callback Callback to invoke with each child found.\n * @param {?*} traverseContext Used to pass information throughout the traversal\n * process.\n * @return {!number} The number of children in this subtree.\n */\nfunction traverseAllChildrenImpl(children, nameSoFar, callback, traverseContext) {\n  var type = typeof children;\n\n  if (type === 'undefined' || type === 'boolean') {\n    // All of the above are perceived as null.\n    children = null;\n  }\n\n  if (children === null || type === 'string' || type === 'number' ||\n  // The following is inlined from ReactElement. This means we can optimize\n  // some checks. React Fiber also inlines this logic for similar purposes.\n  type === 'object' && children.$$typeof === REACT_ELEMENT_TYPE) {\n    callback(traverseContext, children,\n    // If it's the only child, treat the name as if it was wrapped in an array\n    // so that it's consistent if the number of children grows.\n    nameSoFar === '' ? SEPARATOR + getComponentKey(children, 0) : nameSoFar);\n    return 1;\n  }\n\n  var child;\n  var nextName;\n  var subtreeCount = 0; // Count of children found in the current subtree.\n  var nextNamePrefix = nameSoFar === '' ? SEPARATOR : nameSoFar + SUBSEPARATOR;\n\n  if (Array.isArray(children)) {\n    for (var i = 0; i < children.length; i++) {\n      child = children[i];\n      nextName = nextNamePrefix + getComponentKey(child, i);\n      subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);\n    }\n  } else {\n    var iteratorFn = getIteratorFn(children);\n    if (iteratorFn) {\n      var iterator = iteratorFn.call(children);\n      var step;\n      if (iteratorFn !== children.entries) {\n        var ii = 0;\n        while (!(step = iterator.next()).done) {\n          child = step.value;\n          nextName = nextNamePrefix + getComponentKey(child, ii++);\n          subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);\n        }\n      } else {\n        if (process.env.NODE_ENV !== 'production') {\n          var mapsAsChildrenAddendum = '';\n          if (ReactCurrentOwner.current) {\n            var mapsAsChildrenOwnerName = ReactCurrentOwner.current.getName();\n            if (mapsAsChildrenOwnerName) {\n              mapsAsChildrenAddendum = ' Check the render method of `' + mapsAsChildrenOwnerName + '`.';\n            }\n          }\n          process.env.NODE_ENV !== 'production' ? warning(didWarnAboutMaps, 'Using Maps as children is not yet fully supported. It is an ' + 'experimental feature that might be removed. Convert it to a ' + 'sequence / iterable of keyed ReactElements instead.%s', mapsAsChildrenAddendum) : void 0;\n          didWarnAboutMaps = true;\n        }\n        // Iterator will provide entry [k,v] tuples rather than values.\n        while (!(step = iterator.next()).done) {\n          var entry = step.value;\n          if (entry) {\n            child = entry[1];\n            nextName = nextNamePrefix + KeyEscapeUtils.escape(entry[0]) + SUBSEPARATOR + getComponentKey(child, 0);\n            subtreeCount += traverseAllChildrenImpl(child, nextName, callback, traverseContext);\n          }\n        }\n      }\n    } else if (type === 'object') {\n      var addendum = '';\n      if (process.env.NODE_ENV !== 'production') {\n        addendum = ' If you meant to render a collection of children, use an array ' + 'instead or wrap the object using createFragment(object) from the ' + 'React add-ons.';\n        if (children._isReactElement) {\n          addendum = ' It looks like you\\'re using an element created by a different ' + 'version of React. Make sure to use only one copy of React.';\n        }\n        if (ReactCurrentOwner.current) {\n          var name = ReactCurrentOwner.current.getName();\n          if (name) {\n            addendum += ' Check the render method of `' + name + '`.';\n          }\n        }\n      }\n      var childrenString = String(children);\n      !false ? process.env.NODE_ENV !== 'production' ? invariant(false, 'Objects are not valid as a React child (found: %s).%s', childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString, addendum) : _prodInvariant('31', childrenString === '[object Object]' ? 'object with keys {' + Object.keys(children).join(', ') + '}' : childrenString, addendum) : void 0;\n    }\n  }\n\n  return subtreeCount;\n}\n\n/**\n * Traverses children that are typically specified as `props.children`, but\n * might also be specified through attributes:\n *\n * - `traverseAllChildren(this.props.children, ...)`\n * - `traverseAllChildren(this.props.leftPanelChildren, ...)`\n *\n * The `traverseContext` is an optional argument that is passed through the\n * entire traversal. It can be used to store accumulations or anything else that\n * the callback might find relevant.\n *\n * @param {?*} children Children tree object.\n * @param {!function} callback To invoke upon traversing each child.\n * @param {?*} traverseContext Context for traversal.\n * @return {!number} The number of children in this subtree.\n */\nfunction traverseAllChildren(children, callback, traverseContext) {\n  if (children == null) {\n    return 0;\n  }\n\n  return traverseAllChildrenImpl(children, '', callback, traverseContext);\n}\n\nmodule.exports = traverseAllChildren;\n}).call(this,require('_process'))\n},{\"./KeyEscapeUtils\":249,\"./ReactCurrentOwner\":256,\"./ReactElementSymbol\":259,\"./getIteratorFn\":269,\"./reactProdInvariant\":272,\"_process\":112,\"fbjs/lib/invariant\":104,\"fbjs/lib/warning\":111}],274:[function(require,module,exports){\n'use strict';\n\nmodule.exports = require('./lib/React');\n\n},{\"./lib/React\":251}],275:[function(require,module,exports){\n(function(self) {\n  'use strict';\n\n  if (self.fetch) {\n    return\n  }\n\n  var support = {\n    searchParams: 'URLSearchParams' in self,\n    iterable: 'Symbol' in self && 'iterator' in Symbol,\n    blob: 'FileReader' in self && 'Blob' in self && (function() {\n      try {\n        new Blob()\n        return true\n      } catch(e) {\n        return false\n      }\n    })(),\n    formData: 'FormData' in self,\n    arrayBuffer: 'ArrayBuffer' in self\n  }\n\n  if (support.arrayBuffer) {\n    var viewClasses = [\n      '[object Int8Array]',\n      '[object Uint8Array]',\n      '[object Uint8ClampedArray]',\n      '[object Int16Array]',\n      '[object Uint16Array]',\n      '[object Int32Array]',\n      '[object Uint32Array]',\n      '[object Float32Array]',\n      '[object Float64Array]'\n    ]\n\n    var isDataView = function(obj) {\n      return obj && DataView.prototype.isPrototypeOf(obj)\n    }\n\n    var isArrayBufferView = ArrayBuffer.isView || function(obj) {\n      return obj && viewClasses.indexOf(Object.prototype.toString.call(obj)) > -1\n    }\n  }\n\n  function normalizeName(name) {\n    if (typeof name !== 'string') {\n      name = String(name)\n    }\n    if (/[^a-z0-9\\-#$%&'*+.\\^_`|~]/i.test(name)) {\n      throw new TypeError('Invalid character in header field name')\n    }\n    return name.toLowerCase()\n  }\n\n  function normalizeValue(value) {\n    if (typeof value !== 'string') {\n      value = String(value)\n    }\n    return value\n  }\n\n  // Build a destructive iterator for the value list\n  function iteratorFor(items) {\n    var iterator = {\n      next: function() {\n        var value = items.shift()\n        return {done: value === undefined, value: value}\n      }\n    }\n\n    if (support.iterable) {\n      iterator[Symbol.iterator] = function() {\n        return iterator\n      }\n    }\n\n    return iterator\n  }\n\n  function Headers(headers) {\n    this.map = {}\n\n    if (headers instanceof Headers) {\n      headers.forEach(function(value, name) {\n        this.append(name, value)\n      }, this)\n    } else if (Array.isArray(headers)) {\n      headers.forEach(function(header) {\n        this.append(header[0], header[1])\n      }, this)\n    } else if (headers) {\n      Object.getOwnPropertyNames(headers).forEach(function(name) {\n        this.append(name, headers[name])\n      }, this)\n    }\n  }\n\n  Headers.prototype.append = function(name, value) {\n    name = normalizeName(name)\n    value = normalizeValue(value)\n    var oldValue = this.map[name]\n    this.map[name] = oldValue ? oldValue+','+value : value\n  }\n\n  Headers.prototype['delete'] = function(name) {\n    delete this.map[normalizeName(name)]\n  }\n\n  Headers.prototype.get = function(name) {\n    name = normalizeName(name)\n    return this.has(name) ? this.map[name] : null\n  }\n\n  Headers.prototype.has = function(name) {\n    return this.map.hasOwnProperty(normalizeName(name))\n  }\n\n  Headers.prototype.set = function(name, value) {\n    this.map[normalizeName(name)] = normalizeValue(value)\n  }\n\n  Headers.prototype.forEach = function(callback, thisArg) {\n    for (var name in this.map) {\n      if (this.map.hasOwnProperty(name)) {\n        callback.call(thisArg, this.map[name], name, this)\n      }\n    }\n  }\n\n  Headers.prototype.keys = function() {\n    var items = []\n    this.forEach(function(value, name) { items.push(name) })\n    return iteratorFor(items)\n  }\n\n  Headers.prototype.values = function() {\n    var items = []\n    this.forEach(function(value) { items.push(value) })\n    return iteratorFor(items)\n  }\n\n  Headers.prototype.entries = function() {\n    var items = []\n    this.forEach(function(value, name) { items.push([name, value]) })\n    return iteratorFor(items)\n  }\n\n  if (support.iterable) {\n    Headers.prototype[Symbol.iterator] = Headers.prototype.entries\n  }\n\n  function consumed(body) {\n    if (body.bodyUsed) {\n      return Promise.reject(new TypeError('Already read'))\n    }\n    body.bodyUsed = true\n  }\n\n  function fileReaderReady(reader) {\n    return new Promise(function(resolve, reject) {\n      reader.onload = function() {\n        resolve(reader.result)\n      }\n      reader.onerror = function() {\n        reject(reader.error)\n      }\n    })\n  }\n\n  function readBlobAsArrayBuffer(blob) {\n    var reader = new FileReader()\n    var promise = fileReaderReady(reader)\n    reader.readAsArrayBuffer(blob)\n    return promise\n  }\n\n  function readBlobAsText(blob) {\n    var reader = new FileReader()\n    var promise = fileReaderReady(reader)\n    reader.readAsText(blob)\n    return promise\n  }\n\n  function readArrayBufferAsText(buf) {\n    var view = new Uint8Array(buf)\n    var chars = new Array(view.length)\n\n    for (var i = 0; i < view.length; i++) {\n      chars[i] = String.fromCharCode(view[i])\n    }\n    return chars.join('')\n  }\n\n  function bufferClone(buf) {\n    if (buf.slice) {\n      return buf.slice(0)\n    } else {\n      var view = new Uint8Array(buf.byteLength)\n      view.set(new Uint8Array(buf))\n      return view.buffer\n    }\n  }\n\n  function Body() {\n    this.bodyUsed = false\n\n    this._initBody = function(body) {\n      this._bodyInit = body\n      if (!body) {\n        this._bodyText = ''\n      } else if (typeof body === 'string') {\n        this._bodyText = body\n      } else if (support.blob && Blob.prototype.isPrototypeOf(body)) {\n        this._bodyBlob = body\n      } else if (support.formData && FormData.prototype.isPrototypeOf(body)) {\n        this._bodyFormData = body\n      } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {\n        this._bodyText = body.toString()\n      } else if (support.arrayBuffer && support.blob && isDataView(body)) {\n        this._bodyArrayBuffer = bufferClone(body.buffer)\n        // IE 10-11 can't handle a DataView body.\n        this._bodyInit = new Blob([this._bodyArrayBuffer])\n      } else if (support.arrayBuffer && (ArrayBuffer.prototype.isPrototypeOf(body) || isArrayBufferView(body))) {\n        this._bodyArrayBuffer = bufferClone(body)\n      } else {\n        throw new Error('unsupported BodyInit type')\n      }\n\n      if (!this.headers.get('content-type')) {\n        if (typeof body === 'string') {\n          this.headers.set('content-type', 'text/plain;charset=UTF-8')\n        } else if (this._bodyBlob && this._bodyBlob.type) {\n          this.headers.set('content-type', this._bodyBlob.type)\n        } else if (support.searchParams && URLSearchParams.prototype.isPrototypeOf(body)) {\n          this.headers.set('content-type', 'application/x-www-form-urlencoded;charset=UTF-8')\n        }\n      }\n    }\n\n    if (support.blob) {\n      this.blob = function() {\n        var rejected = consumed(this)\n        if (rejected) {\n          return rejected\n        }\n\n        if (this._bodyBlob) {\n          return Promise.resolve(this._bodyBlob)\n        } else if (this._bodyArrayBuffer) {\n          return Promise.resolve(new Blob([this._bodyArrayBuffer]))\n        } else if (this._bodyFormData) {\n          throw new Error('could not read FormData body as blob')\n        } else {\n          return Promise.resolve(new Blob([this._bodyText]))\n        }\n      }\n\n      this.arrayBuffer = function() {\n        if (this._bodyArrayBuffer) {\n          return consumed(this) || Promise.resolve(this._bodyArrayBuffer)\n        } else {\n          return this.blob().then(readBlobAsArrayBuffer)\n        }\n      }\n    }\n\n    this.text = function() {\n      var rejected = consumed(this)\n      if (rejected) {\n        return rejected\n      }\n\n      if (this._bodyBlob) {\n        return readBlobAsText(this._bodyBlob)\n      } else if (this._bodyArrayBuffer) {\n        return Promise.resolve(readArrayBufferAsText(this._bodyArrayBuffer))\n      } else if (this._bodyFormData) {\n        throw new Error('could not read FormData body as text')\n      } else {\n        return Promise.resolve(this._bodyText)\n      }\n    }\n\n    if (support.formData) {\n      this.formData = function() {\n        return this.text().then(decode)\n      }\n    }\n\n    this.json = function() {\n      return this.text().then(JSON.parse)\n    }\n\n    return this\n  }\n\n  // HTTP methods whose capitalization should be normalized\n  var methods = ['DELETE', 'GET', 'HEAD', 'OPTIONS', 'POST', 'PUT']\n\n  function normalizeMethod(method) {\n    var upcased = method.toUpperCase()\n    return (methods.indexOf(upcased) > -1) ? upcased : method\n  }\n\n  function Request(input, options) {\n    options = options || {}\n    var body = options.body\n\n    if (input instanceof Request) {\n      if (input.bodyUsed) {\n        throw new TypeError('Already read')\n      }\n      this.url = input.url\n      this.credentials = input.credentials\n      if (!options.headers) {\n        this.headers = new Headers(input.headers)\n      }\n      this.method = input.method\n      this.mode = input.mode\n      if (!body && input._bodyInit != null) {\n        body = input._bodyInit\n        input.bodyUsed = true\n      }\n    } else {\n      this.url = String(input)\n    }\n\n    this.credentials = options.credentials || this.credentials || 'omit'\n    if (options.headers || !this.headers) {\n      this.headers = new Headers(options.headers)\n    }\n    this.method = normalizeMethod(options.method || this.method || 'GET')\n    this.mode = options.mode || this.mode || null\n    this.referrer = null\n\n    if ((this.method === 'GET' || this.method === 'HEAD') && body) {\n      throw new TypeError('Body not allowed for GET or HEAD requests')\n    }\n    this._initBody(body)\n  }\n\n  Request.prototype.clone = function() {\n    return new Request(this, { body: this._bodyInit })\n  }\n\n  function decode(body) {\n    var form = new FormData()\n    body.trim().split('&').forEach(function(bytes) {\n      if (bytes) {\n        var split = bytes.split('=')\n        var name = split.shift().replace(/\\+/g, ' ')\n        var value = split.join('=').replace(/\\+/g, ' ')\n        form.append(decodeURIComponent(name), decodeURIComponent(value))\n      }\n    })\n    return form\n  }\n\n  function parseHeaders(rawHeaders) {\n    var headers = new Headers()\n    rawHeaders.split(/\\r?\\n/).forEach(function(line) {\n      var parts = line.split(':')\n      var key = parts.shift().trim()\n      if (key) {\n        var value = parts.join(':').trim()\n        headers.append(key, value)\n      }\n    })\n    return headers\n  }\n\n  Body.call(Request.prototype)\n\n  function Response(bodyInit, options) {\n    if (!options) {\n      options = {}\n    }\n\n    this.type = 'default'\n    this.status = 'status' in options ? options.status : 200\n    this.ok = this.status >= 200 && this.status < 300\n    this.statusText = 'statusText' in options ? options.statusText : 'OK'\n    this.headers = new Headers(options.headers)\n    this.url = options.url || ''\n    this._initBody(bodyInit)\n  }\n\n  Body.call(Response.prototype)\n\n  Response.prototype.clone = function() {\n    return new Response(this._bodyInit, {\n      status: this.status,\n      statusText: this.statusText,\n      headers: new Headers(this.headers),\n      url: this.url\n    })\n  }\n\n  Response.error = function() {\n    var response = new Response(null, {status: 0, statusText: ''})\n    response.type = 'error'\n    return response\n  }\n\n  var redirectStatuses = [301, 302, 303, 307, 308]\n\n  Response.redirect = function(url, status) {\n    if (redirectStatuses.indexOf(status) === -1) {\n      throw new RangeError('Invalid status code')\n    }\n\n    return new Response(null, {status: status, headers: {location: url}})\n  }\n\n  self.Headers = Headers\n  self.Request = Request\n  self.Response = Response\n\n  self.fetch = function(input, init) {\n    return new Promise(function(resolve, reject) {\n      var request = new Request(input, init)\n      var xhr = new XMLHttpRequest()\n\n      xhr.onload = function() {\n        var options = {\n          status: xhr.status,\n          statusText: xhr.statusText,\n          headers: parseHeaders(xhr.getAllResponseHeaders() || '')\n        }\n        options.url = 'responseURL' in xhr ? xhr.responseURL : options.headers.get('X-Request-URL')\n        var body = 'response' in xhr ? xhr.response : xhr.responseText\n        resolve(new Response(body, options))\n      }\n\n      xhr.onerror = function() {\n        reject(new TypeError('Network request failed'))\n      }\n\n      xhr.ontimeout = function() {\n        reject(new TypeError('Network request failed'))\n      }\n\n      xhr.open(request.method, request.url, true)\n\n      if (request.credentials === 'include') {\n        xhr.withCredentials = true\n      }\n\n      if ('responseType' in xhr && support.blob) {\n        xhr.responseType = 'blob'\n      }\n\n      request.headers.forEach(function(value, name) {\n        xhr.setRequestHeader(name, value)\n      })\n\n      xhr.send(typeof request._bodyInit === 'undefined' ? null : request._bodyInit)\n    })\n  }\n  self.fetch.polyfill = true\n})(typeof self !== 'undefined' ? self : this);\n\n},{}]},{},[3]);\n"
  },
  {
    "path": "docs/assets/js/landing-text-rotater.js",
    "content": "(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n  value: true\n});\nvar useCases = [{\n  text: \"success messages\",\n  className: 'success'\n}, {\n  text: \"error messages\",\n  className: 'error'\n}, {\n  text: \"warning modals\",\n  className: 'warning'\n}];\n\nvar currentIndex = 0;\n\nvar initRotater = function initRotater() {\n  updateUseCase(true);\n  setInterval(updateUseCase, 4000);\n};\n\nvar updateUseCase = function updateUseCase(isInitial) {\n  var useCase = useCases[currentIndex];\n  var nextUseCase = useCases[getNextIndex()];\n\n  updateText(useCase, nextUseCase);\n  updateModal(useCase, nextUseCase, isInitial);\n\n  currentIndex = getNextIndex();\n};\n\nvar updateModal = function updateModal(useCase, nextUseCase, isInitial) {\n  var className = useCase.className;\n\n\n  var contentOverlayEl = document.querySelector('.modal-content-overlay');\n\n  if (!contentOverlayEl) return;\n\n  if (!isInitial) {\n    contentOverlayEl.classList.add('show');\n  }\n\n  var modalEl = document.querySelector('.swal-modal-example');\n\n  modalEl.dataset.type = className;\n\n  var contentEls = document.querySelectorAll('.example-content');\n\n  setTimeout(function () {\n    contentEls.forEach(function (contentEl) {\n      if (contentEl.classList.contains(className)) {\n        contentEl.classList.add('show');\n      } else {\n        contentEl.classList.remove('show');\n      }\n    });\n\n    contentOverlayEl.classList.remove('show');\n  }, 500);\n};\n\nvar updateText = function updateText(useCase, nextUseCase) {\n  var text = useCase.text;\n  var nextText = nextUseCase.text;\n\n\n  var rotatorEl = document.querySelector('.text-rotater');\n\n  if (!rotatorEl) return;\n\n  rotatorEl.classList.add('slide-up');\n\n  setTimeout(function () {\n    rotatorEl.innerHTML = \"\\n      <span>\" + text + \"</span>\\n      <span>\" + nextText + \"</span>\\n    \";\n    rotatorEl.classList.remove('slide-up');\n  }, 2000);\n};\n\nvar getNextIndex = function getNextIndex() {\n  if (useCases[currentIndex + 1]) {\n    return currentIndex + 1;\n  } else {\n    return 0;\n  }\n};\n\nexports.default = initRotater();\n\n},{}]},{},[1]);\n"
  },
  {
    "path": "docs/docs/index.html",
    "content": "<!doctype html>\n\n<html>\n\n  <head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0\">\n    <title>SweetAlert</title>\n    <meta name=\"description\" content=\"A beautiful replacement for JavaScript&apos;s &apos;alert&apos;\">\n\n    <link rel=\"stylesheet\" href=\"/assets/css/app.css\">\n\n    <link href=\"https://fonts.googleapis.com/css?family=Lato:300,400,400i,700,700i\" rel=\"stylesheet\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <script src=\"/assets/sweetalert/sweetalert.min.js\"></script>\n  </head>\n\n  <body>\n\n    <header class=\"global-header\">\n      <div class=\"page-container\">\n\n        <a href=\"/\" class=\"logo\">\n        </a>\n\n        <nav>\n          <ul>\n            <li>\n              <a href=\"/guides\">Guides</a>\n            </li>\n\n            <li>\n              <a href=\"/docs\">Docs</a>\n            </li>\n\n            <li>\n              <a href=\"https://opencollective.com/SweetAlert#backers\" target=\"_blank\">Donate</a>\n            </li>\n\n            <li>\n              <a href=\"https://github.com/t4t5/sweetalert\" class=\"github-icon\"></a>\n            </li>\n          </ul>\n        </nav>\n\n      </div>\n    </header>\n\n    <!--\nlayout: default\n-->\n\n<div class=\"page-container doc-container\">\n\n  <nav class=\"side-menu\">\n    <h6 class=\"title\">\n      Docs\n    </h6>\n\n    <a href=\"#configuration\">\n      Configuration\n    </a>\n\n    <a href=\"#methods\">\n      Methods\n    </a>\n\n    <a href=\"#theming\">\n      Theming\n    </a>\n\n  </nav>\n\n  <div class=\"page-content api\">\n    <!--\nlayout: docs\n-->\n<h1 id=\"configuration\" class=\"deep-link\"><a href=\"#configuration\">Configuration</a></h1>\n<ul>\n<li>\n<h3 id=\"text\" class=\"deep-link\"><a href=\"#text\"><code>text</code></a></h3>\n<p><strong>Type:</strong> <code>string</code></p>\n<p><strong>Default:</strong> <code>&quot;&quot;</code> (<em>empty string</em>)</p>\n<p><strong>Description:</strong></p>\n<p>The modal&apos;s text. It can either be added as a configuration under the key <code>text</code> (as in the example below), or passed as the first and only parameter (e.g. <code>swal(&quot;Hello world!&quot;)</code>), or the second one if you have multiple string parameters (e.g. <code>swal(&quot;A title&quot;, &quot;Hello world!&quot;)</code>).</p>\n<p><strong>Example:</strong></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Hello&#xA0;world!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n</ul>\n<ul>\n<li>\n<h3 id=\"title\" class=\"deep-link\"><a href=\"#title\"><code>title</code></a></h3>\n<p><strong>Type:</strong> <code>string</code></p>\n<p><strong>Default:</strong> <code>&quot;&quot;</code> (<em>empty string</em>)</p>\n<p><strong>Description:</strong></p>\n<p>The title of the modal. It can either be added as a configuration under the key <code>title</code> (as in the example below), or passed as the first string parameter &#x2013; as long as it&apos;s not the only one &#x2013; of the <code>swal</code> function (e.g. <code>swal(&quot;Here&apos;s a title!&quot;, &quot;Here&apos;s some text&quot;)</code>).</p>\n<p><strong>Example:</strong></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;title</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Here&apos;s&#xA0;a&#xA0;title!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n</ul>\n<ul>\n<li>\n<h3 id=\"icon\" class=\"deep-link\"><a href=\"#icon\"><code>icon</code></a></h3>\n<p><strong>Type:</strong> <code>string</code></p>\n<p><strong>Default:</strong> <code>&quot;&quot;</code> (<em>empty string</em>)</p>\n<p><strong>Description:</strong></p>\n<p>An icon for the modal. SweetAlert comes with 4 built-in icons that you can use:</p>\n<ul>\n<li><code>&quot;warning&quot;</code></li>\n<li><code>&quot;error&quot;</code></li>\n<li><code>&quot;success&quot;</code></li>\n<li><code>&quot;info&quot;</code></li>\n</ul>\n<p>It can either be added as a configuration under the key <code>icon</code>, or passed as the third string parameter of the <code>swal</code> function (e.g. <code>swal(&quot;Title&quot;, &quot;Text&quot;, &quot;success&quot;)</code>).</p>\n<p><strong>Example:</strong></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;icon</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>success</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n</ul>\n<ul>\n<li>\n<h3 id=\"button\" class=\"deep-link\"><a href=\"#button\"><code>button</code></a></h3>\n<p><strong>Type:</strong> <code>string|boolean|ButtonOptions</code></p>\n<p><strong>Default:</strong></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta brace curly js\"><span>{</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>OK</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;value</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;visible</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;className</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;closeModal</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta brace curly js\"><span>}</span></span></span></div></pre></div>\n<p><strong>Description:</strong></p>\n<p>The confirm button that&apos;s shown by default. You can change its text by setting <code>button</code> to a string, or you can tweak more setting by passing a <code>ButtonOptions</code> object. Setting it to <code>false</code> hides the button.</p>\n<p><strong>Examples:</strong></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;button</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Coolio</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;button</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Hey&#xA0;ho!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Hello&#xA0;world!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;button</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean false js\"><span>false</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n</ul>\n<ul>\n<li>\n<h3 id=\"buttons\" class=\"deep-link\"><a href=\"#buttons\"><code>buttons</code></a></h3>\n<p><strong>Type:</strong> <code>boolean|string[]|ButtonOptions[]|ButtonList</code></p>\n<p><strong>Default:</strong></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta brace curly js\"><span>{</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;cancel</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Cancel</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;value</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language null js\"><span>null</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;visible</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean false js\"><span>false</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;className</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;closeModal</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;confirm</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>OK</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;value</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;visible</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;className</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;closeModal</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta brace curly js\"><span>}</span></span></span></div></pre></div>\n<p><strong>Description:</strong></p>\n<p>Specify the exact amount of buttons and their behaviour. If you use an array, you can set the elements as strings (to set only the text), a list of <code>ButtonOptions</code>, or a combination of both. You can also set one of the elements to <code>true</code> to simply get the default options.</p>\n<p>If you want more than just the predefined cancel and confirm buttons, you need to specify a <code>ButtonList</code> object, with keys (the button&apos;s namespace) pointing to <code>ButtonOptions</code>.</p>\n<p>You can also specify <code>false</code> to hide all buttons (same behaviour as the <code>button</code> option).</p>\n<p><strong>Examples:</strong></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace square js\"><span>[</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Stop</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Do&#xA0;it!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta brace square js\"><span>]</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace square js\"><span>[</span></span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Do&#xA0;it!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta brace square js\"><span>]</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Hello&#xA0;world!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean false js\"><span>false</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;cancel</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;confirm</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;cancel</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;confirm</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Confirm</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;roll</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Do&#xA0;a&#xA0;barrell&#xA0;roll!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;value</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>roll</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n</ul>\n<ul>\n<li>\n<h3 id=\"content\" class=\"deep-link\"><a href=\"#content\"><code>content</code></a></h3>\n<p><strong>Type:</strong> <code>Node|string</code></p>\n<p><strong>Default:</strong> <code>null</code></p>\n<p><strong>Description:</strong></p>\n<p>For custom content, beyond just text and icons.</p>\n<p><strong>Examples:</strong></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;content</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>input</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;content</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;element</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>input</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;attributes</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;placeholder</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Type&#xA0;your&#xA0;password</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;type</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>password</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"storage type var js\"><span>var</span></span><span>&#xA0;slider&#xA0;</span><span class=\"keyword operator assignment js\"><span>=</span></span><span>&#xA0;</span><span class=\"support class js\"><span>document</span></span><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"support function dom js\"><span>createElement</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>input</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"variable other object js\"><span>slider</span></span><span class=\"meta delimiter property period js\"><span>.</span></span><span class=\"support constant dom js\"><span>type</span></span><span>&#xA0;</span><span class=\"keyword operator assignment js\"><span>=</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>range</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;content</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;slider</span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n</ul>\n<ul>\n<li>\n<h3 id=\"classname\" class=\"deep-link\"><a href=\"#classname\"><code>className</code></a></h3>\n<p><strong>Type:</strong> <code>string</code></p>\n<p><strong>Default</strong>: <code>&quot;&quot;</code> (<em>empty string</em>)</p>\n<p><strong>Description</strong>:</p>\n<p>Add a custom class to the SweetAlert modal. This is handy for changing the appearance.</p>\n<p><strong>Example</strong>:</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Hello&#xA0;world!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;className</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>red-bg</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n<li>\n<h3 id=\"closeonclickoutside\" class=\"deep-link\"><a href=\"#closeonclickoutside\"><code>closeOnClickOutside</code></a></h3>\n<p><strong>Type:</strong> <code>boolean</code></p>\n<p><strong>Default:</strong> <code>true</code></p>\n<p><strong>Description:</strong></p>\n<p>Decide whether the user should be able to dismiss the modal by clicking outside of it, or not.</p>\n<p><strong>Example:</strong></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;closeOnClickOutside</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean false js\"><span>false</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n<li>\n<h3 id=\"closeonesc\" class=\"deep-link\"><a href=\"#closeonesc\"><code>closeOnEsc</code></a></h3>\n<p><strong>Type:</strong> <code>boolean</code></p>\n<p><strong>Default:</strong> <code>true</code></p>\n<p><strong>Description:</strong></p>\n<p>Decide whether the user should be able to dismiss the modal by hitting the <kbd>ESC</kbd> key, or not.</p>\n<p><strong>Example:</strong></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;closeOnEsc</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean false js\"><span>false</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n</ul>\n<ul>\n<li>\n<h3 id=\"dangermode\" class=\"deep-link\"><a href=\"#dangermode\"><code>dangerMode</code></a></h3>\n<p><strong>Type:</strong> <code>boolean</code></p>\n<p><strong>Default:</strong> <code>false</code></p>\n<p><strong>Description:</strong></p>\n<p>If set to <code>true</code>, the confirm button turns red and the default focus is set on the cancel button instead. This is handy when showing warning modals where the confirm action is dangerous (e.g. deleting an item).</p>\n<p><strong>Example:</strong></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Are&#xA0;you&#xA0;sure?</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;dangerMode</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n</ul>\n<ul>\n<li>\n<h3 id=\"timer\" class=\"deep-link\"><a href=\"#timer\"><code>timer</code></a></h3>\n<p><strong>Type:</strong> <code>number</code></p>\n<p><strong>Default:</strong> <code>null</code></p>\n<p><strong>Description:</strong></p>\n<p>Closes the modal after a certain amount of time (specified in ms). Useful to combine with <code>buttons: false</code>.</p>\n<p><strong>Example:</strong></p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>This&#xA0;modal&#xA0;will&#xA0;disappear&#xA0;soon!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean false js\"><span>false</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;timer</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric decimal js\"><span>3000</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n</ul>\n<h1 id=\"methods\" class=\"deep-link\"><a href=\"#methods\">Methods</a></h1>\n<table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>close</code></td>\n<td>Closes the currently open SweetAlert, as if you pressed the cancel button.</td>\n<td><code>swal.close()</code></td>\n</tr>\n<tr>\n<td><code>getState</code></td>\n<td>Get the state of the current SweetAlert modal.</td>\n<td><code>swal.getState()</code></td>\n</tr>\n<tr>\n<td><code>setActionValue</code></td>\n<td>Change the promised value of one of the modal&apos;s buttons. You can either pass in just a string (by default it changes the value of the confirm button), or an object.</td>\n<td><code>swal.setActionValue({ confirm: &apos;Text from input&apos; })</code></td>\n</tr>\n<tr>\n<td><code>stopLoading</code></td>\n<td>Removes all loading states on the modal&apos;s buttons. Use it in combination with the button option <code>closeModal: false</code>.</td>\n<td><code>swal.stopLoading()</code></td>\n</tr>\n</tbody>\n</table>\n<h1 id=\"theming\" class=\"deep-link\"><a href=\"#theming\">Theming</a></h1>\n<ul>\n<li>\n<h3 id=\"swal-overlay\" class=\"deep-link\"><a href=\"#swal-overlay\"><code>swal-overlay</code></a></h3>\n<p><strong>Example:</strong></p>\n<div class=\"highlight css\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source css\"><span class=\"meta selector css\"><span class=\"entity other attribute-name class css\"><span class=\"punctuation definition entity css\"><span>.</span></span><span>swal-overlay</span></span><span>&#xA0;</span></span><span class=\"meta property-list css\"><span class=\"punctuation section property-list begin css\"><span>{</span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>background-color</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"support function misc css\"><span>rgba</span></span><span class=\"punctuation section function css\"><span>(</span></span><span class=\"constant other color rgb-value css\"><span>43,&#xA0;165,&#xA0;137,&#xA0;0.45</span></span><span class=\"punctuation section function css\"><span>)</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span class=\"punctuation section property-list end css\"><span>}</span></span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n<li>\n<h3 id=\"swal-modal\" class=\"deep-link\"><a href=\"#swal-modal\"><code>swal-modal</code></a></h3>\n<p><strong>Example:</strong></p>\n<div class=\"highlight css\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source css\"><span class=\"meta selector css\"><span class=\"entity other attribute-name class css\"><span class=\"punctuation definition entity css\"><span>.</span></span><span>swal-modal</span></span><span>&#xA0;</span></span><span class=\"meta property-list css\"><span class=\"punctuation section property-list begin css\"><span>{</span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>background-color</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"support function misc css\"><span>rgba</span></span><span class=\"punctuation section function css\"><span>(</span></span><span class=\"constant other color rgb-value css\"><span>63,255,106,0.69</span></span><span class=\"punctuation section function css\"><span>)</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>border</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>3</span><span class=\"keyword other unit css\"><span>px</span></span></span><span>&#xA0;</span><span class=\"support constant property-value css\"><span>solid</span></span><span>&#xA0;</span><span class=\"support constant color w3c-standard-color-name css\"><span>white</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span class=\"punctuation section property-list end css\"><span>}</span></span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n<li>\n<h3 id=\"swal-title\" class=\"deep-link\"><a href=\"#swal-title\"><code>swal-title</code></a></h3>\n<p><strong>Example:</strong></p>\n<div class=\"highlight css\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source css\"><span class=\"meta selector css\"><span class=\"entity other attribute-name class css\"><span class=\"punctuation definition entity css\"><span>.</span></span><span>swal-title</span></span><span>&#xA0;</span></span><span class=\"meta property-list css\"><span class=\"punctuation section property-list begin css\"><span>{</span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>margin</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>0</span><span class=\"keyword other unit css\"><span>px</span></span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>font-size</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>16</span><span class=\"keyword other unit css\"><span>px</span></span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>box-shadow</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>0</span><span class=\"keyword other unit css\"><span>px</span></span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>1</span><span class=\"keyword other unit css\"><span>px</span></span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>1</span><span class=\"keyword other unit css\"><span>px</span></span></span><span>&#xA0;</span><span class=\"support function misc css\"><span>rgba</span></span><span class=\"punctuation section function css\"><span>(</span></span><span class=\"constant other color rgb-value css\"><span>0,&#xA0;0,&#xA0;0,&#xA0;0.21</span></span><span class=\"punctuation section function css\"><span>)</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>margin-bottom</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>28</span><span class=\"keyword other unit css\"><span>px</span></span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span class=\"punctuation section property-list end css\"><span>}</span></span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n<li>\n<h3 id=\"swal-text\" class=\"deep-link\"><a href=\"#swal-text\"><code>swal-text</code></a></h3>\n<p><strong>Example:</strong></p>\n<div class=\"highlight css\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source css\"><span class=\"meta selector css\"><span class=\"entity other attribute-name class css\"><span class=\"punctuation definition entity css\"><span>.</span></span><span>swal-text</span></span><span>&#xA0;</span></span><span class=\"meta property-list css\"><span class=\"punctuation section property-list begin css\"><span>{</span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>background-color</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant other color rgb-value css\"><span class=\"punctuation definition constant css\"><span>#</span></span><span>FEFAE3</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>padding</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>17</span><span class=\"keyword other unit css\"><span>px</span></span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>border</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>1</span><span class=\"keyword other unit css\"><span>px</span></span></span><span>&#xA0;</span><span class=\"support constant property-value css\"><span>solid</span></span><span>&#xA0;</span><span class=\"constant other color rgb-value css\"><span class=\"punctuation definition constant css\"><span>#</span></span><span>F0E1A1</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>display</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"support constant property-value css\"><span>block</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>margin</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>22</span><span class=\"keyword other unit css\"><span>px</span></span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>text-align</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"support constant property-value css\"><span>center</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>color</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant other color rgb-value css\"><span class=\"punctuation definition constant css\"><span>#</span></span><span>61534e</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span class=\"punctuation section property-list end css\"><span>}</span></span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n<li>\n<h3 id=\"swal-footer\" class=\"deep-link\"><a href=\"#swal-footer\"><code>swal-footer</code></a></h3>\n<p><strong>Example:</strong></p>\n<div class=\"highlight css\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source css\"><span class=\"meta selector css\"><span class=\"entity other attribute-name class css\"><span class=\"punctuation definition entity css\"><span>.</span></span><span>swal-footer</span></span><span>&#xA0;</span></span><span class=\"meta property-list css\"><span class=\"punctuation section property-list begin css\"><span>{</span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>background-color</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"support function misc css\"><span>rgb</span></span><span class=\"punctuation section function css\"><span>(</span></span><span class=\"constant other color rgb-value css\"><span>245,&#xA0;248,&#xA0;250</span></span><span class=\"punctuation section function css\"><span>)</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>margin-top</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>32</span><span class=\"keyword other unit css\"><span>px</span></span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>border-top</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>1</span><span class=\"keyword other unit css\"><span>px</span></span></span><span>&#xA0;</span><span class=\"support constant property-value css\"><span>solid</span></span><span>&#xA0;</span><span class=\"constant other color rgb-value css\"><span class=\"punctuation definition constant css\"><span>#</span></span><span>E9EEF1</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>overflow</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"support constant property-value css\"><span>hidden</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span class=\"punctuation section property-list end css\"><span>}</span></span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n<li>\n<h3 id=\"swal-button\" class=\"deep-link\"><a href=\"#swal-button\"><code>swal-button</code></a></h3>\n<p><strong>Description:</strong></p>\n<p>The modal&apos;s button(s). It has an extra class that changes depending on the button&apos;s type, in the format <code>swal-button--{type}</code>. The extra class for the confirm button for example is <code>swal-button--confirm</code>.</p>\n<p><strong>Example:</strong></p>\n<div class=\"highlight css\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source css\"><span class=\"meta selector css\"><span class=\"entity other attribute-name class css\"><span class=\"punctuation definition entity css\"><span>.</span></span><span>swal-button</span></span><span>&#xA0;</span></span><span class=\"meta property-list css\"><span class=\"punctuation section property-list begin css\"><span>{</span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>padding</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>7</span><span class=\"keyword other unit css\"><span>px</span></span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>19</span><span class=\"keyword other unit css\"><span>px</span></span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>border-radius</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>2</span><span class=\"keyword other unit css\"><span>px</span></span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>background-color</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant other color rgb-value css\"><span class=\"punctuation definition constant css\"><span>#</span></span><span>4962B3</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>font-size</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>12</span><span class=\"keyword other unit css\"><span>px</span></span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>border</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>1</span><span class=\"keyword other unit css\"><span>px</span></span></span><span>&#xA0;</span><span class=\"support constant property-value css\"><span>solid</span></span><span>&#xA0;</span><span class=\"constant other color rgb-value css\"><span class=\"punctuation definition constant css\"><span>#</span></span><span>3e549a</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span>&#xA0;&#xA0;</span><span class=\"meta property-name css\"><span class=\"support type property-name css\"><span>text-shadow</span></span></span><span class=\"meta property-value css\"><span class=\"punctuation separator key-value css\"><span>:</span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>0</span><span class=\"keyword other unit css\"><span>px</span></span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>-1</span><span class=\"keyword other unit css\"><span>px</span></span></span><span>&#xA0;</span><span class=\"constant numeric css\"><span>0</span><span class=\"keyword other unit css\"><span>px</span></span></span><span>&#xA0;</span><span class=\"support function misc css\"><span>rgba</span></span><span class=\"punctuation section function css\"><span>(</span></span><span class=\"constant other color rgb-value css\"><span>0,&#xA0;0,&#xA0;0,&#xA0;0.3</span></span><span class=\"punctuation section function css\"><span>)</span></span><span class=\"punctuation terminator rule css\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source css\"><span class=\"meta property-list css\"><span class=\"punctuation section property-list end css\"><span>}</span></span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n</li>\n</ul>\n\n  </div>\n\n</div>\n\n\n    <div id=\"app\"></div>\n\n    <footer>\n      <p>\n        Hand-crafted with <span class=\"love-icon\"></span> by\n        <a href=\"http://tristanedwards.me\">\n          Tristan Edwards\n        </a>\n        + \n        <a href=\"https://github.com/t4t5/sweetalert/graphs/contributors\">\n          contributors\n        </a>\n      </p>\n    </footer>\n\n    <script src=\"/assets/js/index.js\"></script>\n  </body>\n\n</html>\n"
  },
  {
    "path": "docs/guides/index.html",
    "content": "<!doctype html>\n\n<html>\n\n  <head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0\">\n    <title>SweetAlert</title>\n    <meta name=\"description\" content=\"A beautiful replacement for JavaScript&apos;s &apos;alert&apos;\">\n\n    <link rel=\"stylesheet\" href=\"/assets/css/app.css\">\n\n    <link href=\"https://fonts.googleapis.com/css?family=Lato:300,400,400i,700,700i\" rel=\"stylesheet\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <script src=\"/assets/sweetalert/sweetalert.min.js\"></script>\n  </head>\n\n  <body>\n\n    <header class=\"global-header\">\n      <div class=\"page-container\">\n\n        <a href=\"/\" class=\"logo\">\n        </a>\n\n        <nav>\n          <ul>\n            <li>\n              <a href=\"/guides\">Guides</a>\n            </li>\n\n            <li>\n              <a href=\"/docs\">Docs</a>\n            </li>\n\n            <li>\n              <a href=\"https://opencollective.com/SweetAlert#backers\" target=\"_blank\">Donate</a>\n            </li>\n\n            <li>\n              <a href=\"https://github.com/t4t5/sweetalert\" class=\"github-icon\"></a>\n            </li>\n          </ul>\n        </nav>\n\n      </div>\n    </header>\n\n    <!--\nlayout: default\n-->\n\n<div class=\"page-container doc-container\">\n\n  <nav class=\"side-menu\">\n    <h6 class=\"title\">\n      Guides\n    </h6>\n\n    <a href=\"#installation\">\n      Installation\n    </a>\n\n    <a href=\"#getting-started\">\n      Getting started\n    </a>\n\n    <a href=\"#advanced-examples\">\n      Advanced examples\n    </a>\n\n    <a href=\"#using-with-libraries\">\n      Using with libraries\n    </a>\n\n    <a href=\"#upgrading-from-1x\">\n      Upgrading from 1.X\n    </a>\n  </nav>\n\n  <div class=\"page-content\">\n    <!--\nlayout: guides\n-->\n<h1 id=\"installation\" class=\"deep-link\"><a href=\"#installation\">Installation</a></h1>\n<h2 id=\"npmyarn\" class=\"deep-link\"><a href=\"#npmyarn\">NPM/Yarn</a></h2>\n<p>NPM combined with a tool like <a href=\"http://browserify.org\">Browserify</a> or <a href=\"https://webpack.js.org\">Webpack</a> is the recommended method of installing SweetAlert.</p>\n<div class=\"highlight bash\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"text plain null-grammar\"><span>npm&#xA0;install&#xA0;sweetalert&#xA0;--save</span></span></div></pre></div>\n<p>Then, simply import it into your application:</p>\n<div class=\"highlight javascript\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta import js\"><span class=\"keyword control js\"><span>import</span></span><span>&#xA0;</span><span class=\"variable other module js\"><span>swal</span></span><span>&#xA0;</span><span class=\"keyword control js\"><span>from</span></span><span>&#xA0;</span><span class=\"string quoted single js\"><span class=\"punctuation definition string begin js\"><span>&apos;</span></span><span>sweetalert</span><span class=\"punctuation definition string end js\"><span>&apos;</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<h2 id=\"cdn\" class=\"deep-link\"><a href=\"#cdn\">CDN</a></h2>\n<p>You can also find SweetAlert on <a href=\"https://unpkg.com/sweetalert\">unpkg</a> and <a href=\"https://cdn.jsdelivr.net/npm/sweetalert\">jsDelivr</a> and use the global <code>swal</code> variable.</p>\n<div class=\"highlight html\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"text html basic\"><span class=\"meta tag any html\"><span class=\"punctuation definition tag html\"><span>&lt;</span></span><span class=\"entity name tag html\"><span>script</span></span><span>&#xA0;</span><span class=\"entity other attribute-name html\"><span>src</span></span><span>=</span><span class=\"string quoted double html\"><span class=\"punctuation definition string begin html\"><span>&quot;</span></span><span class=\"markup underline link https hyperlink\"><span>https://unpkg.com/sweetalert/dist/sweetalert.min.js</span></span><span class=\"punctuation definition string end html\"><span>&quot;</span></span></span><span class=\"punctuation definition tag html\"><span>&gt;</span><span class=\"meta scope between-tag-pair html\"><span>&lt;</span></span><span>/</span></span><span class=\"entity name tag html\"><span>script</span></span><span class=\"punctuation definition tag html\"><span>&gt;</span></span></span></span></div></pre></div>\n<h1 id=\"getting-started\" class=\"deep-link\"><a href=\"#getting-started\">Getting started</a></h1>\n<h2 id=\"showing-an-alert\" class=\"deep-link\"><a href=\"#showing-an-alert\">Showing an alert</a></h2>\n<p>After importing the files into your application, you can call the <code>swal</code> function (make sure it&apos;s called <em>after</em> the DOM has loaded!)</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Hello&#xA0;world!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<p>If you pass two arguments, the first one will be the modal&apos;s title, and the second one its text.</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Here&apos;s&#xA0;the&#xA0;title!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>...and&#xA0;here&apos;s&#xA0;the&#xA0;text!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<p>And with a third argument, you can add an icon to your alert! There are 4 predefined ones: <code>&quot;warning&quot;</code>, <code>&quot;error&quot;</code>, <code>&quot;success&quot;</code> and <code>&quot;info&quot;</code>.</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Good&#xA0;job!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>You&#xA0;clicked&#xA0;the&#xA0;button!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>success</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<h2 id=\"using-options\" class=\"deep-link\"><a href=\"#using-options\">Using options</a></h2>\n<p>The last example can also be rewritten using an object as the only parameter:</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;title</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Good&#xA0;job!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>You&#xA0;clicked&#xA0;the&#xA0;button!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;icon</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>success</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p>With this format, we can specify many more options to customize our alert. For example we can change the text on the confirm button to <code>&quot;Aww yiss!&quot;</code>:</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;title</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Good&#xA0;job!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>You&#xA0;clicked&#xA0;the&#xA0;button!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;icon</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>success</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;button</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Aww&#xA0;yiss!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<p>You can even combine the first syntax with the second one, which might save you some typing:</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Good&#xA0;job!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>You&#xA0;clicked&#xA0;the&#xA0;button!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>success</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;button</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Aww&#xA0;yiss!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p>For a full list of all the available options, check out the <a href=\"/docs\">API docs</a>!</p>\n<h2 id=\"using-promises\" class=\"deep-link\"><a href=\"#using-promises\">Using promises</a></h2>\n<p>SweetAlert uses <a href=\"https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Promise\">promises</a> to keep track of how the user interacts with the alert.</p>\n<p>If the user clicks the confirm button, the promise resolves to <code>true</code>. If the alert is dismissed (by clicking outside of it), the promise resolves to <code>null</code>.</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Click&#xA0;on&#xA0;either&#xA0;the&#xA0;button&#xA0;or&#xA0;outside&#xA0;the&#xA0;modal.</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>then</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta function arrow js\"><span class=\"meta parameters js\"><span class=\"punctuation definition parameters begin bracket round js\"><span>(</span></span><span class=\"variable parameter function js\"><span>value</span></span><span class=\"punctuation definition parameters end bracket round js\"><span>)</span></span></span><span>&#xA0;</span><span class=\"storage type function arrow js\"><span>=&gt;</span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted template js\"><span class=\"punctuation definition string begin js\"><span>`</span></span><span>The&#xA0;returned&#xA0;value&#xA0;is:&#xA0;</span><span class=\"source js embedded source\"><span class=\"punctuation section embedded js\"><span>${</span></span><span>value</span><span class=\"punctuation section embedded js\"><span>}</span></span></span><span class=\"punctuation definition string end js\"><span>`</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<p>This comes in handy if you want to warn the user before they perform a dangerous action. We can make our alert even better by setting some more options:</p>\n<ul>\n<li><code>icon</code> can be set to the predefined <code>&quot;warning&quot;</code> to show a nice warning icon.</li>\n<li>By setting <code>buttons</code> (plural) to <code>true</code>, SweetAlert will show a cancel button in addition to the default confirm button.</li>\n<li>By setting <code>dangerMode</code> to <code>true</code>, the focus will automatically be set on the cancel button instead of the confirm button, and the confirm button will be red instead of blue to emphasize the dangerous action.</li>\n</ul>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;title</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Are&#xA0;you&#xA0;sure?</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Once&#xA0;deleted,&#xA0;you&#xA0;will&#xA0;not&#xA0;be&#xA0;able&#xA0;to&#xA0;recover&#xA0;this&#xA0;imaginary&#xA0;file!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;icon</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>warning</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;dangerMode</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>then</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta function arrow js\"><span class=\"meta parameters js\"><span class=\"punctuation definition parameters begin bracket round js\"><span>(</span></span><span class=\"variable parameter function js\"><span>willDelete</span></span><span class=\"punctuation definition parameters end bracket round js\"><span>)</span></span></span><span>&#xA0;</span><span class=\"storage type function arrow js\"><span>=&gt;</span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>if</span></span><span>&#xA0;</span><span class=\"meta brace round js\"><span>(</span></span><span>willDelete</span><span class=\"meta brace round js\"><span>)</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Poof!&#xA0;Your&#xA0;imaginary&#xA0;file&#xA0;has&#xA0;been&#xA0;deleted!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;icon</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>success</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span>&#xA0;</span><span class=\"keyword control js\"><span>else</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Your&#xA0;imaginary&#xA0;file&#xA0;is&#xA0;safe!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<h1 id=\"advanced-examples\" class=\"deep-link\"><a href=\"#advanced-examples\">Advanced examples</a></h1>\n<h2 id=\"customizing-buttons\" class=\"deep-link\"><a href=\"#customizing-buttons\">Customizing buttons</a></h2>\n<p>We&apos;ve already seen how we can set the text on the confirm button using <code>button: &quot;Aww yiss!&quot;</code>.</p>\n<p>If we also want to show and customize the <em>cancel button</em>, we can instead set <code>buttons</code> to an <em>array of strings</em>, where the first value is the cancel button&apos;s text and the second one is the confirm button&apos;s text:</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Are&#xA0;you&#xA0;sure&#xA0;you&#xA0;want&#xA0;to&#xA0;do&#xA0;this?</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace square js\"><span>[</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Oh&#xA0;noez!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Aww&#xA0;yiss!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta brace square js\"><span>]</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<p>If you want one of the buttons to just have their default text, you can set the value to <code>true</code> instead of a string:</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Are&#xA0;you&#xA0;sure&#xA0;you&#xA0;want&#xA0;to&#xA0;do&#xA0;this?</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace square js\"><span>[</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Oh&#xA0;noez!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta brace square js\"><span>]</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<p>So what if you need <em>more</em> than just a cancel and a confirm button? Don&apos;t worry, SweetAlert&apos;s got you covered!</p>\n<p>By specifying an object for <code>buttons</code>, you can set exactly as many buttons as you like, and specify the value that they resolve to when they&apos;re clicked!</p>\n<p>In the example below, we set 3 buttons:</p>\n<ul>\n<li><code>cancel</code>, which by default resolves to <code>null</code> and has a custom <code>&quot;Run away!&quot;</code> text.</li>\n<li><code>catch</code>, which will resolve to the <code>value</code> we&apos;ve specified (<code>&quot;catch&quot;</code>) and has the custom text <code>&quot;Throw Pok&#xE9;ball!&quot;</code>.</li>\n<li><code>defeat</code>. Here, we specify <code>true</code> to let SweetAlert set some default configurations for the button. In this case, it will set the <code>text</code> to <code>&quot;Defeat&quot;</code> (capitalized) and the resolved value to <code>defeat</code>. Had we set the <code>cancel</code> button to <code>true</code>, it would still resolve to <code>null</code> as expected.</li>\n</ul>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>A&#xA0;wild&#xA0;Pikachu&#xA0;appeared!&#xA0;What&#xA0;do&#xA0;you&#xA0;want&#xA0;to&#xA0;do?</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;cancel</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Run&#xA0;away!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;catch</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Throw&#xA0;Pok&#xE9;ball!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;value</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>catch</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;defeat</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean true js\"><span>true</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>then</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta function arrow js\"><span class=\"meta parameters js\"><span class=\"punctuation definition parameters begin bracket round js\"><span>(</span></span><span class=\"variable parameter function js\"><span>value</span></span><span class=\"punctuation definition parameters end bracket round js\"><span>)</span></span></span><span>&#xA0;</span><span class=\"storage type function arrow js\"><span>=&gt;</span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>switch</span></span><span>&#xA0;</span><span class=\"meta brace round js\"><span>(</span></span><span>value</span><span class=\"meta brace round js\"><span>)</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>case</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>defeat</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"keyword operator js\"><span>:</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Pikachu&#xA0;fainted!&#xA0;You&#xA0;gained&#xA0;500&#xA0;XP!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>break</span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>case</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>catch</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"keyword operator js\"><span>:</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Gotcha!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Pikachu&#xA0;was&#xA0;caught!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>success</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>break</span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>default</span></span><span class=\"keyword operator js\"><span>:</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Got&#xA0;away&#xA0;safely!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<p>You can check out all the available button options in the <a href=\"/docs#buttons\">docs</a>.</p>\n<h2 id=\"ajax-requests\" class=\"deep-link\"><a href=\"#ajax-requests\">AJAX requests</a></h2>\n<p>Since SweetAlert is promise-based, it makes sense to pair it with AJAX functions that are also promise-based. Below is an example of using <code>fetch</code> to search for artists on the iTunes API. Note that we&apos;re using <code>content: &quot;input&quot;</code> in order to both show an input-field <em>and</em> retrieve its value when the user clicks the confirm button:</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted single js\"><span class=\"punctuation definition string begin js\"><span>&apos;</span></span><span>Search&#xA0;for&#xA0;a&#xA0;movie.&#xA0;e.g.&#xA0;&quot;La&#xA0;La&#xA0;Land&quot;.</span><span class=\"punctuation definition string end js\"><span>&apos;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;content</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>input</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;button</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Search!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;closeModal</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant language boolean false js\"><span>false</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>then</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta function arrow js\"><span class=\"meta parameters js\"><span class=\"variable parameter function js\"><span>name</span></span></span><span>&#xA0;</span><span class=\"storage type function arrow js\"><span>=&gt;</span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>if</span></span><span>&#xA0;</span><span class=\"meta brace round js\"><span>(</span></span><span class=\"keyword operator logical js\"><span>!</span></span><span>name</span><span class=\"meta brace round js\"><span>)</span></span><span>&#xA0;</span><span class=\"keyword control js\"><span>throw</span></span><span>&#xA0;</span><span class=\"constant language null js\"><span>null</span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>return</span></span><span>&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>fetch</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted template js\"><span class=\"punctuation definition string begin js\"><span>`</span></span><span class=\"markup underline link https hyperlink\"><span>https://itunes.apple.com/search?term=</span></span><span class=\"source js embedded source\"><span class=\"punctuation section embedded js\"><span>${</span></span><span>name</span><span class=\"punctuation section embedded js\"><span>}</span></span></span><span>&amp;entity=movie</span><span class=\"punctuation definition string end js\"><span>`</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>then</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta function arrow js\"><span class=\"meta parameters js\"><span class=\"variable parameter function js\"><span>results</span></span></span><span>&#xA0;</span><span class=\"storage type function arrow js\"><span>=&gt;</span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>return</span></span><span>&#xA0;</span><span class=\"variable other object js\"><span>results</span></span><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>json</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>then</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta function arrow js\"><span class=\"meta parameters js\"><span class=\"variable parameter function js\"><span>json</span></span></span><span>&#xA0;</span><span class=\"storage type function arrow js\"><span>=&gt;</span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"storage modifier js\"><span>const</span></span><span>&#xA0;</span><span class=\"constant other js\"><span>movie</span></span><span>&#xA0;</span><span class=\"keyword operator assignment js\"><span>=</span></span><span>&#xA0;</span><span class=\"variable other object js\"><span>json</span></span><span class=\"meta delimiter property period js\"><span>.</span></span><span class=\"variable other property js\"><span>results</span></span><span class=\"meta brace square js\"><span>[</span></span><span class=\"constant numeric decimal js\"><span>0</span></span><span class=\"meta brace square js\"><span>]</span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>if</span></span><span>&#xA0;</span><span class=\"meta brace round js\"><span>(</span></span><span class=\"keyword operator logical js\"><span>!</span></span><span>movie</span><span class=\"meta brace round js\"><span>)</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>return</span></span><span>&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>No&#xA0;movie&#xA0;was&#xA0;found!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"storage modifier js\"><span>const</span></span><span>&#xA0;</span><span class=\"constant other js\"><span>name</span></span><span>&#xA0;</span><span class=\"keyword operator assignment js\"><span>=</span></span><span>&#xA0;</span><span class=\"variable other object js\"><span>movie</span></span><span class=\"meta delimiter property period js\"><span>.</span></span><span class=\"variable other property js\"><span>trackName</span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"storage modifier js\"><span>const</span></span><span>&#xA0;</span><span class=\"constant other js\"><span>imageURL</span></span><span>&#xA0;</span><span class=\"keyword operator assignment js\"><span>=</span></span><span>&#xA0;</span><span class=\"variable other object js\"><span>movie</span></span><span class=\"meta delimiter property period js\"><span>.</span></span><span class=\"variable other property js\"><span>artworkUrl100</span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;title</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Top&#xA0;result:</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;name</span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;icon</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;imageURL</span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>catch</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta function arrow js\"><span class=\"meta parameters js\"><span class=\"variable parameter function js\"><span>err</span></span></span><span>&#xA0;</span><span class=\"storage type function arrow js\"><span>=&gt;</span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>if</span></span><span>&#xA0;</span><span class=\"meta brace round js\"><span>(</span></span><span>err</span><span class=\"meta brace round js\"><span>)</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Oh&#xA0;noes!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>The&#xA0;AJAX&#xA0;request&#xA0;failed!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>error</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span>&#xA0;</span><span class=\"keyword control js\"><span>else</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"variable other object js\"><span>swal</span></span><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>stopLoading</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"variable other object js\"><span>swal</span></span><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"support function dom js\"><span>close</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<h2 id=\"using-dom-nodes-as-content\" class=\"deep-link\"><a href=\"#using-dom-nodes-as-content\">Using DOM nodes as content</a></h2>\n<p>Sometimes, you might run into a scenario where it would be nice to use the out-of-the box functionality that SweetAlert offers, but with some custom UI that goes beyond just styling buttons and text. For that, there&apos;s the <code>content</code> option.</p>\n<p>In the previous example, we saw how we could set <code>content</code> to <code>&quot;input&quot;</code> to get an <code>&lt;input /&gt;</code> element in our modal that changes the resolved value of the confirm button based on its value.\n<code>&quot;input&quot;</code> is a predefined option that exists for convenience, but you can also set <code>content</code> to any DOM node!</p>\n<p>Let&apos;s see how we can recreate the functionality of the following modal...</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Write&#xA0;something&#xA0;here:</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;content</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>input</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>then</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta function arrow js\"><span class=\"meta parameters js\"><span class=\"punctuation definition parameters begin bracket round js\"><span>(</span></span><span class=\"variable parameter function js\"><span>value</span></span><span class=\"punctuation definition parameters end bracket round js\"><span>)</span></span></span><span>&#xA0;</span><span class=\"storage type function arrow js\"><span>=&gt;</span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted template js\"><span class=\"punctuation definition string begin js\"><span>`</span></span><span>You&#xA0;typed:&#xA0;</span><span class=\"source js embedded source\"><span class=\"punctuation section embedded js\"><span>${</span></span><span>value</span><span class=\"punctuation section embedded js\"><span>}</span></span></span><span class=\"punctuation definition string end js\"><span>`</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button></preview-button></p>\n<p>...using a custom DOM node!</p>\n<p>We&apos;re going to use <a href=\"https://facebook.github.io/react\">React</a> here, since it&apos;s a well-known UI library that can help us understand how to create more complex SweetAlert interfaces, but you can use any library you want, as long as you can extract a DOM node from it!</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta import js\"><span class=\"keyword control js\"><span>import</span></span><span>&#xA0;</span><span class=\"variable other module js\"><span>React</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"punctuation definition modules begin js\"><span>{</span></span><span>&#xA0;</span><span class=\"variable other module js\"><span>Component</span></span><span>&#xA0;</span><span class=\"punctuation definition modules end js\"><span>}</span></span><span>&#xA0;</span><span class=\"keyword control js\"><span>from</span></span><span>&#xA0;</span><span class=\"string quoted single js\"><span class=\"punctuation definition string begin js\"><span>&apos;</span></span><span>react</span><span class=\"punctuation definition string end js\"><span>&apos;</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta import js\"><span class=\"keyword control js\"><span>import</span></span><span>&#xA0;</span><span class=\"variable other module js\"><span>ReactDOM</span></span><span>&#xA0;</span><span class=\"keyword control js\"><span>from</span></span><span>&#xA0;</span><span class=\"string quoted single js\"><span class=\"punctuation definition string begin js\"><span>&apos;</span></span><span>react-dom</span><span class=\"punctuation definition string end js\"><span>&apos;</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"storage modifier js\"><span>const</span></span><span>&#xA0;</span><span class=\"constant other js\"><span>DEFAULT_INPUT_TEXT</span></span><span>&#xA0;</span><span class=\"keyword operator assignment js\"><span>=</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta class js\"><span class=\"storage type class js\"><span>class</span></span><span>&#xA0;</span><span class=\"entity name type class js\"><span>MyInput</span></span><span>&#xA0;</span><span class=\"storage modifier js\"><span>extends</span></span><span>&#xA0;</span><span class=\"entity other inherited-class js\"><span>Component</span></span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;</span><span class=\"meta function js\"><span class=\"entity name function constructor js\"><span>constructor</span></span><span class=\"meta parameters js\"><span class=\"punctuation definition parameters begin bracket round js\"><span>(</span></span><span class=\"variable parameter function js\"><span>props</span></span><span class=\"punctuation definition parameters end bracket round js\"><span>)</span></span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"variable language js\"><span>super</span></span><span class=\"meta brace round js\"><span>(</span></span><span>props</span><span class=\"meta brace round js\"><span>)</span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"variable language js\"><span>this</span></span><span class=\"meta delimiter property period js\"><span>.</span></span><span class=\"variable other property js\"><span>state</span></span><span>&#xA0;</span><span class=\"keyword operator assignment js\"><span>=</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant other js\"><span>DEFAULT_INPUT_TEXT</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;</span><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;</span><span class=\"meta function method definition js\"><span class=\"entity name function js\"><span>changeText</span></span><span class=\"meta parameters js\"><span class=\"punctuation definition parameters begin bracket round js\"><span>(</span></span><span class=\"variable parameter function js\"><span>e</span></span><span class=\"punctuation definition parameters end bracket round js\"><span>)</span></span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"storage type var js\"><span>let</span></span><span>&#xA0;text&#xA0;</span><span class=\"keyword operator assignment js\"><span>=</span></span><span>&#xA0;</span><span class=\"variable other object js\"><span>e</span></span><span class=\"meta delimiter property period js\"><span>.</span></span><span class=\"support constant dom js\"><span>target</span></span><span class=\"meta delimiter property period js\"><span>.</span></span><span class=\"support constant dom js\"><span>value</span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"variable language js\"><span>this</span></span><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>setState</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;text</span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"comment block js\"><span class=\"punctuation definition comment js\"><span>/*</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"comment block js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;*&#xA0;This&#xA0;will&#xA0;update&#xA0;the&#xA0;value&#xA0;that&#xA0;the&#xA0;confirm</span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"comment block js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;*&#xA0;button&#xA0;resolves&#xA0;to:</span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"comment block js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"punctuation definition comment js\"><span>*/</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"variable other object js\"><span>swal</span></span><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>setActionValue</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span>text</span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;</span><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;</span><span class=\"meta function method definition js\"><span class=\"entity name function js\"><span>render</span></span><span class=\"meta parameters js\"><span class=\"punctuation definition parameters begin bracket round js\"><span>(</span></span><span class=\"punctuation definition parameters end bracket round js\"><span>)</span></span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword control js\"><span>return</span></span><span>&#xA0;</span><span class=\"meta brace round js\"><span>(</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span>input</span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;value</span><span class=\"keyword operator assignment js\"><span>=</span></span><span class=\"meta brace curly js\"><span>{</span></span><span class=\"variable language js\"><span>this</span></span><span class=\"meta delimiter property period js\"><span>.</span></span><span class=\"variable other object property js\"><span>state</span></span><span class=\"meta delimiter property period js\"><span>.</span></span><span class=\"support constant dom js\"><span>text</span></span><span class=\"meta brace curly js\"><span>}</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;onChange</span><span class=\"keyword operator assignment js\"><span>=</span></span><span class=\"meta brace curly js\"><span>{</span></span><span class=\"variable language js\"><span>this</span></span><span class=\"meta delimiter property period js\"><span>.</span></span><span class=\"variable other object property js\"><span>changeText</span></span><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>bind</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"variable language js\"><span>this</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"meta brace curly js\"><span>}</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator js\"><span>/</span></span><span class=\"keyword operator comparison js\"><span>&gt;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta brace round js\"><span>)</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;</span><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta brace curly js\"><span>}</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"comment line double-slash js\"><span class=\"punctuation definition comment js\"><span>//</span></span><span>&#xA0;We&#xA0;want&#xA0;to&#xA0;retrieve&#xA0;MyInput&#xA0;as&#xA0;a&#xA0;pure&#xA0;DOM&#xA0;node:</span><span>&#xA0;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"storage type var js\"><span>let</span></span><span>&#xA0;wrapper&#xA0;</span><span class=\"keyword operator assignment js\"><span>=</span></span><span>&#xA0;</span><span class=\"support class js\"><span>document</span></span><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"support function dom js\"><span>createElement</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted single js\"><span class=\"punctuation definition string begin js\"><span>&apos;</span></span><span>div</span><span class=\"punctuation definition string end js\"><span>&apos;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"variable other object js\"><span>ReactDOM</span></span><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>render</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span>MyInput&#xA0;</span><span class=\"keyword operator js\"><span>/</span></span><span class=\"keyword operator comparison js\"><span>&gt;</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;wrapper</span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"storage type var js\"><span>let</span></span><span>&#xA0;el&#xA0;</span><span class=\"keyword operator assignment js\"><span>=</span></span><span>&#xA0;</span><span class=\"variable other object js\"><span>wrapper</span></span><span class=\"meta delimiter property period js\"><span>.</span></span><span class=\"support constant dom js\"><span>firstChild</span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Write&#xA0;something&#xA0;here:</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;content</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;el</span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;confirm</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"comment block js\"><span class=\"punctuation definition comment js\"><span>/*</span></span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"comment block js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;*&#xA0;We&#xA0;need&#xA0;to&#xA0;initialize&#xA0;the&#xA0;value&#xA0;of&#xA0;the&#xA0;button&#xA0;to</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"comment block js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;*&#xA0;an&#xA0;empty&#xA0;string&#xA0;instead&#xA0;of&#xA0;&quot;true&quot;:</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"comment block js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"punctuation definition comment js\"><span>*/</span></span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;value</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"constant other js\"><span>DEFAULT_INPUT_TEXT</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta delimiter method period js\"><span>.</span></span><span class=\"entity name function js\"><span>then</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta function arrow js\"><span class=\"meta parameters js\"><span class=\"punctuation definition parameters begin bracket round js\"><span>(</span></span><span class=\"variable parameter function js\"><span>value</span></span><span class=\"punctuation definition parameters end bracket round js\"><span>)</span></span></span><span>&#xA0;</span><span class=\"storage type function arrow js\"><span>=&gt;</span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted template js\"><span class=\"punctuation definition string begin js\"><span>`</span></span><span>You&#xA0;typed:&#xA0;</span><span class=\"source js embedded source\"><span class=\"punctuation section embedded js\"><span>${</span></span><span>value</span><span class=\"punctuation section embedded js\"><span>}</span></span></span><span class=\"punctuation definition string end js\"><span>`</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta method-call js\"><span class=\"meta arguments js\"><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"punctuation terminator statement js\"><span>;</span></span></span></div></pre></div>\n<p><preview-button data-function=\"reactExample\"></preview-button></p>\n<p>This might look very complex at first, but it&apos;s actually pretty simple. All we&apos;re doing is creating an input tag as a React component. We then extract its DOM node and pass it into under the <code>swal</code> function&apos;s <code>content</code> option to render it as an unstyled element.</p>\n<p>The only code that&apos;s specific to SweetAlert is the <code>swal.setActionValue()</code> and the <code>swal()</code> call at the end. The rest is just basic React and JavaScript.</p>\n<figure align=\"center\">\n  <img src=\"/assets/images/modal-fb-example@2x.png\" alt=\"Facebook modal\" width=\"400\">\n  <figcaption>\n    Using this technique, we can create modals with more interactive UIs, such as this one from Facebook.\n  </figcaption>\n</figure>\n<h1 id=\"using-with-libraries\" class=\"deep-link\"><a href=\"#using-with-libraries\">Using with libraries</a></h1>\n<p>While the method documented above for creating more advanced modal designs works, it gets quite tedious to manually create nested DOM nodes. That&apos;s why we&apos;ve also made it easy to integrate your favourite template library into SweetAlert, using the <a href=\"https://github.com/sweetalert/transformer\">SweetAlert Transformer</a>.</p>\n<h2 id=\"using-react\" class=\"deep-link\"><a href=\"#using-react\">Using React</a></h2>\n<p>In order to use SweetAlert with JSX syntax, you need to install <a href=\"https://www.npmjs.com/package/@sweetalert/with-react\">SweetAlert with React</a>. Note that you need to have both <code>sweetalert</code> and <code>@sweetalert/with-react</code> as dependencies in your <code>package.json</code>.</p>\n<p>After that, it&apos;s easy. Whenever you want to use JSX in your SweetAlert modal, simply import swal from <code>@sweetalert/with-react</code> instead of from <code>sweetalert</code>.</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta import js\"><span class=\"keyword control js\"><span>import</span></span><span>&#xA0;</span><span class=\"variable other module js\"><span>React</span></span><span>&#xA0;</span><span class=\"keyword control js\"><span>from</span></span><span>&#xA0;</span><span class=\"string quoted single js\"><span class=\"punctuation definition string begin js\"><span>&apos;</span></span><span>react</span><span class=\"punctuation definition string end js\"><span>&apos;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta import js\"><span class=\"keyword control js\"><span>import</span></span><span>&#xA0;</span><span class=\"variable other module js\"><span>swal</span></span><span>&#xA0;</span><span class=\"keyword control js\"><span>from</span></span><span>&#xA0;</span><span class=\"string quoted single js\"><span class=\"punctuation definition string begin js\"><span>&apos;</span></span><span>@sweetalert/with-react</span><span class=\"punctuation definition string end js\"><span>&apos;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span>div</span><span class=\"keyword operator comparison js\"><span>&gt;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span>h1</span><span class=\"keyword operator comparison js\"><span>&gt;</span></span><span>Hello&#xA0;world</span><span class=\"keyword operator logical js\"><span>!</span></span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span class=\"keyword operator js\"><span>/</span></span><span>h1</span><span class=\"keyword operator comparison js\"><span>&gt;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span>p</span><span class=\"keyword operator comparison js\"><span>&gt;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;This&#xA0;is&#xA0;now&#xA0;rendered&#xA0;</span><span class=\"keyword control js\"><span>with</span></span><span>&#xA0;</span><span class=\"constant other js\"><span>JSX</span></span><span class=\"keyword operator logical js\"><span>!</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span class=\"keyword operator js\"><span>/</span></span><span>p</span><span class=\"keyword operator comparison js\"><span>&gt;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span class=\"keyword operator js\"><span>/</span></span><span>div</span><span class=\"keyword operator comparison js\"><span>&gt;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span></span></div></pre></div>\n<p><preview-button data-function=\"withReactExample\"></preview-button></p>\n<p>The JSX syntax replaces the modal&apos;s <code>content</code> option, so you can still use all of SweetAlert&apos;s other features. Here&apos;s how you could implement that Facebook modal that we saw earlier:</p>\n<div class=\"highlight js\"><pre class=\"editor editor-colors\"><div class=\"line\"><span class=\"source js\"><span class=\"meta import js\"><span class=\"keyword control js\"><span>import</span></span><span>&#xA0;</span><span class=\"variable other module js\"><span>React</span></span><span>&#xA0;</span><span class=\"keyword control js\"><span>from</span></span><span>&#xA0;</span><span class=\"string quoted single js\"><span class=\"punctuation definition string begin js\"><span>&apos;</span></span><span>react</span><span class=\"punctuation definition string end js\"><span>&apos;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta import js\"><span class=\"keyword control js\"><span>import</span></span><span>&#xA0;</span><span class=\"variable other module js\"><span>swal</span></span><span>&#xA0;</span><span class=\"keyword control js\"><span>from</span></span><span>&#xA0;</span><span class=\"string quoted single js\"><span class=\"punctuation definition string begin js\"><span>&apos;</span></span><span>@sweetalert/with-react</span><span class=\"punctuation definition string end js\"><span>&apos;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"storage modifier js\"><span>const</span></span><span>&#xA0;</span><span class=\"constant other js\"><span>onPick</span></span><span>&#xA0;</span><span class=\"keyword operator assignment js\"><span>=</span></span><span>&#xA0;</span><span class=\"meta function arrow js\"><span class=\"meta parameters js\"><span class=\"variable parameter function js\"><span>value</span></span></span><span>&#xA0;</span><span class=\"storage type function arrow js\"><span>=&gt;</span></span></span><span>&#xA0;</span><span class=\"punctuation definition function body begin bracket curly js\"><span>{</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Thanks&#xA0;for&#xA0;your&#xA0;rating!</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted template js\"><span class=\"punctuation definition string begin js\"><span>`</span></span><span>You&#xA0;rated&#xA0;us&#xA0;</span><span class=\"source js embedded source\"><span class=\"punctuation section embedded js\"><span>${</span></span><span>value</span><span class=\"punctuation section embedded js\"><span>}</span></span></span><span>/3</span><span class=\"punctuation definition string end js\"><span>`</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>success</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"punctuation definition function body end bracket curly js\"><span>}</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"storage modifier js\"><span>const</span></span><span>&#xA0;</span><span class=\"constant other js\"><span>MoodButton</span></span><span>&#xA0;</span><span class=\"keyword operator assignment js\"><span>=</span></span><span>&#xA0;</span><span class=\"meta function arrow js\"><span class=\"meta parameters js\"><span class=\"punctuation definition parameters begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span><span>&#xA0;rating</span><span class=\"meta delimiter object comma js\"><span>,</span></span><span>&#xA0;onClick&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition parameters end bracket round js\"><span>)</span></span></span><span>&#xA0;</span><span class=\"storage type function arrow js\"><span>=&gt;</span></span></span><span>&#xA0;</span><span class=\"meta brace round js\"><span>(</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;</span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span>button&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;data</span><span class=\"keyword operator js\"><span>-</span></span><span>rating</span><span class=\"keyword operator assignment js\"><span>=</span></span><span class=\"meta brace curly js\"><span>{</span></span><span>rating</span><span class=\"meta brace curly js\"><span>}</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;className</span><span class=\"keyword operator assignment js\"><span>=</span></span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>mood-btn</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;onClick</span><span class=\"keyword operator assignment js\"><span>=</span></span><span class=\"meta brace curly js\"><span>{</span></span><span class=\"meta function arrow js\"><span class=\"meta parameters js\"><span class=\"punctuation definition parameters begin bracket round js\"><span>(</span></span><span class=\"punctuation definition parameters end bracket round js\"><span>)</span></span></span><span>&#xA0;</span><span class=\"storage type function arrow js\"><span>=&gt;</span></span></span><span>&#xA0;</span><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>onClick</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span>rating</span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span><span class=\"meta brace curly js\"><span>}</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;&#xA0;</span><span class=\"keyword operator js\"><span>/</span></span><span class=\"keyword operator comparison js\"><span>&gt;</span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta brace round js\"><span>)</span></span></span></div><div class=\"line\"><span class=\"source js\"><span>&#xA0;</span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"entity name function js\"><span>swal</span></span><span class=\"meta arguments js\"><span class=\"punctuation definition arguments begin bracket round js\"><span>(</span></span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;text</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>How&#xA0;was&#xA0;your&#xA0;experience&#xA0;getting&#xA0;help&#xA0;with&#xA0;this&#xA0;issue?</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;buttons</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace curly js\"><span>{</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;cancel</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"string quoted double js\"><span class=\"punctuation definition string begin js\"><span>&quot;</span></span><span>Close</span><span class=\"punctuation definition string end js\"><span>&quot;</span></span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace curly js\"><span>}</span></span><span class=\"meta delimiter object comma js\"><span>,</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;content</span><span class=\"keyword operator js\"><span>:</span></span><span>&#xA0;</span><span class=\"meta brace round js\"><span>(</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span>div</span><span class=\"keyword operator comparison js\"><span>&gt;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span>MoodButton&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;rating</span><span class=\"keyword operator assignment js\"><span>=</span></span><span class=\"meta brace curly js\"><span>{</span></span><span class=\"constant numeric decimal js\"><span>1</span></span><span class=\"meta brace curly js\"><span>}</span></span><span>&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;onClick</span><span class=\"keyword operator assignment js\"><span>=</span></span><span class=\"meta brace curly js\"><span>{</span></span><span>onPick</span><span class=\"meta brace curly js\"><span>}</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator js\"><span>/</span></span><span class=\"keyword operator comparison js\"><span>&gt;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span>MoodButton&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;rating</span><span class=\"keyword operator assignment js\"><span>=</span></span><span class=\"meta brace curly js\"><span>{</span></span><span class=\"constant numeric decimal js\"><span>2</span></span><span class=\"meta brace curly js\"><span>}</span></span><span>&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;onClick</span><span class=\"keyword operator assignment js\"><span>=</span></span><span class=\"meta brace curly js\"><span>{</span></span><span>onPick</span><span class=\"meta brace curly js\"><span>}</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator js\"><span>/</span></span><span class=\"keyword operator comparison js\"><span>&gt;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span>MoodButton&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;rating</span><span class=\"keyword operator assignment js\"><span>=</span></span><span class=\"meta brace curly js\"><span>{</span></span><span class=\"constant numeric decimal js\"><span>3</span></span><span class=\"meta brace curly js\"><span>}</span></span><span>&#xA0;</span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;onClick</span><span class=\"keyword operator assignment js\"><span>=</span></span><span class=\"meta brace curly js\"><span>{</span></span><span>onPick</span><span class=\"meta brace curly js\"><span>}</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator js\"><span>/</span></span><span class=\"keyword operator comparison js\"><span>&gt;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;&#xA0;&#xA0;</span><span class=\"keyword operator comparison js\"><span>&lt;</span></span><span class=\"keyword operator js\"><span>/</span></span><span>div</span><span class=\"keyword operator comparison js\"><span>&gt;</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span>&#xA0;&#xA0;</span><span class=\"meta brace round js\"><span>)</span></span></span></span></span></div><div class=\"line\"><span class=\"source js\"><span class=\"meta function-call js\"><span class=\"meta arguments js\"><span class=\"meta brace curly js\"><span>}</span></span><span class=\"punctuation definition arguments end bracket round js\"><span>)</span></span></span></span></span></div></pre></div>\n<p><preview-button data-function=\"withReactOptionsExample\"></preview-button></p>\n<h1 id=\"upgrading-from-1x\" class=\"deep-link\"><a href=\"#upgrading-from-1x\">Upgrading from 1.X</a></h1>\n<p>SweetAlert 2.0 introduces some important breaking changes in order to make the library easier to use and more flexible.</p>\n<p>The most important change is that callback functions have been deprecated in favour of <a href=\"#using-promises\">promises</a>, and that you no longer have to import any external CSS file (since the styles are now bundled in the .js-file).</p>\n<p>Below are some additional deprecated options along with their replacements:</p>\n<ul>\n<li>When using a single string parameter (e.g. <code>swal(&quot;Hello world!&quot;)</code>), that parameter will be the modal&apos;s <code>text</code> instead of its <code>title</code>.</li>\n<li><code>type</code> and <code>imageUrl</code> have been replaced with a single <code>icon</code> option. If you&apos;re using the shorthand version (<code>swal(&quot;Hi&quot;, &quot;Hello world&quot;, &quot;warning&quot;)</code>) you don&apos;t have to change anything.</li>\n<li><code>customClass</code> is now <code>className</code>.</li>\n<li><code>imageSize</code> is no longer used. Instead, you should specify dimension restrictions in CSS if necessary. If you have a special use case, you can give your modal a custom class.</li>\n<li><code>showCancelButton</code> and <code>showConfirmButton</code> are no longer needed. Instead, you can set <code>buttons: true</code> to show both buttons, or <code>buttons: false</code> to hide all buttons. By default, only the confirm button is shown.</li>\n<li><code>confirmButtonText</code> and <code>cancelButtonText</code> are no longer needed. Instead, you can set <code>button: &quot;foo&quot;</code> to set the text on the confirm button to &quot;foo&quot;, or <code>buttons: [&quot;foo&quot;, &quot;bar&quot;]</code> to set the text on the cancel button to &quot;foo&quot; and the text on the confirm button to &quot;bar&quot;.</li>\n<li><code>confirmButtonColor</code> is no longer used. Instead, you should specify all stylistic changes through CSS. As a useful shorthand, you can set <code>dangerMode: true</code> to make the confirm button red. Otherwise, you can specify a class in the <a href=\"/docs#buttons\">button object</a>.</li>\n<li><code>closeOnConfirm</code> and <code>closeOnCancel</code> are no longer used. Instead, you can set the <code>closeModal</code> parameter in the <a href=\"/docs#buttons\">button options</a>.</li>\n<li><code>showLoaderOnConfirm</code> is no longer necessary. Your button will automatically show a loding animation when its <code>closeModal</code> parameter is set to <code>false</code>.</li>\n<li><code>animation</code> has been deprecated. All stylistic changes can instead be applied through CSS and a custom modal class.</li>\n<li><code>type: &quot;input&quot;</code>, <code>inputType</code>, <code>inputValue</code> and <code>inputPlaceholder</code> have all been replaced with the <code>content</code> option. You can either specify <code>content: &quot;input&quot;</code> to get the default options, or you can customize it further using the <a href=\"/docs#content\">content object</a>.</li>\n<li><code>html</code> is no longer used. Instead use the <a href=\"/docs#content\">content object</a>.</li>\n<li><code>allowEscapeKey</code> is now <code>closeOnEsc</code> for clarity.</li>\n<li><code>allowClickOutside</code> is now <code>closeOnClickOutside</code> for clarity.</li>\n</ul>\n\n  </div>\n\n</div>\n\n\n    <div id=\"app\"></div>\n\n    <footer>\n      <p>\n        Hand-crafted with <span class=\"love-icon\"></span> by\n        <a href=\"http://tristanedwards.me\">\n          Tristan Edwards\n        </a>\n        + \n        <a href=\"https://github.com/t4t5/sweetalert/graphs/contributors\">\n          contributors\n        </a>\n      </p>\n    </footer>\n\n    <script src=\"/assets/js/index.js\"></script>\n  </body>\n\n</html>\n"
  },
  {
    "path": "docs/index.html",
    "content": "<!doctype html>\n\n<html>\n\n  <head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0\">\n    <title>SweetAlert</title>\n    <meta name=\"description\" content=\"A beautiful replacement for JavaScript&apos;s &apos;alert&apos;\">\n\n    <link rel=\"stylesheet\" href=\"/assets/css/app.css\">\n\n    <link href=\"https://fonts.googleapis.com/css?family=Lato:300,400,400i,700,700i\" rel=\"stylesheet\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <script src=\"/assets/sweetalert/sweetalert.min.js\"></script>\n  </head>\n\n  <body>\n\n    <header class=\"global-header\">\n      <div class=\"page-container\">\n\n        <a href=\"/\" class=\"logo\">\n        </a>\n\n        <nav>\n          <ul>\n            <li>\n              <a href=\"/guides\">Guides</a>\n            </li>\n\n            <li>\n              <a href=\"/docs\">Docs</a>\n            </li>\n\n            <li>\n              <a href=\"https://opencollective.com/SweetAlert#backers\" target=\"_blank\">Donate</a>\n            </li>\n\n            <li>\n              <a href=\"https://github.com/t4t5/sweetalert\" class=\"github-icon\"></a>\n            </li>\n          </ul>\n        </nav>\n\n      </div>\n    </header>\n\n    <svg width=\"0\" height=\"0\" class=\"hidden\">\n  <defs>\n    <clippath id=\"top-transition-clip-shape\" clippathunits=\"objectBoundingBox\">\n      <polygon points=\"0 0, 1 0, 1 1, 0 0.8\"/>\n    </clippath>\n\n    <clippath id=\"customization-transition-clip-shape\" clippathunits=\"objectBoundingBox\">\n      <polygon points=\"0 0.05, 1 0, 1 1, 0 1\"/>\n    </clippath>\n  </defs>\n</svg>\n\n<div class=\"landing-top\">\n\n  <div class=\"bg\"></div>\n\n  <div class=\"page-container\">\n\n    <div class=\"desc\">\n      <h2>\n        A beautiful replacement for \n        <span class=\"text-rotater\">\n          success messages\n        </span>\n      </h2>\n\n      <div class=\"install\">\n        <div class=\"buttons\">\n          <span class=\"button\"></span>\n          <span class=\"button\"></span>\n          <span class=\"button\"></span>\n        </div>\n\n        <div class=\"command\">\n          npm install sweetalert\n        </div>\n      </div>\n\n    </div>\n\n\n    <div class=\"swal-modal-example\" data-type=\"success\">\n\n      <div class=\"example-content success show\">\n        <div class=\"swal-icon swal-icon--success\">\n          <div class=\"swal-icon--success__line swal-icon--success__line--long\"></div> \n          <div class=\"swal-icon--success__line swal-icon--success__line--tip\"></div> \n\n          <div class=\"swal-icon--success__ring\"></div> \n          <div class=\"swal-icon--success__hide-corners\"></div> \n        </div>\n\n        <h3 class=\"swal-title\">\n          You&apos;ve arrived!\n        </h3>\n        <p class=\"swal-text\">\n          How lovely. Let me take your coat.\n        </p>\n      </div>\n\n      <div class=\"example-content error\">\n\n        <div class=\"swal-icon swal-icon--error\">\n          <div class=\"swal-icon--error__x-mark\">\n            <span class=\"swal-icon--error__line swal-icon--error__line--left\"></span>\n            <span class=\"swal-icon--error__line swal-icon--error__line--right\"></span>\n          </div>\n        </div>\n\n        <h3 class=\"swal-title\">\n          Oops!\n        </h3>\n        <p class=\"swal-text\">\n          Seems like something went wrong!\n        </p>\n      </div>\n\n      <div class=\"example-content warning\">\n        <div class=\"swal-icon swal-icon--warning\">\n          <span class=\"swal-icon--warning__body\">\n            <span class=\"swal-icon--warning__dot\"></span>\n          </span>\n        </div>\n\n        <h3 class=\"swal-title\">\n          Delete important stuff?\n        </h3>\n        <p class=\"swal-text\">\n          That doesn&apos;t seem like a good idea. Are you sure you want to do that?\n        </p>\n\n        <div class=\"swal-footer\">\n          <div class=\"swal-button-container\">\n            <button class=\"swal-button swal-button--cancel\">\n              Cancel\n            </button>\n          </div>\n\n          <div class=\"swal-button-container\">\n            <button class=\"swal-button swal-button--confirm swal-button--danger\">\n              Yes, delete it!\n            </button>\n          </div>\n        </div>\n      </div>\n\n      <div class=\"modal-content-overlay\"></div>\n\n    </div>\n\n  </div>\n\n</div>\n\n<div class=\"comparison-container\">\n\n  <h3>\n    SweetAlert makes popup messages easy and pretty.\n  </h3>\n\n  <div class=\"page-container\">\n\n    <div class=\"code-container\">\n      <h5>\n        Normal alert\n      </h5>\n\n      <div class=\"highlight js\">\n        <div class=\"editor\">\n          <div class=\"line\">\n            <span class=\"name function js\">alert</span>\n            <span class=\"bracket js\">(</span>\n            <span class=\"string\">&quot;Oops, something went wrong!&quot;</span>\n            <span class=\"bracket js\">)</span>\n          </div>\n        </div>\n      </div>\n\n      <button class=\"preview\" onclick=\"alert(&apos;Oops, something went wrong!&apos;)\">\n        Preview\n      </button>\n    </div>\n\n    <div class=\"versus\"></div>\n\n    <div class=\"code-container\">\n      <h5 class=\"swal-logo\">\n        SweetAlert\n      </h5>\n\n      <div class=\"highlight js\">\n        <div class=\"editor\">\n          <div class=\"line\">\n            <span class=\"name function js\">swal</span>\n            <span class=\"bracket js\">(</span>\n            <span class=\"string\">&quot;Oops&quot;</span>\n            <span class=\"comma\">,</span>\n            <span class=\"string\">&#xA0;&quot;Something went wrong!&quot;</span>\n            <span class=\"comma\">,</span>\n            <span class=\"string\">&#xA0;&quot;error&quot;</span>\n            <span class=\"bracket js\">)</span>\n          </div>\n        </div>\n      </div>\n\n      <button class=\"preview\" onclick=\"swal(&apos;Oops&apos;, &apos;Something went wrong!&apos;, &apos;error&apos;)\">\n        Preview\n      </button>\n    </div>\n\n  </div>\n\n  <p class=\"remark\">\n    Pretty cool, huh?\n  </p>\n\n  <a class=\"get-started-button\" href=\"/guides\">\n    Get started!\n  </a>\n\n</div>\n\n<div class=\"customize-container\">\n\n  <h3>\n    You can customize SweetAlert to fit your needs\n  </h3>\n\n  <div class=\"example-modals\"></div>\n\n  <a class=\"view-api-button\" href=\"/docs\">\n    View docs\n  </a>\n\n</div>\n\n\n\n    <div id=\"app\"></div>\n\n    <footer>\n      <p>\n        Hand-crafted with <span class=\"love-icon\"></span> by\n        <a href=\"http://tristanedwards.me\">\n          Tristan Edwards\n        </a>\n        + \n        <a href=\"https://github.com/t4t5/sweetalert/graphs/contributors\">\n          contributors\n        </a>\n      </p>\n    </footer>\n\n    <script src=\"/assets/js/index.js\"></script>\n  </body>\n\n</html>\n"
  },
  {
    "path": "docs-src/assets/css/app.styl",
    "content": "@import 'variables';\n@import 'normalize';\n\n@import 'header';\n@import 'highlight';\n\n@import 'index';\n@import 'guide';\n\nbody {\n  font-family: 'Lato', 'Helvetica Neue', Helvetica, sans-serif;\n}\n\nsvg.hidden {\n  display: block;\n}\n\n.page-container {\n  max-width: 1000px;\n  margin: 0 auto;\n  padding: 0 10px;\n  position: relative;\n}\n\n$preview-color = #A3DD82;\n\n.preview {\n  background-color: $preview-color;\n  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.07);\n  border-radius: 4px;\n  border: none;\n  color: white;\n  font-size: 15px;\n  color: white;\n  padding: 9px 18px;\n  margin-top: 20px;\n  &::before {\n    content: \"\";\n    width: 0;\n    height: 0;\n    border-top: 6px solid transparent;\n    border-bottom: 6px solid transparent;\n    border-left: 10px solid white;\n    display: inline-block;\n    margin-right: 5px;\n  }\n  &:hover {\n    background-color: lightness($preview-color, 65%)\n  }\n}\n\n\nfooter {\n  padding: 40px 20px;\n  text-align: center;\n  color: #728194;\n\n  .love-icon {\n    background-image: url(\"/assets/images/heart-icon.svg\");\n    width: 22px;\n    height: 20px;\n    display: inline-block;\n    vertical-align: middle;\n    margin: 0 5px;\n    position: relative;\n    top: -2px;\n  }\n}\n"
  },
  {
    "path": "docs-src/assets/css/guide.styl",
    "content": "@import 'table';\n\n.doc-container {\n  overflow: hidden;\n}\n\n$side-menu-width = 225px;\n\n.side-menu {\n  width: $side-menu-width;\n  float: left;\n  padding-left: 20px;\n  position: fixed;\n  top: 88px;\n  @media all and (max-width: $phablet-width) {\n    float: none;\n    position: static;\n    margin-top: 120px;\n    text-align: center;\n    width: 100%;\n    margin-bottom: -60px;\n    padding-left: 0;\n  }\n\n  .title {\n    font-size: 20px;\n    color: rgba(0,0,0,0.63);\n    font-weight: 600;\n    margin-top: 50px;\n    margin-bottom: 36px;\n  }\n\n  a {\n    font-size: 17px;\n    color: rgba(0, 0, 0, 0.42);\n    display: block;\n    margin: 18px 0;\n    &:hover {\n      color: rgba(0, 0, 0, 0.6);\n    }\n  }\n\n}\n\n.page-content {\n  float: left;\n  width: s('calc(100% - %s - 20px)', $side-menu-width);\n  margin-left: $side-menu-width;\n  min-height: 220px;\n  margin-top: 16px;\n\n  font-size: 16px;\n  color: rgba(0,0,0,0.59);\n  line-height: 29px;\n  @media all and (max-width: $phablet-width) {\n    float: none;\n    margin-left: 0;\n    width: 100%;\n  }\n\n  h1 {\n    padding-top: 90px;\n    border-bottom: 1px solid rgba(0, 0, 0, 0.15);\n    padding-bottom: 20px;\n    margin-bottom: 0;\n    &::before {\n      content: \"#\";\n      position: absolute;\n      margin-left: -23px;\n      font-size: 24px;\n      margin-top: 3px;\n      color: #f38270;\n      font-weight: 500;\n    }\n  \n    a {\n      font-size: 30px;\n      color: rgba(0,0,0,0.85);\n      font-weight: 600;\n    }\n  }\n\n  h2,\n  h3 {\n    font-size: 20px;\n    margin-top: -70px;\n    padding-top: 100px;\n\n    a {\n      color: rgba(0, 0, 0, 0.7);\n    }\n  }\n\n  ul {\n    list-style-type: disc; \n    margin-bottom: 20px;\n\n    li {\n      margin: 5px 0;\n    }\n  }\n\n  img {\n    max-width: 100%;\n  }\n\n  &.api > ul {\n    list-style-type: none;\n    padding-left: 30px;\n\n    > li h3::before {\n      content: \"\";\n      width: 8px;\n      height: 8px;\n      position: absolute;\n      border-radius: 50%;\n      background-color: $main-color;\n      margin-left: -27px;\n      margin-top: 12px;\n    }\n  }\n\n  code {\n    font-family: $code-font;\n    padding: 3px 6px;\n    border-radius: 2px;\n    border: 1px solid rgba(0,0,0,.12);\n    background: rgb(248, 248, 248);\n    font-size: 14px;\n    color: $main-color;\n  }\n\n  kbd {\n    display: inline-block;\n    padding: 3px 5px;\n    font-size: 11px;\n    line-height: 10px;\n    color: #444d56;\n    vertical-align: middle;\n    background-color: #fafbfc;\n    border: solid 1px #c6cbd1;\n    border-bottom-color: #959da5;\n    border-radius: 3px;\n    box-shadow: inset 0 -1px 0 #959da5;\n    font-family: sans-serif;\n  }\n\n  // Special web component:\n  preview-button {\n    /* Matches the \"real\" button's height: */\n    display: block;\n    height: 44px;\n  }\n\n  button.preview {\n    margin: 20px auto;\n    width: 110px;\n    display: block;\n    position: relative;\n    z-index: 2;\n  }\n\n  figcaption {\n    font-style: italic;\n  }\n}\n\n.swal-modal.red-bg {\n  background-color: rgba(255, 0, 0, 0.28);\n}\n\n.mood-btn {\n  background: none;\n  border: none;\n  width: 28px;\n  height: 28px;\n  background-image: url(/assets/images/mood-sad.png);\n  background-size: 28px 28px;\n  padding: 4px;\n  background-position: center center;\n  box-sizing: content-box;\n  background-repeat: no-repeat;\n  margin: 0 7px;\n  position: relative;\n  overflow: hidden;\n  border-radius: 3px;\n}\n.mood-btn:hover::after {\n  content: \"\";\n  position: absolute;\n  top: 0;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  background-color: rgba(0, 0, 0, 0.03);\n}\n.mood-btn[data-rating=\"2\"] {\n  background-image: url(/assets/images/mood-neutral.png);\n}\n.mood-btn[data-rating=\"3\"] {\n  background-image: url(/assets/images/mood-happy.png);\n}\n\n"
  },
  {
    "path": "docs-src/assets/css/header.styl",
    "content": ".global-header {\n  background-color: white;\n  box-shadow: 0 1px 15px 0 rgba(192,72,25,0.32);\n  height: $header-height;\n  position: fixed;\n  top: 0;\n  left: 0;\n  right: 0;\n  z-index: 100;\n\n  .logo {\n    width: 162px;\n    height: 36px;\n    background-image: url(\"/assets/images/logo.svg\");\n    background-size: contain;\n    background-repeat: no-repeat;\n    background-position: center center;\n    float: left;\n    margin-top: 22px;\n    margin-left: 15px;\n    @media all and (max-width: $phablet-width) {\n      float: none;\n      height: 29px;\n      display: block;\n      margin: 0 auto;\n      margin-top: 10px;\n    }\n  }\n\n  nav {\n    font-size: 17px;\n    color: $main-color;\n    float: right;\n    margin-top: 29px;\n    @media all and (max-width: $phablet-width) {\n      float: none;\n      text-align: center;\n      font-size: 16px;\n      margin-top: 10px;\n    }\n\n    a {\n      position: relative;\n      cursor: pointer;\n      &::before {\n        content: \"\";\n        background-color: $main-color;\n        height: 3px;\n        border-radius: 2px;\n        position: absolute;\n        left: 0;\n        right: 0;\n        bottom: -5px;\n        display: none;\n      }\n      &:hover::before {\n        display: block;\n      }\n    }\n\n    .github-icon {\n      width: 26px;\n      height: 25px;\n      background-image: url(\"/assets/images/github.svg\");\n      display: inline-block;\n      vertical-align: middle;\n      position: relative;\n      top: -3px;\n    }\n  }\n\n  ul {\n    white-space: nowrap;\n    padding: 0;\n\n    li {\n      display: inline-block;\n      margin: 0 15px;\n    }\n  }\n\n}\n"
  },
  {
    "path": "docs-src/assets/css/highlight.styl",
    "content": ".highlight {\n  $code-color = rgba(0,0,0,0.62);\n\n  background-color: #F8F8F8;\n  padding: 10px 23px;\n  font-size: 14px;\n  line-height: normal;\n  color: $code-color;\n  overflow-x: auto;\n\n  .editor {\n    font-family: $code-font;\n  }\n\n  .line {\n    margin: 6px 0;\n  }\n\n  &.bash .line::before {\n    content: \"$ \";\n    opacity: 0.5;\n  }\n\n  // Colors:\n  $purple = #8858d2;\n  $green = #4ac14a;\n  $pink = #b646c1;\n  $blue = #00a9ff;\n  $orange = #f7af00;\n  $gray = rgba(0, 0, 0, 0.3);\n\n  .string {\n    color: $purple;\n  }\n\n  .html {\n    &.name.tag {\n      color: $green;\n    }\n    &.attribute-name {\n      color: $pink;\n    }\n  }\n\n  .js {\n    &.name.function {\n      color: $main-color;\n    }\n    &.boolean,\n    &.numeric {\n      color: $green;\n    }\n    &.control,\n    &.assignment {\n      color: $pink;\n    }\n    &.storage,\n    &.storage,\n    &.variable {\n      color: $blue;\n    }\n    &.comment {\n      color: $gray;\n    }\n\n    &.function {\n      color: inherit;\n    }\n\n    &.variable {\n      &.other,\n      &.parameter {\n        color: inherit;\n      }\n    }\n\n    &.storage.class,\n    // \"extends\":\n    &.class + * + .storage.modifier {\n      color: $pink;\n    }\n  }\n\n  .css {\n    &.selector {\n      color: $green;\n    }\n    &.property-name {\n      color: $blue;\n    }\n    &.property-value {\n      color: $purple;\n    }\n    &.separator,\n    &.terminator {\n      color: $code-color;\n    }\n  }\n}\n"
  },
  {
    "path": "docs-src/assets/css/index.styl",
    "content": "$modal-width = 409px;\n\n.landing-top {\n  height: 370px;\n  position: relative;\n  padding-top: $header-height;\n  @media all and (max-width: $tablet-width) {\n    height: 600px;\n  }\n\n  .bg {\n    background-image: linear-gradient(-132deg, #FF7D79 0%, #F28B74 92%);\n    position: absolute;\n    left: 0;\n    right: 0;\n    top: 0;\n    bottom: 0;\n    -webkit-clip-path: url(\"#top-transition-clip-shape\");\n    clip-path: url(\"#top-transition-clip-shape\");\n    will-change: transform; /* For Safari */\n\n    /*\n     * For some reason, clip path makes the whole page\n     * flicker in Mobile Safari. \n     * So we disable it for mobile.\n     */\n    @media all and (max-width: $phablet-width) {\n      -webkit-clip-path: none;\n      clip-path: none;\n    }\n  }\n\n  .swal-modal-example {\n    transform: none;\n    opacity: 1;\n    height: 292px;\n    width: $modal-width;\n    margin: 20px;\n    background-color: white;\n    box-shadow: 0 5px 22px 0 rgba(0,0,0,0.20);\n    border-radius: 8px;\n    margin-top: 59px;\n    text-align: center;\n    display: inline-block;\n    vertical-align: middle;\n    overflow: hidden;\n    transition: height 0.3s;\n    position: absolute;\n    z-index: 10;\n    top: 0;\n    left: 0;\n    @media all and (max-width: $tablet-width) {\n      position: relative;\n      display: block;\n      margin: 20px auto;\n    }\n    @media all and (max-width: $mobile-width) {\n      width: 100%;\n    }\n\n    &[data-type=\"success\"] {\n      height: 292px;\n    }\n    &[data-type=\"warning\"] {\n      height: 325px;\n    }\n\n    .swal-title {\n      padding-top: 10px;\n    }\n\n    .swal-text {\n      color: rgba(0,0,0,0.48);\n      margin-top: 6px;\n    }\n  }\n\n  .modal-content-overlay {\n    position: absolute;\n    top: 0;\n    bottom: 0;\n    left: 0;\n    right: 0;\n    background-color: white;\n    z-index: 2;\n    pointer-events: none;\n    opacity: 0;\n    transition: opacity 0.2s;\n    &.show {\n      opacity: 1;\n    }\n  }\n\n  .example-content {\n    display: none;\n    &.show {\n      display: block;\n    }\n  }\n\n  .desc {\n    display: inline-block;\n    position: relative;\n    color: white;\n    margin-left: 50px;\n    max-width: s('calc(100% - %s - 112px)', $modal-width);\n    vertical-align: middle;\n    margin-top: 61px;\n    padding-left: 473px;\n    @media all and (max-width: $tablet-width) {\n      display: block;\n      max-width: none;\n      padding-left: 0;\n      margin-left: 0;\n      text-align: center;\n    }\n  }\n\n  h2 {\n    font-size: 30px;\n    line-height: 51px;\n    font-weight: 300;\n    @media all and (max-width: $small-width) {\n      font-size: 25px;\n      margin-top: -20px;\n    }\n  }\n\n  .text-rotater {\n    display: block;\n    height: 57px;\n    overflow: hidden;\n\n    span {\n      display: block;\n      transition: transform 0.4s;\n    }\n\n    &.slide-up span {\n      transform: translateY(-51px);\n    }\n  }\n\n  .install {\n    background: rgba(120,40,40,0.32);\n    border-radius: 7px;\n    max-width: 357px;\n    padding: 12px;\n    @media all and (max-width: $tablet-width) {\n      margin: 0 auto;\n      text-align: left;\n    }\n\n    .button {\n      background: rgba(255,255,255,0.39);\n      width: 12px;\n      height: 12px;\n      border-radius: 50%;\n      display: inline-block;\n    }\n\n    .command {\n      font-family: $code-font;\n      padding: 12px;\n      padding-left: 30px;\n      &::before {\n        content: \"$\";\n        opacity: 0.5;\n        transform: rotate(8deg);\n        font-size: 20px;\n        position: absolute;\n        margin-left: -27px;\n        margin-top: -2px;\n      }\n    }\n  }\n}\n\n.comparison-container {\n  padding-bottom: 70px;\n  text-align: center;\n\n  h3 {\n    font-size: 22px;\n    color: #B49993;\n    font-weight: 400;\n    display: block;\n    text-align: center;\n    margin-top: 93px;\n    margin-bottom: 80px;\n  }\n\n  .code-container {\n    text-align: center;\n    width: calc(50% - 60px);\n    display: inline-block;\n    vertical-align: middle;\n    @media all and (max-width: $phablet-width) {\n      width: 100%;\n    }\n  }\n\n  .versus {\n    width: 35px;\n    height: 33px;\n    background-image: url(\"/assets/images/vs.svg\");\n    display: inline-block;\n    vertical-align: middle;\n    margin: 0 30px;\n    @media all and (max-width: $phablet-width) {\n      margin: 30px;\n      margin-bottom: -10px;\n    }\n  }\n\n  h5 {\n    font-size: 13px;\n    color: rgba(0,0,0,0.21);\n    text-transform: uppercase;\n    text-align: left;\n    margin-bottom: 15px;\n    &.swal-logo {\n      text-indent: -9999999px;\n      margin-top: 2px;\n      &::after {\n        content: \"\";\n        background-image: url(\"/assets/images/logo-small.svg\");\n        width: 91px;\n        height: 20px;\n        display: block;\n      }\n    }\n  }\n\n  .highlight {\n    text-align: left;\n    padding: 16px 23px;\n    span {\n      margin: 0 -4px;\n    }\n  }\n\n  .remark {\n    font-size: 20px;\n    color: $main-color;\n    margin-top: 80px;\n  }\n\n  .get-started-button {\n    background-color: $main-color;\n    color: white;\n    border-radius: 8px;\n    font-size: 22px;\n    padding: 14px 55px;\n    margin: 20px 0;\n    display: inline-block;\n  }\n\n}\n\nretina-bg(namespace, extension = 'png') {\n  $path = \"/assets/images/\";\n\tbackground-image: url($path + namespace + '.' + extension);\n  background-image: -webkit-image-set(url($path + namespace + '.' + extension) 1x, url($path + namespace + '@2x' + '.' + extension) 2x);\n}\n\n.customize-container {\n  background-color: #999EAF;\n  text-align: center;\n  color: white;\n  text-align: center;\n  retina-bg(\"pattern\")\n  padding: 40px 0;\n  -webkit-clip-path: url(\"#customization-transition-clip-shape\");\n  clip-path: url(\"#customization-transition-clip-shape\");\n  will-change: transform; /* For Safari */\n  @media all and (max-width: $phablet-width) {\n    -webkit-clip-path: none;\n    clip-path: none;\n  }\n\n  h3 {\n    font-weight: 400;\n    font-size: 20px;\n    padding: 50px 0;\n  }\n\n  .example-modals {\n    retina-bg(\"modal-examples\")\n    height: 284px;\n    background-size: auto 100%;\n    background-position: 0 0;\n    animation: scrollExamples 80s infinite linear;\n  }\n\n  .view-api-button {\n    border: 3px solid #FFFFFF;\n    border-radius: 6px;\n    color: white;\n    padding: 12px 52px;\n    font-size: 18px;\n    margin-top: 60px;\n    display: inline-block;\n  }\n}\n\n@keyframes scrollExamples {\n  0% {\n    background-position: 0 0;\n  }\n  100% {\n    background-position: -2146px 0;\n  }\n}\n\n"
  },
  {
    "path": "docs-src/assets/css/normalize.styl",
    "content": "body {\n  margin: 0;\n  padding: 0;\n}\n\na {\n  text-decoration: none;\n  color: $main-color;\n}\n\np a:hover {\n  text-decoration: underline;\n}\n\nbutton {\n  cursor: pointer;\n  &:focus {\n    outline: none;\n  }\n}\n\nul {\n  list-style-type: none;\n  margin: 0;\n}\n"
  },
  {
    "path": "docs-src/assets/css/table.styl",
    "content": ".page-content {\n\n  $mobile-breakpoint: 880px;\n\n  table {\n    border-collapse: collapse;\n    border: none;\n    width: 100%;\n  }\n\n  th {\n    font-size: 17px;\n    color: rgba(0,0,0,0.34);\n    padding: 20px 15px;\n    text-transform: capitalize;\n    font-weight: 400;\n  }\n\n  thead > tr {\n    border-bottom: 2px solid rgba(0,0,0,0.10);\n  }\n\n  tr {\n    text-align: left;\n    box-shadow: 0px -1px 0px rgba(0,0,0,0.15);\n    &:first-child {\n      box-shadow: none;\n    }\n  }\n\n  td {\n    padding: 17px;\n\n    &:first-child > code {\n      color: #2E9FEF;\n      background: none;\n      border: none;\n      font-size: 16px;\n      padding: 0;\n    }\n  }\n\n  tbody tr {\n    @media all and (min-width: mobile-breakpoint) {\n      &:nth-child(1) {\n        box-shadow: none;\n      }\n    }\n  }\n\n  @media all and (max-width: mobile-breakpoint) {\n\n  /* Force table to not be like tables anymore */\n    & table,\n    & thead,\n    & tbody,\n    & th,\n    & td,\n    & tr {\n      display: block; \n    }\n\n    /* Hide table headers (but not display: none;, for accessibility) */\n    & thead tr { \n      position: absolute;\n      top: -9999px;\n      left: -9999px;\n    }\n    \n    & tr {\n      margin-top: -1px;\n      box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.27)\n    }\n    \n    & td { \n      /* Behave  like a \"row\" */\n      border: none;\n      border-bottom: 1px solid #eee; \n      position: relative;\n      padding-left: mobile-padding;\n      min-height: 20px;\n    }\n    \n    & td::before { \n      /* Now like a table header */\n      position: absolute;\n      /* Top/left values mimic padding */\n      top: 15px;\n      left: 15px;\n      width: mobile-padding;\n      width: calc(mobile-padding - 35px);\n      overflow: hidden;\n      text-overflow: ellipsis;\n      padding-right: 10px; \n      white-space: nowrap;\n      color: rgba(0, 0, 0, 0.54);\n      font-family: page-font;\n      font-size: 16px;\n      text-transform: capitalize;\n\n      content: attr(data-name);\n    }\n    \n  }\n\n}\n"
  },
  {
    "path": "docs-src/assets/css/variables.styl",
    "content": "$main-color = #F27474;\n\n$header-height = 80px;\n$code-font = 'Inconsolata', monospace;\n\n$tablet-width = 1000px;\n$phablet-width = 600px;\n$mobile-width = 450px;\n$small-width = 380px;\n"
  },
  {
    "path": "docs-src/assets/js/add-preview-buttons.js",
    "content": "const Babel = require('babel-standalone');\n\n/*\n * In our Markdown files, we have some <preview-button /> tags.\n * We want to transform these into button.preview,\n * which onclick will run the JS code right above them!\n */\n\nconst previewPlaceholders = document.querySelectorAll('preview-button');\n\nconst createButton = placeholder => {\n  let button = document.createElement('button');\n  button.className = \"preview\";\n  button.innerText = \"Preview\";\n\n  // Add button right above placeholder\n  placeholder.parentNode.insertBefore(button, placeholder)\n\n  return button;\n};\n\nconst getCodeEl = placeholder => {\n  return placeholder.parentNode.previousSibling.previousSibling;\n};\n\nconst getCode = highlightEl => highlightEl.innerText.trim();\n\nconst resetStyles = () => {\n  const swalOverlay = document.querySelector('.swal-overlay');\n  const allSwalEls = swalOverlay.querySelectorAll('*');\n\n  swalOverlay.removeAttribute('style');\n\n  allSwalEls.forEach((el) => {\n    el.removeAttribute('style');\n  });\n};\n\nconst setStyles = (code) => {\n  const array = code.split(/[{}]/g);\n  const selector = array[0].trim();\n\n  const el = document.querySelector(selector);\n\n  let css = array[1].trim();\n  css = css.replace(/\\s+/g, ' ');\n  css = css.replace(/;\\s?/g, '; ');\n  css = css.replace(/:\\s?/g, ': ');\n\n  el.style.cssText = css;\n};\n\npreviewPlaceholders.forEach((placeholder) => {\n  const highlightEl = getCodeEl(placeholder);\n  const code = getCode(highlightEl);\n\n  const button = createButton(placeholder);\n  const givenFunction = placeholder.dataset.function;\n\n  let lang = highlightEl.classList[1];\n\n  /*\n   * If there's a specified data-function on <preview-button>, call that.\n   * Othwerwise, just use the code from the highlightjs above it:\n   */\n  button.addEventListener('click', () => {\n    if (givenFunction) {\n      window[givenFunction]();\n    } else if (lang === \"css\") {\n      swal(\"Sweet!\", \"I like customizing!\");\n      resetStyles();\n      setStyles(code);\n    } else {\n      const transpiledCode = Babel.transform(code, { presets: ['es2015'] }).code;\n      eval(transpiledCode);\n    }\n  });\n\n  placeholder.remove();\n});\n\n"
  },
  {
    "path": "docs-src/assets/js/index.js",
    "content": "// Fetch polyfill\nimport 'whatwg-fetch';\n\n// NodeList.forEach() polyfill\nimport 'nodelist-foreach-polyfill';\n\nimport './add-preview-buttons';\n\nimport './landing-text-rotater';\n/*\n * FOR GUIDES EXAMPLES:\n */\nimport React, { Component } from 'react';\nimport ReactDOM from 'react-dom';\nimport swalWithReact from '@sweetalert/with-react';\n\nconst DEFAULT_INPUT_TEXT = \"\";\n\nclass MyInput extends Component {\n  constructor(props) {\n    super(props);\n\n    this.state = {\n      text: DEFAULT_INPUT_TEXT,\n    };\n  }\n\n  changeText(e) {\n    let text = e.target.value;\n\n    this.setState({\n      text,\n    });\n\n    /*\n     * This will update the value that the confirm\n     * button resolves to:\n     */\n    swal.setActionValue(text);\n  }\n\n  render() {\n    return (\n      <input\n        value={this.state.text}\n        onChange={this.changeText.bind(this)}\n      />\n    )\n  }\n}\n\n// We want to retrieve MyInput as a pure DOM node:\nlet wrapper = document.createElement('div');\nReactDOM.render(<MyInput />, wrapper);\nlet el = wrapper.firstChild;\n\nwindow.reactExample = () => {\n\n  swal({\n    text: \"Write something here:\",\n    content: el,\n    buttons: {\n      confirm: {\n        value: DEFAULT_INPUT_TEXT,\n      },\n    },\n  })\n  .then((value) => {\n    swal(`You typed: ${value}`);\n  });\n\n};\n\nwindow.withReactExample = () => {\n  swalWithReact(\n    <div>\n      <h1>Hello world!</h1>\n      <p>\n        This is now rendered with JSX!\n      </p>\n    </div>\n  );\n};\n\nwindow.withReactOptionsExample = () => {\n  const onPick = value => {\n    swal(\"Thanks for your rating!\", `You rated us ${value}/3`, \"success\")\n  }\n\n  const MoodButton = ({ rating, onClick }) => (\n    <button \n      data-rating={rating}\n      className=\"mood-btn\" \n      onClick={() => onClick(rating)}\n    />\n  )\n\n  swalWithReact({\n    text: \"How was your experience getting help with this issue?\",\n    buttons: {\n      cancel: \"Close\",\n    },\n    content: (\n      <div>\n        <MoodButton \n          rating={1} \n          onClick={onPick}\n        />\n        <MoodButton \n          rating={2} \n          onClick={onPick}\n        />\n        <MoodButton \n          rating={3} \n          onClick={onPick}\n        />\n      </div>\n    )\n  })\n};\n\n"
  },
  {
    "path": "docs-src/assets/js/landing-text-rotater.js",
    "content": "const useCases = [\n  {\n    text: \"success messages\",\n    className: 'success',\n  },\n  {\n    text: \"error messages\",\n    className: 'error',\n  },\n  {\n    text: \"warning modals\",\n    className: 'warning',\n  },\n];\n\nlet currentIndex = 0;\n\nconst initRotater = () => {\n  updateUseCase(true);\n  setInterval(updateUseCase, 4000); \n}\n\nconst updateUseCase = (isInitial) => {\n  const useCase = useCases[currentIndex];\n  const nextUseCase = useCases[getNextIndex()];\n\n  updateText(useCase, nextUseCase);\n  updateModal(useCase, nextUseCase, isInitial);\n\n  currentIndex = getNextIndex();\n}\n\nconst updateModal = (useCase, nextUseCase, isInitial) => {\n  const { className } = useCase;\n\n  const contentOverlayEl = document.querySelector('.modal-content-overlay');\n\n  if (!contentOverlayEl) return;\n\n  if (!isInitial) {\n    contentOverlayEl.classList.add('show');\n  }\n\n  const modalEl = document.querySelector('.swal-modal-example');\n\n  modalEl.dataset.type = className;\n\n  const contentEls = document.querySelectorAll('.example-content');\n\n  setTimeout(() => {\n    contentEls.forEach(contentEl => {\n      if (contentEl.classList.contains(className)) {\n        contentEl.classList.add('show');\n      } else {\n        contentEl.classList.remove('show');\n      }\n    });\n\n    contentOverlayEl.classList.remove('show');\n  }, 500);\n}\n\nconst updateText = (useCase, nextUseCase) => {\n  const { text } = useCase;\n  const { text: nextText } = nextUseCase;\n\n  const rotatorEl = document.querySelector('.text-rotater');\n\n  if (!rotatorEl) return;\n\n  rotatorEl.classList.add('slide-up');\n\n  setTimeout(() => {\n    rotatorEl.innerHTML = `\n      <span>${text}</span>\n      <span>${nextText}</span>\n    `;\n    rotatorEl.classList.remove('slide-up');\n  }, 2000);\n\n}\n\nconst getNextIndex = () => {\n  if (useCases[currentIndex + 1]) {\n    return currentIndex + 1;\n  } else {\n    return 0;\n  }\n}\n\nexport default initRotater();\n\n"
  },
  {
    "path": "docs-src/docs/index.md",
    "content": "<!--\nlayout: docs\n-->\n\n# Configuration\n\n- ### `text`\n\n  **Type:** `string`\n\n  **Default:** `\"\"` (*empty string*)\n\n  **Description:**\n\n  The modal's text. It can either be added as a configuration under the key `text` (as in the example below), or passed as the first and only parameter (e.g. `swal(\"Hello world!\")`), or the second one if you have multiple string parameters (e.g. `swal(\"A title\", \"Hello world!\")`).\n\n  **Example:**\n  ```js\n  swal({\n    text: \"Hello world!\",\n  });\n  ```\n  <preview-button></preview-button>\n\n\n- ### `title`\n\n  **Type:** `string`\n\n  **Default:** `\"\"` (*empty string*)\n\n  **Description:**\n\n  The title of the modal. It can either be added as a configuration under the key `title` (as in the example below), or passed as the first string parameter – as long as it's not the only one – of the `swal` function (e.g. `swal(\"Here's a title!\", \"Here's some text\")`).\n\n  **Example:**\n  ```js\n  swal({\n    title: \"Here's a title!\",\n  });\n  ```\n  <preview-button></preview-button>\n\n\n- ### `icon`\n\n  **Type:** `string`\n\n  **Default:** `\"\"` (*empty string*)\n\n  **Description:**\n\n  An icon for the modal. SweetAlert comes with 4 built-in icons that you can use:\n\n  - `\"warning\"`\n  - `\"error\"`\n  - `\"success\"`\n  - `\"info\"`\n\n  It can either be added as a configuration under the key `icon`, or passed as the third string parameter of the `swal` function (e.g. `swal(\"Title\", \"Text\", \"success\")`).\n\n  **Example:**\n  ```js\n  swal({\n    icon: \"success\",\n  });\n  ```\n  <preview-button></preview-button>\n\n\n- ### `button`\n\n  **Type:** `string|boolean|ButtonOptions`\n\n  **Default:**\n  ```js\n  {\n    text: \"OK\",\n    value: true,\n    visible: true,\n    className: \"\",\n    closeModal: true,\n  }\n  ```\n\n  **Description:**\n\n  The confirm button that's shown by default. You can change its text by setting `button` to a string, or you can tweak more setting by passing a `ButtonOptions` object. Setting it to `false` hides the button.\n\n  **Examples:**\n  ```js\n  swal({\n    button: \"Coolio\",\n  });\n  ```\n  <preview-button></preview-button>\n\n  ```js\n  swal({\n    button: {\n      text: \"Hey ho!\",\n    },\n  });\n  ```\n  <preview-button></preview-button>\n\n  ```js\n  swal(\"Hello world!\", {\n    button: false,\n  });\n  ```\n  <preview-button></preview-button>\n\n\n- ### `buttons`\n\n  **Type:** `boolean|string[]|ButtonOptions[]|ButtonList`\n\n  **Default:**\n  ```js\n  {\n    cancel: {\n      text: \"Cancel\",\n      value: null,\n      visible: false,\n      className: \"\",\n      closeModal: true,\n    },\n    confirm: {\n      text: \"OK\",\n      value: true,\n      visible: true,\n      className: \"\",\n      closeModal: true\n    }\n  }\n  ```\n\n  **Description:**\n\n  Specify the exact amount of buttons and their behaviour. If you use an array, you can set the elements as strings (to set only the text), a list of `ButtonOptions`, or a combination of both. You can also set one of the elements to `true` to simply get the default options.\n\n  If you want more than just the predefined cancel and confirm buttons, you need to specify a `ButtonList` object, with keys (the button's namespace) pointing to `ButtonOptions`.\n\n  You can also specify `false` to hide all buttons (same behaviour as the `button` option).\n\n  **Examples:**\n\n  ```js\n  swal({\n    buttons: [\"Stop\", \"Do it!\"],\n  });\n  ```\n  <preview-button></preview-button>\n\n  ```js\n  swal({\n    buttons: [true, \"Do it!\"],\n  });\n  ```\n  <preview-button></preview-button>\n\n  ```js\n  swal(\"Hello world!\", {\n    buttons: false,\n  });\n  ```\n  <preview-button></preview-button>\n\n  ```js\n  swal({\n    buttons: {\n      cancel: true,\n      confirm: true,\n    },\n  });\n  ```\n  <preview-button></preview-button>\n\n  ```js\n  swal({\n    buttons: {\n      cancel: true,\n      confirm: \"Confirm\",\n      roll: {\n        text: \"Do a barrell roll!\",\n        value: \"roll\",\n      },\n    },\n  });\n  ```\n  <preview-button></preview-button>\n\n\n- ### `content`\n\n  **Type:** `Node|string`\n\n  **Default:** `null`\n\n  **Description:**\n\n  For custom content, beyond just text and icons.\n\n  **Examples:**\n\n  ```js\n  swal({\n    content: \"input\",\n  });\n  ```\n  <preview-button></preview-button>\n\n  ```js\n  swal({\n    content: {\n      element: \"input\",\n      attributes: {\n        placeholder: \"Type your password\",\n        type: \"password\",\n      },\n    },\n  });\n  ```\n  <preview-button></preview-button>\n\n  ```js\n  var slider = document.createElement(\"input\");\n  slider.type = \"range\";\n\n  swal({\n    content: slider,\n  });\n  ```\n  <preview-button></preview-button>\n\n\n- ### `className`\n\n  **Type:** `string`\n\n  **Default**: `\"\"` (*empty string*)\n\n  **Description**:\n\n  Add a custom class to the SweetAlert modal. This is handy for changing the appearance.\n\n  **Example**:\n\n  ```js\n    swal(\"Hello world!\", {\n      className: \"red-bg\",\n    });\n  ```\n  <preview-button></preview-button>\n\n- ### `closeOnClickOutside`\n\n  **Type:** `boolean`\n\n  **Default:** `true`\n\n  **Description:**\n\n  Decide whether the user should be able to dismiss the modal by clicking outside of it, or not.\n\n  **Example:**\n\n  ```js\n  swal({\n    closeOnClickOutside: false,\n  });\n  ```\n  <preview-button></preview-button>\n\n- ### `closeOnEsc`\n\n  **Type:** `boolean`\n\n  **Default:** `true`\n\n  **Description:**\n\n  Decide whether the user should be able to dismiss the modal by hitting the <kbd>ESC</kbd> key, or not.\n\n  **Example:**\n\n  ```js\n  swal({\n    closeOnEsc: false,\n  });\n  ```\n  <preview-button></preview-button>\n\n\n- ### `dangerMode`\n\n  **Type:** `boolean`\n\n  **Default:** `false`\n\n  **Description:**\n\n  If set to `true`, the confirm button turns red and the default focus is set on the cancel button instead. This is handy when showing warning modals where the confirm action is dangerous (e.g. deleting an item).\n\n  **Example:**\n\n  ```js\n  swal(\"Are you sure?\", {\n    dangerMode: true,\n    buttons: true,\n  });\n  ```\n  <preview-button></preview-button>\n\n\n- ### `timer`\n\n  **Type:** `number`\n\n  **Default:** `null`\n\n  **Description:**\n\n  Closes the modal after a certain amount of time (specified in ms). Useful to combine with `buttons: false`.\n\n  **Example:**\n\n  ```js\n  swal(\"This modal will disappear soon!\", {\n    buttons: false,\n    timer: 3000,\n  });\n  ```\n  <preview-button></preview-button>\n\n\n# Methods\n\n| Name | Description | Example |\n| ---- | ----------- | ------- |\n| `close` | Closes the currently open SweetAlert, as if you pressed the cancel button. | `swal.close()` |\n| `getState` | Get the state of the current SweetAlert modal. | `swal.getState()` |\n| `setActionValue` | Change the promised value of one of the modal's buttons. You can either pass in just a string (by default it changes the value of the confirm button), or an object. | `swal.setActionValue({ confirm: 'Text from input' })` |\n| `stopLoading` | Removes all loading states on the modal's buttons. Use it in combination with the button option `closeModal: false`. | `swal.stopLoading()`\n\n\n# Theming\n\n- ### `swal-overlay`\n\n  **Example:**\n\n  ```css\n  .swal-overlay {\n    background-color: rgba(43, 165, 137, 0.45);\n  }\n  ```\n  <preview-button></preview-button>\n\n- ### `swal-modal`\n\n  **Example:**\n\n  ```css\n  .swal-modal {\n    background-color: rgba(63,255,106,0.69);\n    border: 3px solid white;\n  }\n  ```\n  <preview-button></preview-button>\n\n- ### `swal-title`\n\n  **Example:**\n\n  ```css\n  .swal-title {\n    margin: 0px;\n    font-size: 16px;\n    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.21);\n    margin-bottom: 28px;\n  }\n  ```\n  <preview-button></preview-button>\n\n- ### `swal-text`\n\n  **Example:**\n\n  ```css\n  .swal-text {\n    background-color: #FEFAE3;\n    padding: 17px;\n    border: 1px solid #F0E1A1;\n    display: block;\n    margin: 22px;\n    text-align: center;\n    color: #61534e;\n  }\n  ```\n  <preview-button></preview-button>\n\n- ### `swal-footer`\n\n  **Example:**\n\n  ```css\n  .swal-footer {\n    background-color: rgb(245, 248, 250);\n    margin-top: 32px;\n    border-top: 1px solid #E9EEF1;\n    overflow: hidden;\n  }\n  ```\n  <preview-button></preview-button>\n\n- ### `swal-button`\n\n  **Description:**\n\n  The modal's button(s). It has an extra class that changes depending on the button's type, in the format `swal-button--{type}`. The extra class for the confirm button for example is `swal-button--confirm`.\n\n  **Example:**\n\n  ```css\n  .swal-button {\n    padding: 7px 19px;\n    border-radius: 2px;\n    background-color: #4962B3;\n    font-size: 12px;\n    border: 1px solid #3e549a;\n    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);\n  }\n  ```\n  <preview-button></preview-button>\n"
  },
  {
    "path": "docs-src/guides/index.md",
    "content": "<!--\nlayout: guides\n-->\n\n# Installation\n\n## NPM/Yarn\n\nNPM combined with a tool like [Browserify](http://browserify.org) or [Webpack](https://webpack.js.org) is the recommended method of installing SweetAlert.\n\n```bash\nnpm install sweetalert --save\n```\n\nThen, simply import it into your application:\n\n```javascript\nimport swal from 'sweetalert';\n```\n\n## CDN\n\nYou can also find SweetAlert on [unpkg](https://unpkg.com/sweetalert) and [jsDelivr](https://cdn.jsdelivr.net/npm/sweetalert) and use the global `swal` variable.\n\n```html\n<script src=\"https://unpkg.com/sweetalert/dist/sweetalert.min.js\"></script>\n```\n\n# Getting started\n\n## Showing an alert\n\nAfter importing the files into your application, you can call the `swal` function (make sure it's called *after* the DOM has loaded!)\n\n```js\nswal(\"Hello world!\");\n```\n<preview-button></preview-button>\n\nIf you pass two arguments, the first one will be the modal's title, and the second one its text.\n\n```js\nswal(\"Here's the title!\", \"...and here's the text!\");\n```\n<preview-button></preview-button>\n\nAnd with a third argument, you can add an icon to your alert! There are 4 predefined ones: `\"warning\"`, `\"error\"`, `\"success\"` and `\"info\"`.\n\n```js\nswal(\"Good job!\", \"You clicked the button!\", \"success\");\n```\n<preview-button></preview-button>\n\n## Using options\n\nThe last example can also be rewritten using an object as the only parameter:\n\n```js\nswal({\n  title: \"Good job!\",\n  text: \"You clicked the button!\",\n  icon: \"success\",\n});\n```\n\nWith this format, we can specify many more options to customize our alert. For example we can change the text on the confirm button to `\"Aww yiss!\"`:\n\n```js\nswal({\n  title: \"Good job!\",\n  text: \"You clicked the button!\",\n  icon: \"success\",\n  button: \"Aww yiss!\",\n});\n```\n<preview-button></preview-button>\n\nYou can even combine the first syntax with the second one, which might save you some typing:\n\n```js\nswal(\"Good job!\", \"You clicked the button!\", \"success\", {\n  button: \"Aww yiss!\",\n});\n```\n\nFor a full list of all the available options, check out the [API docs](/docs)!\n\n## Using promises\n\nSweetAlert uses [promises](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Promise) to keep track of how the user interacts with the alert.\n\nIf the user clicks the confirm button, the promise resolves to `true`. If the alert is dismissed (by clicking outside of it), the promise resolves to `null`.\n\n```js\nswal(\"Click on either the button or outside the modal.\")\n.then((value) => {\n  swal(`The returned value is: ${value}`);\n});\n```\n<preview-button></preview-button>\n\nThis comes in handy if you want to warn the user before they perform a dangerous action. We can make our alert even better by setting some more options:\n- `icon` can be set to the predefined `\"warning\"` to show a nice warning icon.\n- By setting `buttons` (plural) to `true`, SweetAlert will show a cancel button in addition to the default confirm button.\n- By setting `dangerMode` to `true`, the focus will automatically be set on the cancel button instead of the confirm button, and the confirm button will be red instead of blue to emphasize the dangerous action.\n\n```js\nswal({\n  title: \"Are you sure?\",\n  text: \"Once deleted, you will not be able to recover this imaginary file!\",\n  icon: \"warning\",\n  buttons: true,\n  dangerMode: true,\n})\n.then((willDelete) => {\n  if (willDelete) {\n    swal(\"Poof! Your imaginary file has been deleted!\", {\n      icon: \"success\",\n    });\n  } else {\n    swal(\"Your imaginary file is safe!\");\n  }\n});\n```\n<preview-button></preview-button>\n\n\n# Advanced examples\n\n## Customizing buttons\n\nWe've already seen how we can set the text on the confirm button using `button: \"Aww yiss!\"`.\n\nIf we also want to show and customize the *cancel button*, we can instead set `buttons` to an *array of strings*, where the first value is the cancel button's text and the second one is the confirm button's text:\n\n```js\nswal(\"Are you sure you want to do this?\", {\n  buttons: [\"Oh noez!\", \"Aww yiss!\"],\n});\n```\n<preview-button></preview-button>\n\nIf you want one of the buttons to just have their default text, you can set the value to `true` instead of a string:\n\n```js\nswal(\"Are you sure you want to do this?\", {\n  buttons: [\"Oh noez!\", true],\n});\n```\n<preview-button></preview-button>\n\nSo what if you need *more* than just a cancel and a confirm button? Don't worry, SweetAlert's got you covered!\n\nBy specifying an object for `buttons`, you can set exactly as many buttons as you like, and specify the value that they resolve to when they're clicked!\n\nIn the example below, we set 3 buttons:\n- `cancel`, which by default resolves to `null` and has a custom `\"Run away!\"` text.\n- `catch`, which will resolve to the `value` we've specified (`\"catch\"`) and has the custom text `\"Throw Pokéball!\"`.\n- `defeat`. Here, we specify `true` to let SweetAlert set some default configurations for the button. In this case, it will set the `text` to `\"Defeat\"` (capitalized) and the resolved value to `defeat`. Had we set the `cancel` button to `true`, it would still resolve to `null` as expected.\n\n```js\nswal(\"A wild Pikachu appeared! What do you want to do?\", {\n  buttons: {\n    cancel: \"Run away!\",\n    catch: {\n      text: \"Throw Pokéball!\",\n      value: \"catch\",\n    },\n    defeat: true,\n  },\n})\n.then((value) => {\n  switch (value) {\n\n    case \"defeat\":\n      swal(\"Pikachu fainted! You gained 500 XP!\");\n      break;\n\n    case \"catch\":\n      swal(\"Gotcha!\", \"Pikachu was caught!\", \"success\");\n      break;\n\n    default:\n      swal(\"Got away safely!\");\n  }\n});\n```\n<preview-button></preview-button>\n\nYou can check out all the available button options in the [docs](/docs#buttons).\n\n## AJAX requests\n\nSince SweetAlert is promise-based, it makes sense to pair it with AJAX functions that are also promise-based. Below is an example of using `fetch` to search for artists on the iTunes API. Note that we're using `content: \"input\"` in order to both show an input-field *and* retrieve its value when the user clicks the confirm button:\n\n```js\nswal({\n  text: 'Search for a movie. e.g. \"La La Land\".',\n  content: \"input\",\n  button: {\n    text: \"Search!\",\n    closeModal: false,\n  },\n})\n.then(name => {\n  if (!name) throw null;\n\n  return fetch(`https://itunes.apple.com/search?term=${name}&entity=movie`);\n})\n.then(results => {\n  return results.json();\n})\n.then(json => {\n  const movie = json.results[0];\n\n  if (!movie) {\n    return swal(\"No movie was found!\");\n  }\n\n  const name = movie.trackName;\n  const imageURL = movie.artworkUrl100;\n\n  swal({\n    title: \"Top result:\",\n    text: name,\n    icon: imageURL,\n  });\n})\n.catch(err => {\n  if (err) {\n    swal(\"Oh noes!\", \"The AJAX request failed!\", \"error\");\n  } else {\n    swal.stopLoading();\n    swal.close();\n  }\n});\n```\n<preview-button></preview-button>\n\n## Using DOM nodes as content\n\nSometimes, you might run into a scenario where it would be nice to use the out-of-the box functionality that SweetAlert offers, but with some custom UI that goes beyond just styling buttons and text. For that, there's the `content` option.\n\nIn the previous example, we saw how we could set `content` to `\"input\"` to get an `<input />` element in our modal that changes the resolved value of the confirm button based on its value.\n`\"input\"` is a predefined option that exists for convenience, but you can also set `content` to any DOM node!\n\nLet's see how we can recreate the functionality of the following modal...\n\n```js\nswal(\"Write something here:\", {\n  content: \"input\",\n})\n.then((value) => {\n  swal(`You typed: ${value}`);\n});\n```\n<preview-button></preview-button>\n\n...using a custom DOM node!\n\nWe're going to use [React](https://facebook.github.io/react) here, since it's a well-known UI library that can help us understand how to create more complex SweetAlert interfaces, but you can use any library you want, as long as you can extract a DOM node from it!\n\n```js\nimport React, { Component } from 'react';\nimport ReactDOM from 'react-dom';\n\nconst DEFAULT_INPUT_TEXT = \"\";\n\nclass MyInput extends Component {\n  constructor(props) {\n    super(props);\n\n    this.state = {\n      text: DEFAULT_INPUT_TEXT,\n    };\n  }\n\n  changeText(e) {\n    let text = e.target.value;\n\n    this.setState({\n      text,\n    });\n\n    /*\n     * This will update the value that the confirm\n     * button resolves to:\n     */\n    swal.setActionValue(text);\n  }\n\n  render() {\n    return (\n      <input\n        value={this.state.text}\n        onChange={this.changeText.bind(this)}\n      />\n    )\n  }\n}\n\n// We want to retrieve MyInput as a pure DOM node:\nlet wrapper = document.createElement('div');\nReactDOM.render(<MyInput />, wrapper);\nlet el = wrapper.firstChild;\n\nswal({\n  text: \"Write something here:\",\n  content: el,\n  buttons: {\n    confirm: {\n      /*\n       * We need to initialize the value of the button to\n       * an empty string instead of \"true\":\n       */\n      value: DEFAULT_INPUT_TEXT,\n    },\n  },\n})\n.then((value) => {\n  swal(`You typed: ${value}`);\n});\n```\n<preview-button data-function=\"reactExample\"></preview-button>\n\nThis might look very complex at first, but it's actually pretty simple. All we're doing is creating an input tag as a React component. We then extract its DOM node and pass it into under the `swal` function's `content` option to render it as an unstyled element.\n\nThe only code that's specific to SweetAlert is the `swal.setActionValue()` and the `swal()` call at the end. The rest is just basic React and JavaScript.\n\n<figure align=\"center\">\n  <img src=\"/assets/images/modal-fb-example@2x.png\" alt=\"Facebook modal\" width=\"400\" />\n  <figcaption>\n    Using this technique, we can create modals with more interactive UIs, such as this one from Facebook.\n  </figcaption>\n</figure>\n\n\n# Using with libraries\n\nWhile the method documented above for creating more advanced modal designs works, it gets quite tedious to manually create nested DOM nodes. That's why we've also made it easy to integrate your favourite template library into SweetAlert, using the [SweetAlert Transformer](https://github.com/sweetalert/transformer).\n\n## Using React\n\nIn order to use SweetAlert with JSX syntax, you need to install [SweetAlert with React](https://www.npmjs.com/package/@sweetalert/with-react). Note that you need to have both `sweetalert` and `@sweetalert/with-react` as dependencies in your `package.json`.\n\nAfter that, it's easy. Whenever you want to use JSX in your SweetAlert modal, simply import swal from `@sweetalert/with-react` instead of from `sweetalert`.\n\n```js\nimport React from 'react'\nimport swal from '@sweetalert/with-react'\n\nswal(\n  <div>\n    <h1>Hello world!</h1>\n    <p>\n      This is now rendered with JSX!\n    </p>\n  </div>\n)\n```\n<preview-button data-function=\"withReactExample\"></preview-button>\n\nThe JSX syntax replaces the modal's `content` option, so you can still use all of SweetAlert's other features. Here's how you could implement that Facebook modal that we saw earlier:\n\n```js\nimport React from 'react'\nimport swal from '@sweetalert/with-react'\n\nconst onPick = value => {\n  swal(\"Thanks for your rating!\", `You rated us ${value}/3`, \"success\")\n}\n\nconst MoodButton = ({ rating, onClick }) => (\n  <button \n    data-rating={rating}\n    className=\"mood-btn\" \n    onClick={() => onClick(rating)}\n  />\n)\n\nswal({\n  text: \"How was your experience getting help with this issue?\",\n  buttons: {\n    cancel: \"Close\",\n  },\n  content: (\n    <div>\n      <MoodButton \n        rating={1} \n        onClick={onPick}\n      />\n      <MoodButton \n        rating={2} \n        onClick={onPick}\n      />\n      <MoodButton \n        rating={3} \n        onClick={onPick}\n      />\n    </div>\n  )\n})\n```\n\n<preview-button data-function=\"withReactOptionsExample\"></preview-button>\n\n\n# Upgrading from 1.X\n\nSweetAlert 2.0 introduces some important breaking changes in order to make the library easier to use and more flexible.\n\nThe most important change is that callback functions have been deprecated in favour of [promises](#using-promises), and that you no longer have to import any external CSS file (since the styles are now bundled in the .js-file).\n\nBelow are some additional deprecated options along with their replacements:\n\n- When using a single string parameter (e.g. `swal(\"Hello world!\")`), that parameter will be the modal's `text` instead of its `title`.\n- `type` and `imageUrl` have been replaced with a single `icon` option. If you're using the shorthand version (`swal(\"Hi\", \"Hello world\", \"warning\")`) you don't have to change anything.\n- `customClass` is now `className`.\n- `imageSize` is no longer used. Instead, you should specify dimension restrictions in CSS if necessary. If you have a special use case, you can give your modal a custom class.\n- `showCancelButton` and `showConfirmButton` are no longer needed. Instead, you can set `buttons: true` to show both buttons, or `buttons: false` to hide all buttons. By default, only the confirm button is shown.\n- `confirmButtonText` and `cancelButtonText` are no longer needed. Instead, you can set `button: \"foo\"` to set the text on the confirm button to \"foo\", or `buttons: [\"foo\", \"bar\"]` to set the text on the cancel button to \"foo\" and the text on the confirm button to \"bar\".\n- `confirmButtonColor` is no longer used. Instead, you should specify all stylistic changes through CSS. As a useful shorthand, you can set `dangerMode: true` to make the confirm button red. Otherwise, you can specify a class in the [button object](/docs#buttons).\n- `closeOnConfirm` and `closeOnCancel` are no longer used. Instead, you can set the `closeModal` parameter in the [button options](/docs#buttons).\n- `showLoaderOnConfirm` is no longer necessary. Your button will automatically show a loding animation when its `closeModal` parameter is set to `false`.\n- `animation` has been deprecated. All stylistic changes can instead be applied through CSS and a custom modal class.\n- `type: \"input\"`, `inputType`, `inputValue` and `inputPlaceholder` have all been replaced with the `content` option. You can either specify `content: \"input\"` to get the default options, or you can customize it further using the [content object](/docs#content).\n- `html` is no longer used. Instead use the [content object](/docs#content).\n- `allowEscapeKey` is now `closeOnEsc` for clarity.\n- `allowClickOutside` is now `closeOnClickOutside` for clarity.\n"
  },
  {
    "path": "docs-src/index.hbs",
    "content": "<svg width=\"0\" height=\"0\" class=\"hidden\">\n  <defs>\n    <clipPath \n      id=\"top-transition-clip-shape\" \n      clipPathUnits=\"objectBoundingBox\"\n    >\n      <polygon \n        points=\"0 0, 1 0, 1 1, 0 0.8\" \n      />\n    </clipPath>\n\n    <clipPath \n      id=\"customization-transition-clip-shape\" \n      clipPathUnits=\"objectBoundingBox\"\n    >\n      <polygon \n        points=\"0 0.05, 1 0, 1 1, 0 1\"\n      />\n    </clipPath>\n  </defs>\n</svg>\n\n<div class=\"landing-top\">\n\n  <div class=\"bg\"></div>\n\n  <div class=\"page-container\">\n\n    <div class=\"desc\">\n      <h2>\n        A beautiful replacement for \n        <span class=\"text-rotater\">\n          success messages\n        </span>\n      </h2>\n\n      <div class=\"install\">\n        <div class=\"buttons\">\n          <span class=\"button\"></span>\n          <span class=\"button\"></span>\n          <span class=\"button\"></span>\n        </div>\n\n        <div class=\"command\">\n          npm install sweetalert\n        </div>\n      </div>\n\n    </div>\n\n\n    <div class=\"swal-modal-example\" data-type=\"success\">\n\n      <div class=\"example-content success show\">\n        <div class=\"swal-icon swal-icon--success\">\n          <div class=\"swal-icon--success__line swal-icon--success__line--long\"></div> \n          <div class=\"swal-icon--success__line swal-icon--success__line--tip\"></div> \n\n          <div class=\"swal-icon--success__ring\"></div> \n          <div class=\"swal-icon--success__hide-corners\"></div> \n        </div>\n\n        <h3 class=\"swal-title\">\n          You've arrived!\n        </h3>\n        <p class=\"swal-text\">\n          How lovely. Let me take your coat.\n        </p>\n      </div>\n\n      <div class=\"example-content error\">\n\n        <div class=\"swal-icon swal-icon--error\">\n          <div class=\"swal-icon--error__x-mark\">\n            <span class=\"swal-icon--error__line swal-icon--error__line--left\"></span>\n            <span class=\"swal-icon--error__line swal-icon--error__line--right\"></span>\n          </div>\n        </div>\n\n        <h3 class=\"swal-title\">\n          Oops!\n        </h3>\n        <p class=\"swal-text\">\n          Seems like something went wrong!\n        </p>\n      </div>\n\n      <div class=\"example-content warning\">\n        <div class=\"swal-icon swal-icon--warning\">\n          <span class=\"swal-icon--warning__body\">\n            <span class=\"swal-icon--warning__dot\"></span>\n          </span>\n        </div>\n\n        <h3 class=\"swal-title\">\n          Delete important stuff?\n        </h3>\n        <p class=\"swal-text\">\n          That doesn't seem like a good idea. Are you sure you want to do that?\n        </p>\n\n        <div class=\"swal-footer\">\n          <div class=\"swal-button-container\">\n            <button class=\"swal-button swal-button--cancel\">\n              Cancel\n            </button>\n          </div>\n\n          <div class=\"swal-button-container\">\n            <button class=\"swal-button swal-button--confirm swal-button--danger\">\n              Yes, delete it!\n            </button>\n          </div>\n        </div>\n      </div>\n\n      <div class=\"modal-content-overlay\"></div>\n\n    </div>\n\n  </div>\n\n</div>\n\n<div class=\"comparison-container\">\n\n  <h3>\n    SweetAlert makes popup messages easy and pretty.\n  </h3>\n\n  <div class=\"page-container\">\n\n    <div class=\"code-container\">\n      <h5>\n        Normal alert\n      </h5>\n\n      <div class=\"highlight js\">\n        <div class=\"editor\">\n          <div class=\"line\">\n            <span class=\"name function js\">alert</span>\n            <span class=\"bracket js\">(</span>\n            <span class=\"string\">\"Oops, something went wrong!\"</span>\n            <span class=\"bracket js\">)</span>\n          </div>\n        </div>\n      </div>\n\n      <button\n        class=\"preview\" \n        onclick=\"alert('Oops, something went wrong!')\"\n      >\n        Preview\n      </button>\n    </div>\n\n    <div class=\"versus\"></div>\n\n    <div class=\"code-container\">\n      <h5 class=\"swal-logo\">\n        SweetAlert\n      </h5>\n\n      <div class=\"highlight js\">\n        <div class=\"editor\">\n          <div class=\"line\">\n            <span class=\"name function js\">swal</span>\n            <span class=\"bracket js\">(</span>\n            <span class=\"string\">\"Oops\"</span>\n            <span class=\"comma\">,</span>\n            <span class=\"string\">&nbsp;\"Something went wrong!\"</span>\n            <span class=\"comma\">,</span>\n            <span class=\"string\">&nbsp;\"error\"</span>\n            <span class=\"bracket js\">)</span>\n          </div>\n        </div>\n      </div>\n\n      <button\n        class=\"preview\" \n        onclick=\"swal('Oops', 'Something went wrong!', 'error')\"\n      >\n        Preview\n      </button>\n    </div>\n\n  </div>\n\n  <p class=\"remark\">\n    Pretty cool, huh?\n  </p>\n\n  <a class=\"get-started-button\" href=\"/guides\">\n    Get started!\n  </a>\n\n</div>\n\n<div class=\"customize-container\">\n\n  <h3>\n    You can customize SweetAlert to fit your needs\n  </h3>\n\n  <div class=\"example-modals\"></div>\n\n  <a class=\"view-api-button\" href=\"/docs\">\n    View docs\n  </a>\n\n</div>\n\n"
  },
  {
    "path": "docs-src/layout-docs.hbs",
    "content": "<!--\nlayout: default\n-->\n\n<div class=\"page-container doc-container\">\n\n  <nav class=\"side-menu\">\n    <h6 class=\"title\">\n      Docs\n    </h6>\n\n    <a href=\"#configuration\">\n      Configuration\n    </a>\n\n    <a href=\"#methods\">\n      Methods\n    </a>\n\n    <a href=\"#theming\">\n      Theming\n    </a>\n\n  </nav>\n\n  <div class=\"page-content api\">\n    {{{body}}}\n  </div>\n\n</div>\n"
  },
  {
    "path": "docs-src/layout-guides.hbs",
    "content": "<!--\nlayout: default\n-->\n\n<div class=\"page-container doc-container\">\n\n  <nav class=\"side-menu\">\n    <h6 class=\"title\">\n      Guides\n    </h6>\n\n    <a href=\"#installation\">\n      Installation\n    </a>\n\n    <a href=\"#getting-started\">\n      Getting started\n    </a>\n\n    <a href=\"#advanced-examples\">\n      Advanced examples\n    </a>\n\n    <a href=\"#using-with-libraries\">\n      Using with libraries\n    </a>\n\n    <a href=\"#upgrading-from-1x\">\n      Upgrading from 1.X\n    </a>\n  </nav>\n\n  <div class=\"page-content\">\n    {{{body}}}\n  </div>\n\n</div>\n"
  },
  {
    "path": "docs-src/layout.hbs",
    "content": "<!doctype html>\n\n<html>\n\n  <head>\n    <meta charset=\"utf-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0\" />\n    <title>SweetAlert</title>\n    <meta name=\"description\" content=\"A beautiful replacement for JavaScript's 'alert'\" />\n\n    <link rel=\"stylesheet\" href=\"/assets/css/app.css\" />\n\n    <link href=\"https://fonts.googleapis.com/css?family=Lato:300,400,400i,700,700i\" rel=\"stylesheet\">\n    <link href=\"https://fonts.googleapis.com/css?family=Inconsolata\" rel=\"stylesheet\">\n    <script src=\"/assets/sweetalert/sweetalert.min.js\"></script>\n  </head>\n\n  <body>\n\n    <header class=\"global-header\">\n      <div class=\"page-container\">\n\n        <a \n          href=\"/\"\n          class=\"logo\">\n        </a>\n\n        <nav>\n          <ul>\n            <li>\n              <a href=\"/guides\">Guides</a>\n            </li>\n\n            <li>\n              <a href=\"/docs\">Docs</a>\n            </li>\n\n            <li>\n              <a href=\"https://opencollective.com/SweetAlert#backers\" target=\"_blank\">Donate</a>\n            </li>\n\n            <li>\n              <a \n                href=\"https://github.com/t4t5/sweetalert\" \n                class=\"github-icon\"\n              ></a>\n            </li>\n          </ul>\n        </nav>\n\n      </div>\n    </header>\n\n    {{{body}}}\n\n    <div id=\"app\"></div>\n\n    <footer>\n      <p>\n        Hand-crafted with <span class=\"love-icon\"></span> by\n        <a href=\"http://tristanedwards.me\">\n          Tristan Edwards\n        </a>\n        + \n        <a href=\"https://github.com/t4t5/sweetalert/graphs/contributors\">\n          contributors\n        </a>\n      </p>\n    </footer>\n\n    <script src=\"/assets/js/index.js\"></script>\n  </body>\n\n</html>\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"sweetalert\",\n  \"version\": \"2.1.2\",\n  \"description\": \"A beautiful replacement for JavaScript's \\\"alert\\\"\",\n  \"main\": \"dist/sweetalert.min.js\",\n  \"types\": \"typings/sweetalert.d.ts\",\n  \"scripts\": {\n    \"build\": \"node_modules/.bin/webpack -p\",\n    \"buildtest\": \"npm run build && jest\",\n    \"test\": \"node_modules/.bin/jest\",\n    \"builddocs\": \"node_modules/jus/cli.js build docs-src docs\",\n    \"docs\": \"npm run build && node_modules/jus/cli.js serve docs-src\",\n    \"prepare\": \"npm run build && npm run builddocs\",\n    \"prepublishOnly\": \"npm run build\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/t4t5/sweetalert\"\n  },\n  \"keywords\": [\n    \"sweetalert\",\n    \"alert\",\n    \"modal\",\n    \"popup\"\n  ],\n  \"author\": \"Tristan Edwards <tristan.edwards@me.com> (https://tristanedwards.me)\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/t4t5/sweetalert/issues\"\n  },\n  \"homepage\": \"https://sweetalert.js.org/\",\n  \"devDependencies\": {\n    \"@types/jest\": \"19.2.3\",\n    \"autoprefixer\": \"6.7.7\",\n    \"babel-core\": \"6.24.1\",\n    \"babel-loader\": \"6.4.1\",\n    \"babel-plugin-transform-es2015-modules-commonjs\": \"6.24.1\",\n    \"babel-plugin-transform-runtime\": \"6.23.0\",\n    \"babel-preset-env\": \"1.4.0\",\n    \"babel-preset-es2015\": \"6.24.1\",\n    \"babel-preset-react\": \"6.24.1\",\n    \"babel-standalone\": \"^6.26.0\",\n    \"babelify\": \"^6.0.2\",\n    \"browserify\": \"^9.0.8\",\n    \"copy-webpack-plugin\": \"^4.0.1\",\n    \"css-loader\": \"0.28.7\",\n    \"dts-bundle\": \"0.7.3\",\n    \"exports-loader\": \"0.6.4\",\n    \"expose-loader\": \"0.7.3\",\n    \"glob\": \"^5.0.3\",\n    \"jest\": \"19.0.2\",\n    \"jquery\": \"3.2.1\",\n    \"jus\": \"0.24.1\",\n    \"nodelist-foreach-polyfill\": \"^1.2.0\",\n    \"opencollective\": \"^1.0.3\",\n    \"path\": \"^0.11.14\",\n    \"postcss-color-function\": \"3.0.0\",\n    \"postcss-custom-properties\": \"5.0.2\",\n    \"postcss-easy-import\": \"2.0.0\",\n    \"postcss-loader\": \"1.3.3\",\n    \"postcss-nesting\": \"2.3.1\",\n    \"react\": \"15.5.4\",\n    \"react-dom\": \"15.5.4\",\n    \"source-map-loader\": \"0.2.1\",\n    \"sweetalert\": \"file:./\",\n    \"@sweetalert/with-react\": \"^0.1.1\",\n    \"style-loader\": \"0.18.2\",\n    \"ts-jest\": \"19.0.14\",\n    \"ts-loader\": \"2.0.3\",\n    \"tslint\": \"5.1.0\",\n    \"tslint-loader\": \"3.5.2\",\n    \"typescript\": \"2.2.2\",\n    \"vinyl-buffer\": \"^1.0.0\",\n    \"vinyl-source-stream\": \"^1.1.0\",\n    \"webpack\": \"3.5.5\",\n    \"webpack-bundle-analyzer\": \"2.9.0\",\n    \"webpack-dev-server\": \"2.4.2\",\n    \"webpack-merge\": \"4.1.0\",\n    \"whatwg-fetch\": \"^2.0.3\"\n  },\n  \"jest\": {\n    \"verbose\": true,\n    \"transform\": {\n      \"^.+\\\\.tsx?$\": \"<rootDir>/node_modules/ts-jest/preprocessor.js\"\n    },\n    \"testRegex\": \"(/__tests__/.*|\\\\.(test|spec))\\\\.(ts|tsx|js)$\",\n    \"moduleFileExtensions\": [\n      \"ts\",\n      \"tsx\",\n      \"js\",\n      \"json\"\n    ]\n  },\n  \"files\": [\n    \"dist\",\n    \"LICENSE.md\",\n    \"README.md\",\n    \"typings\"\n  ],\n  \"dependencies\": {\n    \"es6-object-assign\": \"^1.1.0\",\n    \"promise-polyfill\": \"^6.0.2\"\n  },\n  \"collective\": {\n    \"type\": \"opencollective\",\n    \"url\": \"https://opencollective.com/SweetAlert\"\n  }\n}\n"
  },
  {
    "path": "postcss.config.js",
    "content": "module.exports = {\n  map: true,\n  plugins: [\n    require('postcss-easy-import'),\n    require('postcss-nesting'),\n    require('postcss-custom-properties'),\n    require('postcss-color-function'),\n    require('autoprefixer'),\n  ]\n}\n"
  },
  {
    "path": "src/core.ts",
    "content": "/*\n * SweetAlert\n * 2014-2017 – Tristan Edwards\n * https://github.com/t4t5/sweetalert\n */\n\nimport init from './modules/init';\n\nimport {\n  openModal,\n  onAction,\n  getState,\n  stopLoading,\n} from './modules/actions';\n\nimport state, {\n  setActionValue,\n  ActionOptions,\n  SwalState,\n} from './modules/state';\n\nimport {\n  SwalOptions,\n  getOpts,\n  setDefaults,\n} from './modules/options';\n\nexport type SwalParams = (string|Partial<SwalOptions>)[];\n\nexport interface SweetAlert {\n  (...params: SwalParams): Promise<any>,\n  close? (namespace?: string): void,\n  getState? (): SwalState,\n  setActionValue? (opts: string|ActionOptions): void,\n  stopLoading? (): void,\n  setDefaults? (opts: object): void,\n};\n\nconst swal:SweetAlert = (...args) => {\n\n  // Prevent library to be run in Node env:\n  if (typeof window === 'undefined') return;\n\n  const opts: SwalOptions = getOpts(...args);\n\n  return new Promise<any>((resolve, reject) => {\n    state.promise = { resolve, reject };\n\n    init(opts);\n\n    // For fade animation to work:\n    setTimeout(() => {\n      openModal();\n    });\n\n  });\n};\n\nswal.close = onAction;\nswal.getState = getState;\nswal.setActionValue = setActionValue;\nswal.stopLoading = stopLoading;\nswal.setDefaults = setDefaults;\n\nexport default swal;\n"
  },
  {
    "path": "src/css/button-loader.css",
    "content": ".swal-button--loading {\n  color: transparent;\n\n  & ~ .swal-button__loader {\n    opacity: 1;\n  }\n}\n\n.swal-button__loader {\n  position: absolute;\n  height: auto;\n  width: 43px;\n  z-index: 2;\n  left: 50%;\n  top: 50%;\n  transform: translateX(-50%) translateY(-50%);\n  text-align: center;\n  pointer-events: none;\n  opacity: 0;\n\n  & div {\n    display: inline-block;\n    float: none;\n    vertical-align: baseline;\n    width: 9px;\n    height: 9px;\n    padding: 0;\n    border: none;\n    margin: 2px;\n    opacity: 0.4;\n    border-radius: 7px;\n    background-color: rgba(255, 255, 255, 0.9);\n    transition: background 0.2s;\n    animation: swal-loading-anim 1s infinite;\n\n    &:nth-child(3n+2) {\n      animation-delay: 0.15s;\n    }\n\n    &:nth-child(3n+3) {\n      animation-delay: 0.3s;\n    }\n  }\n}\n\n@keyframes swal-loading-anim {\n  0%   { opacity: 0.4; }\n  20%  { opacity: 0.4; }\n  50% { opacity: 1.0; }\n  100% { opacity: 0.4; }\n}\n\n"
  },
  {
    "path": "src/css/buttons.css",
    "content": ":root {\n  --swal-btn-confirm: #7cd1f9;\n  --swal-btn-confirm-hover: color(var(--swal-btn-confirm) shade(3%));\n  --swal-btn-confirm-active: color(var(--swal-btn-confirm) shade(10%));\n\n  --swal-btn-cancel: #EFEFEF;\n  --swal-btn-cancel-hover: color(var(--swal-btn-cancel) shade(3%));\n  --swal-btn-cancel-active: color(var(--swal-btn-cancel) shade(10%));\n\n  --swal-btn-danger: #e64942;\n  --swal-btn-danger-hover: color(var(--swal-btn-danger) shade(3%));\n  --swal-btn-danger-active: color(var(--swal-btn-danger) shade(10%));\n\n  --swal-focus-color: rgba(43, 114, 165, 0.3);\n}\n\n.swal-footer {\n  text-align: right;\n  padding-top: 13px;\n  margin-top: 13px;\n  padding: 13px 16px;\n  border-radius: inherit;\n  border-top-left-radius: 0;\n  border-top-right-radius: 0;\n}\n\n.swal-button-container {\n  margin: 5px;\n  display: inline-block;\n  position: relative;\n}\n\n.swal-button {\n  background-color: var(--swal-btn-confirm);\n  color: white;\n  border: none;\n  box-shadow: none;\n  border-radius: 5px;\n  font-weight: 600;\n  font-size: 14px;\n  padding: 10px 24px;\n  margin: 0;\n  cursor: pointer;\n  &:not([disabled]):hover {\n    background-color: var(--swal-btn-confirm-hover);\n  }\n  &:active {\n    background-color: var(--swal-btn-confirm-active);\n  }\n  &:focus {\n    outline: none;\n    box-shadow:\n      0px 0px 0px 1px white, \n      0px 0px 0px 3px rgba(43, 114, 165, 0.29);\n  }\n  &[disabled] {\n    opacity: 0.5;\n    cursor: default;\n  }\n  /* Remove ugly dotted lines in FireFox: */\n  &::-moz-focus-inner {\n    border: 0;\n  }\n\n  &--cancel {\n    color: #555555;\n    background-color: var(--swal-btn-cancel);\n    &:not([disabled]):hover {\n      background-color: var(--swal-btn-cancel-hover);\n    }\n    &:active {\n      background-color: var(--swal-btn-cancel-active);\n    }\n    &:focus {\n      box-shadow: \n        0px 0px 0px 1px white, \n        0px 0px 0px 3px rgba(116, 136, 150, 0.29);\n    }\n  }\n\n  &--danger {\n    background-color: var(--swal-btn-danger);\n    &:not([disabled]):hover {\n      background-color: var(--swal-btn-danger-hover);\n    }\n    &:active {\n      background-color: var(--swal-btn-danger-active);\n    }\n    &:focus {\n      box-shadow: \n        0px 0px 0px 1px white, \n        0px 0px 0px 3px rgba(165, 43, 43, 0.29);\n    }\n  }\n}\n\n\n\n"
  },
  {
    "path": "src/css/content.css",
    "content": ".swal-content {\n  padding: 0 20px;\n  margin-top: 20px;\n  font-size: initial;\n\n  &:last-child {\n    margin-bottom: 20px;\n  }\n\n  &__input,\n  &__textarea {\n    -webkit-appearance: none;\n    background-color: white;\n    border: none;\n    font-size: 14px;\n    display: block;\n    box-sizing: border-box;\n    width: 100%;\n    border: 1px solid rgba(0, 0, 0, 0.14);\n    padding: 10px 13px;\n    border-radius: 2px;\n    transition: border-color 0.2s;\n    &:focus {\n      outline: none;\n      border-color: #6DB8FF;\n    }\n  }\n\n  &__textarea {\n    resize: vertical;\n  }\n}\n\n"
  },
  {
    "path": "src/css/icons/error.css",
    "content": ":root {\n  --swal-red: #F27474;\n}\n\n.swal-icon--error {\n  border-color: var(--swal-red);\n  animation: animateErrorIcon 0.5s;\n\n  &__x-mark {\n    position: relative;\n    display: block;\n    animation: animateXMark 0.5s;\n  }\n\n  &__line {\n    position: absolute;\n    height: 5px;\n    width: 47px;\n    background-color: var(--swal-red);\n    display: block;\n    top: 37px;\n    border-radius: 2px;\n\n    &--left {\n      transform: rotate(45deg);\n      left: 17px;\n    }\n\n    &--right {\n      transform: rotate(-45deg);\n      transform: rotate(-45deg);\n      right: 16px;\n    }\n  }\n}\n\n@keyframes animateErrorIcon {\n  from {\n    transform: rotateX(100deg);\n    opacity: 0;\n  }\n  to {\n    transform: rotateX(0deg);\n    opacity: 1;\n  }\n}\n\n@keyframes animateXMark {\n  0% {\n    transform: scale(0.4);\n    margin-top: 26px;\n    opacity: 0;\n  }\n  50% {\n    transform: scale(0.4);\n    margin-top: 26px;\n    opacity: 0;\n  }\n  80% {\n    transform: scale(1.15);\n    margin-top: -6px;\n  }\n  100% {\n    transform: scale(1);\n    margin-top: 0;\n    opacity: 1;\n  }\n}\n\n"
  },
  {
    "path": "src/css/icons/info.css",
    "content": ":root {\n  --swal-blue: #C9DAE1;\n}\n\n.swal-icon--info {\n  border-color: var(--swal-blue);\n\n  /* \"i\"-letter body */\n  &::before {\n    content: \"\";\n    position: absolute;\n    width: 5px;\n    height: 29px;\n    left: 50%;\n    bottom: 17px;\n    border-radius: 2px;\n    margin-left: -2px;\n    background-color: var(--swal-blue);\n  }\n  /* \"i\"-letter dot */\n  &::after {\n    content: \"\";\n    position: absolute;\n    width: 7px;\n    height: 7px;\n    border-radius: 50%;\n    margin-left: -3px;\n    top: 19px;\n    background-color: var(--swal-blue);\n    left: 50%;\n  }\n}\n\n"
  },
  {
    "path": "src/css/icons/success.css",
    "content": ":root {\n  --swal-green: #A5DC86;\n  --swal-green-light: rgba(165, 220, 134, 0.2);\n}\n\n.swal-icon--success {\n  border-color: var(--swal-green);\n\n  /* Moving circular line */\n  &::before,\n  &::after {\n    content: '';\n    border-radius: 50%;\n    position: absolute;\n    width: 60px;\n    height: 120px;\n    background: white;\n    transform: rotate(45deg);\n  }\n\n  &::before {\n    border-radius: 120px 0 0 120px;\n    top: -7px;\n    left: -33px;\n    transform: rotate(-45deg);\n    transform-origin: 60px 60px;\n  }\n\n  &::after {\n    border-radius: 0 120px 120px 0;\n    top: -11px;\n    left: 30px;\n    transform: rotate(-45deg);\n    transform-origin: 0px 60px;\n    animation: rotatePlaceholder 4.25s ease-in;\n  }\n\n  /* Ring */\n  &__ring {\n    width: 80px;\n    height: 80px;\n    border: 4px solid var(--swal-green-light);\n    border-radius: 50%;\n    box-sizing: content-box;\n    position: absolute;\n    left: -4px;\n    top: -4px;\n    z-index: 2;\n  }\n\n  /* Hide corners left from animation */\n  &__hide-corners {\n    width: 5px;\n    height: 90px;\n    background-color: white;\n    padding: 1px;\n    position: absolute;\n    left: 28px;\n    top: 8px;\n    z-index: 1;\n    transform: rotate(-45deg);\n  }\n\n  &__line {\n    height: 5px;\n    background-color: var(--swal-green);\n    display: block;\n    border-radius: 2px;\n    position: absolute;\n    z-index: 2;\n\n    &--tip {\n      width: 25px;\n      left: 14px;\n      top: 46px;\n      transform: rotate(45deg);\n      animation: animateSuccessTip 0.75s;\n    }\n    &--long {\n      width: 47px;\n      right: 8px;\n      top: 38px;\n      transform: rotate(-45deg);\n      animation: animateSuccessLong 0.75s;\n    }\n  }\n}\n\n@keyframes rotatePlaceholder {\n  0% {\n    transform: rotate(-45deg);\n  }\n  5% {\n    transform: rotate(-45deg);\n  }\n  12% {\n    transform: rotate(-405deg);\n  }\n  100% {\n    transform: rotate(-405deg);\n  }\n}\n\n@keyframes animateSuccessTip {\n  0% {\n    width: 0;\n    left: 1px;\n    top: 19px;\n  }\n  54% {\n    width: 0;\n    left: 1px;\n    top: 19px;\n  }\n  70% {\n    width: 50px;\n    left: -8px;\n    top: 37px;\n  }\n  84% {\n    width: 17px;\n    left: 21px;\n    top: 48px;\n  }\n  100% {\n    width: 25px;\n    left: 14px;\n    top: 45px;\n  }\n}\n\n@keyframes animateSuccessLong {\n  0% {\n    width: 0;\n    right: 46px;\n    top: 54px;\n  }\n  65% {\n    width: 0;\n    right: 46px;\n    top: 54px;\n  }\n  84% {\n    width: 55px;\n    right: 0px;\n    top: 35px;\n  }\n  100% {\n    width: 47px;\n    right: 8px;\n    top: 38px;\n  }\n}\n\n"
  },
  {
    "path": "src/css/icons/warning.css",
    "content": ":root {\n  --swal-orange: #F8BB86;\n}\n\n.swal-icon--warning {\n  border-color: var(--swal-orange);\n  animation: pulseWarning 0.75s infinite alternate;\n\n  /* Exclamation mark */\n  &__body {\n    position: absolute;\n    width: 5px;\n    height: 47px;\n    left: 50%;\n    top: 10px;\n    border-radius: 2px;\n    margin-left: -2px;\n    background-color: var(--swal-orange);\n  }\n\n  &__dot {\n    position: absolute;\n    width: 7px;\n    height: 7px;\n    border-radius: 50%;\n    margin-left: -4px;\n    left: 50%;\n    bottom: -11px;\n    background-color: var(--swal-orange);\n  }\n}\n\n@keyframes pulseWarning {\n  from {\n    border-color: #F8D486;\n  }\n  to {\n    border-color: var(--swal-orange);\n  }\n}\n\n"
  },
  {
    "path": "src/css/icons.css",
    "content": "@import './icons/error';\n@import './icons/warning';\n@import './icons/success';\n@import './icons/info';\n\n.swal-icon {\n  width: 80px;\n  height: 80px;\n  border-width: 4px;\n  border-style: solid;\n  border-radius: 50%;\n  padding: 0;\n  position: relative;\n  box-sizing: content-box;\n  margin: 20px auto;\n  &:first-child {\n    margin-top: 32px;\n  }\n\n  &--custom {\n    width: auto;\n    height: auto;\n    max-width: 100%;\n    border: none;\n    border-radius: 0;\n  }\n\n  & img {\n    max-width: 100%;\n    max-height: 100%;\n  }\n}\n\n\n"
  },
  {
    "path": "src/css/text.css",
    "content": ".swal-title {\n  color: rgba(0, 0, 0, 0.65);\n  font-weight: 600;\n  text-transform: none;\n  position: relative;\n  display: block;\n  padding: 13px 16px;\n  font-size: 27px;\n  line-height: normal;\n  text-align: center;\n  margin-bottom: 0px;\n  &:first-child {\n    margin-top: 26px;\n  }\n  &:not(:first-child) {\n    padding-bottom: 0;\n  }\n  &:not(:last-child) {\n    margin-bottom: 13px;\n  }\n}\n\n.swal-text {\n  font-size: 16px;\n  position: relative;\n  float: none;\n  line-height: normal;\n  vertical-align: top;\n  text-align: left;\n  display: inline-block;\n  margin: 0;\n  padding: 0 10px;\n  font-weight: 400;\n  color: rgba(0, 0, 0, 0.64);\n  max-width: calc(100% - 20px);\n  overflow-wrap: break-word;\n  box-sizing: border-box;\n  &:first-child {\n    margin-top: 45px;\n  }\n  &:last-child {\n    margin-bottom: 45px;\n  }\n}\n"
  },
  {
    "path": "src/modules/actions.ts",
    "content": "import { getNode } from './utils';\nimport { CANCEL_KEY } from './options/buttons';\n\nimport CLASS_NAMES  from './class-list';\n\nconst {\n  OVERLAY,\n  SHOW_MODAL,\n  BUTTON,\n  BUTTON_LOADING,\n} = CLASS_NAMES;\n\nimport state, { SwalState } from './state';\n\nexport const openModal = (): void => {\n  let overlay = getNode(OVERLAY);\n  overlay.classList.add(SHOW_MODAL); \n\n  state.isOpen = true;\n};\n\nconst hideModal = (): void => {\n  let overlay = getNode(OVERLAY);\n  overlay.classList.remove(SHOW_MODAL); \n\n  state.isOpen = false;\n};\n\n/*\n * Triggers when the user presses any button, or\n * hits Enter inside the input:\n */\nexport const onAction = (namespace: string = CANCEL_KEY): void => {\n  const { value, closeModal } = state.actions[namespace];\n\n  if (closeModal === false) {\n    const buttonClass = `${BUTTON}--${namespace}`;\n    const button = getNode(buttonClass);\n    button.classList.add(BUTTON_LOADING);\n  } else {\n    hideModal();\n  }\n\n  state.promise.resolve(value);\n};\n\n/*\n * Filter the state object. Remove the stuff\n * that's only for internal use\n */\nexport const getState = (): SwalState => {\n  const publicState = Object.assign({}, state);\n  delete publicState.promise;\n  delete publicState.timer;\n\n  return publicState;\n};\n\n/*\n * Stop showing loading animation on button\n * (to display error message in input for example)\n */\nexport const stopLoading = (): void => {\n  const buttons: NodeListOf<Element> = document.querySelectorAll(`.${BUTTON}`);\n\n  for (let i = 0; i < buttons.length; i++) {\n    const button: Element = buttons[i];\n    button.classList.remove(BUTTON_LOADING);\n  }\n};\n\n\n"
  },
  {
    "path": "src/modules/class-list/index.ts",
    "content": "/*\n * List of class names that we\n * use throughout the library to\n * manipulate the DOM.\n */\n\nexport interface ClassNameList {\n  [key: string]: string,\n};\n\nconst OVERLAY: string = 'swal-overlay';\nconst BUTTON: string = 'swal-button';\nconst ICON: string = 'swal-icon';\n\nexport const CLASS_NAMES: ClassNameList = {\n  MODAL: 'swal-modal',\n  OVERLAY,\n  SHOW_MODAL: `${OVERLAY}--show-modal`,\n\n  MODAL_TITLE: `swal-title`,\n  MODAL_TEXT: `swal-text`,\n  ICON,\n  ICON_CUSTOM: `${ICON}--custom`,\n\n  CONTENT: 'swal-content',\n\n  FOOTER: 'swal-footer',\n  BUTTON_CONTAINER: 'swal-button-container',\n  BUTTON,\n  CONFIRM_BUTTON: `${BUTTON}--confirm`,\n  CANCEL_BUTTON: `${BUTTON}--cancel`,\n  DANGER_BUTTON: `${BUTTON}--danger`,\n  BUTTON_LOADING: `${BUTTON}--loading`,\n  BUTTON_LOADER: `${BUTTON}__loader`,\n};\n\nexport default CLASS_NAMES;\n\n"
  },
  {
    "path": "src/modules/event-listeners.ts",
    "content": "import state from './state';\nimport { onAction } from './actions';\nimport { getNode } from './utils';\nimport { SwalOptions } from './options';\nimport { CANCEL_KEY } from './options/buttons';\n\nimport CLASS_NAMES from './class-list';\nconst { MODAL, BUTTON, OVERLAY } = CLASS_NAMES;\n\nconst onTabAwayLastButton = (e: KeyboardEvent): void => {\n  e.preventDefault();\n  setFirstButtonFocus();\n};\n\nconst onTabBackFirstButton = (e: KeyboardEvent): void => {\n  e.preventDefault();\n  setLastButtonFocus();\n};\n\nconst onKeyUp = (e: KeyboardEvent):void => {\n  if (!state.isOpen) return;\n\n  switch (e.key) {\n    case \"Escape\": return onAction(CANCEL_KEY);\n  }\n};\n\nconst onKeyDownLastButton = (e: KeyboardEvent): void => {\n  if (!state.isOpen) return;\n\n  switch (e.key) {\n    case \"Tab\": return onTabAwayLastButton(e);\n  }\n};\n\nconst onKeyDownFirstButton = (e: KeyboardEvent): void => {\n  if (!state.isOpen) return;\n\n  if (e.key === \"Tab\" && e.shiftKey) {\n    return onTabBackFirstButton(e);\n  }\n};\n\n\n/*\n * Set default focus on Confirm-button\n */\nconst setFirstButtonFocus = (): void => {\n  const button:HTMLElement = getNode(BUTTON);\n\n  if (button) {\n    button.tabIndex = 0;\n    button.focus();\n  }\n};\n\nconst setLastButtonFocus = (): void => {\n  const modal: HTMLElement = getNode(MODAL);\n\n  const buttons: NodeListOf<Element> = modal.querySelectorAll(`.${BUTTON}`);\n\n  const lastIndex: number = buttons.length - 1;\n  const lastButton: any = buttons[lastIndex];\n\n  if (lastButton) {\n    lastButton.focus();\n  }\n};\n\nconst setTabbingForLastButton = (buttons: NodeListOf<Element>): void => {\n  const lastIndex: number = buttons.length - 1;\n  const lastButton: Element = buttons[lastIndex];\n\n  lastButton.addEventListener('keydown', onKeyDownLastButton);\n};\n\nconst setTabbingForFirstButton = (buttons: NodeListOf<Element>): void => {\n  const firstButton: Element = buttons[0];\n\n  firstButton.addEventListener('keydown', onKeyDownFirstButton);\n};\n\nconst setButtonTabbing = (): void => {\n  const modal: HTMLElement = getNode(MODAL);\n\n  const buttons: NodeListOf<Element> = modal.querySelectorAll(`.${BUTTON}`);\n\n  if (!buttons.length) return;\n\n  setTabbingForLastButton(buttons);\n  setTabbingForFirstButton(buttons);\n};\n\nconst onOutsideClick = (e: MouseEvent): void => {\n  const overlay: HTMLElement = getNode(OVERLAY);\n\n  // Don't trigger for children:\n  if (overlay !== e.target) return;\n\n  return onAction(CANCEL_KEY);\n};\n\nconst setClickOutside = (allow: boolean): void => {\n  const overlay: HTMLElement = getNode(OVERLAY);\n\n  overlay.removeEventListener('click', onOutsideClick);\n\n  if (allow) {\n    overlay.addEventListener('click', onOutsideClick);\n  }\n};\n\nconst setTimer = (ms: number): void => {\n  if (state.timer) {\n    clearTimeout(state.timer);\n  }\n\n  if (ms) {\n    state.timer = window.setTimeout(() => {\n      return onAction(CANCEL_KEY);\n    }, ms);\n  }\n};\n\nconst addEventListeners = (opts: SwalOptions):void => {\n  if (opts.closeOnEsc) {\n    document.addEventListener('keyup', onKeyUp);\n  } else {\n    document.removeEventListener('keyup', onKeyUp);\n  }\n\n  /* So that you don't accidentally confirm something\n   * dangerous by clicking enter\n   */\n  if (opts.dangerMode) {\n    setFirstButtonFocus();\n  } else {\n    setLastButtonFocus();\n  }\n\n  setButtonTabbing();\n  setClickOutside(opts.closeOnClickOutside);\n  setTimer(opts.timer);\n};\n\nexport default addEventListeners;\n"
  },
  {
    "path": "src/modules/init/buttons.ts",
    "content": "import { stringToNode } from '../utils';\nimport { injectElIntoModal } from './modal';\n\nimport CLASS_NAMES from '../class-list';\nconst { BUTTON, DANGER_BUTTON } = CLASS_NAMES;\n\nimport { ButtonList, ButtonOptions, CONFIRM_KEY } from '../options/buttons';\nimport { footerMarkup, buttonMarkup } from '../markup';\n\nimport { onAction } from '../actions';\nimport {\n  setActionValue,\n  setActionOptionsFor,\n  ActionOptions,\n} from '../state';\n\n/*\n * Generate a button, with a container element,\n * the right class names, the text, and an event listener.\n * IMPORTANT: This will also add the button's action, which can be triggered even if the button element itself isn't added to the modal.\n */\nconst getButton = (namespace: string, {\n  text,\n  value,\n  className,\n  closeModal,\n}: ButtonOptions, dangerMode: boolean): Node => {\n  const buttonContainer: any = stringToNode(buttonMarkup);\n\n  const buttonEl: HTMLElement = buttonContainer.querySelector(`.${BUTTON}`);\n\n  const btnNamespaceClass = `${BUTTON}--${namespace}`;\n  buttonEl.classList.add(btnNamespaceClass);\n\n  if (className) {\n    const classNameArray = Array.isArray(className)\n      ? className\n      : className.split(' ');\n    classNameArray\n      .filter(name => name.length > 0)\n      .forEach(name => {\n        buttonEl.classList.add(name);\n      });\n  }\n\n  if (dangerMode && namespace === CONFIRM_KEY) {\n    buttonEl.classList.add(DANGER_BUTTON);\n  }\n\n  buttonEl.textContent = text;\n\n  let actionValues: ActionOptions = {};\n  actionValues[namespace] = value;\n  setActionValue(actionValues);\n\n  setActionOptionsFor(namespace, {\n    closeModal,\n  });\n\n  buttonEl.addEventListener('click', () => {\n    return onAction(namespace);\n  });\n\n  return buttonContainer;\n};\n\n/*\n * Create the buttons-container,\n * then loop through the ButtonList object\n * and append every button to it.\n */\nconst initButtons = (buttons: ButtonList, dangerMode: boolean): void => {\n\n  const footerEl: Element = injectElIntoModal(footerMarkup);\n\n  for (let key in buttons) {\n    const buttonOpts: ButtonOptions = buttons[key] as ButtonOptions;\n    const buttonEl: Node = getButton(key, buttonOpts, dangerMode);\n\n    if (buttonOpts.visible) {\n      footerEl.appendChild(buttonEl);\n    }\n  }\n\n  /*\n   * If the footer has no buttons, there's no\n   * point in keeping it:\n   */\n  if (footerEl.children.length === 0) {\n    footerEl.remove();\n  }\n};\n\nexport default initButtons;\n"
  },
  {
    "path": "src/modules/init/content.ts",
    "content": "import { ContentOptions } from '../options/content';\nimport { CONFIRM_KEY } from '../options/buttons';\nimport { injectElIntoModal } from './modal';\nimport { contentMarkup } from '../markup';\nimport { setActionValue } from '../state';\nimport { onAction } from '../actions';\n\nimport CLASS_NAMES from '../class-list';\nconst { CONTENT } = CLASS_NAMES;\n\n/*\n * Add an <input> to the content container.\n * Update the \"promised\" value of the confirm button whenever\n * the user types into the input (+ make it \"\" by default)\n * Set the default focus on the input.\n */\nconst addInputEvents = (input: HTMLElement): void => {\n\n  input.addEventListener('input', (e) => {\n    const target = e.target as HTMLInputElement;\n    const text = target.value;\n    setActionValue(text);\n  });\n\n  input.addEventListener('keyup', (e) => {\n    if (e.key === \"Enter\") {\n      return onAction(CONFIRM_KEY);\n    }\n  });\n\n  /*\n   * FIXME (this is a bit hacky)\n   * We're overwriting the default value of confirm button,\n   * as well as overwriting the default focus on the button\n   */\n  setTimeout(() => {\n    input.focus();\n    setActionValue('');\n  }, 0);\n\n};\n\nconst initPredefinedContent = (content: Node, elName: string, attrs: any): void => {\n  const el: HTMLElement = document.createElement(elName);\n\n  const elClass = `${CONTENT}__${elName}`;\n  el.classList.add(elClass);\n\n  // Set things like \"placeholder\":\n  for (let key in attrs) {\n    let value: string = attrs[key];\n\n    (<any>el)[key] = value;\n  }\n\n  if (elName === \"input\") {\n    addInputEvents(el);\n  }\n\n  content.appendChild(el);\n};\n\nconst initContent = (opts: ContentOptions): void => {\n  if (!opts) return;\n\n  const content: Node = injectElIntoModal(contentMarkup);\n\n  const { element, attributes } = opts;\n\n  if (typeof element === \"string\") {\n    initPredefinedContent(content, element, attributes);\n  } else {\n    content.appendChild(element);\n  }\n};\n\nexport default initContent;\n\n"
  },
  {
    "path": "src/modules/init/icon.ts",
    "content": "//import { stringToNode } from '../utils';\nimport { injectElIntoModal } from './modal';\n\nimport {\n  iconMarkup,\n  errorIconMarkup,\n  warningIconMarkup,\n  successIconMarkup,\n} from '../markup';\n\nimport CLASS_NAMES from '../class-list';\nconst { ICON, ICON_CUSTOM } = CLASS_NAMES;\n\nconst PREDEFINED_ICONS: string[] = [\"error\", \"warning\", \"success\", \"info\"];\n\nconst ICON_CONTENTS: any = {\n  error: errorIconMarkup(),\n  warning: warningIconMarkup(),\n  success: successIconMarkup(),\n}\n\n/*\n * Set the warning, error, success or info icons:\n */\nconst initPredefinedIcon = (type: string, iconEl: Element): void => {\n  const iconTypeClass: string = `${ICON}--${type}`;\n  iconEl.classList.add(iconTypeClass);\n\n  const iconContent: string = ICON_CONTENTS[type];\n\n  if (iconContent) {\n    iconEl.innerHTML = iconContent;\n  }\n};\n\nconst initImageURL = (url: string, iconEl: Element): void => {\n  iconEl.classList.add(ICON_CUSTOM);\n\n  let img = document.createElement('img');\n  img.src = url;\n\n  iconEl.appendChild(img);\n};\n\nconst initIcon = (str: string): void => {\n  if (!str) return;\n\n  let iconEl: Element = injectElIntoModal(iconMarkup);\n\n  if (PREDEFINED_ICONS.includes(str)) {\n    initPredefinedIcon(str, iconEl);\n  } else {\n    initImageURL(str, iconEl);\n  }\n\n};\n\nexport default initIcon;\n\n"
  },
  {
    "path": "src/modules/init/index.ts",
    "content": "import { getNode } from '../utils';\nimport { SwalOptions } from '../options';\n\nimport CLASS_NAMES from '../class-list';\nconst { MODAL } = CLASS_NAMES;\n\nimport initModalOnce, {\n  initModalContent,\n} from './modal';\n\nimport initOverlayOnce from './overlay';\nimport addEventListeners from '../event-listeners';\nimport { throwErr } from '../utils';\n\n/*\n * Inject modal and overlay into the DOM\n * Then format the modal according to the given opts\n */\nexport const init = (opts: SwalOptions): void => {\n  const modal: Element = getNode(MODAL);\n\n  if (!modal) {\n    if (!document.body) {\n      throwErr(\"You can only use SweetAlert AFTER the DOM has loaded!\");\n    }\n\n    initOverlayOnce();\n    initModalOnce();\n  }\n\n  initModalContent(opts);\n  addEventListeners(opts);\n};\n\nexport default init;\n\n"
  },
  {
    "path": "src/modules/init/modal.ts",
    "content": "import { ButtonList } from './../options/buttons';\nimport { stringToNode, getNode } from '../utils';\nimport { modalMarkup } from '../markup';\nimport { SwalOptions } from '../options';\n\nimport CLASS_NAMES from '../class-list';\nconst { MODAL, OVERLAY } = CLASS_NAMES;\n\nimport initIcon from './icon';\nimport { initTitle, initText } from './text';\nimport initButtons from './buttons';\nimport initContent from './content';\n\nexport const injectElIntoModal = (markup: string): HTMLElement => {\n  const modal: Element = getNode(MODAL);\n  const el: HTMLElement = stringToNode(markup);\n\n  modal.appendChild(el);\n\n  return el;\n};\n\n/*\n * Remove eventual added classes +\n * reset all content inside:\n */\nconst resetModalElement = (modal: Element): void => {\n  modal.className = MODAL;\n  modal.textContent = '';\n};\n\n/*\n * Add custom class to modal element\n */\nconst customizeModalElement = (modal: Element, opts: SwalOptions): void => {\n  resetModalElement(modal);\n\n  const { className } = opts;\n\n  if (className) {\n    modal.classList.add(className);\n  }\n};\n\n/*\n * It's important to run the following functions in this particular order,\n * so that the elements get appended one after the other.\n */\nexport const initModalContent = (opts: SwalOptions): void => {\n  // Start from scratch:\n  const modal: Element = getNode(MODAL);\n  customizeModalElement(modal, opts);\n\n  initIcon(opts.icon);\n  initTitle(opts.title);\n  initText(opts.text);\n  initContent(opts.content);\n  initButtons(opts.buttons as ButtonList, opts.dangerMode);\n};\n\nconst initModalOnce = (): void => {\n  const overlay: Element = getNode(OVERLAY);\n  const modal = stringToNode(modalMarkup);\n\n  overlay.appendChild(modal);\n};\n\nexport default initModalOnce;\n"
  },
  {
    "path": "src/modules/init/overlay.ts",
    "content": "import { stringToNode } from '../utils';\nimport { overlayMarkup } from '../markup';\n\nconst initOverlayOnce = (): void => {\n  const overlay = stringToNode(overlayMarkup);\n\n  document.body.appendChild(overlay);\n};\n\nexport default initOverlayOnce;\n"
  },
  {
    "path": "src/modules/init/text.ts",
    "content": "import {\n  titleMarkup,\n  textMarkup,\n} from '../markup';\n\nimport { injectElIntoModal } from './modal';\n\n/*\n * Fixes a weird bug that doesn't wrap long text in modal\n * This is visible in the Safari browser for example.\n * https://stackoverflow.com/a/3485654/2679245\n */\nconst webkitRerender = (el: HTMLElement) => {\n  if (navigator.userAgent.includes('AppleWebKit')) {\n    el.style.display = 'none';\n    el.offsetHeight;\n    el.style.display = '';\n  }\n}\n\nexport const initTitle = (title: string): void => {\n  if (title) {\n    const titleEl: HTMLElement = injectElIntoModal(titleMarkup);\n    titleEl.textContent = title;\n\n    webkitRerender(titleEl);\n  }\n};\n\nexport const initText = (text: string): void => {\n  if (text) {\n    let textNode = document.createDocumentFragment();\n    text.split('\\n').forEach((textFragment, index, array) => {\n      textNode.appendChild(document.createTextNode(textFragment));\n\n      // unless we are on the last element, append a <br>\n      if (index < array.length - 1) {\n        textNode.appendChild(document.createElement('br'));\n      }\n    });\n    const textEl: HTMLElement = injectElIntoModal(textMarkup);\n    textEl.appendChild(textNode);\n\n    webkitRerender(textEl);\n  }\n};\n\n"
  },
  {
    "path": "src/modules/markup/buttons.ts",
    "content": "import CLASS_NAMES from '../class-list';\n\nconst {\n  BUTTON_CONTAINER,\n  BUTTON,\n  BUTTON_LOADER,\n} = CLASS_NAMES;\n\nexport const buttonMarkup: string = `\n  <div class=\"${BUTTON_CONTAINER}\">\n\n    <button\n      class=\"${BUTTON}\"\n    ></button>\n\n    <div class=\"${BUTTON_LOADER}\">\n      <div></div>\n      <div></div>\n      <div></div>\n    </div>\n\n  </div>\n`;\n\n"
  },
  {
    "path": "src/modules/markup/content.ts",
    "content": "import CLASS_NAMES from '../class-list';\n\nconst { CONTENT } = CLASS_NAMES;\n\nexport const contentMarkup: string = `\n  <div class=\"${CONTENT}\">\n\n  </div>\n`;\n\n"
  },
  {
    "path": "src/modules/markup/icons.ts",
    "content": "import CLASS_NAMES from '../class-list';\n\nconst { ICON } = CLASS_NAMES;\n\nexport const errorIconMarkup = (): string => {\n  const icon = `${ICON}--error`;\n  const line = `${icon}__line`;\n\n  const markup = `\n    <div class=\"${icon}__x-mark\">\n      <span class=\"${line} ${line}--left\"></span>\n      <span class=\"${line} ${line}--right\"></span>\n    </div>\n  `;\n\n  return markup;\n}\n\nexport const warningIconMarkup = (): string => {\n  const icon = `${ICON}--warning`;\n\n  return `\n    <span class=\"${icon}__body\">\n      <span class=\"${icon}__dot\"></span>\n    </span>\n  `;\n};\n\nexport const successIconMarkup = (): string => {\n  const icon = `${ICON}--success`;\n\n  return `\n    <span class=\"${icon}__line ${icon}__line--long\"></span>\n    <span class=\"${icon}__line ${icon}__line--tip\"></span>\n\n    <div class=\"${icon}__ring\"></div>\n    <div class=\"${icon}__hide-corners\"></div>\n  `;\n};\n"
  },
  {
    "path": "src/modules/markup/index.ts",
    "content": "export * from './modal';\n\nexport {\n  default as overlayMarkup\n} from './overlay';\n\nexport * from './icons';\n\nexport * from './content';\n\nexport * from './buttons';\n\nimport CLASS_NAMES from '../class-list';\n\nconst {\n  MODAL_TITLE,\n  MODAL_TEXT,\n  ICON,\n  FOOTER,\n} = CLASS_NAMES;\n\nexport const iconMarkup: string = `\n  <div class=\"${ICON}\"></div>`\n;\n\nexport const titleMarkup: string = `\n  <div class=\"${MODAL_TITLE}\"></div>\n`;\n\nexport const textMarkup: string = `\n  <div class=\"${MODAL_TEXT}\"></div>`\n;\n\nexport const footerMarkup: string = `\n  <div class=\"${FOOTER}\"></div>\n`;\n\n\n"
  },
  {
    "path": "src/modules/markup/modal.ts",
    "content": "import CLASS_NAMES from '../class-list';\n\nconst {\n  MODAL,\n} = CLASS_NAMES;\n\nexport const modalMarkup: string =`\n  <div class=\"${MODAL}\" role=\"dialog\" aria-modal=\"true\">` +\n    \n    // Icon\n\n    // Title\n\n    // Text\n  \n    // Content\n  \n    // Buttons\n\n `</div>`\n;\n\nexport default modalMarkup;\n\n"
  },
  {
    "path": "src/modules/markup/overlay.ts",
    "content": "import CLASS_NAMES from '../class-list';\n\nconst {\n  OVERLAY,\n} = CLASS_NAMES;\n\nconst overlay: string =\n  `<div \n    class=\"${OVERLAY}\"\n    tabIndex=\"-1\">\n  </div>`\n;\n\nexport default overlay;\n"
  },
  {
    "path": "src/modules/options/buttons.ts",
    "content": "import { isPlainObject, throwErr } from '../utils';\n\nexport interface ButtonOptions {\n  visible?: boolean,\n  text?: string,\n  value?: any,\n  className?: string | Array<string>,\n  closeModal?: boolean,\n};\n\nexport interface ButtonList {\n  [buttonNamespace: string]: ButtonOptions | boolean,\n};\n\nexport const CONFIRM_KEY = 'confirm';\nexport const CANCEL_KEY = 'cancel';\n\nconst defaultButton: ButtonOptions = {\n  visible: true,\n  text: null,\n  value: null,\n  className: '',\n  closeModal: true,\n};\n\nconst defaultCancelButton: ButtonOptions = Object.assign({},\n  defaultButton, {\n    visible: false,\n    text: \"Cancel\",\n    value: null,\n  }\n);\n\nconst defaultConfirmButton: ButtonOptions = Object.assign({},\n  defaultButton, {\n    text: \"OK\",\n    value: true,\n  }\n);\n\nexport const defaultButtonList: ButtonList = {\n  cancel: defaultCancelButton,\n  confirm: defaultConfirmButton,\n};\n\nconst getDefaultButton = (key: string): ButtonOptions => {\n  switch (key) {\n    case CONFIRM_KEY:\n      return defaultConfirmButton;\n\n    case CANCEL_KEY:\n      return defaultCancelButton;\n\n    default:\n      // Capitalize:\n      const text = key.charAt(0).toUpperCase() + key.slice(1);\n\n      return Object.assign({}, defaultButton, {\n        text,\n        value: key,\n      });\n  }\n};\n\nconst normalizeButton = (key: string, param: string | object | boolean): ButtonOptions => {\n  const button: ButtonOptions = getDefaultButton(key);\n\n  /*\n   * Use the default button + make it visible\n   */\n  if (param === true) {\n    return Object.assign({}, button, {\n      visible: true,\n    });\n  }\n\n  /* Set the text of the button: */\n  if (typeof param === \"string\") {\n    return Object.assign({}, button, {\n      visible: true,\n      text: param,\n    });\n  }\n\n  /* A specified button should always be visible,\n   * unless \"visible\" is explicitly set to \"false\"\n   */\n  if (isPlainObject(param)) {\n    return Object.assign({\n      visible: true,\n    }, button, param);\n  }\n\n  return Object.assign({}, button, {\n    visible: false,\n  });\n};\n\nconst normalizeButtonListObj = (obj: any): ButtonList => {\n  let buttons: ButtonList = {};\n\n  for (let key of Object.keys(obj)) {\n    const opts: any = obj[key];\n    const button: ButtonOptions = normalizeButton(key, opts);\n    buttons[key] = button;\n  }\n\n  /*\n   * We always need a cancel action,\n   * even if the button isn't visible\n   */\n  if (!buttons.cancel) {\n    buttons.cancel = defaultCancelButton;\n  }\n\n  return buttons;\n};\n\nconst normalizeButtonArray = (arr: any[]): ButtonList => {\n  let buttonListObj: ButtonList = {};\n\n  switch (arr.length) {\n    /* input: [\"Accept\"]\n     * result: only set the confirm button text to \"Accept\"\n     */\n    case 1:\n      buttonListObj[CANCEL_KEY] = Object.assign({}, defaultCancelButton, {\n        visible: false,\n      });\n\n      break;\n\n    /* input: [\"No\", \"Ok!\"]\n     * result: Set cancel button to \"No\", and confirm to \"Ok!\"\n     */\n    case 2:\n      buttonListObj[CANCEL_KEY] = normalizeButton(CANCEL_KEY, arr[0]);\n      buttonListObj[CONFIRM_KEY] = normalizeButton(CONFIRM_KEY, arr[1]);\n\n      break;\n\n    default:\n      throwErr(`Invalid number of 'buttons' in array (${arr.length}).\n      If you want more than 2 buttons, you need to use an object!`);\n  }\n\n  return buttonListObj;\n};\n\nexport const getButtonListOpts = (opts: string | object | boolean): ButtonList => {\n  let buttonListObj: ButtonList = defaultButtonList;\n\n  if (typeof opts === \"string\") {\n    buttonListObj[CONFIRM_KEY] = normalizeButton(CONFIRM_KEY, opts);\n  } else if (Array.isArray(opts)) {\n    buttonListObj = normalizeButtonArray(opts);\n  } else if (isPlainObject(opts)) {\n    buttonListObj = normalizeButtonListObj(opts);\n  } else if (opts === true) {\n    buttonListObj = normalizeButtonArray([true, true]);\n  } else if (opts === false) {\n    buttonListObj = normalizeButtonArray([false, false]);\n  } else if (opts === undefined) {\n    buttonListObj = defaultButtonList;\n  }\n\n  return buttonListObj;\n};\n"
  },
  {
    "path": "src/modules/options/content.ts",
    "content": "import {\n  isPlainObject,\n} from '../utils';\n\nexport interface ContentOptions {\n  element: string|Node,\n  attributes?: object,\n};\n\nconst defaultInputOptions: ContentOptions = {\n  element: 'input',\n  attributes: {\n    placeholder: \"\",\n  },\n};\n\nexport const getContentOpts = (contentParam: string|object): ContentOptions => {\n  let opts = <any>{};\n\n  if (isPlainObject(contentParam)) {\n    return Object.assign(opts, contentParam);\n  }\n\n  if (contentParam instanceof Element) {\n    return {\n      element: contentParam,\n    };\n  }\n\n  if (contentParam === 'input') {\n    return defaultInputOptions;\n  }\n\n  return null;\n};\n"
  },
  {
    "path": "src/modules/options/deprecations.ts",
    "content": "/*\n * A list of all the deprecated options from SweetAlert 1.X\n * These should log a warning telling users how to upgrade.\n */\n\nexport const logDeprecation = (name: string): void => {\n  const details: OptionReplacement = DEPRECATED_OPTS[name];\n  const { onlyRename, replacement, subOption, link } = details;\n\n  const destiny = (onlyRename) ? 'renamed' : 'deprecated';\n\n  let message = `SweetAlert warning: \"${name}\" option has been ${destiny}.`;\n\n  if (replacement) {\n    const subOptionText = (subOption) ? ` \"${subOption}\" in ` : ' ';\n    message += ` Please use${subOptionText}\"${replacement}\" instead.`;\n  }\n\n  const DOMAIN = 'https://sweetalert.js.org';\n\n  if (link) {\n    message += ` More details: ${DOMAIN}${link}`;\n  } else {\n    message += ` More details: ${DOMAIN}/guides/#upgrading-from-1x`;\n  }\n\n  console.warn(message);\n};\n\nexport interface OptionReplacement {\n  replacement?: string,\n  onlyRename?: boolean,\n  subOption?: string,\n  link?: string,\n};\n\nexport interface OptionReplacementsList {\n  [name: string]: OptionReplacement,\n};\n\nexport const DEPRECATED_OPTS: OptionReplacementsList = {\n  'type': {\n    replacement: 'icon',\n    link: '/docs/#icon',\n  },\n  'imageUrl': {\n    replacement: 'icon',\n    link: '/docs/#icon',\n  },\n  'customClass': {\n    replacement: 'className',\n    onlyRename: true,\n    link: '/docs/#classname',\n  },\n  'imageSize': {},\n  'showCancelButton': {\n    replacement: 'buttons',\n    link: '/docs/#buttons',\n  },\n  'showConfirmButton': {\n    replacement: 'button',\n    link: '/docs/#button',\n  },\n  'confirmButtonText': {\n    replacement: 'button',\n    link: '/docs/#button',\n  },\n  'confirmButtonColor': {},\n  'cancelButtonText': {\n    replacement: 'buttons',\n    link: '/docs/#buttons',\n  },\n  'closeOnConfirm': {\n    replacement: 'button',\n    subOption: 'closeModal',\n    link: '/docs/#button',\n  },\n  'closeOnCancel': {\n    replacement: 'buttons',\n    subOption: 'closeModal',\n    link: '/docs/#buttons',\n  },\n  'showLoaderOnConfirm': {\n    replacement: 'buttons',\n  },\n  'animation': {},\n  'inputType': {\n    replacement: 'content',\n    link: '/docs/#content',\n  },\n  'inputValue': {\n    replacement: 'content',\n    link: '/docs/#content',\n  },\n  'inputPlaceholder': {\n    replacement: 'content',\n    link: '/docs/#content',\n  },\n  'html': {\n    replacement: 'content',\n    link: '/docs/#content',\n  },\n  'allowEscapeKey': {\n    replacement: 'closeOnEsc',\n    onlyRename: true,\n    link: '/docs/#closeonesc',\n  },\n  'allowClickOutside': {\n    replacement: 'closeOnClickOutside',\n    onlyRename: true,\n    link: '/docs/#closeonclickoutside',\n  },\n};\n"
  },
  {
    "path": "src/modules/options/index.ts",
    "content": "import { SwalParams } from '../../core';\n\nimport {\n  throwErr,\n  isPlainObject,\n  ordinalSuffixOf,\n} from '../utils';\n\nimport {\n  ButtonList,\n  getButtonListOpts,\n  defaultButtonList\n} from './buttons';\n\nimport {\n  getContentOpts,\n  ContentOptions,\n} from './content';\n\nimport {\n  DEPRECATED_OPTS,\n  logDeprecation,\n} from './deprecations';\n\n\n/*\n * The final object that we transform the given params into\n */\nexport interface SwalOptions {\n  title: string,\n  text: string,\n  icon: string,\n  buttons: ButtonList | Array<string | boolean>,\n  content: ContentOptions,\n  className: string,\n  closeOnClickOutside: boolean,\n  closeOnEsc: boolean,\n  dangerMode: boolean,\n  timer: number,\n};\n\nconst defaultOpts: SwalOptions = {\n  title: null,\n  text: null,\n  icon: null,\n  buttons: defaultButtonList,\n  content: null,\n  className: null,\n  closeOnClickOutside: true,\n  closeOnEsc: true,\n  dangerMode: false,\n  timer: null,\n};\n\n/*\n * Default options customizeable through \"setDefaults\":\n */\nlet userDefaults: SwalOptions = Object.assign({}, defaultOpts);\n\nexport const setDefaults = (opts: object): void => {\n  userDefaults = Object.assign({}, defaultOpts, opts);\n};\n\n\n/*\n * Since the user can set both \"button\" and \"buttons\",\n * we need to make sure we pick one of the options\n */\nconst pickButtonParam = (opts: any): object => {\n  const singleButton: string|object = opts && opts.button;\n  const buttonList: object = opts && opts.buttons;\n\n  if (singleButton !== undefined && buttonList !== undefined) {\n    throwErr(`Cannot set both 'button' and 'buttons' options!`);\n  }\n\n  if (singleButton !== undefined) {\n    return {\n      confirm: singleButton,\n    };\n  } else {\n    return buttonList;\n  }\n};\n\n// Example 0 -> 1st\nconst indexToOrdinal = (index: number): string => ordinalSuffixOf(index + 1);\n\nconst invalidParam = (param: any, index: number): void => {\n  throwErr(`${indexToOrdinal(index)} argument ('${param}') is invalid`);\n};\n\nconst expectOptionsOrNothingAfter = (index: number, allParams: SwalParams): void => {\n  let nextIndex = (index + 1);\n  let nextParam = allParams[nextIndex];\n\n  if (!isPlainObject(nextParam) && nextParam !== undefined) {\n    throwErr(`Expected ${indexToOrdinal(nextIndex)} argument ('${nextParam}') to be a plain object`);\n  }\n};\n\nconst expectNothingAfter = (index: number, allParams: SwalParams): void => {\n  let nextIndex = (index + 1);\n  let nextParam = allParams[nextIndex];\n\n  if (nextParam !== undefined) {\n    throwErr(`Unexpected ${indexToOrdinal(nextIndex)} argument (${nextParam})`);\n  }\n};\n\n/*\n * Based on the number of arguments, their position and their type,\n * we return an object that's merged into the final SwalOptions\n */\nconst paramToOption = (opts: any, param: any, index: number, allParams: SwalParams): object => {\n\n  const paramType = (typeof param);\n  const isString = (paramType === \"string\");\n  const isDOMNode = (param instanceof Element);\n\n  if (isString) {\n    if (index === 0) {\n      // Example: swal(\"Hi there!\");\n      return {\n        text: param,\n      };\n    }\n\n    else if (index === 1) {\n      // Example: swal(\"Wait!\", \"Are you sure you want to do this?\");\n      // (The text is now the second argument)\n      return {\n        text: param,\n        title: allParams[0],\n      };\n    }\n\n    else if (index === 2) {\n      // Example: swal(\"Wait!\", \"Are you sure?\", \"warning\");\n      expectOptionsOrNothingAfter(index, allParams);\n\n      return {\n        icon: param,\n      };\n    }\n\n    else {\n      invalidParam(param, index);\n    }\n  }\n\n  else if (isDOMNode && index === 0) {\n    // Example: swal(<DOMNode />);\n    expectOptionsOrNothingAfter(index, allParams);\n\n    return {\n      content: param,\n    };\n  }\n\n  else if (isPlainObject(param)) {\n    expectNothingAfter(index, allParams);\n\n    return param;\n  }\n\n  else {\n    invalidParam(param, index);\n  }\n\n};\n\n/*\n * No matter if the user calls swal with\n * - swal(\"Oops!\", \"An error occurred!\", \"error\") or\n * - swal({ title: \"Oops!\", text: \"An error occurred!\", icon: \"error\" })\n * ... we always want to transform the params into the second version\n */\nexport const getOpts = (...params: SwalParams): SwalOptions => {\n  let opts = <any>{};\n\n  params.forEach((param, index) => {\n    let changes: object = paramToOption(opts, param, index, params);\n    Object.assign(opts, changes);\n  });\n\n  // Since Object.assign doesn't deep clone,\n  // we need to do this:\n  let buttonListOpts = pickButtonParam(opts);\n  opts.buttons = getButtonListOpts(buttonListOpts);\n  delete opts.button;\n\n  opts.content = getContentOpts(opts.content);\n\n  const finalOptions: SwalOptions = Object.assign({}, defaultOpts, userDefaults, opts);\n\n  // Check if the users uses any deprecated options:\n  Object.keys(finalOptions).forEach(optionName => {\n    if (DEPRECATED_OPTS[optionName]) {\n      logDeprecation(optionName);\n    }\n  });\n\n  return finalOptions;\n};\n"
  },
  {
    "path": "src/modules/state.ts",
    "content": "import { CONFIRM_KEY } from './options/buttons';\n\nexport interface SwalState {\n  isOpen: boolean,\n  promise: {\n    resolve?(value: string): void,\n    reject?(): void,\n  },\n  actions: {\n    [namespace: string]: {\n      value?: string | any,\n      closeModal?: boolean\n    },\n  },\n  timer: number,\n};\n\nexport interface ActionOptions {\n  [buttonNamespace: string]: {\n    value?: string,\n    closeModal?: boolean\n  },\n};\n\nconst defaultState: SwalState = {\n  isOpen: false,\n  promise: null,\n  actions: {},\n  timer: null,\n};\n\nlet state: SwalState = Object.assign({}, defaultState);\n\nexport const resetState = (): void => {\n  state = Object.assign({}, defaultState);\n}\n\n/*\n * Change what the promise resolves to when the user clicks the button.\n * This is called internally when using { input: true } for example.\n */\nexport const setActionValue = (opts: string|ActionOptions) => {\n\n  if (typeof opts === \"string\") {\n    return setActionValueForButton(CONFIRM_KEY, opts);\n  }\n\n  for (let namespace in opts) {\n    setActionValueForButton(namespace, opts[namespace]);\n  }\n};\n\nconst setActionValueForButton = (namespace: string, value: string | any) => {\n  if (!state.actions[namespace]) {\n    state.actions[namespace] = {};\n  }\n\n  Object.assign(state.actions[namespace], {\n    value,\n  });\n};\n\n/*\n * Sets other button options, e.g.\n * whether the button should close the modal or not\n */\nexport const setActionOptionsFor = (buttonKey: string, {\n  closeModal = true,\n} = {}) => {\n  Object.assign(state.actions[buttonKey], {\n    closeModal,\n  });\n};\n\nexport default state;\n\n"
  },
  {
    "path": "src/modules/utils.ts",
    "content": "/*\n * Get a DOM element from a class name:\n */\nexport const getNode = (className: string): HTMLElement => {\n  const selector = `.${className}`;\n\n  return <HTMLElement>document.querySelector(selector);\n};\n\nexport const stringToNode = (html: string): HTMLElement => {\n  let wrapper: HTMLElement = document.createElement('div');\n  wrapper.innerHTML = html.trim();\n\n  return <HTMLElement>wrapper.firstChild;\n};\n\nexport const insertAfter = (newNode: Node, referenceNode: Node) => {\n  let nextNode = referenceNode.nextSibling;\n  let parentNode = referenceNode.parentNode;\n\n  parentNode.insertBefore(newNode, nextNode);\n};\n\nexport const removeNode = (node: Node) => {\n  node.parentElement.removeChild(node);\n};\n\nexport const throwErr = (message: string) => {\n  // Remove multiple spaces:\n  message = message.replace(/ +(?= )/g,'');\n  message = message.trim();\n\n  throw `SweetAlert: ${message}`;\n};\n\n/*\n * Match plain objects ({}) but NOT null\n */\nexport const isPlainObject = (value: any): boolean => {\n  if (Object.prototype.toString.call(value) !== '[object Object]') {\n    return false;\n  } else {\n    var prototype = Object.getPrototypeOf(value);\n    return prototype === null || prototype === Object.prototype;\n  }\n};\n\n/*\n * Take a number and return a version with ordinal suffix\n * Example: 1 => 1st\n */\nexport const ordinalSuffixOf = (num: number): string => {\n  let j = num % 10;\n  let k = num % 100;\n\n  if (j === 1 && k !== 11) {\n    return `${num}st`;\n  }\n\n  if (j === 2 && k !== 12) {\n    return `${num}nd`;\n  }\n\n  if (j === 3 && k !== 13) {\n    return `${num}rd`;\n  }\n\n  return `${num}th`;\n};\n\n"
  },
  {
    "path": "src/polyfills.js",
    "content": "/**\n * Promise polyfill\n */\nvar Promise = require('promise-polyfill');\n\nif (typeof window !== 'undefined' && !window.Promise) {\n  window.Promise = Promise;\n}\n\n/**\n * Object.assign() polyfill\n */\nrequire('es6-object-assign/auto');\n\n/**\n * String.prototype.includes() polyfill\n * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes#Polyfill\n */\nif (!String.prototype.includes) {\n  String.prototype.includes = function(search, start) {\n    'use strict';\n    if (typeof start !== 'number') {\n      start = 0;\n    }\n\n    if (start + search.length > this.length) {\n      return false;\n    } else {\n      return this.indexOf(search, start) !== -1;\n    }\n  };\n}\n\n/**\n * Array.prototype.includes() polyfill\n * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes#Polyfill\n */\nif (!Array.prototype.includes) {\n  Object.defineProperty(Array.prototype, 'includes', {\n    value: function(searchElement, fromIndex) {\n\n      // 1. Let O be ? ToObject(this value).\n      if (this == null) {\n        throw new TypeError('\"this\" is null or not defined');\n      }\n\n      var o = Object(this);\n\n      // 2. Let len be ? ToLength(? Get(O, \"length\")).\n      var len = o.length >>> 0;\n\n      // 3. If len is 0, return false.\n      if (len === 0) {\n        return false;\n      }\n\n      // 4. Let n be ? ToInteger(fromIndex).\n      //    (If fromIndex is undefined, this step produces the value 0.)\n      var n = fromIndex | 0;\n\n      // 5. If n ≥ 0, then\n      //  a. Let k be n.\n      // 6. Else n < 0,\n      //  a. Let k be len + n.\n      //  b. If k < 0, let k be 0.\n      var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);\n\n      function sameValueZero(x, y) {\n        return x === y || (typeof x === 'number' && typeof y === 'number' && isNaN(x) && isNaN(y));\n      }\n\n      // 7. Repeat, while k < len\n      while (k < len) {\n        // a. Let elementK be the result of ? Get(O, ! ToString(k)).\n        // b. If SameValueZero(searchElement, elementK) is true, return true.\n        // c. Increase k by 1.\n        if (sameValueZero(o[k], searchElement)) {\n          return true;\n        }\n        k++;\n      }\n\n      // 8. Return false\n      return false;\n    }\n  });\n}\n\n/**\n * ChildNode.remove() polyfill\n * @see https://github.com/jserz/js_piece/blob/master/DOM/ChildNode/remove()/remove().md\n */\n\nif (typeof window !== 'undefined') {\n  (function (arr) {\n    arr.forEach(function (item) {\n      if (item.hasOwnProperty('remove')) {\n        return;\n      }\n      Object.defineProperty(item, 'remove', {\n        configurable: true,\n        enumerable: true,\n        writable: true,\n        value: function remove() {\n          this.parentNode.removeChild(this);\n        }\n      });\n    });\n  })([Element.prototype, CharacterData.prototype, DocumentType.prototype]);\n}\n"
  },
  {
    "path": "src/sweetalert.css",
    "content": "@import './css/icons';\n@import './css/text';\n@import './css/buttons';\n@import './css/content';\n@import './css/button-loader';\n\n:root {\n  --swal-modal-width: 478px;\n}\n\n.swal-overlay {\n  position: fixed;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  text-align: center;\n  font-size: 0; /* Remove gap between inline-block elements */\n  overflow-y: auto;\n\n  background-color: rgba(0, 0, 0, 0.4);\n  z-index: 10000;\n  pointer-events: none;\n  opacity: 0;\n  transition: opacity 0.3s;\n  &::before {\n    content: ' ';\n    display: inline-block;\n    vertical-align: middle; /* vertical alignment of the inline element */\n    height: 100%;\n  }\n\n  &--show-modal {\n    opacity: 1;\n    pointer-events: auto;\n\n    & .swal-modal {\n      opacity: 1;\n      pointer-events: auto;\n      box-sizing: border-box;\n      animation: showSweetAlert 0.3s;\n      will-change: transform;\n    }\n  }\n}\n\n.swal-modal {\n  width: var(--swal-modal-width);\n  opacity: 0;\n  pointer-events: none;\n  background-color: white;\n  text-align: center;\n  border-radius: 5px;\n\n  position: static;\n  margin: 20px auto;\n  display: inline-block;\n  vertical-align: middle;\n\n  transform: scale(1);\n  transform-origin: 50% 50%;\n  z-index: 10001;\n  transition: transform 0.3s, opacity 0.2s;\n\n  @media all and (max-width: 500px) {\n    width: calc(100% - 20px);\n  }\n}\n\n@keyframes showSweetAlert {\n  0% {\n    transform: scale(1);\n  }\n  1% {\n    transform: scale(0.5);\n  }\n\n  45% {\n    transform: scale(1.05);\n  }\n\n  80% {\n    transform: scale(0.95);\n  }\n\n  100% {\n    transform: scale(1);\n  }\n}\n\n/*\nTarget IE8-IE10 due to incompability with the css `pointer-event` property.\n@see https://github.com/t4t5/sweetalert/issues/863\n*/\n@media screen\\0 {\n  .swal-overlay {\n    visibility: hidden;\n  }\n\n  .swal-overlay--show-modal {\n    visibility: visible;\n  }\n\n  .swal-button__loader {\n    visibility: hidden;\n  }\n\n  .swal-overlay--show-modal .swal-modal {\n    visibility: visible;\n  }\n\n  .swal-modal {\n    visibility: hidden;\n  }\n}\n"
  },
  {
    "path": "src/sweetalert.d.ts",
    "content": "import swal, { SweetAlert } from \"./core\";\n\ndeclare global {\n  const swal: SweetAlert;\n  const sweetAlert: SweetAlert;\n}\n\nexport default swal;\nexport as namespace swal;\n"
  },
  {
    "path": "src/sweetalert.js",
    "content": "/*\n * This makes sure that we can use the global\n * swal() function, instead of swal.default()\n * See: https://github.com/webpack/webpack/issues/3929\n */\n\nif (typeof window !== 'undefined') {\n  require('./sweetalert.css');\n}\n\nrequire('./polyfills');\n\nvar swal = require('./core').default;\n\nmodule.exports = swal;\n"
  },
  {
    "path": "test/actions.test.ts",
    "content": "import {\n  swal,\n  removeSwal,\n  $$,\n  CLASS_NAMES,\n} from './utils';\n\nconst { \n  OVERLAY,\n  CONFIRM_BUTTON,\n  TITLE,\n} = CLASS_NAMES;\n\nafterEach(() => removeSwal());\n\ndescribe(\"promise value\", () => {\n\n  test(\"dismisses modal by clicking on overlay\", async () => {\n    expect.assertions(1);\n\n    setTimeout(() => {\n      $$(OVERLAY).click();\n    }, 500);\n\n    const value = await swal();\n\n    expect(value).toBeNull();\n  });\n\n  test(\"changes value with setActionValue\", async () => {\n\n    setTimeout(() => {\n      swal.setActionValue(\"test\");\n      $$(CONFIRM_BUTTON).click();\n    }, 500);\n\n    const value = await swal(); \n\n    expect(value).toEqual(\"test\");\n  });\n\n  test(\"changes cancel value with setActionValue\", async () => {\n\n    setTimeout(() => {\n      swal.setActionValue({\n        cancel: \"test\",\n      });\n      $$(OVERLAY).click();\n    }, 500);\n\n    const value = await swal();\n\n    expect(value).toEqual(\"test\");\n  });\n\n  /*\n   * @TODO!\n   *\n  test(\"cannot dismiss if 'clickOutside' is false\", async () => {\n\n  });\n   */\n\n});\n\n"
  },
  {
    "path": "test/button-options.test.ts",
    "content": "import {\n  getButtonListOpts\n} from '../src/modules/options/buttons';\n\ndescribe(\"return buttons options\", () => {\n\n  test(\"returns invisible buttons on false\", () => {\n    const opts = getButtonListOpts(false);\n\n    expect(opts).toMatchObject({\n      cancel: {\n        visible: false,\n      },\n      confirm: {\n        visible: false,\n      },\n    });\n  });\n\n  test(\"returns default obj on true\", () => {\n    const opts = getButtonListOpts(true);\n\n    expect(opts).toMatchObject({\n      cancel: {\n        className: \"\",\n        closeModal: true,\n        text: \"Cancel\",\n        value: null,\n        visible: true,\n      },\n      confirm: {\n        className: \"\",\n        closeModal: true,\n        text: \"OK\",\n        value: true,\n        visible: true,\n      },\n    });\n  });\n\n  test(\"returns single button on string\", () => {\n    const opts = getButtonListOpts(\"Test\");\n\n    expect(opts).toMatchObject({\n      cancel: {\n        visible: false,\n      },\n      confirm: {\n        closeModal: true,\n        text: \"Test\",\n        value: true,\n        visible: true,\n      },\n    });\n  });\n\n  test(\"returns two buttons on array of strings\", () => {\n    const opts = getButtonListOpts([\"Annuler\", \"Confirmer\"]);\n\n    expect(opts).toMatchObject({\n      cancel: {\n        closeModal: true,\n        text: \"Annuler\",\n        value: null,\n        visible: true,\n      },\n      confirm: {\n        closeModal: true,\n        text: \"Confirmer\",\n        value: true,\n        visible: true,\n      },\n    });\n  });\n\n  test(\"returns only cancel button when using boolean in array\", () => {\n    const opts = getButtonListOpts([true, false]);\n\n    expect(opts).toMatchObject({\n      cancel: {\n        closeModal: true,\n        text: \"Cancel\",\n        value: null,\n        visible: true,\n      },\n      confirm: {\n        visible: false,\n      },\n    });\n  });\n\n});\n"
  },
  {
    "path": "test/buttons.test.ts",
    "content": "import {\n  $,\n  swal,\n  removeSwal,\n  $$,\n  onAction,\n  CLASS_NAMES,\n  delay,\n} from './utils';\n\nconst {\n  BUTTON,\n  CONFIRM_BUTTON,\n  CANCEL_BUTTON,\n  MODAL,\n} = CLASS_NAMES;\n\nafterEach(() => removeSwal());\n\ndescribe(\"show buttons\", () => {\n\n  test(\"shows only confirm button by default\", () => {\n    swal();\n\n    expect($$(BUTTON).length).toBe(1);\n    expect($$(BUTTON).hasClass(CONFIRM_BUTTON)).toBeTruthy();\n  });\n\n  test(\"hides all buttons\", () => {\n    swal({\n      buttons: false,\n    });\n\n    expect($$(BUTTON).length).toBe(0);\n  });\n\n  test(\"shows confirm and cancel buttons\", () => {\n    swal({\n      buttons: true,\n    });\n\n    expect($$(BUTTON).length).toBe(2);\n    expect($$(CONFIRM_BUTTON).length).toBe(1);\n    expect($$(CANCEL_BUTTON).length).toBe(1);\n  });\n\n  test(\"sets button text\", () => {\n    swal({\n      button: \"Test\",\n    });\n\n    expect($$(CONFIRM_BUTTON).text()).toBe(\"Test\");\n  });\n\n  test(\"sets button texts with array\", () => {\n    swal({\n      buttons: [\"Stop\", \"Do it\"],\n    });\n\n    expect($$(CONFIRM_BUTTON).text()).toBe(\"Do it\");\n    expect($$(CANCEL_BUTTON).text()).toBe(\"Stop\");\n  });\n\n  test(\"sets default button texts with array\", () => {\n    swal({\n      buttons: [true, true],\n    });\n\n    expect($$(CONFIRM_BUTTON).text()).toBe(\"OK\");\n    expect($$(CANCEL_BUTTON).text()).toBe(\"Cancel\");\n  });\n\n  test(\"uses button object\", () => {\n    swal({\n      buttons: {\n        cancel: \"Run away!\",\n        confirm: true,\n      }\n    });\n\n    expect($$(CANCEL_BUTTON).text()).toBe(\"Run away!\");\n    expect($$(CONFIRM_BUTTON).text()).toBe(\"OK\");\n  });\n\n  test(\"sets more than 2 buttons\", () => {\n    swal({\n      buttons: {\n        cancel: \"Run away!\",\n        catch: {\n          text: \"Throw Pokéball!\",\n        },\n        defeat: true,\n      },\n    });\n\n    expect($$(BUTTON).length).toBe(3);\n    expect($$(CANCEL_BUTTON).text()).toBe(\"Run away!\");\n    expect($$(CONFIRM_BUTTON).length).toBe(0);\n\n    expect($$(`${BUTTON}--catch`).length).toBe(1);\n    expect($$(`${BUTTON}--catch`).text()).toBe(\"Throw Pokéball!\");\n\n    expect($$(`${BUTTON}--defeat`).length).toBe(1);\n    expect($$(`${BUTTON}--defeat`).text()).toBe(\"Defeat\");\n  });\n\n});\n\ndescribe(\"buttons resolve values\", () => {\n\n  test(\"confirm button resolves to true\", async () => {\n    expect.assertions(1);\n\n    setTimeout(() => {\n      $$(CONFIRM_BUTTON).click();\n    }, 500);\n\n    const value = await swal();\n\n    expect(value).toBeTruthy();\n  });\n\n  test(\"cancel button resolves to null\", async () => {\n    expect.assertions(1);\n\n    setTimeout(() => {\n      $$(CANCEL_BUTTON).click();\n    }, 500);\n\n    const value = await swal({\n      buttons: true,\n    });\n\n    expect(value).toBeNull();\n  });\n\n  test(\"can specify resolve value\", async () => {\n    expect.assertions(1);\n\n    setTimeout(() => {\n      $$(CONFIRM_BUTTON).click();\n    }, 500);\n\n    const value = await swal({\n      button: {\n        value: \"test\",\n      },\n    });\n\n    expect(value).toBe(\"test\");\n  });\n\n  test(\"extra button resolves to string by default\", async () => {\n    expect.assertions(1);\n\n    setTimeout(() => {\n      $(`.${BUTTON}--test`).click();\n    }, 500);\n\n    const value = await swal({\n      buttons: {\n        test: true,\n      },\n    });\n\n    expect(value).toBe(\"test\");\n  });\n\n});\n\ndescribe(\"loading\", () => {\n\n  test(\"shows loading state\", async () => {\n    swal({\n      button: {\n        text: \"HEPP\",\n        closeModal: false,\n      },\n    });\n\n    const $button = $(`.${BUTTON}--confirm`);\n\n    expect($button.hasClass('swal-button--loading')).toBeFalsy();\n\n    $button.click();\n\n    expect($button.hasClass('swal-button--loading')).toBeTruthy();\n  });\n\n});\n\ndescribe(\"set class name\", () => {\n\n  test(\"sets single class name as string\", async () => {\n    swal({\n      button: {\n        text: \"TEST\",\n        closeModal: true,\n        className: 'single-class'\n      },\n    });\n\n    const $button = $(`.${BUTTON}--confirm`);\n    expect($button.hasClass('single-class')).toBeTruthy();\n  });\n\n  test(\"sets multiple class names as string\", async () => {\n    swal({\n      button: {\n        text: \"TEST\",\n        closeModal: true,\n        className: 'class1 class2'\n      },\n    });\n\n    const $button = $(`.${BUTTON}--confirm`);\n    expect($button.hasClass('class1')).toBeTruthy();\n    expect($button.hasClass('class2')).toBeTruthy();\n  });\n\n  test(\"sets multiple class names as array\", async () => {\n    swal({\n      button: {\n        text: \"TEST\",\n        closeModal: true,\n        className: [\"class1\", \"class2\"]\n      },\n    });\n\n    const $button = $(`.${BUTTON}--confirm`);\n    expect($button.hasClass('class1')).toBeTruthy();\n    expect($button.hasClass('class2')).toBeTruthy();\n  });\n\n});\n"
  },
  {
    "path": "test/content.test.ts",
    "content": "import {\n  swal,\n  removeSwal,\n  $,\n  $$,\n  CLASS_NAMES,\n} from './utils';\n\nconst {\n  CONTENT,\n  MODAL_TEXT\n} = CLASS_NAMES;\n\nafterEach(() => removeSwal());\n\ndescribe(\"show content\", () => {\n\n  test(\"shows no content by default\", () => {\n    swal(\"Hello\");\n\n    expect($$(CONTENT).length).toBe(0);\n  });\n\n  test(\"shows input when using content: 'input'\", () => {\n    swal({\n      content: \"input\",\n    });\n\n    const inputSelector = `${CONTENT}__input`;\n\n    expect($$(CONTENT).length).toBe(1);\n    expect($$(inputSelector).length).toBe(1);\n    expect($$(inputSelector).get(0).getAttribute('type')).toBeNull();\n  });\n\n  test(\"can customize input with more advanced content options\", () => {\n    swal({\n      content: {\n        element: \"input\",\n        attributes: {\n          placeholder: \"Type your password\",\n          type: \"password\",\n        },\n      },\n    });\n\n    const inputSelector = `${CONTENT}__input`;\n\n    expect($$(CONTENT).length).toBe(1);\n    expect($$(inputSelector).length).toBe(1);\n    expect($$(inputSelector).get(0).getAttribute('type')).toBe('password');\n    expect($$(inputSelector).get(0).getAttribute('placeholder')).toBe('Type your password');\n  });\n\n  test(\"can set content to custom DOM node\", () => {\n    let btn = document.createElement('button');\n    btn.classList.add('custom-element');\n\n    swal({\n      content: btn,\n    });\n\n    expect($$(CONTENT).length).toBe(1);\n    expect($$('custom-element').length).toBe(1);\n  });\n\n});\n\ndescribe(\"show modal text\", () => {\n  test(\"transforms newline to break\", () => {\n    swal('Hello\\nWorld\\n');\n\n    expect($(`.${MODAL_TEXT} br`).length).toBe(2);\n  });\n\n  test(\"escapes HTML elements\", () => {\n    const text = '<script>bad stuff</script>';\n    swal(text);\n\n    expect($(`.${MODAL_TEXT} script`).length).toBe(0);\n    expect($$(MODAL_TEXT).text()).toEqual(expect.stringMatching(text));\n  });\n});\n"
  },
  {
    "path": "test/icons.test.ts",
    "content": "import {\n  swal,\n  $$,\n  CLASS_NAMES,\n  removeSwal,\n} from './utils';\n\nconst { \n  ICON,\n} = CLASS_NAMES;\n\nafterEach(() => removeSwal());\n\ndescribe(\"show icons\", () => {\n\n  test(\"shows icon depending on third argument\", () => {\n    swal(\"Error\", \"An error occurred!\", \"error\");\n\n    expect($$(ICON).length).toBe(1);\n    expect($$(ICON).hasClass(`${ICON}--error`)).toBeTruthy();\n  });\n\n  test(\"shows icon when using 'icon' object key\", () => {\n    swal({\n      icon: 'warning',\n    });\n\n    expect($$(ICON).length).toBe(1);\n    expect($$(ICON).hasClass(`${ICON}--warning`)).toBeTruthy();\n  });\n\n  test(\"hides icon when setting 'icon' key to 'false'\", () => {\n    swal({\n      icon: false,\n    });\n\n    expect($$(ICON).length).toBe(0);\n  });\n\n});\n\n"
  },
  {
    "path": "test/index.test.ts",
    "content": "import {\n  $,\n  swal,\n  removeSwal,\n  $$,\n  CLASS_NAMES,\n} from './utils';\n\nconst { \n  MODAL, \n  OVERLAY, \n  MODAL_TITLE,\n  MODAL_TEXT, \n  ICON,\n  FOOTER,\n} = CLASS_NAMES;\n\nafterEach(() => removeSwal());\n\ndescribe(\"init\", () => {\n\n  test(\"adds elements on first call\", () => {\n    expect($$(OVERLAY).length).toEqual(0);\n\n    swal(\"Hello world!\");\n\n    expect($$(OVERLAY).length).toBe(1);\n    expect($$(MODAL).length).toBe(1);\n  });\n\n});\n\ndescribe(\"string parameters\", () => {\n\n  test(\"shows text when using 1 param\", () => {\n    swal(\"Hello world!\");\n\n    expect($$(MODAL_TEXT).is(':first-child')).toBeTruthy();\n    expect($$(MODAL_TEXT).text()).toBe(\"Hello world!\");\n    expect($$(MODAL_TEXT).next().hasClass(FOOTER)).toBeTruthy();\n  });\n\n  test(\"shows title and text when using 2 params\", () => {\n    swal(\"Title\", \"text\");\n\n    expect($$(MODAL_TITLE).is(':first-child')).toBeTruthy();\n    expect($$(MODAL_TITLE).text()).toBe(\"Title\");\n    expect($$(MODAL_TEXT).text()).toBe(\"text\");\n    expect($$(MODAL_TEXT).next().hasClass(FOOTER)).toBeTruthy();\n  });\n\n  test(\"shows icon, title and text when using 3 params\", () => {\n    swal(\"Oops\", \"text\", \"error\");\n\n    expect($$(ICON).is(':first-child')).toBeTruthy();\n    expect($$(ICON).hasClass(`${ICON}--error`)).toBeTruthy();\n\n    expect($$(MODAL_TITLE).is(':nth-child(2)')).toBeTruthy();\n    expect($$(MODAL_TITLE).text()).toBe(\"Oops\");\n\n    expect($$(MODAL_TEXT).is(':nth-child(3)')).toBeTruthy();\n    expect($$(MODAL_TEXT).text()).toBe(\"text\");\n    expect($$(MODAL_TEXT).next().hasClass(FOOTER)).toBeTruthy();\n  });\n\n});\n\n\n"
  },
  {
    "path": "test/utils.ts",
    "content": "export const swal = require('../dist/sweetalert.min');\n\nexport const $ = require('jquery');\n\nexport const removeSwal = () => $('.swal-overlay').remove();\n\nexport const $$ = (className) => $(`.${className}`);\n\nexport { CLASS_NAMES } from '../src/modules/class-list';\n\nexport const delay = (ms) => {\n  return new Promise(resolve => setTimeout(resolve, ms));\n}\n\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"sourceMap\": true,\n    \"noImplicitAny\": true,\n    \"module\": \"commonjs\",\n    \"declaration\": true,\n    \"declarationDir\": \"typings\",\n    \"target\": \"es5\",\n    \"outDir\": \"tmp\",\n    \"lib\": [\"es2015\", \"es2016\", \"dom\"]\n  },\n  \"include\": [\n    \"./src/*.ts\"\n  ]\n}\n"
  },
  {
    "path": "tslint.json",
    "content": "{\n  \"rules\": {\n    \"no-unused-variable\": true\n  }\n}\n"
  },
  {
    "path": "typings/core.d.ts",
    "content": "import { ActionOptions, SwalState } from './modules/state';\nimport { SwalOptions } from './modules/options';\nexport declare type SwalParams = (string | Partial<SwalOptions>)[];\nexport interface SweetAlert {\n    (...params: SwalParams): Promise<any>;\n    close?(namespace?: string): void;\n    getState?(): SwalState;\n    setActionValue?(opts: string | ActionOptions): void;\n    stopLoading?(): void;\n    setDefaults?(opts: object): void;\n}\ndeclare const swal: SweetAlert;\nexport default swal;\n"
  },
  {
    "path": "typings/modules/actions.d.ts",
    "content": "import { SwalState } from './state';\nexport declare const openModal: () => void;\nexport declare const onAction: (namespace?: string) => void;\nexport declare const getState: () => SwalState;\nexport declare const stopLoading: () => void;\n"
  },
  {
    "path": "typings/modules/class-list/index.d.ts",
    "content": "export interface ClassNameList {\n    [key: string]: string;\n}\nexport declare const CLASS_NAMES: ClassNameList;\nexport default CLASS_NAMES;\n"
  },
  {
    "path": "typings/modules/event-listeners.d.ts",
    "content": "import { SwalOptions } from './options';\ndeclare const addEventListeners: (opts: SwalOptions) => void;\nexport default addEventListeners;\n"
  },
  {
    "path": "typings/modules/init/buttons.d.ts",
    "content": "import { ButtonList } from '../options/buttons';\ndeclare const initButtons: (buttons: ButtonList, dangerMode: boolean) => void;\nexport default initButtons;\n"
  },
  {
    "path": "typings/modules/init/content.d.ts",
    "content": "import { ContentOptions } from '../options/content';\ndeclare const initContent: (opts: ContentOptions) => void;\nexport default initContent;\n"
  },
  {
    "path": "typings/modules/init/icon.d.ts",
    "content": "declare const initIcon: (str: string) => void;\nexport default initIcon;\n"
  },
  {
    "path": "typings/modules/init/index.d.ts",
    "content": "import { SwalOptions } from '../options';\nexport declare const init: (opts: SwalOptions) => void;\nexport default init;\n"
  },
  {
    "path": "typings/modules/init/modal.d.ts",
    "content": "import { SwalOptions } from '../options';\nexport declare const injectElIntoModal: (markup: string) => HTMLElement;\nexport declare const initModalContent: (opts: SwalOptions) => void;\ndeclare const initModalOnce: () => void;\nexport default initModalOnce;\n"
  },
  {
    "path": "typings/modules/init/overlay.d.ts",
    "content": "declare const initOverlayOnce: () => void;\nexport default initOverlayOnce;\n"
  },
  {
    "path": "typings/modules/init/text.d.ts",
    "content": "export declare const initTitle: (title: string) => void;\nexport declare const initText: (text: string) => void;\n"
  },
  {
    "path": "typings/modules/markup/buttons.d.ts",
    "content": "export declare const buttonMarkup: string;\n"
  },
  {
    "path": "typings/modules/markup/content.d.ts",
    "content": "export declare const contentMarkup: string;\n"
  },
  {
    "path": "typings/modules/markup/icons.d.ts",
    "content": "export declare const errorIconMarkup: () => string;\nexport declare const warningIconMarkup: () => string;\nexport declare const successIconMarkup: () => string;\n"
  },
  {
    "path": "typings/modules/markup/index.d.ts",
    "content": "export * from './modal';\nexport { default as overlayMarkup } from './overlay';\nexport * from './icons';\nexport * from './content';\nexport * from './buttons';\nexport declare const iconMarkup: string;\nexport declare const titleMarkup: string;\nexport declare const textMarkup: string;\nexport declare const footerMarkup: string;\n"
  },
  {
    "path": "typings/modules/markup/modal.d.ts",
    "content": "export declare const modalMarkup: string;\nexport default modalMarkup;\n"
  },
  {
    "path": "typings/modules/markup/overlay.d.ts",
    "content": "declare const overlay: string;\nexport default overlay;\n"
  },
  {
    "path": "typings/modules/options/buttons.d.ts",
    "content": "export interface ButtonOptions {\n    visible?: boolean;\n    text?: string;\n    value?: any;\n    className?: string | Array<string>;\n    closeModal?: boolean;\n}\nexport interface ButtonList {\n    [buttonNamespace: string]: ButtonOptions | boolean;\n}\nexport declare const CONFIRM_KEY = \"confirm\";\nexport declare const CANCEL_KEY = \"cancel\";\nexport declare const defaultButtonList: ButtonList;\nexport declare const getButtonListOpts: (opts: string | boolean | object) => ButtonList;\n"
  },
  {
    "path": "typings/modules/options/content.d.ts",
    "content": "export interface ContentOptions {\n    element: string | Node;\n    attributes?: object;\n}\nexport declare const getContentOpts: (contentParam: string | object) => ContentOptions;\n"
  },
  {
    "path": "typings/modules/options/deprecations.d.ts",
    "content": "export declare const logDeprecation: (name: string) => void;\nexport interface OptionReplacement {\n    replacement?: string;\n    onlyRename?: boolean;\n    subOption?: string;\n    link?: string;\n}\nexport interface OptionReplacementsList {\n    [name: string]: OptionReplacement;\n}\nexport declare const DEPRECATED_OPTS: OptionReplacementsList;\n"
  },
  {
    "path": "typings/modules/options/index.d.ts",
    "content": "import { ButtonList } from './buttons';\nimport { ContentOptions } from './content';\nexport interface SwalOptions {\n    title: string;\n    text: string;\n    icon: string;\n    buttons: ButtonList | Array<string | boolean>;\n    content: ContentOptions;\n    className: string;\n    closeOnClickOutside: boolean;\n    closeOnEsc: boolean;\n    dangerMode: boolean;\n    timer: number;\n}\nexport declare const setDefaults: (opts: object) => void;\nexport declare const getOpts: (...params: (string | Partial<SwalOptions>)[]) => SwalOptions;\n"
  },
  {
    "path": "typings/modules/state.d.ts",
    "content": "export interface SwalState {\n    isOpen: boolean;\n    promise: {\n        resolve?(value: string): void;\n        reject?(): void;\n    };\n    actions: {\n        [namespace: string]: {\n            value?: string | any;\n            closeModal?: boolean;\n        };\n    };\n    timer: number;\n}\nexport interface ActionOptions {\n    [buttonNamespace: string]: {\n        value?: string;\n        closeModal?: boolean;\n    };\n}\ndeclare let state: SwalState;\nexport declare const resetState: () => void;\nexport declare const setActionValue: (opts: string | ActionOptions) => void;\nexport declare const setActionOptionsFor: (buttonKey: string, {closeModal}?: {\n    closeModal?: boolean;\n}) => void;\nexport default state;\n"
  },
  {
    "path": "typings/modules/utils.d.ts",
    "content": "export declare const getNode: (className: string) => HTMLElement;\nexport declare const stringToNode: (html: string) => HTMLElement;\nexport declare const insertAfter: (newNode: Node, referenceNode: Node) => void;\nexport declare const removeNode: (node: Node) => void;\nexport declare const throwErr: (message: string) => never;\nexport declare const isPlainObject: (value: any) => boolean;\nexport declare const ordinalSuffixOf: (num: number) => string;\n"
  },
  {
    "path": "typings/sweetalert.d.ts",
    "content": "import { SweetAlert } from \"./core\";\n\ndeclare global {\n  const sweetAlert: SweetAlert;\n}\ndeclare const swal: SweetAlert;\nexport default swal;\nexport as namespace swal;\n"
  },
  {
    "path": "webpack.config.js",
    "content": "const path = require('path');\nconst webpack = require('webpack');\nconst BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;\nconst CopyWebpackPlugin = require('copy-webpack-plugin');\n\nmodule.exports = (_env, args) => {\n\n  const IS_PROD = args.p;\n\n  const BUILD_PATH = 'dist';\n  const JS_FILE_NAME = 'sweetalert.min.js';\n  const devtool = IS_PROD ? false : 'source-map';\n\n  const plugins = [\n    new webpack.optimize.ModuleConcatenationPlugin(),\n    //new BundleAnalyzerPlugin(),\n  ];\n\n  if (IS_PROD) {\n    plugins.push(\n      new CopyWebpackPlugin([{\n        from: 'sweetalert.d.ts',\n        to: '../typings/sweetalert.d.ts',\n      }])\n    );\n  }\n\n  return {\n    context: path.resolve(__dirname, 'src'),\n    entry: './sweetalert.js',\n    plugins,\n\n    output: {\n      path: path.resolve(__dirname, BUILD_PATH),\n      filename: JS_FILE_NAME,\n      library: 'swal',\n      libraryTarget: 'umd',\n    },\n\n    resolve: {\n      extensions: [\n        \".ts\",\n        \".js\",\n      ],\n    },\n\n    module: {\n      rules: [\n        {\n          // Expose global swal() function\n          test: require.resolve(\"./src/sweetalert\"),\n          use: [{\n            loader: 'expose-loader',\n            options: 'sweetAlert'\n          }, {\n            loader: 'expose-loader',\n            options: 'swal'\n          }],\n        },\n        {\n          enforce: 'pre',\n          test: /\\.ts?$/,\n          loader: 'tslint-loader',\n          options: {\n            configFile: './tslint.json',\n            typeCheck: true,\n          },\n          exclude: /(node_modules)/,\n        },\n        {\n          /* Compile TypeScript */\n          test: /\\.ts$/,\n          use: 'ts-loader',\n          exclude: /node_modules/,\n        },\n        {\n          /* Use PostCSS */\n          test: /\\.css$/,\n          use: [\n            {\n              loader: 'style-loader',\n              options: {\n                insertAt: 'top',\n              },\n            },\n            { \n              loader: 'css-loader', \n              options: { \n                importLoaders: 1 \n              } \n            },\n            'postcss-loader',\n          ]\n        }\n      ],\n    },\n\n    stats: {\n      colors: true,\n    },\n\n    devtool,\n  }\n};\n"
  }
]