[
  {
    "path": ".babelrc",
    "content": "// Babel config for Node\n// Compiles sources, gulpfile and tests\n{\n  \"presets\": [\n    [\n      \"@babel/preset-env\",\n      {\n        \"targets\": { \"node\": \"16.20.2\" }\n      }\n    ]\n  ]\n}\n"
  },
  {
    "path": ".browserslistrc",
    "content": "# Supported browsers\n\nlast 2 Chrome major versions\nlast 2 Firefox major versions\nlast 1 Safari major version\n"
  },
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\ncharset = utf-8\n\nindent_style = space\nindent_size = 2\n\nend_of_line = lf\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n\n[*.md]\ntrim_trailing_whitespace = false\n"
  },
  {
    "path": ".github/workflows/main.yml",
    "content": "name: main\non:\n  push:\n    branches:\n      - main\n  pull_request:\njobs:\n  build-and-test:\n    strategy:\n      fail-fast: false\n      matrix:\n        node:\n          - version: 20.x\n          - version: 22.x\n          - version: 24.x\n    runs-on: ubuntu-22.04\n    name: Tests on Node.js v${{ matrix.node.version }}\n    steps:\n      - name: Checkout repo\n        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2\n\n      - name: Setup node\n        uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0\n        with:\n          node-version: ${{ matrix.node.version }}\n          cache: npm\n\n      - name: Install dependencies\n        run: npm ci\n\n      - name: Build sources\n        run: ${{ matrix.node.env }} npm run build\n\n      - name: Run tests\n        run: ${{ matrix.node.env }} npm run test:coverage\n\n      - name: Codecov\n        uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2\n        env:\n          CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}\n\n  lint:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout repo\n        uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2\n\n      - name: Setup node\n        uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0\n        with:\n          node-version: \"22.x\"\n          cache: npm\n\n      - name: Install dependencies\n        run: npm ci\n\n      - name: Build sources\n        run: npm run build\n\n      - name: Run lint\n        run: npm run lint\n"
  },
  {
    "path": ".gitignore",
    "content": "/lib\n/public\n/samples\nnode_modules\nnpm-debug.log\n.eslintcache\n"
  },
  {
    "path": ".npm-upgrade.json",
    "content": "{\n  \"ignore\": {\n    \"mobx\": {\n      \"versions\": \">=6\",\n      \"reason\": \"v6 drops decorators\"\n    },\n    \"mobx-react\": {\n      \"versions\": \">=7\",\n      \"reason\": \"v7 requires MobX v6\"\n    },\n    \"webpack-cli\": {\n      \"versions\": \">=4\",\n      \"reason\": \"Current version of Webpack Dev Server doesn't work with v4\"\n    }\n  }\n}\n"
  },
  {
    "path": ".nvmrc",
    "content": "v22.14.0\n"
  },
  {
    "path": ".prettierignore",
    "content": "test/bundles/**\ntest/stats/**\ntest/output/**\nsamples/**\nCHANGELOG.md\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "# Changelog\n\n> **Tags:**\n> - [Breaking Change]\n> - [New Feature]\n> - [Improvement]\n> - [Bug Fix]\n> - [Internal]\n> - [Documentation]\n\n_Note: Gaps between patch versions are faulty, broken or test releases._\n\n## UNRELEASED\n\n* **Bug Fix**\n  * Fix a race condition in `writeStats` that could lead to incorrect content in `stats.json` ([#711](https://github.com/webpack/webpack-bundle-analyzer/pull/711) by [@colinaaa](https://github.com/colinaaa))\n\n## 5.2.0\n\n* **New Feature**\n  * Add support for Zstandard compression ([#693](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/693) by [@bjohansebas](https://github.com/bjohansebas))\n\n* **Internal**\n  * Prettier applied to the code base ([#693](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/694) by [@alexander-akait](https://github.com/alexander-akait))\n  * Update `sirv` dependency ([#692](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/692) by [@bjohansebas](https://github.com/bjohansebas))\n  * Update `ws` dependency ([#691](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/691) by [@bjohansebas](https://github.com/bjohansebas))\n\n## 5.1.1\n\n* **Bug Fix**\n  * Fix tooltip styling in dark mode when using CSS Modules ([#688](https://github.com/webpack/webpack-bundle-analyzer/pull/688) by [@theEquinoxDev](https://github.com/theEquinoxDev))\n  * Avoid parse failures for bundles with IIFE ([#685](https://github.com/webpack/webpack-bundle-analyzer/pull/685) by [@hai-x](https://github.com/hai-x))\n\n## 5.1.0\n\n* **Bug Fix**\n  * Prevent `TypeError` when `assets` or `modules` are undefined in `analyzer.js`\n    ([#679](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/679) by [@Srushti-33](https://github.com/Srushti-33))\n\n* **New Feature**\n  * Add optional dark/light mode toggle ([#683](https://github.com/webpack/webpack-bundle-analyzer/pull/683) by [@theEquinoxDev](https://github.com/theEquinoxDev))\n\n\n## 5.0.1\n\n* **Bug Fix**\n  * Restore `@babel/plugin-transform-class-properties` to fix HTML report ([#682](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/682) by [@valscion](https://github.com/valscion))\n\n## 5.0.0\n\n* **Breaking Change**\n  * Remove explicit support for Node versions below 20.9.0 ([#676](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/676) by [@valscion](https://github.com/valscion))\n\n* **Improvement**\n  * Parse bundles as ES modules based on stats JSON information ([#649](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/649) by [@eamodio](https://github.com/eamodio))\n\n* **New Feature**\n  * Add support for Brotli compression ([#663](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/663) by [@dcsaszar](https://github.com/dcsaszar))\n  * Add support for React Native ([666](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/666) by [@ilteoood](https://github.com/ilteoood))\n\n## 4.10.2\n\n* **Bug Fix**\n  * fix `.cjs` files not being handled ([#512](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/512) by [@Rush](https://github.com/Rush))\n\n* **Internal**\n  * Remove `is-plain-object` ([#627](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/627) by [@SukkaW](https://github.com/SukkaW))\n\n## 4.10.1\n\n* **Bug Fix**\n  * fix `this.handleValueChange.cancel()` is not a function ([#611](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/625) by [@life2015](https://github.com/life2015))\n\n## 4.10.0\n\n* **Improvement**\n  * Allows filtering the list of entrypoints ([#624](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/624) by [@chriskrogh](https://github.com/chriskrogh))\n\n* **Internal**\n  * Make module much slimmer by replacing all `lodash.*` packages ([#612](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/612)) by [@sukkaw](https://github.com/sukkaw).\n\n## 4.9.1\n\n* **Internal**\n  * Replace some lodash usages with JavaScript native API ([#505](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/505)) by [@sukkaw](https://github.com/sukkaw).\n  * Make module much slimmer ([#609](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/609)) by [@sukkaw](https://github.com/sukkaw).\n\n* **Bug Fix**\n  * fix `analyzerMode: 'server'` on certain machines ([#611](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/611) by [@panbenson](https://github.com/panbenson))\n\n## 4.9.0\n\n* **Improvement**\n  * Display modules included in concatenated entry modules on Webpack 5 when \"Show content of concatenated modules\" is checked ([#602](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/602) by [@pgoldberg](https://github.com/pgoldberg))\n\n## 4.8.0\n\n * **Improvement**\n   * Support reading large (>500MB) stats.json files ([#423](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/423) by [@henry-alakazhang](https://github.com/henry-alakazhang))\n   * Improve search UX by graying out non-matches ([#554](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/554) by [@starpit](https://github.com/starpit))\n\n * **Internal**\n   * Add Node.js v16.x to CI and update GitHub actions ([#539](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/539) by [@amareshsm](https://github.com/amareshsm))\n\n## 4.7.0\n\n * **New Feature**\n   * Add the ability to filter to displaying only initial chunks per entrypoint ([#519](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/519) by [@pas-trop-de-zele](https://github.com/pas-trop-de-zele))\n\n## 4.6.1\n\n* **Bug Fix**\n  * fix outputting different URL in cli mode ([#524](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/524) by [@southorange1228](https://github.com/southorange1228))\n\n## 4.6.0\n\n* **New Feature**\n  * Support outputting different URL in server mode ([#520](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/520) by [@southorange1228](https://github.com/southorange1228))\n  * Use deterministic chunk colors (#[501](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/501) by [@CreativeTechGuy](https://github.com/CreativeTechGuy))\n\n## 4.5.0\n\n * **Improvement**\n   * Stop publishing src folder to npm ([#478](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/478) by [@wood1986](https://github.com/wood1986))\n\n* **Internal**\n  * Update some dependencies ([#448](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/448))\n  * Replace nightmare with Puppeteer ([#469](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/469) by [@valscion](https://github.com/valscion))\n  * Replace Mocha with Jest ([#470](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/470) by [@valscion](https://github.com/valscion))\n\n## 4.4.2\n\n * **Bug Fix**\n   * Fix failure with `compiler.outputFileSystem.constructor` being `undefined` ([#447](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/447) by [@kedarv](https://github.com/kedarv) and [@alexander-akait](https://github.com/alexander-akait))\n     * **NOTE:** This fix doesn't have added test coverage so the fix might break in future versions unless test coverage is added later.\n\n## 4.4.1\n\n * **Bug Fix**\n   * Fix missing module chunks ([#433](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/433) by [@deanshub](https://github.com/deanshub))\n\n * **Internal**\n   * Fix tests timing out in CI ([#435](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/435) by [@deanshub](https://github.com/deanshub))\n   * Fix command in issue template ([#428](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/428) by [@cncolder](https://github.com/cncolder))\n\n## 4.4.0\n\n * **Improvement**\n   * Keep treemap labels visible during zooming animations for better user experience ([#414](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/414) by [@stanislawosinski](https://github.com/stanislawosinski))\n\n * **Bug Fix**\n   * Don't show an empty tooltip when hovering over the FoamTree attribution group or between top-level groups ([#413](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/413) by [@stanislawosinski](https://github.com/stanislawosinski))\n\n * **Internal**\n   * Upgrade FoamTree to version 3.5.0, replace vendor dependency with an NPM package ([#412](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/412) by [@stanislawosinski](https://github.com/stanislawosinski))\n\n## 4.3.0\n\n * **Improvement**\n   * Replace express with builtin node server, reducing number of dependencies ([#398](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/398) by [@TrySound](https://github.com/TrySound))\n   * Move `filesize` to dev dependencies, reducing number of dependencies ([#401](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/401) by [@realityking](https://github.com/realityking))\n\n * **Internal**\n   * Replace Travis with GitHub actions ([#402](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/402) by [@valscion](https://github.com/valscion))\n\n## 4.2.0\n\n * **Improvement**\n   * A  number of improvements to reduce the number of dependencies ([#391](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/391), [#396](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/396), [#397](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/397))\n\n * **Bug Fix**\n   * Prevent crashes for bundles generated from webpack array configs. ([#394](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/394) by [@ctavan](https://github.com/ctavan))\n   * Fix `non-asset` assets causing analyze failure. ([#385](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/385) by [@ZKHelloworld](https://github.com/ZKHelloworld))\n\n## 4.1.0\n\n * **Improvement**\n   * Significantly speed up generation of `stats.json` file (see `generateStatsFile` option).\n\n## 4.0.0\n\n * **Breaking change**\n   * Dropped support for Node.js 6 and 8. Minimal required version now is v10.13.0\n\n * **Improvement**\n   * Support for Webpack 5\n\n * **Bug Fix**\n   * Prevent crashes when `openAnalyzer` was set to true in environments where there's no program to handle opening. ([#382](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/382) by [@wbobeirne](https://github.com/wbobeirne))\n\n * **Internal**\n   * Updated dependencies\n   * Added support for multiple Webpack versions in tests\n\n## 3.9.0\n\n * **New Feature**\n   * Adds option `reportTitle` to set title in HTML reports; default remains date of report generation ([#354](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/354) by [@eoingroat](https://github.com/eoingroat))\n\n * **Improvement**\n    * Added capability to parse bundles that have child assets generated ([#376](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/376) by [@masterkidan](https://github.com/masterkidan) and [#378](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/378) by [@https://github.com/dabbott](https://github.com/https://github.com/dabbott))\n\n## 3.8.0\n\n * **Improvement**\n   * Added support for exports.modules when webpack target = node ([#345](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/345) by [@Spikef](https://github.com/Spikef))\n\n * **New Feature**\n   * Support [WebWorkerChunkTemplatePlugin](https://github.com/webpack/webpack/blob/c9d4ff7b054fc581c96ce0e53432d44f9dd8ca72/lib/webworker/WebWorkerChunkTemplatePlugin.js) ([#353](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/353) by [@Gongreg](https://github.com/Gongreg))\n\n * **Bug Fix**\n   * Support any custom `globalObject` option in Webpack Config. ([#352](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/352) by [@Gongreg](https://github.com/Gongreg))\n\n## 3.7.0\n\n * **New Feature**\n   * Added JSON output option (`analyzerMode: \"json\"` in plugin, `--mode json` in CLI) ([#341](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/341) by [@Gongreg](https://github.com/Gongreg))\n\n * **Improvement**\n   * Persist \"Show content of concatenated modules\" option ([#322](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/322) by [@lorenzos](https://github.com/lorenzos))\n\n## 3.6.1\n\n * **Bug Fix**\n   * Add leading zero to hour & minute on `<title />` when needed ([#314](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/314) by [@mhxbe](https://github.com/mhxbe))\n\n * **Internal**\n   * Update some dependencies to get rid of vulnerability warnings ([#339](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/339))\n\n## 3.6.0\n\n * **Improvement**\n   * Support webpack builds where `output.globalObject` is set to `'self'` ([#323](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/323) by [@lemonmade](https://github.com/lemonmade))\n   * Improve readability of tooltips ([#320](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/320) by [@lorenzos](https://github.com/lorenzos))\n\n## 3.5.2\n\n * **Bug Fix**\n   * Fix sidebar not showing visibility status of chunks hidden via popup menu (issue [#316](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/316) by [@gaokun](https://github.com/gaokun), fixed in [#317](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/317) by [@bregenspan](https://github.com/bregenspan))\n\n## 3.5.1\n\n * **Bug Fix**\n   * Fix regression in support of webpack dev server and `webpack --watch` (issue [#312](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/312), fixed in [#313](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/313) by [@gaokun](https://github.com/gaokun))\n\n## 3.5.0\n\n * **Improvements**\n   * Improved report title and added favicon ([#310](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/310), [@gaokun](https://github.com/gaokun))\n\n## 3.4.1\n\n * **Bug Fix**\n   * Fix regression of requiring an object to be passed to `new BundleAnalyzerPlugin()` (issue [#300](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/300), fixed in [#302](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/302) by [@jerryOnlyZRJ](https://github.com/jerryOnlyZRJ))\n\n## 3.4.0\n\n * **Improvements**\n   * Add `port: 'auto'` option ([#290](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/290), [@avin-kavish](https://github.com/avin-kavish))\n\n * **Bug Fix**\n   * Avoid mutation of the generated `stats.json` ([#293](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/293), [@wood1986](https://github.com/wood1986))\n\n * **Internal**\n   * Use Autoprefixer ([#266](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/266), [@bregenspan](https://github.com/bregenspan))\n   * Detect `AsyncMFS` to support dev-server of Nuxt 2.5 and above ([#275](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/275), [@amoshydra](https://github.com/amoshydra))\n\n## 3.3.2\n\n * **Bug Fix**\n   * Fix regression with escaping internal assets ([#264](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/264), fixes [#263](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/263))\n\n## 3.3.1\n\n * **Improvements**\n   * Use relative links for serving internal assets ([#261](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/261), fixes [#254](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/254))\n   * Properly escape embedded JS/JSON ([#262](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/262))\n\n * **Bug Fix**\n   * Fix showing help message on `-h` flag ([#260](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/260), fixes [#239](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/239))\n\n## 3.3.0\n\n * **New Feature**\n   * Show/hide chunks using context menu ([#246](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/246), [@bregenspan](https://github.com/bregenspan))\n\n * **Internal**\n   * Updated dev dependencies\n\n## 3.2.0\n\n * **Improvements**\n   * Add support for .mjs output files ([#252](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/252), [@jlopezxs](https://github.com/jlopezxs))\n\n## 3.1.0\n\n * **Bug Fix**\n   * Properly determine the size of the modules containing special characters ([#223](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/223), [@hulkish](https://github.com/hulkish))\n   * Update acorn to v6 ([#248](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/248), [@realityking](https://github.com/realityking))\n\n## 3.0.4\n\n * **Bug Fix**\n   * Make webpack's done hook wait until analyzer writes report or stat file ([#247](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/247), [@mareolan](https://github.com/mareolan))\n\n## 3.0.3\n\n * **Bug Fix**\n   * Disable viewer websocket connection when report is generated in `static` mode ([#215](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/215), [@sebastianhaeni](https://github.com/sebastianhaeni))\n\n## 3.0.2\n\n * **Improvements**\n   * Drop `@babel/runtime` dependency ([#209](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/209), [@realityking](https://github.com/realityking))\n   * Properly specify minimal Node.js version in `.babelrc` ([#209](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/209), [@realityking](https://github.com/realityking))\n\n * **Bug Fix**\n   * Move some \"dependencies\" to \"devDependencies\" ([#209](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/209), [@realityking](https://github.com/realityking))\n\n## 3.0.1\n\n * **Bug Fix**\n   * Small UI fixes\n\n## 3.0.0\n\n * **Breaking change**\n   * Dropped support for Node.js v4. Minimal required version now is v6.14.4\n   * Contents of concatenated modules are now hidden by default because of a number of related issues ([details](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/188)), but can be shown using a new checkbox in the sidebar.\n\n * **New Feature**\n   * Added modules search\n   * Added ability to pin and resize the sidebar\n   * Added button to toggle the sidebar\n   * Added checkbox to show/hide contents of concatenated modules\n\n * **Improvements**\n   * Nested folders that contain only one child folder are now visually merged i.e. `folder1 => folder2 => file1` is now shown like `folder1/folder2 => file1` (thanks to [@varun-singh-1](https://github.com/varun-singh-1) for the idea)\n\n * **Internal**\n   * Dropped support for Node.js v4\n   * Using MobX for state management\n   * Updated dependencies\n\n## 2.13.1\n\n * **Improvement**\n   * Pretty-format the generated stats.json ([#180](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/180)) [@edmorley](https://github.com/edmorley))\n\n * **Bug Fix**\n   * Properly parse Webpack 4 async chunk with `Array.concat` optimization ([#184](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/184), fixes [#183](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/183))\n\n * **Internal**\n   * Refactor bundle parsing logic ([#184](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/184))\n\n## 2.13.0\n\n * **Improvement**\n   * Loosen bundle parsing logic ([#181](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/181)). Now analyzer will still show parsed sizes even if:\n     * It can't parse some bundle chunks. Those chunks just won't have content in the report. Fixes issues like [#160](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/160).\n     * Some bundle chunks are missing (it couldn't find files to parse). Those chunks just won't be visible in the report for parsed/gzipped sizes.\n\n## 2.12.0\n\n * **New Feature**\n   * Add option that allows to exclude assets from the report ([#178](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/178))\n\n## 2.11.3\n\n * **Bug Fix**\n   * Filter out modules that weren't found during bundles parsing ([#177](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/177))\n\n## 2.11.2\n\n * **Bug Fix**\n   * Properly process stat files that contain modules inside of `chunks` array ([#175](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/175))\n   * Fix parsing of async chunks that push to `this.webpackJsonp` array ([#176](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/176))\n\n## 2.11.1\n\n * **Improvement**\n   * Add support for parsing Webpack 4's chunked modules ([#159](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/159), [@jdelStrother](https://github.com/jdelStrother))\n\n## 2.11.0\n\n * **Improvement**\n   * Show contents of concatenated module (requires Webpack 4) ([#158](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/158), closes [#157](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/157))\n\n## 2.10.1\n\n * **Improvement**\n   * Support webpack 4 without deprecation warnings. @ai in [#156](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/156), fixes [#154](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/154)\n\n## 2.10.0\n\n * **Bug Fix**\n   * Fix \"out of memory\" crash when dealing with huge stats objects ([#129](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/129), [@ryan953](https://github.com/ryan953))\n\n * **Internal**\n   * Update dependencies ([#146](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/146))\n   * Update gulp to v4 and simplify gulpfile ([#146](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/146), [#149](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/149))\n   * Simplify ESLint configs ([#148](https://github.com/webpack-contrib/webpack-bundle-analyzer/pull/148))\n\n## 2.9.2\n\n * **Bug Fix**\n   * Add a listener for the 'error' event on the WebSocket server client (#140)\n\n * **Internal**\n   * Clean up .travis.yml (#140)\n   * Update ws to version 4.0.0 (#140)\n\n## 2.9.1\n\n * **Bug Fix**\n   * Bump `ws` dependency to fix DoS vulnerability (closes [#130](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/130))\n\n## 2.9.0\n * **New Feature**\n   * Show chunk sizes in sidebar (closes #91)\n\n * **Bug Fix**\n   * Properly parse webpack bundles that use arrow functions as module wrappers (#108, @regiontog)\n\n## 2.8.3\n * **Bug Fix**\n   * Correctly advertise port when using a random one (#89, @yannickcr)\n   * Add proper support for `multi` entries (fixes #92, #87)\n   * Support parsing of ESNext features (fixes #94)\n\n## 2.8.2\n * **Improvement**\n   * Greatly improved accuracy of gzip sizes\n\n * **Bug Fix**\n   * Generate report file in the bundle output directory when used with Webpack Dev Server (fixes #75)\n\n## 2.8.1\n * **Improvement**\n   * Improve warning message when analyzer client couldn't connect to WebSocket server\n\n## 2.8.0\n * **Improvement**\n   * Analyzer now supports `webpack --watch` and Webpack Dev Server!\n     It will automatically update modules treemap according to changes in the sources via WebSockets!\n\n * **Internal**\n   * Use `babel-preset-env` and two different Babel configs to compile node and browser code\n   * Update deps\n\n## 2.7.0\n * **New Feature**\n   * Add control to sidebar that allows to choose shown chunks (closes #71 and partially addresses #38)\n\n## 2.6.0\n * **New Feature**\n   * Add `defaultSizes` option (closes #52)\n\n## 2.5.0\n * **New Feature**\n   * Added `--host` CLI option (@difelice)\n\n## 2.4.1\n * **Improvement**\n   * Support `NamedChunksPlugin` (@valscion)\n\n## 2.4.0\n * **Bug Fix**\n   * Fix `TypeError: currentFolder.addModule is not a function`\n\n * **Internal**\n   * Update deps\n\n## 2.3.1\n * **Improvement**\n   * Improve compatibility with Webpack 2 (@valscion)\n\n## 2.3.0\n * **Improvement**\n   * Add `analyzerHost` option (@freaz)\n\n * **Internal**\n   * Update deps\n\n## 2.2.3\n * **Bug Fix**\n   * Support bundles that uses `Array.concat` expression in modules definition (@valscion)\n\n## 2.2.1\n * **Bug Fix**\n   * Fix regression in analyzing stats files with non-empty `children` property (@gbakernet)\n\n## 2.2.0\n * **Improvement**\n   * Improve treemap sharpness on hi-res displays (fixes #33)\n   * Add support for stats files with all the information under `children` property (fixes #10)\n\n * **Internal**\n   * Update deps\n\n## 2.1.1\n * **Improvement**\n   * Add support for `output.jsonpFunction` webpack config option (fixes #16)\n\n## 2.1.0\n * **New Feature**\n   * Add `logLevel` option (closes #19)\n\n## 2.0.1\n * **Bug Fix**\n   * Support query in bundle filenames (fixes #22)\n\n * **Internal**\n   * Minimize CSS for report UI\n\n## 2.0.0\n * **New Feature**\n   * Analyzer now also shows gzipped sizes (closes #6)\n   * Added switcher that allows to choose what sizes will be used to generate tree map.\n     Just move your mouse to the left corner of the browser and settings sidebar will appear.\n\n * **Bug Fix**\n   * Properly show sizes for some asset modules (e.g. CSS files loaded with `css-loader`)\n\n * **Internal**\n   * Completely rewritten analyzer UI. Now uses Preact and Webpack 2.\n\n## 1.5.4\n\n * **Bug Fix**\n   * Fix bug when Webpack build is being controlled by some wrapper like `grunt-webpack` (see #21)\n\n## 1.5.3\n\n * **Bug Fix**\n   * Workaround `Express` bug that caused wrong `ejs` version to be used as view engine (fixes #17)\n\n## 1.5.2\n\n * **Bug Fix**\n   * Support array module descriptors that can be generated if `DedupePlugin` is used (fixes #4)\n\n## 1.5.1\n\n * **Internal**\n   * Plug analyzer to Webpack compiler `done` event instead of `emit`. Should fix #15.\n\n## 1.5.0\n\n * **New Feature**\n   * Add `statsOptions` option for `BundleAnalyzerPlugin`\n\n## 1.4.2\n\n * **Bug Fix**\n   * Fix \"Unable to find bundle asset\" error when bundle name starts with `/` (fixes #3)\n\n## 1.4.1\n\n * **Bug Fix**\n   * Add partial support for `DedupePlugin` (see #4 for more info)\n\n## 1.4.0\n\n * **New Feature**\n   * Add \"static report\" mode (closes #2)\n\n## 1.3.0\n\n * **Improvement**\n   * Add `startAnalyzer` option for `BundleAnalyzerPlugin` (fixes #1)\n * **Internal**\n   * Make module much slimmer - remove/replace bloated dependencies\n\n## 1.2.5\n\n * Initial public release\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing\n\nTo contribute to `webpack-bundle-analyzer`, fork the repository and clone it to your machine. [See this GitHub help page for what forking and cloning means](https://help.github.com/articles/fork-a-repo/)\n\n## Setup packages\n\nNext, install this package's dependencies:\n\n```sh\nnpm i\n```\n\n## Develop with your own project\n\nRun the following to build this library and watch its source files for changes:\n\n```sh\nnpm run start\n```\n\nYou will now have a fully functioning local build of this library ready to be used. **Leave the `start` script running**, and continue with a new Terminal/shell window.\n\nLink the local package with `yarn` and/or `npm` to use it in your own projects:\n\n```sh\n# Needed if your own project uses `yarn` to handle dependencies:\nyarn link\n# Needed if your own project uses `npm` to handle dependencies:\nnpm link\n```\n\nNow go to your own project directory, and tell `npm` or `yarn` to use the local copy of `webpack-bundle-analyzer` package:\n\n```sh\ncd /path/to/my/own/project\n# If you're using yarn, run this:\nyarn link webpack-bundle-analyzer\n# ...and if you're not, and you're using just npm in your own\n# project, run this:\nnpm link webpack-bundle-analyzer\n```\n\nNow when you call `require('webpack-bundle-analyzer')` in your own project, you will actually be using the local copy of the `webpack-bundle-analyzer` project.\n\nIf your own project's Webpack config has `BundleAnalyzerPlugin` configured with `analyzerMode: 'server'`, the changes you do inside `client` folder within your local copy of `webpack-bundle-analyzer` should now be immediately visible after you refresh your browser page. Hack away!\n\n## Send your changes back to us! :revolving_hearts:\n\nWe'd love for you to contribute your changes back to `webpack-bundle-analyzer`! To do that, it would be ace if you could commit your changes to a separate feature branch and open a Pull Request for those changes.\n\nPoint your feature branch to use the `main` branch as the base of this PR. The exact commands used depends on how you've setup your local git copy, but the flow could look like this:\n\n```sh\n# Inside your own copy of `webpack-bundle-analyzer` package...\ngit checkout --branch feature-branch-name-here upstream/main\n# Then hack away, and commit your changes:\ngit add -A\ngit commit -m \"Few words about the changes I did\"\n# Push your local changes back to your fork\ngit push --set-upstream origin feature-branch-name-here\n```\n\nAfter these steps, you should be able to create a new Pull Request for this repository. If you hit any issues following these instructions, please open an issue and we'll see if we can improve these instructions even further.\n\n## Add tests for your changes :tada:\n\nIt would be really great if the changes you did could be tested somehow. Our tests live inside the `test` directory, and they can be run with the following command:\n\n```sh\nnpm run test-dev\n```\n\nNow whenever you change some files, the tests will be rerun immediately. If you don't want that, and want to run tests as a one-off operation, you can use:\n\n```sh\nnpm test\n```\n"
  },
  {
    "path": "LICENSE",
    "content": "Copyright JS Foundation and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n'Software'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "[![npm][npm]][npm-url]\n[![node][node]][node-url]\n[![tests][tests]][tests-url]\n[![downloads][downloads]][downloads-url]\n\n<div align=\"center\">\n  <a href=\"https://github.com/webpack/webpack\">\n    <img width=\"200\" height=\"200\"\n      src=\"https://webpack.js.org/assets/icon-square-big.svg\">\n  </a>\n  <h1>Webpack Bundle Analyzer</h1>\n  <p>Visualize size of webpack output files with an interactive zoomable treemap.</p>\n</div>\n\n<h2 align=\"center\">Install</h2>\n\n```bash\n# NPM\nnpm install --save-dev webpack-bundle-analyzer\n# Yarn\nyarn add -D webpack-bundle-analyzer\n```\n\n<h2 align=\"center\">Usage (as a plugin)</h2>\n\n```js\nconst { BundleAnalyzerPlugin } = require(\"webpack-bundle-analyzer\");\n\nmodule.exports = {\n  plugins: [new BundleAnalyzerPlugin()],\n};\n```\n\nIt will create an interactive treemap visualization of the contents of all your bundles.\n\n![webpack bundle analyzer zoomable treemap](https://cloud.githubusercontent.com/assets/302213/20628702/93f72404-b338-11e6-92d4-9a365550a701.gif)\n\nThis module will help you:\n\n1. Realize what's _really_ inside your bundle\n2. Find out what modules make up the most of its size\n3. Find modules that got there by mistake\n4. Optimize it!\n\nAnd the best thing is it supports minified bundles! It parses them to get real size of bundled modules.\nAnd it also shows their gzipped, Brotli, or Zstandard sizes!\n\n<h2 align=\"center\">Options (for plugin)</h2>\n\n<!-- eslint-skip -->\n\n```js\nnew BundleAnalyzerPlugin(options?: object)\n```\n\n|            Name            |                                                                                          Type                                                                                          | Description                                                                                                                                                                                                                                                                                                                                                                                                                             |\n| :------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n|     **`analyzerMode`**     |                                                                     One of: `server`, `static`, `json`, `disabled`                                                                     | Default: `server`. In `server` mode analyzer will start HTTP server to show bundle report. In `static` mode single HTML file with bundle report will be generated. In `json` mode single JSON file with bundle report will be generated. In `disabled` mode you can use this plugin to just generate Webpack Stats JSON file by setting `generateStatsFile` to `true`.                                                                  |\n|     **`analyzerHost`**     |                                                                                       `{String}`                                                                                       | Default: `127.0.0.1`. Host that will be used in `server` mode to start HTTP server.                                                                                                                                                                                                                                                                                                                                                     |\n|     **`analyzerPort`**     |                                                                                  `{Number}` or `auto`                                                                                  | Default: `8888`. Port that will be used in `server` mode to start HTTP server. If `analyzerPort` is `auto`, the operating system will assign an arbitrary unused port                                                                                                                                                                                                                                                                   |\n|     **`analyzerUrl`**      | `{Function}` called with `{ listenHost: string, listenHost: string, boundAddress: server.address}`. [server.address comes from Node.js](https://nodejs.org/api/net.html#serveraddress) | Default: `http://${listenHost}:${boundAddress.port}`. The URL printed to console with server mode.                                                                                                                                                                                                                                                                                                                                      |\n|    **`reportFilename`**    |                                                                                       `{String}`                                                                                       | Default: `report.html`. Path to bundle report file that will be generated in `static` mode. It can be either an absolute path or a path relative to a bundle output directory (which is output.path in webpack config).                                                                                                                                                                                                                 |\n|     **`reportTitle`**      |                                                                                  `{String\\|function}`                                                                                  | Default: function that returns pretty printed current date and time. Content of the HTML `title` element; or a function of the form `() => string` that provides the content.                                                                                                                                                                                                                                                           |\n|     **`defaultSizes`**     |                                                                       One of: `stat`, `parsed`, `gzip`, `brotli`                                                                       | Default: `parsed`. Module sizes to show in report by default. [Size definitions](#size-definitions) section describes what these values mean.                                                                                                                                                                                                                                                                                           |\n| **`compressionAlgorithm`** |                                                                            One of: `gzip`, `brotli`, `zstd`                                                                            | Default: `gzip`. Compression type used to calculate the compressed module sizes.                                                                                                                                                                                                                                                                                                                                                        |\n|     **`openAnalyzer`**     |                                                                                      `{Boolean}`                                                                                       | Default: `true`. Automatically open report in default browser.                                                                                                                                                                                                                                                                                                                                                                          |\n|  **`generateStatsFile`**   |                                                                                      `{Boolean}`                                                                                       | Default: `false`. If `true`, webpack stats JSON file will be generated in bundle output directory                                                                                                                                                                                                                                                                                                                                       |\n|    **`statsFilename`**     |                                                                                       `{String}`                                                                                       | Default: `stats.json`. Name of webpack stats JSON file that will be generated if `generateStatsFile` is `true`. It can be either an absolute path or a path relative to a bundle output directory (which is output.path in webpack config).                                                                                                                                                                                             |\n|     **`statsOptions`**     |                                                                                  `null` or `{Object}`                                                                                  | Default: `null`. Options for `stats.toJson()` method. For example you can exclude sources of your modules from stats file with `source: false` option. [See more options here](https://webpack.js.org/configuration/stats/).                                                                                                                                                                                                            |\n|    **`excludeAssets`**     |                                                  `{null\\|pattern\\|pattern[]}` where `pattern` equals to `{String\\|RegExp\\|function}`                                                   | Default: `null`. Patterns that will be used to match against asset names to exclude them from the report. If pattern is a string it will be converted to RegExp via `new RegExp(str)`. If pattern is a function it should have the following signature `(assetName: string) => boolean` and should return `true` to _exclude_ matching asset. If multiple patterns are provided asset should match at least one of them to be excluded. |\n|       **`logLevel`**       |                                                                       One of: `info`, `warn`, `error`, `silent`                                                                        | Default: `info`. Used to control how much details the plugin outputs.                                                                                                                                                                                                                                                                                                                                                                   |\n\n<h2 align=\"center\">Usage (as a CLI utility)</h2>\n\nYou can analyze an existing bundle if you have a webpack stats JSON file.\n\nYou can generate it using `BundleAnalyzerPlugin` with `generateStatsFile` option set to `true` or with this simple\ncommand:\n\n```bash\nwebpack --profile --json > stats.json\n```\n\nIf you're on Windows and using PowerShell, you can generate the stats file with this command to [avoid BOM issues](https://github.com/webpack/webpack-bundle-analyzer/issues/47):\n\n```\nwebpack --profile --json | Out-file 'stats.json' -Encoding OEM\n```\n\nThen you can run the CLI tool.\n\n```\nwebpack-bundle-analyzer bundle/output/path/stats.json\n```\n\n<h2 align=\"center\">Options (for CLI)</h2>\n\n```bash\nwebpack-bundle-analyzer <bundleStatsFile> [bundleDir] [options]\n```\n\nArguments are documented below:\n\n### `bundleStatsFile`\n\nPath to webpack stats JSON file\n\n### `bundleDir`\n\nDirectory containing all generated bundles.\n\n### `options`\n\n```\n  -V, --version                   output the version number\n  -m, --mode <mode>               Analyzer mode. Should be `server`, `static` or `json`.\n                                  In `server` mode analyzer will start HTTP server to show bundle report.\n                                  In `static` mode single HTML file with bundle report will be generated.\n                                  In `json` mode single JSON file with bundle report will be generated. (default: server)\n  -h, --host <host>               Host that will be used in `server` mode to start HTTP server. (default: 127.0.0.1)\n  -p, --port <n>                  Port that will be used in `server` mode to start HTTP server. Should be a number or `auto` (default: 8888)\n  -r, --report <file>             Path to bundle report file that will be generated in `static` mode. (default: report.html)\n  -t, --title <title>             String to use in title element of html report. (default: pretty printed current date)\n  -s, --default-sizes <type>      Module sizes to show in treemap by default.\n                                  Possible values: stat, parsed, gzip, brotli, zstd (default: parsed)\n  --compression-algorithm <type>  Compression algorithm that will be used to calculate the compressed module sizes.\n                                  Possible values: gzip, brotli, zstd (default: gzip)\n  -O, --no-open                   Don't open report in default browser automatically.\n  -e, --exclude <regexp>          Assets that should be excluded from the report.\n                                  Can be specified multiple times.\n  -l, --log-level <level>         Log level.\n                                  Possible values: debug, info, warn, error, silent (default: info)\n  -h, --help                      output usage information\n```\n\n<h2 align=\"center\" id=\"size-definitions\">Size definitions</h2>\n\nwebpack-bundle-analyzer reports three values for sizes. `defaultSizes` can be used to control which of these is shown by default. The different reported sizes are:\n\n### `stat`\n\nThis is the \"input\" size of your files, before any transformations like\nminification.\n\nIt is called \"stat size\" because it's obtained from Webpack's\n[stats object](https://webpack.js.org/configuration/stats/).\n\n### `parsed`\n\nThis is the \"output\" size of your files. If you're using a Webpack plugin such\nas Uglify, then this value will reflect the minified size of your code.\n\n### `gzip`\n\nThis is the size of running the parsed bundles/modules through gzip compression.\n\n### `brotli`\n\nThis is the size of running the parsed bundles/modules through Brotli compression.\n\n### `zstd`\n\nThis is the size of running the parsed bundles/modules through Zstandard compression. (Node.js 22.15.0+ is required for this feature)\n\n<h2 align=\"center\">Selecting Which Chunks to Display</h2>\n\nWhen opened, the report displays all of the Webpack chunks for your project. It's possible to filter to a more specific list of chunks by using the sidebar or the chunk context menu.\n\n### Sidebar\n\nThe Sidebar Menu can be opened by clicking the `>` button at the top left of the report. You can select or deselect chunks to display under the \"Show chunks\" heading there.\n\n### Chunk Context Menu\n\nThe Chunk Context Menu can be opened by right-clicking or `Ctrl`-clicking on a specific chunk in the report. It provides the following options:\n\n- **Hide chunk:** Hides the selected chunk\n- **Hide all other chunks:** Hides all chunks besides the selected one\n- **Show all chunks:** Un-hides any hidden chunks, returning the report to its initial, unfiltered view\n\n<h2 align=\"center\">Troubleshooting</h2>\n\n### I don't see `gzip` or `parsed` sizes, it only shows `stat` size\n\nIt happens when `webpack-bundle-analyzer` analyzes files that don't actually exist in your file system, for example when you work with `webpack-dev-server` that keeps all the files in RAM. If you use `webpack-bundle-analyzer` as a plugin you won't get any errors, however if you run it via CLI you get the error message in terminal:\n\n```\nError parsing bundle asset \"your_bundle_name.bundle.js\": no such file\nNo bundles were parsed. Analyzer will show only original module sizes from stats file.\n```\n\nTo get more information about it you can read [issue #147](https://github.com/webpack/webpack-bundle-analyzer/issues/147).\n\n<h2 align=\"center\">Other tools</h2>\n\n- [Statoscope](https://github.com/smelukov/statoscope/blob/master/packages/ui-webpack/README.md) - Webpack bundle analyzing tool to find out why a certain module was bundled (and more features, including interactive treemap)\n\n<h2 align=\"center\">Maintainers</h2>\n\n<table>\n  <tbody>\n    <tr>\n      <td align=\"center\">\n        <img width=\"150\" height=\"150\"\n        src=\"https://avatars3.githubusercontent.com/u/302213?v=4&s=150\">\n        </br>\n        <a href=\"https://github.com/th0r\">Yuriy Grunin</a>\n      </td>\n      <td align=\"center\">\n        <img width=\"150\" height=\"150\"\n        src=\"https://avatars3.githubusercontent.com/u/482561?v=4&s=150\">\n        </br>\n        <a href=\"https://github.com/valscion\">Vesa Laakso</a>\n      </td>\n    </tr>\n  <tbody>\n</table>\n\n[npm]: https://img.shields.io/npm/v/webpack-bundle-analyzer.svg\n[npm-url]: https://npmjs.com/package/webpack-bundle-analyzer\n[node]: https://img.shields.io/node/v/webpack-bundle-analyzer.svg\n[node-url]: https://nodejs.org\n[tests]: https://github.com/webpack/webpack-bundle-analyzer/actions/workflows/main.yml/badge.svg\n[tests-url]: https://github.com/webpack/webpack-bundle-analyzer/actions/workflows/main.yml\n[downloads]: https://img.shields.io/npm/dt/webpack-bundle-analyzer.svg\n[downloads-url]: https://npmjs.com/package/webpack-bundle-analyzer\n\n<h2 align=\"center\">Contributing</h2>\n\nCheck out [CONTRIBUTING.md](./CONTRIBUTING.md) for instructions on contributing :tada:\n"
  },
  {
    "path": "bin/install-test-webpack-versions.sh",
    "content": "#!/usr/bin/env bash\n\nfor dir in \"$(dirname \"$0\")\"/../test/webpack-versions/*; do (cd \"$dir\" && npm i); done\n"
  },
  {
    "path": "client/.eslintrc.json",
    "content": "{\n  \"extends\": [\"th0r-react\", \"../.eslintrc.json\"],\n  \"settings\": {\n    \"react\": {\n      \"version\": \"16.2\"\n    }\n  },\n  \"parserOptions\": {\n    \"ecmaFeatures\": {\n      \"legacyDecorators\": true\n    }\n  },\n  \"rules\": {\n    \"react/jsx-key\": \"off\",\n    \"react/jsx-no-bind\": \"off\",\n    \"react/react-in-jsx-scope\": \"off\"\n  }\n}\n"
  },
  {
    "path": "client/components/Button.css",
    "content": ".button {\n  background: var(--bg-primary);\n  border: 1px solid var(--border-color);\n  border-radius: 4px;\n  cursor: pointer;\n  display: inline-block;\n  font: var(--main-font);\n  outline: none;\n  padding: 5px 7px;\n  transition:\n    background 0.3s ease,\n    border-color 0.3s ease,\n    color 0.3s ease;\n  white-space: nowrap;\n  color: var(--text-primary);\n}\n\n.button:focus,\n.button:hover {\n  background: var(--hover-bg);\n}\n\n.button.active {\n  background: #ffa500;\n  color: #000;\n}\n\n.button[disabled] {\n  cursor: default;\n}\n"
  },
  {
    "path": "client/components/Button.jsx",
    "content": "import cls from \"classnames\";\nimport PropTypes from \"prop-types\";\nimport PureComponent from \"../lib/PureComponent.jsx\";\n\nimport * as styles from \"./Button.css\";\n\nexport default class Button extends PureComponent {\n  static propTypes = {\n    className: PropTypes.string,\n\n    active: PropTypes.bool,\n    toggle: PropTypes.bool,\n    disabled: PropTypes.bool,\n\n    onClick: PropTypes.func.isRequired,\n\n    children: PropTypes.node,\n  };\n\n  render({ active, className, children, ...props }) {\n    const classes = cls(className, {\n      [styles.button]: true,\n      [styles.active]: active,\n    });\n\n    return (\n      <button\n        {...props}\n        ref={this.saveRef}\n        type=\"button\"\n        className={classes}\n        disabled={this.disabled}\n        onClick={this.handleClick}\n      >\n        {children}\n      </button>\n    );\n  }\n\n  get disabled() {\n    const { disabled, active, toggle } = this.props;\n    return disabled || (active && !toggle);\n  }\n\n  handleClick = (event) => {\n    if (this.elem) {\n      this.elem.blur();\n    }\n\n    this.props.onClick(event);\n  };\n\n  saveRef = (elem) => (this.elem = elem);\n}\n"
  },
  {
    "path": "client/components/Checkbox.css",
    "content": ".label {\n  cursor: pointer;\n  display: inline-block;\n}\n\n.checkbox {\n  cursor: pointer;\n}\n\n.itemText {\n  margin-left: 3px;\n  position: relative;\n  top: -2px;\n  vertical-align: middle;\n}\n"
  },
  {
    "path": "client/components/Checkbox.jsx",
    "content": "import cls from \"classnames\";\nimport { Component } from \"preact\";\nimport PropTypes from \"prop-types\";\n\nimport * as styles from \"./Checkbox.css\";\n\nexport default class Checkbox extends Component {\n  static propTypes = {\n    className: PropTypes.string,\n\n    checked: PropTypes.bool,\n\n    onChange: PropTypes.func.isRequired,\n\n    children: PropTypes.node,\n  };\n\n  render() {\n    const { checked, className, children } = this.props;\n\n    return (\n      <label className={cls(styles.label, className)}>\n        <input\n          className={styles.checkbox}\n          type=\"checkbox\"\n          checked={checked}\n          onChange={this.handleChange}\n        />\n        {children && <span className={styles.itemText}>{children}</span>}\n      </label>\n    );\n  }\n\n  handleChange = () => {\n    this.props.onChange(!this.props.checked);\n  };\n}\n"
  },
  {
    "path": "client/components/CheckboxList.css",
    "content": ".container {\n  font: var(--main-font);\n  white-space: nowrap;\n}\n\n.label {\n  font-size: 11px;\n  font-weight: bold;\n  margin-bottom: 7px;\n}\n\n.item + .item {\n  margin-top: 1px;\n}\n"
  },
  {
    "path": "client/components/CheckboxList.jsx",
    "content": "import PropTypes from \"prop-types\";\nimport PureComponent from \"../lib/PureComponent.jsx\";\nimport * as styles from \"./CheckboxList.css\";\nimport CheckboxListItem from \"./CheckboxListItem.jsx\";\nimport { ViewerDataType } from \"./types.js\";\n\nconst ALL_ITEM = Symbol(\"ALL_ITEM\");\n\nexport default class CheckboxList extends PureComponent {\n  static propTypes = {\n    label: PropTypes.string.isRequired,\n    renderLabel: PropTypes.func.isRequired,\n    items: PropTypes.oneOfType([ViewerDataType, PropTypes.symbol]),\n    checkedItems: PropTypes.oneOfType([ViewerDataType, PropTypes.symbol]),\n\n    onChange: PropTypes.func.isRequired,\n  };\n\n  static ALL_ITEM = ALL_ITEM;\n\n  constructor(props) {\n    super(props);\n    this.state = {\n      checkedItems: props.checkedItems || props.items,\n    };\n  }\n\n  componentWillReceiveProps(newProps) {\n    if (newProps.items !== this.props.items) {\n      if (this.isAllChecked()) {\n        // Preserving `all checked` state\n        this.setState({ checkedItems: newProps.items });\n        this.informAboutChange(newProps.items);\n      } else if (this.state.checkedItems.length) {\n        // Checking only items that are in the new `items` array\n        const checkedItems = newProps.items.filter((item) =>\n          this.state.checkedItems.find(\n            (checkedItem) => checkedItem.label === item.label,\n          ),\n        );\n\n        this.setState({ checkedItems });\n        this.informAboutChange(checkedItems);\n      }\n    } else if (newProps.checkedItems !== this.props.checkedItems) {\n      this.setState({ checkedItems: newProps.checkedItems });\n    }\n  }\n\n  render() {\n    const { label, items, renderLabel } = this.props;\n\n    return (\n      <div className={styles.container}>\n        <div className={styles.label}>{label}:</div>\n        <div>\n          <CheckboxListItem\n            item={ALL_ITEM}\n            checked={this.isAllChecked()}\n            onChange={this.handleToggleAllCheck}\n          >\n            {renderLabel}\n          </CheckboxListItem>\n          {items.map((item) => (\n            <CheckboxListItem\n              key={item.label}\n              item={item}\n              checked={this.isItemChecked(item)}\n              onChange={this.handleItemCheck}\n            >\n              {renderLabel}\n            </CheckboxListItem>\n          ))}\n        </div>\n      </div>\n    );\n  }\n\n  handleToggleAllCheck = () => {\n    const checkedItems = this.isAllChecked() ? [] : this.props.items;\n    this.setState({ checkedItems });\n    this.informAboutChange(checkedItems);\n  };\n\n  handleItemCheck = (item) => {\n    let checkedItems;\n\n    if (this.isItemChecked(item)) {\n      checkedItems = this.state.checkedItems.filter(\n        (checkedItem) => checkedItem !== item,\n      );\n    } else {\n      checkedItems = [...this.state.checkedItems, item];\n    }\n\n    this.setState({ checkedItems });\n    this.informAboutChange(checkedItems);\n  };\n\n  isItemChecked(item) {\n    return this.state.checkedItems.includes(item);\n  }\n\n  isAllChecked() {\n    return this.props.items.length === this.state.checkedItems.length;\n  }\n\n  informAboutChange(checkedItems) {\n    setTimeout(() => this.props.onChange(checkedItems));\n  }\n}\n"
  },
  {
    "path": "client/components/CheckboxListItem.jsx",
    "content": "import { Component } from \"preact\";\nimport PropTypes from \"prop-types\";\n\nimport Checkbox from \"./Checkbox.jsx\";\nimport * as styles from \"./CheckboxList.css\";\nimport CheckboxList from \"./CheckboxList.jsx\";\nimport { ViewerDataItemType } from \"./types.js\";\n\nexport default class CheckboxListItem extends Component {\n  static propTypes = {\n    item: PropTypes.oneOfType([ViewerDataItemType, PropTypes.symbol])\n      .isRequired,\n\n    onChange: PropTypes.func.isRequired,\n\n    children: PropTypes.func,\n  };\n\n  render() {\n    return (\n      <div className={styles.item}>\n        <Checkbox {...this.props} onChange={this.handleChange}>\n          {this.renderLabel()}\n        </Checkbox>\n      </div>\n    );\n  }\n\n  renderLabel() {\n    const { children, item } = this.props;\n    if (children) {\n      return children(item);\n    }\n\n    return item === CheckboxList.ALL_ITEM ? \"All\" : item.label;\n  }\n\n  handleChange = () => {\n    this.props.onChange(this.props.item);\n  };\n}\n"
  },
  {
    "path": "client/components/ContextMenu.css",
    "content": ".container {\n  font: var(--main-font);\n  position: absolute;\n  padding: 0;\n  border-radius: 4px;\n  background: #fff;\n  border: 1px solid #aaa;\n  list-style: none;\n  opacity: 1;\n  white-space: nowrap;\n  visibility: visible;\n  transition:\n    opacity 0.2s ease,\n    visibility 0.2s ease;\n}\n\n.hidden {\n  opacity: 0;\n  visibility: hidden;\n}\n"
  },
  {
    "path": "client/components/ContextMenu.jsx",
    "content": "import cls from \"classnames\";\nimport PropTypes from \"prop-types\";\nimport PureComponent from \"../lib/PureComponent.jsx\";\nimport { store } from \"../store.js\";\nimport { elementIsOutside } from \"../utils.js\";\nimport * as styles from \"./ContextMenu.css\";\nimport ContextMenuItem from \"./ContextMenuItem.jsx\";\nimport { ViewerDataItemType } from \"./types.js\";\n\nexport default class ContextMenu extends PureComponent {\n  static propTypes = {\n    visible: PropTypes.bool,\n\n    chunk: ViewerDataItemType,\n    coords: PropTypes.shape({\n      x: PropTypes.number,\n      y: PropTypes.number,\n    }).isRequired,\n\n    onHide: PropTypes.func,\n  };\n\n  componentDidMount() {\n    this.boundingRect = this.node.getBoundingClientRect();\n  }\n\n  componentDidUpdate(prevProps) {\n    if (this.props.visible && !prevProps.visible) {\n      document.addEventListener(\n        \"mousedown\",\n        this.handleDocumentMousedown,\n        true,\n      );\n    } else if (prevProps.visible && !this.props.visible) {\n      document.removeEventListener(\n        \"mousedown\",\n        this.handleDocumentMousedown,\n        true,\n      );\n    }\n  }\n\n  render() {\n    const { visible } = this.props;\n    const containerClassName = cls({\n      [styles.container]: true,\n      [styles.hidden]: !visible,\n    });\n    const multipleChunksSelected = store.selectedChunks.length > 1;\n    return (\n      <ul\n        ref={this.saveNode}\n        className={containerClassName}\n        style={this.getStyle()}\n      >\n        <ContextMenuItem\n          disabled={!multipleChunksSelected}\n          onClick={this.handleClickHideChunk}\n        >\n          Hide chunk\n        </ContextMenuItem>\n        <ContextMenuItem\n          disabled={!multipleChunksSelected}\n          onClick={this.handleClickFilterToChunk}\n        >\n          Hide all other chunks\n        </ContextMenuItem>\n        <hr />\n        <ContextMenuItem\n          disabled={store.allChunksSelected}\n          onClick={this.handleClickShowAllChunks}\n        >\n          Show all chunks\n        </ContextMenuItem>\n      </ul>\n    );\n  }\n\n  handleClickHideChunk = () => {\n    const { chunk: selectedChunk } = this.props;\n    if (selectedChunk && selectedChunk.label) {\n      const filteredChunks = store.selectedChunks.filter(\n        (chunk) => chunk.label !== selectedChunk.label,\n      );\n      store.setSelectedChunks(filteredChunks);\n    }\n    this.hide();\n  };\n\n  handleClickFilterToChunk = () => {\n    const { chunk: selectedChunk } = this.props;\n\n    if (selectedChunk && selectedChunk.label) {\n      const filteredChunks = store.allChunks.filter(\n        (chunk) => chunk.label === selectedChunk.label,\n      );\n      store.setSelectedChunks(filteredChunks);\n    }\n    this.hide();\n  };\n\n  handleClickShowAllChunks = () => {\n    store.setSelectedChunks(store.allChunks);\n    this.hide();\n  };\n\n  /**\n   * Handle document-wide `mousedown` events to detect clicks\n   * outside the context menu.\n   * @param {MouseEvent} event DOM mouse event object\n   * @returns {void}\n   */\n  handleDocumentMousedown = (event) => {\n    const isSecondaryClick = event.ctrlKey || event.button === 2;\n    if (!isSecondaryClick && elementIsOutside(event.target, this.node)) {\n      event.preventDefault();\n      event.stopPropagation();\n      this.hide();\n    }\n  };\n\n  hide() {\n    if (this.props.onHide) {\n      this.props.onHide();\n    }\n  }\n\n  saveNode = (node) => (this.node = node);\n\n  getStyle() {\n    const { boundingRect } = this;\n\n    // Upon the first render of this component, we don't yet know\n    // its dimensions, so can't position it yet\n    if (!boundingRect) return;\n\n    const { coords } = this.props;\n\n    const pos = {\n      left: coords.x,\n      top: coords.y,\n    };\n\n    if (pos.left + boundingRect.width > window.innerWidth) {\n      // Shifting horizontally\n      pos.left = window.innerWidth - boundingRect.width;\n    }\n\n    if (pos.top + boundingRect.height > window.innerHeight) {\n      // Flipping vertically\n      pos.top = coords.y - boundingRect.height;\n    }\n    return pos;\n  }\n}\n"
  },
  {
    "path": "client/components/ContextMenuItem.css",
    "content": ".item {\n  cursor: pointer;\n  margin: 0;\n  padding: 8px 14px;\n  user-select: none;\n}\n\n.item:hover {\n  background: #ffefd7;\n}\n\n.disabled {\n  cursor: default;\n  color: gray;\n}\n\n.item.disabled:hover {\n  background: transparent;\n}\n"
  },
  {
    "path": "client/components/ContextMenuItem.jsx",
    "content": "import cls from \"classnames\";\nimport PropTypes from \"prop-types\";\n\nimport * as styles from \"./ContextMenuItem.css\";\n\n/**\n * @returns {boolean} nothing\n */\nfunction noop() {\n  return false;\n}\n\n/**\n * @typedef {object} ContextMenuItemProps\n * @property {React.ReactNode} children children\n * @property {boolean=} disabled - true when disabled, otherwise false\n * @property {React.MouseEventHandler<HTMLLIElement>=} onClick on click handler\n */\n\n/**\n * @param {ContextMenuItemProps} props props\n * @returns {JSX.Element} context menu item\n */\nexport default function ContextMenuItem({ children, disabled, onClick }) {\n  const className = cls({\n    [styles.item]: true,\n    [styles.disabled]: disabled,\n  });\n  const handler = disabled ? noop : onClick;\n  return (\n    <li className={className} onClick={handler}>\n      {children}\n    </li>\n  );\n}\n\nContextMenuItem.propTypes = {\n  disabled: PropTypes.bool,\n\n  children: PropTypes.node.isRequired,\n\n  onClick: PropTypes.func,\n};\n"
  },
  {
    "path": "client/components/Dropdown.css",
    "content": ".container {\n  font: var(--main-font);\n  white-space: nowrap;\n}\n\n.label {\n  font-size: 11px;\n  font-weight: bold;\n  margin-bottom: 7px;\n}\n\n.input {\n  border: 1px solid var(--border-color);\n  border-radius: 4px;\n  display: block;\n  width: 100%;\n  color: var(--text-secondary);\n  height: 27px;\n  background: var(--bg-primary);\n  transition:\n    background-color 0.3s ease,\n    border-color 0.3s ease,\n    color 0.3s ease;\n}\n\n.option {\n  padding: 4px 0;\n  cursor: pointer;\n}\n"
  },
  {
    "path": "client/components/Dropdown.jsx",
    "content": "import { createRef } from \"preact\";\nimport PropTypes from \"prop-types\";\nimport PureComponent from \"../lib/PureComponent.jsx\";\n\nimport * as styles from \"./Dropdown.css\";\n\nexport default class Dropdown extends PureComponent {\n  static propTypes = {\n    label: PropTypes.string.isRequired,\n    options: PropTypes.arrayOf(PropTypes.string).isRequired,\n    onSelectionChange: PropTypes.func.isRequired,\n  };\n\n  input = createRef();\n\n  state = {\n    query: \"\",\n    showOptions: false,\n  };\n\n  componentDidMount() {\n    document.addEventListener(\"click\", this.handleClickOutside, true);\n  }\n\n  componentWillUnmount() {\n    document.removeEventListener(\"click\", this.handleClickOutside, true);\n  }\n\n  render() {\n    const { label, options } = this.props;\n\n    const filteredOptions = this.state.query\n      ? options.filter((option) =>\n          option.toLowerCase().includes(this.state.query.toLowerCase()),\n        )\n      : options;\n\n    return (\n      <div className={styles.container}>\n        <div className={styles.label}>{label}:</div>\n        <div>\n          <input\n            ref={this.input}\n            className={styles.input}\n            type=\"text\"\n            value={this.state.query}\n            onInput={this.handleInput}\n            onFocus={this.handleFocus}\n          />\n          {this.state.showOptions ? (\n            <div>\n              {filteredOptions.map((option) => (\n                <div\n                  key={option}\n                  className={styles.option}\n                  onClick={this.getOptionClickHandler(option)}\n                >\n                  {option}\n                </div>\n              ))}\n            </div>\n          ) : null}\n        </div>\n      </div>\n    );\n  }\n\n  handleClickOutside = (event) => {\n    const el = this.input.current;\n    if (el && event && !el.contains(event.target)) {\n      this.setState({ showOptions: false });\n      // If the query is not in the options, reset the selection\n      if (this.state.query && !this.props.options.includes(this.state.query)) {\n        this.setState({ query: \"\" });\n        this.props.onSelectionChange(undefined);\n      }\n    }\n  };\n\n  handleInput = (event) => {\n    const { value } = event.target;\n    this.setState({ query: value });\n    if (!value) {\n      this.props.onSelectionChange(undefined);\n    }\n  };\n\n  handleFocus = () => {\n    // move the cursor to the end of the input\n    this.input.current.value = this.state.query;\n    this.setState({ showOptions: true });\n  };\n\n  getOptionClickHandler = (option) => () => {\n    this.props.onSelectionChange(option);\n    this.setState({ query: option, showOptions: false });\n  };\n}\n"
  },
  {
    "path": "client/components/Icon.css",
    "content": ".icon {\n  background: no-repeat center/contain;\n  display: inline-block;\n  filter: invert(0);\n}\n\n[data-theme=\"dark\"] .icon {\n  filter: invert(1);\n}\n"
  },
  {
    "path": "client/components/Icon.jsx",
    "content": "import cls from \"classnames\";\nimport PropTypes from \"prop-types\";\nimport iconArrowRight from \"../assets/icon-arrow-right.svg\";\nimport iconMoon from \"../assets/icon-moon.svg\";\nimport iconPin from \"../assets/icon-pin.svg\";\nimport iconSun from \"../assets/icon-sun.svg\";\nimport PureComponent from \"../lib/PureComponent.jsx\";\n\nimport * as styles from \"./Icon.css\";\n\nconst ICONS = {\n  \"arrow-right\": {\n    src: iconArrowRight,\n    size: [7, 13],\n  },\n  pin: {\n    src: iconPin,\n    size: [12, 18],\n  },\n  moon: {\n    src: iconMoon,\n    size: [24, 24],\n  },\n  sun: {\n    src: iconSun,\n    size: [24, 24],\n  },\n};\n\nexport default class Icon extends PureComponent {\n  static propTypes = {\n    className: PropTypes.string,\n\n    name: PropTypes.string.isRequired,\n    size: PropTypes.number,\n    rotate: PropTypes.number,\n  };\n\n  render({ className }) {\n    return <i className={cls(styles.icon, className)} style={this.style} />;\n  }\n\n  get style() {\n    const { name, size, rotate } = this.props;\n    const icon = ICONS[name];\n\n    if (!icon) throw new TypeError(`Can't find \"${name}\" icon.`);\n\n    let [width, height] = icon.size;\n\n    if (size) {\n      const ratio = size / Math.max(width, height);\n      width = Math.min(Math.ceil(width * ratio), size);\n      height = Math.min(Math.ceil(height * ratio), size);\n    }\n\n    return {\n      backgroundImage: `url(${icon.src})`,\n      width: `${width}px`,\n      height: `${height}px`,\n      transform: rotate ? `rotate(${rotate}deg)` : \"\",\n    };\n  }\n}\n"
  },
  {
    "path": "client/components/ModuleItem.css",
    "content": ".container {\n  background: no-repeat left center;\n  cursor: pointer;\n  margin-bottom: 4px;\n  padding-left: 18px;\n  position: relative;\n  white-space: nowrap;\n}\n\n.container.module {\n  background-image: url(\"../assets/icon-module.svg\");\n  background-position-x: 1px;\n}\n\n.container.folder {\n  background-image: url(\"../assets/icon-folder.svg\");\n}\n\n.container.chunk {\n  background-image: url(\"../assets/icon-chunk.svg\");\n}\n\n.container.invisible:hover::before {\n  background: url(\"../assets/icon-invisible.svg\") no-repeat left center;\n  content: \"\";\n  height: 100%;\n  left: 0;\n  top: 1px;\n  position: absolute;\n  width: 13px;\n}\n"
  },
  {
    "path": "client/components/ModuleItem.jsx",
    "content": "import cls from \"classnames\";\nimport escapeRegExp from \"escape-string-regexp\";\nimport { filesize } from \"filesize\";\nimport { escape } from \"html-escaper\";\nimport PropTypes from \"prop-types\";\nimport PureComponent from \"../lib/PureComponent.jsx\";\nimport * as styles from \"./ModuleItem.css\";\nimport { ModuleType, SizeType } from \"./types.js\";\n\nexport default class ModuleItem extends PureComponent {\n  static propTypes = {\n    module: ModuleType.isRequired,\n    showSize: SizeType.isRequired,\n    highlightedText: PropTypes.instanceOf(RegExp),\n\n    isVisible: PropTypes.func.isRequired,\n\n    onClick: PropTypes.func.isRequired,\n  };\n\n  state = {\n    visible: true,\n  };\n\n  render({ module, showSize }) {\n    const invisible = !this.state.visible;\n    const classes = cls(styles.container, styles[this.itemType], {\n      [styles.invisible]: invisible,\n    });\n\n    return (\n      <div\n        className={classes}\n        title={invisible ? this.invisibleHint : null}\n        onClick={this.handleClick}\n        onMouseEnter={this.handleMouseEnter}\n        onMouseLeave={this.handleMouseLeave}\n      >\n        <span dangerouslySetInnerHTML={{ __html: this.titleHtml }} />\n        {showSize && (\n          <>\n            {\" (\"}\n            <strong>{filesize(module[showSize])}</strong>\n            {\")\"}\n          </>\n        )}\n      </div>\n    );\n  }\n\n  get itemType() {\n    const { module } = this.props;\n    if (!module.path) return \"chunk\";\n    return module.groups ? \"folder\" : \"module\";\n  }\n\n  get titleHtml() {\n    let html;\n    const { module } = this.props;\n    const title = module.path || module.label;\n    const term = this.props.highlightedText;\n\n    if (term) {\n      const regexp =\n        term instanceof RegExp\n          ? new RegExp(term.source, \"igu\")\n          : new RegExp(`(?:${escapeRegExp(term)})+`, \"iu\");\n      let match;\n      let lastMatch;\n\n      do {\n        lastMatch = match;\n        match = regexp.exec(title);\n      } while (match);\n\n      if (lastMatch) {\n        html = `${escape(\n          title.slice(0, lastMatch.index),\n        )}<strong>${escape(lastMatch[0])}</strong>${escape(\n          title.slice(lastMatch.index + lastMatch[0].length),\n        )}`;\n      }\n    }\n\n    if (!html) {\n      html = escape(title);\n    }\n\n    return html;\n  }\n\n  get invisibleHint() {\n    const itemType =\n      this.itemType.charAt(0).toUpperCase() + this.itemType.slice(1);\n    return `${itemType} is not rendered in the treemap because it's too small.`;\n  }\n\n  get isVisible() {\n    const { isVisible } = this.props;\n    return isVisible ? isVisible(this.props.module) : true;\n  }\n\n  handleClick = () => this.props.onClick(this.props.module);\n\n  handleMouseEnter = () => {\n    if (this.props.isVisible) {\n      this.setState({ visible: this.isVisible });\n    }\n  };\n}\n"
  },
  {
    "path": "client/components/ModulesList.css",
    "content": ".container {\n  font: var(--main-font);\n}\n"
  },
  {
    "path": "client/components/ModulesList.jsx",
    "content": "import cls from \"classnames\";\nimport PropTypes from \"prop-types\";\nimport PureComponent from \"../lib/PureComponent.jsx\";\nimport ModuleItem from \"./ModuleItem.jsx\";\nimport * as styles from \"./ModulesList.css\";\nimport { ModuleType, SizeType } from \"./types.js\";\n\nexport default class ModulesList extends PureComponent {\n  static propTypes = {\n    className: PropTypes.string,\n\n    modules: PropTypes.arrayOf(ModuleType).isRequired,\n    showSize: SizeType.isRequired,\n    highlightedText: PropTypes.instanceOf(RegExp),\n\n    isModuleVisible: PropTypes.func.isRequired,\n    onModuleClick: PropTypes.func.isRequired,\n  };\n\n  render({ modules, showSize, highlightedText, isModuleVisible, className }) {\n    return (\n      <div className={cls(styles.container, className)}>\n        {modules.map((module) => (\n          <ModuleItem\n            key={module.cid}\n            module={module}\n            showSize={showSize}\n            highlightedText={highlightedText}\n            isVisible={isModuleVisible}\n            onClick={this.handleModuleClick}\n          />\n        ))}\n      </div>\n    );\n  }\n\n  handleModuleClick = (module) => this.props.onModuleClick(module);\n}\n"
  },
  {
    "path": "client/components/ModulesTreemap.css",
    "content": ".container {\n  align-items: stretch;\n  display: flex;\n  height: 100%;\n  position: relative;\n  width: 100%;\n}\n\n.map {\n  flex: 1;\n}\n\n.sidebarGroup {\n  font: var(--main-font);\n  margin-bottom: 20px;\n}\n\n.showOption {\n  margin-top: 5px;\n}\n\n.activeSize {\n  font-weight: bold;\n}\n\n.foundModulesInfo {\n  display: flex;\n  font: var(--main-font);\n  margin: 8px 0 0;\n}\n\n.foundModulesInfoItem + .foundModulesInfoItem {\n  margin-left: 15px;\n}\n\n.foundModulesContainer {\n  margin-top: 15px;\n  max-height: 600px;\n  overflow: auto;\n}\n\n.foundModulesChunk + .foundModulesChunk {\n  margin-top: 15px;\n}\n\n.foundModulesChunkName {\n  cursor: pointer;\n  font: var(--main-font);\n  font-weight: bold;\n  margin-bottom: 7px;\n}\n\n.foundModulesList {\n  margin-left: 7px;\n}\n"
  },
  {
    "path": "client/components/ModulesTreemap.jsx",
    "content": "import { filesize } from \"filesize\";\nimport { computed, makeObservable } from \"mobx\";\nimport { observer } from \"mobx-react\";\nimport { Component } from \"preact\";\n\nimport localStorage from \"../localStorage.js\";\nimport { store } from \"../store.js\";\nimport { isChunkParsed } from \"../utils.js\";\nimport Checkbox from \"./Checkbox.jsx\";\nimport CheckboxList from \"./CheckboxList.jsx\";\nimport ContextMenu from \"./ContextMenu.jsx\";\nimport Dropdown from \"./Dropdown.jsx\";\nimport ModulesList from \"./ModulesList.jsx\";\nimport * as styles from \"./ModulesTreemap.css\";\nimport Search from \"./Search.jsx\";\nimport Sidebar from \"./Sidebar.jsx\";\nimport Switcher from \"./Switcher.jsx\";\nimport Tooltip from \"./Tooltip.jsx\";\nimport Treemap from \"./Treemap.jsx\";\n\n/** @typedef {\"statSize\" | \"parsedSize\" | \"gzipSize\" | \"brotliSize\" | \"zstdSize\"} PropSize */\n\n/**\n * @returns {{ label: string, prop: PropSize }[]} sizes\n */\nfunction getSizeSwitchItems() {\n  const items = [\n    { label: \"Stat\", prop: \"statSize\" },\n    { label: \"Parsed\", prop: \"parsedSize\" },\n  ];\n\n  if (globalThis.compressionAlgorithm === \"gzip\") {\n    items.push({ label: \"Gzipped\", prop: \"gzipSize\" });\n  }\n\n  if (globalThis.compressionAlgorithm === \"brotli\") {\n    items.push({ label: \"Brotli\", prop: \"brotliSize\" });\n  }\n\n  if (globalThis.compressionAlgorithm === \"zstd\") {\n    items.push({ label: \"Zstandard\", prop: \"zstdSize\" });\n  }\n\n  return items;\n}\n\nclass ModulesTreemap extends Component {\n  mouseCoords = {\n    x: 0,\n    y: 0,\n  };\n\n  state = {\n    selectedChunk: null,\n    selectedMouseCoords: { x: 0, y: 0 },\n    sidebarPinned: false,\n    showChunkContextMenu: false,\n    showTooltip: false,\n    tooltipContent: null,\n  };\n\n  constructor() {\n    super();\n\n    makeObservable(this, {\n      sizeSwitchItems: computed,\n      activeSizeItem: computed,\n      chunkItems: computed,\n      highlightedModules: computed,\n      foundModulesInfo: computed,\n    });\n  }\n\n  componentDidMount() {\n    document.addEventListener(\"mousemove\", this.handleMouseMove, true);\n  }\n\n  componentWillUnmount() {\n    document.removeEventListener(\"mousemove\", this.handleMouseMove, true);\n  }\n\n  render() {\n    const {\n      selectedChunk,\n      selectedMouseCoords,\n      sidebarPinned,\n      showChunkContextMenu,\n      showTooltip,\n      tooltipContent,\n    } = this.state;\n\n    return (\n      <div className={styles.container}>\n        <Sidebar\n          pinned={sidebarPinned}\n          onToggle={this.handleSidebarToggle}\n          onPinStateChange={this.handleSidebarPinStateChange}\n          onResize={this.handleSidebarResize}\n        >\n          <div className={styles.sidebarGroup}>\n            <Switcher\n              label=\"Treemap sizes\"\n              items={this.sizeSwitchItems}\n              activeItem={this.activeSizeItem}\n              onSwitch={this.handleSizeSwitch}\n            />\n            {store.hasConcatenatedModules && (\n              <div className={styles.showOption}>\n                <Checkbox\n                  checked={store.showConcatenatedModulesContent}\n                  onChange={this.handleConcatenatedModulesContentToggle}\n                >\n                  {`Show content of concatenated modules${store.activeSize === \"statSize\" ? \"\" : \" (inaccurate)\"}`}\n                </Checkbox>\n              </div>\n            )}\n          </div>\n          <div className={styles.sidebarGroup}>\n            <Dropdown\n              label=\"Filter to initial chunks\"\n              options={store.entrypoints}\n              onSelectionChange={this.handleSelectionChange}\n            />\n          </div>\n          <div className={styles.sidebarGroup}>\n            <Search\n              label=\"Search modules\"\n              query={store.searchQuery}\n              autofocus\n              onQueryChange={this.handleQueryChange}\n            />\n            <div className={styles.foundModulesInfo}>\n              {this.foundModulesInfo}\n            </div>\n            {store.isSearching && store.hasFoundModules && (\n              <div className={styles.foundModulesContainer}>\n                {store.foundModulesByChunk.map(({ chunk, modules }) => (\n                  <div key={chunk.cid} className={styles.foundModulesChunk}>\n                    <div\n                      className={styles.foundModulesChunkName}\n                      onClick={() => this.treemap.zoomToGroup(chunk)}\n                    >\n                      {chunk.label}\n                    </div>\n                    <ModulesList\n                      className={styles.foundModulesList}\n                      modules={modules}\n                      showSize={store.activeSize}\n                      highlightedText={store.searchQueryRegexp}\n                      isModuleVisible={this.isModuleVisible}\n                      onModuleClick={this.handleFoundModuleClick}\n                    />\n                  </div>\n                ))}\n              </div>\n            )}\n          </div>\n          {this.chunkItems.length > 1 && (\n            <div className={styles.sidebarGroup}>\n              <CheckboxList\n                label=\"Show chunks\"\n                items={this.chunkItems}\n                checkedItems={store.selectedChunks}\n                renderLabel={this.renderChunkItemLabel}\n                onChange={this.handleSelectedChunksChange}\n              />\n            </div>\n          )}\n        </Sidebar>\n        <Treemap\n          ref={this.saveTreemapRef}\n          className={styles.map}\n          data={store.visibleChunks}\n          highlightGroups={this.highlightedModules}\n          weightProp={store.activeSize}\n          onMouseLeave={this.handleMouseLeaveTreemap}\n          onGroupHover={this.handleTreemapGroupHover}\n          onGroupSecondaryClick={this.handleTreemapGroupSecondaryClick}\n          onResize={this.handleResize}\n        />\n        {tooltipContent && (\n          <Tooltip visible={showTooltip}>{tooltipContent}</Tooltip>\n        )}\n        <ContextMenu\n          visible={showChunkContextMenu}\n          chunk={selectedChunk}\n          coords={selectedMouseCoords}\n          onHide={this.handleChunkContextMenuHide}\n        />\n      </div>\n    );\n  }\n\n  renderModuleSize(module, sizeType) {\n    const sizeProp = `${sizeType}Size`;\n    const size = module[sizeProp];\n    const sizeLabel = getSizeSwitchItems().find(\n      (item) => item.prop === sizeProp,\n    ).label;\n    const isActive = store.activeSize === sizeProp;\n\n    return typeof size === \"number\" ? (\n      <div className={isActive ? styles.activeSize : \"\"}>\n        {sizeLabel} size: <strong>{filesize(size)}</strong>\n      </div>\n    ) : null;\n  }\n\n  renderChunkItemLabel = (item) => {\n    const isAllItem = item === CheckboxList.ALL_ITEM;\n    const label = isAllItem ? \"All\" : item.label;\n    const size = isAllItem ? store.totalChunksSize : item[store.activeSize];\n\n    return (\n      <>\n        {label} (<strong>{filesize(size)}</strong>)\n      </>\n    );\n  };\n\n  get sizeSwitchItems() {\n    return store.hasParsedSizes\n      ? getSizeSwitchItems()\n      : getSizeSwitchItems().slice(0, 1);\n  }\n\n  get activeSizeItem() {\n    return this.sizeSwitchItems.find((item) => item.prop === store.activeSize);\n  }\n\n  get chunkItems() {\n    const { allChunks, activeSize } = store;\n    let chunkItems = [...allChunks];\n\n    if (activeSize !== \"statSize\") {\n      chunkItems = chunkItems.filter(isChunkParsed);\n    }\n\n    chunkItems.sort(\n      (chunk1, chunk2) => chunk2[activeSize] - chunk1[activeSize],\n    );\n\n    return chunkItems;\n  }\n\n  get highlightedModules() {\n    return new Set(store.foundModules);\n  }\n\n  get foundModulesInfo() {\n    if (!store.isSearching) {\n      // `&nbsp;` to reserve space\n      return \"\\u00A0\";\n    }\n\n    if (store.hasFoundModules) {\n      return (\n        <>\n          <div className={styles.foundModulesInfoItem}>\n            Count: <strong>{store.foundModules.length}</strong>\n          </div>\n          <div className={styles.foundModulesInfoItem}>\n            Total size: <strong>{filesize(store.foundModulesSize)}</strong>\n          </div>\n        </>\n      );\n    }\n\n    return `Nothing found${store.allChunksSelected ? \"\" : \" in selected chunks\"}`;\n  }\n\n  handleSelectionChange = (selected) => {\n    if (!selected) {\n      store.setSelectedChunks(store.allChunks);\n      return;\n    }\n\n    store.setSelectedChunks(\n      store.allChunks.filter(\n        (chunk) => chunk.isInitialByEntrypoint[selected] ?? false,\n      ),\n    );\n  };\n\n  handleConcatenatedModulesContentToggle = (flag) => {\n    store.showConcatenatedModulesContent = flag;\n    if (flag) {\n      localStorage.setItem(\"showConcatenatedModulesContent\", true);\n    } else {\n      localStorage.removeItem(\"showConcatenatedModulesContent\");\n    }\n  };\n\n  handleChunkContextMenuHide = () => {\n    this.setState({\n      showChunkContextMenu: false,\n    });\n  };\n\n  handleResize = () => {\n    // Close any open context menu when the report is resized,\n    // so it doesn't show in an incorrect position\n    if (this.state.showChunkContextMenu) {\n      this.setState({\n        showChunkContextMenu: false,\n      });\n    }\n  };\n\n  handleSidebarToggle = () => {\n    if (this.state.sidebarPinned) {\n      setTimeout(() => this.treemap.resize());\n    }\n  };\n\n  handleSidebarPinStateChange = (pinned) => {\n    this.setState({ sidebarPinned: pinned });\n    setTimeout(() => this.treemap.resize());\n  };\n\n  handleSidebarResize = () => {\n    this.treemap.resize();\n  };\n\n  handleSizeSwitch = (sizeSwitchItem) => {\n    store.setSelectedSize(sizeSwitchItem.prop);\n  };\n\n  handleQueryChange = (query) => {\n    store.setSearchQuery(query);\n  };\n\n  handleSelectedChunksChange = (selectedChunks) => {\n    store.setSelectedSize(selectedChunks);\n  };\n\n  handleMouseLeaveTreemap = () => {\n    this.setState({ showTooltip: false });\n  };\n\n  handleTreemapGroupSecondaryClick = (event) => {\n    const { group } = event;\n\n    if (group && group.isAsset) {\n      this.setState({\n        selectedChunk: group,\n        selectedMouseCoords: { ...this.mouseCoords },\n        showChunkContextMenu: true,\n      });\n    } else {\n      this.setState({\n        selectedChunk: null,\n        showChunkContextMenu: false,\n      });\n    }\n  };\n\n  handleTreemapGroupHover = (event) => {\n    const { group } = event;\n\n    if (group) {\n      this.setState({\n        showTooltip: true,\n        tooltipContent: this.getTooltipContent(group),\n      });\n    } else {\n      this.setState({ showTooltip: false });\n    }\n  };\n\n  handleFoundModuleClick = (module) => this.treemap.zoomToGroup(module);\n\n  handleMouseMove = (event) => {\n    Object.assign(this.mouseCoords, {\n      x: event.pageX,\n      y: event.pageY,\n    });\n  };\n\n  isModuleVisible = (module) => this.treemap.isGroupRendered(module);\n\n  saveTreemapRef = (treemap) => (this.treemap = treemap);\n\n  getTooltipContent(module) {\n    if (!module) return null;\n\n    return (\n      <div>\n        <div>\n          <strong>{module.label}</strong>\n        </div>\n        <br />\n        {this.renderModuleSize(module, \"stat\")}\n        {!module.inaccurateSizes && this.renderModuleSize(module, \"parsed\")}\n        {!module.inaccurateSizes &&\n          this.renderModuleSize(module, globalThis.compressionAlgorithm)}\n        {module.path && (\n          <div>\n            Path: <strong>{module.path}</strong>\n          </div>\n        )}\n        {module.isAsset && (\n          <div>\n            <br />\n            <strong>\n              <em>Right-click to view options related to this chunk</em>\n            </strong>\n          </div>\n        )}\n      </div>\n    );\n  }\n}\n\nexport default observer(ModulesTreemap);\n"
  },
  {
    "path": "client/components/Search.css",
    "content": ".container {\n  font: var(--main-font);\n  white-space: nowrap;\n}\n\n.label {\n  font-weight: bold;\n  margin-bottom: 7px;\n}\n\n.row {\n  display: flex;\n}\n\n.input {\n  border: 1px solid var(--border-color);\n  border-radius: 4px;\n  display: block;\n  flex: 1;\n  padding: 5px;\n  background: var(--bg-primary);\n  color: var(--text-primary);\n  transition:\n    background-color 0.3s ease,\n    color 0.3s ease,\n    border-color 0.3s ease;\n}\n\n.input:focus {\n  outline: none;\n  border-color: var(--text-secondary);\n}\n\n.clear {\n  flex: 0 0 auto;\n  line-height: 1;\n  margin-left: 3px;\n  padding: 5px 8px 7px;\n}\n"
  },
  {
    "path": "client/components/Search.jsx",
    "content": "// TODO: switch to a more modern debounce package once we drop Node.js 10 support\nimport debounce from \"debounce\";\n\nimport PropTypes from \"prop-types\";\nimport PureComponent from \"../lib/PureComponent.jsx\";\nimport Button from \"./Button.jsx\";\n\nimport * as styles from \"./Search.css\";\n\nexport default class Search extends PureComponent {\n  static propTypes = {\n    className: PropTypes.string,\n\n    label: PropTypes.string.isRequired,\n    query: PropTypes.string.isRequired,\n\n    autofocus: PropTypes.bool,\n\n    onQueryChange: PropTypes.func.isRequired,\n  };\n\n  componentDidMount() {\n    if (this.props.autofocus) {\n      this.focus();\n    }\n  }\n\n  componentWillUnmount() {\n    this.handleValueChange.clear();\n  }\n\n  render() {\n    const { label, query } = this.props;\n\n    return (\n      <div className={styles.container}>\n        <div className={styles.label}>{label}:</div>\n        <div className={styles.row}>\n          <input\n            ref={this.saveInputNode}\n            className={styles.input}\n            type=\"text\"\n            value={query}\n            placeholder=\"Enter regexp\"\n            onInput={this.handleValueChange}\n            onBlur={this.handleInputBlur}\n            onKeyDown={this.handleKeyDown}\n          />\n          <Button className={styles.clear} onClick={this.handleClearClick}>\n            x\n          </Button>\n        </div>\n      </div>\n    );\n  }\n\n  handleValueChange = debounce((event) => {\n    this.informChange(event.target.value);\n  }, 400);\n\n  handleInputBlur = () => {\n    this.handleValueChange.flush();\n  };\n\n  handleClearClick = () => {\n    this.clear();\n    this.focus();\n  };\n\n  handleKeyDown = (event) => {\n    let handled = true;\n\n    switch (event.key) {\n      case \"Escape\":\n        this.clear();\n        break;\n      case \"Enter\":\n        this.handleValueChange.flush();\n        break;\n      default:\n        handled = false;\n    }\n\n    if (handled) {\n      event.stopPropagation();\n    }\n  };\n\n  focus() {\n    if (this.input) {\n      this.input.focus();\n    }\n  }\n\n  clear() {\n    this.handleValueChange.clear();\n    this.informChange(\"\");\n    this.input.value = \"\";\n  }\n\n  informChange(value) {\n    this.props.onQueryChange(value);\n  }\n\n  saveInputNode = (node) => (this.input = node);\n}\n"
  },
  {
    "path": "client/components/Sidebar.css",
    "content": ".container {\n  background: var(--bg-primary);\n  border: none;\n  border-right: 1px solid var(--border-color);\n  box-sizing: border-box;\n  max-width: calc(50% - 10px);\n  opacity: 0.95;\n  z-index: 1;\n  transition:\n    background-color 0.3s ease,\n    border-color 0.3s ease;\n}\n\n.container:not(.hidden) {\n  min-width: 200px;\n}\n\n.container:not(.pinned) {\n  bottom: 0;\n  position: absolute;\n  top: 0;\n  transition: transform 200ms ease;\n}\n\n.container.pinned {\n  position: relative;\n}\n\n.container.left {\n  left: 0;\n}\n\n.container.left.hidden {\n  transform: translateX(calc(-100% + 7px));\n}\n\n.content {\n  box-sizing: border-box;\n  height: 100%;\n  overflow-y: auto;\n  padding: 25px 20px 20px;\n  width: 100%;\n}\n\n.empty.pinned .content {\n  padding: 0;\n}\n\n.container :global(.themeToggle) {\n  position: absolute;\n  top: 10px;\n  left: 15px;\n  z-index: 10;\n  height: 26px;\n  width: 27px;\n  padding: 0;\n}\n\n.pinButton,\n.toggleButton {\n  cursor: pointer;\n  height: 26px;\n  line-height: 0;\n  position: absolute;\n  top: 10px;\n  width: 27px;\n}\n\n.pinButton {\n  right: 47px;\n}\n\n.toggleButton {\n  padding-left: 6px;\n  right: 15px;\n}\n\n.hidden .toggleButton {\n  right: -35px;\n  transition: transform 0.2s ease;\n}\n\n.hidden .toggleButton:hover {\n  transform: translateX(4px);\n}\n\n.resizer {\n  bottom: 0;\n  cursor: col-resize;\n  position: absolute;\n  right: 0;\n  top: 0;\n  width: 7px;\n}\n\n:export {\n  toggleTime: 200ms;\n}\n"
  },
  {
    "path": "client/components/Sidebar.jsx",
    "content": "import cls from \"classnames\";\nimport { Component } from \"preact\";\nimport PropTypes from \"prop-types\";\nimport Button from \"./Button.jsx\";\nimport Icon from \"./Icon.jsx\";\nimport * as styles from \"./Sidebar.css\";\nimport ThemeToggle from \"./ThemeToggle.jsx\";\n\nconst toggleTime = Number.parseInt(styles.toggleTime, 10);\n\nexport default class Sidebar extends Component {\n  static propTypes = {\n    pinned: PropTypes.bool.isRequired,\n    position: PropTypes.string,\n\n    onToggle: PropTypes.func.isRequired,\n    onResize: PropTypes.func.isRequired,\n    onPinStateChange: PropTypes.func.isRequired,\n\n    children: PropTypes.node.isRequired,\n  };\n\n  static defaultProps = {\n    pinned: false,\n    position: \"left\",\n  };\n\n  allowHide = true;\n\n  toggling = false;\n\n  hideContentTimeout = null;\n\n  width = null;\n\n  state = {\n    visible: true,\n    renderContent: true,\n  };\n\n  componentDidMount() {\n    this.hideTimeoutId = setTimeout(() => this.toggleVisibility(false), 3000);\n  }\n\n  componentWillUnmount() {\n    clearTimeout(this.hideTimeoutId);\n    clearTimeout(this.hideContentTimeout);\n  }\n\n  render() {\n    const { position, pinned, children } = this.props;\n    const { visible, renderContent } = this.state;\n\n    const className = cls({\n      [styles.container]: true,\n      [styles.pinned]: pinned,\n      [styles.left]: position === \"left\",\n      [styles.hidden]: !visible,\n      [styles.empty]: !renderContent,\n    });\n\n    return (\n      <div\n        ref={this.saveNode}\n        className={className}\n        onClick={this.handleClick}\n        onMouseLeave={this.handleMouseLeave}\n      >\n        <ThemeToggle />\n        {visible && (\n          <Button\n            type=\"button\"\n            title=\"Pin\"\n            className={styles.pinButton}\n            active={pinned}\n            toggle\n            onClick={this.handlePinButtonClick}\n          >\n            <Icon name=\"pin\" size={13} />\n          </Button>\n        )}\n        <Button\n          type=\"button\"\n          title={visible ? \"Hide\" : \"Show sidebar\"}\n          className={styles.toggleButton}\n          onClick={this.handleToggleButtonClick}\n        >\n          <Icon name=\"arrow-right\" size={10} rotate={visible ? 180 : 0} />\n        </Button>\n        {pinned && visible && (\n          <div\n            className={styles.resizer}\n            onMouseDown={this.handleResizeStart}\n          />\n        )}\n        <div\n          className={styles.content}\n          onMouseEnter={this.handleMouseEnter}\n          onMouseMove={this.handleMouseMove}\n        >\n          {renderContent ? children : null}\n        </div>\n      </div>\n    );\n  }\n\n  handleClick = () => {\n    this.allowHide = false;\n  };\n\n  handleMouseEnter = () => {\n    if (!this.toggling && !this.props.pinned) {\n      clearTimeout(this.hideTimeoutId);\n      this.toggleVisibility(true);\n    }\n  };\n\n  handleMouseMove = () => {\n    this.allowHide = true;\n  };\n\n  handleMouseLeave = () => {\n    if (this.allowHide && !this.toggling && !this.props.pinned) {\n      this.toggleVisibility(false);\n    }\n  };\n\n  handleToggleButtonClick = () => {\n    this.toggleVisibility();\n  };\n\n  handlePinButtonClick = () => {\n    const pinned = !this.props.pinned;\n    this.width = pinned ? this.node.getBoundingClientRect().width : null;\n    this.updateNodeWidth();\n    this.props.onPinStateChange(pinned);\n  };\n\n  handleResizeStart = (event) => {\n    this.resizeInfo = {\n      startPageX: event.pageX,\n      initialWidth: this.width,\n    };\n    document.body.classList.add(\"resizing\", \"col\");\n    document.addEventListener(\"mousemove\", this.handleResize, true);\n    document.addEventListener(\"mouseup\", this.handleResizeEnd, true);\n  };\n\n  handleResize = (event) => {\n    this.width =\n      this.resizeInfo.initialWidth + (event.pageX - this.resizeInfo.startPageX);\n    this.updateNodeWidth();\n  };\n\n  handleResizeEnd = () => {\n    document.body.classList.remove(\"resizing\", \"col\");\n    document.removeEventListener(\"mousemove\", this.handleResize, true);\n    document.removeEventListener(\"mouseup\", this.handleResizeEnd, true);\n    this.props.onResize();\n  };\n\n  toggleVisibility(flag) {\n    clearTimeout(this.hideContentTimeout);\n\n    const { visible } = this.state;\n    const { onToggle, pinned } = this.props;\n\n    if (flag === undefined) {\n      flag = !visible;\n    } else if (flag === visible) {\n      return;\n    }\n\n    this.setState({ visible: flag });\n    this.toggling = true;\n    setTimeout(() => {\n      this.toggling = false;\n    }, toggleTime);\n\n    if (pinned) {\n      this.updateNodeWidth(flag ? this.width : null);\n    }\n\n    if (flag || pinned) {\n      this.setState({ renderContent: flag });\n      onToggle(flag);\n    } else if (!flag) {\n      // Waiting for the CSS animation to finish and hiding content\n      this.hideContentTimeout = setTimeout(() => {\n        this.hideContentTimeout = null;\n        this.setState({ renderContent: false });\n        onToggle(false);\n      }, toggleTime);\n    }\n  }\n\n  saveNode = (node) => (this.node = node);\n\n  updateNodeWidth(width = this.width) {\n    this.node.style.width = width ? `${width}px` : \"\";\n  }\n}\n"
  },
  {
    "path": "client/components/Switcher.css",
    "content": ".container {\n  font: var(--main-font);\n  white-space: nowrap;\n}\n\n.label {\n  font-weight: bold;\n  font-size: 11px;\n  margin-bottom: 7px;\n}\n\n.item + .item {\n  margin-left: 5px;\n}\n"
  },
  {
    "path": "client/components/Switcher.jsx",
    "content": "import PropTypes from \"prop-types\";\nimport PureComponent from \"../lib/PureComponent.jsx\";\nimport * as styles from \"./Switcher.css\";\nimport SwitcherItem from \"./SwitcherItem.jsx\";\nimport { SwitcherItemType } from \"./types.js\";\n\nexport default class Switcher extends PureComponent {\n  static propTypes = {\n    label: PropTypes.string.isRequired,\n\n    items: PropTypes.arrayOf(SwitcherItemType).isRequired,\n    activeItem: SwitcherItemType.isRequired,\n\n    onSwitch: PropTypes.func.isRequired,\n  };\n\n  render() {\n    const { label, items, activeItem, onSwitch } = this.props;\n\n    return (\n      <div className={styles.container}>\n        <div className={styles.label}>{label}:</div>\n        <div>\n          {items.map((item) => (\n            <SwitcherItem\n              key={item.label}\n              className={styles.item}\n              item={item}\n              active={item === activeItem}\n              onClick={onSwitch}\n            />\n          ))}\n        </div>\n      </div>\n    );\n  }\n}\n"
  },
  {
    "path": "client/components/SwitcherItem.jsx",
    "content": "import PropTypes from \"prop-types\";\nimport PureComponent from \"../lib/PureComponent.jsx\";\nimport Button from \"./Button.jsx\";\nimport { SwitcherItemType } from \"./types.js\";\n\nexport default class SwitcherItem extends PureComponent {\n  static propTypes = {\n    active: PropTypes.bool.isRequired,\n\n    item: SwitcherItemType.isRequired,\n\n    onClick: PropTypes.func.isRequired,\n  };\n\n  render({ item, ...props }) {\n    return (\n      <Button {...props} onClick={this.handleClick}>\n        {item.label}\n      </Button>\n    );\n  }\n\n  handleClick = () => {\n    this.props.onClick(this.props.item);\n  };\n}\n"
  },
  {
    "path": "client/components/ThemeToggle.css",
    "content": ".themeToggle {\n  background: transparent;\n  border: none;\n  cursor: pointer;\n  padding: 8px;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  border-radius: 4px;\n  transition: background-color 0.2s ease;\n}\n\n.themeToggle:hover {\n  background: rgba(0, 0, 0, 0.1);\n}\n\n[data-theme=\"dark\"] .themeToggle:hover {\n  background: rgba(255, 255, 255, 0.1);\n}\n"
  },
  {
    "path": "client/components/ThemeToggle.jsx",
    "content": "import { observer } from \"mobx-react\";\nimport { Component } from \"preact\";\n\nimport { store } from \"../store.js\";\nimport Button from \"./Button.jsx\";\nimport Icon from \"./Icon.jsx\";\n\nimport * as styles from \"./ThemeToggle.css\";\n\nclass ThemeToggle extends Component {\n  render() {\n    const { darkMode } = store;\n\n    return (\n      <Button\n        type=\"button\"\n        title={darkMode ? \"Switch to Light Mode\" : \"Switch to Dark Mode\"}\n        className={styles.themeToggle}\n        onClick={this.handleToggle}\n      >\n        <Icon name={darkMode ? \"sun\" : \"moon\"} size={16} />\n      </Button>\n    );\n  }\n\n  handleToggle = () => {\n    store.toggleDarkMode();\n  };\n}\n\nexport default observer(ThemeToggle);\n"
  },
  {
    "path": "client/components/Tooltip.css",
    "content": ".container {\n  font: var(--main-font);\n  position: absolute;\n  padding: 5px 10px;\n  border-radius: 4px;\n  background: #fff;\n  border: 1px solid #aaa;\n  opacity: 0.9;\n  white-space: nowrap;\n  visibility: visible;\n  transition:\n    opacity 0.2s ease,\n    visibility 0.2s ease;\n}\n\n.hidden {\n  opacity: 0;\n  visibility: hidden;\n}\n\n:global(html[data-theme=\"dark\"]) .container {\n  background: var(--bg-primary);\n  color: var(--text-primary);\n  border: 1px solid var(--border-color);\n}\n"
  },
  {
    "path": "client/components/Tooltip.jsx",
    "content": "import cls from \"classnames\";\nimport { Component } from \"preact\";\n\nimport PropTypes from \"prop-types\";\nimport * as styles from \"./Tooltip.css\";\n\nexport default class Tooltip extends Component {\n  static propTypes = {\n    visible: PropTypes.bool.isRequired,\n\n    children: PropTypes.node.isRequired,\n  };\n\n  static marginX = 10;\n\n  static marginY = 30;\n\n  mouseCoords = {\n    x: 0,\n    y: 0,\n  };\n\n  state = {\n    left: 0,\n    top: 0,\n  };\n\n  componentDidMount() {\n    document.addEventListener(\"mousemove\", this.handleMouseMove, true);\n  }\n\n  shouldComponentUpdate(nextProps) {\n    return this.props.visible || nextProps.visible;\n  }\n\n  componentWillUnmount() {\n    document.removeEventListener(\"mousemove\", this.handleMouseMove, true);\n  }\n\n  render() {\n    const { children, visible } = this.props;\n\n    const className = cls({\n      [styles.container]: true,\n      [styles.hidden]: !visible,\n    });\n\n    return (\n      <div ref={this.saveNode} className={className} style={this.getStyle()}>\n        {children}\n      </div>\n    );\n  }\n\n  handleMouseMove = (event) => {\n    Object.assign(this.mouseCoords, {\n      x: event.pageX,\n      y: event.pageY,\n    });\n\n    if (this.props.visible) {\n      this.updatePosition();\n    }\n  };\n\n  saveNode = (node) => (this.node = node);\n\n  getStyle() {\n    return {\n      left: this.state.left,\n      top: this.state.top,\n    };\n  }\n\n  updatePosition() {\n    if (!this.props.visible) return;\n\n    const pos = {\n      left: this.mouseCoords.x + Tooltip.marginX,\n      top: this.mouseCoords.y + Tooltip.marginY,\n    };\n\n    const boundingRect = this.node.getBoundingClientRect();\n\n    if (pos.left + boundingRect.width > window.innerWidth) {\n      // Shifting horizontally\n      pos.left = window.innerWidth - boundingRect.width;\n    }\n\n    if (pos.top + boundingRect.height > window.innerHeight) {\n      // Flipping vertically\n      pos.top = this.mouseCoords.y - Tooltip.marginY - boundingRect.height;\n    }\n\n    this.setState(pos);\n  }\n}\n"
  },
  {
    "path": "client/components/Treemap.jsx",
    "content": "import FoamTree from \"@carrotsearch/foamtree\";\nimport { Component } from \"preact\";\nimport PropTypes from \"prop-types\";\nimport { SizeType, ViewerDataType } from \"./types.js\";\n\n/**\n * @param {Event} event event\n */\nfunction preventDefault(event) {\n  event.preventDefault();\n}\n\n/**\n * @param {string} str string\n * @returns {number} hash\n */\nfunction hashCode(str) {\n  let hash = 0;\n  for (let i = 0; i < str.length; i++) {\n    const code = str.charCodeAt(i);\n    hash = (hash << 5) - hash + code;\n    hash &= hash;\n  }\n  return hash;\n}\n\nexport default class Treemap extends Component {\n  static propTypes = {\n    classname: PropTypes.string,\n\n    data: ViewerDataType.isRequired,\n    highlightGroups: PropTypes.instanceOf(Set).isRequired,\n    weightProp: SizeType.isRequired,\n\n    onGroupHover: PropTypes.func,\n    onGroupSecondaryClick: PropTypes.func,\n    onMouseLeave: PropTypes.func,\n    onResize: PropTypes.func,\n  };\n\n  constructor(props) {\n    super(props);\n    this.treemap = null;\n    this.zoomOutDisabled = false;\n    this.findChunkNamePartIndex();\n  }\n\n  componentDidMount() {\n    this.treemap = this.createTreemap();\n    window.addEventListener(\"resize\", this.resize);\n  }\n\n  componentWillReceiveProps(nextProps) {\n    if (nextProps.data !== this.props.data) {\n      this.findChunkNamePartIndex();\n      this.treemap.set({\n        dataObject: this.getTreemapDataObject(nextProps.data),\n      });\n    } else if (nextProps.highlightGroups !== this.props.highlightGroups) {\n      setTimeout(() => this.treemap.redraw());\n    }\n  }\n\n  shouldComponentUpdate() {\n    return false;\n  }\n\n  componentWillUnmount() {\n    window.removeEventListener(\"resize\", this.resize);\n    this.treemap.dispose();\n  }\n\n  render() {\n    return <div {...this.props} ref={this.saveNodeRef} />;\n  }\n\n  saveNodeRef = (node) => (this.node = node);\n\n  getTreemapDataObject(data = this.props.data) {\n    return { groups: data };\n  }\n\n  createTreemap() {\n    const component = this;\n    const { props } = this;\n\n    return new FoamTree({\n      element: this.node,\n      layout: \"squarified\",\n      stacking: \"flattened\",\n      pixelRatio: window.devicePixelRatio || 1,\n      maxGroups: Infinity,\n      maxGroupLevelsDrawn: Infinity,\n      maxGroupLabelLevelsDrawn: Infinity,\n      maxGroupLevelsAttached: Infinity,\n      wireframeLabelDrawing: \"always\",\n      groupMinDiameter: 0,\n      groupLabelVerticalPadding: 0.2,\n      rolloutDuration: 0,\n      pullbackDuration: 0,\n      fadeDuration: 0,\n      groupExposureZoomMargin: 0.2,\n      zoomMouseWheelDuration: 300,\n      openCloseDuration: 200,\n      dataObject: this.getTreemapDataObject(),\n      titleBarDecorator(opts, props, vars) {\n        vars.titleBarShown = false;\n      },\n      groupColorDecorator(options, properties, variables) {\n        const root = component.getGroupRoot(properties.group);\n        const chunkName = component.getChunkNamePart(root.label);\n        const hash = /[^0-9]/u.test(chunkName)\n          ? hashCode(chunkName)\n          : (Number.parseInt(chunkName, 10) / 1000) * 360;\n        variables.groupColor = {\n          model: \"hsla\",\n          h: Math.round(Math.abs(hash) % 360),\n          s: 60,\n          l: 50,\n          a: 0.9,\n        };\n\n        const { highlightGroups } = component.props;\n        const module = properties.group;\n\n        if (highlightGroups && highlightGroups.has(module)) {\n          variables.groupColor = {\n            model: \"rgba\",\n            r: 255,\n            g: 0,\n            b: 0,\n            a: 0.8,\n          };\n        } else if (highlightGroups && highlightGroups.size > 0) {\n          // this means a search (e.g.) is active, but this module\n          // does not match; gray it out\n          // https://github.com/webpack/webpack-bundle-analyzer/issues/553\n          variables.groupColor.s = 10;\n        }\n      },\n      /**\n       * Handle Foamtree's \"group clicked\" event\n       * @param {FoamtreeEvent} event foamtree event object (see https://get.carrotsearch.com/foamtree/demo/api/index.html#event-details)\n       * @returns {void}\n       */\n      onGroupClick(event) {\n        preventDefault(event);\n        if ((event.ctrlKey || event.secondary) && props.onGroupSecondaryClick) {\n          props.onGroupSecondaryClick.call(component, event);\n          return;\n        }\n        component.zoomOutDisabled = false;\n        this.zoom(event.group);\n      },\n      onGroupDoubleClick: preventDefault,\n      onGroupHover(event) {\n        // Ignoring hovering on `FoamTree` branding group and the root group\n        if (\n          event.group &&\n          (event.group.attribution || event.group === this.get(\"dataObject\"))\n        ) {\n          event.preventDefault();\n          if (props.onMouseLeave) {\n            props.onMouseLeave.call(component, event);\n          }\n          return;\n        }\n\n        if (props.onGroupHover) {\n          props.onGroupHover.call(component, event);\n        }\n      },\n      onGroupMouseWheel(event) {\n        const { scale } = this.get(\"viewport\");\n        const isZoomOut = event.delta < 0;\n\n        if (isZoomOut) {\n          if (component.zoomOutDisabled) return preventDefault(event);\n          if (scale < 1) {\n            component.zoomOutDisabled = true;\n            preventDefault(event);\n          }\n        } else {\n          component.zoomOutDisabled = false;\n        }\n      },\n    });\n  }\n\n  getGroupRoot(group) {\n    let nextParent;\n    while (\n      !group.isAsset &&\n      (nextParent = this.treemap.get(\"hierarchy\", group).parent)\n    ) {\n      group = nextParent;\n    }\n    return group;\n  }\n\n  zoomToGroup(group) {\n    this.zoomOutDisabled = false;\n\n    while (group && !this.treemap.get(\"state\", group).revealed) {\n      group = this.treemap.get(\"hierarchy\", group).parent;\n    }\n\n    if (group) {\n      this.treemap.zoom(group);\n    }\n  }\n\n  isGroupRendered(group) {\n    const groupState = this.treemap.get(\"state\", group);\n    return Boolean(groupState) && groupState.revealed;\n  }\n\n  update() {\n    this.treemap.update();\n  }\n\n  resize = () => {\n    const { props } = this;\n    this.treemap.resize();\n\n    if (props.onResize) {\n      props.onResize();\n    }\n  };\n\n  /**\n   * Finds patterns across all chunk names to identify the unique \"name\" part.\n   */\n  findChunkNamePartIndex() {\n    const splitChunkNames = this.props.data.map((chunk) =>\n      chunk.label.split(/[^a-z0-9]/iu),\n    );\n    const longestSplitName = Math.max(\n      ...splitChunkNames.map((parts) => parts.length),\n    );\n    const namePart = {\n      index: 0,\n      votes: 0,\n    };\n    for (let i = longestSplitName - 1; i >= 0; i--) {\n      const identifierVotes = {\n        name: 0,\n        hash: 0,\n        ext: 0,\n      };\n      let lastChunkPart = \"\";\n      for (const splitChunkName of splitChunkNames) {\n        const part = splitChunkName[i];\n        if (part === undefined || part === \"\") {\n          continue;\n        }\n        if (part === lastChunkPart) {\n          identifierVotes.ext++;\n        } else if (\n          /[a-z]/u.test(part) &&\n          /[0-9]/u.test(part) &&\n          part.length === lastChunkPart.length\n        ) {\n          identifierVotes.hash++;\n        } else if (/^[a-z]+$/iu.test(part) || /^[0-9]+$/u.test(part)) {\n          identifierVotes.name++;\n        }\n        lastChunkPart = part;\n      }\n      if (identifierVotes.name >= namePart.votes) {\n        namePart.index = i;\n        namePart.votes = identifierVotes.name;\n      }\n    }\n    this.chunkNamePartIndex = namePart.index;\n  }\n\n  getChunkNamePart(chunkLabel) {\n    return (\n      chunkLabel.split(/[^a-z0-9]/iu)[this.chunkNamePartIndex] || chunkLabel\n    );\n  }\n}\n"
  },
  {
    "path": "client/components/types.js",
    "content": "import PropTypes from \"prop-types\";\n\nexport const GroupType = PropTypes.shape({\n  cid: PropTypes.number.isRequired,\n  label: PropTypes.string.isRequired,\n  path: PropTypes.string.isRequired,\n  // eslint-disable-next-line new-cap\n  groups: PropTypes.arrayOf((...args) => GroupType(...args)),\n  statSize: PropTypes.number.isRequired,\n  parsedSize: PropTypes.number.isRequired,\n  gzipSize: PropTypes.number,\n  brotliSize: PropTypes.number,\n  zstdSize: PropTypes.number,\n});\n\nexport const ViewerDataItemType = PropTypes.shape({\n  cid: PropTypes.number.isRequired,\n  label: PropTypes.string.isRequired,\n  isAsset: PropTypes.bool,\n  statSize: PropTypes.number.isRequired,\n  parsedSize: PropTypes.number.isRequired,\n  gzipSize: PropTypes.number,\n  brotliSize: PropTypes.number,\n  zstdSize: PropTypes.number,\n  groups: PropTypes.arrayOf(GroupType).isRequired,\n  isInitialByEntrypoint: PropTypes.objectOf(PropTypes.bool),\n});\n\nexport const ViewerDataType = PropTypes.arrayOf(ViewerDataItemType);\n\nexport const ModuleType = PropTypes.shape({\n  cid: PropTypes.number.isRequired,\n  label: PropTypes.string.isRequired,\n  path: PropTypes.string,\n  statSize: PropTypes.number.isRequired,\n  parsedSize: PropTypes.number.isRequired,\n  gzipSize: PropTypes.number,\n  brotliSize: PropTypes.number,\n  zstdSize: PropTypes.number,\n  weight: PropTypes.number.isRequired,\n});\n\nexport const SizeType = PropTypes.oneOf([\"statSize\", \"parsedSize\", \"gzipSize\"]);\n\nexport const SwitcherItemType = PropTypes.shape({\n  label: PropTypes.string,\n  prop: SizeType,\n});\n"
  },
  {
    "path": "client/lib/PureComponent.jsx",
    "content": "import { Component } from \"preact\";\n\n/**\n * @param {object} obj1 obj1\n * @param {object} obj2 obj2\n * @returns {boolean} true when the same, otherwise false\n */\nfunction isEqual(obj1, obj2) {\n  if (obj1 === obj2) return true;\n  const keys = Object.keys(obj1);\n  if (keys.length !== Object.keys(obj2).length) return false;\n  for (let i = 0; i < keys.length; i++) {\n    const key = keys[i];\n    if (obj1[key] !== obj2[key]) return false;\n  }\n  return true;\n}\n\nexport default class PureComponent extends Component {\n  shouldComponentUpdate(nextProps, nextState) {\n    return !isEqual(nextProps, this.props) || !isEqual(this.state, nextState);\n  }\n}\n"
  },
  {
    "path": "client/localStorage.js",
    "content": "const KEY_PREFIX = \"wba\";\n\nexport default {\n  getItem(key) {\n    try {\n      return JSON.parse(\n        globalThis.localStorage.getItem(`${KEY_PREFIX}.${key}`),\n      );\n    } catch {\n      return null;\n    }\n  },\n\n  setItem(key, value) {\n    try {\n      globalThis.localStorage.setItem(\n        `${KEY_PREFIX}.${key}`,\n        JSON.stringify(value),\n      );\n    } catch {\n      /* ignored */\n    }\n  },\n\n  removeItem(key) {\n    try {\n      globalThis.localStorage.removeItem(`${KEY_PREFIX}.${key}`);\n    } catch {\n      /* ignored */\n    }\n  },\n};\n"
  },
  {
    "path": "client/store.js",
    "content": "import { action, computed, makeObservable, observable } from \"mobx\";\nimport localStorage from \"./localStorage.js\";\nimport { isChunkParsed, walkModules } from \"./utils.js\";\n\nexport class Store {\n  cid = 0;\n\n  sizes = new Set([\n    \"statSize\",\n    \"parsedSize\",\n    \"gzipSize\",\n    \"brotliSize\",\n    \"zstdSize\",\n  ]);\n\n  allChunks;\n\n  selectedChunks;\n\n  searchQuery = \"\";\n\n  defaultSize;\n\n  selectedSize;\n\n  showConcatenatedModulesContent =\n    localStorage.getItem(\"showConcatenatedModulesContent\") === true;\n\n  darkMode = (() => {\n    const systemPrefersDark = globalThis.matchMedia(\n      \"(prefers-color-scheme: dark)\",\n    ).matches;\n\n    try {\n      const saved = localStorage.getItem(\"darkMode\");\n      if (saved !== null) return saved === \"true\";\n    } catch {\n      // Some browsers might not have localStorage available and we can fail silently\n    }\n\n    return systemPrefersDark;\n  })();\n\n  constructor() {\n    makeObservable(this, {\n      allChunks: observable.ref,\n      selectedChunks: observable.shallow,\n      searchQuery: observable,\n      defaultSize: observable,\n      selectedSize: observable,\n      showConcatenatedModulesContent: observable,\n      darkMode: observable,\n\n      toggleDarkMode: action,\n      setModules: action,\n      setSelectedChunks: action,\n      setSelectedSize: action,\n      setSearchQuery: action,\n\n      hasParsedSizes: computed,\n      activeSize: computed,\n      visibleChunks: computed,\n      allChunksSelected: computed,\n      totalChunksSize: computed,\n      searchQueryRegexp: computed,\n      isSearching: computed,\n      foundModulesByChunk: computed,\n      foundModules: computed,\n      hasFoundModules: computed,\n      hasConcatenatedModules: computed,\n      foundModulesSize: computed,\n    });\n  }\n\n  setModules(modules) {\n    walkModules(modules, (module) => {\n      module.cid = this.cid++;\n    });\n\n    this.allChunks = modules;\n    this.selectedChunks = this.allChunks;\n  }\n\n  setEntrypoints(entrypoints) {\n    this.entrypoints = entrypoints;\n  }\n\n  get hasParsedSizes() {\n    return this.allChunks.some(isChunkParsed);\n  }\n\n  setSelectedSize(selectedSize) {\n    this.selectedSize = selectedSize;\n  }\n\n  get activeSize() {\n    const activeSize = this.selectedSize || this.defaultSize;\n\n    if (!this.hasParsedSizes || !this.sizes.has(activeSize)) {\n      return \"statSize\";\n    }\n\n    return activeSize;\n  }\n\n  setSelectedChunks(chunks) {\n    this.selectedChunks = chunks;\n  }\n\n  get visibleChunks() {\n    const visibleChunks = this.allChunks.filter((chunk) =>\n      this.selectedChunks.includes(chunk),\n    );\n\n    return this.filterModulesForSize(visibleChunks, this.activeSize);\n  }\n\n  get allChunksSelected() {\n    return this.visibleChunks.length === this.allChunks.length;\n  }\n\n  get totalChunksSize() {\n    return this.allChunks.reduce(\n      (totalSize, chunk) => totalSize + (chunk[this.activeSize] || 0),\n      0,\n    );\n  }\n\n  get searchQueryRegexp() {\n    const query = this.searchQuery.trim();\n\n    if (!query) {\n      return null;\n    }\n\n    try {\n      return new RegExp(query, \"iu\");\n    } catch {\n      return null;\n    }\n  }\n\n  get isSearching() {\n    return Boolean(this.searchQueryRegexp);\n  }\n\n  get foundModulesByChunk() {\n    if (!this.isSearching) {\n      return [];\n    }\n\n    const query = this.searchQueryRegexp;\n\n    return this.visibleChunks\n      .map((chunk) => {\n        let foundGroups = [];\n\n        walkModules(chunk.groups, (module) => {\n          let weight = 0;\n\n          /**\n           * Splitting found modules/directories into groups:\n           *\n           * 1) Module with matched label (weight = 4)\n           * 2) Directory with matched label (weight = 3)\n           * 3) Module with matched path (weight = 2)\n           * 4) Directory with matched path (weight = 1)\n           */\n          if (query.test(module.label)) {\n            weight += 3;\n          } else if (module.path && query.test(module.path)) {\n            weight++;\n          }\n\n          if (!weight) return;\n\n          if (!module.groups) {\n            weight += 1;\n          }\n\n          const foundModules = (foundGroups[weight - 1] =\n            foundGroups[weight - 1] || []);\n          foundModules.push(module);\n        });\n\n        const { activeSize } = this;\n\n        // Filtering out missing groups\n        foundGroups = foundGroups.filter(Boolean).reverse();\n        // Sorting each group by active size\n        for (const modules of foundGroups) {\n          modules.sort((m1, m2) => m2[activeSize] - m1[activeSize]);\n        }\n\n        return {\n          chunk,\n          modules: foundGroups.flat(),\n        };\n      })\n      .filter((result) => result.modules.length > 0)\n      .toSorted((c1, c2) => c1.modules.length - c2.modules.length);\n  }\n\n  setSearchQuery(query) {\n    this.searchQuery = query;\n  }\n\n  get foundModules() {\n    return this.foundModulesByChunk.reduce(\n      (arr, chunk) => [...arr, ...chunk.modules],\n      [],\n    );\n  }\n\n  get hasFoundModules() {\n    return this.foundModules.length > 0;\n  }\n\n  get hasConcatenatedModules() {\n    let result = false;\n\n    walkModules(this.visibleChunks, (module) => {\n      if (module.concatenated) {\n        result = true;\n        return false;\n      }\n    });\n\n    return result;\n  }\n\n  get foundModulesSize() {\n    return this.foundModules.reduce(\n      (summ, module) => summ + module[this.activeSize],\n      0,\n    );\n  }\n\n  filterModulesForSize(modules, sizeProp) {\n    return modules.reduce((filteredModules, module) => {\n      if (module[sizeProp]) {\n        if (module.groups) {\n          const showContent =\n            !module.concatenated || this.showConcatenatedModulesContent;\n\n          module = {\n            ...module,\n            groups: showContent\n              ? this.filterModulesForSize(module.groups, sizeProp)\n              : null,\n          };\n        }\n\n        module.weight = module[sizeProp];\n        filteredModules.push(module);\n      }\n\n      return filteredModules;\n    }, []);\n  }\n\n  toggleDarkMode() {\n    this.darkMode = !this.darkMode;\n    try {\n      localStorage.setItem(\"darkMode\", this.darkMode);\n    } catch {\n      // Some browsers might not have localStorage available and we can fail silently\n    }\n    this.updateTheme();\n  }\n\n  updateTheme() {\n    if (this.darkMode) {\n      document.documentElement.dataset.theme = \"dark\";\n    } else {\n      delete document.documentElement.dataset.theme;\n    }\n  }\n}\n\nexport const store = new Store();\n"
  },
  {
    "path": "client/utils.js",
    "content": "/**\n * @param {Chunk} chunk chunk\n * @returns {boolean} true when chunk is parser, otherwise false\n */\nexport function isChunkParsed(chunk) {\n  return typeof chunk.parsedSize === \"number\";\n}\n\n/**\n * @param {Module[]} modules modules\n * @param {(module: Module) => boolean} cb callback\n * @returns {boolean} state\n */\nexport function walkModules(modules, cb) {\n  for (const module of modules) {\n    if (cb(module) === false) return false;\n\n    if (module.groups && walkModules(module.groups, cb) === false) {\n      return false;\n    }\n  }\n}\n\n/**\n * @template T\n * @param {T} elem element\n * @param {T[]} container container\n * @returns {boolean} true when element is outside, otherwise false\n */\nexport function elementIsOutside(elem, container) {\n  return !(elem === container || container.contains(elem));\n}\n"
  },
  {
    "path": "client/viewer.css",
    "content": ":root {\n  --main-font: normal 11px Verdana, sans-serif;\n  --bg-primary: #fff;\n  --bg-secondary: #f5f5f5;\n  --text-primary: #000;\n  --text-secondary: #666;\n  --border-color: #aaa;\n  --border-light: #ddd;\n  --shadow: rgba(0, 0, 0, 0.1);\n  --hover-bg: rgba(0, 0, 0, 0.05);\n}\n\n[data-theme=\"dark\"] {\n  --bg-primary: #1e1e1e;\n  --bg-secondary: #252525;\n  --text-primary: #e0e0e0;\n  --text-secondary: #a0a0a0;\n  --border-color: #404040;\n  --border-light: #333;\n  --shadow: rgba(0, 0, 0, 0.3);\n  --hover-bg: rgba(255, 255, 255, 0.05);\n}\n\n:global html,\n:global body,\n:global #app {\n  height: 100%;\n  margin: 0;\n  overflow: hidden;\n  padding: 0;\n  width: 100%;\n  background: var(--bg-primary);\n  color: var(--text-primary);\n  transition:\n    background-color 0.3s ease,\n    color 0.3s ease;\n}\n\n:global body.resizing {\n  user-select: none !important;\n}\n\n:global body.resizing * {\n  pointer-events: none;\n}\n\n:global body.resizing.col {\n  cursor: col-resize !important;\n}\n"
  },
  {
    "path": "client/viewer.jsx",
    "content": "import { render } from \"preact\";\n\nimport ModulesTreemap from \"./components/ModulesTreemap.jsx\";\nimport { store } from \"./store.js\";\n\nimport \"./viewer.css\";\n\n// Initializing WebSocket for live treemap updates\nlet ws;\ntry {\n  if (globalThis.enableWebSocket) {\n    ws = new WebSocket(`ws://${location.host}`);\n  }\n} catch {\n  // eslint-disable-next-line no-console\n  console.warn(\n    \"Couldn't connect to analyzer websocket server so you'll have to reload page manually to see updates in the treemap\",\n  );\n}\n\nwindow.addEventListener(\n  \"load\",\n  () => {\n    store.defaultSize = `${globalThis.defaultSizes}Size`;\n    store.setModules(globalThis.chartData);\n    store.setEntrypoints(globalThis.entrypoints);\n    store.updateTheme();\n    render(<ModulesTreemap />, document.querySelector(\"#app\"));\n\n    if (ws) {\n      ws.addEventListener(\"message\", (event) => {\n        const msg = JSON.parse(event.data);\n\n        if (msg.event === \"chartDataUpdated\") {\n          store.setModules(msg.data);\n        }\n      });\n    }\n  },\n  false,\n);\n"
  },
  {
    "path": "eslint.config.mjs",
    "content": "import { defineConfig, globalIgnores } from \"eslint/config\";\nimport config from \"eslint-config-webpack\";\nimport configs from \"eslint-config-webpack/configs.js\";\n\nexport default defineConfig([\n  globalIgnores([\n    // Ignore some test files\n    \"lib/**/*\",\n    \"public/**/*\",\n    \"test/src/**/*\",\n    \"test/dev-server/**/*\",\n    \"test/bundles/**/*\",\n    \"test/stats/**/*\",\n    \"test/output/**/*\",\n  ]),\n  {\n    ignores: [\"client/**/*\", \"src/tree/**/*\", \"src/sizeUtils.js\"],\n    extends: [config],\n    rules: {\n      // We use babel so it will be applied by default\n      strict: \"off\",\n    },\n  },\n  {\n    files: [\"src/bin/**/*\"],\n    rules: {\n      \"no-console\": \"off\",\n      \"n/hashbang\": \"off\",\n      \"n/no-process-exit\": \"off\",\n      \"unicorn/prefer-top-level-await\": \"off\",\n    },\n  },\n  {\n    files: [\"src/tree/**/*\", \"src/sizeUtils.js\"],\n    extends: [configs[\"node-recommended-module\"]],\n  },\n  {\n    files: [\"client/**/*\"],\n    extends: [configs[\"browser-recommended\"]],\n    rules: {\n      // TODO fix me in future\n      \"react/no-deprecated\": \"off\",\n    },\n  },\n]);\n"
  },
  {
    "path": "jest.config.js",
    "content": "\"use strict\";\n\n// Jest configuration\n// Reference: https://jestjs.io/docs/configuration\n\nmodule.exports = {\n  testTimeout: 15000,\n  testMatch: [\"**/test/*.js\"],\n  testPathIgnorePatterns: [\"<rootDir>/test/helpers.js\"],\n  setupFilesAfterEnv: [\"<rootDir>/test/helpers.js\"],\n  coveragePathIgnorePatterns: [\"<rootDir>/test\"],\n  watchPathIgnorePatterns: [\n    // Ignore the output generated by plugin tests\n    // when watching for changes to avoid the test\n    // runner continuously re-running tests\n    \"<rootDir>/test/output\",\n  ],\n};\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"webpack-bundle-analyzer\",\n  \"version\": \"5.2.0\",\n  \"description\": \"Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap\",\n  \"keywords\": [\n    \"webpack\",\n    \"bundle\",\n    \"analyzer\",\n    \"modules\",\n    \"size\",\n    \"interactive\",\n    \"chart\",\n    \"treemap\",\n    \"zoomable\",\n    \"zoom\"\n  ],\n  \"homepage\": \"https://github.com/webpack/webpack-bundle-analyzer\",\n  \"bugs\": {\n    \"url\": \"https://github.com/webpack/webpack-bundle-analyzer/issues\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/webpack/webpack-bundle-analyzer.git\"\n  },\n  \"license\": \"MIT\",\n  \"author\": \"Yury Grunin <grunin.ya@ya.ru>\",\n  \"main\": \"lib/index.js\",\n  \"bin\": \"lib/bin/analyzer.js\",\n  \"files\": [\n    \"public\",\n    \"lib\"\n  ],\n  \"scripts\": {\n    \"clean:analyzer\": \"del-cli lib\",\n    \"clean:viewer\": \"del-cli public\",\n    \"clean\": \"npm run clean:analyzer && npm run clean:viewer\",\n    \"build:analyzer\": \"npm run clean:analyzer && babel src -d lib --copy-files\",\n    \"build:viewer\": \"npm run clean:viewer && webpack-cli --node-env=production\",\n    \"build\": \"npm run build:analyzer && npm run build:viewer\",\n    \"watch:analyzer\": \"npm run build:analyzer -- --watch\",\n    \"watch:viewer\": \"npm run build:viewer -- --node-env=development --watch\",\n    \"npm-publish\": \"npm run lint && npm run build && npm test && npm publish\",\n    \"lint\": \"npm run lint:code && npm run lint:types && npm run fmt:check\",\n    \"lint:code\": \"eslint --cache .\",\n    \"lint:types\": \"tsc --pretty --noEmit\",\n    \"fmt\": \"npm run fmt:base -- --log-level warn --write\",\n    \"fmt:check\": \"npm run fmt:base -- --check\",\n    \"fmt:base\": \"prettier --cache --ignore-unknown .\",\n    \"fix\": \"npm run fix:code && npm run fmt\",\n    \"test\": \"NODE_OPTIONS=--openssl-legacy-provider jest --runInBand\",\n    \"test:coverage\": \"npm run test -- --coverage\",\n    \"test-dev\": \"NODE_OPTIONS=--openssl-legacy-provider jest --watch --runInBand\"\n  },\n  \"dependencies\": {\n    \"@discoveryjs/json-ext\": \"^0.6.3\",\n    \"acorn\": \"^8.0.4\",\n    \"acorn-walk\": \"^8.0.0\",\n    \"commander\": \"^14.0.2\",\n    \"escape-string-regexp\": \"^5.0.0\",\n    \"html-escaper\": \"^3.0.3\",\n    \"opener\": \"^1.5.2\",\n    \"picocolors\": \"^1.0.0\",\n    \"sirv\": \"^3.0.2\",\n    \"ws\": \"^8.19.0\"\n  },\n  \"devDependencies\": {\n    \"@babel/cli\": \"^7.28.6\",\n    \"@babel/core\": \"^7.26.9\",\n    \"@babel/plugin-transform-class-properties\": \"^7.27.1\",\n    \"@babel/plugin-transform-runtime\": \"^7.26.9\",\n    \"@babel/preset-env\": \"^7.26.9\",\n    \"@babel/preset-react\": \"^7.26.3\",\n    \"@babel/runtime\": \"^7.26.9\",\n    \"@carrotsearch/foamtree\": \"^3.5.0\",\n    \"@types/html-escaper\": \"^3.0.4\",\n    \"@types/opener\": \"^1.4.3\",\n    \"autoprefixer\": \"^10.2.5\",\n    \"babel-eslint\": \"^10.1.0\",\n    \"babel-loader\": \"^10.0.0\",\n    \"classnames\": \"^2.3.1\",\n    \"core-js\": \"^3.12.1\",\n    \"css-loader\": \"^7.1.3\",\n    \"cssnano\": \"^7.1.2\",\n    \"debounce\": \"^3.0.0\",\n    \"del-cli\": \"^7.0.0\",\n    \"eslint\": \"^9.39.2\",\n    \"eslint-config-webpack\": \"^4.9.3\",\n    \"filesize\": \"^11.0.13\",\n    \"jest\": \"^30.2.0\",\n    \"mobx\": \"^6.15.0\",\n    \"mobx-react\": \"^9.2.1\",\n    \"postcss\": \"^8.3.0\",\n    \"postcss-loader\": \"^8.2.0\",\n    \"preact\": \"^10.5.13\",\n    \"prettier\": \"^3.8.0\",\n    \"prop-types\": \"^15.8.1\",\n    \"puppeteer\": \"^24.30.0\",\n    \"style-loader\": \"^4.0.0\",\n    \"terser-webpack-plugin\": \"^5.1.2\",\n    \"tinyglobby\": \"^0.2.15\",\n    \"typescript\": \"^5.9.3\",\n    \"webpack\": \"^5.105.2\",\n    \"webpack-4\": \"npm:webpack@^4\",\n    \"webpack-cli\": \"^6.0.1\",\n    \"webpack-dev-server\": \"^5.2.0\"\n  },\n  \"packageManager\": \"npm@10.1.0\",\n  \"engines\": {\n    \"node\": \">= 20.9.0\"\n  },\n  \"changelog\": \"https://github.com/webpack/webpack-bundle-analyzer/blob/main/CHANGELOG.md\"\n}\n"
  },
  {
    "path": "prettier.config.mjs",
    "content": "export default {\n  printWidth: 80,\n  tabWidth: 2,\n  trailingComma: \"all\",\n  arrowParens: \"always\",\n};\n"
  },
  {
    "path": "src/BundleAnalyzerPlugin.js",
    "content": "const fs = require(\"node:fs\");\nconst path = require(\"node:path\");\nconst { bold } = require(\"picocolors\");\n\nconst Logger = require(\"./Logger\");\nconst { writeStats } = require(\"./statsUtils\");\nconst utils = require(\"./utils\");\nconst viewer = require(\"./viewer\");\n\n/** @typedef {import(\"net\").AddressInfo} AddressInfo */\n/** @typedef {import(\"webpack\").Compiler} Compiler */\n/** @typedef {import(\"webpack\").OutputFileSystem} OutputFileSystem */\n/** @typedef {import(\"webpack\").Stats} Stats */\n/** @typedef {import(\"webpack\").StatsOptions} StatsOptions */\n/** @typedef {import(\"webpack\").StatsAsset} StatsAsset */\n/** @typedef {import(\"webpack\").StatsCompilation} StatsCompilation */\n/** @typedef {import(\"./sizeUtils\").Algorithm} CompressionAlgorithm */\n/** @typedef {import(\"./Logger\").Level} LogLever */\n/** @typedef {import(\"./viewer\").ViewerServerObj} ViewerServerObj */\n\n/** @typedef {string | boolean | StatsOptions} PluginStatsOptions */\n\n// eslint-disable-next-line jsdoc/reject-any-type\n/** @typedef {any} EXPECTED_ANY */\n\n/** @typedef {\"static\" | \"json\" | \"server\" | \"disabled\"} Mode */\n/** @typedef {string | RegExp | ((asset: string) => void)} Pattern */\n/** @typedef {null | Pattern | Pattern[]} ExcludeAssets */\n/** @typedef {\"stat\" | \"parsed\" | \"gzip\" | \"brotli\" | \"zstd\"} Sizes */\n/** @typedef {string | (() => string)} ReportTitle */\n/** @typedef {(options: { listenHost: string, listenPort: number, boundAddress: string | AddressInfo | null }) => string} AnalyzerUrl */\n\n/**\n * @typedef {object} Options\n * @property {Mode=} analyzerMode analyzer mode\n * @property {string=} analyzerHost analyzer host\n * @property {\"auto\" | number=} analyzerPort analyzer port\n * @property {CompressionAlgorithm=} compressionAlgorithm compression algorithm\n * @property {string | null=} reportFilename report filename\n * @property {ReportTitle=} reportTitle report title\n * @property {Sizes=} defaultSizes default sizes\n * @property {boolean=} openAnalyzer open analyzer\n * @property {boolean=} generateStatsFile generate stats file\n * @property {string=} statsFilename stats filename\n * @property {PluginStatsOptions=} statsOptions stats options\n * @property {ExcludeAssets=} excludeAssets exclude assets\n * @property {LogLever=} logLevel exclude assets\n * @property {boolean=} startAnalyzer start analyzer\n * @property {AnalyzerUrl=} analyzerUrl start analyzer\n */\n\nclass BundleAnalyzerPlugin {\n  /**\n   * @param {Options=} opts options\n   */\n  constructor(opts = {}) {\n    /** @type {Required<Omit<Options, \"analyzerPort\" | \"statsOptions\">> & { analyzerPort: number, statsOptions: undefined | PluginStatsOptions }} */\n    this.opts = {\n      analyzerMode: \"server\",\n      analyzerHost: \"127.0.0.1\",\n      compressionAlgorithm: \"gzip\",\n      reportFilename: null,\n      reportTitle: utils.defaultTitle,\n      defaultSizes: \"parsed\",\n      openAnalyzer: true,\n      generateStatsFile: false,\n      statsFilename: \"stats.json\",\n      statsOptions: undefined,\n      excludeAssets: null,\n      logLevel: \"info\",\n      // TODO deprecated\n      startAnalyzer: true,\n      analyzerUrl: utils.defaultAnalyzerUrl,\n      ...opts,\n      analyzerPort:\n        opts.analyzerPort === \"auto\" ? 0 : (opts.analyzerPort ?? 8888),\n    };\n\n    /** @type {Compiler | null} */\n    this.compiler = null;\n    /** @type {Promise<ViewerServerObj> | null} */\n    this.server = null;\n    this.logger = new Logger(this.opts.logLevel);\n  }\n\n  /**\n   * @param {Compiler} compiler compiler\n   */\n  apply(compiler) {\n    this.compiler = compiler;\n\n    /**\n     * @param {Stats} stats stats\n     * @param {(err?: Error) => void} callback callback\n     */\n    const done = (stats, callback) => {\n      callback ||= () => {};\n\n      /** @type {(() => Promise<void>)[]} */\n      const actions = [];\n\n      if (this.opts.generateStatsFile) {\n        actions.push(() =>\n          this.generateStatsFile(stats.toJson(this.opts.statsOptions)),\n        );\n      }\n\n      // Handling deprecated `startAnalyzer` flag\n      if (this.opts.analyzerMode === \"server\" && !this.opts.startAnalyzer) {\n        this.opts.analyzerMode = \"disabled\";\n      }\n\n      if (this.opts.analyzerMode === \"server\") {\n        actions.push(() => this.startAnalyzerServer(stats.toJson()));\n      } else if (this.opts.analyzerMode === \"static\") {\n        actions.push(() => this.generateStaticReport(stats.toJson()));\n      } else if (this.opts.analyzerMode === \"json\") {\n        actions.push(() => this.generateJSONReport(stats.toJson()));\n      }\n\n      if (actions.length) {\n        // Making analyzer logs to be after all webpack logs in the console\n        setImmediate(async () => {\n          try {\n            await Promise.all(actions.map((action) => action()));\n            callback();\n          } catch (err) {\n            callback(/** @type {Error} */ (err));\n          }\n        });\n      } else {\n        callback();\n      }\n    };\n\n    if (compiler.hooks) {\n      compiler.hooks.done.tapAsync(\"webpack-bundle-analyzer\", done);\n    } else {\n      // @ts-expect-error old webpack@4 API\n      compiler.plugin(\"done\", done);\n    }\n  }\n\n  /**\n   * @param {StatsCompilation} stats stats\n   * @returns {Promise<void>}\n   */\n  async generateStatsFile(stats) {\n    const statsFilepath = path.resolve(\n      /** @type {Compiler} */\n      (this.compiler).outputPath,\n      this.opts.statsFilename,\n    );\n    await fs.promises.mkdir(path.dirname(statsFilepath), { recursive: true });\n\n    try {\n      await writeStats(stats, statsFilepath);\n\n      this.logger.info(\n        `${bold(\"Webpack Bundle Analyzer\")} saved stats file to ${bold(statsFilepath)}`,\n      );\n    } catch (error) {\n      this.logger.error(\n        `${bold(\"Webpack Bundle Analyzer\")} error saving stats file to ${bold(statsFilepath)}: ${error}`,\n      );\n    }\n  }\n\n  /**\n   * @param {StatsCompilation} stats stats\n   * @returns {Promise<void>}\n   */\n  async startAnalyzerServer(stats) {\n    if (this.server) {\n      (await this.server).updateChartData(stats);\n    } else {\n      this.server = viewer.startServer(stats, {\n        openBrowser: this.opts.openAnalyzer,\n        host: this.opts.analyzerHost,\n        port: this.opts.analyzerPort,\n        reportTitle: this.opts.reportTitle,\n        compressionAlgorithm: this.opts.compressionAlgorithm,\n        bundleDir: this.getBundleDirFromCompiler(),\n        logger: this.logger,\n        defaultSizes: this.opts.defaultSizes,\n        excludeAssets: this.opts.excludeAssets,\n        analyzerUrl: this.opts.analyzerUrl,\n      });\n    }\n  }\n\n  /**\n   * @param {StatsCompilation} stats stats\n   * @returns {Promise<void>}\n   */\n  async generateJSONReport(stats) {\n    await viewer.generateJSONReport(stats, {\n      reportFilename: path.resolve(\n        /** @type {Compiler} */\n        (this.compiler).outputPath,\n        this.opts.reportFilename || \"report.json\",\n      ),\n      compressionAlgorithm: this.opts.compressionAlgorithm,\n      bundleDir: this.getBundleDirFromCompiler(),\n      logger: this.logger,\n      excludeAssets: this.opts.excludeAssets,\n    });\n  }\n\n  /**\n   * @param {StatsCompilation} stats stats\n   * @returns {Promise<void>}\n   */\n  async generateStaticReport(stats) {\n    await viewer.generateReport(stats, {\n      openBrowser: this.opts.openAnalyzer,\n      reportFilename: path.resolve(\n        /** @type {Compiler} */\n        (this.compiler).outputPath,\n        this.opts.reportFilename || \"report.html\",\n      ),\n      reportTitle: this.opts.reportTitle,\n      compressionAlgorithm: this.opts.compressionAlgorithm,\n      bundleDir: this.getBundleDirFromCompiler(),\n      logger: this.logger,\n      defaultSizes: this.opts.defaultSizes,\n      excludeAssets: this.opts.excludeAssets,\n    });\n  }\n\n  getBundleDirFromCompiler() {\n    const outputFileSystemConstructor =\n      /** @type {OutputFileSystem} */\n      (/** @type {Compiler} */ (this.compiler).outputFileSystem).constructor;\n\n    if (typeof outputFileSystemConstructor === \"undefined\") {\n      return /** @type {Compiler} */ (this.compiler).outputPath;\n    }\n    switch (outputFileSystemConstructor.name) {\n      case \"MemoryFileSystem\":\n        return null;\n      // Detect AsyncMFS used by Nuxt 2.5 that replaces webpack's MFS during development\n      // Related: #274\n      case \"AsyncMFS\":\n        return null;\n      default:\n        return /** @type {Compiler} */ (this.compiler).outputPath;\n    }\n  }\n}\n\nmodule.exports = BundleAnalyzerPlugin;\n"
  },
  {
    "path": "src/Logger.js",
    "content": "/** @typedef {import(\"./BundleAnalyzerPlugin\").EXPECTED_ANY} EXPECTED_ANY */\n\n/** @typedef {\"debug\" | \"info\" | \"warn\" | \"error\" | \"silent\"} Level */\n\n/** @type {Level[]} */\nconst LEVELS = [\"debug\", \"info\", \"warn\", \"error\", \"silent\"];\n\n/** @type {Map<Level, string>} */\nconst LEVEL_TO_CONSOLE_METHOD = new Map([\n  [\"debug\", \"log\"],\n  [\"info\", \"log\"],\n  [\"warn\", \"log\"],\n]);\n\nclass Logger {\n  /** @type {Level[]} */\n  static levels = LEVELS;\n\n  /** @type {Level} */\n  static defaultLevel = \"info\";\n\n  /**\n   * @param {Level=} level level\n   */\n  constructor(level = Logger.defaultLevel) {\n    /** @type {Set<Level>} */\n    this.activeLevels = new Set();\n    this.setLogLevel(level);\n  }\n\n  /**\n   * @param {Level} level level\n   */\n  setLogLevel(level) {\n    const levelIndex = LEVELS.indexOf(level);\n\n    if (levelIndex === -1) {\n      throw new Error(\n        `Invalid log level \"${level}\". Use one of these: ${LEVELS.join(\", \")}`,\n      );\n    }\n\n    this.activeLevels.clear();\n\n    for (const [i, level] of LEVELS.entries()) {\n      if (i >= levelIndex) this.activeLevels.add(level);\n    }\n  }\n\n  /**\n   * @template {EXPECTED_ANY[]} T\n   * @param {T} args args\n   */\n  debug(...args) {\n    if (!this.activeLevels.has(\"debug\")) return;\n    this._log(\"debug\", ...args);\n  }\n\n  /**\n   * @template {EXPECTED_ANY[]} T\n   * @param {T} args args\n   */\n  info(...args) {\n    if (!this.activeLevels.has(\"info\")) return;\n    this._log(\"info\", ...args);\n  }\n\n  /**\n   * @template {EXPECTED_ANY[]} T\n   * @param {T} args args\n   */\n  error(...args) {\n    if (!this.activeLevels.has(\"error\")) return;\n    this._log(\"error\", ...args);\n  }\n\n  /**\n   * @template {EXPECTED_ANY[]} T\n   * @param {T} args args\n   */\n  warn(...args) {\n    if (!this.activeLevels.has(\"warn\")) return;\n    this._log(\"warn\", ...args);\n  }\n\n  /**\n   * @template {EXPECTED_ANY[]} T\n   * @param {Level} level level\n   * @param {T} args args\n   */\n  _log(level, ...args) {\n    // eslint-disable-next-line no-console\n    console[\n      /** @type {Exclude<Level, \"silent\">} */\n      (LEVEL_TO_CONSOLE_METHOD.get(level) || level)\n    ](...args);\n  }\n}\n\nmodule.exports = Logger;\n"
  },
  {
    "path": "src/analyzer.js",
    "content": "const fs = require(\"node:fs\");\nconst path = require(\"node:path\");\n\nconst { parseChunked } = require(\"@discoveryjs/json-ext\");\n\nconst Logger = require(\"./Logger\");\nconst { parseBundle } = require(\"./parseUtils\");\nconst { getCompressedSize } = require(\"./sizeUtils\");\nconst Folder = require(\"./tree/Folder\").default;\nconst { createAssetsFilter } = require(\"./utils\");\n\nconst FILENAME_QUERY_REGEXP = /\\?.*$/u;\nconst FILENAME_EXTENSIONS = /\\.(js|mjs|cjs|bundle)$/iu;\n\n/** @typedef {import(\"webpack\").StatsCompilation} StatsCompilation */\n/** @typedef {import(\"webpack\").StatsModule} StatsModule */\n/** @typedef {import(\"webpack\").StatsAsset} StatsAsset */\n/** @typedef {import(\"./BundleAnalyzerPlugin\").CompressionAlgorithm} CompressionAlgorithm */\n/** @typedef {import(\"./BundleAnalyzerPlugin\").ExcludeAssets} ExcludeAssets */\n\n/**\n * @typedef {object} AnalyzerOptions\n * @property {\"gzip\" | \"brotli\" | \"zstd\"} compressionAlgorithm compression algorithm\n */\n\n/**\n * @param {StatsModule[]} modules modules\n * @param {AnalyzerOptions} options options\n * @returns {Folder} a folder class\n */\nfunction createModulesTree(modules, options) {\n  const root = new Folder(\".\", options);\n\n  for (const module of modules) {\n    root.addModule(module);\n  }\n\n  root.mergeNestedFolders();\n\n  return root;\n}\n\n/**\n * arr-flatten <https://github.com/jonschlinkert/arr-flatten>\n *\n * Copyright (c) 2014-2017, Jon Schlinkert.\n * Released under the MIT License.\n *\n * Modified by Sukka <https://skk.moe>\n *\n * Replace recursively flatten with one-level deep flatten to match lodash.flatten\n *\n * TODO: replace with Array.prototype.flat once Node.js 10 support is dropped\n */\n/**\n * Flattens an array by one level.\n * @template T\n * @param {(T | T[])[]} arr the array to flatten\n * @returns {T[]} a new array containing the flattened elements\n */\nfunction flatten(arr) {\n  if (!arr) return [];\n  const len = arr.length;\n  if (!len) return [];\n\n  let cur;\n\n  const res = [];\n  for (let i = 0; i < len; i++) {\n    cur = arr[i];\n    if (Array.isArray(cur)) {\n      res.push(...cur);\n    } else {\n      res.push(cur);\n    }\n  }\n  return res;\n}\n\n/**\n * @param {StatsCompilation} bundleStats bundle stats\n * @param {string} assetName asset name\n * @returns {boolean} child asset bundlers\n */\nfunction getChildAssetBundles(bundleStats, assetName) {\n  return flatten(\n    (bundleStats.children || /** @type {StatsCompilation} */ ([])).find(\n      /**\n       * @param {StatsCompilation} child child stats\n       * @returns {string[][]} assets by chunk name\n       */\n      (child) => Object.values(child.assetsByChunkName || []),\n    ),\n  ).includes(assetName);\n}\n\n/**\n * @param {StatsAsset} statsAsset stats asset\n * @param {StatsModule} statsModule stats modules\n * @returns {boolean} true when asset has a module\n */\nfunction assetHasModule(statsAsset, statsModule) {\n  // Checking if this module is the part of asset chunks\n  return (statsModule.chunks || []).some(\n    (moduleChunk) =>\n      statsAsset.chunks && statsAsset.chunks.includes(moduleChunk),\n  );\n}\n\n/**\n * @param {StatsModule} statsModule stats Module\n * @returns {boolean} true when runtime modules, otherwise false\n */\nfunction isRuntimeModule(statsModule) {\n  return statsModule.moduleType === \"runtime\";\n}\n\n/**\n * @param {StatsCompilation} bundleStats bundle stats\n * @returns {StatsModule[]} modules\n */\nfunction getBundleModules(bundleStats) {\n  /** @type {Set<string | number>} */\n  const seenIds = new Set();\n  const modules = /** @type {StatsModule[]} */ ([\n    ...(bundleStats.chunks?.map((chunk) => chunk.modules) || []),\n    ...(bundleStats.modules || []),\n  ]).filter(Boolean);\n\n  return flatten(modules).filter((mod) => {\n    // Filtering out Webpack's runtime modules as they don't have ids and can't be parsed (introduced in Webpack 5)\n    if (isRuntimeModule(mod)) {\n      return false;\n    }\n\n    if (seenIds.has(mod.id)) {\n      return false;\n    }\n\n    seenIds.add(mod.id);\n\n    return true;\n  });\n}\n\n/** @typedef {Record<string, Record<string, boolean>>} ChunkToInitialByEntrypoint */\n\n/**\n * @param {StatsCompilation} bundleStats bundle stats\n * @returns {ChunkToInitialByEntrypoint} chunk to initial by entrypoint\n */\nfunction getChunkToInitialByEntrypoint(bundleStats) {\n  if (bundleStats === null || bundleStats === undefined) {\n    return {};\n  }\n  /** @type {ChunkToInitialByEntrypoint} */\n  const chunkToEntrypointInititalMap = {};\n  for (const entrypoint of Object.values(bundleStats.entrypoints || {})) {\n    for (const asset of entrypoint.assets || []) {\n      chunkToEntrypointInititalMap[asset.name] ??= {};\n      chunkToEntrypointInititalMap[asset.name][\n        /** @type {string} */\n        (entrypoint.name)\n      ] = true;\n    }\n  }\n  return chunkToEntrypointInititalMap;\n}\n\n/**\n * @param {StatsModule} statsModule stats modules\n * @returns {boolean} true when entry module, otherwise false\n */\nfunction isEntryModule(statsModule) {\n  return statsModule.depth === 0;\n}\n\n/**\n * @typedef {object} ViewerDataOptions\n * @property {Logger} logger logger\n * @property {CompressionAlgorithm} compressionAlgorithm compression algorithm\n * @property {ExcludeAssets} excludeAssets exclude assets\n */\n\n/** @typedef {import(\"./tree/Module\").ModuleChartData} ModuleChartData */\n/** @typedef {import(\"./tree/ContentModule\").ContentModuleChartData} ContentModuleChartData */\n/** @typedef {import(\"./tree/ConcatenatedModule\").ConcatenatedModuleChartData} ConcatenatedModuleChartData */\n/** @typedef {import(\"./tree/ContentFolder\").ContentFolderChartData} ContentFolderChartData */\n/** @typedef {import(\"./tree/Folder\").FolderChartData} FolderChartData */\n\n/**\n * @typedef {object} ChartDataItem\n * @property {string} label label\n * @property {true} isAsset true when is asset, otherwise false\n * @property {number} statSize stat size\n * @property {number | undefined} parsedSize stat size\n * @property {number | undefined} gzipSize gzip size\n * @property {number | undefined} brotliSize brotli size\n * @property {number | undefined} zstdSize zstd size\n * @property {(ModuleChartData | ContentModuleChartData | ConcatenatedModuleChartData | ContentFolderChartData | FolderChartData)[]} groups groups\n * @property {Record<string, boolean>} isInitialByEntrypoint record with initial entrypoints\n */\n\n/**\n * @typedef {ChartDataItem[]} ChartData\n */\n\n/**\n * @param {StatsCompilation} bundleStats bundle stats\n * @param {string | null} bundleDir bundle dir\n * @param {ViewerDataOptions=} opts options\n * @returns {ChartData} chart data\n */\nfunction getViewerData(bundleStats, bundleDir, opts) {\n  const {\n    logger = new Logger(),\n    compressionAlgorithm = \"gzip\",\n    excludeAssets = null,\n  } = opts || {};\n\n  const isAssetIncluded = createAssetsFilter(excludeAssets);\n\n  // Sometimes all the information is located in `children` array (e.g. problem in #10)\n  if (\n    (bundleStats.assets === null ||\n      bundleStats.assets === undefined ||\n      bundleStats.assets.length === 0) &&\n    bundleStats.children &&\n    bundleStats.children.length > 0\n  ) {\n    const { children } = bundleStats;\n    [bundleStats] = bundleStats.children;\n    // Sometimes if there are additional child chunks produced add them as child assets,\n    // leave the 1st one as that is considered the 'root' asset.\n    for (let i = 1; i < children.length; i++) {\n      for (const asset of children[i].assets || []) {\n        asset.isChild = true;\n        /** @type {StatsAsset[]} */\n        (bundleStats.assets).push(asset);\n      }\n    }\n  } else if (bundleStats.children && bundleStats.children.length > 0) {\n    // Sometimes if there are additional child chunks produced add them as child assets\n    for (const child of bundleStats.children) {\n      for (const asset of child.assets || []) {\n        asset.isChild = true;\n        /** @type {StatsAsset[]} */\n        (bundleStats.assets).push(asset);\n      }\n    }\n  }\n\n  // Picking only `*.js, *.cjs or *.mjs` assets from bundle that has non-empty `chunks` array\n  bundleStats.assets = (bundleStats.assets || []).filter((asset) => {\n    // Filter out non 'asset' type asset if type is provided (Webpack 5 add a type to indicate asset types)\n    if (asset.type && asset.type !== \"asset\") {\n      return false;\n    }\n\n    // Removing query part from filename (yes, somebody uses it for some reason and Webpack supports it)\n    // See #22\n    asset.name = asset.name.replace(FILENAME_QUERY_REGEXP, \"\");\n\n    return (\n      FILENAME_EXTENSIONS.test(asset.name) &&\n      asset.chunks &&\n      asset.chunks.length > 0 &&\n      isAssetIncluded(asset.name)\n    );\n  });\n\n  // Trying to parse bundle assets and get real module sizes if `bundleDir` is provided\n  /** @type {Record<string, { src: string, runtimeSrc: string }> | null} */\n  let bundlesSources = null;\n  /** @type {Record<string | number, boolean> | null} */\n  let parsedModules = null;\n\n  if (bundleDir) {\n    bundlesSources = {};\n    parsedModules = {};\n\n    for (const statAsset of bundleStats.assets) {\n      const assetFile = path.join(bundleDir, statAsset.name);\n      let bundleInfo;\n\n      try {\n        bundleInfo = parseBundle(assetFile, {\n          sourceType: statAsset.info.javascriptModule ? \"module\" : \"script\",\n        });\n      } catch (err) {\n        const msg =\n          /** @type {NodeJS.ErrnoException} */ (err).code === \"ENOENT\"\n            ? \"no such file\"\n            : /** @type {Error} */ (err).message;\n        logger.warn(`Error parsing bundle asset \"${assetFile}\": ${msg}`, {\n          cause: err,\n        });\n        continue;\n      }\n\n      bundlesSources[statAsset.name] = {\n        src: bundleInfo.src,\n        runtimeSrc: bundleInfo.runtimeSrc,\n      };\n      Object.assign(parsedModules, bundleInfo.modules);\n    }\n\n    if (Object.keys(bundlesSources).length === 0) {\n      bundlesSources = null;\n      parsedModules = null;\n      logger.warn(\n        \"\\nNo bundles were parsed. Analyzer will show only original module sizes from stats file.\\n\",\n      );\n    }\n  }\n\n  /** @typedef {{ size: number, parsedSize?: number, gzipSize?: number, brotliSize?: number, zstdSize?: number, modules: StatsModule[], tree: Folder }} Asset */\n\n  const assets = bundleStats.assets.reduce((result, statAsset) => {\n    // If asset is a childAsset, then calculate appropriate bundle modules by looking through stats.children\n    const assetBundles = statAsset.isChild\n      ? getChildAssetBundles(bundleStats, statAsset.name)\n      : bundleStats;\n    /** @type {StatsModule[]} */\n    const modules = assetBundles\n      ? // @ts-expect-error TODO looks like we have a bug with child compilation parsing, need to add test cases\n        getBundleModules(assetBundles)\n      : [];\n    const asset = (result[statAsset.name] = /** @type {Asset} */ ({\n      size: statAsset.size,\n    }));\n    const assetSources =\n      bundlesSources && Object.hasOwn(bundlesSources, statAsset.name)\n        ? bundlesSources[statAsset.name]\n        : null;\n\n    if (assetSources) {\n      asset.parsedSize = Buffer.byteLength(assetSources.src);\n\n      if (compressionAlgorithm === \"gzip\") {\n        asset.gzipSize = getCompressedSize(\"gzip\", assetSources.src);\n      }\n\n      if (compressionAlgorithm === \"brotli\") {\n        asset.brotliSize = getCompressedSize(\"brotli\", assetSources.src);\n      }\n\n      if (compressionAlgorithm === \"zstd\") {\n        asset.zstdSize = getCompressedSize(\"zstd\", assetSources.src);\n      }\n    }\n\n    // Picking modules from current bundle script\n    /** @type {StatsModule[]} */\n    let assetModules = (modules || []).filter((statModule) =>\n      assetHasModule(statAsset, statModule),\n    );\n\n    // Adding parsed sources\n    if (parsedModules) {\n      /** @type {StatsModule[]} */\n      const unparsedEntryModules = [];\n\n      for (const statsModule of assetModules) {\n        if (\n          typeof statsModule.id !== \"undefined\" &&\n          parsedModules[statsModule.id]\n        ) {\n          statsModule.parsedSrc = parsedModules[statsModule.id];\n        } else if (isEntryModule(statsModule)) {\n          unparsedEntryModules.push(statsModule);\n        }\n      }\n\n      // Webpack 5 changed bundle format and now entry modules are concatenated and located at the end of it.\n      // Because of this they basically become a concatenated module, for which we can't even precisely determine its\n      // parsed source as it's located in the same scope as all Webpack runtime helpers.\n      if (unparsedEntryModules.length && assetSources) {\n        if (unparsedEntryModules.length === 1) {\n          // So if there is only one entry we consider its parsed source to be all the bundle code excluding code\n          // from parsed modules.\n          unparsedEntryModules[0].parsedSrc = assetSources.runtimeSrc;\n        } else {\n          // If there are multiple entry points we move all of them under synthetic concatenated module.\n          assetModules = (assetModules || []).filter(\n            (mod) => !unparsedEntryModules.includes(mod),\n          );\n          assetModules.unshift({\n            identifier: \"./entry modules\",\n            name: \"./entry modules\",\n            modules: unparsedEntryModules,\n            size: unparsedEntryModules.reduce(\n              (totalSize, module) =>\n                totalSize + /** @type {number} */ (module.size),\n              0,\n            ),\n            parsedSrc: assetSources.runtimeSrc,\n          });\n        }\n      }\n    }\n\n    asset.modules = assetModules;\n    asset.tree = createModulesTree(asset.modules, { compressionAlgorithm });\n\n    return result;\n  }, /** @type {Record<string, Asset>} */ ({}));\n\n  const chunkToInitialByEntrypoint = getChunkToInitialByEntrypoint(bundleStats);\n\n  return Object.entries(assets).map(([filename, asset]) => ({\n    label: filename,\n    isAsset: true,\n    // Not using `asset.size` here provided by Webpack because it can be very confusing when `UglifyJsPlugin` is used.\n    // In this case all module sizes from stats file will represent unminified module sizes, but `asset.size` will\n    // be the size of minified bundle.\n    // Using `asset.size` only if current asset doesn't contain any modules (resulting size equals 0)\n    statSize: asset.tree.size || asset.size,\n    parsedSize: asset.parsedSize,\n    gzipSize: asset.gzipSize,\n    brotliSize: asset.brotliSize,\n    zstdSize: asset.zstdSize,\n    groups: Object.values(asset.tree.children).map((i) => i.toChartData()),\n    isInitialByEntrypoint: chunkToInitialByEntrypoint[filename] ?? {},\n  }));\n}\n\n/**\n * @param {string} filename filename\n * @returns {Promise<StatsCompilation>} result\n */\nfunction readStatsFromFile(filename) {\n  return parseChunked(fs.createReadStream(filename, { encoding: \"utf8\" }));\n}\n\nmodule.exports = {\n  getViewerData,\n  readStatsFromFile,\n};\n"
  },
  {
    "path": "src/bin/analyzer.js",
    "content": "#! /usr/bin/env node\n\nconst { dirname, resolve } = require(\"node:path\");\n\nconst { program: commanderProgram } = require(\"commander\");\nconst { magenta } = require(\"picocolors\");\n\nconst Logger = require(\"../Logger\");\nconst analyzer = require(\"../analyzer\");\nconst { isZstdSupported } = require(\"../sizeUtils\");\nconst utils = require(\"../utils\");\nconst viewer = require(\"../viewer\");\n\nconst SIZES = new Set([\"stat\", \"parsed\", \"gzip\"]);\nconst COMPRESSION_ALGORITHMS = new Set(\n  isZstdSupported ? [\"gzip\", \"brotli\", \"zstd\"] : [\"gzip\", \"brotli\"],\n);\n\n/**\n * @param {string} str string\n * @returns {string} break with string\n */\nfunction br(str) {\n  return `\\n${\" \".repeat(32)}${str}`;\n}\n\n/**\n * @template T\n * @returns {(val: T) => T[]} array\n */\nfunction array() {\n  /** @type {T[]} */\n  const arr = [];\n  return (val) => {\n    arr.push(val);\n    return arr;\n  };\n}\n\nconst program = commanderProgram\n  .version(require(\"../../package.json\").version)\n  .argument(\"<bundleStatsFile>\", \"Path to Webpack Stats JSON file.\")\n  .argument(\n    \"[bundleDir]\",\n    \"Directory containing all generated bundles. You should provided it if you want analyzer to show you the real parsed module sizes. By default a directory of stats file is used.\",\n  )\n  .option(\n    \"-m, --mode <mode>\",\n    `Analyzer mode. Should be \\`server\\`,\\`static\\` or \\`json\\`.${br(\n      \"In `server` mode analyzer will start HTTP server to show bundle report.\",\n    )}${br(\n      \"In `static` mode single HTML file with bundle report will be generated.\",\n    )}${br(\n      \"In `json` mode single JSON file with bundle report will be generated.\",\n    )}`,\n    \"server\",\n  )\n  .option(\n    // Had to make `host` parameter optional in order to let `-h` flag output help message\n    // Fixes https://github.com/webpack/webpack-bundle-analyzer/issues/239\n    \"-h, --host [host]\",\n    \"Host that will be used in `server` mode to start HTTP server.\",\n    \"127.0.0.1\",\n  )\n  .option(\n    \"-p, --port <n>\",\n    \"Port that will be used in `server` mode to start HTTP server.\",\n    \"8888\",\n  )\n  .option(\n    \"-r, --report <file>\",\n    \"Path to bundle report file that will be generated in `static` mode.\",\n  )\n  .option(\n    \"-t, --title <title>\",\n    \"String to use in title element of html report.\",\n  )\n  .option(\n    \"-s, --default-sizes <type>\",\n    `Module sizes to show in treemap by default.${br(\n      `Possible values: ${[...SIZES].join(\", \")}`,\n    )}`,\n    \"parsed\",\n  )\n  .option(\n    \"--compression-algorithm <type>\",\n    `Compression algorithm that will be used to calculate the compressed module sizes.${br(\n      `Possible values: ${[...COMPRESSION_ALGORITHMS].join(\", \")}`,\n    )}`,\n    \"gzip\",\n  )\n  .option(\n    \"-O, --no-open\",\n    \"Don't open report in default browser automatically.\",\n  )\n  .option(\n    \"-e, --exclude <regexp>\",\n    `Assets that should be excluded from the report.${br(\n      \"Can be specified multiple times.\",\n    )}`,\n    array(),\n  )\n  .option(\n    \"-l, --log-level <level>\",\n    `Log level.${br(`Possible values: ${[...Logger.levels].join(\", \")}`)}`,\n    Logger.defaultLevel,\n  )\n  .parse();\n\nlet [bundleStatsFile, bundleDir] = program.args;\nlet {\n  mode,\n  host,\n  port,\n  report: reportFilename,\n  title: reportTitle,\n  defaultSizes,\n  compressionAlgorithm,\n  logLevel,\n  open: openBrowser,\n  exclude: excludeAssets,\n} = program.opts();\nconst logger = new Logger(logLevel);\n\nif (typeof reportTitle === \"undefined\") {\n  reportTitle = utils.defaultTitle;\n}\n\n/**\n * @param {string} error error message\n */\nfunction showHelp(error) {\n  if (error) console.log(`\\n  ${magenta(error)}\\n`);\n  program.outputHelp();\n  process.exit(1);\n}\n\nif (!bundleStatsFile) {\n  showHelp(\"Provide path to Webpack Stats file as first argument\");\n}\nif (mode !== \"server\" && mode !== \"static\" && mode !== \"json\") {\n  showHelp(\"Invalid mode. Should be either `server`, `static` or `json`.\");\n}\nif (mode === \"server\") {\n  if (!host) showHelp(\"Invalid host name\");\n\n  port = port === \"auto\" ? 0 : Number(port);\n  if (Number.isNaN(port)) {\n    showHelp(\"Invalid port. Should be a number or `auto`\");\n  }\n}\nif (!COMPRESSION_ALGORITHMS.has(compressionAlgorithm)) {\n  showHelp(\n    `Invalid compression algorithm option. Possible values are: ${[...COMPRESSION_ALGORITHMS].join(\", \")}`,\n  );\n}\nif (!SIZES.has(defaultSizes)) {\n  showHelp(\n    `Invalid default sizes option. Possible values are: ${[...SIZES].join(\", \")}`,\n  );\n}\n\nbundleStatsFile = resolve(bundleStatsFile);\n\nif (!bundleDir) bundleDir = dirname(bundleStatsFile);\n\n/**\n * @param {string} bundleStatsFile bundle stats file\n * @returns {Promise<void>}\n */\nasync function parseAndAnalyse(bundleStatsFile) {\n  try {\n    const bundleStats = await analyzer.readStatsFromFile(bundleStatsFile);\n    if (mode === \"server\") {\n      viewer.startServer(bundleStats, {\n        openBrowser,\n        port,\n        host,\n        defaultSizes,\n        compressionAlgorithm,\n        reportTitle,\n        bundleDir,\n        excludeAssets,\n        logger: new Logger(logLevel),\n        analyzerUrl: utils.defaultAnalyzerUrl,\n      });\n    } else if (mode === \"static\") {\n      viewer.generateReport(bundleStats, {\n        openBrowser,\n        reportFilename: resolve(reportFilename || \"report.html\"),\n        reportTitle,\n        defaultSizes,\n        compressionAlgorithm,\n        bundleDir,\n        excludeAssets,\n        logger: new Logger(logLevel),\n      });\n    } else if (mode === \"json\") {\n      viewer.generateJSONReport(bundleStats, {\n        reportFilename: resolve(reportFilename || \"report.json\"),\n        compressionAlgorithm,\n        bundleDir,\n        excludeAssets,\n        logger: new Logger(logLevel),\n      });\n    }\n  } catch (err) {\n    logger.error(\n      `Couldn't read webpack bundle stats from \"${bundleStatsFile}\":\\n${err}`,\n    );\n    logger.debug(/** @type {Error} */ (err).stack);\n    process.exit(1);\n  }\n}\n\nparseAndAnalyse(bundleStatsFile);\n"
  },
  {
    "path": "src/index.js",
    "content": "const { start } = require(\"./viewer\");\n\nmodule.exports = {\n  start,\n  BundleAnalyzerPlugin: require(\"./BundleAnalyzerPlugin\"),\n};\n"
  },
  {
    "path": "src/parseUtils.js",
    "content": "/** @typedef {import(\"acorn\").Node} Node */\n/** @typedef {import(\"acorn\").CallExpression} CallExpression */\n/** @typedef {import(\"acorn\").ExpressionStatement} ExpressionStatement */\n/** @typedef {import(\"acorn\").Expression} Expression */\n/** @typedef {import(\"acorn\").SpreadElement} SpreadElement */\n\nconst fs = require(\"node:fs\");\nconst acorn = require(\"acorn\");\nconst walk = require(\"acorn-walk\");\n\n/**\n * @param {Expression} node node\n * @returns {boolean} true when id is numeric, otherwise false\n */\nfunction isNumericId(node) {\n  return (\n    node.type === \"Literal\" &&\n    node.value !== null &&\n    node.value !== undefined &&\n    Number.isInteger(node.value) &&\n    /** @type {number} */ (node.value) >= 0\n  );\n}\n\n/**\n * @param {Expression | SpreadElement | null} node node\n * @returns {boolean} true when module id, otherwise false\n */\nfunction isModuleId(node) {\n  return (\n    node !== null &&\n    node.type === \"Literal\" &&\n    (isNumericId(node) || typeof node.value === \"string\")\n  );\n}\n\n/**\n * @param {Expression | SpreadElement} node node\n * @returns {boolean} true when module wrapper, otherwise false\n */\nfunction isModuleWrapper(node) {\n  return (\n    // It's an anonymous function expression that wraps module\n    ((node.type === \"FunctionExpression\" ||\n      node.type === \"ArrowFunctionExpression\") &&\n      !node.id) ||\n    // If `DedupePlugin` is used it can be an ID of duplicated module...\n    isModuleId(node) ||\n    // or an array of shape [<module_id>, ...args]\n    (node.type === \"ArrayExpression\" &&\n      node.elements.length > 1 &&\n      isModuleId(node.elements[0]))\n  );\n}\n\n/**\n * @param {Expression | SpreadElement | null} node node\n * @returns {boolean} true when module hash, otherwise false\n */\nfunction isModulesHash(node) {\n  return (\n    node !== null &&\n    node.type === \"ObjectExpression\" &&\n    node.properties\n      .filter((property) => property.type !== \"SpreadElement\")\n      .map((node) => node.value)\n      .every(isModuleWrapper)\n  );\n}\n\n/**\n * @param {Expression | SpreadElement | null} node node\n * @returns {boolean} true when module array, otherwise false\n */\nfunction isModulesArray(node) {\n  return (\n    node !== null &&\n    node.type === \"ArrayExpression\" &&\n    node.elements.every(\n      (elem) =>\n        // Some of array items may be skipped because there is no module with such id\n        !elem || isModuleWrapper(elem),\n    )\n  );\n}\n\n/**\n * @param {Expression | SpreadElement | null} node node\n * @returns {boolean} true when simple modules list, otherwise false\n */\nfunction isSimpleModulesList(node) {\n  return (\n    // Modules are contained in hash. Keys are module ids.\n    isModulesHash(node) ||\n    // Modules are contained in array. Indexes are module ids.\n    isModulesArray(node)\n  );\n}\n\n/**\n * @param {Expression | SpreadElement | null} node node\n * @returns {boolean} true when optimized modules array, otherwise false\n */\nfunction isOptimizedModulesArray(node) {\n  // Checking whether modules are contained in `Array(<minimum ID>).concat(...modules)` array:\n  // https://github.com/webpack/webpack/blob/v1.14.0/lib/Template.js#L91\n  // The `<minimum ID>` + array indexes are module ids\n  return (\n    node !== null &&\n    node.type === \"CallExpression\" &&\n    node.callee.type === \"MemberExpression\" &&\n    // Make sure the object called is `Array(<some number>)`\n    node.callee.object.type === \"CallExpression\" &&\n    node.callee.object.callee.type === \"Identifier\" &&\n    node.callee.object.callee.name === \"Array\" &&\n    node.callee.object.arguments.length === 1 &&\n    node.callee.object.arguments[0].type !== \"SpreadElement\" &&\n    isNumericId(node.callee.object.arguments[0]) &&\n    // Make sure the property X called for `Array(<some number>).X` is `concat`\n    node.callee.property.type === \"Identifier\" &&\n    node.callee.property.name === \"concat\" &&\n    // Make sure exactly one array is passed in to `concat`\n    node.arguments.length === 1 &&\n    isModulesArray(node.arguments[0])\n  );\n}\n\n/**\n * @param {Expression | SpreadElement | null} node node\n * @returns {boolean} true when modules list, otherwise false\n */\nfunction isModulesList(node) {\n  return (\n    isSimpleModulesList(node) ||\n    // Modules are contained in expression `Array([minimum ID]).concat([<module>, <module>, ...])`\n    isOptimizedModulesArray(node)\n  );\n}\n\n/** @typedef {{ start: number, end: number }} Location */\n\n/**\n * @param {Node} node node\n * @returns {Location} location\n */\nfunction getModuleLocation(node) {\n  return {\n    start: node.start,\n    end: node.end,\n  };\n}\n\n/** @typedef {Record<number, Location>} ModulesLocations */\n\n/**\n * @param {Expression | SpreadElement} node node\n * @returns {ModulesLocations} modules locations\n */\nfunction getModulesLocations(node) {\n  if (node.type === \"ObjectExpression\") {\n    // Modules hash\n    const modulesNodes = node.properties;\n\n    return modulesNodes.reduce((result, moduleNode) => {\n      if (moduleNode.type !== \"Property\") {\n        return result;\n      }\n\n      const moduleId =\n        moduleNode.key.type === \"Identifier\"\n          ? moduleNode.key.name\n          : // @ts-expect-error need verify why we need it, tests not cover it case\n            moduleNode.key.value;\n\n      if (moduleId === \"undefined\") {\n        return result;\n      }\n\n      result[moduleId] = getModuleLocation(moduleNode.value);\n\n      return result;\n    }, /** @type {ModulesLocations} */ ({}));\n  }\n\n  const isOptimizedArray = node.type === \"CallExpression\";\n\n  if (node.type === \"ArrayExpression\" || isOptimizedArray) {\n    // Modules array or optimized array\n    const minId =\n      isOptimizedArray &&\n      node.callee.type === \"MemberExpression\" &&\n      node.callee.object.type === \"CallExpression\" &&\n      node.callee.object.arguments[0].type === \"Literal\"\n        ? // Get the [minId] value from the Array() call first argument literal value\n          /** @type {number} */ (node.callee.object.arguments[0].value)\n        : // `0` for simple array\n          0;\n    const modulesNodes = isOptimizedArray\n      ? // The modules reside in the `concat()` function call arguments\n        node.arguments[0].type === \"ArrayExpression\"\n        ? node.arguments[0].elements\n        : []\n      : node.elements;\n\n    return modulesNodes.reduce((result, moduleNode, i) => {\n      if (moduleNode) {\n        result[i + minId] = getModuleLocation(moduleNode);\n      }\n\n      return result;\n    }, /** @type {ModulesLocations} */ ({}));\n  }\n\n  return {};\n}\n\n/**\n * @param {ExpressionStatement} node node\n * @returns {boolean} true when IIFE, otherwise false\n */\nfunction isIIFE(node) {\n  return (\n    node.type === \"ExpressionStatement\" &&\n    (node.expression.type === \"CallExpression\" ||\n      (node.expression.type === \"UnaryExpression\" &&\n        node.expression.argument.type === \"CallExpression\"))\n  );\n}\n\n/**\n * @param {ExpressionStatement} node node\n * @returns {Expression} IIFE call expression\n */\nfunction getIIFECallExpression(node) {\n  if (node.expression.type === \"UnaryExpression\") {\n    return node.expression.argument;\n  }\n\n  return node.expression;\n}\n\n/**\n * @param {Expression} node node\n * @returns {boolean} true when chunks ids, otherwose false\n */\nfunction isChunkIds(node) {\n  // Array of numeric or string ids. Chunk IDs are strings when NamedChunksPlugin is used\n  return node.type === \"ArrayExpression\" && node.elements.every(isModuleId);\n}\n\n/**\n * @param {(Expression | SpreadElement | null)[]} args arguments\n * @returns {boolean} true when async chunk arguments, otherwise false\n */\nfunction mayBeAsyncChunkArguments(args) {\n  return (\n    args.length >= 2 &&\n    args[0] !== null &&\n    args[0].type !== \"SpreadElement\" &&\n    isChunkIds(args[0])\n  );\n}\n\n/**\n * Returns bundle source except modules\n * @param {string} content content\n * @param {ModulesLocations | null} modulesLocations modules locations\n * @returns {string} runtime code\n */\nfunction getBundleRuntime(content, modulesLocations) {\n  const sortedLocations = Object.values(modulesLocations || {}).toSorted(\n    (a, b) => a.start - b.start,\n  );\n\n  let result = \"\";\n  let lastIndex = 0;\n\n  for (const { start, end } of sortedLocations) {\n    result += content.slice(lastIndex, start);\n    lastIndex = end;\n  }\n\n  return result + content.slice(lastIndex);\n}\n\n/**\n * @param {CallExpression} node node\n * @returns {boolean} true when is async chunk push expression, otheriwse false\n */\nfunction isAsyncChunkPushExpression(node) {\n  const { callee, arguments: args } = node;\n\n  return (\n    callee.type === \"MemberExpression\" &&\n    callee.property.type === \"Identifier\" &&\n    callee.property.name === \"push\" &&\n    callee.object.type === \"AssignmentExpression\" &&\n    args.length === 1 &&\n    args[0].type === \"ArrayExpression\" &&\n    mayBeAsyncChunkArguments(args[0].elements) &&\n    isModulesList(args[0].elements[1])\n  );\n}\n\n/**\n * @param {CallExpression} node node\n * @returns {boolean} true when is async web worker, otherwise false\n */\nfunction isAsyncWebWorkerChunkExpression(node) {\n  const { callee, type, arguments: args } = node;\n\n  return (\n    type === \"CallExpression\" &&\n    callee.type === \"MemberExpression\" &&\n    args.length === 2 &&\n    args[0].type !== \"SpreadElement\" &&\n    isChunkIds(args[0]) &&\n    isModulesList(args[1])\n  );\n}\n\n/** @typedef {Record<string, string>} Modules */\n\n/**\n * @param {string} bundlePath bundle path\n * @param {{ sourceType: \"script\" | \"module\" }} opts options\n * @returns {{ modules: Modules, src: string, runtimeSrc: string }} parsed result\n */\nmodule.exports.parseBundle = function parseBundle(bundlePath, opts) {\n  const { sourceType = \"script\" } = opts || {};\n\n  const content = fs.readFileSync(bundlePath, \"utf8\");\n  const ast = acorn.parse(content, {\n    sourceType,\n    ecmaVersion: \"latest\",\n  });\n\n  /** @type {{ locations: ModulesLocations | null, expressionStatementDepth: number }} */\n  const walkState = {\n    locations: null,\n    expressionStatementDepth: 0,\n  };\n\n  walk.recursive(ast, walkState, {\n    ExpressionStatement(node, state, callback) {\n      if (state.locations) return;\n\n      state.expressionStatementDepth++;\n\n      if (\n        // Webpack 5 stores modules in the the top-level IIFE\n        state.expressionStatementDepth === 1 &&\n        ast.body.includes(node) &&\n        isIIFE(node)\n      ) {\n        const fn = getIIFECallExpression(node);\n\n        if (\n          fn.type === \"CallExpression\" &&\n          // It should not contain neither arguments\n          fn.arguments.length === 0 &&\n          (fn.callee.type === \"FunctionExpression\" ||\n            fn.callee.type === \"ArrowFunctionExpression\") &&\n          // ...nor parameters\n          fn.callee.params.length === 0 &&\n          fn.callee.body.type === \"BlockStatement\"\n        ) {\n          // Modules are stored in the very first variable declaration as hash\n          const firstVariableDeclaration = fn.callee.body.body.find(\n            (node) => node.type === \"VariableDeclaration\",\n          );\n\n          if (firstVariableDeclaration) {\n            for (const declaration of firstVariableDeclaration.declarations) {\n              if (declaration.init && isModulesList(declaration.init)) {\n                state.locations = getModulesLocations(declaration.init);\n\n                if (state.locations) {\n                  break;\n                }\n              }\n            }\n          }\n        }\n      }\n\n      if (!state.locations) {\n        callback(node.expression, state);\n      }\n\n      state.expressionStatementDepth--;\n    },\n\n    AssignmentExpression(node, state) {\n      if (state.locations) return;\n\n      // Modules are stored in exports.modules:\n      // exports.modules = {};\n      const { left, right } = node;\n\n      if (\n        left &&\n        left.type === \"MemberExpression\" &&\n        left.object &&\n        left.object.type === \"Identifier\" &&\n        left.object.name === \"exports\" &&\n        left.property &&\n        left.property.type === \"Identifier\" &&\n        left.property.name === \"modules\" &&\n        isModulesHash(right)\n      ) {\n        state.locations = getModulesLocations(right);\n      }\n    },\n\n    CallExpression(node, state, callback) {\n      if (state.locations) return;\n\n      const args = node.arguments;\n\n      // Main chunk with webpack loader.\n      // Modules are stored in first argument:\n      // (function (...) {...})(<modules>)\n      if (\n        node.callee.type === \"FunctionExpression\" &&\n        !node.callee.id &&\n        args.length === 1 &&\n        isSimpleModulesList(args[0])\n      ) {\n        state.locations = getModulesLocations(args[0]);\n        return;\n      }\n\n      // Async Webpack < v4 chunk without webpack loader.\n      // webpackJsonp([<chunks>], <modules>, ...)\n      // As function name may be changed with `output.jsonpFunction` option we can't rely on it's default name.\n      if (\n        node.callee.type === \"Identifier\" &&\n        mayBeAsyncChunkArguments(args) &&\n        args[1].type !== \"SpreadElement\" &&\n        isModulesList(args[1])\n      ) {\n        state.locations = getModulesLocations(args[1]);\n        return;\n      }\n\n      // Async Webpack v4 chunk without webpack loader.\n      // (window.webpackJsonp=window.webpackJsonp||[]).push([[<chunks>], <modules>, ...]);\n      // As function name may be changed with `output.jsonpFunction` option we can't rely on it's default name.\n      if (\n        isAsyncChunkPushExpression(node) &&\n        args[0].type === \"ArrayExpression\" &&\n        args[0].elements[1]\n      ) {\n        state.locations = getModulesLocations(args[0].elements[1]);\n        return;\n      }\n\n      // Webpack v4 WebWorkerChunkTemplatePlugin\n      // globalObject.chunkCallbackName([<chunks>],<modules>, ...);\n      // Both globalObject and chunkCallbackName can be changed through the config, so we can't check them.\n      if (isAsyncWebWorkerChunkExpression(node)) {\n        state.locations = getModulesLocations(args[1]);\n        return;\n      }\n\n      // Walking into arguments because some of plugins (e.g. `DedupePlugin`) or some Webpack\n      // features (e.g. `umd` library output) can wrap modules list into additional IIFE.\n      for (const arg of args) {\n        callback(arg, state);\n      }\n    },\n  });\n\n  /** @type {Modules} */\n  const modules = {};\n\n  if (walkState.locations) {\n    for (const [id, loc] of Object.entries(walkState.locations)) {\n      modules[id] = content.slice(loc.start, loc.end);\n    }\n  }\n\n  return {\n    modules,\n    src: content,\n    runtimeSrc: getBundleRuntime(content, walkState.locations),\n  };\n};\n"
  },
  {
    "path": "src/sizeUtils.js",
    "content": "import zlib from \"node:zlib\";\n\nexport const isZstdSupported = \"createZstdCompress\" in zlib;\n\n/** @typedef {\"gzip\" | \"brotli\" | \"zstd\"} Algorithm */\n\n/**\n * @param {Algorithm} algorithm compression algorithm\n * @param {string} input input\n * @returns {number} compressed size\n */\nexport function getCompressedSize(algorithm, input) {\n  if (algorithm === \"gzip\") {\n    return zlib.gzipSync(input, { level: 9 }).length;\n  }\n\n  if (algorithm === \"brotli\") {\n    return zlib.brotliCompressSync(input).length;\n  }\n\n  if (algorithm === \"zstd\" && isZstdSupported) {\n    // eslint-disable-next-line n/no-unsupported-features/node-builtins\n    return zlib.zstdCompressSync(input).length;\n  }\n\n  throw new Error(`Unsupported compression algorithm: ${algorithm}.`);\n}\n"
  },
  {
    "path": "src/statsUtils.js",
    "content": "const { createWriteStream } = require(\"node:fs\");\nconst { Readable } = require(\"node:stream\");\nconst { pipeline } = require(\"node:stream/promises\");\n\n/** @typedef {import(\"./BundleAnalyzerPlugin\").EXPECTED_ANY} EXPECTED_ANY */\n/** @typedef {import(\"webpack\").StatsCompilation} StatsCompilation */\n\nclass StatsSerializeStream extends Readable {\n  /**\n   * @param {StatsCompilation} stats stats\n   */\n  constructor(stats) {\n    super();\n    this._indentLevel = 0;\n    this._stringifier = this._stringify(stats);\n  }\n\n  get _indent() {\n    return \"  \".repeat(this._indentLevel);\n  }\n\n  _read() {\n    let readMore = true;\n\n    while (readMore) {\n      const { value, done } = this._stringifier.next();\n\n      if (done) {\n        this.push(null);\n        readMore = false;\n      } else {\n        readMore = this.push(value);\n      }\n    }\n  }\n\n  /**\n   * @param {EXPECTED_ANY} obj obj\n   * @returns {Generator<string, undefined, unknown>} stringified result\n   * @private\n   */\n  *_stringify(obj) {\n    if (\n      typeof obj === \"string\" ||\n      typeof obj === \"number\" ||\n      typeof obj === \"boolean\" ||\n      obj === null\n    ) {\n      yield JSON.stringify(obj);\n    } else if (Array.isArray(obj)) {\n      yield \"[\";\n      this._indentLevel++;\n\n      let isFirst = true;\n      for (let item of obj) {\n        if (item === undefined) {\n          item = null;\n        }\n\n        yield `${isFirst ? \"\" : \",\"}\\n${this._indent}`;\n        yield* this._stringify(item);\n        isFirst = false;\n      }\n\n      this._indentLevel--;\n      yield obj.length ? `\\n${this._indent}]` : \"]\";\n    } else {\n      yield \"{\";\n      this._indentLevel++;\n\n      let isFirst = true;\n      const entries = Object.entries(obj);\n      for (const [itemKey, itemValue] of entries) {\n        if (itemValue === undefined) {\n          continue;\n        }\n\n        yield `${isFirst ? \"\" : \",\"}\\n${this._indent}${JSON.stringify(itemKey)}: `;\n        yield* this._stringify(itemValue);\n        isFirst = false;\n      }\n\n      this._indentLevel--;\n      yield entries.length ? `\\n${this._indent}}` : \"}\";\n    }\n  }\n}\n\n/**\n * @param {StatsCompilation} stats stats\n * @param {string} filepath filepath file path\n * @returns {Promise<void>}\n */\nasync function writeStats(stats, filepath) {\n  await pipeline(new StatsSerializeStream(stats), createWriteStream(filepath));\n}\n\nmodule.exports = { StatsSerializeStream, writeStats };\n"
  },
  {
    "path": "src/template.js",
    "content": "const fs = require(\"node:fs\");\nconst path = require(\"node:path\");\n\nconst { escape } = require(\"html-escaper\");\n\nconst projectRoot = path.resolve(__dirname, \"..\");\nconst assetsRoot = path.join(projectRoot, \"public\");\n\n/** @typedef {import(\"./BundleAnalyzerPlugin\").EXPECTED_ANY} EXPECTED_ANY */\n/** @typedef {import(\"./BundleAnalyzerPlugin\").Mode} Mode */\n/** @typedef {import(\"./BundleAnalyzerPlugin\").Sizes} Sizes */\n/** @typedef {import(\"./BundleAnalyzerPlugin\").CompressionAlgorithm} CompressionAlgorithm */\n/** @typedef {import(\"./analyzer\").ChartData} ChartData */\n/** @typedef {import(\"./viewer\").Entrypoints} Entrypoints */\n\n/**\n * Escapes `<` characters in JSON to safely use it in `<script>` tag.\n * @param {EXPECTED_ANY} json json\n * @returns {string} escaped json\n */\nfunction escapeJson(json) {\n  return JSON.stringify(json).replaceAll(\"<\", \"\\\\u003c\");\n}\n\n/**\n * @param {string} filename filename\n * @returns {string} content the text content of the specified file.\n */\nfunction getAssetContent(filename) {\n  const assetPath = path.join(assetsRoot, filename);\n\n  if (!assetPath.startsWith(assetsRoot)) {\n    throw new Error(`\"${filename}\" is outside of the assets root`);\n  }\n\n  return fs.readFileSync(assetPath, \"utf8\");\n}\n\n/**\n * @template {EXPECTED_ANY} T\n * @param {TemplateStringsArray} strings strings\n * @param {...T} values values\n * @returns {string} HTML\n */\nfunction html(strings, ...values) {\n  return strings\n    .map((string, index) => `${string}${values[index] || \"\"}`)\n    .join(\"\");\n}\n\n/**\n * @param {string} filename filename\n * @param {Mode} mode mode\n * @returns {string} script tag\n */\nfunction getScript(filename, mode) {\n  if (mode === \"static\") {\n    return `<!-- ${escape(filename)} -->\n<script>${getAssetContent(filename)}</script>`;\n  }\n\n  return `<script src=\"${escape(filename)}\"></script>`;\n}\n\n/**\n * @typedef {object} ViewerOptions\n * @property {string} title title\n * @property {boolean} enableWebSocket true when need to enable, otherwise false\n * @property {ChartData} chartData chart data\n * @property {Entrypoints} entrypoints entrypoints\n * @property {Sizes} defaultSizes default sizes\n * @property {CompressionAlgorithm} compressionAlgorithm compression algorithm\n * @property {Mode} mode mode\n */\n\n/**\n * @param {ViewerOptions} options viewer Options\n * @returns {string} content for viewer\n */\nfunction renderViewer({\n  title,\n  enableWebSocket,\n  chartData,\n  entrypoints,\n  defaultSizes,\n  compressionAlgorithm,\n  mode,\n}) {\n  return html`<!DOCTYPE html>\n    <html>\n      <head>\n        <meta charset=\"UTF-8\" />\n        <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n        <title>${escape(title)}</title>\n        <link\n          rel=\"shortcut icon\"\n          href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAABrVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+O1foceMD///+J0/qK1Pr7/v8Xdr/9///W8P4UdL7L7P0Scr2r4Pyj3vwad8D5/f/2/f+55f3E6f34+/2H0/ojfMKpzOd0rNgQcb3F3O/j9f7c8v6g3Pz0/P/w+v/q+P7n9v6T1/uQ1vuE0vqLut/y+v+Z2fvt+f+15Pzv9fuc2/vR7v2V2Pvd6/bg9P7I6/285/2y4/yp3/zp8vk8i8kqgMT7/P31+fyv4vxGkcz6/P6/6P3j7vfS5PNnpNUxhcbO7f7F6v3O4vHK3/DA2u631Ouy0eqXweKJud5wqthfoNMMbLvY8f73+v2dxeR8sNtTmdDx9/zX6PSjyeaCtd1YnNGX2PuQveCGt95Nls42h8dLlM3F4vBtAAAAM3RSTlMAAyOx0/sKBvik8opWGBMOAe3l1snDm2E9LSb06eHcu5JpHbarfHZCN9CBb08zzkdNS0kYaptYAAAFV0lEQVRYw92X51/aYBDHHS2O2qqttVbrqNq9m+TJIAYIShBkWwqIiCgoWvfeq7Z2/s29hyQNyUcR7LveGwVyXy6XH8/9rqxglLfUPLxVduUor3h0rfp2TYvpivk37929TkG037hffoX0+peVtZQc1589rigVUdXS/ABSAyEmGIO/1XfvldSK8vs3OqB6u3m0nxmIrvgB0dj7rr7Y9IbuF68hnfFaiHA/sxqm0wciIG43P60qKv9WXWc1RXGh/mFESFABTSBi0sNAKzqet17eCtOb3kZIDwxEEU0oAIJGYxNBDhBND29e0rtXXbcpuPmED9IhEAAQ/AXEaF8EPmnrrKsv0LvWR3fg5sWDNAFZOgAgaKvZDogHNU9MFwnnYROkc56RD5CjAbQX9Ow4g7upCsvYu55aSI/Nj0H1akgKQEUM94dwK65hYRmFU9MIcH/fqJYOZYcnuJSU/waKDgTOEVaVKhwrTRP5XzgSpAITYzom7UvkhFX5VutmxeNnWDjjswTKTyfgluNDGbUpWissXhF3s7mlSml+czWkg3D0l1nNjGNjz3myOQOa1KM/jOS6ebdbAVTCi4gljHSFrviza7tOgRWcS0MOUX9zdNgag5w7rRqA44Lzw0hr1WqES36dFliSJFlh2rXIae3FFcDDgKdxrUIDePr8jGcSClV1u7A9xeN0ModY/pHMxmR1EzRh8TJiwqsHmKW0l4FCEZI+jHio+JdPPE9qwQtTRxku2D8sIeRL2LnxWSllANCQGOIiqVHAz2ye2JR0DcH+HoxDkaADLjgxjKQ+AwCX/g0+DNgdG0ukYCONAe+dbc2IAc6fwt1ARoDSezNHxV2Cmzwv3O6lDMV55edBGwGK9n1+x2F8EDfAGCxug8MhpsMEcTEAWf3rx2vZhe/LAmtIn/6apE6PN0ULKgywD9mmdxbmFl3OvD5AS5fW5zLbv/YHmcsBTjf/afDz3MaZTVCfAP9z6/Bw6ycv8EUBWJIn9zYcoAWWlW9+OzO3vkTy8H+RANLmdrpOuYWdZYEXpo+TlCJrW5EARb7fF+bWdqf3hhyZI1nWJQHgznErZhbjoEsWqi8dQNoE294aldzFurwSABL2XXMf9+H1VQGke9exw5P/AnA5Pv5ngMul7LOvO922iwACu8WkCwLCafvM4CeWPxfA8lNHcWZSoi8EwMAIciKX2Z4SWCMAa3snCZ/G4EA8D6CMLNFsGQhkkz/gQNEBbPCbWsxGUpYVu3z8IyNAknwJkfPMEhLyrdi5RTyUVACkw4GSFRNWJNEW+fgPGwHD8/JxnRuLabN4CGNRkAE23na2+VmEAUmrYymSGjMAYqH84YUIyzgzs3XC7gNgH36Vcc4zKY9o9fgPBXUAiHHwVboBHGLiX6Zcjp1f2wu4tvzZKo0ecPnDtQYDQvJXaBeNzce45Fp28ZQLrEZVuFqgBwOalArKXnW1UzlnSusQKJqKYNuz4tOnI6sZG4zanpemv+7ySU2jbA9h6uhcgpfy6G2PahirDZ6zvq6zDduMVFTKvzw8wgyEdelwY9in3XkEPs3osJuwRQ4qTkfzifndg9Gfc4pdsu82+tTnHZTBa2EAMrqr2t43pguc8tNm7JQVQ2S0ukj2d22dhXYP0/veWtwKrCkNoNimAN5+Xr/oLrxswKbVJjteWrX7eR63o4j9q0GxnaBdWgGA5VStpanIjQmEhV0/nVt5VOFUvix6awJhPcAaTEShgrG+iGyvb5a0Ndb1YGHFPEwoqAinoaykaID1o1pdPNu7XsnCKQ3R+hwWIIhGvORcJUBYXe3Xa3vq/mF/N9V13ugufMkfXn+KHsRD0B8AAAAASUVORK5CYII=\"\n          type=\"image/x-icon\"\n        />\n\n        <script>\n          window.enableWebSocket = ${escapeJson(enableWebSocket)};\n        </script>\n        ${getScript(\"viewer.js\", mode)}\n      </head>\n\n      <body>\n        <div id=\"app\"></div>\n        <script>\n          window.chartData = ${escapeJson(chartData)};\n          window.entrypoints = ${escapeJson(entrypoints)};\n          window.defaultSizes = ${escapeJson(defaultSizes)};\n          window.compressionAlgorithm = ${escapeJson(compressionAlgorithm)};\n        </script>\n      </body>\n    </html>`;\n}\n\nmodule.exports = { renderViewer };\n"
  },
  {
    "path": "src/tree/BaseFolder.js",
    "content": "import Node from \"./Node.js\";\n\n/** @typedef {import(\"./Folder\").default} Folder */\n/** @typedef {import(\"./Module\").default} Module */\n/** @typedef {import(\"./Module\").ModuleChartData} ModuleChartData */\n/** @typedef {import(\"./ConcatenatedModule\").default} ConcatenatedModule */\n/** @typedef {import(\"./ContentModule\").default} ContentModule */\n/** @typedef {import(\"./ContentFolder\").default} ContentFolder */\n/** @typedef {import(\"./ContentFolder\").ContentFolderChartData} ContentFolderChartData */\n/** @typedef {import(\"./Folder\").FolderChartData} FolderChartData */\n\n/**\n * @typedef {object} BaseFolderChartData\n * @property {string} label label\n * @property {string} path path\n * @property {number} statSize stat size\n * @property {(FolderChartData | ModuleChartData | ContentFolderChartData)[]} groups groups\n */\n\n/** @typedef {Module | ContentModule | ConcatenatedModule | ContentFolder | Folder} Children */\n\nexport default class BaseFolder extends Node {\n  /**\n   * @param {string} name name\n   * @param {Node=} parent parent\n   */\n  constructor(name, parent) {\n    super(name, parent);\n    /** @type {Record<string, Children>} */\n    this.children = Object.create(null);\n  }\n\n  /**\n   * @returns {string} src\n   */\n  get src() {\n    if (!Object.hasOwn(this, \"_src\")) {\n      this._src = this.walk(\n        (node, src) => (src += node.src || \"\"),\n        /** @type {string} */ (\"\"),\n        false,\n      );\n    }\n\n    return /** @type {string} */ (this._src);\n  }\n\n  /**\n   * @returns {number} size\n   */\n  get size() {\n    if (!Object.hasOwn(this, \"_size\")) {\n      this._size = this.walk(\n        (node, size) => size + node.size,\n        /** @type {number} */ (0),\n        false,\n      );\n    }\n\n    return /** @type {number} */ (this._size);\n  }\n\n  /**\n   * @param {string} name name\n   * @returns {Children} child\n   */\n  getChild(name) {\n    return this.children[name];\n  }\n\n  /**\n   * @param {Module | ContentModule | ConcatenatedModule} module module\n   */\n  addChildModule(module) {\n    const { name } = module;\n    const currentChild = this.children[name];\n\n    // For some reason we already have this node in children and it's a folder.\n    if (currentChild && currentChild instanceof BaseFolder) return;\n\n    if (currentChild) {\n      // We already have this node in children and it's a module.\n      // Merging it's data.\n      currentChild.mergeData(module.data);\n    } else {\n      // Pushing new module\n      module.parent = this;\n      this.children[name] = module;\n    }\n\n    delete this._size;\n    delete this._src;\n  }\n\n  /**\n   * @param {ContentFolder | Folder} folder folder\n   * @returns {ContentFolder | Folder} folder\n   */\n  addChildFolder(folder) {\n    folder.parent = this;\n    this.children[folder.name] = folder;\n    delete this._size;\n    delete this._src;\n\n    return folder;\n  }\n\n  /**\n   * @template T\n   * @param {(node: Children, state: T, stop: (state: T) => void) => T} walker walker function\n   * @param {T} state state state\n   * @param {boolean | ((state: T) => T)=} deep true when need to deep walk, otherwise false\n   * @returns {T} state\n   */\n  walk(walker, state = /** @type T */ ({}), deep = true) {\n    let stopped = false;\n\n    /**\n     * @param {T} finalState final state\n     * @returns {T} final state\n     */\n    function stop(finalState) {\n      stopped = true;\n      return finalState;\n    }\n\n    for (const child of Object.values(this.children)) {\n      state =\n        deep && /** @type {BaseFolder} */ (child).walk\n          ? /** @type {BaseFolder} */ (child).walk(walker, state, stop)\n          : walker(child, state, stop);\n\n      if (stopped) return /** @type {T} */ (false);\n    }\n\n    return state;\n  }\n\n  mergeNestedFolders() {\n    if (!this.isRoot) {\n      let childNames;\n\n      while ((childNames = Object.keys(this.children)).length === 1) {\n        const [childName] = childNames;\n        const onlyChild = this.children[childName];\n\n        if (onlyChild instanceof this.constructor) {\n          this.name += `/${onlyChild.name}`;\n          this.children = /** @type {BaseFolder} */ (onlyChild).children;\n        } else {\n          break;\n        }\n      }\n    }\n\n    this.walk(\n      (child, state) => {\n        child.parent = this;\n\n        if (\n          /** @type {Folder | ContentFolder | ConcatenatedModule} */\n          (child).mergeNestedFolders\n        ) {\n          /** @type {Folder | ContentFolder | ConcatenatedModule} */\n          (child).mergeNestedFolders();\n        }\n\n        return state;\n      },\n      null,\n      false,\n    );\n  }\n\n  /**\n   * @returns {BaseFolderChartData} base folder chart data\n   */\n  toChartData() {\n    return {\n      label: this.name,\n      path: this.path,\n      statSize: this.size,\n      groups: Object.values(this.children).map((child) => child.toChartData()),\n    };\n  }\n}\n"
  },
  {
    "path": "src/tree/ConcatenatedModule.js",
    "content": "import ContentFolder from \"./ContentFolder.js\";\nimport ContentModule from \"./ContentModule.js\";\nimport Module from \"./Module.js\";\nimport { getModulePathParts } from \"./utils.js\";\n\n/** @typedef {import(\"webpack\").StatsModule} StatsModule */\n/** @typedef {import(\"./Node\").default} NodeType */\n/** @typedef {import(\"./Module\").ModuleChartData} ModuleChartData */\n/** @typedef {import(\"./Module\").SizeType} SizeType */\n/** @typedef {import(\"./Folder\").default} Folder */\n/** @typedef {import(\"./BaseFolder\").Children} Children */\n/** @typedef {import(\"./ContentFolder\").ContentFolderChartData} ContentFolderChartData */\n/** @typedef {import(\"./ContentModule\").ContentModuleChartData} ContentModuleChartData */\n/** @typedef {import(\"../sizeUtils\").Algorithm} CompressionAlgorithm */\n\n/**\n * @typedef {object} OwnConcatenatedModuleChartData\n * @property {boolean} concatenated true when concatenated, otherwise false\n * @property {(ConcatenatedModuleChartData | ContentFolderChartData | ContentModuleChartData)[]} groups groups\n */\n\n/** @typedef {ModuleChartData & OwnConcatenatedModuleChartData} ConcatenatedModuleChartData */\n\nexport default class ConcatenatedModule extends Module {\n  /**\n   * @param {string} name name\n   * @param {StatsModule} data data\n   * @param {NodeType} parent parent\n   * @param {{ compressionAlgorithm: CompressionAlgorithm }} opts options\n   */\n  constructor(name, data, parent, opts) {\n    super(name, data, parent, opts);\n    this.name += \" (concatenated)\";\n    /** @type {Record<string, ConcatenatedModule | ContentModule | ContentFolder>} */\n    this.children = Object.create(null);\n    this.fillContentModules();\n  }\n\n  get parsedSize() {\n    return this.getParsedSize() ?? this.getEstimatedSize(\"parsedSize\");\n  }\n\n  get gzipSize() {\n    return this.getGzipSize() ?? this.getEstimatedSize(\"gzipSize\");\n  }\n\n  get brotliSize() {\n    return this.getBrotliSize() ?? this.getEstimatedSize(\"brotliSize\");\n  }\n\n  get zstdSize() {\n    return this.getZstdSize() ?? this.getEstimatedSize(\"zstdSize\");\n  }\n\n  /**\n   * @param {SizeType} sizeType size type\n   * @returns {number | undefined} size\n   */\n  getEstimatedSize(sizeType) {\n    const parentModuleSize = /** @type {Folder} */ (this.parent)[sizeType];\n\n    if (parentModuleSize !== undefined) {\n      return Math.floor(\n        (this.size / /** @type {Folder} */ (this.parent).size) *\n          parentModuleSize,\n      );\n    }\n  }\n\n  fillContentModules() {\n    for (const moduleData of this.data.modules || []) {\n      this.addContentModule(moduleData);\n    }\n  }\n\n  /**\n   * @param {StatsModule} moduleData module data\n   */\n  addContentModule(moduleData) {\n    const pathParts = getModulePathParts(moduleData);\n\n    if (!pathParts) {\n      return;\n    }\n\n    const [folders, fileName] = [\n      pathParts.slice(0, -1),\n      pathParts[pathParts.length - 1],\n    ];\n    /** @type {ConcatenatedModule | ContentFolder} */\n    let currentFolder = this;\n\n    for (const folderName of folders) {\n      /** @type {Children} */\n      let childFolder = currentFolder.getChild(folderName);\n\n      if (!childFolder) {\n        childFolder = currentFolder.addChildFolder(\n          new ContentFolder(folderName, this),\n        );\n      }\n\n      currentFolder =\n        /** @type {ConcatenatedModule | ContentFolder} */\n        (childFolder);\n    }\n\n    const ModuleConstructor = moduleData.modules\n      ? ConcatenatedModule\n      : ContentModule;\n    const module = new ModuleConstructor(fileName, moduleData, this, this.opts);\n    currentFolder.addChildModule(module);\n  }\n\n  /**\n   * @param {string} name name\n   * @returns {ConcatenatedModule | ContentModule | ContentFolder} child folder\n   */\n  getChild(name) {\n    return this.children[name];\n  }\n\n  /**\n   * @param {ConcatenatedModule | ContentModule} module child module\n   */\n  addChildModule(module) {\n    module.parent = this;\n    this.children[module.name] = module;\n  }\n\n  /**\n   * @param {ContentFolder} folder child folder\n   * @returns {ContentFolder} child folder\n   */\n  addChildFolder(folder) {\n    folder.parent = this;\n    this.children[folder.name] = folder;\n    return folder;\n  }\n\n  mergeNestedFolders() {\n    for (const child of Object.values(this.children)) {\n      if (\n        /** @type {Folder | ContentFolder | ConcatenatedModule} */\n        (child).mergeNestedFolders\n      ) {\n        /** @type {Folder | ContentFolder | ConcatenatedModule} */\n        (child).mergeNestedFolders();\n      }\n    }\n  }\n\n  /**\n   * @returns {ConcatenatedModuleChartData} chart data\n   */\n  toChartData() {\n    return {\n      ...super.toChartData(),\n      concatenated: true,\n      groups: Object.values(this.children).map((child) => child.toChartData()),\n    };\n  }\n}\n"
  },
  {
    "path": "src/tree/ContentFolder.js",
    "content": "import BaseFolder from \"./BaseFolder.js\";\n\n/** @typedef {import(\"./Node\").default} Node */\n/** @typedef {import(\"./ConcatenatedModule\").default} ConcatenatedModule */\n/** @typedef {import(\"./BaseFolder\").BaseFolderChartData} BaseFolderChartData */\n/** @typedef {import(\"./Module\").SizeType} SizeType */\n\n/**\n * @typedef {object} OwnContentFolderChartData\n * @property {number | undefined} parsedSize parsed size\n * @property {number | undefined} gzipSize gzip size\n * @property {number | undefined} brotliSize brotli size\n * @property {number | undefined} zstdSize zstd size\n * @property {boolean} inaccurateSizes true when inaccurate sizes, otherwise false\n */\n\n/** @typedef {BaseFolderChartData & OwnContentFolderChartData} ContentFolderChartData  */\n\nexport default class ContentFolder extends BaseFolder {\n  /**\n   * @param {string} name name\n   * @param {ConcatenatedModule} ownerModule owner module\n   * @param {Node=} parent v\n   */\n  constructor(name, ownerModule, parent) {\n    super(name, parent);\n    this.ownerModule = ownerModule;\n  }\n\n  get parsedSize() {\n    return this.getSize(\"parsedSize\");\n  }\n\n  get gzipSize() {\n    return this.getSize(\"gzipSize\");\n  }\n\n  get brotliSize() {\n    return this.getSize(\"brotliSize\");\n  }\n\n  get zstdSize() {\n    return this.getSize(\"zstdSize\");\n  }\n\n  /**\n   * @param {SizeType} sizeType size type\n   * @returns {number | undefined} size\n   */\n  getSize(sizeType) {\n    const ownerModuleSize = this.ownerModule[sizeType];\n\n    if (ownerModuleSize !== undefined) {\n      return Math.floor((this.size / this.ownerModule.size) * ownerModuleSize);\n    }\n  }\n\n  /**\n   * @returns {ContentFolderChartData} chart data\n   */\n  toChartData() {\n    return {\n      ...super.toChartData(),\n      parsedSize: this.parsedSize,\n      gzipSize: this.gzipSize,\n      brotliSize: this.brotliSize,\n      zstdSize: this.zstdSize,\n      inaccurateSizes: true,\n    };\n  }\n}\n"
  },
  {
    "path": "src/tree/ContentModule.js",
    "content": "import Module from \"./Module.js\";\n\n/** @typedef {import(\"webpack\").StatsModule} StatsModule */\n/** @typedef {import(\"./Node\").default} NodeType */\n/** @typedef {import(\"./Module\").ModuleChartData} ModuleChartData */\n/** @typedef {import(\"./Module\").ModuleOptions} ModuleOptions */\n/** @typedef {import(\"./Module\").SizeType} SizeType */\n/** @typedef {import(\"./ConcatenatedModule\").default} ConcatenatedModule */\n\n/**\n * @typedef {object} OwnContentModuleChartData\n * @property {boolean} inaccurateSizes true when inaccurate sizes, otherwise false\n */\n\n/** @typedef {ModuleChartData & OwnContentModuleChartData} ContentModuleChartData */\n\nexport default class ContentModule extends Module {\n  /**\n   * @param {string} name name\n   * @param {StatsModule} data data\n   * @param {ConcatenatedModule} ownerModule owner module\n   * @param {ModuleOptions} opts options\n   */\n  constructor(name, data, ownerModule, opts) {\n    super(name, data, undefined, opts);\n    /** @type {ConcatenatedModule} */\n    this.ownerModule = ownerModule;\n  }\n\n  get parsedSize() {\n    return this.getSize(\"parsedSize\");\n  }\n\n  get gzipSize() {\n    return this.getSize(\"gzipSize\");\n  }\n\n  get brotliSize() {\n    return this.getSize(\"brotliSize\");\n  }\n\n  get zstdSize() {\n    return this.getSize(\"zstdSize\");\n  }\n\n  /**\n   * @param {SizeType} sizeType size type\n   * @returns {number | undefined} size\n   */\n  getSize(sizeType) {\n    const ownerModuleSize = this.ownerModule[sizeType];\n\n    if (ownerModuleSize !== undefined) {\n      return Math.floor((this.size / this.ownerModule.size) * ownerModuleSize);\n    }\n  }\n\n  /**\n   * @returns {ContentModuleChartData} chart data\n   */\n  toChartData() {\n    return {\n      ...super.toChartData(),\n      inaccurateSizes: true,\n    };\n  }\n}\n"
  },
  {
    "path": "src/tree/Folder.js",
    "content": "import { getCompressedSize } from \"../sizeUtils.js\";\nimport BaseFolder from \"./BaseFolder.js\";\nimport ConcatenatedModule from \"./ConcatenatedModule.js\";\nimport Module from \"./Module.js\";\nimport { getModulePathParts } from \"./utils.js\";\n\n/** @typedef {import(\"webpack\").StatsModule} StatsModule */\n/** @typedef {import(\"../analyzer\").AnalyzerOptions} AnalyzerOptions */\n/** @typedef {import(\"../analyzer\").CompressionAlgorithm} CompressionAlgorithm */\n/** @typedef {import(\"./Module\").SizeFields} SizeFields */\n/** @typedef {import(\"./BaseFolder\").BaseFolderChartData} BaseFolderChartData */\n\n/**\n * @typedef {object} OwnFolderChartData\n * @property {number} parsedSize parsed size\n * @property {number | undefined} gzipSize gzip size\n * @property {number | undefined} brotliSize brotli size\n * @property {number | undefined} zstdSize zstd size\n */\n\n/** @typedef {BaseFolderChartData & OwnFolderChartData} FolderChartData */\n\nexport default class Folder extends BaseFolder {\n  /**\n   * @param {string} name name\n   * @param {AnalyzerOptions} opts options\n   */\n  constructor(name, opts) {\n    super(name);\n    /** @type {AnalyzerOptions} */\n    this.opts = opts;\n  }\n\n  get parsedSize() {\n    return this.src ? this.src.length : 0;\n  }\n\n  get gzipSize() {\n    return this.opts.compressionAlgorithm === \"gzip\"\n      ? this.getCompressedSize(\"gzip\")\n      : undefined;\n  }\n\n  get brotliSize() {\n    return this.opts.compressionAlgorithm === \"brotli\"\n      ? this.getCompressedSize(\"brotli\")\n      : undefined;\n  }\n\n  get zstdSize() {\n    return this.opts.compressionAlgorithm === \"zstd\"\n      ? this.getCompressedSize(\"zstd\")\n      : undefined;\n  }\n\n  /**\n   * @param {CompressionAlgorithm} compressionAlgorithm compression algorithm\n   * @returns {number | undefined} compressed size\n   */\n  getCompressedSize(compressionAlgorithm) {\n    const key =\n      /** @type {`_${CompressionAlgorithm}Size`} */\n      (`_${compressionAlgorithm}Size`);\n\n    if (!Object.hasOwn(this, key)) {\n      /** @type {Folder & SizeFields} */\n      (this)[key] = this.src\n        ? getCompressedSize(compressionAlgorithm, this.src)\n        : 0;\n    }\n\n    return /** @type {Folder & SizeFields} */ (this)[key];\n  }\n\n  /**\n   * @param {StatsModule} moduleData stats module\n   */\n  addModule(moduleData) {\n    const pathParts = getModulePathParts(moduleData);\n\n    if (!pathParts) {\n      return;\n    }\n\n    const [folders, fileName] = [\n      pathParts.slice(0, -1),\n      pathParts[pathParts.length - 1],\n    ];\n    /** @type {BaseFolder} */\n    let currentFolder = this;\n\n    for (const folderName of folders) {\n      let childNode = currentFolder.getChild(folderName);\n\n      if (\n        // Folder is not created yet\n        !childNode ||\n        // In some situations (invalid usage of dynamic `require()`) webpack generates a module with empty require\n        // context, but it's moduleId points to a directory in filesystem.\n        // In this case we replace this `File` node with `Folder`.\n        // See `test/stats/with-invalid-dynamic-require.json` as an example.\n        !(childNode instanceof Folder)\n      ) {\n        childNode = currentFolder.addChildFolder(\n          new Folder(folderName, this.opts),\n        );\n      }\n\n      currentFolder = childNode;\n    }\n\n    const ModuleConstructor = moduleData.modules ? ConcatenatedModule : Module;\n    const module = new ModuleConstructor(fileName, moduleData, this, this.opts);\n    currentFolder.addChildModule(module);\n  }\n\n  /**\n   * @returns {FolderChartData} chart data\n   */\n  toChartData() {\n    return {\n      ...super.toChartData(),\n      parsedSize: this.parsedSize,\n      gzipSize: this.gzipSize,\n      brotliSize: this.brotliSize,\n      zstdSize: this.zstdSize,\n    };\n  }\n}\n"
  },
  {
    "path": "src/tree/Module.js",
    "content": "import { getCompressedSize } from \"../sizeUtils.js\";\nimport Node from \"./Node.js\";\n\n/** @typedef {import(\"webpack\").StatsModule} StatsModule */\n/** @typedef {import(\"../sizeUtils\").Algorithm} CompressionAlgorithm */\n\n/** @typedef {{ compressionAlgorithm: CompressionAlgorithm }} ModuleOptions */\n\n/** @typedef {\"parsedSize\" | \"gzipSize\" | \"brotliSize\" | \"zstdSize\"} SizeType */\n\n/**\n * @typedef {object} ModuleChartData\n * @property {string | number | undefined} id id\n * @property {string} label label\n * @property {string} path path\n * @property {number | undefined} statSize stat size\n * @property {number | undefined} parsedSize parsed size\n * @property {number | undefined} gzipSize gzip size\n * @property {number | undefined} brotliSize brotli size\n * @property {number | undefined} zstdSize zstd size\n */\n\n/**\n * @typedef {object} SizeFields\n * @property {number=} _gzipSize gzip size\n * @property {number=} _brotliSize brotli size\n * @property {number=} _zstdSize zstd size\n */\n\nexport default class Module extends Node {\n  /**\n   * @param {string} name name\n   * @param {StatsModule} data data\n   * @param {Node | undefined} parent parent\n   * @param {ModuleOptions} opts options\n   */\n  constructor(name, data, parent, opts) {\n    super(name, parent);\n    /** @type {StatsModule} */\n    this.data = data;\n    /** @type {ModuleOptions} */\n    this.opts = opts;\n  }\n\n  get src() {\n    return this.data.parsedSrc;\n  }\n\n  set src(value) {\n    this.data.parsedSrc = value;\n\n    delete (/** @type {Module & SizeFields} */ (this)._gzipSize);\n    delete (/** @type {Module & SizeFields} */ (this)._brotliSize);\n    delete (/** @type {Module & SizeFields} */ (this)._zstdSize);\n  }\n\n  /**\n   * @returns {number} size\n   */\n  get size() {\n    return /** @type {number} */ (this.data.size);\n  }\n\n  set size(value) {\n    this.data.size = value;\n  }\n\n  get parsedSize() {\n    return this.getParsedSize();\n  }\n\n  get gzipSize() {\n    return this.getGzipSize();\n  }\n\n  get brotliSize() {\n    return this.getBrotliSize();\n  }\n\n  get zstdSize() {\n    return this.getZstdSize();\n  }\n\n  getParsedSize() {\n    return this.src ? this.src.length : undefined;\n  }\n\n  getGzipSize() {\n    return this.opts.compressionAlgorithm === \"gzip\"\n      ? this.getCompressedSize(\"gzip\")\n      : undefined;\n  }\n\n  getBrotliSize() {\n    return this.opts.compressionAlgorithm === \"brotli\"\n      ? this.getCompressedSize(\"brotli\")\n      : undefined;\n  }\n\n  getZstdSize() {\n    return this.opts.compressionAlgorithm === \"zstd\"\n      ? this.getCompressedSize(\"zstd\")\n      : undefined;\n  }\n\n  /**\n   * @param {CompressionAlgorithm} compressionAlgorithm compression algorithm\n   * @returns {number | undefined} compressed size\n   */\n  getCompressedSize(compressionAlgorithm) {\n    const key =\n      /** @type {`_${CompressionAlgorithm}Size`} */\n      (`_${compressionAlgorithm}Size`);\n    if (!(key in this)) {\n      /** @type {Module & SizeFields} */\n      (this)[key] = this.src\n        ? getCompressedSize(compressionAlgorithm, this.src)\n        : undefined;\n    }\n\n    return /** @type {Module & SizeFields} */ (this)[key];\n  }\n\n  /**\n   * @param {StatsModule} data data\n   */\n  mergeData(data) {\n    if (data.size) {\n      /** @type {number} */\n      (this.size) += data.size;\n    }\n\n    if (data.parsedSrc) {\n      this.src = (this.src || \"\") + data.parsedSrc;\n    }\n  }\n\n  /**\n   * @returns {ModuleChartData} module chart data\n   */\n  toChartData() {\n    return {\n      id: this.data.id,\n      label: this.name,\n      path: this.path,\n      statSize: this.size,\n      parsedSize: this.parsedSize,\n      gzipSize: this.gzipSize,\n      brotliSize: this.brotliSize,\n      zstdSize: this.zstdSize,\n    };\n  }\n}\n"
  },
  {
    "path": "src/tree/Node.js",
    "content": "export default class Node {\n  /**\n   * @param {string} name name\n   * @param {Node=} parent parent\n   */\n  constructor(name, parent) {\n    /** @type {string} */\n    this.name = name;\n    /** @type {Node | undefined} */\n    this.parent = parent;\n  }\n\n  get path() {\n    /** @type {string[]} */\n    const path = [];\n    /** @type {Node | undefined} */\n    let node = this;\n\n    while (node) {\n      path.push(node.name);\n      node = node.parent;\n    }\n\n    return path.reverse().join(\"/\");\n  }\n\n  get isRoot() {\n    return !this.parent;\n  }\n}\n"
  },
  {
    "path": "src/tree/utils.js",
    "content": "const MULTI_MODULE_REGEXP = /^multi /u;\n\n/** @typedef {import(\"webpack\").StatsModule} StatsModule */\n\n/**\n * @param {StatsModule} moduleData moduleData\n * @returns {string[] | null} module path parts\n */\nexport function getModulePathParts(moduleData) {\n  if (\n    moduleData.identifier &&\n    MULTI_MODULE_REGEXP.test(moduleData.identifier)\n  ) {\n    return [moduleData.identifier];\n  }\n\n  if (!moduleData.name) {\n    return null;\n  }\n\n  const loaders = moduleData.name.split(\"!\");\n  // Removing loaders from module path: they're joined by `!` and the last part is a raw module path\n  const parsedPath = loaders[loaders.length - 1]\n    // Splitting module path into parts\n    .split(\"/\")\n    // Removing first `.`\n    .slice(1)\n    // Replacing `~` with `node_modules`\n    .map((part) => (part === \"~\" ? \"node_modules\" : part));\n\n  return parsedPath.length ? parsedPath : null;\n}\n"
  },
  {
    "path": "src/utils.js",
    "content": "/** @typedef {import(\"net\").AddressInfo} AddressInfo */\n/** @typedef {import(\"webpack\").StatsAsset} StatsAsset */\n\nconst { inspect, types } = require(\"node:util\");\nconst opener = require(\"opener\");\n\n/** @typedef {import(\"./BundleAnalyzerPlugin\").ExcludeAssets} ExcludeAssets */\n/** @typedef {import(\"./BundleAnalyzerPlugin\").AnalyzerUrl} AnalyzerUrl */\n/** @typedef {import(\"./Logger\")} Logger */\n\nconst MONTHS = [\n  \"Jan\",\n  \"Feb\",\n  \"Mar\",\n  \"Apr\",\n  \"May\",\n  \"Jun\",\n  \"Jul\",\n  \"Aug\",\n  \"Sep\",\n  \"Oct\",\n  \"Nov\",\n  \"Dec\",\n];\n\n/**\n * @param {ExcludeAssets} excludePatterns exclude patterns\n * @returns {(asset: string) => boolean} function to filter\n */\nfunction createAssetsFilter(excludePatterns) {\n  /** @type {((asset: string) => void | boolean)[]} */\n  const excludeFunctions = (\n    Array.isArray(excludePatterns) ? excludePatterns : [excludePatterns]\n  )\n    .filter(Boolean)\n    .map((pattern) => {\n      if (typeof pattern === \"string\") {\n        pattern = new RegExp(pattern, \"u\");\n      }\n\n      if (types.isRegExp(pattern)) {\n        return (\n          /**\n           * @param {string} asset asset\n           * @returns {boolean} true when need to exclude, otherwise false\n           */\n          (asset) => pattern.test(asset)\n        );\n      }\n\n      if (typeof pattern !== \"function\") {\n        throw new TypeError(\n          `Pattern should be either string, RegExp or a function, but \"${inspect(pattern, { depth: 0 })}\" got.`,\n        );\n      }\n\n      return pattern;\n    });\n\n  if (excludeFunctions.length) {\n    return (asset) => excludeFunctions.every((fn) => fn(asset) !== true);\n  }\n\n  return () => true;\n}\n\n/** @type {AnalyzerUrl} */\nfunction defaultAnalyzerUrl(options) {\n  const { listenHost, boundAddress } = options;\n  return `http://${listenHost}:${/** @type {AddressInfo} */ (boundAddress).port}`;\n}\n\n/**\n * get string of current time, format: dd/MMM HH:mm\n * @returns {string} default title\n */\nfunction defaultTitle() {\n  const time = new Date();\n  const year = time.getFullYear();\n  const month = MONTHS[time.getMonth()];\n  const day = time.getDate();\n  const hour = `0${time.getHours()}`.slice(-2);\n  const minute = `0${time.getMinutes()}`.slice(-2);\n\n  const currentTime = `${day} ${month} ${year} at ${hour}:${minute}`;\n\n  return `${process.env.npm_package_name || \"Webpack Bundle Analyzer\"} [${currentTime}]`;\n}\n\n/**\n * Calls opener on a URI, but silently try / catches it.\n * @param {string} uri URI\n * @param {Logger} logger logger\n */\nfunction open(uri, logger) {\n  try {\n    opener(uri);\n  } catch (err) {\n    logger.debug(`Opener failed to open \"${uri}\":\\n${err}`);\n  }\n}\n\nmodule.exports = { createAssetsFilter, defaultAnalyzerUrl, defaultTitle, open };\n"
  },
  {
    "path": "src/viewer.js",
    "content": "const fs = require(\"node:fs\");\nconst http = require(\"node:http\");\nconst path = require(\"node:path\");\n\nconst { bold } = require(\"picocolors\");\nconst sirv = require(\"sirv\");\nconst WebSocket = require(\"ws\");\n\nconst Logger = require(\"./Logger\");\nconst analyzer = require(\"./analyzer\");\nconst { renderViewer } = require(\"./template\");\nconst { open } = require(\"./utils\");\n\n/** @typedef {import(\"http\").Server} Server */\n/** @typedef {import(\"ws\").WebSocketServer} WebSocketServer */\n/** @typedef {import(\"webpack\").StatsCompilation} StatsCompilation */\n/** @typedef {import(\"./BundleAnalyzerPlugin\").Sizes} Sizes */\n/** @typedef {import(\"./BundleAnalyzerPlugin\").CompressionAlgorithm} CompressionAlgorithm */\n/** @typedef {import(\"./BundleAnalyzerPlugin\").ReportTitle} ReportTitle */\n/** @typedef {import(\"./BundleAnalyzerPlugin\").AnalyzerUrl} AnalyzerUrl */\n/** @typedef {import(\"./BundleAnalyzerPlugin\").ExcludeAssets} ExcludeAssets */\n/** @typedef {import(\"./analyzer\").ViewerDataOptions} ViewerDataOptions */\n/** @typedef {import(\"./analyzer\").ChartData} ChartData */\n\nconst projectRoot = path.resolve(__dirname, \"..\");\n\n/**\n * @param {string | (() => string)} reportTitle report title\n * @returns {string} resolved title\n */\nfunction resolveTitle(reportTitle) {\n  if (typeof reportTitle === \"function\") {\n    return reportTitle();\n  }\n\n  return reportTitle;\n}\n\n/**\n * @param {Sizes} defaultSizes default sizes\n * @param {CompressionAlgorithm} compressionAlgorithm compression algorithm\n * @returns {Sizes} default sizes\n */\nfunction resolveDefaultSizes(defaultSizes, compressionAlgorithm) {\n  if ([\"gzip\", \"brotli\", \"zstd\"].includes(defaultSizes)) {\n    return compressionAlgorithm;\n  }\n\n  return defaultSizes;\n}\n\n/** @typedef {(string | undefined | null)[]} Entrypoints */\n\n/**\n * @param {StatsCompilation} bundleStats bundle stats\n * @returns {Entrypoints} entrypoints\n */\nfunction getEntrypoints(bundleStats) {\n  if (\n    bundleStats === null ||\n    bundleStats === undefined ||\n    !bundleStats.entrypoints\n  ) {\n    return [];\n  }\n\n  return Object.values(bundleStats.entrypoints).map(\n    (entrypoint) => entrypoint.name,\n  );\n}\n\n/**\n * @param {ViewerDataOptions} analyzerOpts analyzer options\n * @param {StatsCompilation} bundleStats bundle stats\n * @param {string | null} bundleDir bundle dir\n * @returns {ChartData | null} chart data\n */\nfunction getChartData(analyzerOpts, bundleStats, bundleDir) {\n  /** @type {ChartData | undefined | null} */\n  let chartData;\n  const { logger } = analyzerOpts;\n\n  try {\n    chartData = analyzer.getViewerData(bundleStats, bundleDir, analyzerOpts);\n  } catch (err) {\n    logger.error(`Couldn't analyze webpack bundle:\\n${err}`);\n    logger.debug(/** @type {Error} */ (err).stack);\n    chartData = null;\n  }\n\n  // chartData can either be an array (bundleInfo[]) or null. It can't be an plain object anyway\n  if (\n    // analyzer.getViewerData() doesn't failed in the previous step\n    chartData &&\n    !Array.isArray(chartData)\n  ) {\n    logger.error(\"Couldn't find any javascript bundles in provided stats file\");\n    chartData = null;\n  }\n\n  return chartData;\n}\n\n/**\n * @typedef {object} ServerOptions\n * @property {number} port port\n * @property {string} host host\n * @property {boolean} openBrowser true when need to open browser, otherwise false\n * @property {string | null} bundleDir bundle dir\n * @property {Logger} logger logger\n * @property {Sizes} defaultSizes default sizes\n * @property {CompressionAlgorithm} compressionAlgorithm compression algorithm\n * @property {ExcludeAssets | null} excludeAssets exclude assets\n * @property {ReportTitle} reportTitle report title\n * @property {AnalyzerUrl} analyzerUrl analyzer url\n */\n\n/** @typedef {{ ws: WebSocketServer, http: Server, updateChartData: (bundleStats: StatsCompilation) => void }} ViewerServerObj */\n\n/**\n * @param {StatsCompilation} bundleStats bundle stats\n * @param {ServerOptions} opts options\n * @returns {Promise<ViewerServerObj>} server\n */\nasync function startServer(bundleStats, opts) {\n  const {\n    port = 8888,\n    host = \"127.0.0.1\",\n    openBrowser = true,\n    bundleDir = null,\n    logger = new Logger(),\n    defaultSizes = \"parsed\",\n    compressionAlgorithm,\n    excludeAssets = null,\n    reportTitle,\n    analyzerUrl,\n  } = opts || {};\n\n  const analyzerOpts = { logger, excludeAssets, compressionAlgorithm };\n\n  let chartData = getChartData(analyzerOpts, bundleStats, bundleDir);\n\n  if (!chartData) {\n    throw new Error(\"Can't get chart data\");\n  }\n\n  const sirvMiddleware = sirv(`${projectRoot}/public`, {\n    // disables caching and traverse the file system on every request\n    dev: true,\n  });\n\n  const entrypoints = getEntrypoints(bundleStats);\n  const server = http.createServer((req, res) => {\n    if (req.method === \"GET\" && req.url === \"/\") {\n      const html = renderViewer({\n        mode: \"server\",\n        title: resolveTitle(reportTitle),\n        chartData: /** @type {ChartData} */ (chartData),\n        entrypoints,\n        defaultSizes: resolveDefaultSizes(defaultSizes, compressionAlgorithm),\n        compressionAlgorithm,\n        enableWebSocket: true,\n      });\n      res.writeHead(200, { \"Content-Type\": \"text/html\" });\n      res.end(html);\n    } else {\n      sirvMiddleware(req, res);\n    }\n  });\n\n  await new Promise(\n    /**\n     * @param {(value: void) => void} resolve resolve\n     */\n    (resolve) => {\n      server.listen(port, host, () => {\n        resolve();\n\n        const url = analyzerUrl({\n          listenPort: port,\n          listenHost: host,\n          boundAddress: server.address(),\n        });\n\n        logger.info(\n          `${bold(\"Webpack Bundle Analyzer\")} is started at ${bold(url)}\\n` +\n            `Use ${bold(\"Ctrl+C\")} to close it`,\n        );\n\n        if (openBrowser) {\n          open(url, logger);\n        }\n      });\n    },\n  );\n\n  const wss = new WebSocket.Server({ server });\n\n  wss.on(\"connection\", (ws) => {\n    ws.on(\"error\", (err) => {\n      // Ignore network errors like `ECONNRESET`, `EPIPE`, etc.\n      if (/** @type {NodeJS.ErrnoException} */ (err).errno) return;\n\n      logger.info(err.message);\n    });\n  });\n\n  /**\n   * @param {StatsCompilation} bundleStats bundle stats\n   */\n  function updateChartData(bundleStats) {\n    const newChartData = getChartData(analyzerOpts, bundleStats, bundleDir);\n\n    if (!newChartData) return;\n\n    chartData = newChartData;\n\n    for (const client of wss.clients) {\n      if (client.readyState === WebSocket.OPEN) {\n        client.send(\n          JSON.stringify({\n            event: \"chartDataUpdated\",\n            data: newChartData,\n          }),\n        );\n      }\n    }\n  }\n\n  return {\n    ws: wss,\n    http: server,\n    updateChartData,\n  };\n}\n\n/**\n * @typedef {object} GenerateReportOptions\n * @property {boolean} openBrowser true when need to open browser, otherwise false\n * @property {string} reportFilename report filename\n * @property {ReportTitle} reportTitle report title\n * @property {string | null} bundleDir bundle dir\n * @property {Logger} logger logger\n * @property {Sizes} defaultSizes default sizes\n * @property {CompressionAlgorithm} compressionAlgorithm compression algorithm\n * @property {ExcludeAssets} excludeAssets exclude assets\n */\n\n/**\n * @param {StatsCompilation} bundleStats bundle stats\n * @param {GenerateReportOptions} opts opts\n * @returns {Promise<void>}\n */\nasync function generateReport(bundleStats, opts) {\n  const {\n    openBrowser = true,\n    reportFilename,\n    reportTitle,\n    bundleDir = null,\n    logger = new Logger(),\n    defaultSizes = \"parsed\",\n    compressionAlgorithm,\n    excludeAssets = null,\n  } = opts || {};\n\n  const chartData = getChartData(\n    { logger, excludeAssets, compressionAlgorithm },\n    bundleStats,\n    bundleDir,\n  );\n  const entrypoints = getEntrypoints(bundleStats);\n\n  if (!chartData) return;\n\n  const reportHtml = renderViewer({\n    mode: \"static\",\n    title: resolveTitle(reportTitle),\n    chartData,\n    entrypoints,\n    defaultSizes: resolveDefaultSizes(defaultSizes, compressionAlgorithm),\n    compressionAlgorithm,\n    enableWebSocket: false,\n  });\n  const reportFilepath = path.resolve(\n    bundleDir || process.cwd(),\n    reportFilename,\n  );\n\n  fs.mkdirSync(path.dirname(reportFilepath), { recursive: true });\n  fs.writeFileSync(reportFilepath, reportHtml);\n\n  logger.info(\n    `${bold(\"Webpack Bundle Analyzer\")} saved report to ${bold(reportFilepath)}`,\n  );\n\n  if (openBrowser) {\n    open(`file://${reportFilepath}`, logger);\n  }\n}\n\n/**\n * @typedef {object} GenerateJSONReportOptions\n * @property {string} reportFilename report filename\n * @property {string | null} bundleDir bundle dir\n * @property {Logger} logger logger\n * @property {ExcludeAssets} excludeAssets exclude assets\n * @property {CompressionAlgorithm} compressionAlgorithm compression algorithm\n */\n\n/**\n * @param {StatsCompilation} bundleStats bundle stats\n * @param {GenerateJSONReportOptions} opts options\n * @returns {Promise<void>}\n */\nasync function generateJSONReport(bundleStats, opts) {\n  const {\n    reportFilename,\n    bundleDir = null,\n    logger = new Logger(),\n    excludeAssets = null,\n    compressionAlgorithm,\n  } = opts || {};\n\n  const chartData = getChartData(\n    { logger, excludeAssets, compressionAlgorithm },\n    bundleStats,\n    bundleDir,\n  );\n\n  if (!chartData) return;\n\n  await fs.promises.mkdir(path.dirname(reportFilename), { recursive: true });\n  await fs.promises.writeFile(reportFilename, JSON.stringify(chartData));\n\n  logger.info(\n    `${bold(\"Webpack Bundle Analyzer\")} saved JSON report to ${bold(reportFilename)}`,\n  );\n}\n\nmodule.exports = {\n  generateJSONReport,\n  generateReport,\n  getEntrypoints,\n  // deprecated\n  start: startServer,\n  startServer,\n};\n"
  },
  {
    "path": "test/.eslintrc.json",
    "content": "{\n  \"extends\": \"../.eslintrc.json\",\n  \"env\": {\n    \"jest\": true,\n    \"browser\": true\n  },\n  \"globals\": {\n    \"makeWebpackConfig\": true,\n    \"webpackCompile\": true,\n    \"forEachWebpackVersion\": true\n  }\n}\n"
  },
  {
    "path": "test/.gitignore",
    "content": "output\n\n# Sandbox config\n/webpack.config.js\n# Output of sandbox config\n/dist\n"
  },
  {
    "path": "test/Logger.js",
    "content": "const Logger = require(\"../src/Logger\");\n\nclass TestLogger extends Logger {\n  constructor(level) {\n    super(level);\n    this.logs = [];\n  }\n\n  clear() {\n    this.logs = [];\n  }\n\n  _log(level, ...args) {\n    this.logs.push([level, ...args]);\n  }\n}\n\nfunction expectLoggerLevel(logger, level) {\n  logger.clear();\n\n  const levels = Logger.levels.filter((level) => level !== \"silent\");\n\n  for (const level of levels) {\n    logger[level](\"msg1\", \"msg2\");\n  }\n\n  const expectedLogs = levels\n    .filter(\n      (testLevel) =>\n        Logger.levels.indexOf(testLevel) >= Logger.levels.indexOf(level),\n    )\n    .map((testLevel) => [testLevel, \"msg1\", \"msg2\"]);\n\n  expect(logger.logs).toEqual(expectedLogs);\n}\n\nfunction invalidLogLevelMessage(level) {\n  return `Invalid log level \"${level}\". Use one of these: ${Logger.levels.join(\", \")}`;\n}\n\nlet logger;\n\ndescribe(\"Logger\", () => {\n  describe(\"level\", () => {\n    for (const testingLevel of Logger.levels) {\n      /* eslint-disable no-loop-func */\n      describe(`\"${testingLevel}\"`, () => {\n        beforeEach(() => {\n          logger = new TestLogger(testingLevel);\n        });\n\n        for (const level of Logger.levels.filter(\n          (level) => level !== \"silent\",\n        )) {\n          if (\n            Logger.levels.indexOf(level) >= Logger.levels.indexOf(testingLevel)\n          ) {\n            it(`should log \"${level}\" message`, () => {\n              logger[level](\"msg1\", \"msg2\");\n              expect(logger.logs).toEqual([[level, \"msg1\", \"msg2\"]]);\n            });\n          } else {\n            it(`should not log \"${level}\" message`, () => {\n              logger[level](\"msg1\", \"msg2\");\n              expect(logger.logs).toHaveLength(0);\n            });\n          }\n        }\n      });\n    }\n\n    it('should be set to \"info\" by default', () => {\n      logger = new TestLogger();\n      expectLoggerLevel(logger, \"info\");\n    });\n\n    it(\"should allow to change level\", () => {\n      logger = new TestLogger(\"warn\");\n      expectLoggerLevel(logger, \"warn\");\n      logger.setLogLevel(\"info\");\n      expectLoggerLevel(logger, \"info\");\n      logger.setLogLevel(\"silent\");\n      expectLoggerLevel(logger, \"silent\");\n    });\n\n    it(\"should throw if level is invalid on instance creation\", () => {\n      expect(() => new TestLogger(\"invalid\")).toThrow(\n        invalidLogLevelMessage(\"invalid\"),\n      );\n    });\n\n    it(\"should throw if level is invalid on `setLogLevel`\", () => {\n      expect(() => new TestLogger().setLogLevel(\"invalid\")).toThrow(\n        invalidLogLevelMessage(\"invalid\"),\n      );\n    });\n  });\n});\n"
  },
  {
    "path": "test/analyzer.js",
    "content": "const childProcess = require(\"node:child_process\");\nconst fs = require(\"node:fs\");\nconst path = require(\"node:path\");\nconst url = require(\"node:url\");\nconst puppeteer = require(\"puppeteer\");\nconst { isZstdSupported } = require(\"../src/sizeUtils\");\n\nlet browser;\n\nfunction generateReportFrom(statsFilename, additionalOptions = \"\") {\n  childProcess.execSync(\n    `../lib/bin/analyzer.js ${additionalOptions} -m static -r output/report.html -O stats/${statsFilename}`,\n    {\n      cwd: __dirname,\n    },\n  );\n}\n\nasync function getTitleFromReport() {\n  const page = await browser.newPage();\n  await page.goto(\n    url.pathToFileURL(path.resolve(__dirname, \"./output/report.html\")),\n  );\n  return await page.title();\n}\n\nfunction forEachChartItem(chartData, cb) {\n  for (const item of chartData) {\n    cb(item);\n\n    if (item.groups) {\n      forEachChartItem(item.groups, cb);\n    }\n  }\n}\n\nasync function getChartData() {\n  const page = await browser.newPage();\n  await page.goto(\n    url.pathToFileURL(path.resolve(__dirname, \"./output/report.html\")),\n  );\n  return await page.evaluate(() => globalThis.chartData);\n}\n\nasync function getCompressionAlgorithm() {\n  const page = await browser.newPage();\n  await page.goto(\n    url.pathToFileURL(path.resolve(__dirname, \"./output/report.html\")),\n  );\n  return await page.evaluate(() => globalThis.compressionAlgorithm);\n}\n\nasync function expectValidReport(opts) {\n  const { bundleLabel = \"bundle.js\", statSize = 141 } = opts || {};\n\n  expect(fs.existsSync(path.resolve(__dirname, \"./output/report.html\"))).toBe(\n    true,\n  );\n  const chartData = await getChartData();\n  expect(chartData[0]).toMatchObject({\n    label: bundleLabel,\n    statSize,\n  });\n}\n\nfunction generateJSONReportFrom(statsFilename) {\n  childProcess.execSync(\n    `../lib/bin/analyzer.js -m json -r output/report.json stats/${statsFilename}`,\n    {\n      cwd: __dirname,\n    },\n  );\n}\n\ndescribe(\"Analyzer\", () => {\n  beforeAll(async () => {\n    browser = await puppeteer.launch();\n    await fs.promises.rm(path.resolve(__dirname, \"./output\"), {\n      force: true,\n      recursive: true,\n    });\n  });\n\n  afterEach(async () => {\n    await fs.promises.rm(path.resolve(__dirname, \"./output\"), {\n      force: true,\n      recursive: true,\n    });\n  });\n\n  afterAll(async () => {\n    await browser.close();\n  });\n\n  it(\"should support stats files with all the information in `children` array\", async () => {\n    generateReportFrom(\"with-children-array.json\");\n    await expectValidReport();\n  });\n\n  it(\"should generate report containing worker bundles\", async () => {\n    generateReportFrom(\"with-worker-loader/stats.json\");\n    const chartData = await getChartData();\n    expect(chartData[1]).toMatchObject({\n      label: \"bundle.worker.js\",\n    });\n  });\n\n  it(\"should generate report for array webpack.config.js\", async () => {\n    generateReportFrom(\"with-array-config/stats.json\");\n    const chartData = await getChartData();\n    expect(chartData).toHaveLength(2);\n    expect(chartData[0]).toMatchObject({\n      label: \"config-1-main.js\",\n    });\n    expect(chartData[1]).toMatchObject({\n      label: \"config-2-main.js\",\n    });\n  });\n\n  it(\"should generate report when worker bundles have dynamic imports\", async () => {\n    generateReportFrom(\"with-worker-loader-dynamic-import/stats.json\");\n    const chartData = await getChartData();\n    expect(chartData[1]).toMatchObject({\n      label: \"1.bundle.worker.js\",\n    });\n  });\n\n  it(\"should support stats files with modules inside `chunks` array\", async () => {\n    generateReportFrom(\"with-modules-in-chunks/stats.json\");\n    const chartData = await getChartData();\n    expect(chartData).toMatchObject(\n      require(\"./stats/with-modules-in-chunks/expected-chart-data\"),\n    );\n  });\n\n  it(\"should record accurate byte lengths for sources with special chars\", async () => {\n    generateReportFrom(\"with-special-chars/stats.json\");\n    const chartData = await getChartData();\n    expect(chartData).toMatchObject(\n      require(\"./stats/with-special-chars/expected-chart-data\"),\n    );\n  });\n\n  it(\"should support bundles with invalid dynamic require calls\", async () => {\n    generateReportFrom(\"with-invalid-dynamic-require.json\");\n    await expectValidReport({ statSize: 136 });\n  });\n\n  it(\"should use information about concatenated modules generated by webpack 4\", async () => {\n    generateReportFrom(\"with-module-concatenation-info/stats.json\");\n    const chartData = await getChartData();\n    expect(chartData[0].groups[0]).toMatchObject(\n      require(\"./stats/with-module-concatenation-info/expected-chart-data\"),\n    );\n  });\n\n  it(\"should handle stats with minimal configuration\", async () => {\n    generateReportFrom(\"minimal-stats/stats.json\");\n    const chartData = await getChartData();\n    expect(chartData).toHaveLength(0);\n  });\n\n  // eslint-disable-next-line jest/no-disabled-tests\n  it.skip(\"should not filter out modules that we couldn't find during parsing\", async () => {\n    generateReportFrom(\"with-missing-parsed-module/stats.json\");\n    const chartData = await getChartData();\n    let unparsedModules = 0;\n    forEachChartItem(chartData, (item) => {\n      if (typeof item.parsedSize !== \"number\") {\n        unparsedModules++;\n      }\n    });\n    expect(unparsedModules).toBe(1);\n  });\n\n  // eslint-disable-next-line jest/no-disabled-tests\n  it.skip(\"should gracefully parse invalid chunks\", async () => {\n    generateReportFrom(\"with-invalid-chunk/stats.json\");\n    const chartData = await getChartData();\n    const invalidChunk = chartData.find((i) => i.label === \"invalid-chunk.js\");\n    expect(invalidChunk.groups).toMatchObject([\n      {\n        id: 1,\n        label: \"invalid.js\",\n        path: \"./invalid.js\",\n        statSize: 24,\n      },\n    ]);\n    expect(invalidChunk.statSize).toBe(24);\n    expect(invalidChunk.parsedSize).toBe(30);\n  });\n\n  // eslint-disable-next-line jest/no-disabled-tests\n  it.skip(\"should gracefully process missing chunks\", async () => {\n    generateReportFrom(\"with-missing-chunk/stats.json\");\n    const chartData = await getChartData();\n    const invalidChunk = chartData.find((i) => i.label === \"invalid-chunk.js\");\n    expect(invalidChunk).toBeDefined();\n    expect(invalidChunk.statSize).toBe(24);\n    forEachChartItem([invalidChunk], (item) => {\n      expect(typeof item.statSize).toBe(\"number\");\n      expect(item.parsedSize).toBeUndefined();\n    });\n    const validChunk = chartData.find((i) => i.label === \"valid-chunk.js\");\n    forEachChartItem([validChunk], (item) => {\n      expect(typeof item.statSize).toBe(\"number\");\n      expect(typeof item.parsedSize).toBe(\"number\");\n    });\n  });\n\n  // eslint-disable-next-line jest/no-disabled-tests\n  it.skip(\"should gracefully process missing module chunks\", async () => {\n    generateReportFrom(\"with-missing-module-chunks/stats.json\");\n    const chartData = await getChartData();\n    const invalidChunk = chartData.find((i) => i.label === \"invalid-chunk.js\");\n    expect(invalidChunk).toBeDefined();\n    expect(invalidChunk.statSize).toBe(568);\n    forEachChartItem([invalidChunk], (item) => {\n      expect(typeof item.statSize).toBe(\"number\");\n      expect(item.parsedSize).toBeUndefined();\n    });\n    const validChunk = chartData.find((i) => i.label === \"valid-chunk.js\");\n    forEachChartItem([validChunk], (item) => {\n      expect(typeof item.statSize).toBe(\"number\");\n      expect(typeof item.parsedSize).toBe(\"number\");\n    });\n  });\n\n  it(\"should support stats files with js modules chunk\", async () => {\n    generateReportFrom(\"with-modules-chunk.json\");\n    await expectValidReport({ bundleLabel: \"bundle.mjs\" });\n  });\n\n  it(\"should support stats files with cjs chunk\", async () => {\n    generateReportFrom(\"with-cjs-chunk.json\");\n    await expectValidReport({ bundleLabel: \"bundle.cjs\" });\n  });\n\n  it(\"should properly parse extremely optimized bundle from webpack 5\", async () => {\n    generateReportFrom(\"extremely-optimized-webpack-5-bundle/stats.json\");\n    const chartData = await getChartData();\n    expect(chartData).toMatchObject(\n      require(\"./stats/extremely-optimized-webpack-5-bundle/expected-chart-data\"),\n    );\n  });\n\n  it(\"should properly parse webpack 5 bundle with single entry\", async () => {\n    generateReportFrom(\"webpack-5-bundle-with-single-entry/stats.json\");\n    const chartData = await getChartData();\n    expect(chartData).toMatchObject(\n      require(\"./stats/webpack-5-bundle-with-single-entry/expected-chart-data\"),\n    );\n  });\n\n  it(\"should properly parse webpack 5 bundle with multiple entries\", async () => {\n    generateReportFrom(\"webpack-5-bundle-with-multiple-entries/stats.json\");\n    const chartData = await getChartData();\n    expect(chartData).toMatchObject(\n      require(\"./stats/webpack-5-bundle-with-multiple-entries/expected-chart-data\"),\n    );\n  });\n\n  it(\"should properly parse webpack 5 bundle with an entry module that is a concatenated module\", async () => {\n    generateReportFrom(\n      \"webpack-5-bundle-with-concatenated-entry-module/stats.json\",\n    );\n    const chartData = await getChartData();\n    expect(chartData).toMatchObject(\n      require(\"./stats/webpack-5-bundle-with-concatenated-entry-module/expected-chart-data.json\"),\n    );\n  });\n\n  it(\"should support generating JSON output for the report\", async () => {\n    generateJSONReportFrom(\"with-modules-in-chunks/stats.json\");\n\n    const chartData = require(path.resolve(__dirname, \"output/report.json\"));\n\n    expect(chartData).toMatchObject(\n      require(\"./stats/with-modules-in-chunks/expected-chart-data\"),\n    );\n  });\n\n  it(\"should support stats files with non-asset asset\", async () => {\n    generateReportFrom(\"with-non-asset-asset/stats.json\");\n    await expectValidReport({ bundleLabel: \"bundle.js\" });\n  });\n\n  it(\"should map chunks correctly to entrypoints\", async () => {\n    generateReportFrom(\"with-multiple-entrypoints/stats.json\");\n    const chartData = await getChartData();\n    expect(chartData).toMatchObject(\n      require(\"./stats/with-multiple-entrypoints/expected-chart-data\"),\n    );\n  });\n\n  it(\"should return empty chartData if there are no entrypoints\", async () => {\n    generateReportFrom(\"with-no-entrypoints/stats.json\");\n    const chartData = await getChartData();\n    expect(chartData).toHaveLength(0);\n  });\n\n  describe(\"options\", () => {\n    describe(\"title\", () => {\n      it(\"should take the --title option\", async () => {\n        const reportTitle = \"A string report title\";\n        generateReportFrom(\n          \"with-modules-chunk.json\",\n          `--title \"${reportTitle}\"`,\n        );\n\n        const generatedReportTitle = await getTitleFromReport();\n\n        expect(generatedReportTitle).toBe(reportTitle);\n      });\n\n      it(\"should take the -t option\", async () => {\n        const reportTitle = \"A string report title\";\n\n        generateReportFrom(\"with-modules-chunk.json\", `-t \"${reportTitle}\"`);\n\n        const generatedReportTitle = await getTitleFromReport();\n\n        expect(generatedReportTitle).toBe(reportTitle);\n      });\n\n      it(\"should use a suitable default title\", async () => {\n        generateReportFrom(\"with-modules-chunk.json\");\n\n        const generatedReportTitle = await getTitleFromReport();\n\n        expect(generatedReportTitle).toMatch(\n          /^webpack-bundle-analyzer \\[.* at \\d{2}:\\d{2}\\]/u,\n        );\n      });\n    });\n\n    describe(\"compression algorithm\", () => {\n      it(\"should accept --compression-algorithm brotli\", async () => {\n        generateReportFrom(\n          \"with-modules-chunk.json\",\n          \"--compression-algorithm brotli\",\n        );\n        expect(await getCompressionAlgorithm()).toBe(\"brotli\");\n      });\n\n      it(\"should accept --compression-algorithm gzip\", async () => {\n        generateReportFrom(\n          \"with-modules-chunk.json\",\n          \"--compression-algorithm gzip\",\n        );\n        expect(await getCompressionAlgorithm()).toBe(\"gzip\");\n      });\n\n      if (isZstdSupported) {\n        it(\"should accept --compression-algorithm zstd\", async () => {\n          generateReportFrom(\n            \"with-modules-chunk.json\",\n            \"--compression-algorithm zstd\",\n          );\n          expect(await getCompressionAlgorithm()).toBe(\"zstd\");\n        });\n      }\n\n      it(\"should default to gzip\", async () => {\n        generateReportFrom(\"with-modules-chunk.json\");\n        expect(await getCompressionAlgorithm()).toBe(\"gzip\");\n      });\n    });\n  });\n});\n"
  },
  {
    "path": "test/bundles/invalidBundle.js",
    "content": "module.exports = 'invalid bundle';\n"
  },
  {
    "path": "test/bundles/validBundleWithArrowFunction.js",
    "content": "webpackJsonp([0],[(t,e,r)=>{\n  console.log(\"Hello world!\");\n}]);\n"
  },
  {
    "path": "test/bundles/validBundleWithArrowFunction.modules.json",
    "content": "{\n  \"modules\": {\n    \"0\": \"(t,e,r)=>{\\n  console.log(\\\"Hello world!\\\");\\n}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validBundleWithEsNextFeatures.js",
    "content": "webpackJsonp([0],[function(t,e,r){\n  async function asyncFn() {\n    return await Promise.resolve(1);\n  }\n\n  const arrowFn = arg => arg * 2;\n\n  function* generatorFn() {\n    yield 1;\n  }\n\n  class TestClass {\n    static staticMethod() {}\n    constructor() {}\n    testMethod() {}\n  }\n\n  for (const i of [1, 2, 3]) {\n    console.log(i);\n  }\n\n  let obj = {\n    ['a' + 'b']: 1,\n    func() {}\n  };\n\n  const [var1, var2] = [1, 2];\n}]);\n"
  },
  {
    "path": "test/bundles/validBundleWithEsNextFeatures.modules.json",
    "content": "{\n  \"modules\": {\n    \"0\": \"function(t,e,r){\\n  async function asyncFn() {\\n    return await Promise.resolve(1);\\n  }\\n\\n  const arrowFn = arg => arg * 2;\\n\\n  function* generatorFn() {\\n    yield 1;\\n  }\\n\\n  class TestClass {\\n    static staticMethod() {}\\n    constructor() {}\\n    testMethod() {}\\n  }\\n\\n  for (const i of [1, 2, 3]) {\\n    console.log(i);\\n  }\\n\\n  let obj = {\\n    ['a' + 'b']: 1,\\n    func() {}\\n  };\\n\\n  const [var1, var2] = [1, 2];\\n}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validBundleWithIIFE.js",
    "content": "(()=>{const e=console.log(\"foo\");})();\n"
  },
  {
    "path": "test/bundles/validBundleWithIIFE.modules.json",
    "content": "{\n  \"modules\": {}\n}\n"
  },
  {
    "path": "test/bundles/validCommonBundleWithDedupePlugin.js",
    "content": "!function(t){function r(n){if(e[n])return e[n].exports;var o=e[n]={exports:{},id:n,loaded:!1};return t[n].call(o.exports,o,o.exports,r),o.loaded=!0,o.exports}var e={};return r.m=t,r.c=e,r.p=\"\",r(0)}(function(t){for(var r in t)if(Object.prototype.hasOwnProperty.call(t,r))switch(typeof t[r]){case\"function\":break;case\"object\":t[r]=function(r){var e=r.slice(1),n=t[r[0]];return function(t,r,o){n.apply(this,[t,r,o].concat(e))}}(t[r]);break;default:t[r]=t[t[r]]}return t}([function(t,r,e){e(1),e(2)},function(t,r){t.exports=1},1,,[2, 'arg1', 'arg2'],,['module-id', 'arg']]));\n"
  },
  {
    "path": "test/bundles/validCommonBundleWithDedupePlugin.modules.json",
    "content": "{\n  \"modules\": {\n    \"0\": \"function(t,r,e){e(1),e(2)}\",\n    \"1\": \"function(t,r){t.exports=1}\",\n    \"2\": \"1\",\n    \"4\": \"[2, 'arg1', 'arg2']\",\n    \"6\": \"['module-id', 'arg']\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validCommonBundleWithModulesAsArray.js",
    "content": "!function(e){function t(n){if(r[n])return r[n].exports;var o=r[n]={exports:{},id:n,loaded:!1};return e[n].call(o.exports,o,o.exports,t),o.loaded=!0,o.exports}var n=window.webpackJsonp;window.webpackJsonp=function(i,a){for(var s,u,l=0,c=[];l<i.length;l++)u=i[l],o[u]&&c.push.apply(c,o[u]),o[u]=0;for(s in a)e[s]=a[s];for(n&&n(i,a);c.length;)c.shift().call(null,t);if(a[0])return r[0]=0,t(0)};var r={},o={0:0};return t.e=function(e,n){if(0===o[e])return n.call(null,t);if(void 0!==o[e])o[e].push(n);else{o[e]=[n];var r=document.getElementsByTagName(\"head\")[0],i=document.createElement(\"script\");i.type=\"text/javascript\",i.charset=\"utf-8\",i.async=!0,i.src=t.p+window.webpackManifest[e],r.appendChild(i)}},t.m=e,t.c=r,t.p=\"/app/scripts/\",t(0)}([function(e,t,n){n(1),n(21),n(96),n(306),n(23),n(150),n(57),n(56),n(34),n(138),e.exports=n(348)},,,function(e,t,n){\"use strict\";e.exports=n(680)},,function(e,t){}]);\n"
  },
  {
    "path": "test/bundles/validCommonBundleWithModulesAsArray.modules.json",
    "content": "{\n  \"modules\": {\n    \"0\": \"function(e,t,n){n(1),n(21),n(96),n(306),n(23),n(150),n(57),n(56),n(34),n(138),e.exports=n(348)}\",\n    \"3\": \"function(e,t,n){\\\"use strict\\\";e.exports=n(680)}\",\n    \"5\": \"function(e,t){}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validCommonBundleWithModulesAsObject.js",
    "content": "!function(t){function e(n){if(i[n])return i[n].exports;var r=i[n]={exports:{},id:n,loaded:!1};return t[n].call(r.exports,r,r.exports,e),r.loaded=!0,r.exports}var n=window.webpackJsonp;window.webpackJsonp=function(o,s){for(var a,l,c=0,u=[];c<o.length;c++)l=o[c],r[l]&&u.push.apply(u,r[l]),r[l]=0;for(a in s)t[a]=s[a];for(n&&n(o,s);u.length;)u.shift().call(null,e);if(s[0])return i[0]=0,e(0)};var i={},r={0:0};return e.e=function(t,n){if(0===r[t])return n.call(null,e);if(void 0!==r[t])r[t].push(n);else{r[t]=[n];var i=document.getElementsByTagName(\"head\")[0],o=document.createElement(\"script\");o.type=\"text/javascript\",o.charset=\"utf-8\",o.async=!0,o.src=e.p+\"\"+t+\".\"+({1:\"application\"}[t]||t)+\".js\",i.appendChild(o)}},e.m=t,e.c=i,e.p=\"/assets/build/\",e(0)}({2:function(t,e,n){n(3),n(173),n(15),n(11),n(148),n(150),n(152),n(143),n(5),n(151),n(4),n(1),n(14),n(144),n(146),n(498),n(505),n(496),n(168),n(501),n(499),n(504),n(130),n(10),n(131),n(500),n(169),n(497),n(506),n(171),n(172),t.exports=n(170)},\"/x1Yz5\":function(t,e,n){},6:function(t,e,n){(function(e){t.exports=e.$=n(167)}).call(e,function(){return this}())}});\n"
  },
  {
    "path": "test/bundles/validCommonBundleWithModulesAsObject.modules.json",
    "content": "{\n  \"modules\": {\n    \"2\": \"function(t,e,n){n(3),n(173),n(15),n(11),n(148),n(150),n(152),n(143),n(5),n(151),n(4),n(1),n(14),n(144),n(146),n(498),n(505),n(496),n(168),n(501),n(499),n(504),n(130),n(10),n(131),n(500),n(169),n(497),n(506),n(171),n(172),t.exports=n(170)}\",\n    \"6\": \"function(t,e,n){(function(e){t.exports=e.$=n(167)}).call(e,function(){return this}())}\",\n    \"/x1Yz5\": \"function(t,e,n){}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validExtraBundleWithModulesAsArray.js",
    "content": "webpackJsonp([0,2],[,,function(t,e,r){'123'},,,function(t,e){'12345'},]);\n"
  },
  {
    "path": "test/bundles/validExtraBundleWithModulesAsArray.modules.json",
    "content": "{\n  \"modules\": {\n    \"2\": \"function(t,e,r){'123'}\",\n    \"5\": \"function(t,e){'12345'}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validExtraBundleWithModulesInsideArrayConcat.js",
    "content": "webpackJsonplmn_ui_obe__name_Init([0],Array(104).concat([function(e,t){function n(e){return null==e}e.exports=n},,,function(e,t,n){function r(e){if(\"number\"==typeof e)return e;if(i(e))return a;if(o(e)){var t=\"function\"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+\"\":t}if(\"string\"!=typeof e)return 0===e?e:+e;e=e.replace(u,\"\");var n=l.test(e);return n||c.test(e)?d(e.slice(2),n?2:8):s.test(e)?a:+e}var o=n(2),i=n(20),a=NaN,u=/^\\s+|\\s+$/g,s=/^[-+]0x[0-9a-f]+$/i,l=/^0b[01]+$/i,c=/^0o[0-7]+$/i,d=parseInt;e.exports=r}]));\n"
  },
  {
    "path": "test/bundles/validExtraBundleWithModulesInsideArrayConcat.modules.json",
    "content": "{\n  \"modules\": {\n    \"104\": \"function(e,t){function n(e){return null==e}e.exports=n}\",\n    \"107\": \"function(e,t,n){function r(e){if(\\\"number\\\"==typeof e)return e;if(i(e))return a;if(o(e)){var t=\\\"function\\\"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+\\\"\\\":t}if(\\\"string\\\"!=typeof e)return 0===e?e:+e;e=e.replace(u,\\\"\\\");var n=l.test(e);return n||c.test(e)?d(e.slice(2),n?2:8):s.test(e)?a:+e}var o=n(2),i=n(20),a=NaN,u=/^\\\\s+|\\\\s+$/g,s=/^[-+]0x[0-9a-f]+$/i,l=/^0b[01]+$/i,c=/^0o[0-7]+$/i,d=parseInt;e.exports=r}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validExtraBundleWithNamedChunk.js",
    "content": "webpackJsonp([\"app\"],{125:function(n,e,t){console.log(\"it works\");}},[125]);\n"
  },
  {
    "path": "test/bundles/validExtraBundleWithNamedChunk.modules.json",
    "content": "{\n  \"modules\": {\n    \"125\": \"function(n,e,t){console.log(\\\"it works\\\");}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validJsonpWithArrayConcatAndEntryPoint.js",
    "content": "webpackJsonp([10],Array(10).concat([function(e,t,n){'abcd'},,,,function(e,t,n){'efgh'}]),[11]);"
  },
  {
    "path": "test/bundles/validJsonpWithArrayConcatAndEntryPoint.modules.json",
    "content": "{\n  \"modules\": {\n    \"10\": \"function(e,t,n){'abcd'}\",\n    \"14\": \"function(e,t,n){'efgh'}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validNodeBundle.js",
    "content": "exports.ids = [\"common\"];\nexports.modules = {\n  0: function(e,t,n){n(1),n(21),n(96),n(306),n(23),n(150),n(57),n(56),n(34),n(138),e.exports=n(348)},\n  3: function(e,t,n){\"use strict\";e.exports=n(680)},\n  5: function(e,t){}\n};\n"
  },
  {
    "path": "test/bundles/validNodeBundle.modules.json",
    "content": "{\n  \"modules\": {\n    \"0\": \"function(e,t,n){n(1),n(21),n(96),n(306),n(23),n(150),n(57),n(56),n(34),n(138),e.exports=n(348)}\",\n    \"3\": \"function(e,t,n){\\\"use strict\\\";e.exports=n(680)}\",\n    \"5\": \"function(e,t){}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validUmdLibraryBundleWithModulesAsArray.js",
    "content": "(function(e,o){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=o():\"function\"==typeof define&&define.amd?define([],o):\"object\"==typeof exports?exports.Lib=o():e.Lib=o()})(this,function(){return function(e){function o(n){if(t[n])return t[n].exports;var r=t[n]={exports:{},id:n,loaded:!1};return e[n].call(r.exports,r,r.exports,o),r.loaded=!0,r.exports}var t={};return o.m=e,o.c=t,o.p=\"\",o(0)}([function(e,o,t){t(1),t(2),t(3)},function(e,o){e.exports=\"module a\"},function(e,o){e.exports=\"module b\"},function(e,o){e.exports=\"module a\"}])});\n"
  },
  {
    "path": "test/bundles/validUmdLibraryBundleWithModulesAsArray.modules.json",
    "content": "{\n  \"modules\": {\n    \"0\": \"function(e,o,t){t(1),t(2),t(3)}\",\n    \"1\": \"function(e,o){e.exports=\\\"module a\\\"}\",\n    \"2\": \"function(e,o){e.exports=\\\"module b\\\"}\",\n    \"3\": \"function(e,o){e.exports=\\\"module a\\\"}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunk.js",
    "content": "(window.webpackJsonp=window.webpackJsonp||[]).push([[27],{\"57iH\":function(e,n,t){console.log(\"hello world\")}}]);\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunk.modules.json",
    "content": "{\n  \"modules\": {\n    \"57iH\": \"function(e,n,t){console.log(\\\"hello world\\\")}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunkAndEntryPoint.js",
    "content": "(window.webpackJsonp=window.webpackJsonp||[]).push([[27],{\"57iH\":function(e,n,t){console.log(\"hello world\")}},[[\"57iH\",19,24,25]]]);\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunkAndEntryPoint.modules.json",
    "content": "{\n  \"modules\": {\n    \"57iH\": \"function(e,n,t){console.log(\\\"hello world\\\")}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunkUsingCustomGlobalObject.js",
    "content": "((\"undefined\" != typeof self ? self : this).webpackJsonp_someCustomName = (\"undefined\" != typeof self ? self : this).webpackJsonp_someCustomName || []).push([[27],{1:function(e,n,t){console.log(\"Chuck Norris\")}}]);\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunkUsingCustomGlobalObject.modules.json",
    "content": "{\n  \"modules\": {\n    \"1\": \"function(e,n,t){console.log(\\\"Chuck Norris\\\")}\"\n  }\n}\n\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunkUsingSelfInsteadOfWindow.js",
    "content": "(self.webpackJsonp=self.webpackJsonp||[]).push([[27],{1:function(e,n,t){console.log(\"Chuck Norris\")}}]);\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunkUsingSelfInsteadOfWindow.modules.json",
    "content": "{\n  \"modules\": {\n    \"1\": \"function(e,n,t){console.log(\\\"Chuck Norris\\\")}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunkUsingThisInsteadOfWindow.js",
    "content": "(this.webpackJsonp=this.webpackJsonp||[]).push([[27],{1:function(e,n,t){console.log(\"Chuck Norris\")}}]);\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunkUsingThisInsteadOfWindow.modules.json",
    "content": "{\n  \"modules\": {\n    \"1\": \"function(e,n,t){console.log(\\\"Chuck Norris\\\")}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunkWithOptimizedModulesArray.js",
    "content": "(window.webpackJsonp=window.webpackJsonp||[]).push([['chunkId1', 'chunkId2'],Array(549).concat([function(e,n,t){console.log(\"hello world\")}])]);\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunkWithOptimizedModulesArray.modules.json",
    "content": "{\n  \"modules\": {\n    \"549\": \"function(e,n,t){console.log(\\\"hello world\\\")}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunkWithWebWorkerChunkTemplatePlugin.js",
    "content": "self.chunkCallbackName([27],{1:function(e,n,t){console.log(\"Chuck Norris\")}});\n"
  },
  {
    "path": "test/bundles/validWebpack4AsyncChunkWithWebWorkerChunkTemplatePlugin.modules.json",
    "content": "{\n  \"modules\": {\n    \"1\": \"function(e,n,t){console.log(\\\"Chuck Norris\\\")}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validWebpack5LegacyBundle.js",
    "content": "!function(){var o={631:function(o){o.exports=\"module a\"},85:function(o){o.exports=\"module a\"},326:function(o){o.exports=\"module b\"}},t={};function r(e){if(t[e])return t[e].exports;var n=t[e]={exports:{}};return o[e](n,n.exports,r),n.exports}r(85),r(326),r(631)}();\n"
  },
  {
    "path": "test/bundles/validWebpack5LegacyBundle.modules.json",
    "content": "{\n  \"modules\": {\n    \"631\": \"function(o){o.exports=\\\"module a\\\"}\",\n    \"85\": \"function(o){o.exports=\\\"module a\\\"}\",\n    \"326\": \"function(o){o.exports=\\\"module b\\\"}\"\n  }\n}\n"
  },
  {
    "path": "test/bundles/validWebpack5ModernBundle.js",
    "content": "(()=>{var r={631:r=>{r.exports=\"module a\"},85:r=>{r.exports=\"module a\"},326:r=>{r.exports=\"module b\"}},e={};function o(t){if(e[t])return e[t].exports;var p=e[t]={exports:{}};return r[t](p,p.exports,o),p.exports}o(85),o(326),o(631)})();\n"
  },
  {
    "path": "test/bundles/validWebpack5ModernBundle.modules.json",
    "content": "{\n  \"modules\": {\n    \"631\": \"r=>{r.exports=\\\"module a\\\"}\",\n    \"85\": \"r=>{r.exports=\\\"module a\\\"}\",\n    \"326\": \"r=>{r.exports=\\\"module b\\\"}\"\n  }\n}\n"
  },
  {
    "path": "test/dev-server/.gitignore",
    "content": "output\n"
  },
  {
    "path": "test/dev-server/src.js",
    "content": "export const chuck = \"norris\";\n"
  },
  {
    "path": "test/dev-server/webpack.config.js",
    "content": "\"use strict\";\n\nconst path = require(\"node:path\");\nconst BundleAnalyzerPlugin = require(\"../../src/BundleAnalyzerPlugin\");\n\nmodule.exports = {\n  mode: \"development\",\n  entry: path.resolve(__dirname, \"./src.js\"),\n  output: {\n    path: path.resolve(__dirname, \"./output\"),\n    filename: \"bundle.js\",\n  },\n  plugins: [\n    new BundleAnalyzerPlugin({\n      analyzerMode: \"static\",\n      reportFilename: \"report.html\",\n      openAnalyzer: false,\n    }),\n  ],\n};\n"
  },
  {
    "path": "test/dev-server.js",
    "content": "const { spawn } = require(\"node:child_process\");\nconst fs = require(\"node:fs\");\nconst path = require(\"node:path\");\n\nconst ROOT = path.resolve(__dirname, \"./dev-server\");\nconst WEBPACK_CONFIG_PATH = `${ROOT}/webpack.config.js`;\n\nconst webpackConfig = require(WEBPACK_CONFIG_PATH);\n\nconst timeout = 15000;\n\nasync function deleteOutputDirectory() {\n  await fs.promises.rm(webpackConfig.output.path, {\n    force: true,\n    recursive: true,\n  });\n}\n\ndescribe(\"Webpack Dev Server\", () => {\n  beforeAll(deleteOutputDirectory);\n\n  afterEach(deleteOutputDirectory);\n\n  it(\"should save report file to the output directory\", (done) => {\n    const startedAt = Date.now();\n\n    const devServer = spawn(\n      path.resolve(__dirname, \"../node_modules/.bin/webpack-dev-server\"),\n      [\"--config\", WEBPACK_CONFIG_PATH],\n      {\n        cwd: ROOT,\n      },\n    );\n\n    function finish(errorMessage) {\n      // eslint-disable-next-line no-use-before-define\n      clearInterval(reportCheckIntervalId);\n      devServer.kill();\n      done(errorMessage ? new Error(errorMessage) : null);\n    }\n\n    const reportCheckIntervalId = setInterval(() => {\n      if (\n        fs.existsSync(path.resolve(webpackConfig.output.path, \"./report.html\"))\n      ) {\n        expect(true).toBe(true);\n        finish();\n      } else if (Date.now() - startedAt > timeout - 1000) {\n        finish(\n          `report file wasn't found in \"${webpackConfig.output.path}\" directory`,\n        );\n      }\n    }, 300);\n  });\n});\n"
  },
  {
    "path": "test/helpers.js",
    "content": "const path = require(\"node:path\");\nconst webpack = require(\"webpack\");\n\nconst BundleAnalyzerPlugin = require(\"../src/BundleAnalyzerPlugin\");\n\n/* global it */\n\n/**\n * @param {number} ms ms\n * @returns {Promise<void>} wait\n */\nfunction wait(ms) {\n  return new Promise((resolve) => {\n    setTimeout(resolve, ms);\n  });\n}\n\nconst webpackVersions = {\n  4: path.resolve(__dirname, \"../node_modules/webpack-4\"),\n  5: path.resolve(__dirname, \"../node_modules/webpack\"),\n};\n\n/**\n * @param {import(\"webpack\").Configuration} config configuration\n * @param {string} version version\n * @returns {Promise<void>}\n */\nasync function webpackCompile(config, version) {\n  if (version === undefined || version === null) {\n    throw new Error(\"Webpack version is not specified\");\n  }\n\n  if (!webpackVersions[version]) {\n    throw new Error(\n      `Webpack version \"${version}\" is not available for testing`,\n    );\n  }\n\n  let webpack;\n\n  try {\n    webpack = require(webpackVersions[version]);\n  } catch (err) {\n    throw new Error(\n      `Error requiring Webpack ${version}:\\n${err}\\n\\n` +\n        'Try running \"npm run install-test-webpack-versions\".',\n      { cause: err },\n    );\n  }\n\n  await new Promise((resolve, reject) => {\n    webpack(config, (err, stats) => {\n      if (err) {\n        return reject(err);\n      }\n\n      if (stats.hasErrors()) {\n        return reject(stats.toJson({ source: false }).errors);\n      }\n\n      resolve();\n    });\n  });\n  // Waiting for the next tick (for analyzer report to be generated)\n  await wait(1);\n}\n\n/**\n * @param {{ minify: boolean, multipleChunks: boolean, analyzerOpts: import(\"../src/BundleAnalyzerPlugin\").Options }} opts options\n * @returns {import(\"webpack\").Configuration} configuration\n */\nfunction makeWebpackConfig(opts = {}) {\n  opts = {\n    ...opts,\n    minify: false,\n    multipleChunks: false,\n    analyzerOpts: {\n      analyzerMode: \"static\",\n      openAnalyzer: false,\n      logLevel: \"error\",\n      ...opts.analyzerOpts,\n    },\n  };\n\n  return {\n    context: __dirname,\n    mode: \"development\",\n    entry: {\n      bundle: \"./src\",\n    },\n    output: {\n      path: path.resolve(__dirname, \"./output\"),\n      filename: \"[name].js\",\n    },\n    optimization: {\n      runtimeChunk: {\n        name: \"manifest\",\n      },\n    },\n    plugins: ((plugins) => {\n      plugins.push(new BundleAnalyzerPlugin(opts.analyzerOpts));\n\n      if (opts.minify) {\n        plugins.push(\n          new webpack.optimize.UglifyJsPlugin({\n            comments: false,\n            mangle: true,\n            compress: {\n              warnings: false,\n              // eslint-disable-next-line camelcase\n              negate_iife: false,\n            },\n          }),\n        );\n      }\n\n      return plugins;\n    })([]),\n  };\n}\n\n/**\n * @param {(\"4\", \"5\")[] | (() => \"4\" | \"5\")} versions versions\n * @param {() => void} cb callback\n */\nfunction forEachWebpackVersion(versions, cb) {\n  const availableVersions = Object.keys(webpackVersions);\n\n  if (typeof versions === \"function\") {\n    cb = versions;\n    versions = availableVersions;\n  } else {\n    const notFoundVersions = versions.filter(\n      (version) => !availableVersions.includes(version),\n    );\n\n    if (notFoundVersions.length) {\n      throw new Error(\n        `These Webpack versions are not currently available for testing: ${notFoundVersions.join(\", \")}\\n` +\n          'You need to install them manually into \"test/webpack-versions\" directory.',\n      );\n    }\n  }\n\n  for (const version of versions) {\n    // eslint-disable-next-line func-style\n    const itFn = function itFn(testDescription, ...args) {\n      return it.call(this, `${testDescription} (Webpack ${version})`, ...args);\n    };\n\n    itFn.only = function only(testDescription, ...args) {\n      return it.only.call(\n        this,\n        `${testDescription} (Webpack ${version})`,\n        ...args,\n      );\n    };\n\n    cb({\n      it: itFn,\n      version,\n      webpackCompile: (config) => webpackCompile(config, version),\n    });\n  }\n}\n\nmodule.exports = { forEachWebpackVersion, makeWebpackConfig, webpackCompile };\n"
  },
  {
    "path": "test/parseUtils.js",
    "content": "const fs = require(\"node:fs\");\nconst path = require(\"node:path\");\n\nconst { parseBundle } = require(\"../src/parseUtils\");\n\nconst BUNDLES_DIR = path.resolve(__dirname, \"./bundles\");\n\ndescribe(\"parseBundle\", () => {\n  const bundles = fs\n    .readdirSync(BUNDLES_DIR)\n    .filter((filename) => filename.endsWith(\".js\"))\n    .map((filename) => filename.replace(/\\.js$/u, \"\"));\n\n  for (const bundleName of bundles.filter((bundleName) =>\n    bundleName.startsWith(\"valid\"),\n  )) {\n    it(`should parse ${bundleName.toLocaleLowerCase()}`, () => {\n      const bundleFile = `${BUNDLES_DIR}/${bundleName}.js`;\n      const bundle = parseBundle(bundleFile);\n      const expectedModules = JSON.parse(\n        fs.readFileSync(`${BUNDLES_DIR}/${bundleName}.modules.json`),\n      );\n\n      expect(bundle.src).toBe(fs.readFileSync(bundleFile, \"utf8\"));\n      expect(bundle.modules).toEqual(expectedModules.modules);\n    });\n  }\n\n  it(\"should parse invalid bundle and return it's content and empty modules hash\", () => {\n    const bundleFile = `${BUNDLES_DIR}/invalidBundle.js`;\n    const bundle = parseBundle(bundleFile);\n    expect(bundle.src).toBe(fs.readFileSync(bundleFile, \"utf8\"));\n    expect(bundle.modules).toEqual({});\n  });\n});\n"
  },
  {
    "path": "test/plugin.js",
    "content": "const fs = require(\"node:fs\");\nconst path = require(\"node:path\");\nconst url = require(\"node:url\");\nconst puppeteer = require(\"puppeteer\");\nconst BundleAnalyzerPlugin = require(\"../src/BundleAnalyzerPlugin\");\nconst { isZstdSupported } = require(\"../src/sizeUtils\");\nconst {\n  forEachWebpackVersion,\n  makeWebpackConfig,\n  webpackCompile,\n} = require(\"./helpers\");\n\nfunction getChartDataFromJSONReport(reportFilename = \"report.json\") {\n  return require(path.resolve(__dirname, `output/${reportFilename}`));\n}\n\ndescribe(\"Plugin options\", () => {\n  describe(\"options\", () => {\n    it(\"should be optional\", () => {\n      expect(() => new BundleAnalyzerPlugin()).not.toThrow();\n    });\n  });\n});\n\ndescribe(\"Plugin\", () => {\n  let browser;\n\n  async function getTitleFromReport(reportFilename = \"report.html\") {\n    const page = await browser.newPage();\n    await page.goto(\n      url.pathToFileURL(path.resolve(__dirname, `./output/${reportFilename}`)),\n    );\n    return await page.title();\n  }\n\n  async function getChartDataFromReport(reportFilename = \"report.html\") {\n    const page = await browser.newPage();\n    await page.goto(\n      url.pathToFileURL(path.resolve(__dirname, `./output/${reportFilename}`)),\n    );\n    return await page.evaluate(() => globalThis.chartData);\n  }\n\n  async function expectValidReport(opts) {\n    const {\n      bundleFilename = \"bundle.js\",\n      reportFilename = \"report.html\",\n      bundleLabel = \"bundle.js\",\n      statSize = 141,\n      parsedSize = 2821,\n      gzipSize,\n    } = { gzipSize: 770, ...opts };\n\n    expect(\n      fs.existsSync(path.resolve(__dirname, `./output/${bundleFilename}`)),\n    ).toBe(true);\n    expect(\n      fs.existsSync(path.resolve(__dirname, `./output/${reportFilename}`)),\n    ).toBe(true);\n    const chartData = await getChartDataFromReport(reportFilename);\n\n    const expected = {\n      label: bundleLabel,\n      statSize,\n      parsedSize,\n    };\n\n    if (typeof gzipSize !== \"undefined\") {\n      expected.gzipSize = gzipSize;\n    }\n\n    if (typeof opts.brotliSize !== \"undefined\") {\n      expected.brotliSize = opts.brotliSize;\n    }\n\n    if (typeof opts.zstdSize !== \"undefined\") {\n      expected.zstdSize = opts.zstdSize;\n    }\n\n    expect(chartData[0]).toMatchObject(expected);\n  }\n\n  beforeEach(async () => {\n    browser = await puppeteer.launch();\n    await fs.promises.rm(path.resolve(__dirname, \"./output\"), {\n      force: true,\n      recursive: true,\n    });\n  });\n\n  afterEach(async () => {\n    await browser.close();\n    await fs.promises.rm(path.resolve(__dirname, \"./output\"), {\n      force: true,\n      recursive: true,\n    });\n  });\n\n  forEachWebpackVersion([\"4\"], ({ it, webpackCompile }) => {\n    // Webpack 5 doesn't support `jsonpFunction` option\n    it(\"should support webpack config with custom `jsonpFunction` name\", async () => {\n      const config = makeWebpackConfig({\n        multipleChunks: true,\n      });\n\n      config.output.jsonpFunction = \"somethingCompletelyDifferent\";\n\n      await webpackCompile(config);\n\n      await expectValidReport({\n        parsedSize: 1349,\n        gzipSize: 358,\n      });\n    });\n  });\n\n  /* eslint jest/no-standalone-expect: [\"error\", { additionalTestBlockFunctions: [\"forEachWebpackVersion\"] }] */\n  forEachWebpackVersion(({ it, webpackCompile }) => {\n    it(\"should allow to generate json report\", async () => {\n      const config = makeWebpackConfig({\n        analyzerOpts: {\n          analyzerMode: \"json\",\n        },\n      });\n\n      await webpackCompile(config);\n\n      const chartData = await getChartDataFromJSONReport();\n      expect(chartData).toBeDefined();\n    });\n\n    it(\"should support webpack config with `multi` module\", async () => {\n      const config = makeWebpackConfig();\n\n      config.entry.bundle = [\"./src/a.js\", \"./src/b.js\"];\n\n      await webpackCompile(config);\n\n      const chartData = await getChartDataFromReport();\n      const bundleGroup = chartData.find(\n        (group) => group.label === \"bundle.js\",\n      );\n\n      expect(bundleGroup.groups).toEqual(\n        expect.arrayContaining([\n          expect.objectContaining({\n            label: \"src\",\n            path: \"./src\",\n            groups: expect.arrayContaining([\n              expect.objectContaining({\n                label: \"a.js\",\n                path: \"./src/a.js\",\n              }),\n              expect.objectContaining({\n                label: \"b.js\",\n                path: \"./src/b.js\",\n              }),\n            ]),\n          }),\n        ]),\n      );\n    });\n  });\n\n  describe(\"options\", () => {\n    describe(\"excludeAssets\", () => {\n      forEachWebpackVersion(({ it, webpackCompile }) => {\n        it(\"should filter out assets from the report\", async () => {\n          const config = makeWebpackConfig({\n            multipleChunks: true,\n            analyzerOpts: {\n              excludeAssets: \"manifest\",\n            },\n          });\n\n          await webpackCompile(config);\n\n          const chartData = await getChartDataFromReport();\n          expect(chartData.map((i) => i.label)).toEqual([\"bundle.js\"]);\n        });\n      });\n    });\n\n    describe(\"reportTitle\", () => {\n      it(\"should have a sensible default\", async () => {\n        const config = makeWebpackConfig();\n        await webpackCompile(config, \"4\");\n        const generatedReportTitle = await getTitleFromReport();\n        expect(generatedReportTitle).toMatch(\n          /^webpack-bundle-analyzer \\[.* at \\d{2}:\\d{2}\\]/u,\n        );\n      });\n\n      it(\"should support a string value\", async () => {\n        const reportTitle = \"A string report title\";\n        const config = makeWebpackConfig({\n          analyzerOpts: {\n            reportTitle,\n          },\n        });\n        await webpackCompile(config, \"4\");\n        const generatedReportTitle = await getTitleFromReport();\n        expect(generatedReportTitle).toBe(reportTitle);\n      });\n\n      it(\"should support a function value\", async () => {\n        const reportTitleResult = \"A string report title\";\n        const config = makeWebpackConfig({\n          analyzerOpts: {\n            reportTitle: () => reportTitleResult,\n          },\n        });\n        await webpackCompile(config, \"4\");\n        const generatedReportTitle = await getTitleFromReport();\n        expect(generatedReportTitle).toBe(reportTitleResult);\n      });\n\n      it(\"should propagate an error in a function\", async () => {\n        const reportTitleError = new Error(\"test\");\n        const config = makeWebpackConfig({\n          analyzerOpts: {\n            reportTitle: () => {\n              throw reportTitleError;\n            },\n          },\n        });\n\n        let error = null;\n        try {\n          await webpackCompile(config, \"4\");\n        } catch (err) {\n          error = err;\n        }\n\n        expect(error).toBe(reportTitleError);\n      });\n    });\n\n    describe(\"compressionAlgorithm\", () => {\n      it(\"should default to gzip\", async () => {\n        const config = makeWebpackConfig({ analyzerOpts: {} });\n        await webpackCompile(config, \"4\");\n        await expectValidReport({ parsedSize: 1317, gzipSize: 341 });\n      });\n\n      it(\"should support gzip\", async () => {\n        const config = makeWebpackConfig({\n          analyzerOpts: { compressionAlgorithm: \"gzip\" },\n        });\n        await webpackCompile(config, \"4\");\n        await expectValidReport({ parsedSize: 1317, gzipSize: 341 });\n      });\n\n      it(\"should support brotli\", async () => {\n        const config = makeWebpackConfig({\n          analyzerOpts: { compressionAlgorithm: \"brotli\" },\n        });\n        await webpackCompile(config, \"4\");\n        await expectValidReport({\n          gzipSize: undefined,\n          parsedSize: 1317,\n          brotliSize: 295,\n        });\n      });\n\n      if (isZstdSupported) {\n        it(\"should support zstd\", async () => {\n          const config = makeWebpackConfig({\n            analyzerOpts: { compressionAlgorithm: \"zstd\" },\n          });\n          await webpackCompile(config, \"4\");\n          await expectValidReport({\n            parsedSize: 1317,\n            gzipSize: undefined,\n            brotliSize: undefined,\n            zstdSize: 345,\n          });\n        });\n      }\n    });\n  });\n});\n"
  },
  {
    "path": "test/src/a-clone.js",
    "content": "module.exports = \"module a\";\n"
  },
  {
    "path": "test/src/a.js",
    "content": "module.exports = \"module a\";\n"
  },
  {
    "path": "test/src/b.js",
    "content": "module.exports = \"module b\";\n"
  },
  {
    "path": "test/src/index.js",
    "content": "require(\"./a\");\nrequire(\"./b\");\nrequire(\"./a-clone\");\n"
  },
  {
    "path": "test/stats/extremely-optimized-webpack-5-bundle/bundle.js",
    "content": "(()=>{\"use strict\";console.log(\"module a\",\"module b\")})();"
  },
  {
    "path": "test/stats/extremely-optimized-webpack-5-bundle/expected-chart-data.js",
    "content": "module.exports = [\n  {\n    'label': 'bundle.js',\n    'isAsset': true,\n    'statSize': 142,\n    'parsedSize': 58,\n    'gzipSize': 71,\n    'groups': [\n      {\n        'label': 'src',\n        'path': './src',\n        'statSize': 142,\n        'groups': [\n          {\n            'id': 602,\n            'label': 'index.js + 2 modules (concatenated)',\n            'path': './src/index.js + 2 modules (concatenated)',\n            'statSize': 142,\n            'parsedSize': 58,\n            'gzipSize': 71,\n            'concatenated': true,\n            'groups': [\n              {\n                'label': 'src',\n                'path': './src/index.js + 2 modules (concatenated)/src',\n                'statSize': 142,\n                'groups': [\n                  {\n                    'id': null,\n                    'label': 'index.js',\n                    'path': './src/index.js + 2 modules (concatenated)/src/index.js',\n                    'statSize': 62,\n                    'parsedSize': 25,\n                    'gzipSize': 30,\n                    'inaccurateSizes': true\n                  },\n                  {\n                    'id': null,\n                    'label': 'a.js',\n                    'path': './src/index.js + 2 modules (concatenated)/src/a.js',\n                    'statSize': 40,\n                    'parsedSize': 16,\n                    'gzipSize': 20,\n                    'inaccurateSizes': true\n                  },\n                  {\n                    'id': null,\n                    'label': 'b.js',\n                    'path': './src/index.js + 2 modules (concatenated)/src/b.js',\n                    'statSize': 40,\n                    'parsedSize': 16,\n                    'gzipSize': 20,\n                    'inaccurateSizes': true\n                  }\n                ],\n                'parsedSize': 58,\n                'gzipSize': 71,\n                'inaccurateSizes': true\n              }\n            ]\n          }\n        ],\n        'parsedSize': 58,\n        'gzipSize': 71\n      }\n    ]\n  }\n];\n"
  },
  {
    "path": "test/stats/extremely-optimized-webpack-5-bundle/stats.json",
    "content": "{\n  \"hash\": \"3d86243b5bbeac1fe1cc\",\n  \"version\": \"5.3.2\",\n  \"time\": 151,\n  \"builtAt\": 1604593377239,\n  \"publicPath\": \"auto\",\n  \"outputPath\": \"/Volumes/Work/webpack-bundle-analyzer/test/dist\",\n  \"assetsByChunkName\": {\n    \"main\": [\n      \"bundle.js\"\n    ]\n  },\n  \"assets\": [\n    {\n      \"type\": \"asset\",\n      \"name\": \"bundle.js\",\n      \"size\": 58,\n      \"chunkNames\": [\n        \"main\"\n      ],\n      \"chunkIdHints\": [\n      ],\n      \"auxiliaryChunkNames\": [\n      ],\n      \"auxiliaryChunkIdHints\": [\n      ],\n      \"emitted\": true,\n      \"comparedForEmit\": false,\n      \"cached\": false,\n      \"info\": {\n        \"javascriptModule\": false,\n        \"minimized\": true,\n        \"size\": 58\n      },\n      \"related\": {\n      },\n      \"chunks\": [\n        179\n      ],\n      \"auxiliaryChunks\": [\n      ],\n      \"isOverSizeLimit\": false\n    }\n  ],\n  \"chunks\": [\n    {\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"recorded\": false,\n      \"size\": 142,\n      \"sizes\": {\n        \"javascript\": 142\n      },\n      \"names\": [\n        \"main\"\n      ],\n      \"idHints\": [\n      ],\n      \"runtime\": [\n        \"main\"\n      ],\n      \"files\": [\n        \"bundle.js\"\n      ],\n      \"auxiliaryFiles\": [\n      ],\n      \"hash\": \"fcb2ee0c4674c34c0042\",\n      \"childrenByOrder\": {\n      },\n      \"id\": 179,\n      \"siblings\": [\n      ],\n      \"parents\": [\n      ],\n      \"children\": [\n      ],\n      \"modules\": [\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/esm\",\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js|24bc130325be4ac663fff0f1126040b7\",\n          \"name\": \"./src/index.js + 2 modules\",\n          \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"index\": 0,\n          \"preOrderIndex\": 0,\n          \"index2\": 2,\n          \"postOrderIndex\": 2,\n          \"size\": 142,\n          \"sizes\": {\n            \"javascript\": 142\n          },\n          \"cacheable\": true,\n          \"built\": true,\n          \"codeGenerated\": true,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"dependent\": false,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": 602,\n          \"chunks\": [\n            179\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"resolvedModuleIdentifier\": null,\n              \"resolvedModule\": null,\n              \"type\": \"entry\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./src/index.js\",\n              \"loc\": \"main\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            }\n          ],\n          \"usedExports\": [\n          ],\n          \"providedExports\": [\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": 0,\n          \"modules\": [\n            {\n              \"type\": \"module\",\n              \"moduleType\": \"javascript/auto\",\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"name\": \"./src/index.js\",\n              \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"index\": 0,\n              \"preOrderIndex\": 0,\n              \"index2\": 2,\n              \"postOrderIndex\": 2,\n              \"size\": 62,\n              \"sizes\": {\n                \"javascript\": 62\n              },\n              \"cacheable\": true,\n              \"built\": true,\n              \"codeGenerated\": false,\n              \"cached\": false,\n              \"optional\": false,\n              \"orphan\": false,\n              \"dependent\": true,\n              \"issuer\": null,\n              \"issuerName\": null,\n              \"issuerPath\": null,\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"id\": null,\n              \"issuerId\": null,\n              \"chunks\": [\n              ],\n              \"assets\": [\n              ],\n              \"reasons\": [\n              ],\n              \"usedExports\": [\n              ],\n              \"providedExports\": [\n              ],\n              \"optimizationBailout\": [\n              ],\n              \"depth\": 0\n            },\n            {\n              \"type\": \"module\",\n              \"moduleType\": \"javascript/auto\",\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n              \"name\": \"./src/a.js\",\n              \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n              \"index\": 1,\n              \"preOrderIndex\": 1,\n              \"index2\": 0,\n              \"postOrderIndex\": 0,\n              \"size\": 40,\n              \"sizes\": {\n                \"javascript\": 40\n              },\n              \"cacheable\": true,\n              \"built\": true,\n              \"codeGenerated\": false,\n              \"cached\": false,\n              \"optional\": false,\n              \"orphan\": false,\n              \"dependent\": true,\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"issuerName\": \"./src/index.js\",\n              \"issuerPath\": [\n                {\n                  \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"name\": \"./src/index.js\",\n                  \"id\": null\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"id\": null,\n              \"issuerId\": null,\n              \"chunks\": [\n              ],\n              \"assets\": [\n              ],\n              \"reasons\": [\n                {\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"resolvedModule\": \"./src/index.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"active\": false,\n                  \"explanation\": \"\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"1:0-20\",\n                  \"moduleId\": null,\n                  \"resolvedModuleId\": null\n                },\n                {\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"resolvedModule\": \"./src/index.js\",\n                  \"type\": \"harmony import specifier\",\n                  \"active\": true,\n                  \"explanation\": \"\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"4:12-13\",\n                  \"moduleId\": null,\n                  \"resolvedModuleId\": null\n                }\n              ],\n              \"usedExports\": [\n                \"default\"\n              ],\n              \"providedExports\": [\n                \"default\"\n              ],\n              \"optimizationBailout\": [\n              ],\n              \"depth\": 1\n            },\n            {\n              \"type\": \"module\",\n              \"moduleType\": \"javascript/auto\",\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n              \"name\": \"./src/b.js\",\n              \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n              \"index\": 2,\n              \"preOrderIndex\": 2,\n              \"index2\": 1,\n              \"postOrderIndex\": 1,\n              \"size\": 40,\n              \"sizes\": {\n                \"javascript\": 40\n              },\n              \"cacheable\": true,\n              \"built\": true,\n              \"codeGenerated\": false,\n              \"cached\": false,\n              \"optional\": false,\n              \"orphan\": false,\n              \"dependent\": true,\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"issuerName\": \"./src/index.js\",\n              \"issuerPath\": [\n                {\n                  \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"name\": \"./src/index.js\",\n                  \"id\": null\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"id\": null,\n              \"issuerId\": null,\n              \"chunks\": [\n              ],\n              \"assets\": [\n              ],\n              \"reasons\": [\n                {\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"resolvedModule\": \"./src/index.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"active\": false,\n                  \"explanation\": \"\",\n                  \"userRequest\": \"./b\",\n                  \"loc\": \"2:0-20\",\n                  \"moduleId\": null,\n                  \"resolvedModuleId\": null\n                },\n                {\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"resolvedModule\": \"./src/index.js\",\n                  \"type\": \"harmony import specifier\",\n                  \"active\": true,\n                  \"explanation\": \"\",\n                  \"userRequest\": \"./b\",\n                  \"loc\": \"4:15-16\",\n                  \"moduleId\": null,\n                  \"resolvedModuleId\": null\n                }\n              ],\n              \"usedExports\": [\n                \"default\"\n              ],\n              \"providedExports\": [\n                \"default\"\n              ],\n              \"optimizationBailout\": [\n              ],\n              \"depth\": 1\n            }\n          ]\n        }\n      ],\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"main\",\n          \"request\": \"./src/index.js\"\n        }\n      ]\n    }\n  ],\n  \"modules\": [\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/esm\",\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js|24bc130325be4ac663fff0f1126040b7\",\n      \"name\": \"./src/index.js + 2 modules\",\n      \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n      \"index\": 0,\n      \"preOrderIndex\": 0,\n      \"index2\": 2,\n      \"postOrderIndex\": 2,\n      \"size\": 142,\n      \"sizes\": {\n        \"javascript\": 142\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": 602,\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n      ],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"resolvedModuleIdentifier\": null,\n          \"resolvedModule\": null,\n          \"type\": \"entry\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./src/index.js\",\n          \"loc\": \"main\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        }\n      ],\n      \"usedExports\": [\n      ],\n      \"providedExports\": [\n      ],\n      \"optimizationBailout\": [\n      ],\n      \"depth\": 0,\n      \"modules\": [\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./src/index.js\",\n          \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"index\": 0,\n          \"preOrderIndex\": 0,\n          \"index2\": 2,\n          \"postOrderIndex\": 2,\n          \"size\": 62,\n          \"sizes\": {\n            \"javascript\": 62\n          },\n          \"cacheable\": true,\n          \"built\": true,\n          \"codeGenerated\": false,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"issuer\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": null,\n          \"issuerId\": null,\n          \"chunks\": [\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n          ],\n          \"usedExports\": [\n          ],\n          \"providedExports\": [\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": 0\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n          \"name\": \"./src/a.js\",\n          \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n          \"index\": 1,\n          \"preOrderIndex\": 1,\n          \"index2\": 0,\n          \"postOrderIndex\": 0,\n          \"size\": 40,\n          \"sizes\": {\n            \"javascript\": 40\n          },\n          \"cacheable\": true,\n          \"built\": true,\n          \"codeGenerated\": false,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"issuerName\": \"./src/index.js\",\n          \"issuerPath\": [\n            {\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"name\": \"./src/index.js\",\n              \"id\": null\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": null,\n          \"issuerId\": null,\n          \"chunks\": [\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"resolvedModule\": \"./src/index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"active\": false,\n              \"explanation\": \"\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"1:0-20\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            },\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"resolvedModule\": \"./src/index.js\",\n              \"type\": \"harmony import specifier\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"4:12-13\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            }\n          ],\n          \"usedExports\": [\n            \"default\"\n          ],\n          \"providedExports\": [\n            \"default\"\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": 1\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n          \"name\": \"./src/b.js\",\n          \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n          \"index\": 2,\n          \"preOrderIndex\": 2,\n          \"index2\": 1,\n          \"postOrderIndex\": 1,\n          \"size\": 40,\n          \"sizes\": {\n            \"javascript\": 40\n          },\n          \"cacheable\": true,\n          \"built\": true,\n          \"codeGenerated\": false,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"issuerName\": \"./src/index.js\",\n          \"issuerPath\": [\n            {\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"name\": \"./src/index.js\",\n              \"id\": null\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": null,\n          \"issuerId\": null,\n          \"chunks\": [\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"resolvedModule\": \"./src/index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"active\": false,\n              \"explanation\": \"\",\n              \"userRequest\": \"./b\",\n              \"loc\": \"2:0-20\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            },\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"resolvedModule\": \"./src/index.js\",\n              \"type\": \"harmony import specifier\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./b\",\n              \"loc\": \"4:15-16\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            }\n          ],\n          \"usedExports\": [\n            \"default\"\n          ],\n          \"providedExports\": [\n            \"default\"\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": 1\n        }\n      ]\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n      \"name\": \"./src/a.js\",\n      \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n      \"index\": 1,\n      \"preOrderIndex\": 1,\n      \"index2\": 0,\n      \"postOrderIndex\": 0,\n      \"size\": 40,\n      \"sizes\": {\n        \"javascript\": 40\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": false,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": true,\n      \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n      \"issuerName\": \"./src/index.js\",\n      \"issuerPath\": [\n        {\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./src/index.js\",\n          \"id\": null\n        }\n      ],\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": null,\n      \"issuerId\": null,\n      \"chunks\": [\n      ],\n      \"assets\": [\n      ],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./src/index.js\",\n          \"moduleName\": \"./src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./src/index.js\",\n          \"type\": \"harmony side effect evaluation\",\n          \"active\": false,\n          \"explanation\": \"\",\n          \"userRequest\": \"./a\",\n          \"loc\": \"1:0-20\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        },\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./src/index.js\",\n          \"moduleName\": \"./src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./src/index.js\",\n          \"type\": \"harmony import specifier\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./a\",\n          \"loc\": \"4:12-13\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        }\n      ],\n      \"usedExports\": [\n        \"default\"\n      ],\n      \"providedExports\": [\n        \"default\"\n      ],\n      \"optimizationBailout\": [\n      ],\n      \"depth\": 1\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n      \"name\": \"./src/b.js\",\n      \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n      \"index\": 2,\n      \"preOrderIndex\": 2,\n      \"index2\": 1,\n      \"postOrderIndex\": 1,\n      \"size\": 40,\n      \"sizes\": {\n        \"javascript\": 40\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": false,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": true,\n      \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n      \"issuerName\": \"./src/index.js\",\n      \"issuerPath\": [\n        {\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./src/index.js\",\n          \"id\": null\n        }\n      ],\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": null,\n      \"issuerId\": null,\n      \"chunks\": [\n      ],\n      \"assets\": [\n      ],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./src/index.js\",\n          \"moduleName\": \"./src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./src/index.js\",\n          \"type\": \"harmony side effect evaluation\",\n          \"active\": false,\n          \"explanation\": \"\",\n          \"userRequest\": \"./b\",\n          \"loc\": \"2:0-20\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        },\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./src/index.js\",\n          \"moduleName\": \"./src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./src/index.js\",\n          \"type\": \"harmony import specifier\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./b\",\n          \"loc\": \"4:15-16\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        }\n      ],\n      \"usedExports\": [\n        \"default\"\n      ],\n      \"providedExports\": [\n        \"default\"\n      ],\n      \"optimizationBailout\": [\n      ],\n      \"depth\": 1\n    }\n  ],\n  \"entrypoints\": {\n    \"main\": {\n      \"name\": \"main\",\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n        {\n          \"name\": \"bundle.js\",\n          \"size\": 58\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"assetsSize\": 58,\n      \"auxiliaryAssets\": [\n      ],\n      \"filteredAuxiliaryAssets\": 0,\n      \"auxiliaryAssetsSize\": 0,\n      \"children\": {\n      },\n      \"childAssets\": {\n      },\n      \"isOverSizeLimit\": false\n    }\n  },\n  \"namedChunkGroups\": {\n    \"main\": {\n      \"name\": \"main\",\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n        {\n          \"name\": \"bundle.js\",\n          \"size\": 58\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"assetsSize\": 58,\n      \"auxiliaryAssets\": [\n      ],\n      \"filteredAuxiliaryAssets\": 0,\n      \"auxiliaryAssetsSize\": 0,\n      \"children\": {\n      },\n      \"childAssets\": {\n      },\n      \"isOverSizeLimit\": false\n    }\n  },\n  \"errors\": [\n  ],\n  \"errorsCount\": 0,\n  \"warnings\": [\n  ],\n  \"warningsCount\": 0,\n  \"children\": [\n  ]\n}"
  },
  {
    "path": "test/stats/minimal-stats/stats.json",
    "content": "{\"logging\":{\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./simple-entry.js\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/viewer.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/store.js\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/ModulesTreemap.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/utils.js\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/localStorage.js\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/Tooltip.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/Treemap.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/Sidebar.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/CheckboxList.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/Checkbox.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/Dropdown.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/Switcher.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/ModulesList.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/Search.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/ContextMenu.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"webpack.DefinePlugin\":{\"entries\":[],\"filteredEntries\":137,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/SwitcherItem.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/Button.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/ModuleItem.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/Icon.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/CheckboxListItem.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/components/ContextMenuItem.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"./node_modules/babel-loader/lib/index.js babel-loader ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[0]!./client/lib/PureComponent.jsx\":{\"entries\":[],\"filteredEntries\":3,\"debug\":false},\"webpack.Compiler\":{\"entries\":[],\"filteredEntries\":7,\"debug\":false},\"webpack.Compilation\":{\"entries\":[],\"filteredEntries\":27,\"debug\":false},\"webpack.FlagDependencyExportsPlugin\":{\"entries\":[],\"filteredEntries\":4,\"debug\":false},\"webpack.InnerGraphPlugin\":{\"entries\":[],\"filteredEntries\":1,\"debug\":false},\"webpack.SideEffectsFlagPlugin\":{\"entries\":[],\"filteredEntries\":1,\"debug\":false},\"webpack.FlagDependencyUsagePlugin\":{\"entries\":[],\"filteredEntries\":2,\"debug\":false},\"webpack.buildChunkGraph\":{\"entries\":[],\"filteredEntries\":9,\"debug\":false},\"webpack.SplitChunksPlugin\":{\"entries\":[],\"filteredEntries\":4,\"debug\":false},\"webpack.ModuleConcatenationPlugin\":{\"entries\":[],\"filteredEntries\":8,\"debug\":false},\"webpack.FileSystemInfo\":{\"entries\":[],\"filteredEntries\":11,\"debug\":false},\"webpack.Watching\":{\"entries\":[],\"filteredEntries\":1,\"debug\":false}},\"version\":\"5.102.1\",\"time\":4182,\"assetsByChunkName\":{\"main\":[\"viewer.js\"]},\"filteredAssets\":1,\"filteredModules\":172,\"filteredErrorDetailsCount\":0,\"errors\":[],\"errorsCount\":0,\"filteredWarningDetailsCount\":0,\"warnings\":[],\"warningsCount\":0}\n"
  },
  {
    "path": "test/stats/webpack-5-bundle-with-concatenated-entry-module/app.js",
    "content": "(()=>{\"use strict\";console.log(\"foo.js\"),console.log(\"bar.js\")})(),console.log(\"baz.js\");\n"
  },
  {
    "path": "test/stats/webpack-5-bundle-with-concatenated-entry-module/expected-chart-data.json",
    "content": "[{\"groups\": [{\"concatenated\": true, \"groups\": [{\"gzipSize\": 8, \"id\": 613, \"inaccurateSizes\": true, \"label\": \"baz.js\", \"parsedSize\": 10, \"path\": \"./entry modules (concatenated)/baz.js\", \"statSize\": 23}, {\"concatenated\": true, \"groups\": [{\"gzipSize\": 5, \"id\": null, \"inaccurateSizes\": true, \"label\": \"index.js\", \"parsedSize\": 6, \"path\": \"./entry modules (concatenated)/index.js + 3 modules (concatenated)/index.js\", \"statSize\": 14}, {\"groups\": [{\"gzipSize\": 12, \"id\": null, \"inaccurateSizes\": true, \"label\": \"index.js\", \"parsedSize\": 14, \"path\": \"./entry modules (concatenated)/index.js + 3 modules (concatenated)/dep/index.js\", \"statSize\": 32}, {\"gzipSize\": 25, \"id\": null, \"inaccurateSizes\": true, \"label\": \"foo.js\", \"parsedSize\": 29, \"path\": \"./entry modules (concatenated)/index.js + 3 modules (concatenated)/dep/foo.js\", \"statSize\": 66}, {\"gzipSize\": 25, \"id\": null, \"inaccurateSizes\": true, \"label\": \"bar.js\", \"parsedSize\": 29, \"path\": \"./entry modules (concatenated)/index.js + 3 modules (concatenated)/dep/bar.js\", \"statSize\": 66}], \"gzipSize\": 62, \"inaccurateSizes\": true, \"label\": \"dep\", \"parsedSize\": 72, \"path\": \"./entry modules (concatenated)/index.js + 3 modules (concatenated)/dep\", \"statSize\": 164}], \"gzipSize\": 68, \"id\": 469, \"label\": \"index.js + 3 modules (concatenated)\", \"parsedSize\": 79, \"path\": \"./entry modules (concatenated)/index.js + 3 modules (concatenated)\", \"statSize\": 178}], \"gzipSize\": 77, \"label\": \"entry modules (concatenated)\", \"parsedSize\": 90, \"path\": \"./entry modules (concatenated)\", \"statSize\": 201}], \"gzipSize\": 77, \"isAsset\": true, \"isInitialByEntrypoint\": {\"app\": true}, \"label\": \"app.js\", \"parsedSize\": 90, \"statSize\": 201}]\n"
  },
  {
    "path": "test/stats/webpack-5-bundle-with-concatenated-entry-module/stats.json",
    "content": "{\n  \"hash\": \"9b3a9bf7f15684e8eb22\",\n  \"version\": \"5.72.1\",\n  \"time\": 116,\n  \"builtAt\": 1685518072786,\n  \"publicPath\": \"auto\",\n  \"outputPath\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/build\",\n  \"assetsByChunkName\": {\n    \"app\": [\n      \"app.js\"\n    ]\n  },\n  \"assets\": [\n    {\n      \"type\": \"asset\",\n      \"name\": \"app.js\",\n      \"size\": 89,\n      \"emitted\": true,\n      \"comparedForEmit\": false,\n      \"cached\": false,\n      \"info\": {\n        \"javascriptModule\": false,\n        \"minimized\": true,\n        \"size\": 89\n      },\n      \"chunkNames\": [\n        \"app\"\n      ],\n      \"chunkIdHints\": [],\n      \"auxiliaryChunkNames\": [],\n      \"auxiliaryChunkIdHints\": [],\n      \"related\": {},\n      \"chunks\": [\n        143\n      ],\n      \"auxiliaryChunks\": [],\n      \"isOverSizeLimit\": false\n    }\n  ],\n  \"chunks\": [\n    {\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"recorded\": false,\n      \"size\": 201,\n      \"sizes\": {\n        \"javascript\": 201\n      },\n      \"names\": [\n        \"app\"\n      ],\n      \"idHints\": [],\n      \"runtime\": [\n        \"app\"\n      ],\n      \"files\": [\n        \"app.js\"\n      ],\n      \"auxiliaryFiles\": [],\n      \"hash\": \"f27a9d9e4859c54b46bf\",\n      \"childrenByOrder\": {},\n      \"id\": 143,\n      \"siblings\": [],\n      \"parents\": [],\n      \"children\": [],\n      \"modules\": [\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"layer\": null,\n          \"size\": 23,\n          \"sizes\": {\n            \"javascript\": 23\n          },\n          \"built\": true,\n          \"codeGenerated\": true,\n          \"buildTimeExecuted\": false,\n          \"cached\": false,\n          \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/baz.js\",\n          \"name\": \"./baz.js\",\n          \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/baz.js\",\n          \"index\": 4,\n          \"preOrderIndex\": 4,\n          \"index2\": 4,\n          \"postOrderIndex\": 4,\n          \"cacheable\": true,\n          \"optional\": false,\n          \"orphan\": false,\n          \"dependent\": false,\n          \"issuer\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": 613,\n          \"issuerId\": null,\n          \"chunks\": [\n            143\n          ],\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"resolvedModuleIdentifier\": null,\n              \"resolvedModule\": null,\n              \"type\": \"entry\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./baz.js\",\n              \"loc\": \"app\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            }\n          ],\n          \"usedExports\": [],\n          \"providedExports\": null,\n          \"optimizationBailout\": [\n            \"Statement (ExpressionStatement) with side effects in source code at 1:0-22\",\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 0\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/esm\",\n          \"layer\": null,\n          \"size\": 178,\n          \"sizes\": {\n            \"javascript\": 178\n          },\n          \"built\": true,\n          \"codeGenerated\": true,\n          \"buildTimeExecuted\": false,\n          \"cached\": false,\n          \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js|7d6b74ccf4470678a84315f5e2796055\",\n          \"name\": \"./index.js + 3 modules\",\n          \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n          \"index\": 0,\n          \"preOrderIndex\": 0,\n          \"index2\": 3,\n          \"postOrderIndex\": 3,\n          \"cacheable\": true,\n          \"optional\": false,\n          \"orphan\": false,\n          \"dependent\": false,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": 469,\n          \"chunks\": [\n            143\n          ],\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"resolvedModuleIdentifier\": null,\n              \"resolvedModule\": null,\n              \"type\": \"entry\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./index.js\",\n              \"loc\": \"app\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            }\n          ],\n          \"usedExports\": [],\n          \"providedExports\": [],\n          \"optimizationBailout\": [],\n          \"depth\": 0,\n          \"modules\": [\n            {\n              \"type\": \"module\",\n              \"moduleType\": \"javascript/auto\",\n              \"layer\": null,\n              \"size\": 14,\n              \"sizes\": {\n                \"javascript\": 14\n              },\n              \"built\": true,\n              \"codeGenerated\": false,\n              \"buildTimeExecuted\": false,\n              \"cached\": false,\n              \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n              \"name\": \"./index.js\",\n              \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n              \"index\": 0,\n              \"preOrderIndex\": 0,\n              \"index2\": 3,\n              \"postOrderIndex\": 3,\n              \"cacheable\": true,\n              \"optional\": false,\n              \"orphan\": false,\n              \"dependent\": true,\n              \"issuer\": null,\n              \"issuerName\": null,\n              \"issuerPath\": null,\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"id\": null,\n              \"issuerId\": null,\n              \"chunks\": [],\n              \"assets\": [],\n              \"reasons\": [],\n              \"usedExports\": [],\n              \"providedExports\": [],\n              \"optimizationBailout\": [\n                \"Dependency (harmony side effect evaluation) with side effects at 1:0-13\"\n              ],\n              \"depth\": 0\n            },\n            {\n              \"type\": \"module\",\n              \"moduleType\": \"javascript/auto\",\n              \"layer\": null,\n              \"size\": 32,\n              \"sizes\": {\n                \"javascript\": 32\n              },\n              \"built\": true,\n              \"codeGenerated\": false,\n              \"buildTimeExecuted\": false,\n              \"cached\": false,\n              \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n              \"name\": \"../dep/index.js\",\n              \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n              \"index\": 1,\n              \"preOrderIndex\": 1,\n              \"index2\": 2,\n              \"postOrderIndex\": 2,\n              \"cacheable\": true,\n              \"optional\": false,\n              \"orphan\": false,\n              \"dependent\": true,\n              \"issuer\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n              \"issuerName\": \"./index.js\",\n              \"issuerPath\": [\n                {\n                  \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n                  \"name\": \"./index.js\",\n                  \"id\": null\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"id\": null,\n              \"issuerId\": null,\n              \"chunks\": [],\n              \"assets\": [],\n              \"reasons\": [\n                {\n                  \"moduleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n                  \"module\": \"./index.js\",\n                  \"moduleName\": \"./index.js\",\n                  \"resolvedModuleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n                  \"resolvedModule\": \"./index.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"active\": true,\n                  \"explanation\": \"\",\n                  \"userRequest\": \"dep\",\n                  \"loc\": \"1:0-13\",\n                  \"moduleId\": null,\n                  \"resolvedModuleId\": null\n                }\n              ],\n              \"usedExports\": [],\n              \"providedExports\": [],\n              \"optimizationBailout\": [\n                \"Dependency (harmony side effect evaluation) with side effects at 1:0-15\"\n              ],\n              \"depth\": 1\n            },\n            {\n              \"type\": \"module\",\n              \"moduleType\": \"javascript/auto\",\n              \"layer\": null,\n              \"size\": 66,\n              \"sizes\": {\n                \"javascript\": 66\n              },\n              \"built\": true,\n              \"codeGenerated\": false,\n              \"buildTimeExecuted\": false,\n              \"cached\": false,\n              \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/foo.js\",\n              \"name\": \"../dep/foo.js\",\n              \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/foo.js\",\n              \"index\": 2,\n              \"preOrderIndex\": 2,\n              \"index2\": 0,\n              \"postOrderIndex\": 0,\n              \"cacheable\": true,\n              \"optional\": false,\n              \"orphan\": false,\n              \"dependent\": true,\n              \"issuer\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n              \"issuerName\": \"../dep/index.js\",\n              \"issuerPath\": [\n                {\n                  \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n                  \"name\": \"./index.js\",\n                  \"id\": null\n                },\n                {\n                  \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n                  \"name\": \"../dep/index.js\",\n                  \"id\": null\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"id\": null,\n              \"issuerId\": null,\n              \"chunks\": [],\n              \"assets\": [],\n              \"reasons\": [\n                {\n                  \"moduleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n                  \"module\": \"../dep/index.js\",\n                  \"moduleName\": \"../dep/index.js\",\n                  \"resolvedModuleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n                  \"resolvedModule\": \"../dep/index.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"active\": true,\n                  \"explanation\": \"\",\n                  \"userRequest\": \"./foo\",\n                  \"loc\": \"1:0-15\",\n                  \"moduleId\": null,\n                  \"resolvedModuleId\": null\n                }\n              ],\n              \"usedExports\": [],\n              \"providedExports\": [\n                \"foo\"\n              ],\n              \"optimizationBailout\": [\n                \"Statement (ExpressionStatement) with side effects in source code at 5:0-22\"\n              ],\n              \"depth\": 2\n            },\n            {\n              \"type\": \"module\",\n              \"moduleType\": \"javascript/auto\",\n              \"layer\": null,\n              \"size\": 66,\n              \"sizes\": {\n                \"javascript\": 66\n              },\n              \"built\": true,\n              \"codeGenerated\": false,\n              \"buildTimeExecuted\": false,\n              \"cached\": false,\n              \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/bar.js\",\n              \"name\": \"../dep/bar.js\",\n              \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/bar.js\",\n              \"index\": 3,\n              \"preOrderIndex\": 3,\n              \"index2\": 1,\n              \"postOrderIndex\": 1,\n              \"cacheable\": true,\n              \"optional\": false,\n              \"orphan\": false,\n              \"dependent\": true,\n              \"issuer\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n              \"issuerName\": \"../dep/index.js\",\n              \"issuerPath\": [\n                {\n                  \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n                  \"name\": \"./index.js\",\n                  \"id\": null\n                },\n                {\n                  \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n                  \"name\": \"../dep/index.js\",\n                  \"id\": null\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"id\": null,\n              \"issuerId\": null,\n              \"chunks\": [],\n              \"assets\": [],\n              \"reasons\": [\n                {\n                  \"moduleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n                  \"module\": \"../dep/index.js\",\n                  \"moduleName\": \"../dep/index.js\",\n                  \"resolvedModuleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n                  \"resolvedModule\": \"../dep/index.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"active\": true,\n                  \"explanation\": \"\",\n                  \"userRequest\": \"./bar\",\n                  \"loc\": \"2:0-15\",\n                  \"moduleId\": null,\n                  \"resolvedModuleId\": null\n                }\n              ],\n              \"usedExports\": [],\n              \"providedExports\": [\n                \"bar\"\n              ],\n              \"optimizationBailout\": [\n                \"Statement (ExpressionStatement) with side effects in source code at 5:0-22\"\n              ],\n              \"depth\": 2\n            }\n          ]\n        }\n      ],\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"app\",\n          \"request\": \"./baz.js\"\n        },\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"app\",\n          \"request\": \"./index.js\"\n        }\n      ]\n    }\n  ],\n  \"modules\": [\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/esm\",\n      \"layer\": null,\n      \"size\": 178,\n      \"sizes\": {\n        \"javascript\": 178\n      },\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"buildTimeExecuted\": false,\n      \"cached\": false,\n      \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js|7d6b74ccf4470678a84315f5e2796055\",\n      \"name\": \"./index.js + 3 modules\",\n      \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n      \"index\": 0,\n      \"preOrderIndex\": 0,\n      \"index2\": 3,\n      \"postOrderIndex\": 3,\n      \"cacheable\": true,\n      \"optional\": false,\n      \"orphan\": false,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": 469,\n      \"chunks\": [\n        143\n      ],\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"resolvedModuleIdentifier\": null,\n          \"resolvedModule\": null,\n          \"type\": \"entry\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./index.js\",\n          \"loc\": \"app\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        }\n      ],\n      \"usedExports\": [],\n      \"providedExports\": [],\n      \"optimizationBailout\": [],\n      \"depth\": 0,\n      \"modules\": [\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"layer\": null,\n          \"size\": 14,\n          \"sizes\": {\n            \"javascript\": 14\n          },\n          \"built\": true,\n          \"codeGenerated\": false,\n          \"buildTimeExecuted\": false,\n          \"cached\": false,\n          \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n          \"name\": \"./index.js\",\n          \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n          \"index\": 0,\n          \"preOrderIndex\": 0,\n          \"index2\": 3,\n          \"postOrderIndex\": 3,\n          \"cacheable\": true,\n          \"optional\": false,\n          \"orphan\": false,\n          \"issuer\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": null,\n          \"issuerId\": null,\n          \"chunks\": [],\n          \"assets\": [],\n          \"reasons\": [],\n          \"usedExports\": [],\n          \"providedExports\": [],\n          \"optimizationBailout\": [\n            \"Dependency (harmony side effect evaluation) with side effects at 1:0-13\"\n          ],\n          \"depth\": 0\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"layer\": null,\n          \"size\": 32,\n          \"sizes\": {\n            \"javascript\": 32\n          },\n          \"built\": true,\n          \"codeGenerated\": false,\n          \"buildTimeExecuted\": false,\n          \"cached\": false,\n          \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n          \"name\": \"../dep/index.js\",\n          \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n          \"index\": 1,\n          \"preOrderIndex\": 1,\n          \"index2\": 2,\n          \"postOrderIndex\": 2,\n          \"cacheable\": true,\n          \"optional\": false,\n          \"orphan\": false,\n          \"issuer\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n          \"issuerName\": \"./index.js\",\n          \"issuerPath\": [\n            {\n              \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n              \"name\": \"./index.js\",\n              \"id\": null\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": null,\n          \"issuerId\": null,\n          \"chunks\": [],\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n              \"module\": \"./index.js\",\n              \"moduleName\": \"./index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n              \"resolvedModule\": \"./index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"dep\",\n              \"loc\": \"1:0-13\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            }\n          ],\n          \"usedExports\": [],\n          \"providedExports\": [],\n          \"optimizationBailout\": [\n            \"Dependency (harmony side effect evaluation) with side effects at 1:0-15\"\n          ],\n          \"depth\": 1\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"layer\": null,\n          \"size\": 66,\n          \"sizes\": {\n            \"javascript\": 66\n          },\n          \"built\": true,\n          \"codeGenerated\": false,\n          \"buildTimeExecuted\": false,\n          \"cached\": false,\n          \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/foo.js\",\n          \"name\": \"../dep/foo.js\",\n          \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/foo.js\",\n          \"index\": 2,\n          \"preOrderIndex\": 2,\n          \"index2\": 0,\n          \"postOrderIndex\": 0,\n          \"cacheable\": true,\n          \"optional\": false,\n          \"orphan\": false,\n          \"issuer\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n          \"issuerName\": \"../dep/index.js\",\n          \"issuerPath\": [\n            {\n              \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n              \"name\": \"./index.js\",\n              \"id\": null\n            },\n            {\n              \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n              \"name\": \"../dep/index.js\",\n              \"id\": null\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": null,\n          \"issuerId\": null,\n          \"chunks\": [],\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n              \"module\": \"../dep/index.js\",\n              \"moduleName\": \"../dep/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n              \"resolvedModule\": \"../dep/index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./foo\",\n              \"loc\": \"1:0-15\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            }\n          ],\n          \"usedExports\": [],\n          \"providedExports\": [\n            \"foo\"\n          ],\n          \"optimizationBailout\": [\n            \"Statement (ExpressionStatement) with side effects in source code at 5:0-22\"\n          ],\n          \"depth\": 2\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"layer\": null,\n          \"size\": 66,\n          \"sizes\": {\n            \"javascript\": 66\n          },\n          \"built\": true,\n          \"codeGenerated\": false,\n          \"buildTimeExecuted\": false,\n          \"cached\": false,\n          \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/bar.js\",\n          \"name\": \"../dep/bar.js\",\n          \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/bar.js\",\n          \"index\": 3,\n          \"preOrderIndex\": 3,\n          \"index2\": 1,\n          \"postOrderIndex\": 1,\n          \"cacheable\": true,\n          \"optional\": false,\n          \"orphan\": false,\n          \"issuer\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n          \"issuerName\": \"../dep/index.js\",\n          \"issuerPath\": [\n            {\n              \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n              \"name\": \"./index.js\",\n              \"id\": null\n            },\n            {\n              \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n              \"name\": \"../dep/index.js\",\n              \"id\": null\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": null,\n          \"issuerId\": null,\n          \"chunks\": [],\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n              \"module\": \"../dep/index.js\",\n              \"moduleName\": \"../dep/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n              \"resolvedModule\": \"../dep/index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./bar\",\n              \"loc\": \"2:0-15\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            }\n          ],\n          \"usedExports\": [],\n          \"providedExports\": [\n            \"bar\"\n          ],\n          \"optimizationBailout\": [\n            \"Statement (ExpressionStatement) with side effects in source code at 5:0-22\"\n          ],\n          \"depth\": 2\n        }\n      ]\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"layer\": null,\n      \"size\": 23,\n      \"sizes\": {\n        \"javascript\": 23\n      },\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"buildTimeExecuted\": false,\n      \"cached\": false,\n      \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/baz.js\",\n      \"name\": \"./baz.js\",\n      \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/baz.js\",\n      \"index\": 4,\n      \"preOrderIndex\": 4,\n      \"index2\": 4,\n      \"postOrderIndex\": 4,\n      \"cacheable\": true,\n      \"optional\": false,\n      \"orphan\": false,\n      \"issuer\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": 613,\n      \"issuerId\": null,\n      \"chunks\": [\n        143\n      ],\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"resolvedModuleIdentifier\": null,\n          \"resolvedModule\": null,\n          \"type\": \"entry\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./baz.js\",\n          \"loc\": \"app\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        }\n      ],\n      \"usedExports\": [],\n      \"providedExports\": null,\n      \"optimizationBailout\": [\n        \"Statement (ExpressionStatement) with side effects in source code at 1:0-22\",\n        \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n      ],\n      \"depth\": 0\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"layer\": null,\n      \"size\": 32,\n      \"sizes\": {\n        \"javascript\": 32\n      },\n      \"built\": true,\n      \"codeGenerated\": false,\n      \"buildTimeExecuted\": false,\n      \"cached\": false,\n      \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n      \"name\": \"../dep/index.js\",\n      \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n      \"index\": 1,\n      \"preOrderIndex\": 1,\n      \"index2\": 2,\n      \"postOrderIndex\": 2,\n      \"cacheable\": true,\n      \"optional\": false,\n      \"orphan\": true,\n      \"issuer\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n      \"issuerName\": \"./index.js\",\n      \"issuerPath\": [\n        {\n          \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n          \"name\": \"./index.js\",\n          \"id\": null\n        }\n      ],\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": null,\n      \"issuerId\": null,\n      \"chunks\": [],\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n          \"module\": \"./index.js\",\n          \"moduleName\": \"./index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n          \"resolvedModule\": \"./index.js\",\n          \"type\": \"harmony side effect evaluation\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"dep\",\n          \"loc\": \"1:0-13\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        }\n      ],\n      \"usedExports\": [],\n      \"providedExports\": [],\n      \"optimizationBailout\": [\n        \"Dependency (harmony side effect evaluation) with side effects at 1:0-15\"\n      ],\n      \"depth\": 1\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"layer\": null,\n      \"size\": 66,\n      \"sizes\": {\n        \"javascript\": 66\n      },\n      \"built\": true,\n      \"codeGenerated\": false,\n      \"buildTimeExecuted\": false,\n      \"cached\": false,\n      \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/foo.js\",\n      \"name\": \"../dep/foo.js\",\n      \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/foo.js\",\n      \"index\": 2,\n      \"preOrderIndex\": 2,\n      \"index2\": 0,\n      \"postOrderIndex\": 0,\n      \"cacheable\": true,\n      \"optional\": false,\n      \"orphan\": true,\n      \"issuer\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n      \"issuerName\": \"../dep/index.js\",\n      \"issuerPath\": [\n        {\n          \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n          \"name\": \"./index.js\",\n          \"id\": null\n        },\n        {\n          \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n          \"name\": \"../dep/index.js\",\n          \"id\": null\n        }\n      ],\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": null,\n      \"issuerId\": null,\n      \"chunks\": [],\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n          \"module\": \"../dep/index.js\",\n          \"moduleName\": \"../dep/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n          \"resolvedModule\": \"../dep/index.js\",\n          \"type\": \"harmony side effect evaluation\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./foo\",\n          \"loc\": \"1:0-15\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        }\n      ],\n      \"usedExports\": [],\n      \"providedExports\": [\n        \"foo\"\n      ],\n      \"optimizationBailout\": [\n        \"Statement (ExpressionStatement) with side effects in source code at 5:0-22\"\n      ],\n      \"depth\": 2\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"layer\": null,\n      \"size\": 66,\n      \"sizes\": {\n        \"javascript\": 66\n      },\n      \"built\": true,\n      \"codeGenerated\": false,\n      \"buildTimeExecuted\": false,\n      \"cached\": false,\n      \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/bar.js\",\n      \"name\": \"../dep/bar.js\",\n      \"nameForCondition\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/bar.js\",\n      \"index\": 3,\n      \"preOrderIndex\": 3,\n      \"index2\": 1,\n      \"postOrderIndex\": 1,\n      \"cacheable\": true,\n      \"optional\": false,\n      \"orphan\": true,\n      \"issuer\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n      \"issuerName\": \"../dep/index.js\",\n      \"issuerPath\": [\n        {\n          \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/app/index.js\",\n          \"name\": \"./index.js\",\n          \"id\": null\n        },\n        {\n          \"identifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n          \"name\": \"../dep/index.js\",\n          \"id\": null\n        }\n      ],\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": null,\n      \"issuerId\": null,\n      \"chunks\": [],\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n          \"module\": \"../dep/index.js\",\n          \"moduleName\": \"../dep/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/git/webpack-bundle-analyzer-entry-modules/packages/dep/index.js\",\n          \"resolvedModule\": \"../dep/index.js\",\n          \"type\": \"harmony side effect evaluation\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./bar\",\n          \"loc\": \"2:0-15\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        }\n      ],\n      \"usedExports\": [],\n      \"providedExports\": [\n        \"bar\"\n      ],\n      \"optimizationBailout\": [\n        \"Statement (ExpressionStatement) with side effects in source code at 5:0-22\"\n      ],\n      \"depth\": 2\n    }\n  ],\n  \"entrypoints\": {\n    \"app\": {\n      \"name\": \"app\",\n      \"chunks\": [\n        143\n      ],\n      \"assets\": [\n        {\n          \"name\": \"app.js\",\n          \"size\": 89\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"assetsSize\": 89,\n      \"auxiliaryAssets\": [],\n      \"filteredAuxiliaryAssets\": 0,\n      \"auxiliaryAssetsSize\": 0,\n      \"children\": {},\n      \"childAssets\": {},\n      \"isOverSizeLimit\": false\n    }\n  },\n  \"namedChunkGroups\": {\n    \"app\": {\n      \"name\": \"app\",\n      \"chunks\": [\n        143\n      ],\n      \"assets\": [\n        {\n          \"name\": \"app.js\",\n          \"size\": 89\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"assetsSize\": 89,\n      \"auxiliaryAssets\": [],\n      \"filteredAuxiliaryAssets\": 0,\n      \"auxiliaryAssetsSize\": 0,\n      \"children\": {},\n      \"childAssets\": {},\n      \"isOverSizeLimit\": false\n    }\n  },\n  \"errors\": [],\n  \"errorsCount\": 0,\n  \"warnings\": [],\n  \"warningsCount\": 0,\n  \"children\": []\n}\n"
  },
  {
    "path": "test/stats/webpack-5-bundle-with-multiple-entries/bundle.js",
    "content": "(()=>{\"use strict\";var o,e,r={85:(o,e,r)=>{r.d(e,{Z:()=>t});const t=\"module a\"},326:(o,e,r)=>{r.d(e,{Z:()=>t});const t=\"module b\"}},t={};function n(o){if(t[o])return t[o].exports;var e=t[o]={exports:{}};return r[o](e,e.exports,n),e.exports}n.d=(o,e)=>{for(var r in e)n.o(e,r)&&!n.o(o,r)&&Object.defineProperty(o,r,{enumerable:!0,get:e[r]})},n.o=(o,e)=>Object.prototype.hasOwnProperty.call(o,e),o=n(85),e=n(326),console.log(o.Z,e.Z),(()=>{var o=n(85),e=n(326);console.log(o.Z,e.Z)})()})();"
  },
  {
    "path": "test/stats/webpack-5-bundle-with-multiple-entries/expected-chart-data.js",
    "content": "module.exports = [\n  {\n    'label': 'bundle.js',\n    'isAsset': true,\n    'statSize': 204,\n    'parsedSize': 488,\n    'gzipSize': 297,\n    'groups': [\n      {\n        'label': 'entry modules (concatenated)',\n        'path': './entry modules (concatenated)',\n        'statSize': 124,\n        'parsedSize': 396,\n        'gzipSize': 265,\n        'concatenated': true,\n        'groups': [\n          {\n            'label': 'src',\n            'path': './entry modules (concatenated)/src',\n            'statSize': 124,\n            'groups': [\n              {\n                'id': 138,\n                'label': 'index.js',\n                'path': './entry modules (concatenated)/src/index.js',\n                'statSize': 62,\n                'parsedSize': 198,\n                'gzipSize': 132,\n                'inaccurateSizes': true\n              }, {\n                'id': 51,\n                'label': 'index2.js',\n                'path': './entry modules (concatenated)/src/index2.js',\n                'statSize': 62,\n                'parsedSize': 198,\n                'gzipSize': 132,\n                'inaccurateSizes': true\n              }\n            ],\n            'parsedSize': 396,\n            'gzipSize': 265,\n            'inaccurateSizes': true\n          }\n        ]\n      }, {\n        'label': 'src',\n        'path': './src',\n        'statSize': 80,\n        'groups': [\n          {\n            'id': 85,\n            'label': 'a.js',\n            'path': './src/a.js',\n            'statSize': 40,\n            'parsedSize': 46,\n            'gzipSize': 66\n          }, {\n            'id': 326,\n            'label': 'b.js',\n            'path': './src/b.js',\n            'statSize': 40,\n            'parsedSize': 46,\n            'gzipSize': 66\n          }\n        ],\n        'parsedSize': 92,\n        'gzipSize': 72\n      }\n    ]\n  }\n];\n"
  },
  {
    "path": "test/stats/webpack-5-bundle-with-multiple-entries/stats.json",
    "content": "{\n  \"hash\": \"36d4270b59839025be6f\",\n  \"version\": \"5.3.2\",\n  \"time\": 173,\n  \"builtAt\": 1604594140532,\n  \"publicPath\": \"auto\",\n  \"outputPath\": \"/Volumes/Work/webpack-bundle-analyzer/test/dist\",\n  \"assetsByChunkName\": {\n    \"main\": [\n      \"bundle.js\"\n    ]\n  },\n  \"assets\": [\n    {\n      \"type\": \"asset\",\n      \"name\": \"bundle.js\",\n      \"size\": 488,\n      \"chunkNames\": [\n        \"main\"\n      ],\n      \"chunkIdHints\": [\n      ],\n      \"auxiliaryChunkNames\": [\n      ],\n      \"auxiliaryChunkIdHints\": [\n      ],\n      \"emitted\": true,\n      \"comparedForEmit\": false,\n      \"cached\": false,\n      \"info\": {\n        \"javascriptModule\": false,\n        \"minimized\": true,\n        \"size\": 488\n      },\n      \"related\": {\n      },\n      \"chunks\": [\n        179\n      ],\n      \"auxiliaryChunks\": [\n      ],\n      \"isOverSizeLimit\": false\n    }\n  ],\n  \"chunks\": [\n    {\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"recorded\": false,\n      \"size\": 598,\n      \"sizes\": {\n        \"javascript\": 204,\n        \"runtime\": 394\n      },\n      \"names\": [\n        \"main\"\n      ],\n      \"idHints\": [\n      ],\n      \"runtime\": [\n        \"main\"\n      ],\n      \"files\": [\n        \"bundle.js\"\n      ],\n      \"auxiliaryFiles\": [\n      ],\n      \"hash\": \"81e403b1395a353906fe\",\n      \"childrenByOrder\": {\n      },\n      \"id\": 179,\n      \"siblings\": [\n      ],\n      \"parents\": [\n      ],\n      \"children\": [\n      ],\n      \"modules\": [\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n          \"name\": \"./src/a.js\",\n          \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n          \"index\": 1,\n          \"preOrderIndex\": 1,\n          \"index2\": 0,\n          \"postOrderIndex\": 0,\n          \"size\": 40,\n          \"sizes\": {\n            \"javascript\": 40\n          },\n          \"cacheable\": true,\n          \"built\": true,\n          \"codeGenerated\": true,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"dependent\": true,\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"issuerName\": \"./src/index2.js\",\n          \"issuerPath\": [\n            {\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n              \"name\": \"./src/index2.js\",\n              \"id\": 51\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": 85,\n          \"issuerId\": 51,\n          \"chunks\": [\n            179\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"resolvedModule\": \"./src/index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"active\": false,\n              \"explanation\": \"\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"1:0-20\",\n              \"moduleId\": 138,\n              \"resolvedModuleId\": 138\n            },\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"resolvedModule\": \"./src/index.js\",\n              \"type\": \"harmony import specifier\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"4:12-13\",\n              \"moduleId\": 138,\n              \"resolvedModuleId\": 138\n            },\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n              \"module\": \"./src/index2.js\",\n              \"moduleName\": \"./src/index2.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n              \"resolvedModule\": \"./src/index2.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"active\": false,\n              \"explanation\": \"\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"1:0-20\",\n              \"moduleId\": 51,\n              \"resolvedModuleId\": 51\n            },\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n              \"module\": \"./src/index2.js\",\n              \"moduleName\": \"./src/index2.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n              \"resolvedModule\": \"./src/index2.js\",\n              \"type\": \"harmony import specifier\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"4:12-13\",\n              \"moduleId\": 51,\n              \"resolvedModuleId\": 51\n            }\n          ],\n          \"usedExports\": [\n            \"default\"\n          ],\n          \"providedExports\": [\n            \"default\"\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": 1\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n          \"name\": \"./src/b.js\",\n          \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n          \"index\": 2,\n          \"preOrderIndex\": 2,\n          \"index2\": 1,\n          \"postOrderIndex\": 1,\n          \"size\": 40,\n          \"sizes\": {\n            \"javascript\": 40\n          },\n          \"cacheable\": true,\n          \"built\": true,\n          \"codeGenerated\": true,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"dependent\": true,\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"issuerName\": \"./src/index2.js\",\n          \"issuerPath\": [\n            {\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n              \"name\": \"./src/index2.js\",\n              \"id\": 51\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": 326,\n          \"issuerId\": 51,\n          \"chunks\": [\n            179\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"resolvedModule\": \"./src/index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"active\": false,\n              \"explanation\": \"\",\n              \"userRequest\": \"./b\",\n              \"loc\": \"2:0-20\",\n              \"moduleId\": 138,\n              \"resolvedModuleId\": 138\n            },\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"resolvedModule\": \"./src/index.js\",\n              \"type\": \"harmony import specifier\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./b\",\n              \"loc\": \"4:15-16\",\n              \"moduleId\": 138,\n              \"resolvedModuleId\": 138\n            },\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n              \"module\": \"./src/index2.js\",\n              \"moduleName\": \"./src/index2.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n              \"resolvedModule\": \"./src/index2.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"active\": false,\n              \"explanation\": \"\",\n              \"userRequest\": \"./b\",\n              \"loc\": \"2:0-20\",\n              \"moduleId\": 51,\n              \"resolvedModuleId\": 51\n            },\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n              \"module\": \"./src/index2.js\",\n              \"moduleName\": \"./src/index2.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n              \"resolvedModule\": \"./src/index2.js\",\n              \"type\": \"harmony import specifier\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./b\",\n              \"loc\": \"4:15-16\",\n              \"moduleId\": 51,\n              \"resolvedModuleId\": 51\n            }\n          ],\n          \"usedExports\": [\n            \"default\"\n          ],\n          \"providedExports\": [\n            \"default\"\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": 1\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./src/index.js\",\n          \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"index\": 0,\n          \"preOrderIndex\": 0,\n          \"index2\": 2,\n          \"postOrderIndex\": 2,\n          \"size\": 62,\n          \"sizes\": {\n            \"javascript\": 62\n          },\n          \"cacheable\": true,\n          \"built\": true,\n          \"codeGenerated\": true,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"dependent\": false,\n          \"issuer\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": 138,\n          \"issuerId\": null,\n          \"chunks\": [\n            179\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"resolvedModuleIdentifier\": null,\n              \"resolvedModule\": null,\n              \"type\": \"entry\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./src/index.js\",\n              \"loc\": \"main\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            }\n          ],\n          \"usedExports\": [\n          ],\n          \"providedExports\": [\n          ],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Cannot concat with ./src/a.js because of ./src/index2.js\",\n            \"ModuleConcatenation bailout: Cannot concat with ./src/b.js because of ./src/index2.js\"\n          ],\n          \"depth\": 0\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"name\": \"./src/index2.js\",\n          \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"index\": 3,\n          \"preOrderIndex\": 3,\n          \"index2\": 3,\n          \"postOrderIndex\": 3,\n          \"size\": 62,\n          \"sizes\": {\n            \"javascript\": 62\n          },\n          \"cacheable\": true,\n          \"built\": true,\n          \"codeGenerated\": true,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"dependent\": false,\n          \"issuer\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": 51,\n          \"issuerId\": null,\n          \"chunks\": [\n            179\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"resolvedModuleIdentifier\": null,\n              \"resolvedModule\": null,\n              \"type\": \"entry\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./src/index2.js\",\n              \"loc\": \"main\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            }\n          ],\n          \"usedExports\": [\n          ],\n          \"providedExports\": [\n          ],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Cannot concat with ./src/a.js because of ./src/index.js\",\n            \"ModuleConcatenation bailout: Cannot concat with ./src/b.js because of ./src/index.js\"\n          ],\n          \"depth\": 0\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"runtime\",\n          \"identifier\": \"webpack/runtime/define property getters\",\n          \"name\": \"webpack/runtime/define property getters\",\n          \"nameForCondition\": null,\n          \"index\": null,\n          \"preOrderIndex\": null,\n          \"index2\": null,\n          \"postOrderIndex\": null,\n          \"size\": 308,\n          \"sizes\": {\n            \"runtime\": 308\n          },\n          \"built\": false,\n          \"codeGenerated\": true,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"dependent\": false,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": \"\",\n          \"chunks\": [\n            179\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n          ],\n          \"usedExports\": null,\n          \"providedExports\": [\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": null\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"runtime\",\n          \"identifier\": \"webpack/runtime/hasOwnProperty shorthand\",\n          \"name\": \"webpack/runtime/hasOwnProperty shorthand\",\n          \"nameForCondition\": null,\n          \"index\": null,\n          \"preOrderIndex\": null,\n          \"index2\": null,\n          \"postOrderIndex\": null,\n          \"size\": 86,\n          \"sizes\": {\n            \"runtime\": 86\n          },\n          \"built\": false,\n          \"codeGenerated\": true,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"dependent\": false,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": \"\",\n          \"chunks\": [\n            179\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n          ],\n          \"usedExports\": null,\n          \"providedExports\": [\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": null\n        }\n      ],\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"main\",\n          \"request\": \"./src/index.js\"\n        },\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"main\",\n          \"request\": \"./src/index2.js\"\n        }\n      ]\n    }\n  ],\n  \"modules\": [\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n      \"name\": \"./src/index.js\",\n      \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n      \"index\": 0,\n      \"preOrderIndex\": 0,\n      \"index2\": 2,\n      \"postOrderIndex\": 2,\n      \"size\": 62,\n      \"sizes\": {\n        \"javascript\": 62\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"issuer\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": 138,\n      \"issuerId\": null,\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n      ],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"resolvedModuleIdentifier\": null,\n          \"resolvedModule\": null,\n          \"type\": \"entry\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./src/index.js\",\n          \"loc\": \"main\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        }\n      ],\n      \"usedExports\": [\n      ],\n      \"providedExports\": [\n      ],\n      \"optimizationBailout\": [\n        \"ModuleConcatenation bailout: Cannot concat with ./src/a.js because of ./src/index2.js\",\n        \"ModuleConcatenation bailout: Cannot concat with ./src/b.js because of ./src/index2.js\"\n      ],\n      \"depth\": 0\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n      \"name\": \"./src/index2.js\",\n      \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n      \"index\": 3,\n      \"preOrderIndex\": 3,\n      \"index2\": 3,\n      \"postOrderIndex\": 3,\n      \"size\": 62,\n      \"sizes\": {\n        \"javascript\": 62\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"issuer\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": 51,\n      \"issuerId\": null,\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n      ],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"resolvedModuleIdentifier\": null,\n          \"resolvedModule\": null,\n          \"type\": \"entry\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./src/index2.js\",\n          \"loc\": \"main\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        }\n      ],\n      \"usedExports\": [\n      ],\n      \"providedExports\": [\n      ],\n      \"optimizationBailout\": [\n        \"ModuleConcatenation bailout: Cannot concat with ./src/a.js because of ./src/index.js\",\n        \"ModuleConcatenation bailout: Cannot concat with ./src/b.js because of ./src/index.js\"\n      ],\n      \"depth\": 0\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n      \"name\": \"./src/a.js\",\n      \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n      \"index\": 1,\n      \"preOrderIndex\": 1,\n      \"index2\": 0,\n      \"postOrderIndex\": 0,\n      \"size\": 40,\n      \"sizes\": {\n        \"javascript\": 40\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n      \"issuerName\": \"./src/index2.js\",\n      \"issuerPath\": [\n        {\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"name\": \"./src/index2.js\",\n          \"id\": 51\n        }\n      ],\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": 85,\n      \"issuerId\": 51,\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n      ],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./src/index.js\",\n          \"moduleName\": \"./src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./src/index.js\",\n          \"type\": \"harmony side effect evaluation\",\n          \"active\": false,\n          \"explanation\": \"\",\n          \"userRequest\": \"./a\",\n          \"loc\": \"1:0-20\",\n          \"moduleId\": 138,\n          \"resolvedModuleId\": 138\n        },\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./src/index.js\",\n          \"moduleName\": \"./src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./src/index.js\",\n          \"type\": \"harmony import specifier\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./a\",\n          \"loc\": \"4:12-13\",\n          \"moduleId\": 138,\n          \"resolvedModuleId\": 138\n        },\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"module\": \"./src/index2.js\",\n          \"moduleName\": \"./src/index2.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"resolvedModule\": \"./src/index2.js\",\n          \"type\": \"harmony side effect evaluation\",\n          \"active\": false,\n          \"explanation\": \"\",\n          \"userRequest\": \"./a\",\n          \"loc\": \"1:0-20\",\n          \"moduleId\": 51,\n          \"resolvedModuleId\": 51\n        },\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"module\": \"./src/index2.js\",\n          \"moduleName\": \"./src/index2.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"resolvedModule\": \"./src/index2.js\",\n          \"type\": \"harmony import specifier\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./a\",\n          \"loc\": \"4:12-13\",\n          \"moduleId\": 51,\n          \"resolvedModuleId\": 51\n        }\n      ],\n      \"usedExports\": [\n        \"default\"\n      ],\n      \"providedExports\": [\n        \"default\"\n      ],\n      \"optimizationBailout\": [\n      ],\n      \"depth\": 1\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n      \"name\": \"./src/b.js\",\n      \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n      \"index\": 2,\n      \"preOrderIndex\": 2,\n      \"index2\": 1,\n      \"postOrderIndex\": 1,\n      \"size\": 40,\n      \"sizes\": {\n        \"javascript\": 40\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n      \"issuerName\": \"./src/index2.js\",\n      \"issuerPath\": [\n        {\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"name\": \"./src/index2.js\",\n          \"id\": 51\n        }\n      ],\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": 326,\n      \"issuerId\": 51,\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n      ],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./src/index.js\",\n          \"moduleName\": \"./src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./src/index.js\",\n          \"type\": \"harmony side effect evaluation\",\n          \"active\": false,\n          \"explanation\": \"\",\n          \"userRequest\": \"./b\",\n          \"loc\": \"2:0-20\",\n          \"moduleId\": 138,\n          \"resolvedModuleId\": 138\n        },\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./src/index.js\",\n          \"moduleName\": \"./src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./src/index.js\",\n          \"type\": \"harmony import specifier\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./b\",\n          \"loc\": \"4:15-16\",\n          \"moduleId\": 138,\n          \"resolvedModuleId\": 138\n        },\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"module\": \"./src/index2.js\",\n          \"moduleName\": \"./src/index2.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"resolvedModule\": \"./src/index2.js\",\n          \"type\": \"harmony side effect evaluation\",\n          \"active\": false,\n          \"explanation\": \"\",\n          \"userRequest\": \"./b\",\n          \"loc\": \"2:0-20\",\n          \"moduleId\": 51,\n          \"resolvedModuleId\": 51\n        },\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"module\": \"./src/index2.js\",\n          \"moduleName\": \"./src/index2.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index2.js\",\n          \"resolvedModule\": \"./src/index2.js\",\n          \"type\": \"harmony import specifier\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./b\",\n          \"loc\": \"4:15-16\",\n          \"moduleId\": 51,\n          \"resolvedModuleId\": 51\n        }\n      ],\n      \"usedExports\": [\n        \"default\"\n      ],\n      \"providedExports\": [\n        \"default\"\n      ],\n      \"optimizationBailout\": [\n      ],\n      \"depth\": 1\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"runtime\",\n      \"identifier\": \"webpack/runtime/define property getters\",\n      \"name\": \"webpack/runtime/define property getters\",\n      \"nameForCondition\": null,\n      \"index\": null,\n      \"preOrderIndex\": null,\n      \"index2\": null,\n      \"postOrderIndex\": null,\n      \"size\": 308,\n      \"sizes\": {\n        \"runtime\": 308\n      },\n      \"built\": false,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": \"\",\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n      ],\n      \"reasons\": [\n      ],\n      \"usedExports\": null,\n      \"providedExports\": [\n      ],\n      \"optimizationBailout\": [\n      ],\n      \"depth\": null\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"runtime\",\n      \"identifier\": \"webpack/runtime/hasOwnProperty shorthand\",\n      \"name\": \"webpack/runtime/hasOwnProperty shorthand\",\n      \"nameForCondition\": null,\n      \"index\": null,\n      \"preOrderIndex\": null,\n      \"index2\": null,\n      \"postOrderIndex\": null,\n      \"size\": 86,\n      \"sizes\": {\n        \"runtime\": 86\n      },\n      \"built\": false,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": \"\",\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n      ],\n      \"reasons\": [\n      ],\n      \"usedExports\": null,\n      \"providedExports\": [\n      ],\n      \"optimizationBailout\": [\n      ],\n      \"depth\": null\n    }\n  ],\n  \"entrypoints\": {\n    \"main\": {\n      \"name\": \"main\",\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n        {\n          \"name\": \"bundle.js\",\n          \"size\": 488\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"assetsSize\": 488,\n      \"auxiliaryAssets\": [\n      ],\n      \"filteredAuxiliaryAssets\": 0,\n      \"auxiliaryAssetsSize\": 0,\n      \"children\": {\n      },\n      \"childAssets\": {\n      },\n      \"isOverSizeLimit\": false\n    }\n  },\n  \"namedChunkGroups\": {\n    \"main\": {\n      \"name\": \"main\",\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n        {\n          \"name\": \"bundle.js\",\n          \"size\": 488\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"assetsSize\": 488,\n      \"auxiliaryAssets\": [\n      ],\n      \"filteredAuxiliaryAssets\": 0,\n      \"auxiliaryAssetsSize\": 0,\n      \"children\": {\n      },\n      \"childAssets\": {\n      },\n      \"isOverSizeLimit\": false\n    }\n  },\n  \"errors\": [\n  ],\n  \"errorsCount\": 0,\n  \"warnings\": [\n  ],\n  \"warningsCount\": 0,\n  \"children\": [\n  ]\n}"
  },
  {
    "path": "test/stats/webpack-5-bundle-with-single-entry/bundle.js",
    "content": "!function(){\"use strict\";var o,t,n={85:function(o,t){t.Z=\"module a\"},326:function(o,t){t.Z=\"module b\"}},r={};function e(o){if(r[o])return r[o].exports;var t=r[o]={exports:{}};return n[o](t,t.exports,e),t.exports}o=e(85),t=e(326),console.log(o.Z,t.Z)}();"
  },
  {
    "path": "test/stats/webpack-5-bundle-with-single-entry/expected-chart-data.js",
    "content": "module.exports = [\n  {\n    'label': 'bundle.js',\n    'isAsset': true,\n    'statSize': 142,\n    'parsedSize': 253,\n    'gzipSize': 179,\n    'groups': [\n      {\n        'label': 'src',\n        'path': './src',\n        'statSize': 142,\n        'groups': [\n          {\n            'id': 85,\n            'label': 'a.js',\n            'path': './src/a.js',\n            'statSize': 40,\n            'parsedSize': 29,\n            'gzipSize': 49\n          }, {\n            'id': 326,\n            'label': 'b.js',\n            'path': './src/b.js',\n            'statSize': 40,\n            'parsedSize': 29,\n            'gzipSize': 49\n          }, {\n            'id': 138,\n            'label': 'index.js',\n            'path': './src/index.js',\n            'statSize': 62,\n            'parsedSize': 195,\n            'gzipSize': 159\n          }\n        ],\n        'parsedSize': 253,\n        'gzipSize': 181\n      }\n    ]\n  }\n];\n"
  },
  {
    "path": "test/stats/webpack-5-bundle-with-single-entry/stats.json",
    "content": "{\n  \"hash\": \"a27a519140b2590a60d9\",\n  \"version\": \"5.3.2\",\n  \"time\": 152,\n  \"builtAt\": 1604594809350,\n  \"publicPath\": \"auto\",\n  \"outputPath\": \"/Volumes/Work/webpack-bundle-analyzer/test/dist\",\n  \"assetsByChunkName\": {\n    \"main\": [\n      \"bundle.js\"\n    ]\n  },\n  \"assets\": [\n    {\n      \"type\": \"asset\",\n      \"name\": \"bundle.js\",\n      \"size\": 253,\n      \"chunkNames\": [\n        \"main\"\n      ],\n      \"chunkIdHints\": [\n      ],\n      \"auxiliaryChunkNames\": [\n      ],\n      \"auxiliaryChunkIdHints\": [\n      ],\n      \"emitted\": true,\n      \"comparedForEmit\": false,\n      \"cached\": false,\n      \"info\": {\n        \"javascriptModule\": false,\n        \"minimized\": true,\n        \"size\": 253\n      },\n      \"related\": {\n      },\n      \"chunks\": [\n        179\n      ],\n      \"auxiliaryChunks\": [\n      ],\n      \"isOverSizeLimit\": false\n    }\n  ],\n  \"chunks\": [\n    {\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"recorded\": false,\n      \"size\": 142,\n      \"sizes\": {\n        \"javascript\": 142\n      },\n      \"names\": [\n        \"main\"\n      ],\n      \"idHints\": [\n      ],\n      \"runtime\": [\n        \"main\"\n      ],\n      \"files\": [\n        \"bundle.js\"\n      ],\n      \"auxiliaryFiles\": [\n      ],\n      \"hash\": \"27f85d7f2fb13dec2ad9\",\n      \"childrenByOrder\": {\n      },\n      \"id\": 179,\n      \"siblings\": [\n      ],\n      \"parents\": [\n      ],\n      \"children\": [\n      ],\n      \"modules\": [\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n          \"name\": \"./src/a.js\",\n          \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n          \"index\": 1,\n          \"preOrderIndex\": 1,\n          \"index2\": 0,\n          \"postOrderIndex\": 0,\n          \"size\": 40,\n          \"sizes\": {\n            \"javascript\": 40\n          },\n          \"cacheable\": true,\n          \"built\": true,\n          \"codeGenerated\": true,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"dependent\": true,\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"issuerName\": \"./src/index.js\",\n          \"issuerPath\": [\n            {\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"name\": \"./src/index.js\",\n              \"id\": 138\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": 85,\n          \"issuerId\": 138,\n          \"chunks\": [\n            179\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"resolvedModule\": \"./src/index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"active\": false,\n              \"explanation\": \"\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"1:0-20\",\n              \"moduleId\": 138,\n              \"resolvedModuleId\": 138\n            },\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"resolvedModule\": \"./src/index.js\",\n              \"type\": \"harmony import specifier\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"4:12-13\",\n              \"moduleId\": 138,\n              \"resolvedModuleId\": 138\n            }\n          ],\n          \"usedExports\": [\n            \"default\"\n          ],\n          \"providedExports\": [\n            \"default\"\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": 1\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n          \"name\": \"./src/b.js\",\n          \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n          \"index\": 2,\n          \"preOrderIndex\": 2,\n          \"index2\": 1,\n          \"postOrderIndex\": 1,\n          \"size\": 40,\n          \"sizes\": {\n            \"javascript\": 40\n          },\n          \"cacheable\": true,\n          \"built\": true,\n          \"codeGenerated\": true,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"dependent\": true,\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"issuerName\": \"./src/index.js\",\n          \"issuerPath\": [\n            {\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"name\": \"./src/index.js\",\n              \"id\": 138\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": 326,\n          \"issuerId\": 138,\n          \"chunks\": [\n            179\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"resolvedModule\": \"./src/index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"active\": false,\n              \"explanation\": \"\",\n              \"userRequest\": \"./b\",\n              \"loc\": \"2:0-20\",\n              \"moduleId\": 138,\n              \"resolvedModuleId\": 138\n            },\n            {\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"resolvedModule\": \"./src/index.js\",\n              \"type\": \"harmony import specifier\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./b\",\n              \"loc\": \"4:15-16\",\n              \"moduleId\": 138,\n              \"resolvedModuleId\": 138\n            }\n          ],\n          \"usedExports\": [\n            \"default\"\n          ],\n          \"providedExports\": [\n            \"default\"\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": 1\n        },\n        {\n          \"type\": \"module\",\n          \"moduleType\": \"javascript/auto\",\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./src/index.js\",\n          \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"index\": 0,\n          \"preOrderIndex\": 0,\n          \"index2\": 2,\n          \"postOrderIndex\": 2,\n          \"size\": 62,\n          \"sizes\": {\n            \"javascript\": 62\n          },\n          \"cacheable\": true,\n          \"built\": true,\n          \"codeGenerated\": true,\n          \"cached\": false,\n          \"optional\": false,\n          \"orphan\": false,\n          \"dependent\": false,\n          \"issuer\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"id\": 138,\n          \"issuerId\": null,\n          \"chunks\": [\n            179\n          ],\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"resolvedModuleIdentifier\": null,\n              \"resolvedModule\": null,\n              \"type\": \"entry\",\n              \"active\": true,\n              \"explanation\": \"\",\n              \"userRequest\": \"./src/index.js\",\n              \"loc\": \"main\",\n              \"moduleId\": null,\n              \"resolvedModuleId\": null\n            }\n          ],\n          \"usedExports\": [\n          ],\n          \"providedExports\": [\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": 0\n        }\n      ],\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"main\",\n          \"request\": \"./src/index.js\"\n        }\n      ]\n    }\n  ],\n  \"modules\": [\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n      \"name\": \"./src/index.js\",\n      \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n      \"index\": 0,\n      \"preOrderIndex\": 0,\n      \"index2\": 2,\n      \"postOrderIndex\": 2,\n      \"size\": 62,\n      \"sizes\": {\n        \"javascript\": 62\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"issuer\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": 138,\n      \"issuerId\": null,\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n      ],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"resolvedModuleIdentifier\": null,\n          \"resolvedModule\": null,\n          \"type\": \"entry\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./src/index.js\",\n          \"loc\": \"main\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        }\n      ],\n      \"usedExports\": [\n      ],\n      \"providedExports\": [\n      ],\n      \"optimizationBailout\": [\n      ],\n      \"depth\": 0\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n      \"name\": \"./src/a.js\",\n      \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n      \"index\": 1,\n      \"preOrderIndex\": 1,\n      \"index2\": 0,\n      \"postOrderIndex\": 0,\n      \"size\": 40,\n      \"sizes\": {\n        \"javascript\": 40\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n      \"issuerName\": \"./src/index.js\",\n      \"issuerPath\": [\n        {\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./src/index.js\",\n          \"id\": 138\n        }\n      ],\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": 85,\n      \"issuerId\": 138,\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n      ],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./src/index.js\",\n          \"moduleName\": \"./src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./src/index.js\",\n          \"type\": \"harmony side effect evaluation\",\n          \"active\": false,\n          \"explanation\": \"\",\n          \"userRequest\": \"./a\",\n          \"loc\": \"1:0-20\",\n          \"moduleId\": 138,\n          \"resolvedModuleId\": 138\n        },\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./src/index.js\",\n          \"moduleName\": \"./src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./src/index.js\",\n          \"type\": \"harmony import specifier\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./a\",\n          \"loc\": \"4:12-13\",\n          \"moduleId\": 138,\n          \"resolvedModuleId\": 138\n        }\n      ],\n      \"usedExports\": [\n        \"default\"\n      ],\n      \"providedExports\": [\n        \"default\"\n      ],\n      \"optimizationBailout\": [\n      ],\n      \"depth\": 1\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n      \"name\": \"./src/b.js\",\n      \"nameForCondition\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n      \"index\": 2,\n      \"preOrderIndex\": 2,\n      \"index2\": 1,\n      \"postOrderIndex\": 1,\n      \"size\": 40,\n      \"sizes\": {\n        \"javascript\": 40\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n      \"issuerName\": \"./src/index.js\",\n      \"issuerPath\": [\n        {\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./src/index.js\",\n          \"id\": 138\n        }\n      ],\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"id\": 326,\n      \"issuerId\": 138,\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n      ],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./src/index.js\",\n          \"moduleName\": \"./src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./src/index.js\",\n          \"type\": \"harmony side effect evaluation\",\n          \"active\": false,\n          \"explanation\": \"\",\n          \"userRequest\": \"./b\",\n          \"loc\": \"2:0-20\",\n          \"moduleId\": 138,\n          \"resolvedModuleId\": 138\n        },\n        {\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./src/index.js\",\n          \"moduleName\": \"./src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./src/index.js\",\n          \"type\": \"harmony import specifier\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./b\",\n          \"loc\": \"4:15-16\",\n          \"moduleId\": 138,\n          \"resolvedModuleId\": 138\n        }\n      ],\n      \"usedExports\": [\n        \"default\"\n      ],\n      \"providedExports\": [\n        \"default\"\n      ],\n      \"optimizationBailout\": [\n      ],\n      \"depth\": 1\n    }\n  ],\n  \"entrypoints\": {\n    \"main\": {\n      \"name\": \"main\",\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n        {\n          \"name\": \"bundle.js\",\n          \"size\": 253\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"assetsSize\": 253,\n      \"auxiliaryAssets\": [\n      ],\n      \"filteredAuxiliaryAssets\": 0,\n      \"auxiliaryAssetsSize\": 0,\n      \"children\": {\n      },\n      \"childAssets\": {\n      },\n      \"isOverSizeLimit\": false\n    }\n  },\n  \"namedChunkGroups\": {\n    \"main\": {\n      \"name\": \"main\",\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n        {\n          \"name\": \"bundle.js\",\n          \"size\": 253\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"assetsSize\": 253,\n      \"auxiliaryAssets\": [\n      ],\n      \"filteredAuxiliaryAssets\": 0,\n      \"auxiliaryAssetsSize\": 0,\n      \"children\": {\n      },\n      \"childAssets\": {\n      },\n      \"isOverSizeLimit\": false\n    }\n  },\n  \"errors\": [\n  ],\n  \"errorsCount\": 0,\n  \"warnings\": [\n  ],\n  \"warningsCount\": 0,\n  \"children\": [\n  ]\n}"
  },
  {
    "path": "test/stats/with-array-config/config-1-main.js",
    "content": "!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"\",n(n.s=0)}([function(e,t){console.log(\"ABC\")}]);"
  },
  {
    "path": "test/stats/with-array-config/config-2-main.js",
    "content": "!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"\",n(n.s=0)}([function(e,t){console.log(\"ABC\")}]);"
  },
  {
    "path": "test/stats/with-array-config/stats.json",
    "content": "{\n  \"errors\": [],\n  \"warnings\": [],\n  \"version\": \"4.44.2\",\n  \"hash\": \"a30aaa779dd06e8979b1a30aaa779dd06e8979b1\",\n  \"children\": [\n    {\n      \"errors\": [],\n      \"warnings\": [],\n      \"hash\": \"a30aaa779dd06e8979b1\",\n      \"time\": 105,\n      \"builtAt\": 1605088887042,\n      \"publicPath\": \"\",\n      \"outputPath\": \"/webpack-bundle-analyzer-example/\",\n      \"assetsByChunkName\": {\n        \"main\": \"config-1-main.js\"\n      },\n      \"assets\": [\n        {\n          \"name\": \"config-1-main.js\",\n          \"size\": 948,\n          \"chunks\": [0],\n          \"chunkNames\": [\"main\"],\n          \"info\": {},\n          \"emitted\": true\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"entrypoints\": {\n        \"main\": {\n          \"chunks\": [0],\n          \"assets\": [\"config-1-main.js\"],\n          \"children\": {},\n          \"childAssets\": {}\n        }\n      },\n      \"namedChunkGroups\": {\n        \"main\": {\n          \"chunks\": [0],\n          \"assets\": [\"config-1-main.js\"],\n          \"children\": {},\n          \"childAssets\": {}\n        }\n      },\n      \"chunks\": [\n        {\n          \"id\": 0,\n          \"rendered\": true,\n          \"initial\": true,\n          \"entry\": true,\n          \"size\": 20,\n          \"names\": [\"main\"],\n          \"files\": [\"config-1-main.js\"],\n          \"hash\": \"0e20b5164c4e5cda6fe0\",\n          \"siblings\": [],\n          \"parents\": [],\n          \"children\": [],\n          \"childrenByOrder\": {},\n          \"modules\": [\n            {\n              \"id\": 0,\n              \"identifier\": \"/webpack-bundle-analyzer-example/src/index.js\",\n              \"name\": \"./src/index.js\",\n              \"index\": 0,\n              \"index2\": 0,\n              \"size\": 20,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [0],\n              \"issuer\": null,\n              \"issuerId\": null,\n              \"issuerName\": null,\n              \"issuerPath\": null,\n              \"profile\": {\n                \"factory\": 35,\n                \"building\": 38\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [],\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": null,\n                  \"module\": null,\n                  \"moduleName\": null,\n                  \"type\": \"single entry\",\n                  \"userRequest\": \"./src/index.js\",\n                  \"loc\": \"main\"\n                }\n              ],\n              \"usedExports\": true,\n              \"providedExports\": null,\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n              ],\n              \"depth\": 0,\n              \"source\": \"console.log('ABC');\\n\"\n            }\n          ],\n          \"filteredModules\": 0,\n          \"origins\": [\n            {\n              \"module\": \"\",\n              \"moduleIdentifier\": \"\",\n              \"moduleName\": \"\",\n              \"loc\": \"main\",\n              \"request\": \"./src/index.js\",\n              \"reasons\": []\n            }\n          ]\n        }\n      ],\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"/webpack-bundle-analyzer-example/src/index.js\",\n          \"name\": \"./src/index.js\",\n          \"index\": 0,\n          \"index2\": 0,\n          \"size\": 20,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [0],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"profile\": {\n            \"factory\": 35,\n            \"building\": 38\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./src/index.js\",\n              \"loc\": \"main\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": null,\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 0,\n          \"source\": \"console.log('ABC');\\n\"\n        }\n      ],\n      \"filteredModules\": 0,\n      \"logging\": {\n        \"webpack.buildChunkGraph.visitModules\": {\n          \"entries\": [],\n          \"filteredEntries\": 2,\n          \"debug\": false\n        }\n      },\n      \"children\": []\n    },\n    {\n      \"errors\": [],\n      \"warnings\": [],\n      \"hash\": \"a30aaa779dd06e8979b1\",\n      \"time\": 88,\n      \"builtAt\": 1605088887043,\n      \"publicPath\": \"\",\n      \"outputPath\": \"/webpack-bundle-analyzer-example/\",\n      \"assetsByChunkName\": {\n        \"main\": \"config-2-main.js\"\n      },\n      \"assets\": [\n        {\n          \"name\": \"config-2-main.js\",\n          \"size\": 948,\n          \"chunks\": [0],\n          \"chunkNames\": [\"main\"],\n          \"info\": {},\n          \"emitted\": true\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"entrypoints\": {\n        \"main\": {\n          \"chunks\": [0],\n          \"assets\": [\"config-2-main.js\"],\n          \"children\": {},\n          \"childAssets\": {}\n        }\n      },\n      \"namedChunkGroups\": {\n        \"main\": {\n          \"chunks\": [0],\n          \"assets\": [\"config-2-main.js\"],\n          \"children\": {},\n          \"childAssets\": {}\n        }\n      },\n      \"chunks\": [\n        {\n          \"id\": 0,\n          \"rendered\": true,\n          \"initial\": true,\n          \"entry\": true,\n          \"size\": 20,\n          \"names\": [\"main\"],\n          \"files\": [\"config-2-main.js\"],\n          \"hash\": \"0e20b5164c4e5cda6fe0\",\n          \"siblings\": [],\n          \"parents\": [],\n          \"children\": [],\n          \"childrenByOrder\": {},\n          \"modules\": [\n            {\n              \"id\": 0,\n              \"identifier\": \"/webpack-bundle-analyzer-example/src/index.js\",\n              \"name\": \"./src/index.js\",\n              \"index\": 0,\n              \"index2\": 0,\n              \"size\": 20,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [0],\n              \"issuer\": null,\n              \"issuerId\": null,\n              \"issuerName\": null,\n              \"issuerPath\": null,\n              \"profile\": {\n                \"factory\": 29,\n                \"building\": 9\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [],\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": null,\n                  \"module\": null,\n                  \"moduleName\": null,\n                  \"type\": \"single entry\",\n                  \"userRequest\": \"./src/index.js\",\n                  \"loc\": \"main\"\n                }\n              ],\n              \"usedExports\": true,\n              \"providedExports\": null,\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n              ],\n              \"depth\": 0,\n              \"source\": \"console.log('ABC');\\n\"\n            }\n          ],\n          \"filteredModules\": 0,\n          \"origins\": [\n            {\n              \"module\": \"\",\n              \"moduleIdentifier\": \"\",\n              \"moduleName\": \"\",\n              \"loc\": \"main\",\n              \"request\": \"./src/index.js\",\n              \"reasons\": []\n            }\n          ]\n        }\n      ],\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"/webpack-bundle-analyzer-example/src/index.js\",\n          \"name\": \"./src/index.js\",\n          \"index\": 0,\n          \"index2\": 0,\n          \"size\": 20,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [0],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"profile\": {\n            \"factory\": 29,\n            \"building\": 9\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./src/index.js\",\n              \"loc\": \"main\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": null,\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 0,\n          \"source\": \"console.log('ABC');\\n\"\n        }\n      ],\n      \"filteredModules\": 0,\n      \"logging\": {\n        \"webpack.buildChunkGraph.visitModules\": {\n          \"entries\": [],\n          \"filteredEntries\": 2,\n          \"debug\": false\n        }\n      },\n      \"children\": []\n    }\n  ]\n}\n"
  },
  {
    "path": "test/stats/with-children-array.json",
    "content": "{\n  \"errors\": [],\n  \"warnings\": [],\n  \"version\": \"1.14.0\",\n  \"hash\": \"4e39ab22a848116a4c15\",\n  \"children\": [\n    {\n      \"errors\": [],\n      \"warnings\": [],\n      \"version\": \"1.14.0\",\n      \"hash\": \"4e39ab22a848116a4c15\",\n      \"time\": 79,\n      \"publicPath\": \"\",\n      \"assetsByChunkName\": {\n        \"bundle\": \"bundle.js\"\n      },\n      \"assets\": [\n        {\n          \"name\": \"bundle.js\",\n          \"size\": 1735,\n          \"chunks\": [\n            0\n          ],\n          \"chunkNames\": [\n            \"bundle\"\n          ],\n          \"emitted\": true\n        }\n      ],\n      \"chunks\": [\n        {\n          \"id\": 0,\n          \"rendered\": true,\n          \"initial\": true,\n          \"entry\": true,\n          \"extraAsync\": false,\n          \"size\": 141,\n          \"names\": [\n            \"bundle\"\n          ],\n          \"files\": [\n            \"bundle.js\"\n          ],\n          \"hash\": \"eb0091314b5c4ca75abf\",\n          \"parents\": [],\n          \"modules\": [\n            {\n              \"id\": 0,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"name\": \"./src/index.js\",\n              \"index\": 0,\n              \"index2\": 3,\n              \"size\": 54,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [\n                0\n              ],\n              \"assets\": [],\n              \"issuer\": null,\n              \"profile\": {\n                \"factory\": 19,\n                \"building\": 15\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [],\n              \"source\": \"require('./a');\\nrequire('./b');\\nrequire('./a-clone');\\n\"\n            },\n            {\n              \"id\": 1,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n              \"name\": \"./src/a.js\",\n              \"index\": 1,\n              \"index2\": 0,\n              \"size\": 29,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [\n                0\n              ],\n              \"assets\": [],\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"profile\": {\n                \"factory\": 8,\n                \"building\": 6\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": 0,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"type\": \"cjs require\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"1:0-14\"\n                }\n              ],\n              \"source\": \"module.exports = 'module a';\\n\"\n            },\n            {\n              \"id\": 2,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n              \"name\": \"./src/b.js\",\n              \"index\": 2,\n              \"index2\": 1,\n              \"size\": 29,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [\n                0\n              ],\n              \"assets\": [],\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"profile\": {\n                \"factory\": 9,\n                \"building\": 5\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": 0,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"type\": \"cjs require\",\n                  \"userRequest\": \"./b\",\n                  \"loc\": \"2:0-14\"\n                }\n              ],\n              \"source\": \"module.exports = 'module b';\\n\"\n            },\n            {\n              \"id\": 3,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a-clone.js\",\n              \"name\": \"./src/a-clone.js\",\n              \"index\": 3,\n              \"index2\": 2,\n              \"size\": 29,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [\n                0\n              ],\n              \"assets\": [],\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"profile\": {\n                \"factory\": 10,\n                \"building\": 5\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": 0,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"type\": \"cjs require\",\n                  \"userRequest\": \"./a-clone\",\n                  \"loc\": \"3:0-20\"\n                }\n              ],\n              \"source\": \"module.exports = 'module a';\\n\"\n            }\n          ],\n          \"filteredModules\": 0,\n          \"origins\": [\n            {\n              \"moduleId\": 0,\n              \"module\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"loc\": \"\",\n              \"name\": \"bundle\",\n              \"reasons\": []\n            }\n          ]\n        }\n      ],\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./src/index.js\",\n          \"index\": 0,\n          \"index2\": 3,\n          \"size\": 54,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            0\n          ],\n          \"assets\": [],\n          \"issuer\": null,\n          \"profile\": {\n            \"factory\": 19,\n            \"building\": 15\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [],\n          \"source\": \"require('./a');\\nrequire('./b');\\nrequire('./a-clone');\\n\"\n        },\n        {\n          \"id\": 1,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n          \"name\": \"./src/a.js\",\n          \"index\": 1,\n          \"index2\": 0,\n          \"size\": 29,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            0\n          ],\n          \"assets\": [],\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"profile\": {\n            \"factory\": 8,\n            \"building\": 6\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": 0,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"type\": \"cjs require\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"1:0-14\"\n            }\n          ],\n          \"source\": \"module.exports = 'module a';\\n\"\n        },\n        {\n          \"id\": 2,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n          \"name\": \"./src/b.js\",\n          \"index\": 2,\n          \"index2\": 1,\n          \"size\": 29,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            0\n          ],\n          \"assets\": [],\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"profile\": {\n            \"factory\": 9,\n            \"building\": 5\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": 0,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"type\": \"cjs require\",\n              \"userRequest\": \"./b\",\n              \"loc\": \"2:0-14\"\n            }\n          ],\n          \"source\": \"module.exports = 'module b';\\n\"\n        },\n        {\n          \"id\": 3,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a-clone.js\",\n          \"name\": \"./src/a-clone.js\",\n          \"index\": 3,\n          \"index2\": 2,\n          \"size\": 29,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            0\n          ],\n          \"assets\": [],\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"profile\": {\n            \"factory\": 10,\n            \"building\": 5\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": 0,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"type\": \"cjs require\",\n              \"userRequest\": \"./a-clone\",\n              \"loc\": \"3:0-20\"\n            }\n          ],\n          \"source\": \"module.exports = 'module a';\\n\"\n        }\n      ],\n      \"filteredModules\": 0,\n      \"children\": []\n    }\n  ]\n}\n"
  },
  {
    "path": "test/stats/with-cjs-chunk.json",
    "content": "{\n  \"errors\": [],\n  \"warnings\": [],\n  \"version\": \"1.14.0\",\n  \"hash\": \"4e39ab22a848116a4c15\",\n  \"children\": [\n    {\n      \"errors\": [],\n      \"warnings\": [],\n      \"version\": \"1.14.0\",\n      \"hash\": \"4e39ab22a848116a4c15\",\n      \"time\": 79,\n      \"publicPath\": \"\",\n      \"assetsByChunkName\": {\n        \"bundle\": \"bundle.cjs\"\n      },\n      \"assets\": [\n        {\n          \"name\": \"bundle.cjs\",\n          \"size\": 1735,\n          \"chunks\": [0],\n          \"chunkNames\": [\"bundle\"],\n          \"emitted\": true\n        }\n      ],\n      \"chunks\": [\n        {\n          \"id\": 0,\n          \"rendered\": true,\n          \"initial\": true,\n          \"entry\": true,\n          \"extraAsync\": false,\n          \"size\": 141,\n          \"names\": [\"bundle\"],\n          \"files\": [\"bundle.cjs\"],\n          \"hash\": \"eb0091314b5c4ca75abf\",\n          \"parents\": [],\n          \"modules\": [\n            {\n              \"id\": 0,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"name\": \"./src/index.js\",\n              \"index\": 0,\n              \"index2\": 3,\n              \"size\": 54,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [0],\n              \"assets\": [],\n              \"issuer\": null,\n              \"profile\": {\n                \"factory\": 19,\n                \"building\": 15\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [],\n              \"source\": \"require('./a');\\nrequire('./b');\\nrequire('./a-clone');\\n\"\n            },\n            {\n              \"id\": 1,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n              \"name\": \"./src/a.js\",\n              \"index\": 1,\n              \"index2\": 0,\n              \"size\": 29,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [0],\n              \"assets\": [],\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"profile\": {\n                \"factory\": 8,\n                \"building\": 6\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": 0,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"type\": \"cjs require\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"1:0-14\"\n                }\n              ],\n              \"source\": \"module.exports = 'module a';\\n\"\n            },\n            {\n              \"id\": 2,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n              \"name\": \"./src/b.js\",\n              \"index\": 2,\n              \"index2\": 1,\n              \"size\": 29,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [0],\n              \"assets\": [],\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"profile\": {\n                \"factory\": 9,\n                \"building\": 5\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": 0,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"type\": \"cjs require\",\n                  \"userRequest\": \"./b\",\n                  \"loc\": \"2:0-14\"\n                }\n              ],\n              \"source\": \"module.exports = 'module b';\\n\"\n            },\n            {\n              \"id\": 3,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a-clone.js\",\n              \"name\": \"./src/a-clone.js\",\n              \"index\": 3,\n              \"index2\": 2,\n              \"size\": 29,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [0],\n              \"assets\": [],\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"profile\": {\n                \"factory\": 10,\n                \"building\": 5\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": 0,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"type\": \"cjs require\",\n                  \"userRequest\": \"./a-clone\",\n                  \"loc\": \"3:0-20\"\n                }\n              ],\n              \"source\": \"module.exports = 'module a';\\n\"\n            }\n          ],\n          \"filteredModules\": 0,\n          \"origins\": [\n            {\n              \"moduleId\": 0,\n              \"module\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"loc\": \"\",\n              \"name\": \"bundle\",\n              \"reasons\": []\n            }\n          ]\n        }\n      ],\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./src/index.js\",\n          \"index\": 0,\n          \"index2\": 3,\n          \"size\": 54,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [0],\n          \"assets\": [],\n          \"issuer\": null,\n          \"profile\": {\n            \"factory\": 19,\n            \"building\": 15\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [],\n          \"source\": \"require('./a');\\nrequire('./b');\\nrequire('./a-clone');\\n\"\n        },\n        {\n          \"id\": 1,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n          \"name\": \"./src/a.js\",\n          \"index\": 1,\n          \"index2\": 0,\n          \"size\": 29,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [0],\n          \"assets\": [],\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"profile\": {\n            \"factory\": 8,\n            \"building\": 6\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": 0,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"type\": \"cjs require\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"1:0-14\"\n            }\n          ],\n          \"source\": \"module.exports = 'module a';\\n\"\n        },\n        {\n          \"id\": 2,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n          \"name\": \"./src/b.js\",\n          \"index\": 2,\n          \"index2\": 1,\n          \"size\": 29,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [0],\n          \"assets\": [],\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"profile\": {\n            \"factory\": 9,\n            \"building\": 5\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": 0,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"type\": \"cjs require\",\n              \"userRequest\": \"./b\",\n              \"loc\": \"2:0-14\"\n            }\n          ],\n          \"source\": \"module.exports = 'module b';\\n\"\n        },\n        {\n          \"id\": 3,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a-clone.js\",\n          \"name\": \"./src/a-clone.js\",\n          \"index\": 3,\n          \"index2\": 2,\n          \"size\": 29,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [0],\n          \"assets\": [],\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"profile\": {\n            \"factory\": 10,\n            \"building\": 5\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": 0,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"type\": \"cjs require\",\n              \"userRequest\": \"./a-clone\",\n              \"loc\": \"3:0-20\"\n            }\n          ],\n          \"source\": \"module.exports = 'module a';\\n\"\n        }\n      ],\n      \"filteredModules\": 0,\n      \"children\": []\n    }\n  ]\n}\n"
  },
  {
    "path": "test/stats/with-invalid-chunk/invalid-chunk.js",
    "content": "console.log('invalid chunk');\n"
  },
  {
    "path": "test/stats/with-invalid-chunk/stats.json",
    "content": "{\n  \"errors\": [],\n  \"warnings\": [],\n  \"version\": \"4.8.3\",\n  \"hash\": \"9deae6a8259cab8aa857\",\n  \"time\": 563,\n  \"builtAt\": 1526827103238,\n  \"publicPath\": \"\",\n  \"outputPath\": \"/Volumes/Work/webpack-bundle-analyzer/test/output\",\n  \"assetsByChunkName\": {\n    \"invalid\": \"invalid-chunk.js\",\n    \"valid\": \"valid-chunk.js\"\n  },\n  \"assets\": [\n    {\n      \"name\": \"invalid-chunk.js\",\n      \"size\": 568,\n      \"chunks\": [\n        0\n      ],\n      \"chunkNames\": [\n        \"invalid\"\n      ],\n      \"emitted\": true\n    },\n    {\n      \"name\": \"valid-chunk.js\",\n      \"size\": 590,\n      \"chunks\": [\n        1\n      ],\n      \"chunkNames\": [\n        \"valid\"\n      ],\n      \"emitted\": true\n    }\n  ],\n  \"filteredAssets\": 0,\n  \"entrypoints\": {\n    \"valid\": {\n      \"chunks\": [\n        1\n      ],\n      \"assets\": [\n        \"valid-chunk.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    },\n    \"invalid\": {\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [\n        \"invalid-chunk.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    }\n  },\n  \"namedChunkGroups\": {\n    \"valid\": {\n      \"chunks\": [\n        1\n      ],\n      \"assets\": [\n        \"valid-chunk.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    },\n    \"invalid\": {\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [\n        \"invalid-chunk.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    }\n  },\n  \"chunks\": [\n    {\n      \"id\": 0,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"size\": 24,\n      \"names\": [\n        \"invalid\"\n      ],\n      \"files\": [\n        \"invalid-chunk.js\"\n      ],\n      \"hash\": \"8582161dc498aae7630a\",\n      \"siblings\": [],\n      \"parents\": [],\n      \"children\": [],\n      \"childrenByOrder\": {},\n      \"modules\": [\n        {\n          \"id\": 1,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/invalid.js\",\n          \"name\": \"./invalid.js\",\n          \"index\": 2,\n          \"index2\": 2,\n          \"size\": 24,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            0\n          ],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./invalid.js\",\n              \"loc\": \"invalid\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": null,\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 0,\n          \"source\": \"console.log('invalid');\\n\"\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"invalid\",\n          \"request\": \"./invalid.js\",\n          \"reasons\": []\n        }\n      ]\n    },\n    {\n      \"id\": 1,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"size\": 70,\n      \"names\": [\n        \"valid\"\n      ],\n      \"files\": [\n        \"valid-chunk.js\"\n      ],\n      \"hash\": \"7c1fb8000ed732072651\",\n      \"siblings\": [],\n      \"parents\": [],\n      \"children\": [],\n      \"childrenByOrder\": {},\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js d378c6a2195fc2426055093c3fdde76c\",\n          \"name\": \"./valid.js + 1 modules\",\n          \"index\": 0,\n          \"index2\": 1,\n          \"size\": 70,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            1\n          ],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./valid.js\",\n              \"loc\": \"valid\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [],\n          \"optimizationBailout\": [],\n          \"depth\": 0,\n          \"modules\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"name\": \"./valid.js\",\n              \"index\": 0,\n              \"index2\": 1,\n              \"size\": 41,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [],\n              \"issuer\": null,\n              \"issuerId\": null,\n              \"issuerName\": null,\n              \"issuerPath\": null,\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [],\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": null,\n                  \"module\": null,\n                  \"moduleName\": null,\n                  \"type\": \"single entry\",\n                  \"userRequest\": \"./valid.js\",\n                  \"loc\": \"valid\"\n                }\n              ],\n              \"usedExports\": true,\n              \"providedExports\": [],\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is an entry point\"\n              ],\n              \"depth\": 0,\n              \"source\": \"import { a } from './a';\\nconsole.log(a);\\n\"\n            },\n            {\n              \"id\": null,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/a.js\",\n              \"name\": \"./a.js\",\n              \"index\": 1,\n              \"index2\": 0,\n              \"size\": 29,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [],\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"issuerId\": null,\n              \"issuerName\": \"./valid.js\",\n              \"issuerPath\": [\n                {\n                  \"id\": null,\n                  \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n                  \"name\": \"./valid.js\"\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [],\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n                  \"module\": \"./valid.js\",\n                  \"moduleName\": \"./valid.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"1:0-24\"\n                },\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n                  \"module\": \"./valid.js\",\n                  \"moduleName\": \"./valid.js\",\n                  \"type\": \"harmony import specifier\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"2:12-13\"\n                }\n              ],\n              \"usedExports\": [\n                \"a\"\n              ],\n              \"providedExports\": [\n                \"a\"\n              ],\n              \"optimizationBailout\": [],\n              \"depth\": 1,\n              \"source\": \"export const a = 'module a';\\n\"\n            }\n          ],\n          \"filteredModules\": 0\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"valid\",\n          \"request\": \"./valid.js\",\n          \"reasons\": []\n        }\n      ]\n    }\n  ],\n  \"modules\": [\n    {\n      \"id\": 0,\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js d378c6a2195fc2426055093c3fdde76c\",\n      \"name\": \"./valid.js + 1 modules\",\n      \"index\": 0,\n      \"index2\": 1,\n      \"size\": 70,\n      \"cacheable\": true,\n      \"built\": true,\n      \"optional\": false,\n      \"prefetched\": false,\n      \"chunks\": [\n        1\n      ],\n      \"issuer\": null,\n      \"issuerId\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleId\": null,\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"type\": \"single entry\",\n          \"userRequest\": \"./valid.js\",\n          \"loc\": \"valid\"\n        }\n      ],\n      \"usedExports\": true,\n      \"providedExports\": [],\n      \"optimizationBailout\": [],\n      \"depth\": 0,\n      \"modules\": [\n        {\n          \"id\": null,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n          \"name\": \"./valid.js\",\n          \"index\": 0,\n          \"index2\": 1,\n          \"size\": 41,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./valid.js\",\n              \"loc\": \"valid\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is an entry point\"\n          ],\n          \"depth\": 0,\n          \"source\": \"import { a } from './a';\\nconsole.log(a);\\n\"\n        },\n        {\n          \"id\": null,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/a.js\",\n          \"name\": \"./a.js\",\n          \"index\": 1,\n          \"index2\": 0,\n          \"size\": 29,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [],\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n          \"issuerId\": null,\n          \"issuerName\": \"./valid.js\",\n          \"issuerPath\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"name\": \"./valid.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"module\": \"./valid.js\",\n              \"moduleName\": \"./valid.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"1:0-24\"\n            },\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"module\": \"./valid.js\",\n              \"moduleName\": \"./valid.js\",\n              \"type\": \"harmony import specifier\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"2:12-13\"\n            }\n          ],\n          \"usedExports\": [\n            \"a\"\n          ],\n          \"providedExports\": [\n            \"a\"\n          ],\n          \"optimizationBailout\": [],\n          \"depth\": 1,\n          \"source\": \"export const a = 'module a';\\n\"\n        }\n      ],\n      \"filteredModules\": 0\n    },\n    {\n      \"id\": 1,\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/invalid.js\",\n      \"name\": \"./invalid.js\",\n      \"index\": 2,\n      \"index2\": 2,\n      \"size\": 24,\n      \"cacheable\": true,\n      \"built\": true,\n      \"optional\": false,\n      \"prefetched\": false,\n      \"chunks\": [\n        0\n      ],\n      \"issuer\": null,\n      \"issuerId\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleId\": null,\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"type\": \"single entry\",\n          \"userRequest\": \"./invalid.js\",\n          \"loc\": \"invalid\"\n        }\n      ],\n      \"usedExports\": true,\n      \"providedExports\": null,\n      \"optimizationBailout\": [\n        \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n      ],\n      \"depth\": 0,\n      \"source\": \"console.log('invalid');\\n\"\n    }\n  ],\n  \"filteredModules\": 0,\n  \"children\": []\n}\n"
  },
  {
    "path": "test/stats/with-invalid-chunk/valid-chunk.js",
    "content": "!function(e){var r={};function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.r=function(e){Object.defineProperty(e,\"__esModule\",{value:!0})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,\"a\",r),r},t.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},t.p=\"\",t(t.s=0)}([function(e,r,t){\"use strict\";t.r(r);console.log(\"module a\")}]);"
  },
  {
    "path": "test/stats/with-invalid-dynamic-require.json",
    "content": "{\n  \"errors\": [],\n  \"warnings\": [\n    \"./src/invalid-require-usage.js\\n2:9-28 Critical dependency: the request of a dependency is an expression\\n    at CommonJsRequireContextDependency.getWarnings (/Users/th0r/.nvm/versions/node/v7.8.0/lib/node_modules/webpack/lib/dependencies/CommonJsRequireContextDependency.js:27:4)\\n    at Compilation.reportDependencyErrorsAndWarnings (/Users/th0r/.nvm/versions/node/v7.8.0/lib/node_modules/webpack/lib/Compilation.js:668:24)\\n    at Compilation.finish (/Users/th0r/.nvm/versions/node/v7.8.0/lib/node_modules/webpack/lib/Compilation.js:531:9)\\n    at /Users/th0r/.nvm/versions/node/v7.8.0/lib/node_modules/webpack/lib/Compiler.js:486:16\\n    at /Users/th0r/.nvm/versions/node/v7.8.0/lib/node_modules/webpack/node_modules/tapable/lib/Tapable.js:225:11\\n    at _addModuleChain (/Users/th0r/.nvm/versions/node/v7.8.0/lib/node_modules/webpack/lib/Compilation.js:477:11)\\n    at processModuleDependencies.err (/Users/th0r/.nvm/versions/node/v7.8.0/lib/node_modules/webpack/lib/Compilation.js:448:13)\\n    at _combinedTickCallback (internal/process/next_tick.js:73:7)\\n    at process._tickCallback (internal/process/next_tick.js:104:9)\"\n  ],\n  \"version\": \"2.3.3\",\n  \"hash\": \"6f90cfe22237ea1b46c7\",\n  \"time\": 161,\n  \"publicPath\": \"\",\n  \"assetsByChunkName\": {\n    \"bundle\": \"bundle.js\"\n  },\n  \"assets\": [\n    {\n      \"name\": \"bundle.js\",\n      \"size\": 793,\n      \"chunks\": [\n        0\n      ],\n      \"chunkNames\": [\n        \"bundle\"\n      ],\n      \"emitted\": true\n    }\n  ],\n  \"entrypoints\": {\n    \"bundle\": {\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [\n        \"bundle.js\"\n      ]\n    }\n  },\n  \"chunks\": [\n    {\n      \"id\": 0,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"extraAsync\": false,\n      \"size\": 296,\n      \"names\": [\n        \"bundle\"\n      ],\n      \"files\": [\n        \"bundle.js\"\n      ],\n      \"hash\": \"af2ae029ed2063f5780c\",\n      \"parents\": [],\n      \"origins\": [\n        {\n          \"moduleId\": 2,\n          \"module\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/invalid-require-usage.js\",\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/invalid-require-usage.js\",\n          \"moduleName\": \"./src/invalid-require-usage.js\",\n          \"loc\": \"\",\n          \"name\": \"bundle\",\n          \"reasons\": []\n        }\n      ]\n    }\n  ],\n  \"modules\": [\n    {\n      \"id\": 0,\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src\",\n      \"name\": \"./src\",\n      \"index\": 1,\n      \"index2\": 0,\n      \"size\": 160,\n      \"cacheable\": true,\n      \"built\": true,\n      \"optional\": false,\n      \"prefetched\": false,\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [],\n      \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/invalid-require-usage.js\",\n      \"issuerId\": 2,\n      \"issuerName\": \"./src/invalid-require-usage.js\",\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"reasons\": [\n        {\n          \"moduleId\": 2,\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/invalid-require-usage.js\",\n          \"module\": \"./src/invalid-require-usage.js\",\n          \"moduleName\": \"./src/invalid-require-usage.js\",\n          \"type\": \"cjs require context\",\n          \"userRequest\": \".\",\n          \"loc\": \"2:9-28\"\n        }\n      ],\n      \"usedExports\": true,\n      \"providedExports\": null,\n      \"depth\": 1\n    },\n    {\n      \"id\": 1,\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n      \"name\": \"./src/a.js\",\n      \"index\": 2,\n      \"index2\": 1,\n      \"size\": 29,\n      \"cacheable\": true,\n      \"built\": true,\n      \"optional\": false,\n      \"prefetched\": false,\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [],\n      \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/invalid-require-usage.js\",\n      \"issuerId\": 2,\n      \"issuerName\": \"./src/invalid-require-usage.js\",\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"reasons\": [\n        {\n          \"moduleId\": 2,\n          \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/invalid-require-usage.js\",\n          \"module\": \"./src/invalid-require-usage.js\",\n          \"moduleName\": \"./src/invalid-require-usage.js\",\n          \"type\": \"cjs require\",\n          \"userRequest\": \"./a\",\n          \"loc\": \"6:0-14\"\n        }\n      ],\n      \"usedExports\": true,\n      \"providedExports\": null,\n      \"depth\": 1,\n      \"source\": \"module.exports = 'module a';\\n\"\n    },\n    {\n      \"id\": 2,\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/invalid-require-usage.js\",\n      \"name\": \"./src/invalid-require-usage.js\",\n      \"index\": 0,\n      \"index2\": 2,\n      \"size\": 107,\n      \"cacheable\": true,\n      \"built\": true,\n      \"optional\": false,\n      \"prefetched\": false,\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [],\n      \"issuer\": null,\n      \"issuerId\": null,\n      \"issuerName\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"reasons\": [],\n      \"usedExports\": true,\n      \"providedExports\": null,\n      \"depth\": 0,\n      \"source\": \"function dynamicRequire(moduleName) {\\n  return require(moduleName);\\n}\\n\\ndynamicRequire('');\\nrequire('./a');\\n\"\n    }\n  ],\n  \"filteredModules\": 0,\n  \"children\": []\n}\n"
  },
  {
    "path": "test/stats/with-missing-chunk/stats.json",
    "content": "{\n  \"errors\": [],\n  \"warnings\": [],\n  \"version\": \"4.8.3\",\n  \"hash\": \"9deae6a8259cab8aa857\",\n  \"time\": 563,\n  \"builtAt\": 1526827103238,\n  \"publicPath\": \"\",\n  \"outputPath\": \"/Volumes/Work/webpack-bundle-analyzer/test/output\",\n  \"assetsByChunkName\": {\n    \"invalid\": \"invalid-chunk.js\",\n    \"valid\": \"valid-chunk.js\"\n  },\n  \"assets\": [\n    {\n      \"name\": \"invalid-chunk.js\",\n      \"size\": 568,\n      \"chunks\": [\n        0\n      ],\n      \"chunkNames\": [\n        \"invalid\"\n      ],\n      \"emitted\": true\n    },\n    {\n      \"name\": \"valid-chunk.js\",\n      \"size\": 590,\n      \"chunks\": [\n        1\n      ],\n      \"chunkNames\": [\n        \"valid\"\n      ],\n      \"emitted\": true\n    }\n  ],\n  \"filteredAssets\": 0,\n  \"entrypoints\": {\n    \"valid\": {\n      \"chunks\": [\n        1\n      ],\n      \"assets\": [\n        \"valid-chunk.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    },\n    \"invalid\": {\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [\n        \"invalid-chunk.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    }\n  },\n  \"namedChunkGroups\": {\n    \"valid\": {\n      \"chunks\": [\n        1\n      ],\n      \"assets\": [\n        \"valid-chunk.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    },\n    \"invalid\": {\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [\n        \"invalid-chunk.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    }\n  },\n  \"chunks\": [\n    {\n      \"id\": 0,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"size\": 24,\n      \"names\": [\n        \"invalid\"\n      ],\n      \"files\": [\n        \"invalid-chunk.js\"\n      ],\n      \"hash\": \"8582161dc498aae7630a\",\n      \"siblings\": [],\n      \"parents\": [],\n      \"children\": [],\n      \"childrenByOrder\": {},\n      \"modules\": [\n        {\n          \"id\": 1,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/invalid.js\",\n          \"name\": \"./invalid.js\",\n          \"index\": 2,\n          \"index2\": 2,\n          \"size\": 24,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            0\n          ],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./invalid.js\",\n              \"loc\": \"invalid\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": null,\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 0,\n          \"source\": \"console.log('invalid');\\n\"\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"invalid\",\n          \"request\": \"./invalid.js\",\n          \"reasons\": []\n        }\n      ]\n    },\n    {\n      \"id\": 1,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"size\": 70,\n      \"names\": [\n        \"valid\"\n      ],\n      \"files\": [\n        \"valid-chunk.js\"\n      ],\n      \"hash\": \"7c1fb8000ed732072651\",\n      \"siblings\": [],\n      \"parents\": [],\n      \"children\": [],\n      \"childrenByOrder\": {},\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js d378c6a2195fc2426055093c3fdde76c\",\n          \"name\": \"./valid.js + 1 modules\",\n          \"index\": 0,\n          \"index2\": 1,\n          \"size\": 70,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            1\n          ],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./valid.js\",\n              \"loc\": \"valid\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [],\n          \"optimizationBailout\": [],\n          \"depth\": 0,\n          \"modules\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"name\": \"./valid.js\",\n              \"index\": 0,\n              \"index2\": 1,\n              \"size\": 41,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [],\n              \"issuer\": null,\n              \"issuerId\": null,\n              \"issuerName\": null,\n              \"issuerPath\": null,\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [],\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": null,\n                  \"module\": null,\n                  \"moduleName\": null,\n                  \"type\": \"single entry\",\n                  \"userRequest\": \"./valid.js\",\n                  \"loc\": \"valid\"\n                }\n              ],\n              \"usedExports\": true,\n              \"providedExports\": [],\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is an entry point\"\n              ],\n              \"depth\": 0,\n              \"source\": \"import { a } from './a';\\nconsole.log(a);\\n\"\n            },\n            {\n              \"id\": null,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/a.js\",\n              \"name\": \"./a.js\",\n              \"index\": 1,\n              \"index2\": 0,\n              \"size\": 29,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [],\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"issuerId\": null,\n              \"issuerName\": \"./valid.js\",\n              \"issuerPath\": [\n                {\n                  \"id\": null,\n                  \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n                  \"name\": \"./valid.js\"\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [],\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n                  \"module\": \"./valid.js\",\n                  \"moduleName\": \"./valid.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"1:0-24\"\n                },\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n                  \"module\": \"./valid.js\",\n                  \"moduleName\": \"./valid.js\",\n                  \"type\": \"harmony import specifier\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"2:12-13\"\n                }\n              ],\n              \"usedExports\": [\n                \"a\"\n              ],\n              \"providedExports\": [\n                \"a\"\n              ],\n              \"optimizationBailout\": [],\n              \"depth\": 1,\n              \"source\": \"export const a = 'module a';\\n\"\n            }\n          ],\n          \"filteredModules\": 0\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"valid\",\n          \"request\": \"./valid.js\",\n          \"reasons\": []\n        }\n      ]\n    }\n  ],\n  \"modules\": [\n    {\n      \"id\": 0,\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js d378c6a2195fc2426055093c3fdde76c\",\n      \"name\": \"./valid.js + 1 modules\",\n      \"index\": 0,\n      \"index2\": 1,\n      \"size\": 70,\n      \"cacheable\": true,\n      \"built\": true,\n      \"optional\": false,\n      \"prefetched\": false,\n      \"chunks\": [\n        1\n      ],\n      \"issuer\": null,\n      \"issuerId\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleId\": null,\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"type\": \"single entry\",\n          \"userRequest\": \"./valid.js\",\n          \"loc\": \"valid\"\n        }\n      ],\n      \"usedExports\": true,\n      \"providedExports\": [],\n      \"optimizationBailout\": [],\n      \"depth\": 0,\n      \"modules\": [\n        {\n          \"id\": null,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n          \"name\": \"./valid.js\",\n          \"index\": 0,\n          \"index2\": 1,\n          \"size\": 41,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./valid.js\",\n              \"loc\": \"valid\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is an entry point\"\n          ],\n          \"depth\": 0,\n          \"source\": \"import { a } from './a';\\nconsole.log(a);\\n\"\n        },\n        {\n          \"id\": null,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/a.js\",\n          \"name\": \"./a.js\",\n          \"index\": 1,\n          \"index2\": 0,\n          \"size\": 29,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [],\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n          \"issuerId\": null,\n          \"issuerName\": \"./valid.js\",\n          \"issuerPath\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"name\": \"./valid.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"module\": \"./valid.js\",\n              \"moduleName\": \"./valid.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"1:0-24\"\n            },\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"module\": \"./valid.js\",\n              \"moduleName\": \"./valid.js\",\n              \"type\": \"harmony import specifier\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"2:12-13\"\n            }\n          ],\n          \"usedExports\": [\n            \"a\"\n          ],\n          \"providedExports\": [\n            \"a\"\n          ],\n          \"optimizationBailout\": [],\n          \"depth\": 1,\n          \"source\": \"export const a = 'module a';\\n\"\n        }\n      ],\n      \"filteredModules\": 0\n    },\n    {\n      \"id\": 1,\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/invalid.js\",\n      \"name\": \"./invalid.js\",\n      \"index\": 2,\n      \"index2\": 2,\n      \"size\": 24,\n      \"cacheable\": true,\n      \"built\": true,\n      \"optional\": false,\n      \"prefetched\": false,\n      \"chunks\": [\n        0\n      ],\n      \"issuer\": null,\n      \"issuerId\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleId\": null,\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"type\": \"single entry\",\n          \"userRequest\": \"./invalid.js\",\n          \"loc\": \"invalid\"\n        }\n      ],\n      \"usedExports\": true,\n      \"providedExports\": null,\n      \"optimizationBailout\": [\n        \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n      ],\n      \"depth\": 0,\n      \"source\": \"console.log('invalid');\\n\"\n    }\n  ],\n  \"filteredModules\": 0,\n  \"children\": []\n}\n"
  },
  {
    "path": "test/stats/with-missing-chunk/valid-chunk.js",
    "content": "!function(e){var r={};function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.r=function(e){Object.defineProperty(e,\"__esModule\",{value:!0})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,\"a\",r),r},t.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},t.p=\"\",t(t.s=0)}([function(e,r,t){\"use strict\";t.r(r);console.log(\"module a\")}]);"
  },
  {
    "path": "test/stats/with-missing-module-chunks/stats.json",
    "content": "{\n  \"errors\": [],\n  \"warnings\": [],\n  \"version\": \"4.8.3\",\n  \"hash\": \"9deae6a8259cab8aa857\",\n  \"time\": 563,\n  \"builtAt\": 1526827103238,\n  \"publicPath\": \"\",\n  \"outputPath\": \"/Volumes/Work/webpack-bundle-analyzer/test/output\",\n  \"assetsByChunkName\": {\n    \"invalid\": \"invalid-chunk.js\",\n    \"valid\": \"valid-chunk.js\"\n  },\n  \"assets\": [\n    {\n      \"name\": \"invalid-chunk.js\",\n      \"size\": 568,\n      \"chunks\": [\n        0\n      ],\n      \"chunkNames\": [\n        \"invalid\"\n      ],\n      \"emitted\": true\n    },\n    {\n      \"name\": \"valid-chunk.js\",\n      \"size\": 590,\n      \"chunks\": [\n        1\n      ],\n      \"chunkNames\": [\n        \"valid\"\n      ],\n      \"emitted\": true\n    }\n  ],\n  \"filteredAssets\": 0,\n  \"entrypoints\": {\n    \"valid\": {\n      \"chunks\": [\n        1\n      ],\n      \"assets\": [\n        \"valid-chunk.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    },\n    \"invalid\": {\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [\n        \"invalid-chunk.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    }\n  },\n  \"namedChunkGroups\": {\n    \"valid\": {\n      \"chunks\": [\n        1\n      ],\n      \"assets\": [\n        \"valid-chunk.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    },\n    \"invalid\": {\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [\n        \"invalid-chunk.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    }\n  },\n  \"chunks\": [\n    {\n      \"id\": 0,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"size\": 24,\n      \"names\": [\n        \"invalid\"\n      ],\n      \"files\": [\n        \"invalid-chunk.js\"\n      ],\n      \"hash\": \"8582161dc498aae7630a\",\n      \"siblings\": [],\n      \"parents\": [],\n      \"children\": [],\n      \"childrenByOrder\": {},\n      \"modules\": [\n        {\n          \"id\": 1,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/invalid.js\",\n          \"name\": \"./invalid.js\",\n          \"index\": 2,\n          \"index2\": 2,\n          \"size\": 24,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./invalid.js\",\n              \"loc\": \"invalid\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": null,\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 0,\n          \"source\": \"console.log('invalid');\\n\"\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"invalid\",\n          \"request\": \"./invalid.js\",\n          \"reasons\": []\n        }\n      ]\n    },\n    {\n      \"id\": 1,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"size\": 70,\n      \"names\": [\n        \"valid\"\n      ],\n      \"files\": [\n        \"valid-chunk.js\"\n      ],\n      \"hash\": \"7c1fb8000ed732072651\",\n      \"siblings\": [],\n      \"parents\": [],\n      \"children\": [],\n      \"childrenByOrder\": {},\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js d378c6a2195fc2426055093c3fdde76c\",\n          \"name\": \"./valid.js + 1 modules\",\n          \"index\": 0,\n          \"index2\": 1,\n          \"size\": 70,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            1\n          ],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./valid.js\",\n              \"loc\": \"valid\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [],\n          \"optimizationBailout\": [],\n          \"depth\": 0,\n          \"modules\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"name\": \"./valid.js\",\n              \"index\": 0,\n              \"index2\": 1,\n              \"size\": 41,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [],\n              \"issuer\": null,\n              \"issuerId\": null,\n              \"issuerName\": null,\n              \"issuerPath\": null,\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [],\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": null,\n                  \"module\": null,\n                  \"moduleName\": null,\n                  \"type\": \"single entry\",\n                  \"userRequest\": \"./valid.js\",\n                  \"loc\": \"valid\"\n                }\n              ],\n              \"usedExports\": true,\n              \"providedExports\": [],\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is an entry point\"\n              ],\n              \"depth\": 0,\n              \"source\": \"import { a } from './a';\\nconsole.log(a);\\n\"\n            },\n            {\n              \"id\": null,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/a.js\",\n              \"name\": \"./a.js\",\n              \"index\": 1,\n              \"index2\": 0,\n              \"size\": 29,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [],\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"issuerId\": null,\n              \"issuerName\": \"./valid.js\",\n              \"issuerPath\": [\n                {\n                  \"id\": null,\n                  \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n                  \"name\": \"./valid.js\"\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [],\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n                  \"module\": \"./valid.js\",\n                  \"moduleName\": \"./valid.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"1:0-24\"\n                },\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n                  \"module\": \"./valid.js\",\n                  \"moduleName\": \"./valid.js\",\n                  \"type\": \"harmony import specifier\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"2:12-13\"\n                }\n              ],\n              \"usedExports\": [\n                \"a\"\n              ],\n              \"providedExports\": [\n                \"a\"\n              ],\n              \"optimizationBailout\": [],\n              \"depth\": 1,\n              \"source\": \"export const a = 'module a';\\n\"\n            }\n          ],\n          \"filteredModules\": 0\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"valid\",\n          \"request\": \"./valid.js\",\n          \"reasons\": []\n        }\n      ]\n    }\n  ],\n  \"modules\": [\n    {\n      \"id\": 0,\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js d378c6a2195fc2426055093c3fdde76c\",\n      \"name\": \"./valid.js + 1 modules\",\n      \"index\": 0,\n      \"index2\": 1,\n      \"size\": 70,\n      \"cacheable\": true,\n      \"built\": true,\n      \"optional\": false,\n      \"prefetched\": false,\n      \"chunks\": [\n        1\n      ],\n      \"issuer\": null,\n      \"issuerId\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleId\": null,\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"type\": \"single entry\",\n          \"userRequest\": \"./valid.js\",\n          \"loc\": \"valid\"\n        }\n      ],\n      \"usedExports\": true,\n      \"providedExports\": [],\n      \"optimizationBailout\": [],\n      \"depth\": 0,\n      \"modules\": [\n        {\n          \"id\": null,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n          \"name\": \"./valid.js\",\n          \"index\": 0,\n          \"index2\": 1,\n          \"size\": 41,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./valid.js\",\n              \"loc\": \"valid\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is an entry point\"\n          ],\n          \"depth\": 0,\n          \"source\": \"import { a } from './a';\\nconsole.log(a);\\n\"\n        },\n        {\n          \"id\": null,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/a.js\",\n          \"name\": \"./a.js\",\n          \"index\": 1,\n          \"index2\": 0,\n          \"size\": 29,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [],\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n          \"issuerId\": null,\n          \"issuerName\": \"./valid.js\",\n          \"issuerPath\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"name\": \"./valid.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"module\": \"./valid.js\",\n              \"moduleName\": \"./valid.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"1:0-24\"\n            },\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/valid.js\",\n              \"module\": \"./valid.js\",\n              \"moduleName\": \"./valid.js\",\n              \"type\": \"harmony import specifier\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"2:12-13\"\n            }\n          ],\n          \"usedExports\": [\n            \"a\"\n          ],\n          \"providedExports\": [\n            \"a\"\n          ],\n          \"optimizationBailout\": [],\n          \"depth\": 1,\n          \"source\": \"export const a = 'module a';\\n\"\n        }\n      ],\n      \"filteredModules\": 0\n    },\n    {\n      \"id\": 1,\n      \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/invalid-chunk/invalid.js\",\n      \"name\": \"./invalid.js\",\n      \"index\": 2,\n      \"index2\": 2,\n      \"size\": 24,\n      \"cacheable\": true,\n      \"built\": true,\n      \"optional\": false,\n      \"prefetched\": false,\n      \"chunks\": [\n        0\n      ],\n      \"issuer\": null,\n      \"issuerId\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleId\": null,\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"type\": \"single entry\",\n          \"userRequest\": \"./invalid.js\",\n          \"loc\": \"invalid\"\n        }\n      ],\n      \"usedExports\": true,\n      \"providedExports\": null,\n      \"optimizationBailout\": [\n        \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n      ],\n      \"depth\": 0,\n      \"source\": \"console.log('invalid');\\n\"\n    }\n  ],\n  \"filteredModules\": 0,\n  \"children\": []\n}\n"
  },
  {
    "path": "test/stats/with-missing-module-chunks/valid-chunk.js",
    "content": "!function(e){var r={};function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.r=function(e){Object.defineProperty(e,\"__esModule\",{value:!0})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,\"a\",r),r},t.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},t.p=\"\",t(t.s=0)}([function(e,r,t){\"use strict\";t.r(r);console.log(\"module a\")}]);"
  },
  {
    "path": "test/stats/with-missing-parsed-module/bundle.js",
    "content": "/******/ (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/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\ti: moduleId,\n/******/ \t\t\tl: false,\n/******/ \t\t\texports: {}\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.l = 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// define getter function for harmony exports\n/******/ \t__webpack_require__.d = function(exports, name, getter) {\n/******/ \t\tif(!__webpack_require__.o(exports, name)) {\n/******/ \t\t\tObject.defineProperty(exports, name, {\n/******/ \t\t\t\tconfigurable: false,\n/******/ \t\t\t\tenumerable: true,\n/******/ \t\t\t\tget: getter\n/******/ \t\t\t});\n/******/ \t\t}\n/******/ \t};\n/******/\n/******/ \t// define __esModule on exports\n/******/ \t__webpack_require__.r = function(exports) {\n/******/ \t\tObject.defineProperty(exports, '__esModule', { value: true });\n/******/ \t};\n/******/\n/******/ \t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t__webpack_require__.n = function(module) {\n/******/ \t\tvar getter = module && module.__esModule ?\n/******/ \t\t\tfunction getDefault() { return module['default']; } :\n/******/ \t\t\tfunction getModuleExports() { return module; };\n/******/ \t\t__webpack_require__.d(getter, 'a', getter);\n/******/ \t\treturn getter;\n/******/ \t};\n/******/\n/******/ \t// Object.prototype.hasOwnProperty.call\n/******/ \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n/******/\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"/static/bundles/\";\n/******/\n/******/\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(__webpack_require__.s = \"./client/index.js\");\n/******/ })\n/************************************************************************/\n/******/ ({\n\n/***/ \"./client/App.vue\":\n/*!************************!*\\\n  !*** ./client/App.vue ***!\n  \\************************/\n/*! exports provided: default */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony import */ var _App_vue_vue_type_template_id_278f674b__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./App.vue?vue&type=template&id=278f674b */ \\\"./client/App.vue?vue&type=template&id=278f674b\\\");\\n/* harmony import */ var _App_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./App.vue?vue&type=script&lang=js */ \\\"./client/App.vue?vue&type=script&lang=js\\\");\\n/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ \\\"./node_modules/vue-loader/lib/runtime/componentNormalizer.js\\\");\\n\\n\\n\\n\\n\\n/* normalize component */\\n\\nvar component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__[\\\"default\\\"])(\\n  _App_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__[\\\"default\\\"],\\n  _App_vue_vue_type_template_id_278f674b__WEBPACK_IMPORTED_MODULE_0__[\\\"render\\\"],\\n  _App_vue_vue_type_template_id_278f674b__WEBPACK_IMPORTED_MODULE_0__[\\\"staticRenderFns\\\"],\\n  false,\\n  null,\\n  null,\\n  null\\n  \\n)\\n\\n/* hot reload */\\nif (false) { var api; }\\ncomponent.options.__file = \\\"client/App.vue\\\"\\n/* harmony default export */ __webpack_exports__[\\\"default\\\"] = (component.exports);\\n\\n//# sourceURL=webpack:///./client/App.vue?\");\n\n/***/ }),\n\n/***/ \"./client/App.vue?vue&type=script&lang=js\":\n/*!************************************************!*\\\n  !*** ./client/App.vue?vue&type=script&lang=js ***!\n  \\************************************************/\n/*! exports provided: default */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../node_modules/babel-loader/lib!../node_modules/vue-loader/lib??vue-loader-options!./App.vue?vue&type=script&lang=js */ \\\"./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js??vue-loader-options!./client/App.vue?vue&type=script&lang=js\\\");\\n/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__[\\\"default\\\"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__[\\\"default\\\"]); \\n\\n//# sourceURL=webpack:///./client/App.vue?\");\n\n/***/ }),\n\n/***/ \"./client/App.vue?vue&type=template&id=278f674b\":\n/*!******************************************************!*\\\n  !*** ./client/App.vue?vue&type=template&id=278f674b ***!\n  \\******************************************************/\n/*! exports provided: render, staticRenderFns */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\neval(\"__webpack_require__.r(__webpack_exports__);\\n/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_template_id_278f674b__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../node_modules/vue-loader/lib??vue-loader-options!./App.vue?vue&type=template&id=278f674b */ \\\"./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib/index.js??vue-loader-options!./client/App.vue?vue&type=template&id=278f674b\\\");\\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \\\"render\\\", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_template_id_278f674b__WEBPACK_IMPORTED_MODULE_0__[\\\"render\\\"]; });\\n\\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \\\"staticRenderFns\\\", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_App_vue_vue_type_template_id_278f674b__WEBPACK_IMPORTED_MODULE_0__[\\\"staticRenderFns\\\"]; });\\n\\n\\n\\n//# sourceURL=webpack:///./client/App.vue?\");\n\n/***/ })\n/******/ });\n"
  },
  {
    "path": "test/stats/with-missing-parsed-module/stats.json",
    "content": "{\n  \"errors\": [],\n  \"warnings\": [],\n  \"version\": \"4.8.2\",\n  \"hash\": \"3c8608aea48b794f4b86\",\n  \"time\": 1782,\n  \"builtAt\": 1526083245813,\n  \"outputPath\": \"/lpdb/bundles\",\n  \"publicPath\": \"/static/bundles/\",\n  \"assetsByChunkName\": {\n    \"main\": [\n      \"main.bundle.1866c96b564d4c893baa.css\",\n      \"bundle.js\"\n    ]\n  },\n  \"assets\": [\n    {\n      \"name\": \"bundle.js\",\n      \"size\": 335046,\n      \"chunks\": [\n        \"main\"\n      ],\n      \"chunkNames\": [\n        \"main\"\n      ],\n      \"emitted\": true\n    }\n  ],\n  \"filteredAssets\": 0,\n  \"entrypoints\": {\n    \"main\": {\n      \"chunks\": [\n        \"main\"\n      ],\n      \"assets\": [\n        \"main.bundle.1866c96b564d4c893baa.css\",\n        \"bundle.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    }\n  },\n  \"namedChunkGroups\": {\n    \"main\": {\n      \"chunks\": [\n        \"main\"\n      ],\n      \"assets\": [\n        \"main.bundle.1866c96b564d4c893baa.css\",\n        \"bundle.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    }\n  },\n  \"chunks\": [\n    {\n      \"id\": \"main\",\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"size\": 316495,\n      \"names\": [\n        \"main\"\n      ],\n      \"files\": [\n        \"main.bundle.1866c96b564d4c893baa.css\",\n        \"bundle.js\"\n      ],\n      \"hash\": \"6ccc2c99f7fd9d84fd66\",\n      \"siblings\": [],\n      \"parents\": [],\n      \"children\": [],\n      \"childrenByOrder\": {},\n      \"modules\": [\n        {\n          \"id\": \"./client/App.vue\",\n          \"identifier\": \"/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue\",\n          \"name\": \"./client/App.vue\",\n          \"index\": 9,\n          \"index2\": 13,\n          \"size\": 1055,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            \"main\"\n          ],\n          \"issuer\": \"/lpdb/node_modules/babel-loader/lib/index.js!/lpdb/client/index.js\",\n          \"issuerId\": \"./client/index.js\",\n          \"issuerName\": \"./client/index.js\",\n          \"issuerPath\": [\n            {\n              \"id\": \"./client/index.js\",\n              \"identifier\": \"/lpdb/node_modules/babel-loader/lib/index.js!/lpdb/client/index.js\",\n              \"name\": \"./client/index.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": \"./client/index.js\",\n              \"moduleIdentifier\": \"/lpdb/node_modules/babel-loader/lib/index.js!/lpdb/client/index.js\",\n              \"module\": \"./client/index.js\",\n              \"moduleName\": \"./client/index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./App.vue\",\n              \"loc\": \"3:0-28\"\n            },\n            {\n              \"moduleId\": \"./client/index.js\",\n              \"moduleIdentifier\": \"/lpdb/node_modules/babel-loader/lib/index.js!/lpdb/client/index.js\",\n              \"module\": \"./client/index.js\",\n              \"moduleName\": \"./client/index.js\",\n              \"type\": \"harmony import specifier\",\n              \"userRequest\": \"./App.vue\",\n              \"loc\": \"7:13-16\"\n            }\n          ],\n          \"providedExports\": [\n            \"default\"\n          ],\n          \"optimizationBailout\": [],\n          \"depth\": 1\n        },\n        {\n          \"id\": \"./client/App.vue?vue&type=script&lang=js\",\n          \"identifier\": \"/lpdb/node_modules/vue-loader/lib/loaders/pitcher.js!/lpdb/node_modules/babel-loader/lib/index.js!/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue?vue&type=script&lang=js\",\n          \"name\": \"./client/App.vue?vue&type=script&lang=js\",\n          \"index\": 12,\n          \"index2\": 11,\n          \"size\": 438,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            \"main\"\n          ],\n          \"issuer\": \"/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue\",\n          \"issuerId\": \"./client/App.vue\",\n          \"issuerName\": \"./client/App.vue\",\n          \"issuerPath\": [\n            {\n              \"id\": \"./client/index.js\",\n              \"identifier\": \"/lpdb/node_modules/babel-loader/lib/index.js!/lpdb/client/index.js\",\n              \"name\": \"./client/index.js\"\n            },\n            {\n              \"id\": \"./client/App.vue\",\n              \"identifier\": \"/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue\",\n              \"name\": \"./client/App.vue\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": \"./client/App.vue\",\n              \"moduleIdentifier\": \"/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue\",\n              \"module\": \"./client/App.vue\",\n              \"moduleName\": \"./client/App.vue\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./App.vue?vue&type=script&lang=js\",\n              \"loc\": \"2:0-54\"\n            },\n            {\n              \"moduleId\": \"./client/App.vue\",\n              \"moduleIdentifier\": \"/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue\",\n              \"module\": \"./client/App.vue\",\n              \"moduleName\": \"./client/App.vue\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./App.vue?vue&type=script&lang=js\",\n              \"loc\": \"3:0-49\"\n            },\n            {\n              \"moduleId\": \"./client/App.vue\",\n              \"moduleIdentifier\": \"/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue\",\n              \"module\": \"./client/App.vue\",\n              \"moduleName\": \"./client/App.vue\",\n              \"type\": \"harmony export imported specifier\",\n              \"userRequest\": \"./App.vue?vue&type=script&lang=js\",\n              \"loc\": \"3:0-49\"\n            },\n            {\n              \"moduleId\": \"./client/App.vue\",\n              \"moduleIdentifier\": \"/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue\",\n              \"module\": \"./client/App.vue\",\n              \"moduleName\": \"./client/App.vue\",\n              \"type\": \"harmony import specifier\",\n              \"userRequest\": \"./App.vue?vue&type=script&lang=js\",\n              \"loc\": \"9:2-8\"\n            }\n          ],\n          \"providedExports\": [\n            \"default\"\n          ],\n          \"optimizationBailout\": [],\n          \"depth\": 2\n        },\n        {\n          \"id\": \"./client/App.vue?vue&type=template&id=278f674b\",\n          \"identifier\": \"/lpdb/node_modules/vue-loader/lib/loaders/pitcher.js!/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue?vue&type=template&id=278f674b\",\n          \"name\": \"./client/App.vue?vue&type=template&id=278f674b\",\n          \"index\": 10,\n          \"index2\": 9,\n          \"size\": 481,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            \"main\"\n          ],\n          \"issuer\": \"/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue\",\n          \"issuerId\": \"./client/App.vue\",\n          \"issuerName\": \"./client/App.vue\",\n          \"issuerPath\": [\n            {\n              \"id\": \"./client/index.js\",\n              \"identifier\": \"/lpdb/node_modules/babel-loader/lib/index.js!/lpdb/client/index.js\",\n              \"name\": \"./client/index.js\"\n            },\n            {\n              \"id\": \"./client/App.vue\",\n              \"identifier\": \"/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue\",\n              \"name\": \"./client/App.vue\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": \"./client/App.vue\",\n              \"moduleIdentifier\": \"/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue\",\n              \"module\": \"./client/App.vue\",\n              \"moduleName\": \"./client/App.vue\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./App.vue?vue&type=template&id=278f674b\",\n              \"loc\": \"1:0-81\"\n            },\n            {\n              \"moduleId\": \"./client/App.vue\",\n              \"moduleIdentifier\": \"/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue\",\n              \"module\": \"./client/App.vue\",\n              \"moduleName\": \"./client/App.vue\",\n              \"type\": \"harmony import specifier\",\n              \"userRequest\": \"./App.vue?vue&type=template&id=278f674b\",\n              \"loc\": \"10:2-8\"\n            },\n            {\n              \"moduleId\": \"./client/App.vue\",\n              \"moduleIdentifier\": \"/lpdb/node_modules/vue-loader/lib/index.js??vue-loader-options!/lpdb/client/App.vue\",\n              \"module\": \"./client/App.vue\",\n              \"moduleName\": \"./client/App.vue\",\n              \"type\": \"harmony import specifier\",\n              \"userRequest\": \"./App.vue?vue&type=template&id=278f674b\",\n              \"loc\": \"11:2-17\"\n            }\n          ],\n          \"providedExports\": [\n            \"render\",\n            \"staticRenderFns\"\n          ],\n          \"optimizationBailout\": [],\n          \"depth\": 2\n        },\n        {\n          \"id\": 0,\n          \"identifier\": \"css /lpdb/node_modules/css-loader/index.js!/lpdb/node_modules/bootstrap/dist/css/bootstrap-reboot.css 0\",\n          \"name\": \"css ./node_modules/css-loader!./node_modules/bootstrap/dist/css/bootstrap-reboot.css\",\n          \"index\": 2,\n          \"index2\": 0,\n          \"size\": 4807,\n          \"built\": false,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            \"main\"\n          ],\n          \"issuer\": \"/lpdb/node_modules/mini-css-extract-plugin/dist/loader.js!/lpdb/node_modules/css-loader/index.js!/lpdb/node_modules/postcss-loader/lib/index.js!/lpdb/node_modules/sass-loader/lib/loader.js!/lpdb/client/index.scss\",\n          \"issuerId\": \"./client/index.scss\",\n          \"issuerName\": \"./client/index.scss\",\n          \"issuerPath\": [\n            {\n              \"id\": \"./client/index.js\",\n              \"identifier\": \"/lpdb/node_modules/babel-loader/lib/index.js!/lpdb/client/index.js\",\n              \"name\": \"./client/index.js\"\n            },\n            {\n              \"id\": \"./client/index.scss\",\n              \"identifier\": \"/lpdb/node_modules/mini-css-extract-plugin/dist/loader.js!/lpdb/node_modules/css-loader/index.js!/lpdb/node_modules/postcss-loader/lib/index.js!/lpdb/node_modules/sass-loader/lib/loader.js!/lpdb/client/index.scss\",\n              \"name\": \"./client/index.scss\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": \"./client/index.scss\",\n              \"moduleIdentifier\": \"/lpdb/node_modules/mini-css-extract-plugin/dist/loader.js!/lpdb/node_modules/css-loader/index.js!/lpdb/node_modules/postcss-loader/lib/index.js!/lpdb/node_modules/sass-loader/lib/loader.js!/lpdb/client/index.scss\",\n              \"module\": \"./client/index.scss\",\n              \"moduleName\": \"./client/index.scss\"\n            }\n          ],\n          \"providedExports\": null,\n          \"optimizationBailout\": [],\n          \"depth\": 2\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"main\",\n          \"request\": \"index.js\",\n          \"reasons\": []\n        }\n      ]\n    }\n  ],\n  \"filteredModules\": 0,\n  \"children\": [\n    {\n      \"errors\": [],\n      \"warnings\": [],\n      \"publicPath\": \"/static/bundles/\",\n      \"outputPath\": \"/lpdb/bundles\",\n      \"assetsByChunkName\": {},\n      \"assets\": [],\n      \"filteredAssets\": 0,\n      \"entrypoints\": {\n        \"mini-css-extract-plugin\": {\n          \"chunks\": [\n            \"mini-css-extract-plugin\"\n          ],\n          \"assets\": [\n            \"*\"\n          ],\n          \"children\": {},\n          \"childAssets\": {}\n        }\n      },\n      \"namedChunkGroups\": {\n        \"mini-css-extract-plugin\": {\n          \"chunks\": [\n            \"mini-css-extract-plugin\"\n          ],\n          \"assets\": [\n            \"*\"\n          ],\n          \"children\": {},\n          \"childAssets\": {}\n        }\n      },\n      \"chunks\": [\n        {\n          \"id\": \"mini-css-extract-plugin\",\n          \"rendered\": true,\n          \"initial\": true,\n          \"entry\": true,\n          \"size\": 7897,\n          \"names\": [\n            \"mini-css-extract-plugin\"\n          ],\n          \"files\": [\n            \"*\"\n          ],\n          \"hash\": \"0a66b245ce5674406bd4\",\n          \"siblings\": [],\n          \"parents\": [],\n          \"children\": [],\n          \"childrenByOrder\": {},\n          \"filteredModules\": 0,\n          \"origins\": [\n            {\n              \"module\": \"\",\n              \"moduleIdentifier\": \"\",\n              \"moduleName\": \"\",\n              \"loc\": \"mini-css-extract-plugin\",\n              \"request\": \"!!/lpdb/node_modules/css-loader/index.js!/lpdb/node_modules/postcss-loader/lib/index.js!/lpdb/node_modules/sass-loader/lib/loader.js!/lpdb/client/index.scss\",\n              \"reasons\": []\n            }\n          ]\n        }\n      ],\n      \"filteredModules\": 0,\n      \"children\": [],\n      \"name\": \"mini-css-extract-plugin node_modules/css-loader/index.js!node_modules/postcss-loader/lib/index.js!node_modules/sass-loader/lib/loader.js!client/index.scss\"\n    }\n  ]\n}\n"
  },
  {
    "path": "test/stats/with-module-concatenation-info/bundle.js",
    "content": "!function(e){var r={};function t(n){if(r[n])return r[n].exports;var o=r[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,t),o.l=!0,o.exports}t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{configurable:!1,enumerable:!0,get:n})},t.r=function(e){Object.defineProperty(e,\"__esModule\",{value:!0})},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,\"a\",r),r},t.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},t.p=\"\",t(t.s=0)}([function(e,r,t){\"use strict\";t.r(r);console.log(\"a1\",\"b\",\"c\",\"d\",\"e\")}]);"
  },
  {
    "path": "test/stats/with-module-concatenation-info/expected-chart-data.js",
    "content": "module.exports = {\n  label: 'index.js + 5 modules (concatenated)',\n  concatenated: true,\n  statSize: 332,\n  parsedSize: 0,\n  gzipSize: 0,\n  groups: [\n    {\n      inaccurateSizes: true,\n      gzipSize: 0,\n      id: null,\n      label: 'index.js',\n      parsedSize: 0,\n      path: './index.js + 5 modules (concatenated)/index.js',\n      statSize: 196\n    },\n    {\n      inaccurateSizes: true,\n      gzipSize: 0,\n      id: null,\n      label: 'a.js',\n      parsedSize: 0,\n      path: './index.js + 5 modules (concatenated)/a.js',\n      statSize: 48\n    },\n    {\n      label: 'modules-1',\n      gzipSize: 0,\n      inaccurateSizes: true,\n      parsedSize: 0,\n      path: './index.js + 5 modules (concatenated)/modules-1',\n      statSize: 44,\n      groups: [\n        {\n          inaccurateSizes: true,\n          gzipSize: 0,\n          id: null,\n          label: 'b.js',\n          parsedSize: 0,\n          path: './index.js + 5 modules (concatenated)/modules-1/b.js',\n          statSize: 22\n        },\n        {\n          inaccurateSizes: true,\n          gzipSize: 0,\n          id: null,\n          label: 'c.js',\n          parsedSize: 0,\n          path: './index.js + 5 modules (concatenated)/modules-1/c.js',\n          statSize: 22\n        }\n      ]\n    },\n    {\n      label: 'modules-2',\n      inaccurateSizes: true,\n      gzipSize: 0,\n      parsedSize: 0,\n      path: './index.js + 5 modules (concatenated)/modules-2',\n      statSize: 44,\n      groups: [\n        {\n          inaccurateSizes: true,\n          gzipSize: 0,\n          id: null,\n          label: 'd.js',\n          parsedSize: 0,\n          path: './index.js + 5 modules (concatenated)/modules-2/d.js',\n          statSize: 22\n        },\n        {\n          inaccurateSizes: true,\n          gzipSize: 0,\n          id: null,\n          label: 'e.js',\n          parsedSize: 0,\n          path: './index.js + 5 modules (concatenated)/modules-2/e.js',\n          statSize: 22\n        }\n      ]\n    }\n  ]\n};\n"
  },
  {
    "path": "test/stats/with-module-concatenation-info/stats.json",
    "content": "{\n  \"errors\": [],\n  \"warnings\": [],\n  \"version\": \"4.0.0\",\n  \"hash\": \"d8c858adcd390ee63793\",\n  \"time\": 1129,\n  \"builtAt\": 1519570526379,\n  \"publicPath\": \"\",\n  \"outputPath\": \"/Volumes/Work/webpack-bundle-analyzer/test/output\",\n  \"assetsByChunkName\": {\n    \"main\": \"bundle.js\"\n  },\n  \"assets\": [\n    {\n      \"name\": \"bundle.js\",\n      \"size\": 600,\n      \"chunks\": [\n        0\n      ],\n      \"chunkNames\": [\n        \"main\"\n      ],\n      \"emitted\": true\n    }\n  ],\n  \"filteredAssets\": 0,\n  \"entrypoints\": {\n    \"main\": {\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [\n        \"bundle.js\"\n      ]\n    }\n  },\n  \"chunks\": [\n    {\n      \"id\": 0,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"size\": 332,\n      \"names\": [\n        \"main\"\n      ],\n      \"files\": [\n        \"bundle.js\"\n      ],\n      \"hash\": \"007330edb8c53027cbbc\",\n      \"siblings\": [],\n      \"parents\": [],\n      \"children\": [],\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"/test/wp4/index.js e28de86a36ac92369ef12de880629ef9\",\n          \"name\": \"./index.js + 5 modules\",\n          \"index\": 0,\n          \"index2\": 5,\n          \"size\": 332,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            0\n          ],\n          \"assets\": [],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./index.js\",\n              \"loc\": \"main\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [],\n          \"optimizationBailout\": [],\n          \"depth\": 0,\n          \"modules\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/test/wp4/index.js\",\n              \"name\": \"./index.js\",\n              \"index\": 0,\n              \"index2\": 5,\n              \"size\": 196,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [],\n              \"assets\": [],\n              \"issuer\": null,\n              \"issuerId\": null,\n              \"issuerName\": null,\n              \"issuerPath\": null,\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": null,\n                  \"module\": null,\n                  \"moduleName\": null,\n                  \"type\": \"single entry\",\n                  \"userRequest\": \"./index.js\",\n                  \"loc\": \"main\"\n                }\n              ],\n              \"usedExports\": true,\n              \"providedExports\": [],\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is not an ECMAScript module\",\n                \"ModuleConcatenation bailout: Module is an entry point\"\n              ],\n              \"depth\": 0,\n              \"source\": \"import { a1 } from './a';\\nimport { b } from './modules-1/b';\\nimport { c } from './modules-1/c';\\nimport { d } from './modules-2/d';\\nimport { e } from './modules-2/e';\\n\\nconsole.log(a1, b, c, d, e);\\n\"\n            },\n            {\n              \"id\": null,\n              \"identifier\": \"/test/wp4/a.js\",\n              \"name\": \"./a.js\",\n              \"index\": 1,\n              \"index2\": 0,\n              \"size\": 48,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [],\n              \"assets\": [],\n              \"issuer\": \"/test/wp4/index.js\",\n              \"issuerId\": null,\n              \"issuerName\": \"./index.js\",\n              \"issuerPath\": [\n                {\n                  \"id\": null,\n                  \"identifier\": \"/test/wp4/index.js\",\n                  \"name\": \"./index.js\"\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/test/wp4/index.js\",\n                  \"module\": \"./index.js\",\n                  \"moduleName\": \"./index.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"1:0-25\"\n                },\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/test/wp4/index.js\",\n                  \"module\": \"./index.js\",\n                  \"moduleName\": \"./index.js\",\n                  \"type\": \"harmony import specifier\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"7:12-14\"\n                }\n              ],\n              \"usedExports\": [\n                \"a1\"\n              ],\n              \"providedExports\": [\n                \"a1\",\n                \"a2\"\n              ],\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n              ],\n              \"depth\": 1,\n              \"source\": \"export const a1 = 'a1';\\nexport const a2 = 'a2';\\n\"\n            },\n            {\n              \"id\": null,\n              \"identifier\": \"/test/wp4/modules-1/b.js\",\n              \"name\": \"./modules-1/b.js\",\n              \"index\": 2,\n              \"index2\": 1,\n              \"size\": 22,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [],\n              \"assets\": [],\n              \"issuer\": \"/test/wp4/index.js\",\n              \"issuerId\": null,\n              \"issuerName\": \"./index.js\",\n              \"issuerPath\": [\n                {\n                  \"id\": null,\n                  \"identifier\": \"/test/wp4/index.js\",\n                  \"name\": \"./index.js\"\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/test/wp4/index.js\",\n                  \"module\": \"./index.js\",\n                  \"moduleName\": \"./index.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"userRequest\": \"./modules-1/b\",\n                  \"loc\": \"2:0-34\"\n                },\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/test/wp4/index.js\",\n                  \"module\": \"./index.js\",\n                  \"moduleName\": \"./index.js\",\n                  \"type\": \"harmony import specifier\",\n                  \"userRequest\": \"./modules-1/b\",\n                  \"loc\": \"7:16-17\"\n                }\n              ],\n              \"usedExports\": [\n                \"b\"\n              ],\n              \"providedExports\": [\n                \"b\"\n              ],\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n              ],\n              \"depth\": 1,\n              \"source\": \"export const b = 'b';\\n\"\n            },\n            {\n              \"id\": null,\n              \"identifier\": \"/test/wp4/modules-1/c.js\",\n              \"name\": \"./modules-1/c.js\",\n              \"index\": 3,\n              \"index2\": 2,\n              \"size\": 22,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [],\n              \"assets\": [],\n              \"issuer\": \"/test/wp4/index.js\",\n              \"issuerId\": null,\n              \"issuerName\": \"./index.js\",\n              \"issuerPath\": [\n                {\n                  \"id\": null,\n                  \"identifier\": \"/test/wp4/index.js\",\n                  \"name\": \"./index.js\"\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/test/wp4/index.js\",\n                  \"module\": \"./index.js\",\n                  \"moduleName\": \"./index.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"userRequest\": \"./modules-1/c\",\n                  \"loc\": \"3:0-34\"\n                },\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/test/wp4/index.js\",\n                  \"module\": \"./index.js\",\n                  \"moduleName\": \"./index.js\",\n                  \"type\": \"harmony import specifier\",\n                  \"userRequest\": \"./modules-1/c\",\n                  \"loc\": \"7:19-20\"\n                }\n              ],\n              \"usedExports\": [\n                \"c\"\n              ],\n              \"providedExports\": [\n                \"c\"\n              ],\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n              ],\n              \"depth\": 1,\n              \"source\": \"export const c = 'c';\\n\"\n            },\n            {\n              \"id\": null,\n              \"identifier\": \"/test/wp4/modules-2/d.js\",\n              \"name\": \"./modules-2/d.js\",\n              \"index\": 4,\n              \"index2\": 3,\n              \"size\": 22,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [],\n              \"assets\": [],\n              \"issuer\": \"/test/wp4/index.js\",\n              \"issuerId\": null,\n              \"issuerName\": \"./index.js\",\n              \"issuerPath\": [\n                {\n                  \"id\": null,\n                  \"identifier\": \"/test/wp4/index.js\",\n                  \"name\": \"./index.js\"\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/test/wp4/index.js\",\n                  \"module\": \"./index.js\",\n                  \"moduleName\": \"./index.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"userRequest\": \"./modules-2/d\",\n                  \"loc\": \"4:0-34\"\n                },\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/test/wp4/index.js\",\n                  \"module\": \"./index.js\",\n                  \"moduleName\": \"./index.js\",\n                  \"type\": \"harmony import specifier\",\n                  \"userRequest\": \"./modules-2/d\",\n                  \"loc\": \"7:22-23\"\n                }\n              ],\n              \"usedExports\": [\n                \"d\"\n              ],\n              \"providedExports\": [\n                \"d\"\n              ],\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n              ],\n              \"depth\": 1,\n              \"source\": \"export const d = 'd';\\n\"\n            },\n            {\n              \"id\": null,\n              \"identifier\": \"/test/wp4/modules-2/e.js\",\n              \"name\": \"./modules-2/e.js\",\n              \"index\": 5,\n              \"index2\": 4,\n              \"size\": 22,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [],\n              \"assets\": [],\n              \"issuer\": \"/test/wp4/index.js\",\n              \"issuerId\": null,\n              \"issuerName\": \"./index.js\",\n              \"issuerPath\": [\n                {\n                  \"id\": null,\n                  \"identifier\": \"/test/wp4/index.js\",\n                  \"name\": \"./index.js\"\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/test/wp4/index.js\",\n                  \"module\": \"./index.js\",\n                  \"moduleName\": \"./index.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"userRequest\": \"./modules-2/e\",\n                  \"loc\": \"5:0-34\"\n                },\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/test/wp4/index.js\",\n                  \"module\": \"./index.js\",\n                  \"moduleName\": \"./index.js\",\n                  \"type\": \"harmony import specifier\",\n                  \"userRequest\": \"./modules-2/e\",\n                  \"loc\": \"7:25-26\"\n                }\n              ],\n              \"usedExports\": [\n                \"e\"\n              ],\n              \"providedExports\": [\n                \"e\"\n              ],\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n              ],\n              \"depth\": 1,\n              \"source\": \"export const e = 'e';\\n\"\n            }\n          ],\n          \"filteredModules\": 0\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"main\",\n          \"request\": \"./index.js\",\n          \"reasons\": []\n        }\n      ]\n    }\n  ],\n  \"modules\": [\n    {\n      \"id\": 0,\n      \"identifier\": \"/test/wp4/index.js e28de86a36ac92369ef12de880629ef9\",\n      \"name\": \"./index.js + 5 modules\",\n      \"index\": 0,\n      \"index2\": 5,\n      \"size\": 332,\n      \"cacheable\": true,\n      \"built\": true,\n      \"optional\": false,\n      \"prefetched\": false,\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [],\n      \"issuer\": null,\n      \"issuerId\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"reasons\": [\n        {\n          \"moduleId\": null,\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"type\": \"single entry\",\n          \"userRequest\": \"./index.js\",\n          \"loc\": \"main\"\n        }\n      ],\n      \"usedExports\": true,\n      \"providedExports\": [],\n      \"optimizationBailout\": [],\n      \"depth\": 0,\n      \"modules\": [\n        {\n          \"id\": null,\n          \"identifier\": \"/test/wp4/index.js\",\n          \"name\": \"./index.js\",\n          \"index\": 0,\n          \"index2\": 5,\n          \"size\": 196,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [],\n          \"assets\": [],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./index.js\",\n              \"loc\": \"main\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\",\n            \"ModuleConcatenation bailout: Module is an entry point\"\n          ],\n          \"depth\": 0,\n          \"source\": \"import { a1 } from './a';\\nimport { b } from './modules-1/b';\\nimport { c } from './modules-1/c';\\nimport { d } from './modules-2/d';\\nimport { e } from './modules-2/e';\\n\\nconsole.log(a1, b, c, d, e);\\n\"\n        },\n        {\n          \"id\": null,\n          \"identifier\": \"/test/wp4/a.js\",\n          \"name\": \"./a.js\",\n          \"index\": 1,\n          \"index2\": 0,\n          \"size\": 48,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [],\n          \"assets\": [],\n          \"issuer\": \"/test/wp4/index.js\",\n          \"issuerId\": null,\n          \"issuerName\": \"./index.js\",\n          \"issuerPath\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/test/wp4/index.js\",\n              \"name\": \"./index.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/test/wp4/index.js\",\n              \"module\": \"./index.js\",\n              \"moduleName\": \"./index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"1:0-25\"\n            },\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/test/wp4/index.js\",\n              \"module\": \"./index.js\",\n              \"moduleName\": \"./index.js\",\n              \"type\": \"harmony import specifier\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"7:12-14\"\n            }\n          ],\n          \"usedExports\": [\n            \"a1\"\n          ],\n          \"providedExports\": [\n            \"a1\",\n            \"a2\"\n          ],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 1,\n          \"source\": \"export const a1 = 'a1';\\nexport const a2 = 'a2';\\n\"\n        },\n        {\n          \"id\": null,\n          \"identifier\": \"/test/wp4/modules-1/b.js\",\n          \"name\": \"./modules-1/b.js\",\n          \"index\": 2,\n          \"index2\": 1,\n          \"size\": 22,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [],\n          \"assets\": [],\n          \"issuer\": \"/test/wp4/index.js\",\n          \"issuerId\": null,\n          \"issuerName\": \"./index.js\",\n          \"issuerPath\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/test/wp4/index.js\",\n              \"name\": \"./index.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/test/wp4/index.js\",\n              \"module\": \"./index.js\",\n              \"moduleName\": \"./index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./modules-1/b\",\n              \"loc\": \"2:0-34\"\n            },\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/test/wp4/index.js\",\n              \"module\": \"./index.js\",\n              \"moduleName\": \"./index.js\",\n              \"type\": \"harmony import specifier\",\n              \"userRequest\": \"./modules-1/b\",\n              \"loc\": \"7:16-17\"\n            }\n          ],\n          \"usedExports\": [\n            \"b\"\n          ],\n          \"providedExports\": [\n            \"b\"\n          ],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 1,\n          \"source\": \"export const b = 'b';\\n\"\n        },\n        {\n          \"id\": null,\n          \"identifier\": \"/test/wp4/modules-1/c.js\",\n          \"name\": \"./modules-1/c.js\",\n          \"index\": 3,\n          \"index2\": 2,\n          \"size\": 22,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [],\n          \"assets\": [],\n          \"issuer\": \"/test/wp4/index.js\",\n          \"issuerId\": null,\n          \"issuerName\": \"./index.js\",\n          \"issuerPath\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/test/wp4/index.js\",\n              \"name\": \"./index.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/test/wp4/index.js\",\n              \"module\": \"./index.js\",\n              \"moduleName\": \"./index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./modules-1/c\",\n              \"loc\": \"3:0-34\"\n            },\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/test/wp4/index.js\",\n              \"module\": \"./index.js\",\n              \"moduleName\": \"./index.js\",\n              \"type\": \"harmony import specifier\",\n              \"userRequest\": \"./modules-1/c\",\n              \"loc\": \"7:19-20\"\n            }\n          ],\n          \"usedExports\": [\n            \"c\"\n          ],\n          \"providedExports\": [\n            \"c\"\n          ],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 1,\n          \"source\": \"export const c = 'c';\\n\"\n        },\n        {\n          \"id\": null,\n          \"identifier\": \"/test/wp4/modules-2/d.js\",\n          \"name\": \"./modules-2/d.js\",\n          \"index\": 4,\n          \"index2\": 3,\n          \"size\": 22,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [],\n          \"assets\": [],\n          \"issuer\": \"/test/wp4/index.js\",\n          \"issuerId\": null,\n          \"issuerName\": \"./index.js\",\n          \"issuerPath\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/test/wp4/index.js\",\n              \"name\": \"./index.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/test/wp4/index.js\",\n              \"module\": \"./index.js\",\n              \"moduleName\": \"./index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./modules-2/d\",\n              \"loc\": \"4:0-34\"\n            },\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/test/wp4/index.js\",\n              \"module\": \"./index.js\",\n              \"moduleName\": \"./index.js\",\n              \"type\": \"harmony import specifier\",\n              \"userRequest\": \"./modules-2/d\",\n              \"loc\": \"7:22-23\"\n            }\n          ],\n          \"usedExports\": [\n            \"d\"\n          ],\n          \"providedExports\": [\n            \"d\"\n          ],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 1,\n          \"source\": \"export const d = 'd';\\n\"\n        },\n        {\n          \"id\": null,\n          \"identifier\": \"/test/wp4/modules-2/e.js\",\n          \"name\": \"./modules-2/e.js\",\n          \"index\": 5,\n          \"index2\": 4,\n          \"size\": 22,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [],\n          \"assets\": [],\n          \"issuer\": \"/test/wp4/index.js\",\n          \"issuerId\": null,\n          \"issuerName\": \"./index.js\",\n          \"issuerPath\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/test/wp4/index.js\",\n              \"name\": \"./index.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/test/wp4/index.js\",\n              \"module\": \"./index.js\",\n              \"moduleName\": \"./index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./modules-2/e\",\n              \"loc\": \"5:0-34\"\n            },\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/test/wp4/index.js\",\n              \"module\": \"./index.js\",\n              \"moduleName\": \"./index.js\",\n              \"type\": \"harmony import specifier\",\n              \"userRequest\": \"./modules-2/e\",\n              \"loc\": \"7:25-26\"\n            }\n          ],\n          \"usedExports\": [\n            \"e\"\n          ],\n          \"providedExports\": [\n            \"e\"\n          ],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 1,\n          \"source\": \"export const e = 'e';\\n\"\n        }\n      ],\n      \"filteredModules\": 0\n    }\n  ],\n  \"filteredModules\": 0,\n  \"children\": []\n}\n"
  },
  {
    "path": "test/stats/with-modules-chunk.json",
    "content": "{\n  \"errors\": [],\n  \"warnings\": [],\n  \"version\": \"1.14.0\",\n  \"hash\": \"4e39ab22a848116a4c15\",\n  \"children\": [\n    {\n      \"errors\": [],\n      \"warnings\": [],\n      \"version\": \"1.14.0\",\n      \"hash\": \"4e39ab22a848116a4c15\",\n      \"time\": 79,\n      \"publicPath\": \"\",\n      \"assetsByChunkName\": {\n        \"bundle\": \"bundle.mjs\"\n      },\n      \"assets\": [\n        {\n          \"name\": \"bundle.mjs\",\n          \"size\": 1735,\n          \"chunks\": [0],\n          \"chunkNames\": [\"bundle\"],\n          \"emitted\": true\n        }\n      ],\n      \"chunks\": [\n        {\n          \"id\": 0,\n          \"rendered\": true,\n          \"initial\": true,\n          \"entry\": true,\n          \"extraAsync\": false,\n          \"size\": 141,\n          \"names\": [\"bundle\"],\n          \"files\": [\"bundle.mjs\"],\n          \"hash\": \"eb0091314b5c4ca75abf\",\n          \"parents\": [],\n          \"modules\": [\n            {\n              \"id\": 0,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"name\": \"./src/index.js\",\n              \"index\": 0,\n              \"index2\": 3,\n              \"size\": 54,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [0],\n              \"assets\": [],\n              \"issuer\": null,\n              \"profile\": {\n                \"factory\": 19,\n                \"building\": 15\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [],\n              \"source\": \"require('./a');\\nrequire('./b');\\nrequire('./a-clone');\\n\"\n            },\n            {\n              \"id\": 1,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n              \"name\": \"./src/a.js\",\n              \"index\": 1,\n              \"index2\": 0,\n              \"size\": 29,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [0],\n              \"assets\": [],\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"profile\": {\n                \"factory\": 8,\n                \"building\": 6\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": 0,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"type\": \"cjs require\",\n                  \"userRequest\": \"./a\",\n                  \"loc\": \"1:0-14\"\n                }\n              ],\n              \"source\": \"module.exports = 'module a';\\n\"\n            },\n            {\n              \"id\": 2,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n              \"name\": \"./src/b.js\",\n              \"index\": 2,\n              \"index2\": 1,\n              \"size\": 29,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [0],\n              \"assets\": [],\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"profile\": {\n                \"factory\": 9,\n                \"building\": 5\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": 0,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"type\": \"cjs require\",\n                  \"userRequest\": \"./b\",\n                  \"loc\": \"2:0-14\"\n                }\n              ],\n              \"source\": \"module.exports = 'module b';\\n\"\n            },\n            {\n              \"id\": 3,\n              \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a-clone.js\",\n              \"name\": \"./src/a-clone.js\",\n              \"index\": 3,\n              \"index2\": 2,\n              \"size\": 29,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [0],\n              \"assets\": [],\n              \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"profile\": {\n                \"factory\": 10,\n                \"building\": 5\n              },\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"reasons\": [\n                {\n                  \"moduleId\": 0,\n                  \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n                  \"module\": \"./src/index.js\",\n                  \"moduleName\": \"./src/index.js\",\n                  \"type\": \"cjs require\",\n                  \"userRequest\": \"./a-clone\",\n                  \"loc\": \"3:0-20\"\n                }\n              ],\n              \"source\": \"module.exports = 'module a';\\n\"\n            }\n          ],\n          \"filteredModules\": 0,\n          \"origins\": [\n            {\n              \"moduleId\": 0,\n              \"module\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"loc\": \"\",\n              \"name\": \"bundle\",\n              \"reasons\": []\n            }\n          ]\n        }\n      ],\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./src/index.js\",\n          \"index\": 0,\n          \"index2\": 3,\n          \"size\": 54,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [0],\n          \"assets\": [],\n          \"issuer\": null,\n          \"profile\": {\n            \"factory\": 19,\n            \"building\": 15\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [],\n          \"source\": \"require('./a');\\nrequire('./b');\\nrequire('./a-clone');\\n\"\n        },\n        {\n          \"id\": 1,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a.js\",\n          \"name\": \"./src/a.js\",\n          \"index\": 1,\n          \"index2\": 0,\n          \"size\": 29,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [0],\n          \"assets\": [],\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"profile\": {\n            \"factory\": 8,\n            \"building\": 6\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": 0,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"type\": \"cjs require\",\n              \"userRequest\": \"./a\",\n              \"loc\": \"1:0-14\"\n            }\n          ],\n          \"source\": \"module.exports = 'module a';\\n\"\n        },\n        {\n          \"id\": 2,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/b.js\",\n          \"name\": \"./src/b.js\",\n          \"index\": 2,\n          \"index2\": 1,\n          \"size\": 29,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [0],\n          \"assets\": [],\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"profile\": {\n            \"factory\": 9,\n            \"building\": 5\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": 0,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"type\": \"cjs require\",\n              \"userRequest\": \"./b\",\n              \"loc\": \"2:0-14\"\n            }\n          ],\n          \"source\": \"module.exports = 'module b';\\n\"\n        },\n        {\n          \"id\": 3,\n          \"identifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/a-clone.js\",\n          \"name\": \"./src/a-clone.js\",\n          \"index\": 3,\n          \"index2\": 2,\n          \"size\": 29,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [0],\n          \"assets\": [],\n          \"issuer\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n          \"profile\": {\n            \"factory\": 10,\n            \"building\": 5\n          },\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"reasons\": [\n            {\n              \"moduleId\": 0,\n              \"moduleIdentifier\": \"/Volumes/Work/webpack-bundle-analyzer/test/src/index.js\",\n              \"module\": \"./src/index.js\",\n              \"moduleName\": \"./src/index.js\",\n              \"type\": \"cjs require\",\n              \"userRequest\": \"./a-clone\",\n              \"loc\": \"3:0-20\"\n            }\n          ],\n          \"source\": \"module.exports = 'module a';\\n\"\n        }\n      ],\n      \"filteredModules\": 0,\n      \"children\": []\n    }\n  ]\n}\n"
  },
  {
    "path": "test/stats/with-modules-in-chunks/expected-chart-data.js",
    "content": "module.exports = [\n  {\n    'label': 'runtime.6afe30102d8fe7337431.js',\n    'statSize': 1053,\n    'groups': []\n  },\n  {\n    'label': 'polyfills.2903ad11212d7d797800.js',\n    'statSize': 101,\n    'groups': [\n      {\n        'label': 'node_modules/core-js/modules',\n        'path': './node_modules/core-js/modules',\n        'statSize': 101,\n        'groups': [\n          {\n            'id': '+rLv',\n            'label': '_html.js',\n            'path': './node_modules/core-js/modules/_html.js',\n            'statSize': 101\n          }\n        ]\n      }\n    ]\n  },\n  {\n    'label': 'main.e339f68cc77f07c43589.js',\n    'statSize': 160,\n    'groups': [\n      {\n        'label': 'src',\n        'path': './src',\n        'statSize': 160,\n        'groups': [\n          {\n            'id': 'crnd',\n            'label': '$$_lazy_route_resource lazy namespace object',\n            'path': './src/$$_lazy_route_resource lazy namespace object',\n            'statSize': 160\n          }\n        ]\n      }\n    ]\n  }\n];\n"
  },
  {
    "path": "test/stats/with-modules-in-chunks/stats.json",
    "content": "{\n  \"errors\": [],\n  \"warnings\": [],\n  \"version\": \"4.6.0\",\n  \"hash\": \"3e40877c6bf4ead7ce87\",\n  \"publicPath\": \"\",\n  \"outputPath\": \"/ng6-app\",\n  \"assetsByChunkName\": {\n    \"runtime\": \"runtime.6afe30102d8fe7337431.js\",\n    \"styles\": \"styles.34c57ab7888ec1573f9c.css\",\n    \"polyfills\": \"polyfills.2903ad11212d7d797800.js\",\n    \"main\": \"main.e339f68cc77f07c43589.js\"\n  },\n  \"assets\": [\n    {\n      \"name\": \"runtime.6afe30102d8fe7337431.js\",\n      \"size\": 1053,\n      \"chunks\": [\n        0\n      ],\n      \"chunkNames\": [\n        \"runtime\"\n      ],\n      \"emitted\": true\n    },\n    {\n      \"name\": \"styles.34c57ab7888ec1573f9c.css\",\n      \"size\": 0,\n      \"chunks\": [\n        1\n      ],\n      \"chunkNames\": [\n        \"styles\"\n      ],\n      \"emitted\": true\n    },\n    {\n      \"name\": \"polyfills.2903ad11212d7d797800.js\",\n      \"size\": 59561,\n      \"chunks\": [\n        2\n      ],\n      \"chunkNames\": [\n        \"polyfills\"\n      ],\n      \"emitted\": true\n    },\n    {\n      \"name\": \"main.e339f68cc77f07c43589.js\",\n      \"size\": 152607,\n      \"chunks\": [\n        3\n      ],\n      \"chunkNames\": [\n        \"main\"\n      ],\n      \"emitted\": true\n    },\n    {\n      \"name\": \"favicon.ico\",\n      \"size\": 5430,\n      \"chunks\": [],\n      \"chunkNames\": [],\n      \"emitted\": true\n    },\n    {\n      \"name\": \"stats.json\",\n      \"size\": 0,\n      \"chunks\": [],\n      \"chunkNames\": []\n    },\n    {\n      \"name\": \"3rdpartylicenses.txt\",\n      \"size\": 2179,\n      \"chunks\": [],\n      \"chunkNames\": []\n    },\n    {\n      \"name\": \"index.html\",\n      \"size\": 586,\n      \"chunks\": [],\n      \"chunkNames\": []\n    }\n  ],\n  \"filteredAssets\": 0,\n  \"entrypoints\": {\n    \"main\": {\n      \"chunks\": [\n        0,\n        3\n      ],\n      \"assets\": [\n        \"runtime.6afe30102d8fe7337431.js\",\n        \"main.e339f68cc77f07c43589.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    },\n    \"polyfills\": {\n      \"chunks\": [\n        0,\n        2\n      ],\n      \"assets\": [\n        \"runtime.6afe30102d8fe7337431.js\",\n        \"polyfills.2903ad11212d7d797800.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    },\n    \"styles\": {\n      \"chunks\": [\n        0,\n        1\n      ],\n      \"assets\": [\n        \"runtime.6afe30102d8fe7337431.js\",\n        \"styles.34c57ab7888ec1573f9c.css\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    }\n  },\n  \"chunks\": [\n    {\n      \"id\": 0,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"size\": 0,\n      \"names\": [\n        \"runtime\"\n      ],\n      \"files\": [\n        \"runtime.6afe30102d8fe7337431.js\"\n      ],\n      \"hash\": \"6afe30102d8fe7337431\",\n      \"siblings\": [\n        1,\n        2,\n        3\n      ],\n      \"parents\": [],\n      \"children\": [],\n      \"childrenByOrder\": {},\n      \"modules\": [],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"main\",\n          \"reasons\": []\n        },\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"polyfills\",\n          \"reasons\": []\n        },\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"styles\",\n          \"reasons\": []\n        }\n      ]\n    },\n    {\n      \"id\": 1,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": false,\n      \"size\": 147,\n      \"names\": [\n        \"styles\"\n      ],\n      \"files\": [\n        \"styles.34c57ab7888ec1573f9c.css\"\n      ],\n      \"hash\": \"eac73a092fc2e8501030\",\n      \"siblings\": [\n        0\n      ],\n      \"parents\": [],\n      \"children\": [],\n      \"childrenByOrder\": {},\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"css /Volumes/Work/ng6-app/node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!/Volumes/Work/ng6-app/node_modules/postcss-loader/lib/index.js??extracted!/Volumes/Work/ng6-app/src/styles.css 0\",\n          \"name\": \"css ./node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!./node_modules/postcss-loader/lib??extracted!./src/styles.css\",\n          \"index\": 148,\n          \"index2\": 146,\n          \"size\": 80,\n          \"built\": false,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            1\n          ],\n          \"issuer\": \"/Volumes/Work/ng6-app/node_modules/mini-css-extract-plugin/dist/loader.js!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!/Volumes/Work/ng6-app/node_modules/postcss-loader/lib/index.js??extracted!/Volumes/Work/ng6-app/src/styles.css\",\n          \"issuerId\": \"OmL/\",\n          \"issuerName\": \"./src/styles.css\",\n          \"issuerPath\": [\n            {\n              \"id\": 1,\n              \"identifier\": \"multi /Volumes/Work/ng6-app/src/styles.css\",\n              \"name\": \"multi ./src/styles.css\"\n            },\n            {\n              \"id\": \"OmL/\",\n              \"identifier\": \"/Volumes/Work/ng6-app/node_modules/mini-css-extract-plugin/dist/loader.js!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!/Volumes/Work/ng6-app/node_modules/postcss-loader/lib/index.js??extracted!/Volumes/Work/ng6-app/src/styles.css\",\n              \"name\": \"./src/styles.css\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": \"OmL/\",\n              \"moduleIdentifier\": \"/Volumes/Work/ng6-app/node_modules/mini-css-extract-plugin/dist/loader.js!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!/Volumes/Work/ng6-app/node_modules/postcss-loader/lib/index.js??extracted!/Volumes/Work/ng6-app/src/styles.css\",\n              \"module\": \"./src/styles.css\",\n              \"moduleName\": \"./src/styles.css\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": null,\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 2\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"styles\",\n          \"reasons\": []\n        }\n      ]\n    },\n    {\n      \"id\": 2,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": false,\n      \"size\": 183344,\n      \"names\": [\n        \"polyfills\"\n      ],\n      \"files\": [\n        \"polyfills.2903ad11212d7d797800.js\"\n      ],\n      \"hash\": \"2903ad11212d7d797800\",\n      \"siblings\": [\n        0\n      ],\n      \"parents\": [],\n      \"children\": [],\n      \"childrenByOrder\": {},\n      \"modules\": [\n        {\n          \"id\": \"+rLv\",\n          \"identifier\": \"/Volumes/Work/ng6-app/node_modules/cache-loader/dist/cjs.js??ref--8-0!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--8-1!/Volumes/Work/ng6-app/node_modules/core-js/modules/_html.js\",\n          \"name\": \"./node_modules/core-js/modules/_html.js\",\n          \"index\": 96,\n          \"index2\": 88,\n          \"size\": 101,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            2\n          ],\n          \"issuer\": \"/Volumes/Work/ng6-app/node_modules/cache-loader/dist/cjs.js??ref--8-0!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--8-1!/Volumes/Work/ng6-app/node_modules/core-js/modules/_object-create.js\",\n          \"issuerId\": \"Kuth\",\n          \"issuerName\": \"./node_modules/core-js/modules/_object-create.js\",\n          \"issuerPath\": [\n            {\n              \"id\": 2,\n              \"identifier\": \"multi /Volumes/Work/ng6-app/src/polyfills.ts\",\n              \"name\": \"multi ./src/polyfills.ts\"\n            },\n            {\n              \"id\": \"hN/g\",\n              \"identifier\": \"/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--17-0!/Volumes/Work/ng6-app/node_modules/@ngtools/webpack/src/index.js!/Volumes/Work/ng6-app/src/polyfills.ts\",\n              \"name\": \"./src/polyfills.ts\"\n            },\n            {\n              \"id\": \"FZcq\",\n              \"identifier\": \"/Volumes/Work/ng6-app/node_modules/cache-loader/dist/cjs.js??ref--8-0!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--8-1!/Volumes/Work/ng6-app/node_modules/core-js/es7/reflect.js\",\n              \"name\": \"./node_modules/core-js/es7/reflect.js\"\n            },\n            {\n              \"id\": \"uAtd\",\n              \"identifier\": \"/Volumes/Work/ng6-app/node_modules/cache-loader/dist/cjs.js??ref--8-0!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--8-1!/Volumes/Work/ng6-app/node_modules/core-js/modules/es7.reflect.get-metadata-keys.js\",\n              \"name\": \"./node_modules/core-js/modules/es7.reflect.get-metadata-keys.js\"\n            },\n            {\n              \"id\": \"T39b\",\n              \"identifier\": \"/Volumes/Work/ng6-app/node_modules/cache-loader/dist/cjs.js??ref--8-0!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--8-1!/Volumes/Work/ng6-app/node_modules/core-js/modules/es6.set.js\",\n              \"name\": \"./node_modules/core-js/modules/es6.set.js\"\n            },\n            {\n              \"id\": \"wmvG\",\n              \"identifier\": \"/Volumes/Work/ng6-app/node_modules/cache-loader/dist/cjs.js??ref--8-0!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--8-1!/Volumes/Work/ng6-app/node_modules/core-js/modules/_collection-strong.js\",\n              \"name\": \"./node_modules/core-js/modules/_collection-strong.js\"\n            },\n            {\n              \"id\": \"Kuth\",\n              \"identifier\": \"/Volumes/Work/ng6-app/node_modules/cache-loader/dist/cjs.js??ref--8-0!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--8-1!/Volumes/Work/ng6-app/node_modules/core-js/modules/_object-create.js\",\n              \"name\": \"./node_modules/core-js/modules/_object-create.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": \"Kuth\",\n              \"moduleIdentifier\": \"/Volumes/Work/ng6-app/node_modules/cache-loader/dist/cjs.js??ref--8-0!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--8-1!/Volumes/Work/ng6-app/node_modules/core-js/modules/_object-create.js\",\n              \"module\": \"./node_modules/core-js/modules/_object-create.js\",\n              \"moduleName\": \"./node_modules/core-js/modules/_object-create.js\",\n              \"type\": \"cjs require\",\n              \"userRequest\": \"./_html\",\n              \"loc\": \"18:2-20\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": null,\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 7\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"polyfills\",\n          \"reasons\": []\n        }\n      ]\n    },\n    {\n      \"id\": 3,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": false,\n      \"size\": 1132413,\n      \"names\": [\n        \"main\"\n      ],\n      \"files\": [\n        \"main.e339f68cc77f07c43589.js\"\n      ],\n      \"hash\": \"e339f68cc77f07c43589\",\n      \"siblings\": [\n        0\n      ],\n      \"parents\": [],\n      \"children\": [],\n      \"childrenByOrder\": {},\n      \"modules\": [\n        {\n          \"id\": \"crnd\",\n          \"identifier\": \"/Volumes/Work/ng6-app/src/$$_lazy_route_resource lazy groupOptions: {} namespace object\",\n          \"name\": \"./src/$$_lazy_route_resource lazy namespace object\",\n          \"index\": 58,\n          \"index2\": 53,\n          \"size\": 160,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            3\n          ],\n          \"issuer\": \"/Volumes/Work/ng6-app/node_modules/cache-loader/dist/cjs.js??ref--8-0!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--8-1!/Volumes/Work/ng6-app/node_modules/@angular/core/fesm5/core.js\",\n          \"issuerId\": null,\n          \"issuerName\": \"./node_modules/@angular/core/fesm5/core.js\",\n          \"issuerPath\": [\n            {\n              \"id\": 3,\n              \"identifier\": \"multi /Volumes/Work/ng6-app/src/main.ts\",\n              \"name\": \"multi ./src/main.ts\"\n            },\n            {\n              \"id\": null,\n              \"identifier\": \"/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--17-0!/Volumes/Work/ng6-app/node_modules/@ngtools/webpack/src/index.js!/Volumes/Work/ng6-app/src/main.ts\",\n              \"name\": \"./src/main.ts\"\n            },\n            {\n              \"id\": null,\n              \"identifier\": \"/Volumes/Work/ng6-app/node_modules/cache-loader/dist/cjs.js??ref--8-0!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--8-1!/Volumes/Work/ng6-app/node_modules/@angular/core/fesm5/core.js\",\n              \"name\": \"./node_modules/@angular/core/fesm5/core.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": \"zUnb\",\n              \"moduleIdentifier\": \"/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--17-0!/Volumes/Work/ng6-app/node_modules/@ngtools/webpack/src/index.js!/Volumes/Work/ng6-app/src/main.ts 40d81dc475464ed670e8b87f50048d33\",\n              \"module\": \"./src/main.ts + 58 modules\",\n              \"moduleName\": \"./src/main.ts + 58 modules\",\n              \"type\": \"import() context lazy\",\n              \"userRequest\": \".\",\n              \"loc\": \"5518:15-36\"\n            },\n            {\n              \"moduleId\": \"zUnb\",\n              \"moduleIdentifier\": \"/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-optimizer/src/build-optimizer/webpack-loader.js??ref--17-0!/Volumes/Work/ng6-app/node_modules/@ngtools/webpack/src/index.js!/Volumes/Work/ng6-app/src/main.ts 40d81dc475464ed670e8b87f50048d33\",\n              \"module\": \"./src/main.ts + 58 modules\",\n              \"moduleName\": \"./src/main.ts + 58 modules\",\n              \"type\": \"import() context lazy\",\n              \"userRequest\": \".\",\n              \"loc\": \"5530:15-102\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": null,\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n          ],\n          \"depth\": 3\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"main\",\n          \"reasons\": []\n        }\n      ]\n    }\n  ],\n  \"children\": [\n    {\n      \"errors\": [],\n      \"warnings\": [],\n      \"publicPath\": \"\",\n      \"outputPath\": \"/Volumes/Work/ng6-app/dist/ng6-app\",\n      \"assetsByChunkName\": {},\n      \"assets\": [],\n      \"filteredAssets\": 0,\n      \"entrypoints\": {\n        \"mini-css-extract-plugin\": {\n          \"chunks\": [\n            0\n          ],\n          \"assets\": [\n            \"*\"\n          ],\n          \"children\": {},\n          \"childAssets\": {}\n        }\n      },\n      \"chunks\": [\n        {\n          \"id\": 0,\n          \"rendered\": true,\n          \"initial\": true,\n          \"entry\": true,\n          \"size\": 125,\n          \"names\": [\n            \"mini-css-extract-plugin\"\n          ],\n          \"files\": [\n            \"*\"\n          ],\n          \"hash\": \"86ef7ed56df014a3a96e\",\n          \"siblings\": [],\n          \"parents\": [],\n          \"children\": [],\n          \"childrenByOrder\": {},\n          \"modules\": [\n            {\n              \"id\": \"OCjF\",\n              \"identifier\": \"/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!/Volumes/Work/ng6-app/node_modules/postcss-loader/lib/index.js??extracted!/Volumes/Work/ng6-app/src/styles.css\",\n              \"name\": \"./node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!./node_modules/postcss-loader/lib??extracted!./src/styles.css\",\n              \"index\": 0,\n              \"index2\": 0,\n              \"size\": 125,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [\n                0\n              ],\n              \"issuer\": null,\n              \"issuerId\": null,\n              \"issuerName\": null,\n              \"issuerPath\": null,\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [],\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": null,\n                  \"module\": null,\n                  \"moduleName\": null,\n                  \"type\": \"single entry\",\n                  \"userRequest\": \"!!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!/Volumes/Work/ng6-app/node_modules/postcss-loader/lib/index.js??extracted!/Volumes/Work/ng6-app/src/styles.css\",\n                  \"loc\": \"mini-css-extract-plugin\"\n                }\n              ],\n              \"usedExports\": true,\n              \"providedExports\": null,\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n              ],\n              \"depth\": 0\n            }\n          ],\n          \"filteredModules\": 0,\n          \"origins\": [\n            {\n              \"module\": \"\",\n              \"moduleIdentifier\": \"\",\n              \"moduleName\": \"\",\n              \"loc\": \"mini-css-extract-plugin\",\n              \"request\": \"!!/Volumes/Work/ng6-app/node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!/Volumes/Work/ng6-app/node_modules/postcss-loader/lib/index.js??extracted!/Volumes/Work/ng6-app/src/styles.css\",\n              \"reasons\": []\n            }\n          ]\n        }\n      ],\n      \"children\": [],\n      \"name\": \"mini-css-extract-plugin node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!node_modules/postcss-loader/lib/index.js??extracted!src/styles.css\"\n    }\n  ]\n}\n"
  },
  {
    "path": "test/stats/with-multiple-entrypoints/expected-chart-data.js",
    "content": "module.exports = [\n  {\n    label: \"react-vendors.js\",\n    isAsset: true,\n    statSize: 138490,\n    groups: [\n      {\n        label: \"../node_modules\",\n        path: \"./../node_modules\",\n        statSize: 135827,\n        groups: [\n          {\n            label: \"object-assign\",\n            path: \"./../node_modules/object-assign\",\n            statSize: 2108,\n            groups: [\n              {\n                id: 320,\n                label: \"index.js\",\n                path: \"./../node_modules/object-assign/index.js\",\n                statSize: 2108,\n              },\n            ],\n            parsedSize: 0,\n            gzipSize: 0,\n          },\n          {\n            label: \"react-dom\",\n            path: \"./../node_modules/react-dom\",\n            statSize: 122051,\n            groups: [\n              {\n                label: \"cjs\",\n                path: \"./../node_modules/react-dom/cjs\",\n                statSize: 120688,\n                groups: [\n                  {\n                    id: 967,\n                    label: \"react-dom.production.min.js\",\n                    path: \"./../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                    statSize: 120688,\n                  },\n                ],\n                parsedSize: 0,\n                gzipSize: 0,\n              },\n              {\n                id: 316,\n                label: \"index.js\",\n                path: \"./../node_modules/react-dom/index.js\",\n                statSize: 1363,\n              },\n            ],\n            parsedSize: 0,\n            gzipSize: 0,\n          },\n          {\n            label: \"react\",\n            path: \"./../node_modules/react\",\n            statSize: 6640,\n            groups: [\n              {\n                label: \"cjs\",\n                path: \"./../node_modules/react/cjs\",\n                statSize: 6450,\n                groups: [\n                  {\n                    id: 426,\n                    label: \"react.production.min.js\",\n                    path: \"./../node_modules/react/cjs/react.production.min.js\",\n                    statSize: 6450,\n                  },\n                ],\n                parsedSize: 0,\n                gzipSize: 0,\n              },\n              {\n                id: 784,\n                label: \"index.js\",\n                path: \"./../node_modules/react/index.js\",\n                statSize: 190,\n              },\n            ],\n            parsedSize: 0,\n            gzipSize: 0,\n          },\n          {\n            label: \"scheduler\",\n            path: \"./../node_modules/scheduler\",\n            statSize: 5028,\n            groups: [\n              {\n                label: \"cjs\",\n                path: \"./../node_modules/scheduler/cjs\",\n                statSize: 4830,\n                groups: [\n                  {\n                    id: 475,\n                    label: \"scheduler.production.min.js\",\n                    path: \"./../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                    statSize: 4830,\n                  },\n                ],\n                parsedSize: 0,\n                gzipSize: 0,\n              },\n              {\n                id: 616,\n                label: \"index.js\",\n                path: \"./../node_modules/scheduler/index.js\",\n                statSize: 198,\n              },\n            ],\n            parsedSize: 0,\n            gzipSize: 0,\n          },\n        ],\n        parsedSize: 0,\n        gzipSize: 0,\n      },\n      {\n        label: \"node_modules/prop-types\",\n        path: \"./node_modules/prop-types\",\n        statSize: 2663,\n        groups: [\n          {\n            id: 703,\n            label: \"factoryWithThrowingShims.js\",\n            path: \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n            statSize: 1639,\n          },\n          {\n            id: 697,\n            label: \"index.js\",\n            path: \"./node_modules/prop-types/index.js\",\n            statSize: 710,\n          },\n          {\n            label: \"lib\",\n            path: \"./node_modules/prop-types/lib\",\n            statSize: 314,\n            groups: [\n              {\n                id: 414,\n                label: \"ReactPropTypesSecret.js\",\n                path: \"./node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n                statSize: 314,\n              },\n            ],\n            parsedSize: 0,\n            gzipSize: 0,\n          },\n        ],\n        parsedSize: 0,\n        gzipSize: 0,\n      },\n    ],\n    isInitialByEntrypoint: {\n      \"react-vendors\": true,\n    },\n  },\n  {\n    label: \"other-vendors.js\",\n    isAsset: true,\n    statSize: 561135,\n    groups: [\n      {\n        label: \"node_modules\",\n        path: \"./node_modules\",\n        statSize: 560989,\n        groups: [\n          {\n            label: \"isomorphic-fetch\",\n            path: \"./node_modules/isomorphic-fetch\",\n            statSize: 233,\n            groups: [\n              {\n                id: 301,\n                label: \"fetch-npm-browserify.js\",\n                path: \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                statSize: 233,\n              },\n            ],\n            parsedSize: 0,\n            gzipSize: 0,\n          },\n          {\n            label: \"lodash\",\n            path: \"./node_modules/lodash\",\n            statSize: 544098,\n            groups: [\n              {\n                id: 486,\n                label: \"lodash.js\",\n                path: \"./node_modules/lodash/lodash.js\",\n                statSize: 544098,\n              },\n            ],\n            parsedSize: 0,\n            gzipSize: 0,\n          },\n          {\n            label: \"whatwg-fetch\",\n            path: \"./node_modules/whatwg-fetch\",\n            statSize: 16658,\n            groups: [\n              {\n                id: 147,\n                label: \"fetch.js\",\n                path: \"./node_modules/whatwg-fetch/fetch.js\",\n                statSize: 16658,\n              },\n            ],\n            parsedSize: 0,\n            gzipSize: 0,\n          },\n        ],\n        parsedSize: 0,\n        gzipSize: 0,\n      },\n      {\n        id: 830,\n        label: \"other-vendors.js\",\n        path: \"./other-vendors.js\",\n        statSize: 146,\n      },\n    ],\n    isInitialByEntrypoint: {\n      \"other-vendors\": true,\n    },\n  },\n  {\n    label: \"runtime.js\",\n    isAsset: true,\n    statSize: 3205,\n    groups: [\n    ],\n    isInitialByEntrypoint: {\n      \"react-vendors\": true,\n      \"other-vendors\": true,\n    },\n  },\n  {\n    label: \"page1.js\",\n    isAsset: true,\n    statSize: 176,\n    groups: [\n      {\n        id: 832,\n        label: \"page1.js\",\n        path: \"./page1.js\",\n        statSize: 176,\n      },\n    ],\n    isInitialByEntrypoint: {\n      page1: true,\n    },\n  },\n  {\n    label: \"app.js\",\n    isAsset: true,\n    statSize: 116,\n    groups: [\n      {\n        id: 389,\n        label: \"app.js\",\n        path: \"./app.js\",\n        statSize: 116,\n      },\n    ],\n    isInitialByEntrypoint: {\n      app: true,\n    },\n  },\n  {\n    label: \"lazy_js.js\",\n    isAsset: true,\n    statSize: 98,\n    groups: [\n      {\n        id: 401,\n        label: \"lazy.js\",\n        path: \"./lazy.js\",\n        statSize: 98,\n      },\n    ],\n    isInitialByEntrypoint: {\n    },\n  },\n]\n"
  },
  {
    "path": "test/stats/with-multiple-entrypoints/stats.json",
    "content": "{\n    \"hash\": \"063fb032f6c5983a9ddf\",\n    \"version\": \"5.74.0\",\n    \"time\": 2660,\n    \"builtAt\": 1660834599531,\n    \"publicPath\": \"auto\",\n    \"outputPath\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/dist\",\n    \"assetsByChunkName\": {\n      \"app\": [\n        \"app.js\"\n      ],\n      \"page1\": [\n        \"page1.js\"\n      ],\n      \"react-vendors\": [\n        \"react-vendors.js\"\n      ],\n      \"other-vendors\": [\n        \"other-vendors.js\"\n      ],\n      \"runtime\": [\n        \"runtime.js\"\n      ]\n    },\n    \"assets\": [\n      {\n        \"type\": \"asset\",\n        \"name\": \"react-vendors.js\",\n        \"size\": 130522,\n        \"emitted\": false,\n        \"comparedForEmit\": true,\n        \"cached\": false,\n        \"info\": {\n          \"javascriptModule\": false,\n          \"minimized\": true,\n          \"related\": {\n            \"license\": \"react-vendors.js.LICENSE.txt\"\n          },\n          \"size\": 130522\n        },\n        \"chunkNames\": [\n          \"react-vendors\"\n        ],\n        \"chunkIdHints\": [],\n        \"auxiliaryChunkNames\": [],\n        \"auxiliaryChunkIdHints\": [],\n        \"filteredRelated\": 0,\n        \"related\": [\n          {\n            \"type\": \"license\",\n            \"name\": \"react-vendors.js.LICENSE.txt\",\n            \"size\": 788,\n            \"emitted\": false,\n            \"comparedForEmit\": true,\n            \"cached\": false,\n            \"info\": {\n              \"extractedComments\": true,\n              \"size\": 788\n            },\n            \"chunkNames\": [],\n            \"chunkIdHints\": [],\n            \"auxiliaryChunkNames\": [],\n            \"auxiliaryChunkIdHints\": [],\n            \"related\": {},\n            \"chunks\": [],\n            \"auxiliaryChunks\": [],\n            \"isOverSizeLimit\": false\n          }\n        ],\n        \"chunks\": [\n          \"react-vendors\"\n        ],\n        \"auxiliaryChunks\": [],\n        \"isOverSizeLimit\": false\n      },\n      {\n        \"type\": \"asset\",\n        \"name\": \"other-vendors.js\",\n        \"size\": 79779,\n        \"emitted\": false,\n        \"comparedForEmit\": true,\n        \"cached\": false,\n        \"info\": {\n          \"javascriptModule\": false,\n          \"minimized\": true,\n          \"related\": {\n            \"license\": \"other-vendors.js.LICENSE.txt\"\n          },\n          \"size\": 79779\n        },\n        \"chunkNames\": [\n          \"other-vendors\"\n        ],\n        \"chunkIdHints\": [],\n        \"auxiliaryChunkNames\": [],\n        \"auxiliaryChunkIdHints\": [],\n        \"filteredRelated\": 0,\n        \"related\": [\n          {\n            \"type\": \"license\",\n            \"name\": \"other-vendors.js.LICENSE.txt\",\n            \"size\": 336,\n            \"emitted\": false,\n            \"comparedForEmit\": true,\n            \"cached\": false,\n            \"info\": {\n              \"extractedComments\": true,\n              \"size\": 336\n            },\n            \"chunkNames\": [],\n            \"chunkIdHints\": [],\n            \"auxiliaryChunkNames\": [],\n            \"auxiliaryChunkIdHints\": [],\n            \"related\": {},\n            \"chunks\": [],\n            \"auxiliaryChunks\": [],\n            \"isOverSizeLimit\": false\n          }\n        ],\n        \"chunks\": [\n          \"other-vendors\"\n        ],\n        \"auxiliaryChunks\": [],\n        \"isOverSizeLimit\": false\n      },\n      {\n        \"type\": \"asset\",\n        \"name\": \"runtime.js\",\n        \"size\": 3205,\n        \"emitted\": false,\n        \"comparedForEmit\": true,\n        \"cached\": false,\n        \"info\": {\n          \"javascriptModule\": false,\n          \"minimized\": true,\n          \"size\": 3205\n        },\n        \"chunkNames\": [\n          \"runtime\"\n        ],\n        \"chunkIdHints\": [],\n        \"auxiliaryChunkNames\": [],\n        \"auxiliaryChunkIdHints\": [],\n        \"related\": {},\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"auxiliaryChunks\": [],\n        \"isOverSizeLimit\": false\n      },\n      {\n        \"type\": \"asset\",\n        \"name\": \"page1.js\",\n        \"size\": 333,\n        \"emitted\": false,\n        \"comparedForEmit\": true,\n        \"cached\": false,\n        \"info\": {\n          \"javascriptModule\": false,\n          \"minimized\": true,\n          \"size\": 333\n        },\n        \"chunkNames\": [\n          \"page1\"\n        ],\n        \"chunkIdHints\": [],\n        \"auxiliaryChunkNames\": [],\n        \"auxiliaryChunkIdHints\": [],\n        \"related\": {},\n        \"chunks\": [\n          \"page1\"\n        ],\n        \"auxiliaryChunks\": [],\n        \"isOverSizeLimit\": false\n      },\n      {\n        \"type\": \"asset\",\n        \"name\": \"app.js\",\n        \"size\": 274,\n        \"emitted\": false,\n        \"comparedForEmit\": true,\n        \"cached\": false,\n        \"info\": {\n          \"javascriptModule\": false,\n          \"minimized\": true,\n          \"size\": 274\n        },\n        \"chunkNames\": [\n          \"app\"\n        ],\n        \"chunkIdHints\": [],\n        \"auxiliaryChunkNames\": [],\n        \"auxiliaryChunkIdHints\": [],\n        \"related\": {},\n        \"chunks\": [\n          \"app\"\n        ],\n        \"auxiliaryChunks\": [],\n        \"isOverSizeLimit\": false\n      },\n      {\n        \"type\": \"asset\",\n        \"name\": \"lazy_js.js\",\n        \"size\": 226,\n        \"emitted\": false,\n        \"comparedForEmit\": true,\n        \"cached\": false,\n        \"info\": {\n          \"javascriptModule\": false,\n          \"minimized\": true,\n          \"size\": 226\n        },\n        \"chunkNames\": [],\n        \"chunkIdHints\": [],\n        \"auxiliaryChunkNames\": [],\n        \"auxiliaryChunkIdHints\": [],\n        \"related\": {},\n        \"chunks\": [\n          \"lazy_js\"\n        ],\n        \"auxiliaryChunks\": [],\n        \"isOverSizeLimit\": false\n      }\n    ],\n    \"chunks\": [\n      {\n        \"rendered\": true,\n        \"initial\": true,\n        \"entry\": false,\n        \"recorded\": false,\n        \"size\": 116,\n        \"sizes\": {\n          \"javascript\": 116\n        },\n        \"names\": [\n          \"app\"\n        ],\n        \"idHints\": [],\n        \"runtime\": [\n          \"runtime\"\n        ],\n        \"files\": [\n          \"app.js\"\n        ],\n        \"auxiliaryFiles\": [],\n        \"hash\": \"e1d2a5315887c375256c\",\n        \"childrenByOrder\": {},\n        \"id\": \"app\",\n        \"siblings\": [],\n        \"parents\": [\n          \"other-vendors\",\n          \"runtime\"\n        ],\n        \"children\": [\n          \"page1\"\n        ],\n        \"modules\": [\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 116,\n            \"sizes\": {\n              \"javascript\": 116\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"name\": \"./app.js\",\n            \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"index\": 14,\n            \"preOrderIndex\": 14,\n            \"index2\": 14,\n            \"postOrderIndex\": 14,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"issuer\": null,\n            \"issuerName\": null,\n            \"issuerPath\": null,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 389,\n            \"issuerId\": null,\n            \"chunks\": [\n              \"app\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": null,\n                \"module\": null,\n                \"moduleName\": null,\n                \"resolvedModuleIdentifier\": null,\n                \"resolvedModule\": null,\n                \"type\": \"entry\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"./app.js\",\n                \"loc\": \"app\",\n                \"moduleId\": null,\n                \"resolvedModuleId\": null\n              }\n            ],\n            \"usedExports\": [],\n            \"providedExports\": [],\n            \"optimizationBailout\": [\n              \"Statement (ExpressionStatement) with side effects in source code at 4:0-37\",\n              \"ModuleConcatenation bailout: Cannot concat with ./node_modules/isomorphic-fetch/fetch-npm-browserify.js: Module is not an ECMAScript module\",\n              \"ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/lodash.js: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 0\n          }\n        ],\n        \"origins\": [\n          {\n            \"module\": \"\",\n            \"moduleIdentifier\": \"\",\n            \"moduleName\": \"\",\n            \"loc\": \"app\",\n            \"request\": \"./app.js\"\n          }\n        ]\n      },\n      {\n        \"rendered\": true,\n        \"initial\": false,\n        \"entry\": false,\n        \"recorded\": false,\n        \"size\": 98,\n        \"sizes\": {\n          \"javascript\": 98\n        },\n        \"names\": [],\n        \"idHints\": [],\n        \"runtime\": [\n          \"runtime\"\n        ],\n        \"files\": [\n          \"lazy_js.js\"\n        ],\n        \"auxiliaryFiles\": [],\n        \"hash\": \"29208135d57b1902b932\",\n        \"childrenByOrder\": {},\n        \"id\": \"lazy_js\",\n        \"siblings\": [],\n        \"parents\": [\n          \"page1\"\n        ],\n        \"children\": [],\n        \"modules\": [\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 98,\n            \"sizes\": {\n              \"javascript\": 98\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n            \"name\": \"./lazy.js\",\n            \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n            \"index\": 16,\n            \"preOrderIndex\": 16,\n            \"index2\": 16,\n            \"postOrderIndex\": 16,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"issuer\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"issuerName\": \"./page1.js\",\n            \"issuerPath\": [\n              {\n                \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"name\": \"./page1.js\",\n                \"id\": 832\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 401,\n            \"issuerId\": 832,\n            \"chunks\": [\n              \"lazy_js\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"module\": \"./page1.js\",\n                \"moduleName\": \"./page1.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"resolvedModule\": \"./page1.js\",\n                \"type\": \"import()\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"./lazy\",\n                \"loc\": \"7:0-16\",\n                \"moduleId\": 832,\n                \"resolvedModuleId\": 832\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": [],\n            \"optimizationBailout\": [\n              \"Statement (ExpressionStatement) with side effects in source code at 4:0-31\",\n              \"ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/lodash.js: Module is not an ECMAScript module\",\n              \"ModuleConcatenation bailout: Cannot concat with ./node_modules/prop-types/index.js: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 1\n          }\n        ],\n        \"origins\": [\n          {\n            \"module\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"moduleName\": \"./page1.js\",\n            \"loc\": \"7:0-16\",\n            \"request\": \"./lazy\",\n            \"moduleId\": 832\n          }\n        ]\n      },\n      {\n        \"rendered\": true,\n        \"initial\": true,\n        \"entry\": false,\n        \"recorded\": false,\n        \"size\": 561135,\n        \"sizes\": {\n          \"javascript\": 561135\n        },\n        \"names\": [\n          \"other-vendors\"\n        ],\n        \"idHints\": [],\n        \"runtime\": [\n          \"runtime\"\n        ],\n        \"files\": [\n          \"other-vendors.js\"\n        ],\n        \"auxiliaryFiles\": [],\n        \"hash\": \"42c7e47a63870103194c\",\n        \"childrenByOrder\": {},\n        \"id\": \"other-vendors\",\n        \"siblings\": [\n          \"runtime\"\n        ],\n        \"parents\": [],\n        \"children\": [\n          \"app\"\n        ],\n        \"modules\": [\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 233,\n            \"sizes\": {\n              \"javascript\": 233\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"name\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"index\": 12,\n            \"preOrderIndex\": 12,\n            \"index2\": 12,\n            \"postOrderIndex\": 12,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": true,\n            \"issuer\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"issuerName\": \"./app.js\",\n            \"issuerPath\": [\n              {\n                \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n                \"name\": \"./app.js\",\n                \"id\": 389\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 301,\n            \"issuerId\": 389,\n            \"chunks\": [\n              \"other-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n                \"module\": \"./app.js\",\n                \"moduleName\": \"./app.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n                \"resolvedModule\": \"./app.js\",\n                \"type\": \"harmony side effect evaluation\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"isomorphic-fetch\",\n                \"loc\": \"1:0-47\",\n                \"moduleId\": 389,\n                \"resolvedModuleId\": 389\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n                \"module\": \"./app.js\",\n                \"moduleName\": \"./app.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n                \"resolvedModule\": \"./app.js\",\n                \"type\": \"harmony import specifier\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"isomorphic-fetch\",\n                \"loc\": \"4:12-27\",\n                \"moduleId\": 389,\n                \"resolvedModuleId\": 389\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                \"module\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                \"moduleName\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                \"resolvedModule\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"6:0-14\",\n                \"moduleId\": 301,\n                \"resolvedModuleId\": 301\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n                \"module\": \"./other-vendors.js\",\n                \"moduleName\": \"./other-vendors.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n                \"resolvedModule\": \"./other-vendors.js\",\n                \"type\": \"harmony side effect evaluation\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"isomorphic-fetch\",\n                \"loc\": \"2:0-47\",\n                \"moduleId\": 830,\n                \"resolvedModuleId\": 830\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n                \"module\": \"./other-vendors.js\",\n                \"moduleName\": \"./other-vendors.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n                \"resolvedModule\": \"./other-vendors.js\",\n                \"type\": \"harmony import specifier\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"isomorphic-fetch\",\n                \"loc\": \"5:20-35\",\n                \"moduleId\": 830,\n                \"resolvedModuleId\": 830\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"module\": \"./page1.js\",\n                \"moduleName\": \"./page1.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"resolvedModule\": \"./page1.js\",\n                \"type\": \"harmony side effect evaluation\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"isomorphic-fetch\",\n                \"loc\": \"1:0-47\",\n                \"moduleId\": 832,\n                \"resolvedModuleId\": 832\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"module\": \"./page1.js\",\n                \"moduleName\": \"./page1.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"resolvedModule\": \"./page1.js\",\n                \"type\": \"harmony import specifier\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"isomorphic-fetch\",\n                \"loc\": \"5:12-27\",\n                \"moduleId\": 832,\n                \"resolvedModuleId\": 832\n              }\n            ],\n            \"usedExports\": null,\n            \"providedExports\": null,\n            \"optimizationBailout\": [\n              \"CommonJS bailout: module.exports is used directly at 6:0-14\",\n              \"Statement (ExpressionStatement) with side effects in source code at 5:0-24\",\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 1\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 544098,\n            \"sizes\": {\n              \"javascript\": 544098\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"name\": \"./node_modules/lodash/lodash.js\",\n            \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"index\": 11,\n            \"preOrderIndex\": 11,\n            \"index2\": 10,\n            \"postOrderIndex\": 10,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": true,\n            \"issuer\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"issuerName\": \"./app.js\",\n            \"issuerPath\": [\n              {\n                \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n                \"name\": \"./app.js\",\n                \"id\": 389\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 486,\n            \"issuerId\": 389,\n            \"chunks\": [\n              \"other-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n                \"module\": \"./app.js\",\n                \"moduleName\": \"./app.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n                \"resolvedModule\": \"./app.js\",\n                \"type\": \"harmony side effect evaluation\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"lodash\",\n                \"loc\": \"2:0-28\",\n                \"moduleId\": 389,\n                \"resolvedModuleId\": 389\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n                \"module\": \"./app.js\",\n                \"moduleName\": \"./app.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n                \"resolvedModule\": \"./app.js\",\n                \"type\": \"harmony import specifier\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"lodash\",\n                \"loc\": \"4:29-35\",\n                \"moduleId\": 389,\n                \"resolvedModuleId\": 389\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n                \"module\": \"./lazy.js\",\n                \"moduleName\": \"./lazy.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n                \"resolvedModule\": \"./lazy.js\",\n                \"type\": \"harmony side effect evaluation\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"lodash\",\n                \"loc\": \"1:0-28\",\n                \"moduleId\": 401,\n                \"resolvedModuleId\": 401\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n                \"module\": \"./lazy.js\",\n                \"moduleName\": \"./lazy.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n                \"resolvedModule\": \"./lazy.js\",\n                \"type\": \"harmony import specifier\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"lodash\",\n                \"loc\": \"4:12-18\",\n                \"moduleId\": 401,\n                \"resolvedModuleId\": 401\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"module\": \"./node_modules/lodash/lodash.js\",\n                \"moduleName\": \"./node_modules/lodash/lodash.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"439:50-57\",\n                \"moduleId\": 486,\n                \"resolvedModuleId\": 486\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"module\": \"./node_modules/lodash/lodash.js\",\n                \"moduleName\": \"./node_modules/lodash/lodash.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"439:62-78\",\n                \"moduleId\": 486,\n                \"resolvedModuleId\": 486\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"module\": \"./node_modules/lodash/lodash.js\",\n                \"moduleName\": \"./node_modules/lodash/lodash.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"439:82-89\",\n                \"moduleId\": 486,\n                \"resolvedModuleId\": 486\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"module\": \"./node_modules/lodash/lodash.js\",\n                \"moduleName\": \"./node_modules/lodash/lodash.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n                \"type\": \"module decorator\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"442:63-69\",\n                \"moduleId\": 486,\n                \"resolvedModuleId\": 486\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"module\": \"./node_modules/lodash/lodash.js\",\n                \"moduleName\": \"./node_modules/lodash/lodash.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n                \"type\": \"module decorator\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"442:74-80\",\n                \"moduleId\": 486,\n                \"resolvedModuleId\": 486\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"module\": \"./node_modules/lodash/lodash.js\",\n                \"moduleName\": \"./node_modules/lodash/lodash.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n                \"type\": \"module decorator\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"442:93-99\",\n                \"moduleId\": 486,\n                \"resolvedModuleId\": 486\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"module\": \"./node_modules/lodash/lodash.js\",\n                \"moduleName\": \"./node_modules/lodash/lodash.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n                \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"17209:7-11\",\n                \"moduleId\": 486,\n                \"resolvedModuleId\": 486\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n                \"module\": \"./other-vendors.js\",\n                \"moduleName\": \"./other-vendors.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n                \"resolvedModule\": \"./other-vendors.js\",\n                \"type\": \"harmony side effect evaluation\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"lodash\",\n                \"loc\": \"1:0-28\",\n                \"moduleId\": 830,\n                \"resolvedModuleId\": 830\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n                \"module\": \"./other-vendors.js\",\n                \"moduleName\": \"./other-vendors.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n                \"resolvedModule\": \"./other-vendors.js\",\n                \"type\": \"harmony import specifier\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"lodash\",\n                \"loc\": \"5:12-18\",\n                \"moduleId\": 830,\n                \"resolvedModuleId\": 830\n              }\n            ],\n            \"usedExports\": null,\n            \"providedExports\": null,\n            \"optimizationBailout\": [\n              \"CommonJS bailout: this is used directly at 17209:7-11\",\n              \"CommonJS bailout: exports is used directly at 439:50-57\",\n              \"CommonJS bailout: exports is used directly at 439:82-89\",\n              \"Statement (ExpressionStatement) with side effects in source code at 9:1-17209:14\",\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 1\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 16658,\n            \"sizes\": {\n              \"javascript\": 16658\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/whatwg-fetch/fetch.js\",\n            \"name\": \"./node_modules/whatwg-fetch/fetch.js\",\n            \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/whatwg-fetch/fetch.js\",\n            \"index\": 13,\n            \"preOrderIndex\": 13,\n            \"index2\": 11,\n            \"postOrderIndex\": 11,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": true,\n            \"issuer\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"issuerName\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"issuerPath\": [\n              {\n                \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n                \"name\": \"./app.js\",\n                \"id\": 389\n              },\n              {\n                \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                \"name\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                \"id\": 301\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 147,\n            \"issuerId\": 301,\n            \"chunks\": [\n              \"other-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                \"module\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                \"moduleName\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                \"resolvedModule\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n                \"type\": \"cjs require\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"whatwg-fetch\",\n                \"loc\": \"5:0-23\",\n                \"moduleId\": 301,\n                \"resolvedModuleId\": 301\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": [\n              \"DOMException\",\n              \"Headers\",\n              \"Request\",\n              \"Response\",\n              \"fetch\"\n            ],\n            \"optimizationBailout\": [\n              \"Statement (VariableDeclaration) with side effects in source code at 1:0-4:43\"\n            ],\n            \"depth\": 2\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 146,\n            \"sizes\": {\n              \"javascript\": 146\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n            \"name\": \"./other-vendors.js\",\n            \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n            \"index\": 10,\n            \"preOrderIndex\": 10,\n            \"index2\": 13,\n            \"postOrderIndex\": 13,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"issuer\": null,\n            \"issuerName\": null,\n            \"issuerPath\": null,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 830,\n            \"issuerId\": null,\n            \"chunks\": [\n              \"other-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": null,\n                \"module\": null,\n                \"moduleName\": null,\n                \"resolvedModuleIdentifier\": null,\n                \"resolvedModule\": null,\n                \"type\": \"entry\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"./other-vendors\",\n                \"loc\": \"other-vendors\",\n                \"moduleId\": null,\n                \"resolvedModuleId\": null\n              }\n            ],\n            \"usedExports\": [],\n            \"providedExports\": [],\n            \"optimizationBailout\": [\n              \"Statement (ExpressionStatement) with side effects in source code at 5:0-37\",\n              \"ModuleConcatenation bailout: Cannot concat with ./node_modules/isomorphic-fetch/fetch-npm-browserify.js: Module is not an ECMAScript module\",\n              \"ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/lodash.js: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 0\n          }\n        ],\n        \"origins\": [\n          {\n            \"module\": \"\",\n            \"moduleIdentifier\": \"\",\n            \"moduleName\": \"\",\n            \"loc\": \"other-vendors\",\n            \"request\": \"./other-vendors\"\n          }\n        ]\n      },\n      {\n        \"rendered\": true,\n        \"initial\": true,\n        \"entry\": false,\n        \"recorded\": false,\n        \"size\": 176,\n        \"sizes\": {\n          \"javascript\": 176\n        },\n        \"names\": [\n          \"page1\"\n        ],\n        \"idHints\": [],\n        \"runtime\": [\n          \"runtime\"\n        ],\n        \"files\": [\n          \"page1.js\"\n        ],\n        \"auxiliaryFiles\": [],\n        \"hash\": \"8c687168d86bd60e3873\",\n        \"childrenByOrder\": {},\n        \"id\": \"page1\",\n        \"siblings\": [],\n        \"parents\": [\n          \"app\",\n          \"react-vendors\",\n          \"runtime\"\n        ],\n        \"children\": [\n          \"lazy_js\"\n        ],\n        \"modules\": [\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 176,\n            \"sizes\": {\n              \"javascript\": 176\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"name\": \"./page1.js\",\n            \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"index\": 15,\n            \"preOrderIndex\": 15,\n            \"index2\": 15,\n            \"postOrderIndex\": 15,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"issuer\": null,\n            \"issuerName\": null,\n            \"issuerPath\": null,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 832,\n            \"issuerId\": null,\n            \"chunks\": [\n              \"page1\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": null,\n                \"module\": null,\n                \"moduleName\": null,\n                \"resolvedModuleIdentifier\": null,\n                \"resolvedModule\": null,\n                \"type\": \"entry\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"./page1.js\",\n                \"loc\": \"page1\",\n                \"moduleId\": null,\n                \"resolvedModuleId\": null\n              }\n            ],\n            \"usedExports\": [],\n            \"providedExports\": [],\n            \"optimizationBailout\": [\n              \"Statement (ExpressionStatement) with side effects in source code at 5:0-46\",\n              \"ModuleConcatenation bailout: Cannot concat with ./node_modules/isomorphic-fetch/fetch-npm-browserify.js: Module is not an ECMAScript module\",\n              \"ModuleConcatenation bailout: Cannot concat with ../../node_modules/react-dom/index.js: Module is not an ECMAScript module\",\n              \"ModuleConcatenation bailout: Cannot concat with ../../node_modules/react/index.js: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 0\n          }\n        ],\n        \"origins\": [\n          {\n            \"module\": \"\",\n            \"moduleIdentifier\": \"\",\n            \"moduleName\": \"\",\n            \"loc\": \"page1\",\n            \"request\": \"./page1.js\"\n          }\n        ]\n      },\n      {\n        \"rendered\": true,\n        \"initial\": true,\n        \"entry\": false,\n        \"recorded\": false,\n        \"size\": 138490,\n        \"sizes\": {\n          \"javascript\": 138490\n        },\n        \"names\": [\n          \"react-vendors\"\n        ],\n        \"idHints\": [],\n        \"runtime\": [\n          \"runtime\"\n        ],\n        \"files\": [\n          \"react-vendors.js\"\n        ],\n        \"auxiliaryFiles\": [],\n        \"hash\": \"f8fdd081d0d4863891c3\",\n        \"childrenByOrder\": {},\n        \"id\": \"react-vendors\",\n        \"siblings\": [\n          \"runtime\"\n        ],\n        \"parents\": [],\n        \"children\": [\n          \"page1\"\n        ],\n        \"modules\": [\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 2108,\n            \"sizes\": {\n              \"javascript\": 2108\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/node_modules/object-assign/index.js\",\n            \"name\": \"../../node_modules/object-assign/index.js\",\n            \"nameForCondition\": \"/home/coder/webpack/node_modules/object-assign/index.js\",\n            \"index\": 2,\n            \"preOrderIndex\": 2,\n            \"index2\": 0,\n            \"postOrderIndex\": 0,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": true,\n            \"issuer\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"issuerName\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"issuerPath\": [\n              {\n                \"identifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n                \"name\": \"../../node_modules/react-dom/index.js\",\n                \"id\": 316\n              },\n              {\n                \"identifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"name\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"id\": 967\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 320,\n            \"issuerId\": 967,\n            \"chunks\": [\n              \"react-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/object-assign/index.js\",\n                \"module\": \"../../node_modules/object-assign/index.js\",\n                \"moduleName\": \"../../node_modules/object-assign/index.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/object-assign/index.js\",\n                \"resolvedModule\": \"../../node_modules/object-assign/index.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"65:0-14\",\n                \"moduleId\": 320,\n                \"resolvedModuleId\": 320\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"module\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"moduleName\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"resolvedModule\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"type\": \"cjs require\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"object-assign\",\n                \"loc\": \"12:39-63\",\n                \"moduleId\": 967,\n                \"resolvedModuleId\": 967\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/react/cjs/react.production.min.js\",\n                \"module\": \"../../node_modules/react/cjs/react.production.min.js\",\n                \"moduleName\": \"../../node_modules/react/cjs/react.production.min.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/react/cjs/react.production.min.js\",\n                \"resolvedModule\": \"../../node_modules/react/cjs/react.production.min.js\",\n                \"type\": \"cjs require\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"object-assign\",\n                \"loc\": \"9:19-43\",\n                \"moduleId\": 426,\n                \"resolvedModuleId\": 426\n              }\n            ],\n            \"usedExports\": null,\n            \"providedExports\": null,\n            \"optimizationBailout\": [\n              \"CommonJS bailout: module.exports is used directly at 65:0-14\",\n              \"Statement (VariableDeclaration) with side effects in source code at 9:0-57\",\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 2\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 120688,\n            \"sizes\": {\n              \"javascript\": 120688\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"name\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"nameForCondition\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"index\": 4,\n            \"preOrderIndex\": 4,\n            \"index2\": 5,\n            \"postOrderIndex\": 5,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": true,\n            \"issuer\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n            \"issuerName\": \"../../node_modules/react-dom/index.js\",\n            \"issuerPath\": [\n              {\n                \"identifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n                \"name\": \"../../node_modules/react-dom/index.js\",\n                \"id\": 316\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 967,\n            \"issuerId\": 316,\n            \"chunks\": [\n              \"react-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n                \"module\": \"../../node_modules/react-dom/index.js\",\n                \"moduleName\": \"../../node_modules/react-dom/index.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n                \"resolvedModule\": \"../../node_modules/react-dom/index.js\",\n                \"type\": \"cjs export require\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"./cjs/react-dom.production.min.js\",\n                \"loc\": \"35:2-63\",\n                \"moduleId\": 316,\n                \"resolvedModuleId\": 316\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": [\n              \"__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED\",\n              \"createPortal\",\n              \"findDOMNode\",\n              \"flushSync\",\n              \"hydrate\",\n              \"render\",\n              \"unmountComponentAtNode\",\n              \"unstable_batchedUpdates\",\n              \"unstable_createPortal\",\n              \"unstable_renderSubtreeIntoContainer\",\n              \"version\"\n            ],\n            \"optimizationBailout\": [\n              \"Statement (VariableDeclaration) with side effects in source code at 12:13-87\",\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 1\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 1363,\n            \"sizes\": {\n              \"javascript\": 1363\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n            \"name\": \"../../node_modules/react-dom/index.js\",\n            \"nameForCondition\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n            \"index\": 3,\n            \"preOrderIndex\": 3,\n            \"index2\": 6,\n            \"postOrderIndex\": 6,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"issuer\": null,\n            \"issuerName\": null,\n            \"issuerPath\": null,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 316,\n            \"issuerId\": null,\n            \"chunks\": [\n              \"react-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"module\": \"./page1.js\",\n                \"moduleName\": \"./page1.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"resolvedModule\": \"./page1.js\",\n                \"type\": \"harmony side effect evaluation\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"react-dom\",\n                \"loc\": \"3:0-33\",\n                \"moduleId\": 832,\n                \"resolvedModuleId\": 832\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"module\": \"./page1.js\",\n                \"moduleName\": \"./page1.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"resolvedModule\": \"./page1.js\",\n                \"type\": \"harmony import specifier\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"react-dom\",\n                \"loc\": \"5:36-44\",\n                \"moduleId\": 832,\n                \"resolvedModuleId\": 832\n              },\n              {\n                \"moduleIdentifier\": null,\n                \"module\": null,\n                \"moduleName\": null,\n                \"resolvedModuleIdentifier\": null,\n                \"resolvedModule\": null,\n                \"type\": \"entry\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"react-dom\",\n                \"loc\": \"react-vendors\",\n                \"moduleId\": null,\n                \"resolvedModuleId\": null\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": [\n              \"__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED\",\n              \"createPortal\",\n              \"findDOMNode\",\n              \"flushSync\",\n              \"hydrate\",\n              \"render\",\n              \"unmountComponentAtNode\",\n              \"unstable_batchedUpdates\",\n              \"unstable_createPortal\",\n              \"unstable_renderSubtreeIntoContainer\",\n              \"version\"\n            ],\n            \"optimizationBailout\": [\n              \"Statement (ExpressionStatement) with side effects in source code at 34:2-13\",\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 0\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 6450,\n            \"sizes\": {\n              \"javascript\": 6450\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/node_modules/react/cjs/react.production.min.js\",\n            \"name\": \"../../node_modules/react/cjs/react.production.min.js\",\n            \"nameForCondition\": \"/home/coder/webpack/node_modules/react/cjs/react.production.min.js\",\n            \"index\": 1,\n            \"preOrderIndex\": 1,\n            \"index2\": 1,\n            \"postOrderIndex\": 1,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": true,\n            \"issuer\": \"/home/coder/webpack/node_modules/react/index.js\",\n            \"issuerName\": \"../../node_modules/react/index.js\",\n            \"issuerPath\": [\n              {\n                \"identifier\": \"/home/coder/webpack/node_modules/react/index.js\",\n                \"name\": \"../../node_modules/react/index.js\",\n                \"id\": 784\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 426,\n            \"issuerId\": 784,\n            \"chunks\": [\n              \"react-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/react/index.js\",\n                \"module\": \"../../node_modules/react/index.js\",\n                \"moduleName\": \"../../node_modules/react/index.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/react/index.js\",\n                \"resolvedModule\": \"../../node_modules/react/index.js\",\n                \"type\": \"cjs export require\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"./cjs/react.production.min.js\",\n                \"loc\": \"4:2-59\",\n                \"moduleId\": 784,\n                \"resolvedModuleId\": 784\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": [\n              \"Children\",\n              \"Component\",\n              \"Fragment\",\n              \"Profiler\",\n              \"PureComponent\",\n              \"StrictMode\",\n              \"Suspense\",\n              \"__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED\",\n              \"cloneElement\",\n              \"createContext\",\n              \"createElement\",\n              \"createFactory\",\n              \"createRef\",\n              \"forwardRef\",\n              \"isValidElement\",\n              \"lazy\",\n              \"memo\",\n              \"useCallback\",\n              \"useContext\",\n              \"useDebugValue\",\n              \"useEffect\",\n              \"useImperativeHandle\",\n              \"useLayoutEffect\",\n              \"useMemo\",\n              \"useReducer\",\n              \"useRef\",\n              \"useState\",\n              \"version\"\n            ],\n            \"optimizationBailout\": [\n              \"Statement (VariableDeclaration) with side effects in source code at 9:13-60\",\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 1\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 190,\n            \"sizes\": {\n              \"javascript\": 190\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/node_modules/react/index.js\",\n            \"name\": \"../../node_modules/react/index.js\",\n            \"nameForCondition\": \"/home/coder/webpack/node_modules/react/index.js\",\n            \"index\": 0,\n            \"preOrderIndex\": 0,\n            \"index2\": 2,\n            \"postOrderIndex\": 2,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": true,\n            \"issuer\": null,\n            \"issuerName\": null,\n            \"issuerPath\": null,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 784,\n            \"issuerId\": null,\n            \"chunks\": [\n              \"react-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"module\": \"./page1.js\",\n                \"moduleName\": \"./page1.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"resolvedModule\": \"./page1.js\",\n                \"type\": \"harmony side effect evaluation\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"react\",\n                \"loc\": \"2:0-26\",\n                \"moduleId\": 832,\n                \"resolvedModuleId\": 832\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"module\": \"./page1.js\",\n                \"moduleName\": \"./page1.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n                \"resolvedModule\": \"./page1.js\",\n                \"type\": \"harmony import specifier\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"react\",\n                \"loc\": \"5:29-34\",\n                \"moduleId\": 832,\n                \"resolvedModuleId\": 832\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"module\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"moduleName\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"resolvedModule\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"type\": \"cjs require\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"react\",\n                \"loc\": \"12:20-36\",\n                \"moduleId\": 967,\n                \"resolvedModuleId\": 967\n              },\n              {\n                \"moduleIdentifier\": null,\n                \"module\": null,\n                \"moduleName\": null,\n                \"resolvedModuleIdentifier\": null,\n                \"resolvedModule\": null,\n                \"type\": \"entry\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"react\",\n                \"loc\": \"react-vendors\",\n                \"moduleId\": null,\n                \"resolvedModuleId\": null\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": [\n              \"Children\",\n              \"Component\",\n              \"Fragment\",\n              \"Profiler\",\n              \"PureComponent\",\n              \"StrictMode\",\n              \"Suspense\",\n              \"__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED\",\n              \"cloneElement\",\n              \"createContext\",\n              \"createElement\",\n              \"createFactory\",\n              \"createRef\",\n              \"forwardRef\",\n              \"isValidElement\",\n              \"lazy\",\n              \"memo\",\n              \"useCallback\",\n              \"useContext\",\n              \"useDebugValue\",\n              \"useEffect\",\n              \"useImperativeHandle\",\n              \"useLayoutEffect\",\n              \"useMemo\",\n              \"useReducer\",\n              \"useRef\",\n              \"useState\",\n              \"version\"\n            ],\n            \"optimizationBailout\": [\n              \"Statement (ExpressionStatement) with side effects in source code at 4:2-60\",\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 0\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 4830,\n            \"sizes\": {\n              \"javascript\": 4830\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"name\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"nameForCondition\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"index\": 6,\n            \"preOrderIndex\": 6,\n            \"index2\": 3,\n            \"postOrderIndex\": 3,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": true,\n            \"issuer\": \"/home/coder/webpack/node_modules/scheduler/index.js\",\n            \"issuerName\": \"../../node_modules/scheduler/index.js\",\n            \"issuerPath\": [\n              {\n                \"identifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n                \"name\": \"../../node_modules/react-dom/index.js\",\n                \"id\": 316\n              },\n              {\n                \"identifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"name\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"id\": 967\n              },\n              {\n                \"identifier\": \"/home/coder/webpack/node_modules/scheduler/index.js\",\n                \"name\": \"../../node_modules/scheduler/index.js\",\n                \"id\": 616\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 475,\n            \"issuerId\": 616,\n            \"chunks\": [\n              \"react-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"10:121-141\",\n                \"moduleId\": 475,\n                \"resolvedModuleId\": 475\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"11:504-524\",\n                \"moduleId\": 475,\n                \"resolvedModuleId\": 475\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"12:312-332\",\n                \"moduleId\": 475,\n                \"resolvedModuleId\": 475\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"13:15-35\",\n                \"moduleId\": 475,\n                \"resolvedModuleId\": 475\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"16:106-134\",\n                \"moduleId\": 475,\n                \"resolvedModuleId\": 475\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"16:248-268\",\n                \"moduleId\": 475,\n                \"resolvedModuleId\": 475\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"19:56-76\",\n                \"moduleId\": 475,\n                \"resolvedModuleId\": 475\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/index.js\",\n                \"module\": \"../../node_modules/scheduler/index.js\",\n                \"moduleName\": \"../../node_modules/scheduler/index.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/index.js\",\n                \"resolvedModule\": \"../../node_modules/scheduler/index.js\",\n                \"type\": \"cjs export require\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"./cjs/scheduler.production.min.js\",\n                \"loc\": \"4:2-63\",\n                \"moduleId\": 616,\n                \"resolvedModuleId\": 616\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": [\n              \"unstable_IdlePriority\",\n              \"unstable_ImmediatePriority\",\n              \"unstable_LowPriority\",\n              \"unstable_NormalPriority\",\n              \"unstable_Profiling\",\n              \"unstable_UserBlockingPriority\",\n              \"unstable_cancelCallback\",\n              \"unstable_continueExecution\",\n              \"unstable_forceFrameRate\",\n              \"unstable_getCurrentPriorityLevel\",\n              \"unstable_getFirstCallbackNode\",\n              \"unstable_next\",\n              \"unstable_now\",\n              \"unstable_pauseExecution\",\n              \"unstable_requestPaint\",\n              \"unstable_runWithPriority\",\n              \"unstable_scheduleCallback\",\n              \"unstable_shouldYield\",\n              \"unstable_wrapCallback\"\n            ],\n            \"optimizationBailout\": [\n              \"CommonJS bailout: exports.unstable_now(...) prevents optimization as exports is passed as call context at 10:121-141\",\n              \"CommonJS bailout: exports.unstable_now(...) prevents optimization as exports is passed as call context at 11:504-524\",\n              \"CommonJS bailout: exports.unstable_now(...) prevents optimization as exports is passed as call context at 12:312-332\",\n              \"CommonJS bailout: exports.unstable_now(...) prevents optimization as exports is passed as call context at 13:15-35\",\n              \"CommonJS bailout: exports.unstable_shouldYield(...) prevents optimization as exports is passed as call context at 16:106-134\",\n              \"CommonJS bailout: exports.unstable_now(...) prevents optimization as exports is passed as call context at 16:248-268\",\n              \"CommonJS bailout: exports.unstable_now(...) prevents optimization as exports is passed as call context at 19:56-76\",\n              \"Statement (IfStatement) with side effects in source code at 9:25-238\",\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 3\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 198,\n            \"sizes\": {\n              \"javascript\": 198\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/node_modules/scheduler/index.js\",\n            \"name\": \"../../node_modules/scheduler/index.js\",\n            \"nameForCondition\": \"/home/coder/webpack/node_modules/scheduler/index.js\",\n            \"index\": 5,\n            \"preOrderIndex\": 5,\n            \"index2\": 4,\n            \"postOrderIndex\": 4,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": true,\n            \"issuer\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"issuerName\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"issuerPath\": [\n              {\n                \"identifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n                \"name\": \"../../node_modules/react-dom/index.js\",\n                \"id\": 316\n              },\n              {\n                \"identifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"name\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"id\": 967\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 616,\n            \"issuerId\": 967,\n            \"chunks\": [\n              \"react-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"module\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"moduleName\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"resolvedModule\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n                \"type\": \"cjs require\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"scheduler\",\n                \"loc\": \"12:66-86\",\n                \"moduleId\": 967,\n                \"resolvedModuleId\": 967\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": [\n              \"unstable_IdlePriority\",\n              \"unstable_ImmediatePriority\",\n              \"unstable_LowPriority\",\n              \"unstable_NormalPriority\",\n              \"unstable_Profiling\",\n              \"unstable_UserBlockingPriority\",\n              \"unstable_cancelCallback\",\n              \"unstable_continueExecution\",\n              \"unstable_forceFrameRate\",\n              \"unstable_getCurrentPriorityLevel\",\n              \"unstable_getFirstCallbackNode\",\n              \"unstable_next\",\n              \"unstable_now\",\n              \"unstable_pauseExecution\",\n              \"unstable_requestPaint\",\n              \"unstable_runWithPriority\",\n              \"unstable_scheduleCallback\",\n              \"unstable_shouldYield\",\n              \"unstable_wrapCallback\"\n            ],\n            \"optimizationBailout\": [\n              \"Statement (ExpressionStatement) with side effects in source code at 4:2-64\",\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 2\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 1639,\n            \"sizes\": {\n              \"javascript\": 1639\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"name\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"index\": 8,\n            \"preOrderIndex\": 8,\n            \"index2\": 8,\n            \"postOrderIndex\": 8,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": true,\n            \"issuer\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n            \"issuerName\": \"./node_modules/prop-types/index.js\",\n            \"issuerPath\": [\n              {\n                \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n                \"name\": \"./node_modules/prop-types/index.js\",\n                \"id\": 697\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 703,\n            \"issuerId\": 697,\n            \"chunks\": [\n              \"react-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n                \"module\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n                \"moduleName\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n                \"resolvedModule\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"16:0-14\",\n                \"moduleId\": 703,\n                \"resolvedModuleId\": 703\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n                \"module\": \"./node_modules/prop-types/index.js\",\n                \"moduleName\": \"./node_modules/prop-types/index.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n                \"resolvedModule\": \"./node_modules/prop-types/index.js\",\n                \"type\": \"cjs require\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"./factoryWithThrowingShims\",\n                \"loc\": \"18:19-56\",\n                \"moduleId\": 697,\n                \"resolvedModuleId\": 697\n              }\n            ],\n            \"usedExports\": null,\n            \"providedExports\": null,\n            \"optimizationBailout\": [\n              \"CommonJS bailout: module.exports is used directly at 16:0-14\",\n              \"Statement (VariableDeclaration) with side effects in source code at 10:0-65\",\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 1\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 710,\n            \"sizes\": {\n              \"javascript\": 710\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n            \"name\": \"./node_modules/prop-types/index.js\",\n            \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n            \"index\": 7,\n            \"preOrderIndex\": 7,\n            \"index2\": 9,\n            \"postOrderIndex\": 9,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"issuer\": null,\n            \"issuerName\": null,\n            \"issuerPath\": null,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 697,\n            \"issuerId\": null,\n            \"chunks\": [\n              \"react-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n                \"module\": \"./lazy.js\",\n                \"moduleName\": \"./lazy.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n                \"resolvedModule\": \"./lazy.js\",\n                \"type\": \"harmony side effect evaluation\",\n                \"active\": false,\n                \"explanation\": \"\",\n                \"userRequest\": \"prop-types\",\n                \"loc\": \"2:0-35\",\n                \"moduleId\": 401,\n                \"resolvedModuleId\": 401\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n                \"module\": \"./lazy.js\",\n                \"moduleName\": \"./lazy.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n                \"resolvedModule\": \"./lazy.js\",\n                \"type\": \"harmony import specifier\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"prop-types\",\n                \"loc\": \"4:20-29\",\n                \"moduleId\": 401,\n                \"resolvedModuleId\": 401\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n                \"module\": \"./node_modules/prop-types/index.js\",\n                \"moduleName\": \"./node_modules/prop-types/index.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n                \"resolvedModule\": \"./node_modules/prop-types/index.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"18:2-16\",\n                \"moduleId\": 697,\n                \"resolvedModuleId\": 697\n              },\n              {\n                \"moduleIdentifier\": null,\n                \"module\": null,\n                \"moduleName\": null,\n                \"resolvedModuleIdentifier\": null,\n                \"resolvedModule\": null,\n                \"type\": \"entry\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"prop-types\",\n                \"loc\": \"react-vendors\",\n                \"moduleId\": null,\n                \"resolvedModuleId\": null\n              }\n            ],\n            \"usedExports\": null,\n            \"providedExports\": null,\n            \"optimizationBailout\": [\n              \"CommonJS bailout: module.exports is used directly at 18:2-16\",\n              \"Statement (ExpressionStatement) with side effects in source code at 18:2-59\",\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 0\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"javascript/auto\",\n            \"layer\": null,\n            \"size\": 314,\n            \"sizes\": {\n              \"javascript\": 314\n            },\n            \"built\": true,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n            \"name\": \"./node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n            \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n            \"index\": 9,\n            \"preOrderIndex\": 9,\n            \"index2\": 7,\n            \"postOrderIndex\": 7,\n            \"cacheable\": true,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": true,\n            \"issuer\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"issuerName\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"issuerPath\": [\n              {\n                \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n                \"name\": \"./node_modules/prop-types/index.js\",\n                \"id\": 697\n              },\n              {\n                \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n                \"name\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n                \"id\": 703\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": 414,\n            \"issuerId\": 703,\n            \"chunks\": [\n              \"react-vendors\"\n            ],\n            \"assets\": [],\n            \"reasons\": [\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n                \"module\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n                \"moduleName\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n                \"resolvedModule\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n                \"type\": \"cjs require\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": \"./lib/ReactPropTypesSecret\",\n                \"loc\": \"10:27-64\",\n                \"moduleId\": 703,\n                \"resolvedModuleId\": 703\n              },\n              {\n                \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n                \"module\": \"./node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n                \"moduleName\": \"./node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n                \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n                \"resolvedModule\": \"./node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n                \"type\": \"cjs self exports reference\",\n                \"active\": true,\n                \"explanation\": \"\",\n                \"userRequest\": null,\n                \"loc\": \"12:0-14\",\n                \"moduleId\": 414,\n                \"resolvedModuleId\": 414\n              }\n            ],\n            \"usedExports\": null,\n            \"providedExports\": null,\n            \"optimizationBailout\": [\n              \"CommonJS bailout: module.exports is used directly at 12:0-14\",\n              \"Statement (ExpressionStatement) with side effects in source code at 12:0-38\",\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 2\n          }\n        ],\n        \"origins\": [\n          {\n            \"module\": \"\",\n            \"moduleIdentifier\": \"\",\n            \"moduleName\": \"\",\n            \"loc\": \"react-vendors\",\n            \"request\": \"prop-types\"\n          },\n          {\n            \"module\": \"\",\n            \"moduleIdentifier\": \"\",\n            \"moduleName\": \"\",\n            \"loc\": \"react-vendors\",\n            \"request\": \"react\"\n          },\n          {\n            \"module\": \"\",\n            \"moduleIdentifier\": \"\",\n            \"moduleName\": \"\",\n            \"loc\": \"react-vendors\",\n            \"request\": \"react-dom\"\n          }\n        ]\n      },\n      {\n        \"rendered\": true,\n        \"initial\": true,\n        \"entry\": true,\n        \"recorded\": false,\n        \"size\": 8284,\n        \"sizes\": {\n          \"runtime\": 8284\n        },\n        \"names\": [\n          \"runtime\"\n        ],\n        \"idHints\": [],\n        \"runtime\": [\n          \"runtime\"\n        ],\n        \"files\": [\n          \"runtime.js\"\n        ],\n        \"auxiliaryFiles\": [],\n        \"hash\": \"f56bf390b59d43c091e4\",\n        \"childrenByOrder\": {},\n        \"id\": \"runtime\",\n        \"siblings\": [\n          \"other-vendors\",\n          \"react-vendors\"\n        ],\n        \"parents\": [],\n        \"children\": [\n          \"app\",\n          \"page1\"\n        ],\n        \"modules\": [\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"runtime\",\n            \"layer\": null,\n            \"size\": 886,\n            \"sizes\": {\n              \"runtime\": 886\n            },\n            \"built\": false,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"webpack/runtime/chunk loaded\",\n            \"name\": \"webpack/runtime/chunk loaded\",\n            \"nameForCondition\": null,\n            \"index\": null,\n            \"preOrderIndex\": null,\n            \"index2\": null,\n            \"postOrderIndex\": null,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": \"\",\n            \"chunks\": [\n              \"runtime\"\n            ],\n            \"assets\": [],\n            \"reasons\": [],\n            \"usedExports\": null,\n            \"providedExports\": [],\n            \"optimizationBailout\": [],\n            \"depth\": null\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"runtime\",\n            \"layer\": null,\n            \"size\": 267,\n            \"sizes\": {\n              \"runtime\": 267\n            },\n            \"built\": false,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"webpack/runtime/compat get default export\",\n            \"name\": \"webpack/runtime/compat get default export\",\n            \"nameForCondition\": null,\n            \"index\": null,\n            \"preOrderIndex\": null,\n            \"index2\": null,\n            \"postOrderIndex\": null,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": \"\",\n            \"chunks\": [\n              \"runtime\"\n            ],\n            \"assets\": [],\n            \"reasons\": [],\n            \"usedExports\": null,\n            \"providedExports\": [],\n            \"optimizationBailout\": [],\n            \"depth\": null\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"runtime\",\n            \"layer\": null,\n            \"size\": 308,\n            \"sizes\": {\n              \"runtime\": 308\n            },\n            \"built\": false,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"webpack/runtime/define property getters\",\n            \"name\": \"webpack/runtime/define property getters\",\n            \"nameForCondition\": null,\n            \"index\": null,\n            \"preOrderIndex\": null,\n            \"index2\": null,\n            \"postOrderIndex\": null,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": \"\",\n            \"chunks\": [\n              \"runtime\"\n            ],\n            \"assets\": [],\n            \"reasons\": [],\n            \"usedExports\": null,\n            \"providedExports\": [],\n            \"optimizationBailout\": [],\n            \"depth\": null\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"runtime\",\n            \"layer\": null,\n            \"size\": 326,\n            \"sizes\": {\n              \"runtime\": 326\n            },\n            \"built\": false,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"webpack/runtime/ensure chunk\",\n            \"name\": \"webpack/runtime/ensure chunk\",\n            \"nameForCondition\": null,\n            \"index\": null,\n            \"preOrderIndex\": null,\n            \"index2\": null,\n            \"postOrderIndex\": null,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": \"\",\n            \"chunks\": [\n              \"runtime\"\n            ],\n            \"assets\": [],\n            \"reasons\": [],\n            \"usedExports\": null,\n            \"providedExports\": [],\n            \"optimizationBailout\": [],\n            \"depth\": null\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"runtime\",\n            \"layer\": null,\n            \"size\": 167,\n            \"sizes\": {\n              \"runtime\": 167\n            },\n            \"built\": false,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"webpack/runtime/get javascript chunk filename\",\n            \"name\": \"webpack/runtime/get javascript chunk filename\",\n            \"nameForCondition\": null,\n            \"index\": null,\n            \"preOrderIndex\": null,\n            \"index2\": null,\n            \"postOrderIndex\": null,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": \"\",\n            \"chunks\": [\n              \"runtime\"\n            ],\n            \"assets\": [],\n            \"reasons\": [],\n            \"usedExports\": null,\n            \"providedExports\": [],\n            \"optimizationBailout\": [],\n            \"depth\": null\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"runtime\",\n            \"layer\": null,\n            \"size\": 221,\n            \"sizes\": {\n              \"runtime\": 221\n            },\n            \"built\": false,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"webpack/runtime/global\",\n            \"name\": \"webpack/runtime/global\",\n            \"nameForCondition\": null,\n            \"index\": null,\n            \"preOrderIndex\": null,\n            \"index2\": null,\n            \"postOrderIndex\": null,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": \"\",\n            \"chunks\": [\n              \"runtime\"\n            ],\n            \"assets\": [],\n            \"reasons\": [],\n            \"usedExports\": null,\n            \"providedExports\": [],\n            \"optimizationBailout\": [],\n            \"depth\": null\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"runtime\",\n            \"layer\": null,\n            \"size\": 88,\n            \"sizes\": {\n              \"runtime\": 88\n            },\n            \"built\": false,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"webpack/runtime/hasOwnProperty shorthand\",\n            \"name\": \"webpack/runtime/hasOwnProperty shorthand\",\n            \"nameForCondition\": null,\n            \"index\": null,\n            \"preOrderIndex\": null,\n            \"index2\": null,\n            \"postOrderIndex\": null,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": \"\",\n            \"chunks\": [\n              \"runtime\"\n            ],\n            \"assets\": [],\n            \"reasons\": [],\n            \"usedExports\": null,\n            \"providedExports\": [],\n            \"optimizationBailout\": [],\n            \"depth\": null\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"runtime\",\n            \"layer\": null,\n            \"size\": 3227,\n            \"sizes\": {\n              \"runtime\": 3227\n            },\n            \"built\": false,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"webpack/runtime/jsonp chunk loading\",\n            \"name\": \"webpack/runtime/jsonp chunk loading\",\n            \"nameForCondition\": null,\n            \"index\": null,\n            \"preOrderIndex\": null,\n            \"index2\": null,\n            \"postOrderIndex\": null,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": \"\",\n            \"chunks\": [\n              \"runtime\"\n            ],\n            \"assets\": [],\n            \"reasons\": [],\n            \"usedExports\": null,\n            \"providedExports\": [],\n            \"optimizationBailout\": [],\n            \"depth\": null\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"runtime\",\n            \"layer\": null,\n            \"size\": 1530,\n            \"sizes\": {\n              \"runtime\": 1530\n            },\n            \"built\": false,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"webpack/runtime/load script\",\n            \"name\": \"webpack/runtime/load script\",\n            \"nameForCondition\": null,\n            \"index\": null,\n            \"preOrderIndex\": null,\n            \"index2\": null,\n            \"postOrderIndex\": null,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": \"\",\n            \"chunks\": [\n              \"runtime\"\n            ],\n            \"assets\": [],\n            \"reasons\": [],\n            \"usedExports\": null,\n            \"providedExports\": [],\n            \"optimizationBailout\": [],\n            \"depth\": null\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"runtime\",\n            \"layer\": null,\n            \"size\": 274,\n            \"sizes\": {\n              \"runtime\": 274\n            },\n            \"built\": false,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"webpack/runtime/make namespace object\",\n            \"name\": \"webpack/runtime/make namespace object\",\n            \"nameForCondition\": null,\n            \"index\": null,\n            \"preOrderIndex\": null,\n            \"index2\": null,\n            \"postOrderIndex\": null,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": \"\",\n            \"chunks\": [\n              \"runtime\"\n            ],\n            \"assets\": [],\n            \"reasons\": [],\n            \"usedExports\": null,\n            \"providedExports\": [],\n            \"optimizationBailout\": [],\n            \"depth\": null\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"runtime\",\n            \"layer\": null,\n            \"size\": 123,\n            \"sizes\": {\n              \"runtime\": 123\n            },\n            \"built\": false,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"webpack/runtime/node module decorator\",\n            \"name\": \"webpack/runtime/node module decorator\",\n            \"nameForCondition\": null,\n            \"index\": null,\n            \"preOrderIndex\": null,\n            \"index2\": null,\n            \"postOrderIndex\": null,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": \"\",\n            \"chunks\": [\n              \"runtime\"\n            ],\n            \"assets\": [],\n            \"reasons\": [],\n            \"usedExports\": null,\n            \"providedExports\": [],\n            \"optimizationBailout\": [],\n            \"depth\": null\n          },\n          {\n            \"type\": \"module\",\n            \"moduleType\": \"runtime\",\n            \"layer\": null,\n            \"size\": 867,\n            \"sizes\": {\n              \"runtime\": 867\n            },\n            \"built\": false,\n            \"codeGenerated\": true,\n            \"buildTimeExecuted\": false,\n            \"cached\": false,\n            \"identifier\": \"webpack/runtime/publicPath\",\n            \"name\": \"webpack/runtime/publicPath\",\n            \"nameForCondition\": null,\n            \"index\": null,\n            \"preOrderIndex\": null,\n            \"index2\": null,\n            \"postOrderIndex\": null,\n            \"optional\": false,\n            \"orphan\": false,\n            \"dependent\": false,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"id\": \"\",\n            \"chunks\": [\n              \"runtime\"\n            ],\n            \"assets\": [],\n            \"reasons\": [],\n            \"usedExports\": null,\n            \"providedExports\": [],\n            \"optimizationBailout\": [],\n            \"depth\": null\n          }\n        ],\n        \"origins\": [\n          {\n            \"module\": \"\",\n            \"moduleIdentifier\": \"\",\n            \"moduleName\": \"\",\n            \"loc\": \"other-vendors\",\n            \"request\": \"./other-vendors\"\n          },\n          {\n            \"module\": \"\",\n            \"moduleIdentifier\": \"\",\n            \"moduleName\": \"\",\n            \"loc\": \"react-vendors\",\n            \"request\": \"prop-types\"\n          },\n          {\n            \"module\": \"\",\n            \"moduleIdentifier\": \"\",\n            \"moduleName\": \"\",\n            \"loc\": \"react-vendors\",\n            \"request\": \"react\"\n          },\n          {\n            \"module\": \"\",\n            \"moduleIdentifier\": \"\",\n            \"moduleName\": \"\",\n            \"loc\": \"react-vendors\",\n            \"request\": \"react-dom\"\n          }\n        ]\n      }\n    ],\n    \"modules\": [\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 190,\n        \"sizes\": {\n          \"javascript\": 190\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/node_modules/react/index.js\",\n        \"name\": \"../../node_modules/react/index.js\",\n        \"nameForCondition\": \"/home/coder/webpack/node_modules/react/index.js\",\n        \"index\": 0,\n        \"preOrderIndex\": 0,\n        \"index2\": 2,\n        \"postOrderIndex\": 2,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": null,\n        \"issuerName\": null,\n        \"issuerPath\": null,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 784,\n        \"issuerId\": null,\n        \"chunks\": [\n          \"react-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"module\": \"./page1.js\",\n            \"moduleName\": \"./page1.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"resolvedModule\": \"./page1.js\",\n            \"type\": \"harmony side effect evaluation\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"react\",\n            \"loc\": \"2:0-26\",\n            \"moduleId\": 832,\n            \"resolvedModuleId\": 832\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"module\": \"./page1.js\",\n            \"moduleName\": \"./page1.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"resolvedModule\": \"./page1.js\",\n            \"type\": \"harmony import specifier\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"react\",\n            \"loc\": \"5:29-34\",\n            \"moduleId\": 832,\n            \"resolvedModuleId\": 832\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"module\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"moduleName\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"resolvedModule\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"type\": \"cjs require\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"react\",\n            \"loc\": \"12:20-36\",\n            \"moduleId\": 967,\n            \"resolvedModuleId\": 967\n          },\n          {\n            \"moduleIdentifier\": null,\n            \"module\": null,\n            \"moduleName\": null,\n            \"resolvedModuleIdentifier\": null,\n            \"resolvedModule\": null,\n            \"type\": \"entry\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"react\",\n            \"loc\": \"react-vendors\",\n            \"moduleId\": null,\n            \"resolvedModuleId\": null\n          }\n        ],\n        \"usedExports\": true,\n        \"providedExports\": [\n          \"Children\",\n          \"Component\",\n          \"Fragment\",\n          \"Profiler\",\n          \"PureComponent\",\n          \"StrictMode\",\n          \"Suspense\",\n          \"__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED\",\n          \"cloneElement\",\n          \"createContext\",\n          \"createElement\",\n          \"createFactory\",\n          \"createRef\",\n          \"forwardRef\",\n          \"isValidElement\",\n          \"lazy\",\n          \"memo\",\n          \"useCallback\",\n          \"useContext\",\n          \"useDebugValue\",\n          \"useEffect\",\n          \"useImperativeHandle\",\n          \"useLayoutEffect\",\n          \"useMemo\",\n          \"useReducer\",\n          \"useRef\",\n          \"useState\",\n          \"version\"\n        ],\n        \"optimizationBailout\": [\n          \"Statement (ExpressionStatement) with side effects in source code at 4:2-60\",\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 0\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 1363,\n        \"sizes\": {\n          \"javascript\": 1363\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n        \"name\": \"../../node_modules/react-dom/index.js\",\n        \"nameForCondition\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n        \"index\": 3,\n        \"preOrderIndex\": 3,\n        \"index2\": 6,\n        \"postOrderIndex\": 6,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": null,\n        \"issuerName\": null,\n        \"issuerPath\": null,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 316,\n        \"issuerId\": null,\n        \"chunks\": [\n          \"react-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"module\": \"./page1.js\",\n            \"moduleName\": \"./page1.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"resolvedModule\": \"./page1.js\",\n            \"type\": \"harmony side effect evaluation\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"react-dom\",\n            \"loc\": \"3:0-33\",\n            \"moduleId\": 832,\n            \"resolvedModuleId\": 832\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"module\": \"./page1.js\",\n            \"moduleName\": \"./page1.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"resolvedModule\": \"./page1.js\",\n            \"type\": \"harmony import specifier\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"react-dom\",\n            \"loc\": \"5:36-44\",\n            \"moduleId\": 832,\n            \"resolvedModuleId\": 832\n          },\n          {\n            \"moduleIdentifier\": null,\n            \"module\": null,\n            \"moduleName\": null,\n            \"resolvedModuleIdentifier\": null,\n            \"resolvedModule\": null,\n            \"type\": \"entry\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"react-dom\",\n            \"loc\": \"react-vendors\",\n            \"moduleId\": null,\n            \"resolvedModuleId\": null\n          }\n        ],\n        \"usedExports\": true,\n        \"providedExports\": [\n          \"__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED\",\n          \"createPortal\",\n          \"findDOMNode\",\n          \"flushSync\",\n          \"hydrate\",\n          \"render\",\n          \"unmountComponentAtNode\",\n          \"unstable_batchedUpdates\",\n          \"unstable_createPortal\",\n          \"unstable_renderSubtreeIntoContainer\",\n          \"version\"\n        ],\n        \"optimizationBailout\": [\n          \"Statement (ExpressionStatement) with side effects in source code at 34:2-13\",\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 0\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 710,\n        \"sizes\": {\n          \"javascript\": 710\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n        \"name\": \"./node_modules/prop-types/index.js\",\n        \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n        \"index\": 7,\n        \"preOrderIndex\": 7,\n        \"index2\": 9,\n        \"postOrderIndex\": 9,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": null,\n        \"issuerName\": null,\n        \"issuerPath\": null,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 697,\n        \"issuerId\": null,\n        \"chunks\": [\n          \"react-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n            \"module\": \"./lazy.js\",\n            \"moduleName\": \"./lazy.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n            \"resolvedModule\": \"./lazy.js\",\n            \"type\": \"harmony side effect evaluation\",\n            \"active\": false,\n            \"explanation\": \"\",\n            \"userRequest\": \"prop-types\",\n            \"loc\": \"2:0-35\",\n            \"moduleId\": 401,\n            \"resolvedModuleId\": 401\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n            \"module\": \"./lazy.js\",\n            \"moduleName\": \"./lazy.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n            \"resolvedModule\": \"./lazy.js\",\n            \"type\": \"harmony import specifier\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"prop-types\",\n            \"loc\": \"4:20-29\",\n            \"moduleId\": 401,\n            \"resolvedModuleId\": 401\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n            \"module\": \"./node_modules/prop-types/index.js\",\n            \"moduleName\": \"./node_modules/prop-types/index.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n            \"resolvedModule\": \"./node_modules/prop-types/index.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"18:2-16\",\n            \"moduleId\": 697,\n            \"resolvedModuleId\": 697\n          },\n          {\n            \"moduleIdentifier\": null,\n            \"module\": null,\n            \"moduleName\": null,\n            \"resolvedModuleIdentifier\": null,\n            \"resolvedModule\": null,\n            \"type\": \"entry\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"prop-types\",\n            \"loc\": \"react-vendors\",\n            \"moduleId\": null,\n            \"resolvedModuleId\": null\n          }\n        ],\n        \"usedExports\": null,\n        \"providedExports\": null,\n        \"optimizationBailout\": [\n          \"CommonJS bailout: module.exports is used directly at 18:2-16\",\n          \"Statement (ExpressionStatement) with side effects in source code at 18:2-59\",\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 0\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 146,\n        \"sizes\": {\n          \"javascript\": 146\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n        \"name\": \"./other-vendors.js\",\n        \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n        \"index\": 10,\n        \"preOrderIndex\": 10,\n        \"index2\": 13,\n        \"postOrderIndex\": 13,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": null,\n        \"issuerName\": null,\n        \"issuerPath\": null,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 830,\n        \"issuerId\": null,\n        \"chunks\": [\n          \"other-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": null,\n            \"module\": null,\n            \"moduleName\": null,\n            \"resolvedModuleIdentifier\": null,\n            \"resolvedModule\": null,\n            \"type\": \"entry\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"./other-vendors\",\n            \"loc\": \"other-vendors\",\n            \"moduleId\": null,\n            \"resolvedModuleId\": null\n          }\n        ],\n        \"usedExports\": [],\n        \"providedExports\": [],\n        \"optimizationBailout\": [\n          \"Statement (ExpressionStatement) with side effects in source code at 5:0-37\",\n          \"ModuleConcatenation bailout: Cannot concat with ./node_modules/isomorphic-fetch/fetch-npm-browserify.js: Module is not an ECMAScript module\",\n          \"ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/lodash.js: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 0\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 116,\n        \"sizes\": {\n          \"javascript\": 116\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n        \"name\": \"./app.js\",\n        \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n        \"index\": 14,\n        \"preOrderIndex\": 14,\n        \"index2\": 14,\n        \"postOrderIndex\": 14,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": null,\n        \"issuerName\": null,\n        \"issuerPath\": null,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 389,\n        \"issuerId\": null,\n        \"chunks\": [\n          \"app\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": null,\n            \"module\": null,\n            \"moduleName\": null,\n            \"resolvedModuleIdentifier\": null,\n            \"resolvedModule\": null,\n            \"type\": \"entry\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"./app.js\",\n            \"loc\": \"app\",\n            \"moduleId\": null,\n            \"resolvedModuleId\": null\n          }\n        ],\n        \"usedExports\": [],\n        \"providedExports\": [],\n        \"optimizationBailout\": [\n          \"Statement (ExpressionStatement) with side effects in source code at 4:0-37\",\n          \"ModuleConcatenation bailout: Cannot concat with ./node_modules/isomorphic-fetch/fetch-npm-browserify.js: Module is not an ECMAScript module\",\n          \"ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/lodash.js: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 0\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 176,\n        \"sizes\": {\n          \"javascript\": 176\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n        \"name\": \"./page1.js\",\n        \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n        \"index\": 15,\n        \"preOrderIndex\": 15,\n        \"index2\": 15,\n        \"postOrderIndex\": 15,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": null,\n        \"issuerName\": null,\n        \"issuerPath\": null,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 832,\n        \"issuerId\": null,\n        \"chunks\": [\n          \"page1\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": null,\n            \"module\": null,\n            \"moduleName\": null,\n            \"resolvedModuleIdentifier\": null,\n            \"resolvedModule\": null,\n            \"type\": \"entry\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"./page1.js\",\n            \"loc\": \"page1\",\n            \"moduleId\": null,\n            \"resolvedModuleId\": null\n          }\n        ],\n        \"usedExports\": [],\n        \"providedExports\": [],\n        \"optimizationBailout\": [\n          \"Statement (ExpressionStatement) with side effects in source code at 5:0-46\",\n          \"ModuleConcatenation bailout: Cannot concat with ./node_modules/isomorphic-fetch/fetch-npm-browserify.js: Module is not an ECMAScript module\",\n          \"ModuleConcatenation bailout: Cannot concat with ../../node_modules/react-dom/index.js: Module is not an ECMAScript module\",\n          \"ModuleConcatenation bailout: Cannot concat with ../../node_modules/react/index.js: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 0\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 6450,\n        \"sizes\": {\n          \"javascript\": 6450\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/node_modules/react/cjs/react.production.min.js\",\n        \"name\": \"../../node_modules/react/cjs/react.production.min.js\",\n        \"nameForCondition\": \"/home/coder/webpack/node_modules/react/cjs/react.production.min.js\",\n        \"index\": 1,\n        \"preOrderIndex\": 1,\n        \"index2\": 1,\n        \"postOrderIndex\": 1,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": \"/home/coder/webpack/node_modules/react/index.js\",\n        \"issuerName\": \"../../node_modules/react/index.js\",\n        \"issuerPath\": [\n          {\n            \"identifier\": \"/home/coder/webpack/node_modules/react/index.js\",\n            \"name\": \"../../node_modules/react/index.js\",\n            \"id\": 784\n          }\n        ],\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 426,\n        \"issuerId\": 784,\n        \"chunks\": [\n          \"react-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/react/index.js\",\n            \"module\": \"../../node_modules/react/index.js\",\n            \"moduleName\": \"../../node_modules/react/index.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/react/index.js\",\n            \"resolvedModule\": \"../../node_modules/react/index.js\",\n            \"type\": \"cjs export require\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"./cjs/react.production.min.js\",\n            \"loc\": \"4:2-59\",\n            \"moduleId\": 784,\n            \"resolvedModuleId\": 784\n          }\n        ],\n        \"usedExports\": true,\n        \"providedExports\": [\n          \"Children\",\n          \"Component\",\n          \"Fragment\",\n          \"Profiler\",\n          \"PureComponent\",\n          \"StrictMode\",\n          \"Suspense\",\n          \"__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED\",\n          \"cloneElement\",\n          \"createContext\",\n          \"createElement\",\n          \"createFactory\",\n          \"createRef\",\n          \"forwardRef\",\n          \"isValidElement\",\n          \"lazy\",\n          \"memo\",\n          \"useCallback\",\n          \"useContext\",\n          \"useDebugValue\",\n          \"useEffect\",\n          \"useImperativeHandle\",\n          \"useLayoutEffect\",\n          \"useMemo\",\n          \"useReducer\",\n          \"useRef\",\n          \"useState\",\n          \"version\"\n        ],\n        \"optimizationBailout\": [\n          \"Statement (VariableDeclaration) with side effects in source code at 9:13-60\",\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 1\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 120688,\n        \"sizes\": {\n          \"javascript\": 120688\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n        \"name\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n        \"nameForCondition\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n        \"index\": 4,\n        \"preOrderIndex\": 4,\n        \"index2\": 5,\n        \"postOrderIndex\": 5,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n        \"issuerName\": \"../../node_modules/react-dom/index.js\",\n        \"issuerPath\": [\n          {\n            \"identifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n            \"name\": \"../../node_modules/react-dom/index.js\",\n            \"id\": 316\n          }\n        ],\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 967,\n        \"issuerId\": 316,\n        \"chunks\": [\n          \"react-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n            \"module\": \"../../node_modules/react-dom/index.js\",\n            \"moduleName\": \"../../node_modules/react-dom/index.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n            \"resolvedModule\": \"../../node_modules/react-dom/index.js\",\n            \"type\": \"cjs export require\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"./cjs/react-dom.production.min.js\",\n            \"loc\": \"35:2-63\",\n            \"moduleId\": 316,\n            \"resolvedModuleId\": 316\n          }\n        ],\n        \"usedExports\": true,\n        \"providedExports\": [\n          \"__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED\",\n          \"createPortal\",\n          \"findDOMNode\",\n          \"flushSync\",\n          \"hydrate\",\n          \"render\",\n          \"unmountComponentAtNode\",\n          \"unstable_batchedUpdates\",\n          \"unstable_createPortal\",\n          \"unstable_renderSubtreeIntoContainer\",\n          \"version\"\n        ],\n        \"optimizationBailout\": [\n          \"Statement (VariableDeclaration) with side effects in source code at 12:13-87\",\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 1\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 1639,\n        \"sizes\": {\n          \"javascript\": 1639\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n        \"name\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n        \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n        \"index\": 8,\n        \"preOrderIndex\": 8,\n        \"index2\": 8,\n        \"postOrderIndex\": 8,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n        \"issuerName\": \"./node_modules/prop-types/index.js\",\n        \"issuerPath\": [\n          {\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n            \"name\": \"./node_modules/prop-types/index.js\",\n            \"id\": 697\n          }\n        ],\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 703,\n        \"issuerId\": 697,\n        \"chunks\": [\n          \"react-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"module\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"moduleName\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"resolvedModule\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"16:0-14\",\n            \"moduleId\": 703,\n            \"resolvedModuleId\": 703\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n            \"module\": \"./node_modules/prop-types/index.js\",\n            \"moduleName\": \"./node_modules/prop-types/index.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n            \"resolvedModule\": \"./node_modules/prop-types/index.js\",\n            \"type\": \"cjs require\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"./factoryWithThrowingShims\",\n            \"loc\": \"18:19-56\",\n            \"moduleId\": 697,\n            \"resolvedModuleId\": 697\n          }\n        ],\n        \"usedExports\": null,\n        \"providedExports\": null,\n        \"optimizationBailout\": [\n          \"CommonJS bailout: module.exports is used directly at 16:0-14\",\n          \"Statement (VariableDeclaration) with side effects in source code at 10:0-65\",\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 1\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 544098,\n        \"sizes\": {\n          \"javascript\": 544098\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n        \"name\": \"./node_modules/lodash/lodash.js\",\n        \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n        \"index\": 11,\n        \"preOrderIndex\": 11,\n        \"index2\": 10,\n        \"postOrderIndex\": 10,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n        \"issuerName\": \"./app.js\",\n        \"issuerPath\": [\n          {\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"name\": \"./app.js\",\n            \"id\": 389\n          }\n        ],\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 486,\n        \"issuerId\": 389,\n        \"chunks\": [\n          \"other-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"module\": \"./app.js\",\n            \"moduleName\": \"./app.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"resolvedModule\": \"./app.js\",\n            \"type\": \"harmony side effect evaluation\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"lodash\",\n            \"loc\": \"2:0-28\",\n            \"moduleId\": 389,\n            \"resolvedModuleId\": 389\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"module\": \"./app.js\",\n            \"moduleName\": \"./app.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"resolvedModule\": \"./app.js\",\n            \"type\": \"harmony import specifier\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"lodash\",\n            \"loc\": \"4:29-35\",\n            \"moduleId\": 389,\n            \"resolvedModuleId\": 389\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n            \"module\": \"./lazy.js\",\n            \"moduleName\": \"./lazy.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n            \"resolvedModule\": \"./lazy.js\",\n            \"type\": \"harmony side effect evaluation\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"lodash\",\n            \"loc\": \"1:0-28\",\n            \"moduleId\": 401,\n            \"resolvedModuleId\": 401\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n            \"module\": \"./lazy.js\",\n            \"moduleName\": \"./lazy.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n            \"resolvedModule\": \"./lazy.js\",\n            \"type\": \"harmony import specifier\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"lodash\",\n            \"loc\": \"4:12-18\",\n            \"moduleId\": 401,\n            \"resolvedModuleId\": 401\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"module\": \"./node_modules/lodash/lodash.js\",\n            \"moduleName\": \"./node_modules/lodash/lodash.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"439:50-57\",\n            \"moduleId\": 486,\n            \"resolvedModuleId\": 486\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"module\": \"./node_modules/lodash/lodash.js\",\n            \"moduleName\": \"./node_modules/lodash/lodash.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"439:62-78\",\n            \"moduleId\": 486,\n            \"resolvedModuleId\": 486\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"module\": \"./node_modules/lodash/lodash.js\",\n            \"moduleName\": \"./node_modules/lodash/lodash.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"439:82-89\",\n            \"moduleId\": 486,\n            \"resolvedModuleId\": 486\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"module\": \"./node_modules/lodash/lodash.js\",\n            \"moduleName\": \"./node_modules/lodash/lodash.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n            \"type\": \"module decorator\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"442:63-69\",\n            \"moduleId\": 486,\n            \"resolvedModuleId\": 486\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"module\": \"./node_modules/lodash/lodash.js\",\n            \"moduleName\": \"./node_modules/lodash/lodash.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n            \"type\": \"module decorator\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"442:74-80\",\n            \"moduleId\": 486,\n            \"resolvedModuleId\": 486\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"module\": \"./node_modules/lodash/lodash.js\",\n            \"moduleName\": \"./node_modules/lodash/lodash.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n            \"type\": \"module decorator\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"442:93-99\",\n            \"moduleId\": 486,\n            \"resolvedModuleId\": 486\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"module\": \"./node_modules/lodash/lodash.js\",\n            \"moduleName\": \"./node_modules/lodash/lodash.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/lodash/lodash.js\",\n            \"resolvedModule\": \"./node_modules/lodash/lodash.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"17209:7-11\",\n            \"moduleId\": 486,\n            \"resolvedModuleId\": 486\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n            \"module\": \"./other-vendors.js\",\n            \"moduleName\": \"./other-vendors.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n            \"resolvedModule\": \"./other-vendors.js\",\n            \"type\": \"harmony side effect evaluation\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"lodash\",\n            \"loc\": \"1:0-28\",\n            \"moduleId\": 830,\n            \"resolvedModuleId\": 830\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n            \"module\": \"./other-vendors.js\",\n            \"moduleName\": \"./other-vendors.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n            \"resolvedModule\": \"./other-vendors.js\",\n            \"type\": \"harmony import specifier\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"lodash\",\n            \"loc\": \"5:12-18\",\n            \"moduleId\": 830,\n            \"resolvedModuleId\": 830\n          }\n        ],\n        \"usedExports\": null,\n        \"providedExports\": null,\n        \"optimizationBailout\": [\n          \"CommonJS bailout: this is used directly at 17209:7-11\",\n          \"CommonJS bailout: exports is used directly at 439:50-57\",\n          \"CommonJS bailout: exports is used directly at 439:82-89\",\n          \"Statement (ExpressionStatement) with side effects in source code at 9:1-17209:14\",\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 1\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 233,\n        \"sizes\": {\n          \"javascript\": 233\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n        \"name\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n        \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n        \"index\": 12,\n        \"preOrderIndex\": 12,\n        \"index2\": 12,\n        \"postOrderIndex\": 12,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n        \"issuerName\": \"./app.js\",\n        \"issuerPath\": [\n          {\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"name\": \"./app.js\",\n            \"id\": 389\n          }\n        ],\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 301,\n        \"issuerId\": 389,\n        \"chunks\": [\n          \"other-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"module\": \"./app.js\",\n            \"moduleName\": \"./app.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"resolvedModule\": \"./app.js\",\n            \"type\": \"harmony side effect evaluation\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"isomorphic-fetch\",\n            \"loc\": \"1:0-47\",\n            \"moduleId\": 389,\n            \"resolvedModuleId\": 389\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"module\": \"./app.js\",\n            \"moduleName\": \"./app.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"resolvedModule\": \"./app.js\",\n            \"type\": \"harmony import specifier\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"isomorphic-fetch\",\n            \"loc\": \"4:12-27\",\n            \"moduleId\": 389,\n            \"resolvedModuleId\": 389\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"module\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"moduleName\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"resolvedModule\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"6:0-14\",\n            \"moduleId\": 301,\n            \"resolvedModuleId\": 301\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n            \"module\": \"./other-vendors.js\",\n            \"moduleName\": \"./other-vendors.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n            \"resolvedModule\": \"./other-vendors.js\",\n            \"type\": \"harmony side effect evaluation\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"isomorphic-fetch\",\n            \"loc\": \"2:0-47\",\n            \"moduleId\": 830,\n            \"resolvedModuleId\": 830\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n            \"module\": \"./other-vendors.js\",\n            \"moduleName\": \"./other-vendors.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/other-vendors.js\",\n            \"resolvedModule\": \"./other-vendors.js\",\n            \"type\": \"harmony import specifier\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"isomorphic-fetch\",\n            \"loc\": \"5:20-35\",\n            \"moduleId\": 830,\n            \"resolvedModuleId\": 830\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"module\": \"./page1.js\",\n            \"moduleName\": \"./page1.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"resolvedModule\": \"./page1.js\",\n            \"type\": \"harmony side effect evaluation\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"isomorphic-fetch\",\n            \"loc\": \"1:0-47\",\n            \"moduleId\": 832,\n            \"resolvedModuleId\": 832\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"module\": \"./page1.js\",\n            \"moduleName\": \"./page1.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"resolvedModule\": \"./page1.js\",\n            \"type\": \"harmony import specifier\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"isomorphic-fetch\",\n            \"loc\": \"5:12-27\",\n            \"moduleId\": 832,\n            \"resolvedModuleId\": 832\n          }\n        ],\n        \"usedExports\": null,\n        \"providedExports\": null,\n        \"optimizationBailout\": [\n          \"CommonJS bailout: module.exports is used directly at 6:0-14\",\n          \"Statement (ExpressionStatement) with side effects in source code at 5:0-24\",\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 1\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 98,\n        \"sizes\": {\n          \"javascript\": 98\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n        \"name\": \"./lazy.js\",\n        \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/lazy.js\",\n        \"index\": 16,\n        \"preOrderIndex\": 16,\n        \"index2\": 16,\n        \"postOrderIndex\": 16,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n        \"issuerName\": \"./page1.js\",\n        \"issuerPath\": [\n          {\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"name\": \"./page1.js\",\n            \"id\": 832\n          }\n        ],\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 401,\n        \"issuerId\": 832,\n        \"chunks\": [\n          \"lazy_js\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"module\": \"./page1.js\",\n            \"moduleName\": \"./page1.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/page1.js\",\n            \"resolvedModule\": \"./page1.js\",\n            \"type\": \"import()\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"./lazy\",\n            \"loc\": \"7:0-16\",\n            \"moduleId\": 832,\n            \"resolvedModuleId\": 832\n          }\n        ],\n        \"usedExports\": true,\n        \"providedExports\": [],\n        \"optimizationBailout\": [\n          \"Statement (ExpressionStatement) with side effects in source code at 4:0-31\",\n          \"ModuleConcatenation bailout: Cannot concat with ./node_modules/lodash/lodash.js: Module is not an ECMAScript module\",\n          \"ModuleConcatenation bailout: Cannot concat with ./node_modules/prop-types/index.js: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 1\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 2108,\n        \"sizes\": {\n          \"javascript\": 2108\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/node_modules/object-assign/index.js\",\n        \"name\": \"../../node_modules/object-assign/index.js\",\n        \"nameForCondition\": \"/home/coder/webpack/node_modules/object-assign/index.js\",\n        \"index\": 2,\n        \"preOrderIndex\": 2,\n        \"index2\": 0,\n        \"postOrderIndex\": 0,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n        \"issuerName\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n        \"issuerPath\": [\n          {\n            \"identifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n            \"name\": \"../../node_modules/react-dom/index.js\",\n            \"id\": 316\n          },\n          {\n            \"identifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"name\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"id\": 967\n          }\n        ],\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 320,\n        \"issuerId\": 967,\n        \"chunks\": [\n          \"react-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/object-assign/index.js\",\n            \"module\": \"../../node_modules/object-assign/index.js\",\n            \"moduleName\": \"../../node_modules/object-assign/index.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/object-assign/index.js\",\n            \"resolvedModule\": \"../../node_modules/object-assign/index.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"65:0-14\",\n            \"moduleId\": 320,\n            \"resolvedModuleId\": 320\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"module\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"moduleName\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"resolvedModule\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"type\": \"cjs require\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"object-assign\",\n            \"loc\": \"12:39-63\",\n            \"moduleId\": 967,\n            \"resolvedModuleId\": 967\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/react/cjs/react.production.min.js\",\n            \"module\": \"../../node_modules/react/cjs/react.production.min.js\",\n            \"moduleName\": \"../../node_modules/react/cjs/react.production.min.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/react/cjs/react.production.min.js\",\n            \"resolvedModule\": \"../../node_modules/react/cjs/react.production.min.js\",\n            \"type\": \"cjs require\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"object-assign\",\n            \"loc\": \"9:19-43\",\n            \"moduleId\": 426,\n            \"resolvedModuleId\": 426\n          }\n        ],\n        \"usedExports\": null,\n        \"providedExports\": null,\n        \"optimizationBailout\": [\n          \"CommonJS bailout: module.exports is used directly at 65:0-14\",\n          \"Statement (VariableDeclaration) with side effects in source code at 9:0-57\",\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 2\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 198,\n        \"sizes\": {\n          \"javascript\": 198\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/node_modules/scheduler/index.js\",\n        \"name\": \"../../node_modules/scheduler/index.js\",\n        \"nameForCondition\": \"/home/coder/webpack/node_modules/scheduler/index.js\",\n        \"index\": 5,\n        \"preOrderIndex\": 5,\n        \"index2\": 4,\n        \"postOrderIndex\": 4,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n        \"issuerName\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n        \"issuerPath\": [\n          {\n            \"identifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n            \"name\": \"../../node_modules/react-dom/index.js\",\n            \"id\": 316\n          },\n          {\n            \"identifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"name\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"id\": 967\n          }\n        ],\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 616,\n        \"issuerId\": 967,\n        \"chunks\": [\n          \"react-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"module\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"moduleName\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"resolvedModule\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"type\": \"cjs require\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"scheduler\",\n            \"loc\": \"12:66-86\",\n            \"moduleId\": 967,\n            \"resolvedModuleId\": 967\n          }\n        ],\n        \"usedExports\": true,\n        \"providedExports\": [\n          \"unstable_IdlePriority\",\n          \"unstable_ImmediatePriority\",\n          \"unstable_LowPriority\",\n          \"unstable_NormalPriority\",\n          \"unstable_Profiling\",\n          \"unstable_UserBlockingPriority\",\n          \"unstable_cancelCallback\",\n          \"unstable_continueExecution\",\n          \"unstable_forceFrameRate\",\n          \"unstable_getCurrentPriorityLevel\",\n          \"unstable_getFirstCallbackNode\",\n          \"unstable_next\",\n          \"unstable_now\",\n          \"unstable_pauseExecution\",\n          \"unstable_requestPaint\",\n          \"unstable_runWithPriority\",\n          \"unstable_scheduleCallback\",\n          \"unstable_shouldYield\",\n          \"unstable_wrapCallback\"\n        ],\n        \"optimizationBailout\": [\n          \"Statement (ExpressionStatement) with side effects in source code at 4:2-64\",\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 2\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 314,\n        \"sizes\": {\n          \"javascript\": 314\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n        \"name\": \"./node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n        \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n        \"index\": 9,\n        \"preOrderIndex\": 9,\n        \"index2\": 7,\n        \"postOrderIndex\": 7,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n        \"issuerName\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n        \"issuerPath\": [\n          {\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/index.js\",\n            \"name\": \"./node_modules/prop-types/index.js\",\n            \"id\": 697\n          },\n          {\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"name\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"id\": 703\n          }\n        ],\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 414,\n        \"issuerId\": 703,\n        \"chunks\": [\n          \"react-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"module\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"moduleName\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"resolvedModule\": \"./node_modules/prop-types/factoryWithThrowingShims.js\",\n            \"type\": \"cjs require\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"./lib/ReactPropTypesSecret\",\n            \"loc\": \"10:27-64\",\n            \"moduleId\": 703,\n            \"resolvedModuleId\": 703\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n            \"module\": \"./node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n            \"moduleName\": \"./node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n            \"resolvedModule\": \"./node_modules/prop-types/lib/ReactPropTypesSecret.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"12:0-14\",\n            \"moduleId\": 414,\n            \"resolvedModuleId\": 414\n          }\n        ],\n        \"usedExports\": null,\n        \"providedExports\": null,\n        \"optimizationBailout\": [\n          \"CommonJS bailout: module.exports is used directly at 12:0-14\",\n          \"Statement (ExpressionStatement) with side effects in source code at 12:0-38\",\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 2\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 16658,\n        \"sizes\": {\n          \"javascript\": 16658\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/whatwg-fetch/fetch.js\",\n        \"name\": \"./node_modules/whatwg-fetch/fetch.js\",\n        \"nameForCondition\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/whatwg-fetch/fetch.js\",\n        \"index\": 13,\n        \"preOrderIndex\": 13,\n        \"index2\": 11,\n        \"postOrderIndex\": 11,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n        \"issuerName\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n        \"issuerPath\": [\n          {\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/app.js\",\n            \"name\": \"./app.js\",\n            \"id\": 389\n          },\n          {\n            \"identifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"name\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"id\": 301\n          }\n        ],\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 147,\n        \"issuerId\": 301,\n        \"chunks\": [\n          \"other-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"module\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"moduleName\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"resolvedModule\": \"./node_modules/isomorphic-fetch/fetch-npm-browserify.js\",\n            \"type\": \"cjs require\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"whatwg-fetch\",\n            \"loc\": \"5:0-23\",\n            \"moduleId\": 301,\n            \"resolvedModuleId\": 301\n          }\n        ],\n        \"usedExports\": true,\n        \"providedExports\": [\n          \"DOMException\",\n          \"Headers\",\n          \"Request\",\n          \"Response\",\n          \"fetch\"\n        ],\n        \"optimizationBailout\": [\n          \"Statement (VariableDeclaration) with side effects in source code at 1:0-4:43\"\n        ],\n        \"depth\": 2\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"javascript/auto\",\n        \"layer\": null,\n        \"size\": 4830,\n        \"sizes\": {\n          \"javascript\": 4830\n        },\n        \"built\": true,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n        \"name\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n        \"nameForCondition\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n        \"index\": 6,\n        \"preOrderIndex\": 6,\n        \"index2\": 3,\n        \"postOrderIndex\": 3,\n        \"cacheable\": true,\n        \"optional\": false,\n        \"orphan\": false,\n        \"issuer\": \"/home/coder/webpack/node_modules/scheduler/index.js\",\n        \"issuerName\": \"../../node_modules/scheduler/index.js\",\n        \"issuerPath\": [\n          {\n            \"identifier\": \"/home/coder/webpack/node_modules/react-dom/index.js\",\n            \"name\": \"../../node_modules/react-dom/index.js\",\n            \"id\": 316\n          },\n          {\n            \"identifier\": \"/home/coder/webpack/node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"name\": \"../../node_modules/react-dom/cjs/react-dom.production.min.js\",\n            \"id\": 967\n          },\n          {\n            \"identifier\": \"/home/coder/webpack/node_modules/scheduler/index.js\",\n            \"name\": \"../../node_modules/scheduler/index.js\",\n            \"id\": 616\n          }\n        ],\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": 475,\n        \"issuerId\": 616,\n        \"chunks\": [\n          \"react-vendors\"\n        ],\n        \"assets\": [],\n        \"reasons\": [\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"10:121-141\",\n            \"moduleId\": 475,\n            \"resolvedModuleId\": 475\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"11:504-524\",\n            \"moduleId\": 475,\n            \"resolvedModuleId\": 475\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"12:312-332\",\n            \"moduleId\": 475,\n            \"resolvedModuleId\": 475\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"13:15-35\",\n            \"moduleId\": 475,\n            \"resolvedModuleId\": 475\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"16:106-134\",\n            \"moduleId\": 475,\n            \"resolvedModuleId\": 475\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"16:248-268\",\n            \"moduleId\": 475,\n            \"resolvedModuleId\": 475\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"module\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"moduleName\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"resolvedModule\": \"../../node_modules/scheduler/cjs/scheduler.production.min.js\",\n            \"type\": \"cjs self exports reference\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": null,\n            \"loc\": \"19:56-76\",\n            \"moduleId\": 475,\n            \"resolvedModuleId\": 475\n          },\n          {\n            \"moduleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/index.js\",\n            \"module\": \"../../node_modules/scheduler/index.js\",\n            \"moduleName\": \"../../node_modules/scheduler/index.js\",\n            \"resolvedModuleIdentifier\": \"/home/coder/webpack/node_modules/scheduler/index.js\",\n            \"resolvedModule\": \"../../node_modules/scheduler/index.js\",\n            \"type\": \"cjs export require\",\n            \"active\": true,\n            \"explanation\": \"\",\n            \"userRequest\": \"./cjs/scheduler.production.min.js\",\n            \"loc\": \"4:2-63\",\n            \"moduleId\": 616,\n            \"resolvedModuleId\": 616\n          }\n        ],\n        \"usedExports\": true,\n        \"providedExports\": [\n          \"unstable_IdlePriority\",\n          \"unstable_ImmediatePriority\",\n          \"unstable_LowPriority\",\n          \"unstable_NormalPriority\",\n          \"unstable_Profiling\",\n          \"unstable_UserBlockingPriority\",\n          \"unstable_cancelCallback\",\n          \"unstable_continueExecution\",\n          \"unstable_forceFrameRate\",\n          \"unstable_getCurrentPriorityLevel\",\n          \"unstable_getFirstCallbackNode\",\n          \"unstable_next\",\n          \"unstable_now\",\n          \"unstable_pauseExecution\",\n          \"unstable_requestPaint\",\n          \"unstable_runWithPriority\",\n          \"unstable_scheduleCallback\",\n          \"unstable_shouldYield\",\n          \"unstable_wrapCallback\"\n        ],\n        \"optimizationBailout\": [\n          \"CommonJS bailout: exports.unstable_now(...) prevents optimization as exports is passed as call context at 10:121-141\",\n          \"CommonJS bailout: exports.unstable_now(...) prevents optimization as exports is passed as call context at 11:504-524\",\n          \"CommonJS bailout: exports.unstable_now(...) prevents optimization as exports is passed as call context at 12:312-332\",\n          \"CommonJS bailout: exports.unstable_now(...) prevents optimization as exports is passed as call context at 13:15-35\",\n          \"CommonJS bailout: exports.unstable_shouldYield(...) prevents optimization as exports is passed as call context at 16:106-134\",\n          \"CommonJS bailout: exports.unstable_now(...) prevents optimization as exports is passed as call context at 16:248-268\",\n          \"CommonJS bailout: exports.unstable_now(...) prevents optimization as exports is passed as call context at 19:56-76\",\n          \"Statement (IfStatement) with side effects in source code at 9:25-238\",\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 3\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"runtime\",\n        \"layer\": null,\n        \"size\": 886,\n        \"sizes\": {\n          \"runtime\": 886\n        },\n        \"built\": false,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"webpack/runtime/chunk loaded\",\n        \"name\": \"webpack/runtime/chunk loaded\",\n        \"nameForCondition\": null,\n        \"index\": null,\n        \"preOrderIndex\": null,\n        \"index2\": null,\n        \"postOrderIndex\": null,\n        \"optional\": false,\n        \"orphan\": false,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": \"\",\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"assets\": [],\n        \"reasons\": [],\n        \"usedExports\": null,\n        \"providedExports\": [],\n        \"optimizationBailout\": [],\n        \"depth\": null\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"runtime\",\n        \"layer\": null,\n        \"size\": 267,\n        \"sizes\": {\n          \"runtime\": 267\n        },\n        \"built\": false,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"webpack/runtime/compat get default export\",\n        \"name\": \"webpack/runtime/compat get default export\",\n        \"nameForCondition\": null,\n        \"index\": null,\n        \"preOrderIndex\": null,\n        \"index2\": null,\n        \"postOrderIndex\": null,\n        \"optional\": false,\n        \"orphan\": false,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": \"\",\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"assets\": [],\n        \"reasons\": [],\n        \"usedExports\": null,\n        \"providedExports\": [],\n        \"optimizationBailout\": [],\n        \"depth\": null\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"runtime\",\n        \"layer\": null,\n        \"size\": 308,\n        \"sizes\": {\n          \"runtime\": 308\n        },\n        \"built\": false,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"webpack/runtime/define property getters\",\n        \"name\": \"webpack/runtime/define property getters\",\n        \"nameForCondition\": null,\n        \"index\": null,\n        \"preOrderIndex\": null,\n        \"index2\": null,\n        \"postOrderIndex\": null,\n        \"optional\": false,\n        \"orphan\": false,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": \"\",\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"assets\": [],\n        \"reasons\": [],\n        \"usedExports\": null,\n        \"providedExports\": [],\n        \"optimizationBailout\": [],\n        \"depth\": null\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"runtime\",\n        \"layer\": null,\n        \"size\": 326,\n        \"sizes\": {\n          \"runtime\": 326\n        },\n        \"built\": false,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"webpack/runtime/ensure chunk\",\n        \"name\": \"webpack/runtime/ensure chunk\",\n        \"nameForCondition\": null,\n        \"index\": null,\n        \"preOrderIndex\": null,\n        \"index2\": null,\n        \"postOrderIndex\": null,\n        \"optional\": false,\n        \"orphan\": false,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": \"\",\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"assets\": [],\n        \"reasons\": [],\n        \"usedExports\": null,\n        \"providedExports\": [],\n        \"optimizationBailout\": [],\n        \"depth\": null\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"runtime\",\n        \"layer\": null,\n        \"size\": 167,\n        \"sizes\": {\n          \"runtime\": 167\n        },\n        \"built\": false,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"webpack/runtime/get javascript chunk filename\",\n        \"name\": \"webpack/runtime/get javascript chunk filename\",\n        \"nameForCondition\": null,\n        \"index\": null,\n        \"preOrderIndex\": null,\n        \"index2\": null,\n        \"postOrderIndex\": null,\n        \"optional\": false,\n        \"orphan\": false,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": \"\",\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"assets\": [],\n        \"reasons\": [],\n        \"usedExports\": null,\n        \"providedExports\": [],\n        \"optimizationBailout\": [],\n        \"depth\": null\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"runtime\",\n        \"layer\": null,\n        \"size\": 221,\n        \"sizes\": {\n          \"runtime\": 221\n        },\n        \"built\": false,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"webpack/runtime/global\",\n        \"name\": \"webpack/runtime/global\",\n        \"nameForCondition\": null,\n        \"index\": null,\n        \"preOrderIndex\": null,\n        \"index2\": null,\n        \"postOrderIndex\": null,\n        \"optional\": false,\n        \"orphan\": false,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": \"\",\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"assets\": [],\n        \"reasons\": [],\n        \"usedExports\": null,\n        \"providedExports\": [],\n        \"optimizationBailout\": [],\n        \"depth\": null\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"runtime\",\n        \"layer\": null,\n        \"size\": 88,\n        \"sizes\": {\n          \"runtime\": 88\n        },\n        \"built\": false,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"webpack/runtime/hasOwnProperty shorthand\",\n        \"name\": \"webpack/runtime/hasOwnProperty shorthand\",\n        \"nameForCondition\": null,\n        \"index\": null,\n        \"preOrderIndex\": null,\n        \"index2\": null,\n        \"postOrderIndex\": null,\n        \"optional\": false,\n        \"orphan\": false,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": \"\",\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"assets\": [],\n        \"reasons\": [],\n        \"usedExports\": null,\n        \"providedExports\": [],\n        \"optimizationBailout\": [],\n        \"depth\": null\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"runtime\",\n        \"layer\": null,\n        \"size\": 3227,\n        \"sizes\": {\n          \"runtime\": 3227\n        },\n        \"built\": false,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"webpack/runtime/jsonp chunk loading\",\n        \"name\": \"webpack/runtime/jsonp chunk loading\",\n        \"nameForCondition\": null,\n        \"index\": null,\n        \"preOrderIndex\": null,\n        \"index2\": null,\n        \"postOrderIndex\": null,\n        \"optional\": false,\n        \"orphan\": false,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": \"\",\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"assets\": [],\n        \"reasons\": [],\n        \"usedExports\": null,\n        \"providedExports\": [],\n        \"optimizationBailout\": [],\n        \"depth\": null\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"runtime\",\n        \"layer\": null,\n        \"size\": 1530,\n        \"sizes\": {\n          \"runtime\": 1530\n        },\n        \"built\": false,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"webpack/runtime/load script\",\n        \"name\": \"webpack/runtime/load script\",\n        \"nameForCondition\": null,\n        \"index\": null,\n        \"preOrderIndex\": null,\n        \"index2\": null,\n        \"postOrderIndex\": null,\n        \"optional\": false,\n        \"orphan\": false,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": \"\",\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"assets\": [],\n        \"reasons\": [],\n        \"usedExports\": null,\n        \"providedExports\": [],\n        \"optimizationBailout\": [],\n        \"depth\": null\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"runtime\",\n        \"layer\": null,\n        \"size\": 274,\n        \"sizes\": {\n          \"runtime\": 274\n        },\n        \"built\": false,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"webpack/runtime/make namespace object\",\n        \"name\": \"webpack/runtime/make namespace object\",\n        \"nameForCondition\": null,\n        \"index\": null,\n        \"preOrderIndex\": null,\n        \"index2\": null,\n        \"postOrderIndex\": null,\n        \"optional\": false,\n        \"orphan\": false,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": \"\",\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"assets\": [],\n        \"reasons\": [],\n        \"usedExports\": null,\n        \"providedExports\": [],\n        \"optimizationBailout\": [],\n        \"depth\": null\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"runtime\",\n        \"layer\": null,\n        \"size\": 123,\n        \"sizes\": {\n          \"runtime\": 123\n        },\n        \"built\": false,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"webpack/runtime/node module decorator\",\n        \"name\": \"webpack/runtime/node module decorator\",\n        \"nameForCondition\": null,\n        \"index\": null,\n        \"preOrderIndex\": null,\n        \"index2\": null,\n        \"postOrderIndex\": null,\n        \"optional\": false,\n        \"orphan\": false,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": \"\",\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"assets\": [],\n        \"reasons\": [],\n        \"usedExports\": null,\n        \"providedExports\": [],\n        \"optimizationBailout\": [],\n        \"depth\": null\n      },\n      {\n        \"type\": \"module\",\n        \"moduleType\": \"runtime\",\n        \"layer\": null,\n        \"size\": 867,\n        \"sizes\": {\n          \"runtime\": 867\n        },\n        \"built\": false,\n        \"codeGenerated\": true,\n        \"buildTimeExecuted\": false,\n        \"cached\": false,\n        \"identifier\": \"webpack/runtime/publicPath\",\n        \"name\": \"webpack/runtime/publicPath\",\n        \"nameForCondition\": null,\n        \"index\": null,\n        \"preOrderIndex\": null,\n        \"index2\": null,\n        \"postOrderIndex\": null,\n        \"optional\": false,\n        \"orphan\": false,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"id\": \"\",\n        \"chunks\": [\n          \"runtime\"\n        ],\n        \"assets\": [],\n        \"reasons\": [],\n        \"usedExports\": null,\n        \"providedExports\": [],\n        \"optimizationBailout\": [],\n        \"depth\": null\n      }\n    ],\n    \"entrypoints\": {\n      \"app\": {\n        \"name\": \"app\",\n        \"chunks\": [\n          \"app\"\n        ],\n        \"assets\": [\n          {\n            \"name\": \"app.js\",\n            \"size\": 274\n          }\n        ],\n        \"filteredAssets\": 0,\n        \"assetsSize\": 274,\n        \"auxiliaryAssets\": [],\n        \"filteredAuxiliaryAssets\": 0,\n        \"auxiliaryAssetsSize\": 0,\n        \"children\": {},\n        \"childAssets\": {},\n        \"isOverSizeLimit\": false\n      },\n      \"page1\": {\n        \"name\": \"page1\",\n        \"chunks\": [\n          \"page1\"\n        ],\n        \"assets\": [\n          {\n            \"name\": \"page1.js\",\n            \"size\": 333\n          }\n        ],\n        \"filteredAssets\": 0,\n        \"assetsSize\": 333,\n        \"auxiliaryAssets\": [],\n        \"filteredAuxiliaryAssets\": 0,\n        \"auxiliaryAssetsSize\": 0,\n        \"children\": {},\n        \"childAssets\": {},\n        \"isOverSizeLimit\": false\n      },\n      \"react-vendors\": {\n        \"name\": \"react-vendors\",\n        \"chunks\": [\n          \"runtime\",\n          \"react-vendors\"\n        ],\n        \"assets\": [\n          {\n            \"name\": \"runtime.js\",\n            \"size\": 3205\n          },\n          {\n            \"name\": \"react-vendors.js\",\n            \"size\": 130522\n          }\n        ],\n        \"filteredAssets\": 0,\n        \"assetsSize\": 133727,\n        \"auxiliaryAssets\": [],\n        \"filteredAuxiliaryAssets\": 0,\n        \"auxiliaryAssetsSize\": 0,\n        \"children\": {},\n        \"childAssets\": {},\n        \"isOverSizeLimit\": false\n      },\n      \"other-vendors\": {\n        \"name\": \"other-vendors\",\n        \"chunks\": [\n          \"runtime\",\n          \"other-vendors\"\n        ],\n        \"assets\": [\n          {\n            \"name\": \"runtime.js\",\n            \"size\": 3205\n          },\n          {\n            \"name\": \"other-vendors.js\",\n            \"size\": 79779\n          }\n        ],\n        \"filteredAssets\": 0,\n        \"assetsSize\": 82984,\n        \"auxiliaryAssets\": [],\n        \"filteredAuxiliaryAssets\": 0,\n        \"auxiliaryAssetsSize\": 0,\n        \"children\": {},\n        \"childAssets\": {},\n        \"isOverSizeLimit\": false\n      }\n    },\n    \"namedChunkGroups\": {\n      \"app\": {\n        \"name\": \"app\",\n        \"chunks\": [\n          \"app\"\n        ],\n        \"assets\": [\n          {\n            \"name\": \"app.js\",\n            \"size\": 274\n          }\n        ],\n        \"filteredAssets\": 0,\n        \"assetsSize\": 274,\n        \"auxiliaryAssets\": [],\n        \"filteredAuxiliaryAssets\": 0,\n        \"auxiliaryAssetsSize\": 0,\n        \"children\": {},\n        \"childAssets\": {},\n        \"isOverSizeLimit\": false\n      },\n      \"page1\": {\n        \"name\": \"page1\",\n        \"chunks\": [\n          \"page1\"\n        ],\n        \"assets\": [\n          {\n            \"name\": \"page1.js\",\n            \"size\": 333\n          }\n        ],\n        \"filteredAssets\": 0,\n        \"assetsSize\": 333,\n        \"auxiliaryAssets\": [],\n        \"filteredAuxiliaryAssets\": 0,\n        \"auxiliaryAssetsSize\": 0,\n        \"children\": {},\n        \"childAssets\": {},\n        \"isOverSizeLimit\": false\n      },\n      \"react-vendors\": {\n        \"name\": \"react-vendors\",\n        \"chunks\": [\n          \"runtime\",\n          \"react-vendors\"\n        ],\n        \"assets\": [\n          {\n            \"name\": \"runtime.js\",\n            \"size\": 3205\n          },\n          {\n            \"name\": \"react-vendors.js\",\n            \"size\": 130522\n          }\n        ],\n        \"filteredAssets\": 0,\n        \"assetsSize\": 133727,\n        \"auxiliaryAssets\": [],\n        \"filteredAuxiliaryAssets\": 0,\n        \"auxiliaryAssetsSize\": 0,\n        \"children\": {},\n        \"childAssets\": {},\n        \"isOverSizeLimit\": false\n      },\n      \"other-vendors\": {\n        \"name\": \"other-vendors\",\n        \"chunks\": [\n          \"runtime\",\n          \"other-vendors\"\n        ],\n        \"assets\": [\n          {\n            \"name\": \"runtime.js\",\n            \"size\": 3205\n          },\n          {\n            \"name\": \"other-vendors.js\",\n            \"size\": 79779\n          }\n        ],\n        \"filteredAssets\": 0,\n        \"assetsSize\": 82984,\n        \"auxiliaryAssets\": [],\n        \"filteredAuxiliaryAssets\": 0,\n        \"auxiliaryAssetsSize\": 0,\n        \"children\": {},\n        \"childAssets\": {},\n        \"isOverSizeLimit\": false\n      }\n    },\n    \"errors\": [],\n    \"errorsCount\": 0,\n    \"warnings\": [\n      {\n        \"message\": \"configuration\\nThe 'mode' option has not been set, webpack will fallback to 'production' for this value.\\nSet 'mode' option to 'development' or 'production' to enable defaults for each environment.\\nYou can also set it to 'none' to disable any default behavior. Learn more: https://webpack.js.org/configuration/mode/\",\n        \"stack\": \"NoModeWarning: configuration\\nThe 'mode' option has not been set, webpack will fallback to 'production' for this value.\\nSet 'mode' option to 'development' or 'production' to enable defaults for each environment.\\nYou can also set it to 'none' to disable any default behavior. Learn more: https://webpack.js.org/configuration/mode/\\n    at /home/coder/webpack/node_modules/webpack/lib/WarnNoModeSetPlugin.js:20:30\\n    at Hook.eval [as call] (eval at create (/home/coder/webpack/node_modules/tapable/lib/HookCodeFactory.js:19:10), <anonymous>:19:1)\\n    at Hook.CALL_DELEGATE [as _call] (/home/coder/webpack/node_modules/tapable/lib/Hook.js:14:14)\\n    at Compiler.newCompilation (/home/coder/webpack/node_modules/webpack/lib/Compiler.js:1121:30)\\n    at /home/coder/webpack/node_modules/webpack/lib/Compiler.js:1166:29\\n    at Hook.eval [as callAsync] (eval at create (/home/coder/webpack/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:4:1)\\n    at Hook.CALL_ASYNC_DELEGATE [as _callAsync] (/home/coder/webpack/node_modules/tapable/lib/Hook.js:18:14)\\n    at Compiler.compile (/home/coder/webpack/node_modules/webpack/lib/Compiler.js:1161:28)\\n    at /home/coder/webpack/node_modules/webpack/lib/Compiler.js:524:12\\n    at Compiler.readRecords (/home/coder/webpack/node_modules/webpack/lib/Compiler.js:986:5)\"\n      }\n    ],\n    \"warningsCount\": 1,\n    \"children\": []\n  }"
  },
  {
    "path": "test/stats/with-no-entrypoints/stats.json",
    "content": "{\n  \"hash\": \"0d30ee86a3a7e89aaace\",\n  \"version\": \"5.74.0\",\n  \"time\": 42,\n  \"builtAt\": 1660844314317,\n  \"publicPath\": \"auto\",\n  \"outputPath\": \"/home/coder/webpack/examples/code-splitting-depend-on-advanced/dist\",\n  \"assetsByChunkName\": {},\n  \"assets\": [],\n  \"chunks\": [],\n  \"modules\": [],\n  \"entrypoints\": {},\n  \"namedChunkGroups\": {},\n  \"errors\": [],\n  \"errorsCount\": 0,\n  \"warnings\": [\n    {\n      \"message\": \"configuration\\nThe 'mode' option has not been set, webpack will fallback to 'production' for this value.\\nSet 'mode' option to 'development' or 'production' to enable defaults for each environment.\\nYou can also set it to 'none' to disable any default behavior. Learn more: https://webpack.js.org/configuration/mode/\",\n      \"stack\": \"NoModeWarning: configuration\\nThe 'mode' option has not been set, webpack will fallback to 'production' for this value.\\nSet 'mode' option to 'development' or 'production' to enable defaults for each environment.\\nYou can also set it to 'none' to disable any default behavior. Learn more: https://webpack.js.org/configuration/mode/\\n    at /home/coder/webpack/node_modules/webpack/lib/WarnNoModeSetPlugin.js:20:30\\n    at Hook.eval [as call] (eval at create (/home/coder/webpack/node_modules/tapable/lib/HookCodeFactory.js:19:10), <anonymous>:19:1)\\n    at Hook.CALL_DELEGATE [as _call] (/home/coder/webpack/node_modules/tapable/lib/Hook.js:14:14)\\n    at Compiler.newCompilation (/home/coder/webpack/node_modules/webpack/lib/Compiler.js:1121:30)\\n    at /home/coder/webpack/node_modules/webpack/lib/Compiler.js:1166:29\\n    at Hook.eval [as callAsync] (eval at create (/home/coder/webpack/node_modules/tapable/lib/HookCodeFactory.js:33:10), <anonymous>:4:1)\\n    at Hook.CALL_ASYNC_DELEGATE [as _callAsync] (/home/coder/webpack/node_modules/tapable/lib/Hook.js:18:14)\\n    at Compiler.compile (/home/coder/webpack/node_modules/webpack/lib/Compiler.js:1161:28)\\n    at /home/coder/webpack/node_modules/webpack/lib/Compiler.js:524:12\\n    at Compiler.readRecords (/home/coder/webpack/node_modules/webpack/lib/Compiler.js:986:5)\"\n    }\n  ],\n  \"warningsCount\": 1,\n  \"children\": []\n}"
  },
  {
    "path": "test/stats/with-non-asset-asset/bundle.js",
    "content": "(()=>{var r={146:r=>{r.exports=\"module a\"},296:r=>{r.exports=\"module a\"},260:r=>{r.exports=\"module b\"}},e={};function o(t){if(e[t])return e[t].exports;var p=e[t]={exports:{}};return r[t](p,p.exports,o),p.exports}o(296),o(260),o(146)})();"
  },
  {
    "path": "test/stats/with-non-asset-asset/stats.json",
    "content": "{\n  \"hash\": \"a00ccf8c892bb7cacd85\",\n  \"version\": \"5.1.0\",\n  \"time\": 279,\n  \"builtAt\": 1602608505481,\n  \"publicPath\": \"auto\",\n  \"outputPath\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/stats/with-non-asset-chunk\",\n  \"assetsByChunkName\": {\n    \"main\": [\n      \"bundle.js\"\n    ]\n  },\n  \"assets\": [\n    {\n      \"type\": \"hidden assets\",\n      \"filteredChildren\": 1,\n      \"size\": 29\n    },\n    {\n      \"type\": \"asset\",\n      \"name\": \"bundle.js\",\n      \"size\": 237,\n      \"chunkNames\": [\n        \"main\"\n      ],\n      \"chunkIdHints\": [],\n      \"auxiliaryChunkNames\": [],\n      \"auxiliaryChunkIdHints\": [],\n      \"emitted\": true,\n      \"comparedForEmit\": false,\n      \"cached\": false,\n      \"info\": {\n        \"minimized\": true,\n        \"size\": 237\n      },\n      \"related\": {},\n      \"chunks\": [\n        179\n      ],\n      \"auxiliaryChunks\": [],\n      \"isOverSizeLimit\": false\n    }\n  ],\n  \"chunks\": [\n    {\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"recorded\": false,\n      \"size\": 141,\n      \"sizes\": {\n        \"javascript\": 141\n      },\n      \"names\": [\n        \"main\"\n      ],\n      \"idHints\": [],\n      \"runtime\": [\n        \"main\"\n      ],\n      \"files\": [\n        \"bundle.js\"\n      ],\n      \"auxiliaryFiles\": [],\n      \"hash\": \"368fad705e34fecd2ddf\",\n      \"childrenByOrder\": {},\n      \"id\": 179,\n      \"siblings\": [],\n      \"parents\": [],\n      \"children\": [],\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"main\",\n          \"request\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\"\n        }\n      ]\n    }\n  ],\n  \"modules\": [\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n      \"name\": \"./test/src/index.js\",\n      \"nameForCondition\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n      \"index\": 0,\n      \"preOrderIndex\": 0,\n      \"index2\": 3,\n      \"postOrderIndex\": 3,\n      \"size\": 54,\n      \"sizes\": {\n        \"javascript\": 54\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"issuer\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"profile\": {\n        \"total\": 44,\n        \"resolving\": 28,\n        \"restoring\": 0,\n        \"building\": 16,\n        \"integration\": 0,\n        \"storing\": 0,\n        \"additionalResolving\": 0,\n        \"additionalIntegration\": 0,\n        \"factory\": 28,\n        \"dependencies\": 0\n      },\n      \"id\": 755,\n      \"issuerId\": null,\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"resolvedModuleIdentifier\": null,\n          \"resolvedModule\": null,\n          \"type\": \"entry\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n          \"loc\": \"main\",\n          \"moduleId\": null,\n          \"resolvedModuleId\": null\n        }\n      ],\n      \"usedExports\": [],\n      \"providedExports\": null,\n      \"optimizationBailout\": [\n        \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n      ],\n      \"depth\": 0\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/a.js\",\n      \"name\": \"./test/src/a.js\",\n      \"nameForCondition\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/a.js\",\n      \"index\": 1,\n      \"preOrderIndex\": 1,\n      \"index2\": 0,\n      \"postOrderIndex\": 0,\n      \"size\": 29,\n      \"sizes\": {\n        \"javascript\": 29\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"issuer\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n      \"issuerName\": \"./test/src/index.js\",\n      \"issuerPath\": [\n        {\n          \"identifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./test/src/index.js\",\n          \"profile\": {\n            \"total\": 44,\n            \"resolving\": 28,\n            \"restoring\": 0,\n            \"building\": 16,\n            \"integration\": 0,\n            \"storing\": 0,\n            \"additionalResolving\": 0,\n            \"additionalIntegration\": 0,\n            \"factory\": 28,\n            \"dependencies\": 0\n          },\n          \"id\": 755\n        }\n      ],\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"profile\": {\n        \"total\": 0,\n        \"resolving\": 0,\n        \"restoring\": 0,\n        \"building\": 0,\n        \"integration\": 0,\n        \"storing\": 0,\n        \"additionalResolving\": 0,\n        \"additionalIntegration\": 0,\n        \"factory\": 0,\n        \"dependencies\": 0\n      },\n      \"id\": 296,\n      \"issuerId\": 755,\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/a.js\",\n          \"module\": \"./test/src/a.js\",\n          \"moduleName\": \"./test/src/a.js\",\n          \"resolvedModuleIdentifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/a.js\",\n          \"resolvedModule\": \"./test/src/a.js\",\n          \"type\": \"cjs self exports reference\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": null,\n          \"loc\": \"1:0-14\",\n          \"moduleId\": 296,\n          \"resolvedModuleId\": 296\n        },\n        {\n          \"moduleIdentifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./test/src/index.js\",\n          \"moduleName\": \"./test/src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./test/src/index.js\",\n          \"type\": \"cjs require\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./a\",\n          \"loc\": \"1:0-14\",\n          \"moduleId\": 755,\n          \"resolvedModuleId\": 755\n        }\n      ],\n      \"usedExports\": null,\n      \"providedExports\": null,\n      \"optimizationBailout\": [\n        \"CommonJS bailout: module.exports is used directly at 1:0-14\",\n        \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n      ],\n      \"depth\": 1\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/b.js\",\n      \"name\": \"./test/src/b.js\",\n      \"nameForCondition\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/b.js\",\n      \"index\": 2,\n      \"preOrderIndex\": 2,\n      \"index2\": 1,\n      \"postOrderIndex\": 1,\n      \"size\": 29,\n      \"sizes\": {\n        \"javascript\": 29\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"issuer\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n      \"issuerName\": \"./test/src/index.js\",\n      \"issuerPath\": [\n        {\n          \"identifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./test/src/index.js\",\n          \"profile\": {\n            \"total\": 44,\n            \"resolving\": 28,\n            \"restoring\": 0,\n            \"building\": 16,\n            \"integration\": 0,\n            \"storing\": 0,\n            \"additionalResolving\": 0,\n            \"additionalIntegration\": 0,\n            \"factory\": 28,\n            \"dependencies\": 0\n          },\n          \"id\": 755\n        }\n      ],\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"profile\": {\n        \"total\": 0,\n        \"resolving\": 0,\n        \"restoring\": 0,\n        \"building\": 0,\n        \"integration\": 0,\n        \"storing\": 0,\n        \"additionalResolving\": 0,\n        \"additionalIntegration\": 0,\n        \"factory\": 0,\n        \"dependencies\": 0\n      },\n      \"id\": 260,\n      \"issuerId\": 755,\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/b.js\",\n          \"module\": \"./test/src/b.js\",\n          \"moduleName\": \"./test/src/b.js\",\n          \"resolvedModuleIdentifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/b.js\",\n          \"resolvedModule\": \"./test/src/b.js\",\n          \"type\": \"cjs self exports reference\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": null,\n          \"loc\": \"1:0-14\",\n          \"moduleId\": 260,\n          \"resolvedModuleId\": 260\n        },\n        {\n          \"moduleIdentifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./test/src/index.js\",\n          \"moduleName\": \"./test/src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./test/src/index.js\",\n          \"type\": \"cjs require\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./b\",\n          \"loc\": \"2:0-14\",\n          \"moduleId\": 755,\n          \"resolvedModuleId\": 755\n        }\n      ],\n      \"usedExports\": null,\n      \"providedExports\": null,\n      \"optimizationBailout\": [\n        \"CommonJS bailout: module.exports is used directly at 1:0-14\",\n        \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n      ],\n      \"depth\": 1\n    },\n    {\n      \"type\": \"module\",\n      \"moduleType\": \"javascript/auto\",\n      \"identifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/a-clone.js\",\n      \"name\": \"./test/src/a-clone.js\",\n      \"nameForCondition\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/a-clone.js\",\n      \"index\": 3,\n      \"preOrderIndex\": 3,\n      \"index2\": 2,\n      \"postOrderIndex\": 2,\n      \"size\": 29,\n      \"sizes\": {\n        \"javascript\": 29\n      },\n      \"cacheable\": true,\n      \"built\": true,\n      \"codeGenerated\": true,\n      \"cached\": false,\n      \"optional\": false,\n      \"orphan\": false,\n      \"issuer\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n      \"issuerName\": \"./test/src/index.js\",\n      \"issuerPath\": [\n        {\n          \"identifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n          \"name\": \"./test/src/index.js\",\n          \"profile\": {\n            \"total\": 44,\n            \"resolving\": 28,\n            \"restoring\": 0,\n            \"building\": 16,\n            \"integration\": 0,\n            \"storing\": 0,\n            \"additionalResolving\": 0,\n            \"additionalIntegration\": 0,\n            \"factory\": 28,\n            \"dependencies\": 0\n          },\n          \"id\": 755\n        }\n      ],\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"profile\": {\n        \"total\": 0,\n        \"resolving\": 0,\n        \"restoring\": 0,\n        \"building\": 0,\n        \"integration\": 0,\n        \"storing\": 0,\n        \"additionalResolving\": 0,\n        \"additionalIntegration\": 0,\n        \"factory\": 0,\n        \"dependencies\": 0\n      },\n      \"id\": 146,\n      \"issuerId\": 755,\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleIdentifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/a-clone.js\",\n          \"module\": \"./test/src/a-clone.js\",\n          \"moduleName\": \"./test/src/a-clone.js\",\n          \"resolvedModuleIdentifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/a-clone.js\",\n          \"resolvedModule\": \"./test/src/a-clone.js\",\n          \"type\": \"cjs self exports reference\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": null,\n          \"loc\": \"1:0-14\",\n          \"moduleId\": 146,\n          \"resolvedModuleId\": 146\n        },\n        {\n          \"moduleIdentifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n          \"module\": \"./test/src/index.js\",\n          \"moduleName\": \"./test/src/index.js\",\n          \"resolvedModuleIdentifier\": \"/Users/zhengkenghong/Projects/Other/webpack-bundle-analyzer/test/src/index.js\",\n          \"resolvedModule\": \"./test/src/index.js\",\n          \"type\": \"cjs require\",\n          \"active\": true,\n          \"explanation\": \"\",\n          \"userRequest\": \"./a-clone\",\n          \"loc\": \"3:0-20\",\n          \"moduleId\": 755,\n          \"resolvedModuleId\": 755\n        }\n      ],\n      \"usedExports\": null,\n      \"providedExports\": null,\n      \"optimizationBailout\": [\n        \"CommonJS bailout: module.exports is used directly at 1:0-14\",\n        \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n      ],\n      \"depth\": 1\n    }\n  ],\n  \"entrypoints\": {\n    \"main\": {\n      \"name\": \"main\",\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n        {\n          \"name\": \"bundle.js\",\n          \"size\": 237\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"assetsSize\": 237,\n      \"auxiliaryAssets\": [],\n      \"filteredAuxiliaryAssets\": 0,\n      \"auxiliaryAssetsSize\": 0,\n      \"children\": {},\n      \"childAssets\": {},\n      \"isOverSizeLimit\": false\n    }\n  },\n  \"namedChunkGroups\": {\n    \"main\": {\n      \"name\": \"main\",\n      \"chunks\": [\n        179\n      ],\n      \"assets\": [\n        {\n          \"name\": \"bundle.js\",\n          \"size\": 237\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"assetsSize\": 237,\n      \"auxiliaryAssets\": [],\n      \"filteredAuxiliaryAssets\": 0,\n      \"auxiliaryAssetsSize\": 0,\n      \"children\": {},\n      \"childAssets\": {},\n      \"isOverSizeLimit\": false\n    }\n  },\n  \"errors\": [],\n  \"errorsCount\": 0,\n  \"warnings\": [],\n  \"warningsCount\": 0,\n  \"children\": []\n}\n"
  },
  {
    "path": "test/stats/with-special-chars/bundle.js",
    "content": "!function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,\"a\",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p=\"\",r(r.s=0)}([function(e,t,r){\"use strict\";r.r(t),console.log(\"!\\\"#$%&amp;'()*+,-./0123456789:;&lt;=&gt;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ&nbsp;¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿĀāĂăĄąĆćĈĉĊċČčĎďĐđĒēĔĕĖėĘęĚěĜĝĞğĠġĢģĤĥĦħĨĩĪīĬĭĮįİıĲĳĴĵĶķĸĹĺĻļĽľĿŀŁłŃńŅņŇňŉŊŋŌōŎŏŐőŒœŔŕŖŗŘřŚśŜŝŞşŠšŢţŤťŦŧŨũŪūŬŭŮůŰűŲųŴŵŶŷŸŹźŻżŽžſƀƁƂƃƄƅƆƇƈƉƊƋƌƍƎƏƐƑƒƓƔƕƖƗƘƙƚƛƜƝƞƟƠơƢƣƤƥƦƧƨƩƪƫƬƭƮƯưƱƲƳƴƵƶƷƸƹƺƻƼƽƾƿǀǁǂǃǄǅǆǇǈǉǊǋǌǍǎǏǐǑǒǓǔǕǖǗǘǙǚǛǜǝǞǟǠǡǢǣǤǥǦǧǨǩǪǫǬǭǮǯǰǱǲǳǴǵǶǷǸǹǺǻǼǽǾǿȀȁȂȃȄȅȆȇȈȉȊȋȌȍȎȏȐȑȒȓȔȕȖȗȘșȚțȜȝȞȟȠȡȢȣȤȥȦȧȨȩȪȫȬȭȮȯȰȱȲȳȴȵȶȷȸȹȺȻȼȽȾȿɀɁɂɃɄɅɆɇɈɉɊɋɌɍɎɏɐɑɒɓɔɕɖɗɘəɚɛɜɝɞɟɠɡɢɣɤɥɦɧɨɩɪɫɬɭɮɯɰɱɲɳɴɵɶɷɸɹɺɻɼɽɾɿʀʁʂʃʄʅʆʇʈʉʊʋʌʍʎʏʐʑʒʓʔʕʖʗʘʙʚʛʜʝʞʟʠʡʢʣʤʥʦʧʨʩʪʫʬʭʮʯʰʱʲʳʴʵʶʷʸʹʺʻʼʽʾʿˀˁ˂˃˄˅ˆˇˈˉˊˋˌˍˎˏːˑ˒˓˔˕˖˗˘˙˚˛˜˝˞˟ˠˡˢˣˤ˥˦˧˨˩˪˫ˬ˭ˮ˯˰˱˲˳˴˵˶˷˸˹˺˻˼˽˾˿̴̵̶̷̸̡̢̧̨̛̖̗̘̙̜̝̞̟̠̣̤̥̦̩̪̫̬̭̮̯̰̱̲̳̹̺̻̼͇͈͉͍͎̀́̂̃̄̅̆̇̈̉̊̋̌̍̎̏̐̑̒̓̔̽̾̿̀́͂̓̈́͆͊͋͌̕̚ͅ͏͓͔͕͖͙͚͐͑͒͗͛ͣͤͥͦͧͨͩͪͫͬͭͮͯ͘͜͟͢͝͞͠͡ͰͱͲͳʹ͵Ͷͷͺͻͼͽ;Ϳ΄΅Ά·ΈΉΊΌΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώϏϐϑϒϓϔϕϖϗϘϙϚϛϜϝϞϟϠϡϢϣϤϥϦϧϨϩϪϫϬϭϮϯϰϱϲϳϴϵ϶ϷϸϹϺϻϼϽϾϿЀЁЂЃЄЅІЇЈ\")}]);"
  },
  {
    "path": "test/stats/with-special-chars/expected-chart-data.js",
    "content": "module.exports = [\n  {\n    \"groups\": [\n      {\n        \"id\": 0,\n        \"label\": \"index.js\",\n        \"path\": \"./index.js\",\n        \"statSize\": 1021\n      }\n    ],\n    \"label\": \"bundle.js\",\n    \"statSize\": 1021\n  }\n];\n"
  },
  {
    "path": "test/stats/with-special-chars/stats.json",
    "content": "{\n  \"errors\": [],\n  \"warnings\": [],\n  \"version\": \"4.25.1\",\n  \"hash\": \"6a0006856f4405101aa5\",\n  \"time\": 279,\n  \"builtAt\": 1542409324382,\n  \"publicPath\": \"\",\n  \"outputPath\": \"/tmp/with-special-chars\",\n  \"assetsByChunkName\": {\n    \"main\": \"bundle.js\"\n  },\n  \"assets\": [\n    {\n      \"name\": \"bundle.js\",\n      \"size\": 1972,\n      \"chunks\": [\n        0\n      ],\n      \"chunkNames\": [\n        \"main\"\n      ],\n      \"emitted\": true\n    }\n  ],\n  \"filteredAssets\": 0,\n  \"entrypoints\": {\n    \"main\": {\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [\n        \"bundle.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    }\n  },\n  \"namedChunkGroups\": {\n    \"main\": {\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [\n        \"bundle.js\"\n      ],\n      \"children\": {},\n      \"childAssets\": {}\n    }\n  },\n  \"chunks\": [\n    {\n      \"id\": 0,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"size\": 1021,\n      \"names\": [\n        \"main\"\n      ],\n      \"files\": [\n        \"bundle.js\"\n      ],\n      \"hash\": \"ad9a5baaeb4c63ce54e3\",\n      \"siblings\": [],\n      \"parents\": [],\n      \"children\": [],\n      \"childrenByOrder\": {},\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"/tmp/with-special-chars/index.js\",\n          \"name\": \"./index.js\",\n          \"index\": 0,\n          \"index2\": 0,\n          \"size\": 1021,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            0\n          ],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"/tmp/with-special-chars/index.js\",\n              \"loc\": \"main\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is an entry point\"\n          ],\n          \"depth\": 0,\n          \"source\": \"console.log(`!\\\"#$%&amp;'()*+,-./0123456789:;&lt;=&gt;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\\\]^_abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ&nbsp;¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿĀāĂăĄąĆćĈĉĊċČčĎďĐđĒēĔĕĖėĘęĚěĜĝĞğĠġĢģĤĥĦħĨĩĪīĬĭĮįİıĲĳĴĵĶķĸĹĺĻļĽľĿŀŁłŃńŅņŇňŉŊŋŌōŎŏŐőŒœŔŕŖŗŘřŚśŜŝŞşŠšŢţŤťŦŧŨũŪūŬŭŮůŰűŲųŴŵŶŷŸŹźŻżŽžſƀƁƂƃƄƅƆƇƈƉƊƋƌƍƎƏƐƑƒƓƔƕƖƗƘƙƚƛƜƝƞƟƠơƢƣƤƥƦƧƨƩƪƫƬƭƮƯưƱƲƳƴƵƶƷƸƹƺƻƼƽƾƿǀǁǂǃǄǅǆǇǈǉǊǋǌǍǎǏǐǑǒǓǔǕǖǗǘǙǚǛǜǝǞǟǠǡǢǣǤǥǦǧǨǩǪǫǬǭǮǯǰǱǲǳǴǵǶǷǸǹǺǻǼǽǾǿȀȁȂȃȄȅȆȇȈȉȊȋȌȍȎȏȐȑȒȓȔȕȖȗȘșȚțȜȝȞȟȠȡȢȣȤȥȦȧȨȩȪȫȬȭȮȯȰȱȲȳȴȵȶȷȸȹȺȻȼȽȾȿɀɁɂɃɄɅɆɇɈɉɊɋɌɍɎɏɐɑɒɓɔɕɖɗɘəɚɛɜɝɞɟɠɡɢɣɤɥɦɧɨɩɪɫɬɭɮɯɰɱɲɳɴɵɶɷɸɹɺɻɼɽɾɿʀʁʂʃʄʅʆʇʈʉʊʋʌʍʎʏʐʑʒʓʔʕʖʗʘʙʚʛʜʝʞʟʠʡʢʣʤʥʦʧʨʩʪʫʬʭʮʯʰʱʲʳʴʵʶʷʸʹʺʻʼʽʾʿˀˁ˂˃˄˅ˆˇˈˉˊˋˌˍˎˏːˑ˒˓˔˕˖˗˘˙˚˛˜˝˞˟ˠˡˢˣˤ˥˦˧˨˩˪˫ˬ˭ˮ˯˰˱˲˳˴˵˶˷˸˹˺˻˼˽˾˿̴̵̶̷̸̡̢̧̨̛̖̗̘̙̜̝̞̟̠̣̤̥̦̩̪̫̬̭̮̯̰̱̲̳̹̺̻̼͇͈͉͍͎̀́̂̃̄̅̆̇̈̉̊̋̌̍̎̏̐̑̒̓̔̽̾̿̀́͂̓̈́͆͊͋͌̕̚ͅ͏͓͔͕͖͙͚͐͑͒͗͛ͣͤͥͦͧͨͩͪͫͬͭͮͯ͘͜͟͢͝͞͠͡ͰͱͲͳʹ͵Ͷͷͺͻͼͽ;Ϳ΄΅Ά·ΈΉΊΌΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώϏϐϑϒϓϔϕϖϗϘϙϚϛϜϝϞϟϠϡϢϣϤϥϦϧϨϩϪϫϬϭϮϯϰϱϲϳϴϵ϶ϷϸϹϺϻϼϽϾϿЀЁЂЃЄЅІЇЈ`)\\n\"\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"main\",\n          \"request\": \"/tmp/with-special-chars/index.js\",\n          \"reasons\": []\n        }\n      ]\n    }\n  ],\n  \"modules\": [\n    {\n      \"id\": 0,\n      \"identifier\": \"/tmp/with-special-chars/index.js\",\n      \"name\": \"./index.js\",\n      \"index\": 0,\n      \"index2\": 0,\n      \"size\": 1021,\n      \"cacheable\": true,\n      \"built\": true,\n      \"optional\": false,\n      \"prefetched\": false,\n      \"chunks\": [\n        0\n      ],\n      \"issuer\": null,\n      \"issuerId\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"assets\": [],\n      \"reasons\": [\n        {\n          \"moduleId\": null,\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"type\": \"single entry\",\n          \"userRequest\": \"/tmp/with-special-chars/index.js\",\n          \"loc\": \"main\"\n        }\n      ],\n      \"usedExports\": true,\n      \"providedExports\": [],\n      \"optimizationBailout\": [\n        \"ModuleConcatenation bailout: Module is an entry point\"\n      ],\n      \"depth\": 0,\n      \"source\": \"console.log(`!\\\"#$%&amp;'()*+,-./0123456789:;&lt;=&gt;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\\\]^_abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ&nbsp;¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿĀāĂăĄąĆćĈĉĊċČčĎďĐđĒēĔĕĖėĘęĚěĜĝĞğĠġĢģĤĥĦħĨĩĪīĬĭĮįİıĲĳĴĵĶķĸĹĺĻļĽľĿŀŁłŃńŅņŇňŉŊŋŌōŎŏŐőŒœŔŕŖŗŘřŚśŜŝŞşŠšŢţŤťŦŧŨũŪūŬŭŮůŰűŲųŴŵŶŷŸŹźŻżŽžſƀƁƂƃƄƅƆƇƈƉƊƋƌƍƎƏƐƑƒƓƔƕƖƗƘƙƚƛƜƝƞƟƠơƢƣƤƥƦƧƨƩƪƫƬƭƮƯưƱƲƳƴƵƶƷƸƹƺƻƼƽƾƿǀǁǂǃǄǅǆǇǈǉǊǋǌǍǎǏǐǑǒǓǔǕǖǗǘǙǚǛǜǝǞǟǠǡǢǣǤǥǦǧǨǩǪǫǬǭǮǯǰǱǲǳǴǵǶǷǸǹǺǻǼǽǾǿȀȁȂȃȄȅȆȇȈȉȊȋȌȍȎȏȐȑȒȓȔȕȖȗȘșȚțȜȝȞȟȠȡȢȣȤȥȦȧȨȩȪȫȬȭȮȯȰȱȲȳȴȵȶȷȸȹȺȻȼȽȾȿɀɁɂɃɄɅɆɇɈɉɊɋɌɍɎɏɐɑɒɓɔɕɖɗɘəɚɛɜɝɞɟɠɡɢɣɤɥɦɧɨɩɪɫɬɭɮɯɰɱɲɳɴɵɶɷɸɹɺɻɼɽɾɿʀʁʂʃʄʅʆʇʈʉʊʋʌʍʎʏʐʑʒʓʔʕʖʗʘʙʚʛʜʝʞʟʠʡʢʣʤʥʦʧʨʩʪʫʬʭʮʯʰʱʲʳʴʵʶʷʸʹʺʻʼʽʾʿˀˁ˂˃˄˅ˆˇˈˉˊˋˌˍˎˏːˑ˒˓˔˕˖˗˘˙˚˛˜˝˞˟ˠˡˢˣˤ˥˦˧˨˩˪˫ˬ˭ˮ˯˰˱˲˳˴˵˶˷˸˹˺˻˼˽˾˿̴̵̶̷̸̡̢̧̨̛̖̗̘̙̜̝̞̟̠̣̤̥̦̩̪̫̬̭̮̯̰̱̲̳̹̺̻̼͇͈͉͍͎̀́̂̃̄̅̆̇̈̉̊̋̌̍̎̏̐̑̒̓̔̽̾̿̀́͂̓̈́͆͊͋͌̕̚ͅ͏͓͔͕͖͙͚͐͑͒͗͛ͣͤͥͦͧͨͩͪͫͬͭͮͯ͘͜͟͢͝͞͠͡ͰͱͲͳʹ͵Ͷͷͺͻͼͽ;Ϳ΄΅Ά·ΈΉΊΌΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώϏϐϑϒϓϔϕϖϗϘϙϚϛϜϝϞϟϠϡϢϣϤϥϦϧϨϩϪϫϬϭϮϯϰϱϲϳϴϵ϶ϷϸϹϺϻϼϽϾϿЀЁЂЃЄЅІЇЈ`)\\n\"\n    }\n  ],\n  \"filteredModules\": 0,\n  \"children\": []\n}\n"
  },
  {
    "path": "test/stats/with-worker-loader/bundle.js",
    "content": "!function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:o})},n.r=function(e){Object.defineProperty(e,\"__esModule\",{value:!0})},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,\"a\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\"\",n(n.s=1)}([function(e,t,n){\"use strict\";n.r(t);var o=0,r={},u=new function(){return new Worker(n.p+\"bundle.worker.js\")};u.addEventListener(\"message\",function(e){var t=e.data.id,n=r[t].fn,o=r[t].args;n.apply(null,o),delete r[t]}),window.setTimeout=function(e,t){var n=Array.prototype.slice.call(arguments,2);t=t||0;var i=o+=1;return r[i]={fn:e,args:n},u.postMessage({command:\"setTimeout\",id:i,timeout:t}),i},window.clearTimeout=function(e){u.postMessage({command:\"clearTimeout\",id:e}),delete r[e]},console.log(\"hello world\"),window.setTimeout(()=>console.log(\"hello world after 5 sec\"),5e3)},function(e,t,n){e.exports=n(0)}]);"
  },
  {
    "path": "test/stats/with-worker-loader/bundle.worker.js",
    "content": "!function(n){var t={};function r(e){if(t[e])return t[e].exports;var u=t[e]={i:e,l:!1,exports:{}};return n[e].call(u.exports,u,u.exports,r),u.l=!0,u.exports}r.m=n,r.c=t,r.d=function(n,t,e){r.o(n,t)||Object.defineProperty(n,t,{configurable:!1,enumerable:!0,get:e})},r.r=function(n){Object.defineProperty(n,\"__esModule\",{value:!0})},r.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return r.d(t,\"a\",t),t},r.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},r.p=\"\",r(r.s=3)}([function(n,t){n.exports=function(n){return n.webpackPolyfill||(n.deprecate=function(){},n.paths=[],n.children||(n.children=[]),Object.defineProperty(n,\"loaded\",{enumerable:!0,get:function(){return n.l}}),Object.defineProperty(n,\"id\",{enumerable:!0,get:function(){return n.i}}),n.webpackPolyfill=1),n}},function(n,t){var r;r=function(){return this}();try{r=r||Function(\"return this\")()||(0,eval)(\"this\")}catch(n){\"object\"==typeof window&&(r=window)}n.exports=r},function(n,t,r){(function(n,e){var u;\n    /**\n     * @license\n     * Lodash <https://lodash.com/>\n     * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>\n     * Released under MIT license <https://lodash.com/license>\n     * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>\n     * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n     */(function(){var i,o=200,f=\"Unsupported core-js use. Try https://npms.io/search?q=ponyfill.\",a=\"Expected a function\",c=\"__lodash_hash_undefined__\",l=500,s=\"__lodash_placeholder__\",h=1,p=2,v=4,_=1,g=2,y=1,d=2,b=4,w=8,m=16,x=32,j=64,A=128,O=256,k=512,I=30,R=\"...\",E=800,z=16,S=1,L=2,W=1/0,C=9007199254740991,T=1.7976931348623157e308,U=NaN,B=4294967295,$=B-1,D=B>>>1,M=[[\"ary\",A],[\"bind\",y],[\"bindKey\",d],[\"curry\",w],[\"curryRight\",m],[\"flip\",k],[\"partial\",x],[\"partialRight\",j],[\"rearg\",O]],P=\"[object Arguments]\",F=\"[object Array]\",N=\"[object AsyncFunction]\",q=\"[object Boolean]\",Z=\"[object Date]\",K=\"[object DOMException]\",V=\"[object Error]\",G=\"[object Function]\",H=\"[object GeneratorFunction]\",J=\"[object Map]\",Y=\"[object Number]\",Q=\"[object Null]\",X=\"[object Object]\",nn=\"[object Proxy]\",tn=\"[object RegExp]\",rn=\"[object Set]\",en=\"[object String]\",un=\"[object Symbol]\",on=\"[object Undefined]\",fn=\"[object WeakMap]\",an=\"[object WeakSet]\",cn=\"[object ArrayBuffer]\",ln=\"[object DataView]\",sn=\"[object Float32Array]\",hn=\"[object Float64Array]\",pn=\"[object Int8Array]\",vn=\"[object Int16Array]\",_n=\"[object Int32Array]\",gn=\"[object Uint8Array]\",yn=\"[object Uint8ClampedArray]\",dn=\"[object Uint16Array]\",bn=\"[object Uint32Array]\",wn=/\\b__p \\+= '';/g,mn=/\\b(__p \\+=) '' \\+/g,xn=/(__e\\(.*?\\)|\\b__t\\)) \\+\\n'';/g,jn=/&(?:amp|lt|gt|quot|#39);/g,An=/[&<>\"']/g,On=RegExp(jn.source),kn=RegExp(An.source),In=/<%-([\\s\\S]+?)%>/g,Rn=/<%([\\s\\S]+?)%>/g,En=/<%=([\\s\\S]+?)%>/g,zn=/\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\\\]|\\\\.)*?\\1)\\]/,Sn=/^\\w*$/,Ln=/[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g,Wn=/[\\\\^$.*+?()[\\]{}|]/g,Cn=RegExp(Wn.source),Tn=/^\\s+|\\s+$/g,Un=/^\\s+/,Bn=/\\s+$/,$n=/\\{(?:\\n\\/\\* \\[wrapped with .+\\] \\*\\/)?\\n?/,Dn=/\\{\\n\\/\\* \\[wrapped with (.+)\\] \\*/,Mn=/,? & /,Pn=/[^\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\x7f]+/g,Fn=/\\\\(\\\\)?/g,Nn=/\\$\\{([^\\\\}]*(?:\\\\.[^\\\\}]*)*)\\}/g,qn=/\\w*$/,Zn=/^[-+]0x[0-9a-f]+$/i,Kn=/^0b[01]+$/i,Vn=/^\\[object .+?Constructor\\]$/,Gn=/^0o[0-7]+$/i,Hn=/^(?:0|[1-9]\\d*)$/,Jn=/[\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\xff\\u0100-\\u017f]/g,Yn=/($^)/,Qn=/['\\n\\r\\u2028\\u2029\\\\]/g,Xn=\"\\\\u0300-\\\\u036f\\\\ufe20-\\\\ufe2f\\\\u20d0-\\\\u20ff\",nt=\"\\\\xac\\\\xb1\\\\xd7\\\\xf7\\\\x00-\\\\x2f\\\\x3a-\\\\x40\\\\x5b-\\\\x60\\\\x7b-\\\\xbf\\\\u2000-\\\\u206f \\\\t\\\\x0b\\\\f\\\\xa0\\\\ufeff\\\\n\\\\r\\\\u2028\\\\u2029\\\\u1680\\\\u180e\\\\u2000\\\\u2001\\\\u2002\\\\u2003\\\\u2004\\\\u2005\\\\u2006\\\\u2007\\\\u2008\\\\u2009\\\\u200a\\\\u202f\\\\u205f\\\\u3000\",tt=\"[\\\\ud800-\\\\udfff]\",rt=\"[\"+nt+\"]\",et=\"[\"+Xn+\"]\",ut=\"\\\\d+\",it=\"[\\\\u2700-\\\\u27bf]\",ot=\"[a-z\\\\xdf-\\\\xf6\\\\xf8-\\\\xff]\",ft=\"[^\\\\ud800-\\\\udfff\"+nt+ut+\"\\\\u2700-\\\\u27bfa-z\\\\xdf-\\\\xf6\\\\xf8-\\\\xffA-Z\\\\xc0-\\\\xd6\\\\xd8-\\\\xde]\",at=\"\\\\ud83c[\\\\udffb-\\\\udfff]\",ct=\"[^\\\\ud800-\\\\udfff]\",lt=\"(?:\\\\ud83c[\\\\udde6-\\\\uddff]){2}\",st=\"[\\\\ud800-\\\\udbff][\\\\udc00-\\\\udfff]\",ht=\"[A-Z\\\\xc0-\\\\xd6\\\\xd8-\\\\xde]\",pt=\"(?:\"+ot+\"|\"+ft+\")\",vt=\"(?:\"+ht+\"|\"+ft+\")\",_t=\"(?:\"+et+\"|\"+at+\")\"+\"?\",gt=\"[\\\\ufe0e\\\\ufe0f]?\"+_t+(\"(?:\\\\u200d(?:\"+[ct,lt,st].join(\"|\")+\")[\\\\ufe0e\\\\ufe0f]?\"+_t+\")*\"),yt=\"(?:\"+[it,lt,st].join(\"|\")+\")\"+gt,dt=\"(?:\"+[ct+et+\"?\",et,lt,st,tt].join(\"|\")+\")\",bt=RegExp(\"['’]\",\"g\"),wt=RegExp(et,\"g\"),mt=RegExp(at+\"(?=\"+at+\")|\"+dt+gt,\"g\"),xt=RegExp([ht+\"?\"+ot+\"+(?:['’](?:d|ll|m|re|s|t|ve))?(?=\"+[rt,ht,\"$\"].join(\"|\")+\")\",vt+\"+(?:['’](?:D|LL|M|RE|S|T|VE))?(?=\"+[rt,ht+pt,\"$\"].join(\"|\")+\")\",ht+\"?\"+pt+\"+(?:['’](?:d|ll|m|re|s|t|ve))?\",ht+\"+(?:['’](?:D|LL|M|RE|S|T|VE))?\",\"\\\\d*(?:1ST|2ND|3RD|(?![123])\\\\dTH)(?=\\\\b|[a-z_])\",\"\\\\d*(?:1st|2nd|3rd|(?![123])\\\\dth)(?=\\\\b|[A-Z_])\",ut,yt].join(\"|\"),\"g\"),jt=RegExp(\"[\\\\u200d\\\\ud800-\\\\udfff\"+Xn+\"\\\\ufe0e\\\\ufe0f]\"),At=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,Ot=[\"Array\",\"Buffer\",\"DataView\",\"Date\",\"Error\",\"Float32Array\",\"Float64Array\",\"Function\",\"Int8Array\",\"Int16Array\",\"Int32Array\",\"Map\",\"Math\",\"Object\",\"Promise\",\"RegExp\",\"Set\",\"String\",\"Symbol\",\"TypeError\",\"Uint8Array\",\"Uint8ClampedArray\",\"Uint16Array\",\"Uint32Array\",\"WeakMap\",\"_\",\"clearTimeout\",\"isFinite\",\"parseInt\",\"setTimeout\"],kt=-1,It={};It[sn]=It[hn]=It[pn]=It[vn]=It[_n]=It[gn]=It[yn]=It[dn]=It[bn]=!0,It[P]=It[F]=It[cn]=It[q]=It[ln]=It[Z]=It[V]=It[G]=It[J]=It[Y]=It[X]=It[tn]=It[rn]=It[en]=It[fn]=!1;var Rt={};Rt[P]=Rt[F]=Rt[cn]=Rt[ln]=Rt[q]=Rt[Z]=Rt[sn]=Rt[hn]=Rt[pn]=Rt[vn]=Rt[_n]=Rt[J]=Rt[Y]=Rt[X]=Rt[tn]=Rt[rn]=Rt[en]=Rt[un]=Rt[gn]=Rt[yn]=Rt[dn]=Rt[bn]=!0,Rt[V]=Rt[G]=Rt[fn]=!1;var Et={\"\\\\\":\"\\\\\",\"'\":\"'\",\"\\n\":\"n\",\"\\r\":\"r\",\"\\u2028\":\"u2028\",\"\\u2029\":\"u2029\"},zt=parseFloat,St=parseInt,Lt=\"object\"==typeof n&&n&&n.Object===Object&&n,Wt=\"object\"==typeof self&&self&&self.Object===Object&&self,Ct=Lt||Wt||Function(\"return this\")(),Tt=\"object\"==typeof t&&t&&!t.nodeType&&t,Ut=Tt&&\"object\"==typeof e&&e&&!e.nodeType&&e,Bt=Ut&&Ut.exports===Tt,$t=Bt&&Lt.process,Dt=function(){try{var n=Ut&&Ut.require&&Ut.require(\"util\").types;return n||$t&&$t.binding&&$t.binding(\"util\")}catch(n){}}(),Mt=Dt&&Dt.isArrayBuffer,Pt=Dt&&Dt.isDate,Ft=Dt&&Dt.isMap,Nt=Dt&&Dt.isRegExp,qt=Dt&&Dt.isSet,Zt=Dt&&Dt.isTypedArray;function Kt(n,t,r){switch(r.length){case 0:return n.call(t);case 1:return n.call(t,r[0]);case 2:return n.call(t,r[0],r[1]);case 3:return n.call(t,r[0],r[1],r[2])}return n.apply(t,r)}function Vt(n,t,r,e){for(var u=-1,i=null==n?0:n.length;++u<i;){var o=n[u];t(e,o,r(o),n)}return e}function Gt(n,t){for(var r=-1,e=null==n?0:n.length;++r<e&&!1!==t(n[r],r,n););return n}function Ht(n,t){for(var r=null==n?0:n.length;r--&&!1!==t(n[r],r,n););return n}function Jt(n,t){for(var r=-1,e=null==n?0:n.length;++r<e;)if(!t(n[r],r,n))return!1;return!0}function Yt(n,t){for(var r=-1,e=null==n?0:n.length,u=0,i=[];++r<e;){var o=n[r];t(o,r,n)&&(i[u++]=o)}return i}function Qt(n,t){return!!(null==n?0:n.length)&&ar(n,t,0)>-1}function Xt(n,t,r){for(var e=-1,u=null==n?0:n.length;++e<u;)if(r(t,n[e]))return!0;return!1}function nr(n,t){for(var r=-1,e=null==n?0:n.length,u=Array(e);++r<e;)u[r]=t(n[r],r,n);return u}function tr(n,t){for(var r=-1,e=t.length,u=n.length;++r<e;)n[u+r]=t[r];return n}function rr(n,t,r,e){var u=-1,i=null==n?0:n.length;for(e&&i&&(r=n[++u]);++u<i;)r=t(r,n[u],u,n);return r}function er(n,t,r,e){var u=null==n?0:n.length;for(e&&u&&(r=n[--u]);u--;)r=t(r,n[u],u,n);return r}function ur(n,t){for(var r=-1,e=null==n?0:n.length;++r<e;)if(t(n[r],r,n))return!0;return!1}var ir=hr(\"length\");function or(n,t,r){var e;return r(n,function(n,r,u){if(t(n,r,u))return e=r,!1}),e}function fr(n,t,r,e){for(var u=n.length,i=r+(e?1:-1);e?i--:++i<u;)if(t(n[i],i,n))return i;return-1}function ar(n,t,r){return t==t?function(n,t,r){var e=r-1,u=n.length;for(;++e<u;)if(n[e]===t)return e;return-1}(n,t,r):fr(n,lr,r)}function cr(n,t,r,e){for(var u=r-1,i=n.length;++u<i;)if(e(n[u],t))return u;return-1}function lr(n){return n!=n}function sr(n,t){var r=null==n?0:n.length;return r?_r(n,t)/r:U}function hr(n){return function(t){return null==t?i:t[n]}}function pr(n){return function(t){return null==n?i:n[t]}}function vr(n,t,r,e,u){return u(n,function(n,u,i){r=e?(e=!1,n):t(r,n,u,i)}),r}function _r(n,t){for(var r,e=-1,u=n.length;++e<u;){var o=t(n[e]);o!==i&&(r=r===i?o:r+o)}return r}function gr(n,t){for(var r=-1,e=Array(n);++r<n;)e[r]=t(r);return e}function yr(n){return function(t){return n(t)}}function dr(n,t){return nr(t,function(t){return n[t]})}function br(n,t){return n.has(t)}function wr(n,t){for(var r=-1,e=n.length;++r<e&&ar(t,n[r],0)>-1;);return r}function mr(n,t){for(var r=n.length;r--&&ar(t,n[r],0)>-1;);return r}var xr=pr({\"À\":\"A\",\"Á\":\"A\",\"Â\":\"A\",\"Ã\":\"A\",\"Ä\":\"A\",\"Å\":\"A\",\"à\":\"a\",\"á\":\"a\",\"â\":\"a\",\"ã\":\"a\",\"ä\":\"a\",\"å\":\"a\",\"Ç\":\"C\",\"ç\":\"c\",\"Ð\":\"D\",\"ð\":\"d\",\"È\":\"E\",\"É\":\"E\",\"Ê\":\"E\",\"Ë\":\"E\",\"è\":\"e\",\"é\":\"e\",\"ê\":\"e\",\"ë\":\"e\",\"Ì\":\"I\",\"Í\":\"I\",\"Î\":\"I\",\"Ï\":\"I\",\"ì\":\"i\",\"í\":\"i\",\"î\":\"i\",\"ï\":\"i\",\"Ñ\":\"N\",\"ñ\":\"n\",\"Ò\":\"O\",\"Ó\":\"O\",\"Ô\":\"O\",\"Õ\":\"O\",\"Ö\":\"O\",\"Ø\":\"O\",\"ò\":\"o\",\"ó\":\"o\",\"ô\":\"o\",\"õ\":\"o\",\"ö\":\"o\",\"ø\":\"o\",\"Ù\":\"U\",\"Ú\":\"U\",\"Û\":\"U\",\"Ü\":\"U\",\"ù\":\"u\",\"ú\":\"u\",\"û\":\"u\",\"ü\":\"u\",\"Ý\":\"Y\",\"ý\":\"y\",\"ÿ\":\"y\",\"Æ\":\"Ae\",\"æ\":\"ae\",\"Þ\":\"Th\",\"þ\":\"th\",\"ß\":\"ss\",\"Ā\":\"A\",\"Ă\":\"A\",\"Ą\":\"A\",\"ā\":\"a\",\"ă\":\"a\",\"ą\":\"a\",\"Ć\":\"C\",\"Ĉ\":\"C\",\"Ċ\":\"C\",\"Č\":\"C\",\"ć\":\"c\",\"ĉ\":\"c\",\"ċ\":\"c\",\"č\":\"c\",\"Ď\":\"D\",\"Đ\":\"D\",\"ď\":\"d\",\"đ\":\"d\",\"Ē\":\"E\",\"Ĕ\":\"E\",\"Ė\":\"E\",\"Ę\":\"E\",\"Ě\":\"E\",\"ē\":\"e\",\"ĕ\":\"e\",\"ė\":\"e\",\"ę\":\"e\",\"ě\":\"e\",\"Ĝ\":\"G\",\"Ğ\":\"G\",\"Ġ\":\"G\",\"Ģ\":\"G\",\"ĝ\":\"g\",\"ğ\":\"g\",\"ġ\":\"g\",\"ģ\":\"g\",\"Ĥ\":\"H\",\"Ħ\":\"H\",\"ĥ\":\"h\",\"ħ\":\"h\",\"Ĩ\":\"I\",\"Ī\":\"I\",\"Ĭ\":\"I\",\"Į\":\"I\",\"İ\":\"I\",\"ĩ\":\"i\",\"ī\":\"i\",\"ĭ\":\"i\",\"į\":\"i\",\"ı\":\"i\",\"Ĵ\":\"J\",\"ĵ\":\"j\",\"Ķ\":\"K\",\"ķ\":\"k\",\"ĸ\":\"k\",\"Ĺ\":\"L\",\"Ļ\":\"L\",\"Ľ\":\"L\",\"Ŀ\":\"L\",\"Ł\":\"L\",\"ĺ\":\"l\",\"ļ\":\"l\",\"ľ\":\"l\",\"ŀ\":\"l\",\"ł\":\"l\",\"Ń\":\"N\",\"Ņ\":\"N\",\"Ň\":\"N\",\"Ŋ\":\"N\",\"ń\":\"n\",\"ņ\":\"n\",\"ň\":\"n\",\"ŋ\":\"n\",\"Ō\":\"O\",\"Ŏ\":\"O\",\"Ő\":\"O\",\"ō\":\"o\",\"ŏ\":\"o\",\"ő\":\"o\",\"Ŕ\":\"R\",\"Ŗ\":\"R\",\"Ř\":\"R\",\"ŕ\":\"r\",\"ŗ\":\"r\",\"ř\":\"r\",\"Ś\":\"S\",\"Ŝ\":\"S\",\"Ş\":\"S\",\"Š\":\"S\",\"ś\":\"s\",\"ŝ\":\"s\",\"ş\":\"s\",\"š\":\"s\",\"Ţ\":\"T\",\"Ť\":\"T\",\"Ŧ\":\"T\",\"ţ\":\"t\",\"ť\":\"t\",\"ŧ\":\"t\",\"Ũ\":\"U\",\"Ū\":\"U\",\"Ŭ\":\"U\",\"Ů\":\"U\",\"Ű\":\"U\",\"Ų\":\"U\",\"ũ\":\"u\",\"ū\":\"u\",\"ŭ\":\"u\",\"ů\":\"u\",\"ű\":\"u\",\"ų\":\"u\",\"Ŵ\":\"W\",\"ŵ\":\"w\",\"Ŷ\":\"Y\",\"ŷ\":\"y\",\"Ÿ\":\"Y\",\"Ź\":\"Z\",\"Ż\":\"Z\",\"Ž\":\"Z\",\"ź\":\"z\",\"ż\":\"z\",\"ž\":\"z\",\"Ĳ\":\"IJ\",\"ĳ\":\"ij\",\"Œ\":\"Oe\",\"œ\":\"oe\",\"ŉ\":\"'n\",\"ſ\":\"s\"}),jr=pr({\"&\":\"&amp;\",\"<\":\"&lt;\",\">\":\"&gt;\",'\"':\"&quot;\",\"'\":\"&#39;\"});function Ar(n){return\"\\\\\"+Et[n]}function Or(n){return jt.test(n)}function kr(n){var t=-1,r=Array(n.size);return n.forEach(function(n,e){r[++t]=[e,n]}),r}function Ir(n,t){return function(r){return n(t(r))}}function Rr(n,t){for(var r=-1,e=n.length,u=0,i=[];++r<e;){var o=n[r];o!==t&&o!==s||(n[r]=s,i[u++]=r)}return i}function Er(n){var t=-1,r=Array(n.size);return n.forEach(function(n){r[++t]=n}),r}function zr(n){var t=-1,r=Array(n.size);return n.forEach(function(n){r[++t]=[n,n]}),r}function Sr(n){return Or(n)?function(n){var t=mt.lastIndex=0;for(;mt.test(n);)++t;return t}(n):ir(n)}function Lr(n){return Or(n)?function(n){return n.match(mt)||[]}(n):function(n){return n.split(\"\")}(n)}var Wr=pr({\"&amp;\":\"&\",\"&lt;\":\"<\",\"&gt;\":\">\",\"&quot;\":'\"',\"&#39;\":\"'\"});var Cr=function n(t){var r=(t=null==t?Ct:Cr.defaults(Ct.Object(),t,Cr.pick(Ct,Ot))).Array,e=t.Date,u=t.Error,Xn=t.Function,nt=t.Math,tt=t.Object,rt=t.RegExp,et=t.String,ut=t.TypeError,it=r.prototype,ot=Xn.prototype,ft=tt.prototype,at=t[\"__core-js_shared__\"],ct=ot.toString,lt=ft.hasOwnProperty,st=0,ht=function(){var n=/[^.]+$/.exec(at&&at.keys&&at.keys.IE_PROTO||\"\");return n?\"Symbol(src)_1.\"+n:\"\"}(),pt=ft.toString,vt=ct.call(tt),_t=Ct._,gt=rt(\"^\"+ct.call(lt).replace(Wn,\"\\\\$&\").replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g,\"$1.*?\")+\"$\"),yt=Bt?t.Buffer:i,dt=t.Symbol,mt=t.Uint8Array,jt=yt?yt.allocUnsafe:i,Et=Ir(tt.getPrototypeOf,tt),Lt=tt.create,Wt=ft.propertyIsEnumerable,Tt=it.splice,Ut=dt?dt.isConcatSpreadable:i,$t=dt?dt.iterator:i,Dt=dt?dt.toStringTag:i,ir=function(){try{var n=Bi(tt,\"defineProperty\");return n({},\"\",{}),n}catch(n){}}(),pr=t.clearTimeout!==Ct.clearTimeout&&t.clearTimeout,Tr=e&&e.now!==Ct.Date.now&&e.now,Ur=t.setTimeout!==Ct.setTimeout&&t.setTimeout,Br=nt.ceil,$r=nt.floor,Dr=tt.getOwnPropertySymbols,Mr=yt?yt.isBuffer:i,Pr=t.isFinite,Fr=it.join,Nr=Ir(tt.keys,tt),qr=nt.max,Zr=nt.min,Kr=e.now,Vr=t.parseInt,Gr=nt.random,Hr=it.reverse,Jr=Bi(t,\"DataView\"),Yr=Bi(t,\"Map\"),Qr=Bi(t,\"Promise\"),Xr=Bi(t,\"Set\"),ne=Bi(t,\"WeakMap\"),te=Bi(tt,\"create\"),re=ne&&new ne,ee={},ue=co(Jr),ie=co(Yr),oe=co(Qr),fe=co(Xr),ae=co(ne),ce=dt?dt.prototype:i,le=ce?ce.valueOf:i,se=ce?ce.toString:i;function he(n){if(Rf(n)&&!yf(n)&&!(n instanceof ge)){if(n instanceof _e)return n;if(lt.call(n,\"__wrapped__\"))return lo(n)}return new _e(n)}var pe=function(){function n(){}return function(t){if(!If(t))return{};if(Lt)return Lt(t);n.prototype=t;var r=new n;return n.prototype=i,r}}();function ve(){}function _e(n,t){this.__wrapped__=n,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=i}function ge(n){this.__wrapped__=n,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=B,this.__views__=[]}function ye(n){var t=-1,r=null==n?0:n.length;for(this.clear();++t<r;){var e=n[t];this.set(e[0],e[1])}}function de(n){var t=-1,r=null==n?0:n.length;for(this.clear();++t<r;){var e=n[t];this.set(e[0],e[1])}}function be(n){var t=-1,r=null==n?0:n.length;for(this.clear();++t<r;){var e=n[t];this.set(e[0],e[1])}}function we(n){var t=-1,r=null==n?0:n.length;for(this.__data__=new be;++t<r;)this.add(n[t])}function me(n){var t=this.__data__=new de(n);this.size=t.size}function xe(n,t){var r=yf(n),e=!r&&gf(n),u=!r&&!e&&mf(n),i=!r&&!e&&!u&&Uf(n),o=r||e||u||i,f=o?gr(n.length,et):[],a=f.length;for(var c in n)!t&&!lt.call(n,c)||o&&(\"length\"==c||u&&(\"offset\"==c||\"parent\"==c)||i&&(\"buffer\"==c||\"byteLength\"==c||\"byteOffset\"==c)||qi(c,a))||f.push(c);return f}function je(n){var t=n.length;return t?n[wu(0,t-1)]:i}function Ae(n,t){return oo(ti(n),We(t,0,n.length))}function Oe(n){return oo(ti(n))}function ke(n,t,r){(r===i||pf(n[t],r))&&(r!==i||t in n)||Se(n,t,r)}function Ie(n,t,r){var e=n[t];lt.call(n,t)&&pf(e,r)&&(r!==i||t in n)||Se(n,t,r)}function Re(n,t){for(var r=n.length;r--;)if(pf(n[r][0],t))return r;return-1}function Ee(n,t,r,e){return $e(n,function(n,u,i){t(e,n,r(n),i)}),e}function ze(n,t){return n&&ri(t,ua(t),n)}function Se(n,t,r){\"__proto__\"==t&&ir?ir(n,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):n[t]=r}function Le(n,t){for(var e=-1,u=t.length,o=r(u),f=null==n;++e<u;)o[e]=f?i:Xf(n,t[e]);return o}function We(n,t,r){return n==n&&(r!==i&&(n=n<=r?n:r),t!==i&&(n=n>=t?n:t)),n}function Ce(n,t,r,e,u,o){var f,a=t&h,c=t&p,l=t&v;if(r&&(f=u?r(n,e,u,o):r(n)),f!==i)return f;if(!If(n))return n;var s=yf(n);if(s){if(f=function(n){var t=n.length,r=new n.constructor(t);return t&&\"string\"==typeof n[0]&&lt.call(n,\"index\")&&(r.index=n.index,r.input=n.input),r}(n),!a)return ti(n,f)}else{var _=Mi(n),g=_==G||_==H;if(mf(n))return Hu(n,a);if(_==X||_==P||g&&!u){if(f=c||g?{}:Fi(n),!a)return c?function(n,t){return ri(n,Di(n),t)}(n,function(n,t){return n&&ri(t,ia(t),n)}(f,n)):function(n,t){return ri(n,$i(n),t)}(n,ze(f,n))}else{if(!Rt[_])return u?n:{};f=function(n,t,r){var e=n.constructor;switch(t){case cn:return Ju(n);case q:case Z:return new e(+n);case ln:return function(n,t){var r=t?Ju(n.buffer):n.buffer;return new n.constructor(r,n.byteOffset,n.byteLength)}(n,r);case sn:case hn:case pn:case vn:case _n:case gn:case yn:case dn:case bn:return Yu(n,r);case J:return new e;case Y:case en:return new e(n);case tn:return function(n){var t=new n.constructor(n.source,qn.exec(n));return t.lastIndex=n.lastIndex,t}(n);case rn:return new e;case un:return function(n){return le?tt(le.call(n)):{}}(n)}}(n,_,a)}}o||(o=new me);var y=o.get(n);if(y)return y;o.set(n,f),Wf(n)?n.forEach(function(e){f.add(Ce(e,t,r,e,n,o))}):Ef(n)&&n.forEach(function(e,u){f.set(u,Ce(e,t,r,u,n,o))});var d=s?i:(l?c?zi:Ei:c?ia:ua)(n);return Gt(d||n,function(e,u){d&&(e=n[u=e]),Ie(f,u,Ce(e,t,r,u,n,o))}),f}function Te(n,t,r){var e=r.length;if(null==n)return!e;for(n=tt(n);e--;){var u=r[e],o=t[u],f=n[u];if(f===i&&!(u in n)||!o(f))return!1}return!0}function Ue(n,t,r){if(\"function\"!=typeof n)throw new ut(a);return ro(function(){n.apply(i,r)},t)}function Be(n,t,r,e){var u=-1,i=Qt,f=!0,a=n.length,c=[],l=t.length;if(!a)return c;r&&(t=nr(t,yr(r))),e?(i=Xt,f=!1):t.length>=o&&(i=br,f=!1,t=new we(t));n:for(;++u<a;){var s=n[u],h=null==r?s:r(s);if(s=e||0!==s?s:0,f&&h==h){for(var p=l;p--;)if(t[p]===h)continue n;c.push(s)}else i(t,h,e)||c.push(s)}return c}he.templateSettings={escape:In,evaluate:Rn,interpolate:En,variable:\"\",imports:{_:he}},he.prototype=ve.prototype,he.prototype.constructor=he,_e.prototype=pe(ve.prototype),_e.prototype.constructor=_e,ge.prototype=pe(ve.prototype),ge.prototype.constructor=ge,ye.prototype.clear=function(){this.__data__=te?te(null):{},this.size=0},ye.prototype.delete=function(n){var t=this.has(n)&&delete this.__data__[n];return this.size-=t?1:0,t},ye.prototype.get=function(n){var t=this.__data__;if(te){var r=t[n];return r===c?i:r}return lt.call(t,n)?t[n]:i},ye.prototype.has=function(n){var t=this.__data__;return te?t[n]!==i:lt.call(t,n)},ye.prototype.set=function(n,t){var r=this.__data__;return this.size+=this.has(n)?0:1,r[n]=te&&t===i?c:t,this},de.prototype.clear=function(){this.__data__=[],this.size=0},de.prototype.delete=function(n){var t=this.__data__,r=Re(t,n);return!(r<0||(r==t.length-1?t.pop():Tt.call(t,r,1),--this.size,0))},de.prototype.get=function(n){var t=this.__data__,r=Re(t,n);return r<0?i:t[r][1]},de.prototype.has=function(n){return Re(this.__data__,n)>-1},de.prototype.set=function(n,t){var r=this.__data__,e=Re(r,n);return e<0?(++this.size,r.push([n,t])):r[e][1]=t,this},be.prototype.clear=function(){this.size=0,this.__data__={hash:new ye,map:new(Yr||de),string:new ye}},be.prototype.delete=function(n){var t=Ti(this,n).delete(n);return this.size-=t?1:0,t},be.prototype.get=function(n){return Ti(this,n).get(n)},be.prototype.has=function(n){return Ti(this,n).has(n)},be.prototype.set=function(n,t){var r=Ti(this,n),e=r.size;return r.set(n,t),this.size+=r.size==e?0:1,this},we.prototype.add=we.prototype.push=function(n){return this.__data__.set(n,c),this},we.prototype.has=function(n){return this.__data__.has(n)},me.prototype.clear=function(){this.__data__=new de,this.size=0},me.prototype.delete=function(n){var t=this.__data__,r=t.delete(n);return this.size=t.size,r},me.prototype.get=function(n){return this.__data__.get(n)},me.prototype.has=function(n){return this.__data__.has(n)},me.prototype.set=function(n,t){var r=this.__data__;if(r instanceof de){var e=r.__data__;if(!Yr||e.length<o-1)return e.push([n,t]),this.size=++r.size,this;r=this.__data__=new be(e)}return r.set(n,t),this.size=r.size,this};var $e=ii(Ke),De=ii(Ve,!0);function Me(n,t){var r=!0;return $e(n,function(n,e,u){return r=!!t(n,e,u)}),r}function Pe(n,t,r){for(var e=-1,u=n.length;++e<u;){var o=n[e],f=t(o);if(null!=f&&(a===i?f==f&&!Tf(f):r(f,a)))var a=f,c=o}return c}function Fe(n,t){var r=[];return $e(n,function(n,e,u){t(n,e,u)&&r.push(n)}),r}function Ne(n,t,r,e,u){var i=-1,o=n.length;for(r||(r=Ni),u||(u=[]);++i<o;){var f=n[i];t>0&&r(f)?t>1?Ne(f,t-1,r,e,u):tr(u,f):e||(u[u.length]=f)}return u}var qe=oi(),Ze=oi(!0);function Ke(n,t){return n&&qe(n,t,ua)}function Ve(n,t){return n&&Ze(n,t,ua)}function Ge(n,t){return Yt(t,function(t){return Af(n[t])})}function He(n,t){for(var r=0,e=(t=Zu(t,n)).length;null!=n&&r<e;)n=n[ao(t[r++])];return r&&r==e?n:i}function Je(n,t,r){var e=t(n);return yf(n)?e:tr(e,r(n))}function Ye(n){return null==n?n===i?on:Q:Dt&&Dt in tt(n)?function(n){var t=lt.call(n,Dt),r=n[Dt];try{n[Dt]=i;var e=!0}catch(n){}var u=pt.call(n);return e&&(t?n[Dt]=r:delete n[Dt]),u}(n):function(n){return pt.call(n)}(n)}function Qe(n,t){return n>t}function Xe(n,t){return null!=n&&lt.call(n,t)}function nu(n,t){return null!=n&&t in tt(n)}function tu(n,t,e){for(var u=e?Xt:Qt,o=n[0].length,f=n.length,a=f,c=r(f),l=1/0,s=[];a--;){var h=n[a];a&&t&&(h=nr(h,yr(t))),l=Zr(h.length,l),c[a]=!e&&(t||o>=120&&h.length>=120)?new we(a&&h):i}h=n[0];var p=-1,v=c[0];n:for(;++p<o&&s.length<l;){var _=h[p],g=t?t(_):_;if(_=e||0!==_?_:0,!(v?br(v,g):u(s,g,e))){for(a=f;--a;){var y=c[a];if(!(y?br(y,g):u(n[a],g,e)))continue n}v&&v.push(g),s.push(_)}}return s}function ru(n,t,r){var e=null==(n=Xi(n,t=Zu(t,n)))?n:n[ao(xo(t))];return null==e?i:Kt(e,n,r)}function eu(n){return Rf(n)&&Ye(n)==P}function uu(n,t,r,e,u){return n===t||(null==n||null==t||!Rf(n)&&!Rf(t)?n!=n&&t!=t:function(n,t,r,e,u,o){var f=yf(n),a=yf(t),c=f?F:Mi(n),l=a?F:Mi(t),s=(c=c==P?X:c)==X,h=(l=l==P?X:l)==X,p=c==l;if(p&&mf(n)){if(!mf(t))return!1;f=!0,s=!1}if(p&&!s)return o||(o=new me),f||Uf(n)?Ii(n,t,r,e,u,o):function(n,t,r,e,u,i,o){switch(r){case ln:if(n.byteLength!=t.byteLength||n.byteOffset!=t.byteOffset)return!1;n=n.buffer,t=t.buffer;case cn:return!(n.byteLength!=t.byteLength||!i(new mt(n),new mt(t)));case q:case Z:case Y:return pf(+n,+t);case V:return n.name==t.name&&n.message==t.message;case tn:case en:return n==t+\"\";case J:var f=kr;case rn:var a=e&_;if(f||(f=Er),n.size!=t.size&&!a)return!1;var c=o.get(n);if(c)return c==t;e|=g,o.set(n,t);var l=Ii(f(n),f(t),e,u,i,o);return o.delete(n),l;case un:if(le)return le.call(n)==le.call(t)}return!1}(n,t,c,r,e,u,o);if(!(r&_)){var v=s&&lt.call(n,\"__wrapped__\"),y=h&&lt.call(t,\"__wrapped__\");if(v||y){var d=v?n.value():n,b=y?t.value():t;return o||(o=new me),u(d,b,r,e,o)}}return!!p&&(o||(o=new me),function(n,t,r,e,u,o){var f=r&_,a=Ei(n),c=a.length,l=Ei(t).length;if(c!=l&&!f)return!1;for(var s=c;s--;){var h=a[s];if(!(f?h in t:lt.call(t,h)))return!1}var p=o.get(n),v=o.get(t);if(p&&v)return p==t&&v==n;var g=!0;o.set(n,t),o.set(t,n);for(var y=f;++s<c;){h=a[s];var d=n[h],b=t[h];if(e)var w=f?e(b,d,h,t,n,o):e(d,b,h,n,t,o);if(!(w===i?d===b||u(d,b,r,e,o):w)){g=!1;break}y||(y=\"constructor\"==h)}if(g&&!y){var m=n.constructor,x=t.constructor;m!=x&&\"constructor\"in n&&\"constructor\"in t&&!(\"function\"==typeof m&&m instanceof m&&\"function\"==typeof x&&x instanceof x)&&(g=!1)}return o.delete(n),o.delete(t),g}(n,t,r,e,u,o))}(n,t,r,e,uu,u))}function iu(n,t,r,e){var u=r.length,o=u,f=!e;if(null==n)return!o;for(n=tt(n);u--;){var a=r[u];if(f&&a[2]?a[1]!==n[a[0]]:!(a[0]in n))return!1}for(;++u<o;){var c=(a=r[u])[0],l=n[c],s=a[1];if(f&&a[2]){if(l===i&&!(c in n))return!1}else{var h=new me;if(e)var p=e(l,s,c,n,t,h);if(!(p===i?uu(s,l,_|g,e,h):p))return!1}}return!0}function ou(n){return!(!If(n)||function(n){return!!ht&&ht in n}(n))&&(Af(n)?gt:Vn).test(co(n))}function fu(n){return\"function\"==typeof n?n:null==n?za:\"object\"==typeof n?yf(n)?pu(n[0],n[1]):hu(n):Da(n)}function au(n){if(!Hi(n))return Nr(n);var t=[];for(var r in tt(n))lt.call(n,r)&&\"constructor\"!=r&&t.push(r);return t}function cu(n){if(!If(n))return function(n){var t=[];if(null!=n)for(var r in tt(n))t.push(r);return t}(n);var t=Hi(n),r=[];for(var e in n)(\"constructor\"!=e||!t&&lt.call(n,e))&&r.push(e);return r}function lu(n,t){return n<t}function su(n,t){var e=-1,u=bf(n)?r(n.length):[];return $e(n,function(n,r,i){u[++e]=t(n,r,i)}),u}function hu(n){var t=Ui(n);return 1==t.length&&t[0][2]?Yi(t[0][0],t[0][1]):function(r){return r===n||iu(r,n,t)}}function pu(n,t){return Ki(n)&&Ji(t)?Yi(ao(n),t):function(r){var e=Xf(r,n);return e===i&&e===t?na(r,n):uu(t,e,_|g)}}function vu(n,t,r,e,u){n!==t&&qe(t,function(o,f){if(u||(u=new me),If(o))!function(n,t,r,e,u,o,f){var a=no(n,r),c=no(t,r),l=f.get(c);if(l)ke(n,r,l);else{var s=o?o(a,c,r+\"\",n,t,f):i,h=s===i;if(h){var p=yf(c),v=!p&&mf(c),_=!p&&!v&&Uf(c);s=c,p||v||_?yf(a)?s=a:wf(a)?s=ti(a):v?(h=!1,s=Hu(c,!0)):_?(h=!1,s=Yu(c,!0)):s=[]:Sf(c)||gf(c)?(s=a,gf(a)?s=qf(a):If(a)&&!Af(a)||(s=Fi(c))):h=!1}h&&(f.set(c,s),u(s,c,e,o,f),f.delete(c)),ke(n,r,s)}}(n,t,f,r,vu,e,u);else{var a=e?e(no(n,f),o,f+\"\",n,t,u):i;a===i&&(a=o),ke(n,f,a)}},ia)}function _u(n,t){var r=n.length;if(r)return qi(t+=t<0?r:0,r)?n[t]:i}function gu(n,t,r){t=t.length?nr(t,function(n){return yf(n)?function(t){return He(t,1===n.length?n[0]:n)}:n}):[za];var e=-1;return t=nr(t,yr(Ci())),function(n,t){var r=n.length;for(n.sort(t);r--;)n[r]=n[r].value;return n}(su(n,function(n,r,u){return{criteria:nr(t,function(t){return t(n)}),index:++e,value:n}}),function(n,t){return function(n,t,r){for(var e=-1,u=n.criteria,i=t.criteria,o=u.length,f=r.length;++e<o;){var a=Qu(u[e],i[e]);if(a){if(e>=f)return a;var c=r[e];return a*(\"desc\"==c?-1:1)}}return n.index-t.index}(n,t,r)})}function yu(n,t,r){for(var e=-1,u=t.length,i={};++e<u;){var o=t[e],f=He(n,o);r(f,o)&&Ou(i,Zu(o,n),f)}return i}function du(n,t,r,e){var u=e?cr:ar,i=-1,o=t.length,f=n;for(n===t&&(t=ti(t)),r&&(f=nr(n,yr(r)));++i<o;)for(var a=0,c=t[i],l=r?r(c):c;(a=u(f,l,a,e))>-1;)f!==n&&Tt.call(f,a,1),Tt.call(n,a,1);return n}function bu(n,t){for(var r=n?t.length:0,e=r-1;r--;){var u=t[r];if(r==e||u!==i){var i=u;qi(u)?Tt.call(n,u,1):Bu(n,u)}}return n}function wu(n,t){return n+$r(Gr()*(t-n+1))}function mu(n,t){var r=\"\";if(!n||t<1||t>C)return r;do{t%2&&(r+=n),(t=$r(t/2))&&(n+=n)}while(t);return r}function xu(n,t){return eo(Qi(n,t,za),n+\"\")}function ju(n){return je(pa(n))}function Au(n,t){var r=pa(n);return oo(r,We(t,0,r.length))}function Ou(n,t,r,e){if(!If(n))return n;for(var u=-1,o=(t=Zu(t,n)).length,f=o-1,a=n;null!=a&&++u<o;){var c=ao(t[u]),l=r;if(\"__proto__\"===c||\"constructor\"===c||\"prototype\"===c)return n;if(u!=f){var s=a[c];(l=e?e(s,c,a):i)===i&&(l=If(s)?s:qi(t[u+1])?[]:{})}Ie(a,c,l),a=a[c]}return n}var ku=re?function(n,t){return re.set(n,t),n}:za,Iu=ir?function(n,t){return ir(n,\"toString\",{configurable:!0,enumerable:!1,value:Ia(t),writable:!0})}:za;function Ru(n){return oo(pa(n))}function Eu(n,t,e){var u=-1,i=n.length;t<0&&(t=-t>i?0:i+t),(e=e>i?i:e)<0&&(e+=i),i=t>e?0:e-t>>>0,t>>>=0;for(var o=r(i);++u<i;)o[u]=n[u+t];return o}function zu(n,t){var r;return $e(n,function(n,e,u){return!(r=t(n,e,u))}),!!r}function Su(n,t,r){var e=0,u=null==n?e:n.length;if(\"number\"==typeof t&&t==t&&u<=D){for(;e<u;){var i=e+u>>>1,o=n[i];null!==o&&!Tf(o)&&(r?o<=t:o<t)?e=i+1:u=i}return u}return Lu(n,t,za,r)}function Lu(n,t,r,e){var u=0,o=null==n?0:n.length;if(0===o)return 0;for(var f=(t=r(t))!=t,a=null===t,c=Tf(t),l=t===i;u<o;){var s=$r((u+o)/2),h=r(n[s]),p=h!==i,v=null===h,_=h==h,g=Tf(h);if(f)var y=e||_;else y=l?_&&(e||p):a?_&&p&&(e||!v):c?_&&p&&!v&&(e||!g):!v&&!g&&(e?h<=t:h<t);y?u=s+1:o=s}return Zr(o,$)}function Wu(n,t){for(var r=-1,e=n.length,u=0,i=[];++r<e;){var o=n[r],f=t?t(o):o;if(!r||!pf(f,a)){var a=f;i[u++]=0===o?0:o}}return i}function Cu(n){return\"number\"==typeof n?n:Tf(n)?U:+n}function Tu(n){if(\"string\"==typeof n)return n;if(yf(n))return nr(n,Tu)+\"\";if(Tf(n))return se?se.call(n):\"\";var t=n+\"\";return\"0\"==t&&1/n==-W?\"-0\":t}function Uu(n,t,r){var e=-1,u=Qt,i=n.length,f=!0,a=[],c=a;if(r)f=!1,u=Xt;else if(i>=o){var l=t?null:mi(n);if(l)return Er(l);f=!1,u=br,c=new we}else c=t?[]:a;n:for(;++e<i;){var s=n[e],h=t?t(s):s;if(s=r||0!==s?s:0,f&&h==h){for(var p=c.length;p--;)if(c[p]===h)continue n;t&&c.push(h),a.push(s)}else u(c,h,r)||(c!==a&&c.push(h),a.push(s))}return a}function Bu(n,t){return null==(n=Xi(n,t=Zu(t,n)))||delete n[ao(xo(t))]}function $u(n,t,r,e){return Ou(n,t,r(He(n,t)),e)}function Du(n,t,r,e){for(var u=n.length,i=e?u:-1;(e?i--:++i<u)&&t(n[i],i,n););return r?Eu(n,e?0:i,e?i+1:u):Eu(n,e?i+1:0,e?u:i)}function Mu(n,t){var r=n;return r instanceof ge&&(r=r.value()),rr(t,function(n,t){return t.func.apply(t.thisArg,tr([n],t.args))},r)}function Pu(n,t,e){var u=n.length;if(u<2)return u?Uu(n[0]):[];for(var i=-1,o=r(u);++i<u;)for(var f=n[i],a=-1;++a<u;)a!=i&&(o[i]=Be(o[i]||f,n[a],t,e));return Uu(Ne(o,1),t,e)}function Fu(n,t,r){for(var e=-1,u=n.length,o=t.length,f={};++e<u;){var a=e<o?t[e]:i;r(f,n[e],a)}return f}function Nu(n){return wf(n)?n:[]}function qu(n){return\"function\"==typeof n?n:za}function Zu(n,t){return yf(n)?n:Ki(n,t)?[n]:fo(Zf(n))}var Ku=xu;function Vu(n,t,r){var e=n.length;return r=r===i?e:r,!t&&r>=e?n:Eu(n,t,r)}var Gu=pr||function(n){return Ct.clearTimeout(n)};function Hu(n,t){if(t)return n.slice();var r=n.length,e=jt?jt(r):new n.constructor(r);return n.copy(e),e}function Ju(n){var t=new n.constructor(n.byteLength);return new mt(t).set(new mt(n)),t}function Yu(n,t){var r=t?Ju(n.buffer):n.buffer;return new n.constructor(r,n.byteOffset,n.length)}function Qu(n,t){if(n!==t){var r=n!==i,e=null===n,u=n==n,o=Tf(n),f=t!==i,a=null===t,c=t==t,l=Tf(t);if(!a&&!l&&!o&&n>t||o&&f&&c&&!a&&!l||e&&f&&c||!r&&c||!u)return 1;if(!e&&!o&&!l&&n<t||l&&r&&u&&!e&&!o||a&&r&&u||!f&&u||!c)return-1}return 0}function Xu(n,t,e,u){for(var i=-1,o=n.length,f=e.length,a=-1,c=t.length,l=qr(o-f,0),s=r(c+l),h=!u;++a<c;)s[a]=t[a];for(;++i<f;)(h||i<o)&&(s[e[i]]=n[i]);for(;l--;)s[a++]=n[i++];return s}function ni(n,t,e,u){for(var i=-1,o=n.length,f=-1,a=e.length,c=-1,l=t.length,s=qr(o-a,0),h=r(s+l),p=!u;++i<s;)h[i]=n[i];for(var v=i;++c<l;)h[v+c]=t[c];for(;++f<a;)(p||i<o)&&(h[v+e[f]]=n[i++]);return h}function ti(n,t){var e=-1,u=n.length;for(t||(t=r(u));++e<u;)t[e]=n[e];return t}function ri(n,t,r,e){var u=!r;r||(r={});for(var o=-1,f=t.length;++o<f;){var a=t[o],c=e?e(r[a],n[a],a,r,n):i;c===i&&(c=n[a]),u?Se(r,a,c):Ie(r,a,c)}return r}function ei(n,t){return function(r,e){var u=yf(r)?Vt:Ee,i=t?t():{};return u(r,n,Ci(e,2),i)}}function ui(n){return xu(function(t,r){var e=-1,u=r.length,o=u>1?r[u-1]:i,f=u>2?r[2]:i;for(o=n.length>3&&\"function\"==typeof o?(u--,o):i,f&&Zi(r[0],r[1],f)&&(o=u<3?i:o,u=1),t=tt(t);++e<u;){var a=r[e];a&&n(t,a,e,o)}return t})}function ii(n,t){return function(r,e){if(null==r)return r;if(!bf(r))return n(r,e);for(var u=r.length,i=t?u:-1,o=tt(r);(t?i--:++i<u)&&!1!==e(o[i],i,o););return r}}function oi(n){return function(t,r,e){for(var u=-1,i=tt(t),o=e(t),f=o.length;f--;){var a=o[n?f:++u];if(!1===r(i[a],a,i))break}return t}}function fi(n){return function(t){var r=Or(t=Zf(t))?Lr(t):i,e=r?r[0]:t.charAt(0),u=r?Vu(r,1).join(\"\"):t.slice(1);return e[n]()+u}}function ai(n){return function(t){return rr(Aa(ga(t).replace(bt,\"\")),n,\"\")}}function ci(n){return function(){var t=arguments;switch(t.length){case 0:return new n;case 1:return new n(t[0]);case 2:return new n(t[0],t[1]);case 3:return new n(t[0],t[1],t[2]);case 4:return new n(t[0],t[1],t[2],t[3]);case 5:return new n(t[0],t[1],t[2],t[3],t[4]);case 6:return new n(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new n(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}var r=pe(n.prototype),e=n.apply(r,t);return If(e)?e:r}}function li(n){return function(t,r,e){var u=tt(t);if(!bf(t)){var o=Ci(r,3);t=ua(t),r=function(n){return o(u[n],n,u)}}var f=n(t,r,e);return f>-1?u[o?t[f]:f]:i}}function si(n){return Ri(function(t){var r=t.length,e=r,u=_e.prototype.thru;for(n&&t.reverse();e--;){var o=t[e];if(\"function\"!=typeof o)throw new ut(a);if(u&&!f&&\"wrapper\"==Li(o))var f=new _e([],!0)}for(e=f?e:r;++e<r;){var c=Li(o=t[e]),l=\"wrapper\"==c?Si(o):i;f=l&&Vi(l[0])&&l[1]==(A|w|x|O)&&!l[4].length&&1==l[9]?f[Li(l[0])].apply(f,l[3]):1==o.length&&Vi(o)?f[c]():f.thru(o)}return function(){var n=arguments,e=n[0];if(f&&1==n.length&&yf(e))return f.plant(e).value();for(var u=0,i=r?t[u].apply(this,n):e;++u<r;)i=t[u].call(this,i);return i}})}function hi(n,t,e,u,o,f,a,c,l,s){var h=t&A,p=t&y,v=t&d,_=t&(w|m),g=t&k,b=v?i:ci(n);return function y(){for(var d=arguments.length,w=r(d),m=d;m--;)w[m]=arguments[m];if(_)var x=Wi(y),j=function(n,t){for(var r=n.length,e=0;r--;)n[r]===t&&++e;return e}(w,x);if(u&&(w=Xu(w,u,o,_)),f&&(w=ni(w,f,a,_)),d-=j,_&&d<s){var A=Rr(w,x);return bi(n,t,hi,y.placeholder,e,w,A,c,l,s-d)}var O=p?e:this,k=v?O[n]:n;return d=w.length,c?w=function(n,t){for(var r=n.length,e=Zr(t.length,r),u=ti(n);e--;){var o=t[e];n[e]=qi(o,r)?u[o]:i}return n}(w,c):g&&d>1&&w.reverse(),h&&l<d&&(w.length=l),this&&this!==Ct&&this instanceof y&&(k=b||ci(k)),k.apply(O,w)}}function pi(n,t){return function(r,e){return function(n,t,r,e){return Ke(n,function(n,u,i){t(e,r(n),u,i)}),e}(r,n,t(e),{})}}function vi(n,t){return function(r,e){var u;if(r===i&&e===i)return t;if(r!==i&&(u=r),e!==i){if(u===i)return e;\"string\"==typeof r||\"string\"==typeof e?(r=Tu(r),e=Tu(e)):(r=Cu(r),e=Cu(e)),u=n(r,e)}return u}}function _i(n){return Ri(function(t){return t=nr(t,yr(Ci())),xu(function(r){var e=this;return n(t,function(n){return Kt(n,e,r)})})})}function gi(n,t){var r=(t=t===i?\" \":Tu(t)).length;if(r<2)return r?mu(t,n):t;var e=mu(t,Br(n/Sr(t)));return Or(t)?Vu(Lr(e),0,n).join(\"\"):e.slice(0,n)}function yi(n){return function(t,e,u){return u&&\"number\"!=typeof u&&Zi(t,e,u)&&(e=u=i),t=Mf(t),e===i?(e=t,t=0):e=Mf(e),function(n,t,e,u){for(var i=-1,o=qr(Br((t-n)/(e||1)),0),f=r(o);o--;)f[u?o:++i]=n,n+=e;return f}(t,e,u=u===i?t<e?1:-1:Mf(u),n)}}function di(n){return function(t,r){return\"string\"==typeof t&&\"string\"==typeof r||(t=Nf(t),r=Nf(r)),n(t,r)}}function bi(n,t,r,e,u,o,f,a,c,l){var s=t&w;t|=s?x:j,(t&=~(s?j:x))&b||(t&=~(y|d));var h=[n,t,u,s?o:i,s?f:i,s?i:o,s?i:f,a,c,l],p=r.apply(i,h);return Vi(n)&&to(p,h),p.placeholder=e,uo(p,n,t)}function wi(n){var t=nt[n];return function(n,r){if(n=Nf(n),(r=null==r?0:Zr(Pf(r),292))&&Pr(n)){var e=(Zf(n)+\"e\").split(\"e\");return+((e=(Zf(t(e[0]+\"e\"+(+e[1]+r)))+\"e\").split(\"e\"))[0]+\"e\"+(+e[1]-r))}return t(n)}}var mi=Xr&&1/Er(new Xr([,-0]))[1]==W?function(n){return new Xr(n)}:Ta;function xi(n){return function(t){var r=Mi(t);return r==J?kr(t):r==rn?zr(t):function(n,t){return nr(t,function(t){return[t,n[t]]})}(t,n(t))}}function ji(n,t,e,u,o,f,c,l){var h=t&d;if(!h&&\"function\"!=typeof n)throw new ut(a);var p=u?u.length:0;if(p||(t&=~(x|j),u=o=i),c=c===i?c:qr(Pf(c),0),l=l===i?l:Pf(l),p-=o?o.length:0,t&j){var v=u,_=o;u=o=i}var g=h?i:Si(n),k=[n,t,e,u,o,v,_,f,c,l];if(g&&function(n,t){var r=n[1],e=t[1],u=r|e,i=u<(y|d|A),o=e==A&&r==w||e==A&&r==O&&n[7].length<=t[8]||e==(A|O)&&t[7].length<=t[8]&&r==w;if(!i&&!o)return n;e&y&&(n[2]=t[2],u|=r&y?0:b);var f=t[3];if(f){var a=n[3];n[3]=a?Xu(a,f,t[4]):f,n[4]=a?Rr(n[3],s):t[4]}(f=t[5])&&(a=n[5],n[5]=a?ni(a,f,t[6]):f,n[6]=a?Rr(n[5],s):t[6]),(f=t[7])&&(n[7]=f),e&A&&(n[8]=null==n[8]?t[8]:Zr(n[8],t[8])),null==n[9]&&(n[9]=t[9]),n[0]=t[0],n[1]=u}(k,g),n=k[0],t=k[1],e=k[2],u=k[3],o=k[4],!(l=k[9]=k[9]===i?h?0:n.length:qr(k[9]-p,0))&&t&(w|m)&&(t&=~(w|m)),t&&t!=y)I=t==w||t==m?function(n,t,e){var u=ci(n);return function o(){for(var f=arguments.length,a=r(f),c=f,l=Wi(o);c--;)a[c]=arguments[c];var s=f<3&&a[0]!==l&&a[f-1]!==l?[]:Rr(a,l);return(f-=s.length)<e?bi(n,t,hi,o.placeholder,i,a,s,i,i,e-f):Kt(this&&this!==Ct&&this instanceof o?u:n,this,a)}}(n,t,l):t!=x&&t!=(y|x)||o.length?hi.apply(i,k):function(n,t,e,u){var i=t&y,o=ci(n);return function t(){for(var f=-1,a=arguments.length,c=-1,l=u.length,s=r(l+a),h=this&&this!==Ct&&this instanceof t?o:n;++c<l;)s[c]=u[c];for(;a--;)s[c++]=arguments[++f];return Kt(h,i?e:this,s)}}(n,t,e,u);else var I=function(n,t,r){var e=t&y,u=ci(n);return function t(){return(this&&this!==Ct&&this instanceof t?u:n).apply(e?r:this,arguments)}}(n,t,e);return uo((g?ku:to)(I,k),n,t)}function Ai(n,t,r,e){return n===i||pf(n,ft[r])&&!lt.call(e,r)?t:n}function Oi(n,t,r,e,u,o){return If(n)&&If(t)&&(o.set(t,n),vu(n,t,i,Oi,o),o.delete(t)),n}function ki(n){return Sf(n)?i:n}function Ii(n,t,r,e,u,o){var f=r&_,a=n.length,c=t.length;if(a!=c&&!(f&&c>a))return!1;var l=o.get(n),s=o.get(t);if(l&&s)return l==t&&s==n;var h=-1,p=!0,v=r&g?new we:i;for(o.set(n,t),o.set(t,n);++h<a;){var y=n[h],d=t[h];if(e)var b=f?e(d,y,h,t,n,o):e(y,d,h,n,t,o);if(b!==i){if(b)continue;p=!1;break}if(v){if(!ur(t,function(n,t){if(!br(v,t)&&(y===n||u(y,n,r,e,o)))return v.push(t)})){p=!1;break}}else if(y!==d&&!u(y,d,r,e,o)){p=!1;break}}return o.delete(n),o.delete(t),p}function Ri(n){return eo(Qi(n,i,go),n+\"\")}function Ei(n){return Je(n,ua,$i)}function zi(n){return Je(n,ia,Di)}var Si=re?function(n){return re.get(n)}:Ta;function Li(n){for(var t=n.name+\"\",r=ee[t],e=lt.call(ee,t)?r.length:0;e--;){var u=r[e],i=u.func;if(null==i||i==n)return u.name}return t}function Wi(n){return(lt.call(he,\"placeholder\")?he:n).placeholder}function Ci(){var n=he.iteratee||Sa;return n=n===Sa?fu:n,arguments.length?n(arguments[0],arguments[1]):n}function Ti(n,t){var r=n.__data__;return function(n){var t=typeof n;return\"string\"==t||\"number\"==t||\"symbol\"==t||\"boolean\"==t?\"__proto__\"!==n:null===n}(t)?r[\"string\"==typeof t?\"string\":\"hash\"]:r.map}function Ui(n){for(var t=ua(n),r=t.length;r--;){var e=t[r],u=n[e];t[r]=[e,u,Ji(u)]}return t}function Bi(n,t){var r=function(n,t){return null==n?i:n[t]}(n,t);return ou(r)?r:i}var $i=Dr?function(n){return null==n?[]:(n=tt(n),Yt(Dr(n),function(t){return Wt.call(n,t)}))}:Fa,Di=Dr?function(n){for(var t=[];n;)tr(t,$i(n)),n=Et(n);return t}:Fa,Mi=Ye;function Pi(n,t,r){for(var e=-1,u=(t=Zu(t,n)).length,i=!1;++e<u;){var o=ao(t[e]);if(!(i=null!=n&&r(n,o)))break;n=n[o]}return i||++e!=u?i:!!(u=null==n?0:n.length)&&kf(u)&&qi(o,u)&&(yf(n)||gf(n))}function Fi(n){return\"function\"!=typeof n.constructor||Hi(n)?{}:pe(Et(n))}function Ni(n){return yf(n)||gf(n)||!!(Ut&&n&&n[Ut])}function qi(n,t){var r=typeof n;return!!(t=null==t?C:t)&&(\"number\"==r||\"symbol\"!=r&&Hn.test(n))&&n>-1&&n%1==0&&n<t}function Zi(n,t,r){if(!If(r))return!1;var e=typeof t;return!!(\"number\"==e?bf(r)&&qi(t,r.length):\"string\"==e&&t in r)&&pf(r[t],n)}function Ki(n,t){if(yf(n))return!1;var r=typeof n;return!(\"number\"!=r&&\"symbol\"!=r&&\"boolean\"!=r&&null!=n&&!Tf(n))||Sn.test(n)||!zn.test(n)||null!=t&&n in tt(t)}function Vi(n){var t=Li(n),r=he[t];if(\"function\"!=typeof r||!(t in ge.prototype))return!1;if(n===r)return!0;var e=Si(r);return!!e&&n===e[0]}(Jr&&Mi(new Jr(new ArrayBuffer(1)))!=ln||Yr&&Mi(new Yr)!=J||Qr&&\"[object Promise]\"!=Mi(Qr.resolve())||Xr&&Mi(new Xr)!=rn||ne&&Mi(new ne)!=fn)&&(Mi=function(n){var t=Ye(n),r=t==X?n.constructor:i,e=r?co(r):\"\";if(e)switch(e){case ue:return ln;case ie:return J;case oe:return\"[object Promise]\";case fe:return rn;case ae:return fn}return t});var Gi=at?Af:Na;function Hi(n){var t=n&&n.constructor;return n===(\"function\"==typeof t&&t.prototype||ft)}function Ji(n){return n==n&&!If(n)}function Yi(n,t){return function(r){return null!=r&&r[n]===t&&(t!==i||n in tt(r))}}function Qi(n,t,e){return t=qr(t===i?n.length-1:t,0),function(){for(var u=arguments,i=-1,o=qr(u.length-t,0),f=r(o);++i<o;)f[i]=u[t+i];i=-1;for(var a=r(t+1);++i<t;)a[i]=u[i];return a[t]=e(f),Kt(n,this,a)}}function Xi(n,t){return t.length<2?n:He(n,Eu(t,0,-1))}function no(n,t){if((\"constructor\"!==t||\"function\"!=typeof n[t])&&\"__proto__\"!=t)return n[t]}var to=io(ku),ro=Ur||function(n,t){return Ct.setTimeout(n,t)},eo=io(Iu);function uo(n,t,r){var e=t+\"\";return eo(n,function(n,t){var r=t.length;if(!r)return n;var e=r-1;return t[e]=(r>1?\"& \":\"\")+t[e],t=t.join(r>2?\", \":\" \"),n.replace($n,\"{\\n/* [wrapped with \"+t+\"] */\\n\")}(e,function(n,t){return Gt(M,function(r){var e=\"_.\"+r[0];t&r[1]&&!Qt(n,e)&&n.push(e)}),n.sort()}(function(n){var t=n.match(Dn);return t?t[1].split(Mn):[]}(e),r)))}function io(n){var t=0,r=0;return function(){var e=Kr(),u=z-(e-r);if(r=e,u>0){if(++t>=E)return arguments[0]}else t=0;return n.apply(i,arguments)}}function oo(n,t){var r=-1,e=n.length,u=e-1;for(t=t===i?e:t;++r<t;){var o=wu(r,u),f=n[o];n[o]=n[r],n[r]=f}return n.length=t,n}var fo=function(n){var t=ff(n,function(n){return r.size===l&&r.clear(),n}),r=t.cache;return t}(function(n){var t=[];return 46===n.charCodeAt(0)&&t.push(\"\"),n.replace(Ln,function(n,r,e,u){t.push(e?u.replace(Fn,\"$1\"):r||n)}),t});function ao(n){if(\"string\"==typeof n||Tf(n))return n;var t=n+\"\";return\"0\"==t&&1/n==-W?\"-0\":t}function co(n){if(null!=n){try{return ct.call(n)}catch(n){}try{return n+\"\"}catch(n){}}return\"\"}function lo(n){if(n instanceof ge)return n.clone();var t=new _e(n.__wrapped__,n.__chain__);return t.__actions__=ti(n.__actions__),t.__index__=n.__index__,t.__values__=n.__values__,t}var so=xu(function(n,t){return wf(n)?Be(n,Ne(t,1,wf,!0)):[]}),ho=xu(function(n,t){var r=xo(t);return wf(r)&&(r=i),wf(n)?Be(n,Ne(t,1,wf,!0),Ci(r,2)):[]}),po=xu(function(n,t){var r=xo(t);return wf(r)&&(r=i),wf(n)?Be(n,Ne(t,1,wf,!0),i,r):[]});function vo(n,t,r){var e=null==n?0:n.length;if(!e)return-1;var u=null==r?0:Pf(r);return u<0&&(u=qr(e+u,0)),fr(n,Ci(t,3),u)}function _o(n,t,r){var e=null==n?0:n.length;if(!e)return-1;var u=e-1;return r!==i&&(u=Pf(r),u=r<0?qr(e+u,0):Zr(u,e-1)),fr(n,Ci(t,3),u,!0)}function go(n){return null!=n&&n.length?Ne(n,1):[]}function yo(n){return n&&n.length?n[0]:i}var bo=xu(function(n){var t=nr(n,Nu);return t.length&&t[0]===n[0]?tu(t):[]}),wo=xu(function(n){var t=xo(n),r=nr(n,Nu);return t===xo(r)?t=i:r.pop(),r.length&&r[0]===n[0]?tu(r,Ci(t,2)):[]}),mo=xu(function(n){var t=xo(n),r=nr(n,Nu);return(t=\"function\"==typeof t?t:i)&&r.pop(),r.length&&r[0]===n[0]?tu(r,i,t):[]});function xo(n){var t=null==n?0:n.length;return t?n[t-1]:i}var jo=xu(Ao);function Ao(n,t){return n&&n.length&&t&&t.length?du(n,t):n}var Oo=Ri(function(n,t){var r=null==n?0:n.length,e=Le(n,t);return bu(n,nr(t,function(n){return qi(n,r)?+n:n}).sort(Qu)),e});function ko(n){return null==n?n:Hr.call(n)}var Io=xu(function(n){return Uu(Ne(n,1,wf,!0))}),Ro=xu(function(n){var t=xo(n);return wf(t)&&(t=i),Uu(Ne(n,1,wf,!0),Ci(t,2))}),Eo=xu(function(n){var t=xo(n);return t=\"function\"==typeof t?t:i,Uu(Ne(n,1,wf,!0),i,t)});function zo(n){if(!n||!n.length)return[];var t=0;return n=Yt(n,function(n){if(wf(n))return t=qr(n.length,t),!0}),gr(t,function(t){return nr(n,hr(t))})}function So(n,t){if(!n||!n.length)return[];var r=zo(n);return null==t?r:nr(r,function(n){return Kt(t,i,n)})}var Lo=xu(function(n,t){return wf(n)?Be(n,t):[]}),Wo=xu(function(n){return Pu(Yt(n,wf))}),Co=xu(function(n){var t=xo(n);return wf(t)&&(t=i),Pu(Yt(n,wf),Ci(t,2))}),To=xu(function(n){var t=xo(n);return t=\"function\"==typeof t?t:i,Pu(Yt(n,wf),i,t)}),Uo=xu(zo);var Bo=xu(function(n){var t=n.length,r=t>1?n[t-1]:i;return So(n,r=\"function\"==typeof r?(n.pop(),r):i)});function $o(n){var t=he(n);return t.__chain__=!0,t}function Do(n,t){return t(n)}var Mo=Ri(function(n){var t=n.length,r=t?n[0]:0,e=this.__wrapped__,u=function(t){return Le(t,n)};return!(t>1||this.__actions__.length)&&e instanceof ge&&qi(r)?((e=e.slice(r,+r+(t?1:0))).__actions__.push({func:Do,args:[u],thisArg:i}),new _e(e,this.__chain__).thru(function(n){return t&&!n.length&&n.push(i),n})):this.thru(u)});var Po=ei(function(n,t,r){lt.call(n,r)?++n[r]:Se(n,r,1)});var Fo=li(vo),No=li(_o);function qo(n,t){return(yf(n)?Gt:$e)(n,Ci(t,3))}function Zo(n,t){return(yf(n)?Ht:De)(n,Ci(t,3))}var Ko=ei(function(n,t,r){lt.call(n,r)?n[r].push(t):Se(n,r,[t])});var Vo=xu(function(n,t,e){var u=-1,i=\"function\"==typeof t,o=bf(n)?r(n.length):[];return $e(n,function(n){o[++u]=i?Kt(t,n,e):ru(n,t,e)}),o}),Go=ei(function(n,t,r){Se(n,r,t)});function Ho(n,t){return(yf(n)?nr:su)(n,Ci(t,3))}var Jo=ei(function(n,t,r){n[r?0:1].push(t)},function(){return[[],[]]});var Yo=xu(function(n,t){if(null==n)return[];var r=t.length;return r>1&&Zi(n,t[0],t[1])?t=[]:r>2&&Zi(t[0],t[1],t[2])&&(t=[t[0]]),gu(n,Ne(t,1),[])}),Qo=Tr||function(){return Ct.Date.now()};function Xo(n,t,r){return t=r?i:t,t=n&&null==t?n.length:t,ji(n,A,i,i,i,i,t)}function nf(n,t){var r;if(\"function\"!=typeof t)throw new ut(a);return n=Pf(n),function(){return--n>0&&(r=t.apply(this,arguments)),n<=1&&(t=i),r}}var tf=xu(function(n,t,r){var e=y;if(r.length){var u=Rr(r,Wi(tf));e|=x}return ji(n,e,t,r,u)}),rf=xu(function(n,t,r){var e=y|d;if(r.length){var u=Rr(r,Wi(rf));e|=x}return ji(t,e,n,r,u)});function ef(n,t,r){var e,u,o,f,c,l,s=0,h=!1,p=!1,v=!0;if(\"function\"!=typeof n)throw new ut(a);function _(t){var r=e,o=u;return e=u=i,s=t,f=n.apply(o,r)}function g(n){var r=n-l;return l===i||r>=t||r<0||p&&n-s>=o}function y(){var n=Qo();if(g(n))return d(n);c=ro(y,function(n){var r=t-(n-l);return p?Zr(r,o-(n-s)):r}(n))}function d(n){return c=i,v&&e?_(n):(e=u=i,f)}function b(){var n=Qo(),r=g(n);if(e=arguments,u=this,l=n,r){if(c===i)return function(n){return s=n,c=ro(y,t),h?_(n):f}(l);if(p)return Gu(c),c=ro(y,t),_(l)}return c===i&&(c=ro(y,t)),f}return t=Nf(t)||0,If(r)&&(h=!!r.leading,o=(p=\"maxWait\"in r)?qr(Nf(r.maxWait)||0,t):o,v=\"trailing\"in r?!!r.trailing:v),b.cancel=function(){c!==i&&Gu(c),s=0,e=l=u=c=i},b.flush=function(){return c===i?f:d(Qo())},b}var uf=xu(function(n,t){return Ue(n,1,t)}),of=xu(function(n,t,r){return Ue(n,Nf(t)||0,r)});function ff(n,t){if(\"function\"!=typeof n||null!=t&&\"function\"!=typeof t)throw new ut(a);var r=function(){var e=arguments,u=t?t.apply(this,e):e[0],i=r.cache;if(i.has(u))return i.get(u);var o=n.apply(this,e);return r.cache=i.set(u,o)||i,o};return r.cache=new(ff.Cache||be),r}function af(n){if(\"function\"!=typeof n)throw new ut(a);return function(){var t=arguments;switch(t.length){case 0:return!n.call(this);case 1:return!n.call(this,t[0]);case 2:return!n.call(this,t[0],t[1]);case 3:return!n.call(this,t[0],t[1],t[2])}return!n.apply(this,t)}}ff.Cache=be;var cf=Ku(function(n,t){var r=(t=1==t.length&&yf(t[0])?nr(t[0],yr(Ci())):nr(Ne(t,1),yr(Ci()))).length;return xu(function(e){for(var u=-1,i=Zr(e.length,r);++u<i;)e[u]=t[u].call(this,e[u]);return Kt(n,this,e)})}),lf=xu(function(n,t){var r=Rr(t,Wi(lf));return ji(n,x,i,t,r)}),sf=xu(function(n,t){var r=Rr(t,Wi(sf));return ji(n,j,i,t,r)}),hf=Ri(function(n,t){return ji(n,O,i,i,i,t)});function pf(n,t){return n===t||n!=n&&t!=t}var vf=di(Qe),_f=di(function(n,t){return n>=t}),gf=eu(function(){return arguments}())?eu:function(n){return Rf(n)&&lt.call(n,\"callee\")&&!Wt.call(n,\"callee\")},yf=r.isArray,df=Mt?yr(Mt):function(n){return Rf(n)&&Ye(n)==cn};function bf(n){return null!=n&&kf(n.length)&&!Af(n)}function wf(n){return Rf(n)&&bf(n)}var mf=Mr||Na,xf=Pt?yr(Pt):function(n){return Rf(n)&&Ye(n)==Z};function jf(n){if(!Rf(n))return!1;var t=Ye(n);return t==V||t==K||\"string\"==typeof n.message&&\"string\"==typeof n.name&&!Sf(n)}function Af(n){if(!If(n))return!1;var t=Ye(n);return t==G||t==H||t==N||t==nn}function Of(n){return\"number\"==typeof n&&n==Pf(n)}function kf(n){return\"number\"==typeof n&&n>-1&&n%1==0&&n<=C}function If(n){var t=typeof n;return null!=n&&(\"object\"==t||\"function\"==t)}function Rf(n){return null!=n&&\"object\"==typeof n}var Ef=Ft?yr(Ft):function(n){return Rf(n)&&Mi(n)==J};function zf(n){return\"number\"==typeof n||Rf(n)&&Ye(n)==Y}function Sf(n){if(!Rf(n)||Ye(n)!=X)return!1;var t=Et(n);if(null===t)return!0;var r=lt.call(t,\"constructor\")&&t.constructor;return\"function\"==typeof r&&r instanceof r&&ct.call(r)==vt}var Lf=Nt?yr(Nt):function(n){return Rf(n)&&Ye(n)==tn};var Wf=qt?yr(qt):function(n){return Rf(n)&&Mi(n)==rn};function Cf(n){return\"string\"==typeof n||!yf(n)&&Rf(n)&&Ye(n)==en}function Tf(n){return\"symbol\"==typeof n||Rf(n)&&Ye(n)==un}var Uf=Zt?yr(Zt):function(n){return Rf(n)&&kf(n.length)&&!!It[Ye(n)]};var Bf=di(lu),$f=di(function(n,t){return n<=t});function Df(n){if(!n)return[];if(bf(n))return Cf(n)?Lr(n):ti(n);if($t&&n[$t])return function(n){for(var t,r=[];!(t=n.next()).done;)r.push(t.value);return r}(n[$t]());var t=Mi(n);return(t==J?kr:t==rn?Er:pa)(n)}function Mf(n){return n?(n=Nf(n))===W||n===-W?(n<0?-1:1)*T:n==n?n:0:0===n?n:0}function Pf(n){var t=Mf(n),r=t%1;return t==t?r?t-r:t:0}function Ff(n){return n?We(Pf(n),0,B):0}function Nf(n){if(\"number\"==typeof n)return n;if(Tf(n))return U;if(If(n)){var t=\"function\"==typeof n.valueOf?n.valueOf():n;n=If(t)?t+\"\":t}if(\"string\"!=typeof n)return 0===n?n:+n;n=n.replace(Tn,\"\");var r=Kn.test(n);return r||Gn.test(n)?St(n.slice(2),r?2:8):Zn.test(n)?U:+n}function qf(n){return ri(n,ia(n))}function Zf(n){return null==n?\"\":Tu(n)}var Kf=ui(function(n,t){if(Hi(t)||bf(t))ri(t,ua(t),n);else for(var r in t)lt.call(t,r)&&Ie(n,r,t[r])}),Vf=ui(function(n,t){ri(t,ia(t),n)}),Gf=ui(function(n,t,r,e){ri(t,ia(t),n,e)}),Hf=ui(function(n,t,r,e){ri(t,ua(t),n,e)}),Jf=Ri(Le);var Yf=xu(function(n,t){n=tt(n);var r=-1,e=t.length,u=e>2?t[2]:i;for(u&&Zi(t[0],t[1],u)&&(e=1);++r<e;)for(var o=t[r],f=ia(o),a=-1,c=f.length;++a<c;){var l=f[a],s=n[l];(s===i||pf(s,ft[l])&&!lt.call(n,l))&&(n[l]=o[l])}return n}),Qf=xu(function(n){return n.push(i,Oi),Kt(fa,i,n)});function Xf(n,t,r){var e=null==n?i:He(n,t);return e===i?r:e}function na(n,t){return null!=n&&Pi(n,t,nu)}var ta=pi(function(n,t,r){null!=t&&\"function\"!=typeof t.toString&&(t=pt.call(t)),n[t]=r},Ia(za)),ra=pi(function(n,t,r){null!=t&&\"function\"!=typeof t.toString&&(t=pt.call(t)),lt.call(n,t)?n[t].push(r):n[t]=[r]},Ci),ea=xu(ru);function ua(n){return bf(n)?xe(n):au(n)}function ia(n){return bf(n)?xe(n,!0):cu(n)}var oa=ui(function(n,t,r){vu(n,t,r)}),fa=ui(function(n,t,r,e){vu(n,t,r,e)}),aa=Ri(function(n,t){var r={};if(null==n)return r;var e=!1;t=nr(t,function(t){return t=Zu(t,n),e||(e=t.length>1),t}),ri(n,zi(n),r),e&&(r=Ce(r,h|p|v,ki));for(var u=t.length;u--;)Bu(r,t[u]);return r});var ca=Ri(function(n,t){return null==n?{}:function(n,t){return yu(n,t,function(t,r){return na(n,r)})}(n,t)});function la(n,t){if(null==n)return{};var r=nr(zi(n),function(n){return[n]});return t=Ci(t),yu(n,r,function(n,r){return t(n,r[0])})}var sa=xi(ua),ha=xi(ia);function pa(n){return null==n?[]:dr(n,ua(n))}var va=ai(function(n,t,r){return t=t.toLowerCase(),n+(r?_a(t):t)});function _a(n){return ja(Zf(n).toLowerCase())}function ga(n){return(n=Zf(n))&&n.replace(Jn,xr).replace(wt,\"\")}var ya=ai(function(n,t,r){return n+(r?\"-\":\"\")+t.toLowerCase()}),da=ai(function(n,t,r){return n+(r?\" \":\"\")+t.toLowerCase()}),ba=fi(\"toLowerCase\");var wa=ai(function(n,t,r){return n+(r?\"_\":\"\")+t.toLowerCase()});var ma=ai(function(n,t,r){return n+(r?\" \":\"\")+ja(t)});var xa=ai(function(n,t,r){return n+(r?\" \":\"\")+t.toUpperCase()}),ja=fi(\"toUpperCase\");function Aa(n,t,r){return n=Zf(n),(t=r?i:t)===i?function(n){return At.test(n)}(n)?function(n){return n.match(xt)||[]}(n):function(n){return n.match(Pn)||[]}(n):n.match(t)||[]}var Oa=xu(function(n,t){try{return Kt(n,i,t)}catch(n){return jf(n)?n:new u(n)}}),ka=Ri(function(n,t){return Gt(t,function(t){t=ao(t),Se(n,t,tf(n[t],n))}),n});function Ia(n){return function(){return n}}var Ra=si(),Ea=si(!0);function za(n){return n}function Sa(n){return fu(\"function\"==typeof n?n:Ce(n,h))}var La=xu(function(n,t){return function(r){return ru(r,n,t)}}),Wa=xu(function(n,t){return function(r){return ru(n,r,t)}});function Ca(n,t,r){var e=ua(t),u=Ge(t,e);null!=r||If(t)&&(u.length||!e.length)||(r=t,t=n,n=this,u=Ge(t,ua(t)));var i=!(If(r)&&\"chain\"in r&&!r.chain),o=Af(n);return Gt(u,function(r){var e=t[r];n[r]=e,o&&(n.prototype[r]=function(){var t=this.__chain__;if(i||t){var r=n(this.__wrapped__);return(r.__actions__=ti(this.__actions__)).push({func:e,args:arguments,thisArg:n}),r.__chain__=t,r}return e.apply(n,tr([this.value()],arguments))})}),n}function Ta(){}var Ua=_i(nr),Ba=_i(Jt),$a=_i(ur);function Da(n){return Ki(n)?hr(ao(n)):function(n){return function(t){return He(t,n)}}(n)}var Ma=yi(),Pa=yi(!0);function Fa(){return[]}function Na(){return!1}var qa=vi(function(n,t){return n+t},0),Za=wi(\"ceil\"),Ka=vi(function(n,t){return n/t},1),Va=wi(\"floor\");var Ga=vi(function(n,t){return n*t},1),Ha=wi(\"round\"),Ja=vi(function(n,t){return n-t},0);return he.after=function(n,t){if(\"function\"!=typeof t)throw new ut(a);return n=Pf(n),function(){if(--n<1)return t.apply(this,arguments)}},he.ary=Xo,he.assign=Kf,he.assignIn=Vf,he.assignInWith=Gf,he.assignWith=Hf,he.at=Jf,he.before=nf,he.bind=tf,he.bindAll=ka,he.bindKey=rf,he.castArray=function(){if(!arguments.length)return[];var n=arguments[0];return yf(n)?n:[n]},he.chain=$o,he.chunk=function(n,t,e){t=(e?Zi(n,t,e):t===i)?1:qr(Pf(t),0);var u=null==n?0:n.length;if(!u||t<1)return[];for(var o=0,f=0,a=r(Br(u/t));o<u;)a[f++]=Eu(n,o,o+=t);return a},he.compact=function(n){for(var t=-1,r=null==n?0:n.length,e=0,u=[];++t<r;){var i=n[t];i&&(u[e++]=i)}return u},he.concat=function(){var n=arguments.length;if(!n)return[];for(var t=r(n-1),e=arguments[0],u=n;u--;)t[u-1]=arguments[u];return tr(yf(e)?ti(e):[e],Ne(t,1))},he.cond=function(n){var t=null==n?0:n.length,r=Ci();return n=t?nr(n,function(n){if(\"function\"!=typeof n[1])throw new ut(a);return[r(n[0]),n[1]]}):[],xu(function(r){for(var e=-1;++e<t;){var u=n[e];if(Kt(u[0],this,r))return Kt(u[1],this,r)}})},he.conforms=function(n){return function(n){var t=ua(n);return function(r){return Te(r,n,t)}}(Ce(n,h))},he.constant=Ia,he.countBy=Po,he.create=function(n,t){var r=pe(n);return null==t?r:ze(r,t)},he.curry=function n(t,r,e){var u=ji(t,w,i,i,i,i,i,r=e?i:r);return u.placeholder=n.placeholder,u},he.curryRight=function n(t,r,e){var u=ji(t,m,i,i,i,i,i,r=e?i:r);return u.placeholder=n.placeholder,u},he.debounce=ef,he.defaults=Yf,he.defaultsDeep=Qf,he.defer=uf,he.delay=of,he.difference=so,he.differenceBy=ho,he.differenceWith=po,he.drop=function(n,t,r){var e=null==n?0:n.length;return e?Eu(n,(t=r||t===i?1:Pf(t))<0?0:t,e):[]},he.dropRight=function(n,t,r){var e=null==n?0:n.length;return e?Eu(n,0,(t=e-(t=r||t===i?1:Pf(t)))<0?0:t):[]},he.dropRightWhile=function(n,t){return n&&n.length?Du(n,Ci(t,3),!0,!0):[]},he.dropWhile=function(n,t){return n&&n.length?Du(n,Ci(t,3),!0):[]},he.fill=function(n,t,r,e){var u=null==n?0:n.length;return u?(r&&\"number\"!=typeof r&&Zi(n,t,r)&&(r=0,e=u),function(n,t,r,e){var u=n.length;for((r=Pf(r))<0&&(r=-r>u?0:u+r),(e=e===i||e>u?u:Pf(e))<0&&(e+=u),e=r>e?0:Ff(e);r<e;)n[r++]=t;return n}(n,t,r,e)):[]},he.filter=function(n,t){return(yf(n)?Yt:Fe)(n,Ci(t,3))},he.flatMap=function(n,t){return Ne(Ho(n,t),1)},he.flatMapDeep=function(n,t){return Ne(Ho(n,t),W)},he.flatMapDepth=function(n,t,r){return r=r===i?1:Pf(r),Ne(Ho(n,t),r)},he.flatten=go,he.flattenDeep=function(n){return null!=n&&n.length?Ne(n,W):[]},he.flattenDepth=function(n,t){return null!=n&&n.length?Ne(n,t=t===i?1:Pf(t)):[]},he.flip=function(n){return ji(n,k)},he.flow=Ra,he.flowRight=Ea,he.fromPairs=function(n){for(var t=-1,r=null==n?0:n.length,e={};++t<r;){var u=n[t];e[u[0]]=u[1]}return e},he.functions=function(n){return null==n?[]:Ge(n,ua(n))},he.functionsIn=function(n){return null==n?[]:Ge(n,ia(n))},he.groupBy=Ko,he.initial=function(n){return null!=n&&n.length?Eu(n,0,-1):[]},he.intersection=bo,he.intersectionBy=wo,he.intersectionWith=mo,he.invert=ta,he.invertBy=ra,he.invokeMap=Vo,he.iteratee=Sa,he.keyBy=Go,he.keys=ua,he.keysIn=ia,he.map=Ho,he.mapKeys=function(n,t){var r={};return t=Ci(t,3),Ke(n,function(n,e,u){Se(r,t(n,e,u),n)}),r},he.mapValues=function(n,t){var r={};return t=Ci(t,3),Ke(n,function(n,e,u){Se(r,e,t(n,e,u))}),r},he.matches=function(n){return hu(Ce(n,h))},he.matchesProperty=function(n,t){return pu(n,Ce(t,h))},he.memoize=ff,he.merge=oa,he.mergeWith=fa,he.method=La,he.methodOf=Wa,he.mixin=Ca,he.negate=af,he.nthArg=function(n){return n=Pf(n),xu(function(t){return _u(t,n)})},he.omit=aa,he.omitBy=function(n,t){return la(n,af(Ci(t)))},he.once=function(n){return nf(2,n)},he.orderBy=function(n,t,r,e){return null==n?[]:(yf(t)||(t=null==t?[]:[t]),yf(r=e?i:r)||(r=null==r?[]:[r]),gu(n,t,r))},he.over=Ua,he.overArgs=cf,he.overEvery=Ba,he.overSome=$a,he.partial=lf,he.partialRight=sf,he.partition=Jo,he.pick=ca,he.pickBy=la,he.property=Da,he.propertyOf=function(n){return function(t){return null==n?i:He(n,t)}},he.pull=jo,he.pullAll=Ao,he.pullAllBy=function(n,t,r){return n&&n.length&&t&&t.length?du(n,t,Ci(r,2)):n},he.pullAllWith=function(n,t,r){return n&&n.length&&t&&t.length?du(n,t,i,r):n},he.pullAt=Oo,he.range=Ma,he.rangeRight=Pa,he.rearg=hf,he.reject=function(n,t){return(yf(n)?Yt:Fe)(n,af(Ci(t,3)))},he.remove=function(n,t){var r=[];if(!n||!n.length)return r;var e=-1,u=[],i=n.length;for(t=Ci(t,3);++e<i;){var o=n[e];t(o,e,n)&&(r.push(o),u.push(e))}return bu(n,u),r},he.rest=function(n,t){if(\"function\"!=typeof n)throw new ut(a);return xu(n,t=t===i?t:Pf(t))},he.reverse=ko,he.sampleSize=function(n,t,r){return t=(r?Zi(n,t,r):t===i)?1:Pf(t),(yf(n)?Ae:Au)(n,t)},he.set=function(n,t,r){return null==n?n:Ou(n,t,r)},he.setWith=function(n,t,r,e){return e=\"function\"==typeof e?e:i,null==n?n:Ou(n,t,r,e)},he.shuffle=function(n){return(yf(n)?Oe:Ru)(n)},he.slice=function(n,t,r){var e=null==n?0:n.length;return e?(r&&\"number\"!=typeof r&&Zi(n,t,r)?(t=0,r=e):(t=null==t?0:Pf(t),r=r===i?e:Pf(r)),Eu(n,t,r)):[]},he.sortBy=Yo,he.sortedUniq=function(n){return n&&n.length?Wu(n):[]},he.sortedUniqBy=function(n,t){return n&&n.length?Wu(n,Ci(t,2)):[]},he.split=function(n,t,r){return r&&\"number\"!=typeof r&&Zi(n,t,r)&&(t=r=i),(r=r===i?B:r>>>0)?(n=Zf(n))&&(\"string\"==typeof t||null!=t&&!Lf(t))&&!(t=Tu(t))&&Or(n)?Vu(Lr(n),0,r):n.split(t,r):[]},he.spread=function(n,t){if(\"function\"!=typeof n)throw new ut(a);return t=null==t?0:qr(Pf(t),0),xu(function(r){var e=r[t],u=Vu(r,0,t);return e&&tr(u,e),Kt(n,this,u)})},he.tail=function(n){var t=null==n?0:n.length;return t?Eu(n,1,t):[]},he.take=function(n,t,r){return n&&n.length?Eu(n,0,(t=r||t===i?1:Pf(t))<0?0:t):[]},he.takeRight=function(n,t,r){var e=null==n?0:n.length;return e?Eu(n,(t=e-(t=r||t===i?1:Pf(t)))<0?0:t,e):[]},he.takeRightWhile=function(n,t){return n&&n.length?Du(n,Ci(t,3),!1,!0):[]},he.takeWhile=function(n,t){return n&&n.length?Du(n,Ci(t,3)):[]},he.tap=function(n,t){return t(n),n},he.throttle=function(n,t,r){var e=!0,u=!0;if(\"function\"!=typeof n)throw new ut(a);return If(r)&&(e=\"leading\"in r?!!r.leading:e,u=\"trailing\"in r?!!r.trailing:u),ef(n,t,{leading:e,maxWait:t,trailing:u})},he.thru=Do,he.toArray=Df,he.toPairs=sa,he.toPairsIn=ha,he.toPath=function(n){return yf(n)?nr(n,ao):Tf(n)?[n]:ti(fo(Zf(n)))},he.toPlainObject=qf,he.transform=function(n,t,r){var e=yf(n),u=e||mf(n)||Uf(n);if(t=Ci(t,4),null==r){var i=n&&n.constructor;r=u?e?new i:[]:If(n)&&Af(i)?pe(Et(n)):{}}return(u?Gt:Ke)(n,function(n,e,u){return t(r,n,e,u)}),r},he.unary=function(n){return Xo(n,1)},he.union=Io,he.unionBy=Ro,he.unionWith=Eo,he.uniq=function(n){return n&&n.length?Uu(n):[]},he.uniqBy=function(n,t){return n&&n.length?Uu(n,Ci(t,2)):[]},he.uniqWith=function(n,t){return t=\"function\"==typeof t?t:i,n&&n.length?Uu(n,i,t):[]},he.unset=function(n,t){return null==n||Bu(n,t)},he.unzip=zo,he.unzipWith=So,he.update=function(n,t,r){return null==n?n:$u(n,t,qu(r))},he.updateWith=function(n,t,r,e){return e=\"function\"==typeof e?e:i,null==n?n:$u(n,t,qu(r),e)},he.values=pa,he.valuesIn=function(n){return null==n?[]:dr(n,ia(n))},he.without=Lo,he.words=Aa,he.wrap=function(n,t){return lf(qu(t),n)},he.xor=Wo,he.xorBy=Co,he.xorWith=To,he.zip=Uo,he.zipObject=function(n,t){return Fu(n||[],t||[],Ie)},he.zipObjectDeep=function(n,t){return Fu(n||[],t||[],Ou)},he.zipWith=Bo,he.entries=sa,he.entriesIn=ha,he.extend=Vf,he.extendWith=Gf,Ca(he,he),he.add=qa,he.attempt=Oa,he.camelCase=va,he.capitalize=_a,he.ceil=Za,he.clamp=function(n,t,r){return r===i&&(r=t,t=i),r!==i&&(r=(r=Nf(r))==r?r:0),t!==i&&(t=(t=Nf(t))==t?t:0),We(Nf(n),t,r)},he.clone=function(n){return Ce(n,v)},he.cloneDeep=function(n){return Ce(n,h|v)},he.cloneDeepWith=function(n,t){return Ce(n,h|v,t=\"function\"==typeof t?t:i)},he.cloneWith=function(n,t){return Ce(n,v,t=\"function\"==typeof t?t:i)},he.conformsTo=function(n,t){return null==t||Te(n,t,ua(t))},he.deburr=ga,he.defaultTo=function(n,t){return null==n||n!=n?t:n},he.divide=Ka,he.endsWith=function(n,t,r){n=Zf(n),t=Tu(t);var e=n.length,u=r=r===i?e:We(Pf(r),0,e);return(r-=t.length)>=0&&n.slice(r,u)==t},he.eq=pf,he.escape=function(n){return(n=Zf(n))&&kn.test(n)?n.replace(An,jr):n},he.escapeRegExp=function(n){return(n=Zf(n))&&Cn.test(n)?n.replace(Wn,\"\\\\$&\"):n},he.every=function(n,t,r){var e=yf(n)?Jt:Me;return r&&Zi(n,t,r)&&(t=i),e(n,Ci(t,3))},he.find=Fo,he.findIndex=vo,he.findKey=function(n,t){return or(n,Ci(t,3),Ke)},he.findLast=No,he.findLastIndex=_o,he.findLastKey=function(n,t){return or(n,Ci(t,3),Ve)},he.floor=Va,he.forEach=qo,he.forEachRight=Zo,he.forIn=function(n,t){return null==n?n:qe(n,Ci(t,3),ia)},he.forInRight=function(n,t){return null==n?n:Ze(n,Ci(t,3),ia)},he.forOwn=function(n,t){return n&&Ke(n,Ci(t,3))},he.forOwnRight=function(n,t){return n&&Ve(n,Ci(t,3))},he.get=Xf,he.gt=vf,he.gte=_f,he.has=function(n,t){return null!=n&&Pi(n,t,Xe)},he.hasIn=na,he.head=yo,he.identity=za,he.includes=function(n,t,r,e){n=bf(n)?n:pa(n),r=r&&!e?Pf(r):0;var u=n.length;return r<0&&(r=qr(u+r,0)),Cf(n)?r<=u&&n.indexOf(t,r)>-1:!!u&&ar(n,t,r)>-1},he.indexOf=function(n,t,r){var e=null==n?0:n.length;if(!e)return-1;var u=null==r?0:Pf(r);return u<0&&(u=qr(e+u,0)),ar(n,t,u)},he.inRange=function(n,t,r){return t=Mf(t),r===i?(r=t,t=0):r=Mf(r),function(n,t,r){return n>=Zr(t,r)&&n<qr(t,r)}(n=Nf(n),t,r)},he.invoke=ea,he.isArguments=gf,he.isArray=yf,he.isArrayBuffer=df,he.isArrayLike=bf,he.isArrayLikeObject=wf,he.isBoolean=function(n){return!0===n||!1===n||Rf(n)&&Ye(n)==q},he.isBuffer=mf,he.isDate=xf,he.isElement=function(n){return Rf(n)&&1===n.nodeType&&!Sf(n)},he.isEmpty=function(n){if(null==n)return!0;if(bf(n)&&(yf(n)||\"string\"==typeof n||\"function\"==typeof n.splice||mf(n)||Uf(n)||gf(n)))return!n.length;var t=Mi(n);if(t==J||t==rn)return!n.size;if(Hi(n))return!au(n).length;for(var r in n)if(lt.call(n,r))return!1;return!0},he.isEqual=function(n,t){return uu(n,t)},he.isEqualWith=function(n,t,r){var e=(r=\"function\"==typeof r?r:i)?r(n,t):i;return e===i?uu(n,t,i,r):!!e},he.isError=jf,he.isFinite=function(n){return\"number\"==typeof n&&Pr(n)},he.isFunction=Af,he.isInteger=Of,he.isLength=kf,he.isMap=Ef,he.isMatch=function(n,t){return n===t||iu(n,t,Ui(t))},he.isMatchWith=function(n,t,r){return r=\"function\"==typeof r?r:i,iu(n,t,Ui(t),r)},he.isNaN=function(n){return zf(n)&&n!=+n},he.isNative=function(n){if(Gi(n))throw new u(f);return ou(n)},he.isNil=function(n){return null==n},he.isNull=function(n){return null===n},he.isNumber=zf,he.isObject=If,he.isObjectLike=Rf,he.isPlainObject=Sf,he.isRegExp=Lf,he.isSafeInteger=function(n){return Of(n)&&n>=-C&&n<=C},he.isSet=Wf,he.isString=Cf,he.isSymbol=Tf,he.isTypedArray=Uf,he.isUndefined=function(n){return n===i},he.isWeakMap=function(n){return Rf(n)&&Mi(n)==fn},he.isWeakSet=function(n){return Rf(n)&&Ye(n)==an},he.join=function(n,t){return null==n?\"\":Fr.call(n,t)},he.kebabCase=ya,he.last=xo,he.lastIndexOf=function(n,t,r){var e=null==n?0:n.length;if(!e)return-1;var u=e;return r!==i&&(u=(u=Pf(r))<0?qr(e+u,0):Zr(u,e-1)),t==t?function(n,t,r){for(var e=r+1;e--;)if(n[e]===t)return e;return e}(n,t,u):fr(n,lr,u,!0)},he.lowerCase=da,he.lowerFirst=ba,he.lt=Bf,he.lte=$f,he.max=function(n){return n&&n.length?Pe(n,za,Qe):i},he.maxBy=function(n,t){return n&&n.length?Pe(n,Ci(t,2),Qe):i},he.mean=function(n){return sr(n,za)},he.meanBy=function(n,t){return sr(n,Ci(t,2))},he.min=function(n){return n&&n.length?Pe(n,za,lu):i},he.minBy=function(n,t){return n&&n.length?Pe(n,Ci(t,2),lu):i},he.stubArray=Fa,he.stubFalse=Na,he.stubObject=function(){return{}},he.stubString=function(){return\"\"},he.stubTrue=function(){return!0},he.multiply=Ga,he.nth=function(n,t){return n&&n.length?_u(n,Pf(t)):i},he.noConflict=function(){return Ct._===this&&(Ct._=_t),this},he.noop=Ta,he.now=Qo,he.pad=function(n,t,r){n=Zf(n);var e=(t=Pf(t))?Sr(n):0;if(!t||e>=t)return n;var u=(t-e)/2;return gi($r(u),r)+n+gi(Br(u),r)},he.padEnd=function(n,t,r){n=Zf(n);var e=(t=Pf(t))?Sr(n):0;return t&&e<t?n+gi(t-e,r):n},he.padStart=function(n,t,r){n=Zf(n);var e=(t=Pf(t))?Sr(n):0;return t&&e<t?gi(t-e,r)+n:n},he.parseInt=function(n,t,r){return r||null==t?t=0:t&&(t=+t),Vr(Zf(n).replace(Un,\"\"),t||0)},he.random=function(n,t,r){if(r&&\"boolean\"!=typeof r&&Zi(n,t,r)&&(t=r=i),r===i&&(\"boolean\"==typeof t?(r=t,t=i):\"boolean\"==typeof n&&(r=n,n=i)),n===i&&t===i?(n=0,t=1):(n=Mf(n),t===i?(t=n,n=0):t=Mf(t)),n>t){var e=n;n=t,t=e}if(r||n%1||t%1){var u=Gr();return Zr(n+u*(t-n+zt(\"1e-\"+((u+\"\").length-1))),t)}return wu(n,t)},he.reduce=function(n,t,r){var e=yf(n)?rr:vr,u=arguments.length<3;return e(n,Ci(t,4),r,u,$e)},he.reduceRight=function(n,t,r){var e=yf(n)?er:vr,u=arguments.length<3;return e(n,Ci(t,4),r,u,De)},he.repeat=function(n,t,r){return t=(r?Zi(n,t,r):t===i)?1:Pf(t),mu(Zf(n),t)},he.replace=function(){var n=arguments,t=Zf(n[0]);return n.length<3?t:t.replace(n[1],n[2])},he.result=function(n,t,r){var e=-1,u=(t=Zu(t,n)).length;for(u||(u=1,n=i);++e<u;){var o=null==n?i:n[ao(t[e])];o===i&&(e=u,o=r),n=Af(o)?o.call(n):o}return n},he.round=Ha,he.runInContext=n,he.sample=function(n){return(yf(n)?je:ju)(n)},he.size=function(n){if(null==n)return 0;if(bf(n))return Cf(n)?Sr(n):n.length;var t=Mi(n);return t==J||t==rn?n.size:au(n).length},he.snakeCase=wa,he.some=function(n,t,r){var e=yf(n)?ur:zu;return r&&Zi(n,t,r)&&(t=i),e(n,Ci(t,3))},he.sortedIndex=function(n,t){return Su(n,t)},he.sortedIndexBy=function(n,t,r){return Lu(n,t,Ci(r,2))},he.sortedIndexOf=function(n,t){var r=null==n?0:n.length;if(r){var e=Su(n,t);if(e<r&&pf(n[e],t))return e}return-1},he.sortedLastIndex=function(n,t){return Su(n,t,!0)},he.sortedLastIndexBy=function(n,t,r){return Lu(n,t,Ci(r,2),!0)},he.sortedLastIndexOf=function(n,t){if(null!=n&&n.length){var r=Su(n,t,!0)-1;if(pf(n[r],t))return r}return-1},he.startCase=ma,he.startsWith=function(n,t,r){return n=Zf(n),r=null==r?0:We(Pf(r),0,n.length),t=Tu(t),n.slice(r,r+t.length)==t},he.subtract=Ja,he.sum=function(n){return n&&n.length?_r(n,za):0},he.sumBy=function(n,t){return n&&n.length?_r(n,Ci(t,2)):0},he.template=function(n,t,r){var e=he.templateSettings;r&&Zi(n,t,r)&&(t=i),n=Zf(n),t=Gf({},t,e,Ai);var u,o,f=Gf({},t.imports,e.imports,Ai),a=ua(f),c=dr(f,a),l=0,s=t.interpolate||Yn,h=\"__p += '\",p=rt((t.escape||Yn).source+\"|\"+s.source+\"|\"+(s===En?Nn:Yn).source+\"|\"+(t.evaluate||Yn).source+\"|$\",\"g\"),v=\"//# sourceURL=\"+(lt.call(t,\"sourceURL\")?(t.sourceURL+\"\").replace(/\\s/g,\" \"):\"lodash.templateSources[\"+ ++kt+\"]\")+\"\\n\";n.replace(p,function(t,r,e,i,f,a){return e||(e=i),h+=n.slice(l,a).replace(Qn,Ar),r&&(u=!0,h+=\"' +\\n__e(\"+r+\") +\\n'\"),f&&(o=!0,h+=\"';\\n\"+f+\";\\n__p += '\"),e&&(h+=\"' +\\n((__t = (\"+e+\")) == null ? '' : __t) +\\n'\"),l=a+t.length,t}),h+=\"';\\n\";var _=lt.call(t,\"variable\")&&t.variable;_||(h=\"with (obj) {\\n\"+h+\"\\n}\\n\"),h=(o?h.replace(wn,\"\"):h).replace(mn,\"$1\").replace(xn,\"$1;\"),h=\"function(\"+(_||\"obj\")+\") {\\n\"+(_?\"\":\"obj || (obj = {});\\n\")+\"var __t, __p = ''\"+(u?\", __e = _.escape\":\"\")+(o?\", __j = Array.prototype.join;\\nfunction print() { __p += __j.call(arguments, '') }\\n\":\";\\n\")+h+\"return __p\\n}\";var g=Oa(function(){return Xn(a,v+\"return \"+h).apply(i,c)});if(g.source=h,jf(g))throw g;return g},he.times=function(n,t){if((n=Pf(n))<1||n>C)return[];var r=B,e=Zr(n,B);t=Ci(t),n-=B;for(var u=gr(e,t);++r<n;)t(r);return u},he.toFinite=Mf,he.toInteger=Pf,he.toLength=Ff,he.toLower=function(n){return Zf(n).toLowerCase()},he.toNumber=Nf,he.toSafeInteger=function(n){return n?We(Pf(n),-C,C):0===n?n:0},he.toString=Zf,he.toUpper=function(n){return Zf(n).toUpperCase()},he.trim=function(n,t,r){if((n=Zf(n))&&(r||t===i))return n.replace(Tn,\"\");if(!n||!(t=Tu(t)))return n;var e=Lr(n),u=Lr(t);return Vu(e,wr(e,u),mr(e,u)+1).join(\"\")},he.trimEnd=function(n,t,r){if((n=Zf(n))&&(r||t===i))return n.replace(Bn,\"\");if(!n||!(t=Tu(t)))return n;var e=Lr(n);return Vu(e,0,mr(e,Lr(t))+1).join(\"\")},he.trimStart=function(n,t,r){if((n=Zf(n))&&(r||t===i))return n.replace(Un,\"\");if(!n||!(t=Tu(t)))return n;var e=Lr(n);return Vu(e,wr(e,Lr(t))).join(\"\")},he.truncate=function(n,t){var r=I,e=R;if(If(t)){var u=\"separator\"in t?t.separator:u;r=\"length\"in t?Pf(t.length):r,e=\"omission\"in t?Tu(t.omission):e}var o=(n=Zf(n)).length;if(Or(n)){var f=Lr(n);o=f.length}if(r>=o)return n;var a=r-Sr(e);if(a<1)return e;var c=f?Vu(f,0,a).join(\"\"):n.slice(0,a);if(u===i)return c+e;if(f&&(a+=c.length-a),Lf(u)){if(n.slice(a).search(u)){var l,s=c;for(u.global||(u=rt(u.source,Zf(qn.exec(u))+\"g\")),u.lastIndex=0;l=u.exec(s);)var h=l.index;c=c.slice(0,h===i?a:h)}}else if(n.indexOf(Tu(u),a)!=a){var p=c.lastIndexOf(u);p>-1&&(c=c.slice(0,p))}return c+e},he.unescape=function(n){return(n=Zf(n))&&On.test(n)?n.replace(jn,Wr):n},he.uniqueId=function(n){var t=++st;return Zf(n)+t},he.upperCase=xa,he.upperFirst=ja,he.each=qo,he.eachRight=Zo,he.first=yo,Ca(he,function(){var n={};return Ke(he,function(t,r){lt.call(he.prototype,r)||(n[r]=t)}),n}(),{chain:!1}),he.VERSION=\"4.17.20\",Gt([\"bind\",\"bindKey\",\"curry\",\"curryRight\",\"partial\",\"partialRight\"],function(n){he[n].placeholder=he}),Gt([\"drop\",\"take\"],function(n,t){ge.prototype[n]=function(r){r=r===i?1:qr(Pf(r),0);var e=this.__filtered__&&!t?new ge(this):this.clone();return e.__filtered__?e.__takeCount__=Zr(r,e.__takeCount__):e.__views__.push({size:Zr(r,B),type:n+(e.__dir__<0?\"Right\":\"\")}),e},ge.prototype[n+\"Right\"]=function(t){return this.reverse()[n](t).reverse()}}),Gt([\"filter\",\"map\",\"takeWhile\"],function(n,t){var r=t+1,e=r==S||3==r;ge.prototype[n]=function(n){var t=this.clone();return t.__iteratees__.push({iteratee:Ci(n,3),type:r}),t.__filtered__=t.__filtered__||e,t}}),Gt([\"head\",\"last\"],function(n,t){var r=\"take\"+(t?\"Right\":\"\");ge.prototype[n]=function(){return this[r](1).value()[0]}}),Gt([\"initial\",\"tail\"],function(n,t){var r=\"drop\"+(t?\"\":\"Right\");ge.prototype[n]=function(){return this.__filtered__?new ge(this):this[r](1)}}),ge.prototype.compact=function(){return this.filter(za)},ge.prototype.find=function(n){return this.filter(n).head()},ge.prototype.findLast=function(n){return this.reverse().find(n)},ge.prototype.invokeMap=xu(function(n,t){return\"function\"==typeof n?new ge(this):this.map(function(r){return ru(r,n,t)})}),ge.prototype.reject=function(n){return this.filter(af(Ci(n)))},ge.prototype.slice=function(n,t){n=Pf(n);var r=this;return r.__filtered__&&(n>0||t<0)?new ge(r):(n<0?r=r.takeRight(-n):n&&(r=r.drop(n)),t!==i&&(r=(t=Pf(t))<0?r.dropRight(-t):r.take(t-n)),r)},ge.prototype.takeRightWhile=function(n){return this.reverse().takeWhile(n).reverse()},ge.prototype.toArray=function(){return this.take(B)},Ke(ge.prototype,function(n,t){var r=/^(?:filter|find|map|reject)|While$/.test(t),e=/^(?:head|last)$/.test(t),u=he[e?\"take\"+(\"last\"==t?\"Right\":\"\"):t],o=e||/^find/.test(t);u&&(he.prototype[t]=function(){var t=this.__wrapped__,f=e?[1]:arguments,a=t instanceof ge,c=f[0],l=a||yf(t),s=function(n){var t=u.apply(he,tr([n],f));return e&&h?t[0]:t};l&&r&&\"function\"==typeof c&&1!=c.length&&(a=l=!1);var h=this.__chain__,p=!!this.__actions__.length,v=o&&!h,_=a&&!p;if(!o&&l){t=_?t:new ge(this);var g=n.apply(t,f);return g.__actions__.push({func:Do,args:[s],thisArg:i}),new _e(g,h)}return v&&_?n.apply(this,f):(g=this.thru(s),v?e?g.value()[0]:g.value():g)})}),Gt([\"pop\",\"push\",\"shift\",\"sort\",\"splice\",\"unshift\"],function(n){var t=it[n],r=/^(?:push|sort|unshift)$/.test(n)?\"tap\":\"thru\",e=/^(?:pop|shift)$/.test(n);he.prototype[n]=function(){var n=arguments;if(e&&!this.__chain__){var u=this.value();return t.apply(yf(u)?u:[],n)}return this[r](function(r){return t.apply(yf(r)?r:[],n)})}}),Ke(ge.prototype,function(n,t){var r=he[t];if(r){var e=r.name+\"\";lt.call(ee,e)||(ee[e]=[]),ee[e].push({name:t,func:r})}}),ee[hi(i,d).name]=[{name:\"wrapper\",func:i}],ge.prototype.clone=function(){var n=new ge(this.__wrapped__);return n.__actions__=ti(this.__actions__),n.__dir__=this.__dir__,n.__filtered__=this.__filtered__,n.__iteratees__=ti(this.__iteratees__),n.__takeCount__=this.__takeCount__,n.__views__=ti(this.__views__),n},ge.prototype.reverse=function(){if(this.__filtered__){var n=new ge(this);n.__dir__=-1,n.__filtered__=!0}else(n=this.clone()).__dir__*=-1;return n},ge.prototype.value=function(){var n=this.__wrapped__.value(),t=this.__dir__,r=yf(n),e=t<0,u=r?n.length:0,i=function(n,t,r){for(var e=-1,u=r.length;++e<u;){var i=r[e],o=i.size;switch(i.type){case\"drop\":n+=o;break;case\"dropRight\":t-=o;break;case\"take\":t=Zr(t,n+o);break;case\"takeRight\":n=qr(n,t-o)}}return{start:n,end:t}}(0,u,this.__views__),o=i.start,f=i.end,a=f-o,c=e?f:o-1,l=this.__iteratees__,s=l.length,h=0,p=Zr(a,this.__takeCount__);if(!r||!e&&u==a&&p==a)return Mu(n,this.__actions__);var v=[];n:for(;a--&&h<p;){for(var _=-1,g=n[c+=t];++_<s;){var y=l[_],d=y.iteratee,b=y.type,w=d(g);if(b==L)g=w;else if(!w){if(b==S)continue n;break n}}v[h++]=g}return v},he.prototype.at=Mo,he.prototype.chain=function(){return $o(this)},he.prototype.commit=function(){return new _e(this.value(),this.__chain__)},he.prototype.next=function(){this.__values__===i&&(this.__values__=Df(this.value()));var n=this.__index__>=this.__values__.length;return{done:n,value:n?i:this.__values__[this.__index__++]}},he.prototype.plant=function(n){for(var t,r=this;r instanceof ve;){var e=lo(r);e.__index__=0,e.__values__=i,t?u.__wrapped__=e:t=e;var u=e;r=r.__wrapped__}return u.__wrapped__=n,t},he.prototype.reverse=function(){var n=this.__wrapped__;if(n instanceof ge){var t=n;return this.__actions__.length&&(t=new ge(this)),(t=t.reverse()).__actions__.push({func:Do,args:[ko],thisArg:i}),new _e(t,this.__chain__)}return this.thru(ko)},he.prototype.toJSON=he.prototype.valueOf=he.prototype.value=function(){return Mu(this.__wrapped__,this.__actions__)},he.prototype.first=he.prototype.head,$t&&(he.prototype[$t]=function(){return this}),he}();Ct._=Cr,(u=function(){return Cr}.call(t,r,t,e))===i||(e.exports=u)}).call(this)}).call(this,r(1),r(0)(n))},function(n,t,r){const e=r(2);var u=new Map;self.onmessage=(n=>{var t=n.data;switch(t.command){case\"setTimeout\":var r=e.toInteger(t.timeout),i=setTimeout(function(n){self.postMessage({id:n}),u.delete(n)}.bind(null,t.id),r);u.set(t.id,i);break;case\"clearTimeout\":i=u.get(t.id);e.isNil(i)||clearTimeout(i),u.delete(t.id)}})}]);"
  },
  {
    "path": "test/stats/with-worker-loader/stats.json",
    "content": "{\n    \"errors\": [\n    ],\n    \"warnings\": [\n    ],\n    \"version\": \"4.0.0\",\n    \"hash\": \"cf9a021389e125c88552\",\n    \"time\": 343,\n    \"builtAt\": 1597818131507,\n    \"publicPath\": \"\",\n    \"outputPath\": \"D:\\\\Repos\\\\worker-loader-example\\\\dist\",\n    \"assetsByChunkName\": {\n      \"main\": \"bundle.js\"\n    },\n    \"assets\": [\n      {\n        \"name\": \"bundle.worker.js\",\n        \"size\": 72438,\n        \"chunks\": [\n        ],\n        \"chunkNames\": [\n        ],\n        \"emitted\": true\n      },\n      {\n        \"name\": \"bundle.js\",\n        \"size\": 1141,\n        \"chunks\": [\n          0\n        ],\n        \"chunkNames\": [\n          \"main\"\n        ],\n        \"emitted\": true\n      },\n      {\n        \"name\": \"index.html\",\n        \"size\": 226,\n        \"chunks\": [\n        ],\n        \"chunkNames\": [\n        ],\n        \"emitted\": true\n      }\n    ],\n    \"filteredAssets\": 0,\n    \"entrypoints\": {\n      \"main\": {\n        \"chunks\": [\n          0\n        ],\n        \"assets\": [\n          \"bundle.js\"\n        ]\n      }\n    },\n    \"chunks\": [\n      {\n        \"id\": 0,\n        \"rendered\": true,\n        \"initial\": true,\n        \"entry\": true,\n        \"size\": 978,\n        \"names\": [\n          \"main\"\n        ],\n        \"files\": [\n          \"bundle.js\"\n        ],\n        \"hash\": \"fe3d0c0bcc36b3540f03\",\n        \"siblings\": [\n        ],\n        \"parents\": [\n        ],\n        \"children\": [\n        ],\n        \"modules\": [\n          {\n            \"id\": 0,\n            \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\index.js f3723979a9ae5daa2b97ad0b1caec0b9\",\n            \"name\": \"./src/index.js + 1 modules\",\n            \"index\": 1,\n            \"index2\": 1,\n            \"size\": 950,\n            \"cacheable\": false,\n            \"built\": true,\n            \"optional\": false,\n            \"prefetched\": false,\n            \"chunks\": [\n              0\n            ],\n            \"assets\": [\n            ],\n            \"issuer\": null,\n            \"issuerId\": null,\n            \"issuerName\": null,\n            \"issuerPath\": null,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"reasons\": [\n              {\n                \"moduleId\": 1,\n                \"moduleIdentifier\": \"multi ./src/index.js\",\n                \"module\": \"multi ./src/index.js\",\n                \"moduleName\": \"multi ./src/index.js\",\n                \"type\": \"single entry\",\n                \"userRequest\": \"./src/index.js\",\n                \"loc\": \"main:100000\"\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": [\n            ],\n            \"optimizationBailout\": [\n            ],\n            \"depth\": 1,\n            \"modules\": [\n              {\n                \"id\": null,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\index.js\",\n                \"name\": \"./src/index.js\",\n                \"index\": 1,\n                \"index2\": 1,\n                \"size\": 853,\n                \"cacheable\": true,\n                \"built\": true,\n                \"optional\": false,\n                \"prefetched\": false,\n                \"chunks\": [\n                ],\n                \"assets\": [\n                ],\n                \"issuer\": \"multi ./src/index.js\",\n                \"issuerId\": 1,\n                \"issuerName\": \"multi ./src/index.js\",\n                \"issuerPath\": [\n                  {\n                    \"id\": 1,\n                    \"identifier\": \"multi ./src/index.js\",\n                    \"name\": \"multi ./src/index.js\"\n                  }\n                ],\n                \"failed\": false,\n                \"errors\": 0,\n                \"warnings\": 0,\n                \"reasons\": [\n                  {\n                    \"moduleId\": 1,\n                    \"moduleIdentifier\": \"multi ./src/index.js\",\n                    \"module\": \"multi ./src/index.js\",\n                    \"moduleName\": \"multi ./src/index.js\",\n                    \"type\": \"single entry\",\n                    \"userRequest\": \"./src/index.js\",\n                    \"loc\": \"main:100000\"\n                  }\n                ],\n                \"usedExports\": true,\n                \"providedExports\": [\n                ],\n                \"optimizationBailout\": [\n                  \"ModuleConcatenation bailout: Module is referenced from these modules with unsupported syntax: multi ./src/index.js (referenced with single entry)\"\n                ],\n                \"depth\": 1,\n                \"source\": \"var timeoutId = 0;\\r\\nvar timeouts = {};\\r\\nimport Worker from './timeout.worker.js';\\r\\n\\r\\nvar worker = new Worker();\\r\\nworker.addEventListener(\\\"message\\\", function(evt) {\\r\\n  var data = evt.data,\\r\\n      id = data.id,\\r\\n      fn = timeouts[id].fn,\\r\\n      args = timeouts[id].args;\\r\\n\\r\\n  fn.apply(null, args);\\r\\n  delete timeouts[id];\\r\\n});\\r\\n\\r\\nwindow.setTimeout = function(fn, delay) {\\r\\n  var args = Array.prototype.slice.call(arguments, 2);\\r\\n  timeoutId += 1;\\r\\n  delay = delay || 0;\\r\\n  var id = timeoutId;\\r\\n  timeouts[id] = {fn: fn, args: args};\\r\\n  worker.postMessage({command: \\\"setTimeout\\\", id: id, timeout: delay});\\r\\n  return id;\\r\\n};\\r\\n\\r\\nwindow.clearTimeout = function(id) {\\r\\n  worker.postMessage({command: \\\"clearTimeout\\\", id: id});\\r\\n  delete timeouts[id];\\r\\n};\\r\\n\\r\\nconsole.log(\\\"hello world\\\");\\r\\nwindow.setTimeout(() => console.log(\\\"hello world after 5 sec\\\"), 5*1000);\"\n              },\n              {\n                \"id\": null,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\worker-loader\\\\dist\\\\cjs.js!D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                \"name\": \"./src/timeout.worker.js\",\n                \"index\": 2,\n                \"index2\": 0,\n                \"size\": 97,\n                \"cacheable\": false,\n                \"built\": true,\n                \"optional\": false,\n                \"prefetched\": false,\n                \"chunks\": [\n                ],\n                \"assets\": [\n                ],\n                \"issuer\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\index.js\",\n                \"issuerId\": null,\n                \"issuerName\": \"./src/index.js\",\n                \"issuerPath\": [\n                  {\n                    \"id\": 1,\n                    \"identifier\": \"multi ./src/index.js\",\n                    \"name\": \"multi ./src/index.js\"\n                  },\n                  {\n                    \"id\": null,\n                    \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\index.js\",\n                    \"name\": \"./src/index.js\"\n                  }\n                ],\n                \"failed\": false,\n                \"errors\": 0,\n                \"warnings\": 0,\n                \"reasons\": [\n                  {\n                    \"moduleId\": null,\n                    \"moduleIdentifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\index.js\",\n                    \"module\": \"./src/index.js\",\n                    \"moduleName\": \"./src/index.js\",\n                    \"type\": \"harmony side effect evaluation\",\n                    \"userRequest\": \"./timeout.worker.js\",\n                    \"loc\": \"3:0-41\"\n                  },\n                  {\n                    \"moduleId\": null,\n                    \"moduleIdentifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\index.js\",\n                    \"module\": \"./src/index.js\",\n                    \"moduleName\": \"./src/index.js\",\n                    \"type\": \"harmony import specifier\",\n                    \"userRequest\": \"./timeout.worker.js\",\n                    \"loc\": \"5:17-23\"\n                  }\n                ],\n                \"usedExports\": [\n                  \"default\"\n                ],\n                \"providedExports\": [\n                  \"default\"\n                ],\n                \"optimizationBailout\": [\n                ],\n                \"depth\": 2,\n                \"source\": \"export default function() {\\n  return new Worker(__webpack_public_path__ + \\\"bundle.worker.js\\\");\\n}\\n\"\n              }\n            ],\n            \"filteredModules\": 0\n          },\n          {\n            \"id\": 1,\n            \"identifier\": \"multi ./src/index.js\",\n            \"name\": \"multi ./src/index.js\",\n            \"index\": 0,\n            \"index2\": 2,\n            \"size\": 28,\n            \"built\": true,\n            \"optional\": false,\n            \"prefetched\": false,\n            \"chunks\": [\n              0\n            ],\n            \"assets\": [\n            ],\n            \"issuer\": null,\n            \"issuerId\": null,\n            \"issuerName\": null,\n            \"issuerPath\": null,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"reasons\": [\n              {\n                \"moduleId\": null,\n                \"moduleIdentifier\": null,\n                \"module\": null,\n                \"moduleName\": null,\n                \"type\": \"multi entry\"\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": null,\n            \"optimizationBailout\": [\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 0\n          }\n        ],\n        \"filteredModules\": 0,\n        \"origins\": [\n          {\n            \"module\": \"\",\n            \"moduleIdentifier\": \"\",\n            \"moduleName\": \"\",\n            \"loc\": \"main\",\n            \"reasons\": [\n            ]\n          }\n        ]\n      }\n    ],\n    \"modules\": [\n      {\n        \"id\": 0,\n        \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\index.js f3723979a9ae5daa2b97ad0b1caec0b9\",\n        \"name\": \"./src/index.js + 1 modules\",\n        \"index\": 1,\n        \"index2\": 1,\n        \"size\": 950,\n        \"cacheable\": false,\n        \"built\": true,\n        \"optional\": false,\n        \"prefetched\": false,\n        \"chunks\": [\n          0\n        ],\n        \"assets\": [\n        ],\n        \"issuer\": null,\n        \"issuerId\": null,\n        \"issuerName\": null,\n        \"issuerPath\": null,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"reasons\": [\n          {\n            \"moduleId\": 1,\n            \"moduleIdentifier\": \"multi ./src/index.js\",\n            \"module\": \"multi ./src/index.js\",\n            \"moduleName\": \"multi ./src/index.js\",\n            \"type\": \"single entry\",\n            \"userRequest\": \"./src/index.js\",\n            \"loc\": \"main:100000\"\n          }\n        ],\n        \"usedExports\": true,\n        \"providedExports\": [\n        ],\n        \"optimizationBailout\": [\n        ],\n        \"depth\": 1,\n        \"modules\": [\n          {\n            \"id\": null,\n            \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\index.js\",\n            \"name\": \"./src/index.js\",\n            \"index\": 1,\n            \"index2\": 1,\n            \"size\": 853,\n            \"cacheable\": true,\n            \"built\": true,\n            \"optional\": false,\n            \"prefetched\": false,\n            \"chunks\": [\n            ],\n            \"assets\": [\n            ],\n            \"issuer\": \"multi ./src/index.js\",\n            \"issuerId\": 1,\n            \"issuerName\": \"multi ./src/index.js\",\n            \"issuerPath\": [\n              {\n                \"id\": 1,\n                \"identifier\": \"multi ./src/index.js\",\n                \"name\": \"multi ./src/index.js\"\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"reasons\": [\n              {\n                \"moduleId\": 1,\n                \"moduleIdentifier\": \"multi ./src/index.js\",\n                \"module\": \"multi ./src/index.js\",\n                \"moduleName\": \"multi ./src/index.js\",\n                \"type\": \"single entry\",\n                \"userRequest\": \"./src/index.js\",\n                \"loc\": \"main:100000\"\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": [\n            ],\n            \"optimizationBailout\": [\n              \"ModuleConcatenation bailout: Module is referenced from these modules with unsupported syntax: multi ./src/index.js (referenced with single entry)\"\n            ],\n            \"depth\": 1,\n            \"source\": \"var timeoutId = 0;\\r\\nvar timeouts = {};\\r\\nimport Worker from './timeout.worker.js';\\r\\n\\r\\nvar worker = new Worker();\\r\\nworker.addEventListener(\\\"message\\\", function(evt) {\\r\\n  var data = evt.data,\\r\\n      id = data.id,\\r\\n      fn = timeouts[id].fn,\\r\\n      args = timeouts[id].args;\\r\\n\\r\\n  fn.apply(null, args);\\r\\n  delete timeouts[id];\\r\\n});\\r\\n\\r\\nwindow.setTimeout = function(fn, delay) {\\r\\n  var args = Array.prototype.slice.call(arguments, 2);\\r\\n  timeoutId += 1;\\r\\n  delay = delay || 0;\\r\\n  var id = timeoutId;\\r\\n  timeouts[id] = {fn: fn, args: args};\\r\\n  worker.postMessage({command: \\\"setTimeout\\\", id: id, timeout: delay});\\r\\n  return id;\\r\\n};\\r\\n\\r\\nwindow.clearTimeout = function(id) {\\r\\n  worker.postMessage({command: \\\"clearTimeout\\\", id: id});\\r\\n  delete timeouts[id];\\r\\n};\\r\\n\\r\\nconsole.log(\\\"hello world\\\");\\r\\nwindow.setTimeout(() => console.log(\\\"hello world after 5 sec\\\"), 5*1000);\"\n          },\n          {\n            \"id\": null,\n            \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\worker-loader\\\\dist\\\\cjs.js!D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n            \"name\": \"./src/timeout.worker.js\",\n            \"index\": 2,\n            \"index2\": 0,\n            \"size\": 97,\n            \"cacheable\": false,\n            \"built\": true,\n            \"optional\": false,\n            \"prefetched\": false,\n            \"chunks\": [\n            ],\n            \"assets\": [\n            ],\n            \"issuer\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\index.js\",\n            \"issuerId\": null,\n            \"issuerName\": \"./src/index.js\",\n            \"issuerPath\": [\n              {\n                \"id\": 1,\n                \"identifier\": \"multi ./src/index.js\",\n                \"name\": \"multi ./src/index.js\"\n              },\n              {\n                \"id\": null,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\index.js\",\n                \"name\": \"./src/index.js\"\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"reasons\": [\n              {\n                \"moduleId\": null,\n                \"moduleIdentifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\index.js\",\n                \"module\": \"./src/index.js\",\n                \"moduleName\": \"./src/index.js\",\n                \"type\": \"harmony side effect evaluation\",\n                \"userRequest\": \"./timeout.worker.js\",\n                \"loc\": \"3:0-41\"\n              },\n              {\n                \"moduleId\": null,\n                \"moduleIdentifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\index.js\",\n                \"module\": \"./src/index.js\",\n                \"moduleName\": \"./src/index.js\",\n                \"type\": \"harmony import specifier\",\n                \"userRequest\": \"./timeout.worker.js\",\n                \"loc\": \"5:17-23\"\n              }\n            ],\n            \"usedExports\": [\n              \"default\"\n            ],\n            \"providedExports\": [\n              \"default\"\n            ],\n            \"optimizationBailout\": [\n            ],\n            \"depth\": 2,\n            \"source\": \"export default function() {\\n  return new Worker(__webpack_public_path__ + \\\"bundle.worker.js\\\");\\n}\\n\"\n          }\n        ],\n        \"filteredModules\": 0\n      },\n      {\n        \"id\": 1,\n        \"identifier\": \"multi ./src/index.js\",\n        \"name\": \"multi ./src/index.js\",\n        \"index\": 0,\n        \"index2\": 2,\n        \"size\": 28,\n        \"built\": true,\n        \"optional\": false,\n        \"prefetched\": false,\n        \"chunks\": [\n          0\n        ],\n        \"assets\": [\n        ],\n        \"issuer\": null,\n        \"issuerId\": null,\n        \"issuerName\": null,\n        \"issuerPath\": null,\n        \"failed\": false,\n        \"errors\": 0,\n        \"warnings\": 0,\n        \"reasons\": [\n          {\n            \"moduleId\": null,\n            \"moduleIdentifier\": null,\n            \"module\": null,\n            \"moduleName\": null,\n            \"type\": \"multi entry\"\n          }\n        ],\n        \"usedExports\": true,\n        \"providedExports\": null,\n        \"optimizationBailout\": [\n          \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n        ],\n        \"depth\": 0\n      }\n    ],\n    \"filteredModules\": 0,\n    \"children\": [\n      {\n        \"errors\": [\n        ],\n        \"warnings\": [\n        ],\n        \"publicPath\": \"\",\n        \"outputPath\": \"D:\\\\Repos\\\\worker-loader-example\\\\dist\",\n        \"assetsByChunkName\": {\n          \"HtmlWebpackPlugin_0\": \"__child-HtmlWebpackPlugin_0\"\n        },\n        \"assets\": [\n          {\n            \"name\": \"__child-HtmlWebpackPlugin_0\",\n            \"size\": 3127,\n            \"chunks\": [\n              0\n            ],\n            \"chunkNames\": [\n              \"HtmlWebpackPlugin_0\"\n            ]\n          }\n        ],\n        \"filteredAssets\": 0,\n        \"entrypoints\": {\n          \"HtmlWebpackPlugin_0\": {\n            \"chunks\": [\n              0\n            ],\n            \"assets\": [\n              \"__child-HtmlWebpackPlugin_0\"\n            ]\n          }\n        },\n        \"chunks\": [\n          {\n            \"id\": 0,\n            \"rendered\": true,\n            \"initial\": true,\n            \"entry\": true,\n            \"size\": 436,\n            \"names\": [\n              \"HtmlWebpackPlugin_0\"\n            ],\n            \"files\": [\n              \"__child-HtmlWebpackPlugin_0\"\n            ],\n            \"hash\": \"9ae4615411036a99946e\",\n            \"siblings\": [\n            ],\n            \"parents\": [\n            ],\n            \"children\": [\n            ],\n            \"modules\": [\n              {\n                \"id\": 0,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\html-webpack-plugin\\\\lib\\\\loader.js!D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\html-webpack-plugin\\\\default_index.ejs\",\n                \"name\": \"./node_modules/html-webpack-plugin/lib/loader.js!./node_modules/html-webpack-plugin/default_index.ejs\",\n                \"index\": 0,\n                \"index2\": 0,\n                \"size\": 436,\n                \"cacheable\": true,\n                \"built\": true,\n                \"optional\": false,\n                \"prefetched\": false,\n                \"chunks\": [\n                  0\n                ],\n                \"assets\": [\n                ],\n                \"issuer\": null,\n                \"issuerId\": null,\n                \"issuerName\": null,\n                \"issuerPath\": null,\n                \"failed\": false,\n                \"errors\": 0,\n                \"warnings\": 0,\n                \"reasons\": [\n                  {\n                    \"moduleId\": null,\n                    \"moduleIdentifier\": null,\n                    \"module\": null,\n                    \"moduleName\": null,\n                    \"type\": \"single entry\",\n                    \"userRequest\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\html-webpack-plugin\\\\lib\\\\loader.js!D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\html-webpack-plugin\\\\default_index.ejs\",\n                    \"loc\": \"HtmlWebpackPlugin_0\"\n                  }\n                ],\n                \"usedExports\": true,\n                \"providedExports\": null,\n                \"optimizationBailout\": [\n                  \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n                ],\n                \"depth\": 0,\n                \"source\": \"var _ = __non_webpack_require__(\\\"D:\\\\\\\\Repos\\\\\\\\worker-loader-example\\\\\\\\node_modules\\\\\\\\lodash\\\\\\\\lodash.js\\\");module.exports = function (templateParams) { with(templateParams) {return (function(data) {\\nvar __t, __p = '';\\n__p += '<!DOCTYPE html>\\\\n<html>\\\\n  <head>\\\\n    <meta charset=\\\"utf-8\\\">\\\\n    <title>' +\\n((__t = ( htmlWebpackPlugin.options.title )) == null ? '' : __t) +\\n'</title>\\\\n  </head>\\\\n  <body>\\\\n  </body>\\\\n</html>';\\nreturn __p\\n})();}}\"\n              }\n            ],\n            \"filteredModules\": 0,\n            \"origins\": [\n              {\n                \"module\": \"\",\n                \"moduleIdentifier\": \"\",\n                \"moduleName\": \"\",\n                \"loc\": \"HtmlWebpackPlugin_0\",\n                \"request\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\html-webpack-plugin\\\\lib\\\\loader.js!D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\html-webpack-plugin\\\\default_index.ejs\",\n                \"reasons\": [\n                ]\n              }\n            ]\n          }\n        ],\n        \"modules\": [\n          {\n            \"id\": 0,\n            \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\html-webpack-plugin\\\\lib\\\\loader.js!D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\html-webpack-plugin\\\\default_index.ejs\",\n            \"name\": \"./node_modules/html-webpack-plugin/lib/loader.js!./node_modules/html-webpack-plugin/default_index.ejs\",\n            \"index\": 0,\n            \"index2\": 0,\n            \"size\": 436,\n            \"cacheable\": true,\n            \"built\": true,\n            \"optional\": false,\n            \"prefetched\": false,\n            \"chunks\": [\n              0\n            ],\n            \"assets\": [\n            ],\n            \"issuer\": null,\n            \"issuerId\": null,\n            \"issuerName\": null,\n            \"issuerPath\": null,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"reasons\": [\n              {\n                \"moduleId\": null,\n                \"moduleIdentifier\": null,\n                \"module\": null,\n                \"moduleName\": null,\n                \"type\": \"single entry\",\n                \"userRequest\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\html-webpack-plugin\\\\lib\\\\loader.js!D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\html-webpack-plugin\\\\default_index.ejs\",\n                \"loc\": \"HtmlWebpackPlugin_0\"\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": null,\n            \"optimizationBailout\": [\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 0,\n            \"source\": \"var _ = __non_webpack_require__(\\\"D:\\\\\\\\Repos\\\\\\\\worker-loader-example\\\\\\\\node_modules\\\\\\\\lodash\\\\\\\\lodash.js\\\");module.exports = function (templateParams) { with(templateParams) {return (function(data) {\\nvar __t, __p = '';\\n__p += '<!DOCTYPE html>\\\\n<html>\\\\n  <head>\\\\n    <meta charset=\\\"utf-8\\\">\\\\n    <title>' +\\n((__t = ( htmlWebpackPlugin.options.title )) == null ? '' : __t) +\\n'</title>\\\\n  </head>\\\\n  <body>\\\\n  </body>\\\\n</html>';\\nreturn __p\\n})();}}\"\n          }\n        ],\n        \"filteredModules\": 0,\n        \"children\": [\n        ],\n        \"name\": \"HtmlWebpackCompiler\"\n      },\n      {\n        \"errors\": [\n        ],\n        \"warnings\": [\n        ],\n        \"publicPath\": \"\",\n        \"outputPath\": \"D:\\\\Repos\\\\worker-loader-example\\\\dist\",\n        \"assetsByChunkName\": {\n          \"timeout.worker\": \"bundle.worker.js\"\n        },\n        \"assets\": [\n          {\n            \"name\": \"bundle.worker.js\",\n            \"size\": 72438,\n            \"chunks\": [\n              0\n            ],\n            \"chunkNames\": [\n              \"timeout.worker\"\n            ],\n            \"emitted\": true\n          }\n        ],\n        \"filteredAssets\": 0,\n        \"entrypoints\": {\n          \"timeout.worker\": {\n            \"chunks\": [\n              0\n            ],\n            \"assets\": [\n              \"bundle.worker.js\"\n            ]\n          }\n        },\n        \"chunks\": [\n          {\n            \"id\": 0,\n            \"rendered\": true,\n            \"initial\": true,\n            \"entry\": true,\n            \"size\": 544273,\n            \"names\": [\n              \"timeout.worker\"\n            ],\n            \"files\": [\n              \"bundle.worker.js\"\n            ],\n            \"hash\": \"de3a975485d3f7f4a929\",\n            \"siblings\": [\n            ],\n            \"parents\": [\n            ],\n            \"children\": [\n            ],\n            \"modules\": [\n              {\n                \"id\": 0,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\webpack\\\\buildin\\\\module.js\",\n                \"name\": \"(webpack)/buildin/module.js\",\n                \"index\": 3,\n                \"index2\": 1,\n                \"size\": 519,\n                \"cacheable\": true,\n                \"built\": true,\n                \"optional\": false,\n                \"prefetched\": false,\n                \"chunks\": [\n                  0\n                ],\n                \"assets\": [\n                ],\n                \"issuer\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n                \"issuerId\": 2,\n                \"issuerName\": \"./node_modules/lodash/lodash.js\",\n                \"issuerPath\": [\n                  {\n                    \"id\": 3,\n                    \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                    \"name\": \"./src/timeout.worker.js\"\n                  },\n                  {\n                    \"id\": 2,\n                    \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n                    \"name\": \"./node_modules/lodash/lodash.js\"\n                  }\n                ],\n                \"failed\": false,\n                \"errors\": 0,\n                \"warnings\": 0,\n                \"reasons\": [\n                  {\n                    \"moduleId\": 2,\n                    \"moduleIdentifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n                    \"module\": \"./node_modules/lodash/lodash.js\",\n                    \"moduleName\": \"./node_modules/lodash/lodash.js\",\n                    \"type\": \"cjs require\",\n                    \"userRequest\": \"module\",\n                    \"loc\": \"1:0-41\"\n                  }\n                ],\n                \"usedExports\": true,\n                \"providedExports\": null,\n                \"optimizationBailout\": [\n                  \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n                ],\n                \"depth\": 2,\n                \"source\": \"module.exports = function(module) {\\r\\n\\tif (!module.webpackPolyfill) {\\r\\n\\t\\tmodule.deprecate = function() {};\\r\\n\\t\\tmodule.paths = [];\\r\\n\\t\\t// module.parent = undefined by default\\r\\n\\t\\tif (!module.children) module.children = [];\\r\\n\\t\\tObject.defineProperty(module, \\\"loaded\\\", {\\r\\n\\t\\t\\tenumerable: true,\\r\\n\\t\\t\\tget: function() {\\r\\n\\t\\t\\t\\treturn module.l;\\r\\n\\t\\t\\t}\\r\\n\\t\\t});\\r\\n\\t\\tObject.defineProperty(module, \\\"id\\\", {\\r\\n\\t\\t\\tenumerable: true,\\r\\n\\t\\t\\tget: function() {\\r\\n\\t\\t\\t\\treturn module.i;\\r\\n\\t\\t\\t}\\r\\n\\t\\t});\\r\\n\\t\\tmodule.webpackPolyfill = 1;\\r\\n\\t}\\r\\n\\treturn module;\\r\\n};\\r\\n\"\n              },\n              {\n                \"id\": 1,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\webpack\\\\buildin\\\\global.js\",\n                \"name\": \"(webpack)/buildin/global.js\",\n                \"index\": 2,\n                \"index2\": 0,\n                \"size\": 509,\n                \"cacheable\": true,\n                \"built\": true,\n                \"optional\": false,\n                \"prefetched\": false,\n                \"chunks\": [\n                  0\n                ],\n                \"assets\": [\n                ],\n                \"issuer\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n                \"issuerId\": 2,\n                \"issuerName\": \"./node_modules/lodash/lodash.js\",\n                \"issuerPath\": [\n                  {\n                    \"id\": 3,\n                    \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                    \"name\": \"./src/timeout.worker.js\"\n                  },\n                  {\n                    \"id\": 2,\n                    \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n                    \"name\": \"./node_modules/lodash/lodash.js\"\n                  }\n                ],\n                \"failed\": false,\n                \"errors\": 0,\n                \"warnings\": 0,\n                \"reasons\": [\n                  {\n                    \"moduleId\": 2,\n                    \"moduleIdentifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n                    \"module\": \"./node_modules/lodash/lodash.js\",\n                    \"moduleName\": \"./node_modules/lodash/lodash.js\",\n                    \"type\": \"cjs require\",\n                    \"userRequest\": \"global\",\n                    \"loc\": \"1:0-41\"\n                  }\n                ],\n                \"usedExports\": true,\n                \"providedExports\": null,\n                \"optimizationBailout\": [\n                  \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n                ],\n                \"depth\": 2,\n                \"source\": \"var g;\\r\\n\\r\\n// This works in non-strict mode\\r\\ng = (function() {\\r\\n\\treturn this;\\r\\n})();\\r\\n\\r\\ntry {\\r\\n\\t// This works if eval is allowed (see CSP)\\r\\n\\tg = g || Function(\\\"return this\\\")() || (1, eval)(\\\"this\\\");\\r\\n} catch (e) {\\r\\n\\t// This works if the window reference is available\\r\\n\\tif (typeof window === \\\"object\\\") g = window;\\r\\n}\\r\\n\\r\\n// g can still be undefined, but nothing to do about it...\\r\\n// We return undefined, instead of nothing here, so it's\\r\\n// easier to handle this case. if(!global) { ...}\\r\\n\\r\\nmodule.exports = g;\\r\\n\"\n              },\n              {\n                \"id\": 2,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n                \"name\": \"./node_modules/lodash/lodash.js\",\n                \"index\": 1,\n                \"index2\": 2,\n                \"size\": 542563,\n                \"cacheable\": true,\n                \"built\": true,\n                \"optional\": false,\n                \"prefetched\": false,\n                \"chunks\": [\n                  0\n                ],\n                \"assets\": [\n                ],\n                \"issuer\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                \"issuerId\": 3,\n                \"issuerName\": \"./src/timeout.worker.js\",\n                \"issuerPath\": [\n                  {\n                    \"id\": 3,\n                    \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                    \"name\": \"./src/timeout.worker.js\"\n                  }\n                ],\n                \"failed\": false,\n                \"errors\": 0,\n                \"warnings\": 0,\n                \"reasons\": [\n                  {\n                    \"moduleId\": 3,\n                    \"moduleIdentifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                    \"module\": \"./src/timeout.worker.js\",\n                    \"moduleName\": \"./src/timeout.worker.js\",\n                    \"type\": \"cjs require\",\n                    \"userRequest\": \"lodash\",\n                    \"loc\": \"1:10-27\"\n                  }\n                ],\n                \"usedExports\": true,\n                \"providedExports\": null,\n                \"optimizationBailout\": [\n                  \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n                ],\n                \"depth\": 1,\n                \"source\": \"/**\\n * @license\\n * Lodash <https://lodash.com/>\\n * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>\\n * Released under MIT license <https://lodash.com/license>\\n * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>\\n * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\\n */\\n;(function() {\\n\\n  /** Used as a safe reference for `undefined` in pre-ES5 environments. */\\n  var undefined;\\n\\n  /** Used as the semantic version number. */\\n  var VERSION = '4.17.20';\\n\\n  /** Used as the size to enable large array optimizations. */\\n  var LARGE_ARRAY_SIZE = 200;\\n\\n  /** Error message constants. */\\n  var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.',\\n      FUNC_ERROR_TEXT = 'Expected a function';\\n\\n  /** Used to stand-in for `undefined` hash values. */\\n  var HASH_UNDEFINED = '__lodash_hash_undefined__';\\n\\n  /** Used as the maximum memoize cache size. */\\n  var MAX_MEMOIZE_SIZE = 500;\\n\\n  /** Used as the internal argument placeholder. */\\n  var PLACEHOLDER = '__lodash_placeholder__';\\n\\n  /** Used to compose bitmasks for cloning. */\\n  var CLONE_DEEP_FLAG = 1,\\n      CLONE_FLAT_FLAG = 2,\\n      CLONE_SYMBOLS_FLAG = 4;\\n\\n  /** Used to compose bitmasks for value comparisons. */\\n  var COMPARE_PARTIAL_FLAG = 1,\\n      COMPARE_UNORDERED_FLAG = 2;\\n\\n  /** Used to compose bitmasks for function metadata. */\\n  var WRAP_BIND_FLAG = 1,\\n      WRAP_BIND_KEY_FLAG = 2,\\n      WRAP_CURRY_BOUND_FLAG = 4,\\n      WRAP_CURRY_FLAG = 8,\\n      WRAP_CURRY_RIGHT_FLAG = 16,\\n      WRAP_PARTIAL_FLAG = 32,\\n      WRAP_PARTIAL_RIGHT_FLAG = 64,\\n      WRAP_ARY_FLAG = 128,\\n      WRAP_REARG_FLAG = 256,\\n      WRAP_FLIP_FLAG = 512;\\n\\n  /** Used as default options for `_.truncate`. */\\n  var DEFAULT_TRUNC_LENGTH = 30,\\n      DEFAULT_TRUNC_OMISSION = '...';\\n\\n  /** Used to detect hot functions by number of calls within a span of milliseconds. */\\n  var HOT_COUNT = 800,\\n      HOT_SPAN = 16;\\n\\n  /** Used to indicate the type of lazy iteratees. */\\n  var LAZY_FILTER_FLAG = 1,\\n      LAZY_MAP_FLAG = 2,\\n      LAZY_WHILE_FLAG = 3;\\n\\n  /** Used as references for various `Number` constants. */\\n  var INFINITY = 1 / 0,\\n      MAX_SAFE_INTEGER = 9007199254740991,\\n      MAX_INTEGER = 1.7976931348623157e+308,\\n      NAN = 0 / 0;\\n\\n  /** Used as references for the maximum length and index of an array. */\\n  var MAX_ARRAY_LENGTH = 4294967295,\\n      MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1,\\n      HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1;\\n\\n  /** Used to associate wrap methods with their bit flags. */\\n  var wrapFlags = [\\n    ['ary', WRAP_ARY_FLAG],\\n    ['bind', WRAP_BIND_FLAG],\\n    ['bindKey', WRAP_BIND_KEY_FLAG],\\n    ['curry', WRAP_CURRY_FLAG],\\n    ['curryRight', WRAP_CURRY_RIGHT_FLAG],\\n    ['flip', WRAP_FLIP_FLAG],\\n    ['partial', WRAP_PARTIAL_FLAG],\\n    ['partialRight', WRAP_PARTIAL_RIGHT_FLAG],\\n    ['rearg', WRAP_REARG_FLAG]\\n  ];\\n\\n  /** `Object#toString` result references. */\\n  var argsTag = '[object Arguments]',\\n      arrayTag = '[object Array]',\\n      asyncTag = '[object AsyncFunction]',\\n      boolTag = '[object Boolean]',\\n      dateTag = '[object Date]',\\n      domExcTag = '[object DOMException]',\\n      errorTag = '[object Error]',\\n      funcTag = '[object Function]',\\n      genTag = '[object GeneratorFunction]',\\n      mapTag = '[object Map]',\\n      numberTag = '[object Number]',\\n      nullTag = '[object Null]',\\n      objectTag = '[object Object]',\\n      promiseTag = '[object Promise]',\\n      proxyTag = '[object Proxy]',\\n      regexpTag = '[object RegExp]',\\n      setTag = '[object Set]',\\n      stringTag = '[object String]',\\n      symbolTag = '[object Symbol]',\\n      undefinedTag = '[object Undefined]',\\n      weakMapTag = '[object WeakMap]',\\n      weakSetTag = '[object WeakSet]';\\n\\n  var arrayBufferTag = '[object ArrayBuffer]',\\n      dataViewTag = '[object DataView]',\\n      float32Tag = '[object Float32Array]',\\n      float64Tag = '[object Float64Array]',\\n      int8Tag = '[object Int8Array]',\\n      int16Tag = '[object Int16Array]',\\n      int32Tag = '[object Int32Array]',\\n      uint8Tag = '[object Uint8Array]',\\n      uint8ClampedTag = '[object Uint8ClampedArray]',\\n      uint16Tag = '[object Uint16Array]',\\n      uint32Tag = '[object Uint32Array]';\\n\\n  /** Used to match empty string literals in compiled template source. */\\n  var reEmptyStringLeading = /\\\\b__p \\\\+= '';/g,\\n      reEmptyStringMiddle = /\\\\b(__p \\\\+=) '' \\\\+/g,\\n      reEmptyStringTrailing = /(__e\\\\(.*?\\\\)|\\\\b__t\\\\)) \\\\+\\\\n'';/g;\\n\\n  /** Used to match HTML entities and HTML characters. */\\n  var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g,\\n      reUnescapedHtml = /[&<>\\\"']/g,\\n      reHasEscapedHtml = RegExp(reEscapedHtml.source),\\n      reHasUnescapedHtml = RegExp(reUnescapedHtml.source);\\n\\n  /** Used to match template delimiters. */\\n  var reEscape = /<%-([\\\\s\\\\S]+?)%>/g,\\n      reEvaluate = /<%([\\\\s\\\\S]+?)%>/g,\\n      reInterpolate = /<%=([\\\\s\\\\S]+?)%>/g;\\n\\n  /** Used to match property names within property paths. */\\n  var reIsDeepProp = /\\\\.|\\\\[(?:[^[\\\\]]*|([\\\"'])(?:(?!\\\\1)[^\\\\\\\\]|\\\\\\\\.)*?\\\\1)\\\\]/,\\n      reIsPlainProp = /^\\\\w*$/,\\n      rePropName = /[^.[\\\\]]+|\\\\[(?:(-?\\\\d+(?:\\\\.\\\\d+)?)|([\\\"'])((?:(?!\\\\2)[^\\\\\\\\]|\\\\\\\\.)*?)\\\\2)\\\\]|(?=(?:\\\\.|\\\\[\\\\])(?:\\\\.|\\\\[\\\\]|$))/g;\\n\\n  /**\\n   * Used to match `RegExp`\\n   * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\\n   */\\n  var reRegExpChar = /[\\\\\\\\^$.*+?()[\\\\]{}|]/g,\\n      reHasRegExpChar = RegExp(reRegExpChar.source);\\n\\n  /** Used to match leading and trailing whitespace. */\\n  var reTrim = /^\\\\s+|\\\\s+$/g,\\n      reTrimStart = /^\\\\s+/,\\n      reTrimEnd = /\\\\s+$/;\\n\\n  /** Used to match wrap detail comments. */\\n  var reWrapComment = /\\\\{(?:\\\\n\\\\/\\\\* \\\\[wrapped with .+\\\\] \\\\*\\\\/)?\\\\n?/,\\n      reWrapDetails = /\\\\{\\\\n\\\\/\\\\* \\\\[wrapped with (.+)\\\\] \\\\*/,\\n      reSplitDetails = /,? & /;\\n\\n  /** Used to match words composed of alphanumeric characters. */\\n  var reAsciiWord = /[^\\\\x00-\\\\x2f\\\\x3a-\\\\x40\\\\x5b-\\\\x60\\\\x7b-\\\\x7f]+/g;\\n\\n  /** Used to match backslashes in property paths. */\\n  var reEscapeChar = /\\\\\\\\(\\\\\\\\)?/g;\\n\\n  /**\\n   * Used to match\\n   * [ES template delimiters](http://ecma-international.org/ecma-262/7.0/#sec-template-literal-lexical-components).\\n   */\\n  var reEsTemplate = /\\\\$\\\\{([^\\\\\\\\}]*(?:\\\\\\\\.[^\\\\\\\\}]*)*)\\\\}/g;\\n\\n  /** Used to match `RegExp` flags from their coerced string values. */\\n  var reFlags = /\\\\w*$/;\\n\\n  /** Used to detect bad signed hexadecimal string values. */\\n  var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\\n\\n  /** Used to detect binary string values. */\\n  var reIsBinary = /^0b[01]+$/i;\\n\\n  /** Used to detect host constructors (Safari). */\\n  var reIsHostCtor = /^\\\\[object .+?Constructor\\\\]$/;\\n\\n  /** Used to detect octal string values. */\\n  var reIsOctal = /^0o[0-7]+$/i;\\n\\n  /** Used to detect unsigned integer values. */\\n  var reIsUint = /^(?:0|[1-9]\\\\d*)$/;\\n\\n  /** Used to match Latin Unicode letters (excluding mathematical operators). */\\n  var reLatin = /[\\\\xc0-\\\\xd6\\\\xd8-\\\\xf6\\\\xf8-\\\\xff\\\\u0100-\\\\u017f]/g;\\n\\n  /** Used to ensure capturing order of template delimiters. */\\n  var reNoMatch = /($^)/;\\n\\n  /** Used to match unescaped characters in compiled string literals. */\\n  var reUnescapedString = /['\\\\n\\\\r\\\\u2028\\\\u2029\\\\\\\\]/g;\\n\\n  /** Used to compose unicode character classes. */\\n  var rsAstralRange = '\\\\\\\\ud800-\\\\\\\\udfff',\\n      rsComboMarksRange = '\\\\\\\\u0300-\\\\\\\\u036f',\\n      reComboHalfMarksRange = '\\\\\\\\ufe20-\\\\\\\\ufe2f',\\n      rsComboSymbolsRange = '\\\\\\\\u20d0-\\\\\\\\u20ff',\\n      rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange,\\n      rsDingbatRange = '\\\\\\\\u2700-\\\\\\\\u27bf',\\n      rsLowerRange = 'a-z\\\\\\\\xdf-\\\\\\\\xf6\\\\\\\\xf8-\\\\\\\\xff',\\n      rsMathOpRange = '\\\\\\\\xac\\\\\\\\xb1\\\\\\\\xd7\\\\\\\\xf7',\\n      rsNonCharRange = '\\\\\\\\x00-\\\\\\\\x2f\\\\\\\\x3a-\\\\\\\\x40\\\\\\\\x5b-\\\\\\\\x60\\\\\\\\x7b-\\\\\\\\xbf',\\n      rsPunctuationRange = '\\\\\\\\u2000-\\\\\\\\u206f',\\n      rsSpaceRange = ' \\\\\\\\t\\\\\\\\x0b\\\\\\\\f\\\\\\\\xa0\\\\\\\\ufeff\\\\\\\\n\\\\\\\\r\\\\\\\\u2028\\\\\\\\u2029\\\\\\\\u1680\\\\\\\\u180e\\\\\\\\u2000\\\\\\\\u2001\\\\\\\\u2002\\\\\\\\u2003\\\\\\\\u2004\\\\\\\\u2005\\\\\\\\u2006\\\\\\\\u2007\\\\\\\\u2008\\\\\\\\u2009\\\\\\\\u200a\\\\\\\\u202f\\\\\\\\u205f\\\\\\\\u3000',\\n      rsUpperRange = 'A-Z\\\\\\\\xc0-\\\\\\\\xd6\\\\\\\\xd8-\\\\\\\\xde',\\n      rsVarRange = '\\\\\\\\ufe0e\\\\\\\\ufe0f',\\n      rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange;\\n\\n  /** Used to compose unicode capture groups. */\\n  var rsApos = \\\"['\\\\u2019]\\\",\\n      rsAstral = '[' + rsAstralRange + ']',\\n      rsBreak = '[' + rsBreakRange + ']',\\n      rsCombo = '[' + rsComboRange + ']',\\n      rsDigits = '\\\\\\\\d+',\\n      rsDingbat = '[' + rsDingbatRange + ']',\\n      rsLower = '[' + rsLowerRange + ']',\\n      rsMisc = '[^' + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']',\\n      rsFitz = '\\\\\\\\ud83c[\\\\\\\\udffb-\\\\\\\\udfff]',\\n      rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')',\\n      rsNonAstral = '[^' + rsAstralRange + ']',\\n      rsRegional = '(?:\\\\\\\\ud83c[\\\\\\\\udde6-\\\\\\\\uddff]){2}',\\n      rsSurrPair = '[\\\\\\\\ud800-\\\\\\\\udbff][\\\\\\\\udc00-\\\\\\\\udfff]',\\n      rsUpper = '[' + rsUpperRange + ']',\\n      rsZWJ = '\\\\\\\\u200d';\\n\\n  /** Used to compose unicode regexes. */\\n  var rsMiscLower = '(?:' + rsLower + '|' + rsMisc + ')',\\n      rsMiscUpper = '(?:' + rsUpper + '|' + rsMisc + ')',\\n      rsOptContrLower = '(?:' + rsApos + '(?:d|ll|m|re|s|t|ve))?',\\n      rsOptContrUpper = '(?:' + rsApos + '(?:D|LL|M|RE|S|T|VE))?',\\n      reOptMod = rsModifier + '?',\\n      rsOptVar = '[' + rsVarRange + ']?',\\n      rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*',\\n      rsOrdLower = '\\\\\\\\d*(?:1st|2nd|3rd|(?![123])\\\\\\\\dth)(?=\\\\\\\\b|[A-Z_])',\\n      rsOrdUpper = '\\\\\\\\d*(?:1ST|2ND|3RD|(?![123])\\\\\\\\dTH)(?=\\\\\\\\b|[a-z_])',\\n      rsSeq = rsOptVar + reOptMod + rsOptJoin,\\n      rsEmoji = '(?:' + [rsDingbat, rsRegional, rsSurrPair].join('|') + ')' + rsSeq,\\n      rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')';\\n\\n  /** Used to match apostrophes. */\\n  var reApos = RegExp(rsApos, 'g');\\n\\n  /**\\n   * Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks) and\\n   * [combining diacritical marks for symbols](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks_for_Symbols).\\n   */\\n  var reComboMark = RegExp(rsCombo, 'g');\\n\\n  /** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */\\n  var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g');\\n\\n  /** Used to match complex or compound words. */\\n  var reUnicodeWord = RegExp([\\n    rsUpper + '?' + rsLower + '+' + rsOptContrLower + '(?=' + [rsBreak, rsUpper, '$'].join('|') + ')',\\n    rsMiscUpper + '+' + rsOptContrUpper + '(?=' + [rsBreak, rsUpper + rsMiscLower, '$'].join('|') + ')',\\n    rsUpper + '?' + rsMiscLower + '+' + rsOptContrLower,\\n    rsUpper + '+' + rsOptContrUpper,\\n    rsOrdUpper,\\n    rsOrdLower,\\n    rsDigits,\\n    rsEmoji\\n  ].join('|'), 'g');\\n\\n  /** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */\\n  var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange  + rsComboRange + rsVarRange + ']');\\n\\n  /** Used to detect strings that need a more robust regexp to match words. */\\n  var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;\\n\\n  /** Used to assign default `context` object properties. */\\n  var contextProps = [\\n    'Array', 'Buffer', 'DataView', 'Date', 'Error', 'Float32Array', 'Float64Array',\\n    'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Map', 'Math', 'Object',\\n    'Promise', 'RegExp', 'Set', 'String', 'Symbol', 'TypeError', 'Uint8Array',\\n    'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap',\\n    '_', 'clearTimeout', 'isFinite', 'parseInt', 'setTimeout'\\n  ];\\n\\n  /** Used to make template sourceURLs easier to identify. */\\n  var templateCounter = -1;\\n\\n  /** Used to identify `toStringTag` values of typed arrays. */\\n  var typedArrayTags = {};\\n  typedArrayTags[float32Tag] = typedArrayTags[float64Tag] =\\n  typedArrayTags[int8Tag] = typedArrayTags[int16Tag] =\\n  typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =\\n  typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =\\n  typedArrayTags[uint32Tag] = true;\\n  typedArrayTags[argsTag] = typedArrayTags[arrayTag] =\\n  typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =\\n  typedArrayTags[dataViewTag] = typedArrayTags[dateTag] =\\n  typedArrayTags[errorTag] = typedArrayTags[funcTag] =\\n  typedArrayTags[mapTag] = typedArrayTags[numberTag] =\\n  typedArrayTags[objectTag] = typedArrayTags[regexpTag] =\\n  typedArrayTags[setTag] = typedArrayTags[stringTag] =\\n  typedArrayTags[weakMapTag] = false;\\n\\n  /** Used to identify `toStringTag` values supported by `_.clone`. */\\n  var cloneableTags = {};\\n  cloneableTags[argsTag] = cloneableTags[arrayTag] =\\n  cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] =\\n  cloneableTags[boolTag] = cloneableTags[dateTag] =\\n  cloneableTags[float32Tag] = cloneableTags[float64Tag] =\\n  cloneableTags[int8Tag] = cloneableTags[int16Tag] =\\n  cloneableTags[int32Tag] = cloneableTags[mapTag] =\\n  cloneableTags[numberTag] = cloneableTags[objectTag] =\\n  cloneableTags[regexpTag] = cloneableTags[setTag] =\\n  cloneableTags[stringTag] = cloneableTags[symbolTag] =\\n  cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] =\\n  cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;\\n  cloneableTags[errorTag] = cloneableTags[funcTag] =\\n  cloneableTags[weakMapTag] = false;\\n\\n  /** Used to map Latin Unicode letters to basic Latin letters. */\\n  var deburredLetters = {\\n    // Latin-1 Supplement block.\\n    '\\\\xc0': 'A',  '\\\\xc1': 'A', '\\\\xc2': 'A', '\\\\xc3': 'A', '\\\\xc4': 'A', '\\\\xc5': 'A',\\n    '\\\\xe0': 'a',  '\\\\xe1': 'a', '\\\\xe2': 'a', '\\\\xe3': 'a', '\\\\xe4': 'a', '\\\\xe5': 'a',\\n    '\\\\xc7': 'C',  '\\\\xe7': 'c',\\n    '\\\\xd0': 'D',  '\\\\xf0': 'd',\\n    '\\\\xc8': 'E',  '\\\\xc9': 'E', '\\\\xca': 'E', '\\\\xcb': 'E',\\n    '\\\\xe8': 'e',  '\\\\xe9': 'e', '\\\\xea': 'e', '\\\\xeb': 'e',\\n    '\\\\xcc': 'I',  '\\\\xcd': 'I', '\\\\xce': 'I', '\\\\xcf': 'I',\\n    '\\\\xec': 'i',  '\\\\xed': 'i', '\\\\xee': 'i', '\\\\xef': 'i',\\n    '\\\\xd1': 'N',  '\\\\xf1': 'n',\\n    '\\\\xd2': 'O',  '\\\\xd3': 'O', '\\\\xd4': 'O', '\\\\xd5': 'O', '\\\\xd6': 'O', '\\\\xd8': 'O',\\n    '\\\\xf2': 'o',  '\\\\xf3': 'o', '\\\\xf4': 'o', '\\\\xf5': 'o', '\\\\xf6': 'o', '\\\\xf8': 'o',\\n    '\\\\xd9': 'U',  '\\\\xda': 'U', '\\\\xdb': 'U', '\\\\xdc': 'U',\\n    '\\\\xf9': 'u',  '\\\\xfa': 'u', '\\\\xfb': 'u', '\\\\xfc': 'u',\\n    '\\\\xdd': 'Y',  '\\\\xfd': 'y', '\\\\xff': 'y',\\n    '\\\\xc6': 'Ae', '\\\\xe6': 'ae',\\n    '\\\\xde': 'Th', '\\\\xfe': 'th',\\n    '\\\\xdf': 'ss',\\n    // Latin Extended-A block.\\n    '\\\\u0100': 'A',  '\\\\u0102': 'A', '\\\\u0104': 'A',\\n    '\\\\u0101': 'a',  '\\\\u0103': 'a', '\\\\u0105': 'a',\\n    '\\\\u0106': 'C',  '\\\\u0108': 'C', '\\\\u010a': 'C', '\\\\u010c': 'C',\\n    '\\\\u0107': 'c',  '\\\\u0109': 'c', '\\\\u010b': 'c', '\\\\u010d': 'c',\\n    '\\\\u010e': 'D',  '\\\\u0110': 'D', '\\\\u010f': 'd', '\\\\u0111': 'd',\\n    '\\\\u0112': 'E',  '\\\\u0114': 'E', '\\\\u0116': 'E', '\\\\u0118': 'E', '\\\\u011a': 'E',\\n    '\\\\u0113': 'e',  '\\\\u0115': 'e', '\\\\u0117': 'e', '\\\\u0119': 'e', '\\\\u011b': 'e',\\n    '\\\\u011c': 'G',  '\\\\u011e': 'G', '\\\\u0120': 'G', '\\\\u0122': 'G',\\n    '\\\\u011d': 'g',  '\\\\u011f': 'g', '\\\\u0121': 'g', '\\\\u0123': 'g',\\n    '\\\\u0124': 'H',  '\\\\u0126': 'H', '\\\\u0125': 'h', '\\\\u0127': 'h',\\n    '\\\\u0128': 'I',  '\\\\u012a': 'I', '\\\\u012c': 'I', '\\\\u012e': 'I', '\\\\u0130': 'I',\\n    '\\\\u0129': 'i',  '\\\\u012b': 'i', '\\\\u012d': 'i', '\\\\u012f': 'i', '\\\\u0131': 'i',\\n    '\\\\u0134': 'J',  '\\\\u0135': 'j',\\n    '\\\\u0136': 'K',  '\\\\u0137': 'k', '\\\\u0138': 'k',\\n    '\\\\u0139': 'L',  '\\\\u013b': 'L', '\\\\u013d': 'L', '\\\\u013f': 'L', '\\\\u0141': 'L',\\n    '\\\\u013a': 'l',  '\\\\u013c': 'l', '\\\\u013e': 'l', '\\\\u0140': 'l', '\\\\u0142': 'l',\\n    '\\\\u0143': 'N',  '\\\\u0145': 'N', '\\\\u0147': 'N', '\\\\u014a': 'N',\\n    '\\\\u0144': 'n',  '\\\\u0146': 'n', '\\\\u0148': 'n', '\\\\u014b': 'n',\\n    '\\\\u014c': 'O',  '\\\\u014e': 'O', '\\\\u0150': 'O',\\n    '\\\\u014d': 'o',  '\\\\u014f': 'o', '\\\\u0151': 'o',\\n    '\\\\u0154': 'R',  '\\\\u0156': 'R', '\\\\u0158': 'R',\\n    '\\\\u0155': 'r',  '\\\\u0157': 'r', '\\\\u0159': 'r',\\n    '\\\\u015a': 'S',  '\\\\u015c': 'S', '\\\\u015e': 'S', '\\\\u0160': 'S',\\n    '\\\\u015b': 's',  '\\\\u015d': 's', '\\\\u015f': 's', '\\\\u0161': 's',\\n    '\\\\u0162': 'T',  '\\\\u0164': 'T', '\\\\u0166': 'T',\\n    '\\\\u0163': 't',  '\\\\u0165': 't', '\\\\u0167': 't',\\n    '\\\\u0168': 'U',  '\\\\u016a': 'U', '\\\\u016c': 'U', '\\\\u016e': 'U', '\\\\u0170': 'U', '\\\\u0172': 'U',\\n    '\\\\u0169': 'u',  '\\\\u016b': 'u', '\\\\u016d': 'u', '\\\\u016f': 'u', '\\\\u0171': 'u', '\\\\u0173': 'u',\\n    '\\\\u0174': 'W',  '\\\\u0175': 'w',\\n    '\\\\u0176': 'Y',  '\\\\u0177': 'y', '\\\\u0178': 'Y',\\n    '\\\\u0179': 'Z',  '\\\\u017b': 'Z', '\\\\u017d': 'Z',\\n    '\\\\u017a': 'z',  '\\\\u017c': 'z', '\\\\u017e': 'z',\\n    '\\\\u0132': 'IJ', '\\\\u0133': 'ij',\\n    '\\\\u0152': 'Oe', '\\\\u0153': 'oe',\\n    '\\\\u0149': \\\"'n\\\", '\\\\u017f': 's'\\n  };\\n\\n  /** Used to map characters to HTML entities. */\\n  var htmlEscapes = {\\n    '&': '&amp;',\\n    '<': '&lt;',\\n    '>': '&gt;',\\n    '\\\"': '&quot;',\\n    \\\"'\\\": '&#39;'\\n  };\\n\\n  /** Used to map HTML entities to characters. */\\n  var htmlUnescapes = {\\n    '&amp;': '&',\\n    '&lt;': '<',\\n    '&gt;': '>',\\n    '&quot;': '\\\"',\\n    '&#39;': \\\"'\\\"\\n  };\\n\\n  /** Used to escape characters for inclusion in compiled string literals. */\\n  var stringEscapes = {\\n    '\\\\\\\\': '\\\\\\\\',\\n    \\\"'\\\": \\\"'\\\",\\n    '\\\\n': 'n',\\n    '\\\\r': 'r',\\n    '\\\\u2028': 'u2028',\\n    '\\\\u2029': 'u2029'\\n  };\\n\\n  /** Built-in method references without a dependency on `root`. */\\n  var freeParseFloat = parseFloat,\\n      freeParseInt = parseInt;\\n\\n  /** Detect free variable `global` from Node.js. */\\n  var freeGlobal = typeof global == 'object' && global && global.Object === Object && global;\\n\\n  /** Detect free variable `self`. */\\n  var freeSelf = typeof self == 'object' && self && self.Object === Object && self;\\n\\n  /** Used as a reference to the global object. */\\n  var root = freeGlobal || freeSelf || Function('return this')();\\n\\n  /** Detect free variable `exports`. */\\n  var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;\\n\\n  /** Detect free variable `module`. */\\n  var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\\n\\n  /** Detect the popular CommonJS extension `module.exports`. */\\n  var moduleExports = freeModule && freeModule.exports === freeExports;\\n\\n  /** Detect free variable `process` from Node.js. */\\n  var freeProcess = moduleExports && freeGlobal.process;\\n\\n  /** Used to access faster Node.js helpers. */\\n  var nodeUtil = (function() {\\n    try {\\n      // Use `util.types` for Node.js 10+.\\n      var types = freeModule && freeModule.require && freeModule.require('util').types;\\n\\n      if (types) {\\n        return types;\\n      }\\n\\n      // Legacy `process.binding('util')` for Node.js < 10.\\n      return freeProcess && freeProcess.binding && freeProcess.binding('util');\\n    } catch (e) {}\\n  }());\\n\\n  /* Node.js helper references. */\\n  var nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer,\\n      nodeIsDate = nodeUtil && nodeUtil.isDate,\\n      nodeIsMap = nodeUtil && nodeUtil.isMap,\\n      nodeIsRegExp = nodeUtil && nodeUtil.isRegExp,\\n      nodeIsSet = nodeUtil && nodeUtil.isSet,\\n      nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;\\n\\n  /*--------------------------------------------------------------------------*/\\n\\n  /**\\n   * A faster alternative to `Function#apply`, this function invokes `func`\\n   * with the `this` binding of `thisArg` and the arguments of `args`.\\n   *\\n   * @private\\n   * @param {Function} func The function to invoke.\\n   * @param {*} thisArg The `this` binding of `func`.\\n   * @param {Array} args The arguments to invoke `func` with.\\n   * @returns {*} Returns the result of `func`.\\n   */\\n  function apply(func, thisArg, args) {\\n    switch (args.length) {\\n      case 0: return func.call(thisArg);\\n      case 1: return func.call(thisArg, args[0]);\\n      case 2: return func.call(thisArg, args[0], args[1]);\\n      case 3: return func.call(thisArg, args[0], args[1], args[2]);\\n    }\\n    return func.apply(thisArg, args);\\n  }\\n\\n  /**\\n   * A specialized version of `baseAggregator` for arrays.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} setter The function to set `accumulator` values.\\n   * @param {Function} iteratee The iteratee to transform keys.\\n   * @param {Object} accumulator The initial aggregated object.\\n   * @returns {Function} Returns `accumulator`.\\n   */\\n  function arrayAggregator(array, setter, iteratee, accumulator) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length;\\n\\n    while (++index < length) {\\n      var value = array[index];\\n      setter(accumulator, value, iteratee(value), array);\\n    }\\n    return accumulator;\\n  }\\n\\n  /**\\n   * A specialized version of `_.forEach` for arrays without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @returns {Array} Returns `array`.\\n   */\\n  function arrayEach(array, iteratee) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length;\\n\\n    while (++index < length) {\\n      if (iteratee(array[index], index, array) === false) {\\n        break;\\n      }\\n    }\\n    return array;\\n  }\\n\\n  /**\\n   * A specialized version of `_.forEachRight` for arrays without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @returns {Array} Returns `array`.\\n   */\\n  function arrayEachRight(array, iteratee) {\\n    var length = array == null ? 0 : array.length;\\n\\n    while (length--) {\\n      if (iteratee(array[length], length, array) === false) {\\n        break;\\n      }\\n    }\\n    return array;\\n  }\\n\\n  /**\\n   * A specialized version of `_.every` for arrays without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} predicate The function invoked per iteration.\\n   * @returns {boolean} Returns `true` if all elements pass the predicate check,\\n   *  else `false`.\\n   */\\n  function arrayEvery(array, predicate) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length;\\n\\n    while (++index < length) {\\n      if (!predicate(array[index], index, array)) {\\n        return false;\\n      }\\n    }\\n    return true;\\n  }\\n\\n  /**\\n   * A specialized version of `_.filter` for arrays without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} predicate The function invoked per iteration.\\n   * @returns {Array} Returns the new filtered array.\\n   */\\n  function arrayFilter(array, predicate) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length,\\n        resIndex = 0,\\n        result = [];\\n\\n    while (++index < length) {\\n      var value = array[index];\\n      if (predicate(value, index, array)) {\\n        result[resIndex++] = value;\\n      }\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * A specialized version of `_.includes` for arrays without support for\\n   * specifying an index to search from.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to inspect.\\n   * @param {*} target The value to search for.\\n   * @returns {boolean} Returns `true` if `target` is found, else `false`.\\n   */\\n  function arrayIncludes(array, value) {\\n    var length = array == null ? 0 : array.length;\\n    return !!length && baseIndexOf(array, value, 0) > -1;\\n  }\\n\\n  /**\\n   * This function is like `arrayIncludes` except that it accepts a comparator.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to inspect.\\n   * @param {*} target The value to search for.\\n   * @param {Function} comparator The comparator invoked per element.\\n   * @returns {boolean} Returns `true` if `target` is found, else `false`.\\n   */\\n  function arrayIncludesWith(array, value, comparator) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length;\\n\\n    while (++index < length) {\\n      if (comparator(value, array[index])) {\\n        return true;\\n      }\\n    }\\n    return false;\\n  }\\n\\n  /**\\n   * A specialized version of `_.map` for arrays without support for iteratee\\n   * shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @returns {Array} Returns the new mapped array.\\n   */\\n  function arrayMap(array, iteratee) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length,\\n        result = Array(length);\\n\\n    while (++index < length) {\\n      result[index] = iteratee(array[index], index, array);\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * Appends the elements of `values` to `array`.\\n   *\\n   * @private\\n   * @param {Array} array The array to modify.\\n   * @param {Array} values The values to append.\\n   * @returns {Array} Returns `array`.\\n   */\\n  function arrayPush(array, values) {\\n    var index = -1,\\n        length = values.length,\\n        offset = array.length;\\n\\n    while (++index < length) {\\n      array[offset + index] = values[index];\\n    }\\n    return array;\\n  }\\n\\n  /**\\n   * A specialized version of `_.reduce` for arrays without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @param {*} [accumulator] The initial value.\\n   * @param {boolean} [initAccum] Specify using the first element of `array` as\\n   *  the initial value.\\n   * @returns {*} Returns the accumulated value.\\n   */\\n  function arrayReduce(array, iteratee, accumulator, initAccum) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length;\\n\\n    if (initAccum && length) {\\n      accumulator = array[++index];\\n    }\\n    while (++index < length) {\\n      accumulator = iteratee(accumulator, array[index], index, array);\\n    }\\n    return accumulator;\\n  }\\n\\n  /**\\n   * A specialized version of `_.reduceRight` for arrays without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @param {*} [accumulator] The initial value.\\n   * @param {boolean} [initAccum] Specify using the last element of `array` as\\n   *  the initial value.\\n   * @returns {*} Returns the accumulated value.\\n   */\\n  function arrayReduceRight(array, iteratee, accumulator, initAccum) {\\n    var length = array == null ? 0 : array.length;\\n    if (initAccum && length) {\\n      accumulator = array[--length];\\n    }\\n    while (length--) {\\n      accumulator = iteratee(accumulator, array[length], length, array);\\n    }\\n    return accumulator;\\n  }\\n\\n  /**\\n   * A specialized version of `_.some` for arrays without support for iteratee\\n   * shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} predicate The function invoked per iteration.\\n   * @returns {boolean} Returns `true` if any element passes the predicate check,\\n   *  else `false`.\\n   */\\n  function arraySome(array, predicate) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length;\\n\\n    while (++index < length) {\\n      if (predicate(array[index], index, array)) {\\n        return true;\\n      }\\n    }\\n    return false;\\n  }\\n\\n  /**\\n   * Gets the size of an ASCII `string`.\\n   *\\n   * @private\\n   * @param {string} string The string inspect.\\n   * @returns {number} Returns the string size.\\n   */\\n  var asciiSize = baseProperty('length');\\n\\n  /**\\n   * Converts an ASCII `string` to an array.\\n   *\\n   * @private\\n   * @param {string} string The string to convert.\\n   * @returns {Array} Returns the converted array.\\n   */\\n  function asciiToArray(string) {\\n    return string.split('');\\n  }\\n\\n  /**\\n   * Splits an ASCII `string` into an array of its words.\\n   *\\n   * @private\\n   * @param {string} The string to inspect.\\n   * @returns {Array} Returns the words of `string`.\\n   */\\n  function asciiWords(string) {\\n    return string.match(reAsciiWord) || [];\\n  }\\n\\n  /**\\n   * The base implementation of methods like `_.findKey` and `_.findLastKey`,\\n   * without support for iteratee shorthands, which iterates over `collection`\\n   * using `eachFunc`.\\n   *\\n   * @private\\n   * @param {Array|Object} collection The collection to inspect.\\n   * @param {Function} predicate The function invoked per iteration.\\n   * @param {Function} eachFunc The function to iterate over `collection`.\\n   * @returns {*} Returns the found element or its key, else `undefined`.\\n   */\\n  function baseFindKey(collection, predicate, eachFunc) {\\n    var result;\\n    eachFunc(collection, function(value, key, collection) {\\n      if (predicate(value, key, collection)) {\\n        result = key;\\n        return false;\\n      }\\n    });\\n    return result;\\n  }\\n\\n  /**\\n   * The base implementation of `_.findIndex` and `_.findLastIndex` without\\n   * support for iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} array The array to inspect.\\n   * @param {Function} predicate The function invoked per iteration.\\n   * @param {number} fromIndex The index to search from.\\n   * @param {boolean} [fromRight] Specify iterating from right to left.\\n   * @returns {number} Returns the index of the matched value, else `-1`.\\n   */\\n  function baseFindIndex(array, predicate, fromIndex, fromRight) {\\n    var length = array.length,\\n        index = fromIndex + (fromRight ? 1 : -1);\\n\\n    while ((fromRight ? index-- : ++index < length)) {\\n      if (predicate(array[index], index, array)) {\\n        return index;\\n      }\\n    }\\n    return -1;\\n  }\\n\\n  /**\\n   * The base implementation of `_.indexOf` without `fromIndex` bounds checks.\\n   *\\n   * @private\\n   * @param {Array} array The array to inspect.\\n   * @param {*} value The value to search for.\\n   * @param {number} fromIndex The index to search from.\\n   * @returns {number} Returns the index of the matched value, else `-1`.\\n   */\\n  function baseIndexOf(array, value, fromIndex) {\\n    return value === value\\n      ? strictIndexOf(array, value, fromIndex)\\n      : baseFindIndex(array, baseIsNaN, fromIndex);\\n  }\\n\\n  /**\\n   * This function is like `baseIndexOf` except that it accepts a comparator.\\n   *\\n   * @private\\n   * @param {Array} array The array to inspect.\\n   * @param {*} value The value to search for.\\n   * @param {number} fromIndex The index to search from.\\n   * @param {Function} comparator The comparator invoked per element.\\n   * @returns {number} Returns the index of the matched value, else `-1`.\\n   */\\n  function baseIndexOfWith(array, value, fromIndex, comparator) {\\n    var index = fromIndex - 1,\\n        length = array.length;\\n\\n    while (++index < length) {\\n      if (comparator(array[index], value)) {\\n        return index;\\n      }\\n    }\\n    return -1;\\n  }\\n\\n  /**\\n   * The base implementation of `_.isNaN` without support for number objects.\\n   *\\n   * @private\\n   * @param {*} value The value to check.\\n   * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.\\n   */\\n  function baseIsNaN(value) {\\n    return value !== value;\\n  }\\n\\n  /**\\n   * The base implementation of `_.mean` and `_.meanBy` without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} array The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @returns {number} Returns the mean.\\n   */\\n  function baseMean(array, iteratee) {\\n    var length = array == null ? 0 : array.length;\\n    return length ? (baseSum(array, iteratee) / length) : NAN;\\n  }\\n\\n  /**\\n   * The base implementation of `_.property` without support for deep paths.\\n   *\\n   * @private\\n   * @param {string} key The key of the property to get.\\n   * @returns {Function} Returns the new accessor function.\\n   */\\n  function baseProperty(key) {\\n    return function(object) {\\n      return object == null ? undefined : object[key];\\n    };\\n  }\\n\\n  /**\\n   * The base implementation of `_.propertyOf` without support for deep paths.\\n   *\\n   * @private\\n   * @param {Object} object The object to query.\\n   * @returns {Function} Returns the new accessor function.\\n   */\\n  function basePropertyOf(object) {\\n    return function(key) {\\n      return object == null ? undefined : object[key];\\n    };\\n  }\\n\\n  /**\\n   * The base implementation of `_.reduce` and `_.reduceRight`, without support\\n   * for iteratee shorthands, which iterates over `collection` using `eachFunc`.\\n   *\\n   * @private\\n   * @param {Array|Object} collection The collection to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @param {*} accumulator The initial value.\\n   * @param {boolean} initAccum Specify using the first or last element of\\n   *  `collection` as the initial value.\\n   * @param {Function} eachFunc The function to iterate over `collection`.\\n   * @returns {*} Returns the accumulated value.\\n   */\\n  function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) {\\n    eachFunc(collection, function(value, index, collection) {\\n      accumulator = initAccum\\n        ? (initAccum = false, value)\\n        : iteratee(accumulator, value, index, collection);\\n    });\\n    return accumulator;\\n  }\\n\\n  /**\\n   * The base implementation of `_.sortBy` which uses `comparer` to define the\\n   * sort order of `array` and replaces criteria objects with their corresponding\\n   * values.\\n   *\\n   * @private\\n   * @param {Array} array The array to sort.\\n   * @param {Function} comparer The function to define sort order.\\n   * @returns {Array} Returns `array`.\\n   */\\n  function baseSortBy(array, comparer) {\\n    var length = array.length;\\n\\n    array.sort(comparer);\\n    while (length--) {\\n      array[length] = array[length].value;\\n    }\\n    return array;\\n  }\\n\\n  /**\\n   * The base implementation of `_.sum` and `_.sumBy` without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} array The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @returns {number} Returns the sum.\\n   */\\n  function baseSum(array, iteratee) {\\n    var result,\\n        index = -1,\\n        length = array.length;\\n\\n    while (++index < length) {\\n      var current = iteratee(array[index]);\\n      if (current !== undefined) {\\n        result = result === undefined ? current : (result + current);\\n      }\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * The base implementation of `_.times` without support for iteratee shorthands\\n   * or max array length checks.\\n   *\\n   * @private\\n   * @param {number} n The number of times to invoke `iteratee`.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @returns {Array} Returns the array of results.\\n   */\\n  function baseTimes(n, iteratee) {\\n    var index = -1,\\n        result = Array(n);\\n\\n    while (++index < n) {\\n      result[index] = iteratee(index);\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * The base implementation of `_.toPairs` and `_.toPairsIn` which creates an array\\n   * of key-value pairs for `object` corresponding to the property names of `props`.\\n   *\\n   * @private\\n   * @param {Object} object The object to query.\\n   * @param {Array} props The property names to get values for.\\n   * @returns {Object} Returns the key-value pairs.\\n   */\\n  function baseToPairs(object, props) {\\n    return arrayMap(props, function(key) {\\n      return [key, object[key]];\\n    });\\n  }\\n\\n  /**\\n   * The base implementation of `_.unary` without support for storing metadata.\\n   *\\n   * @private\\n   * @param {Function} func The function to cap arguments for.\\n   * @returns {Function} Returns the new capped function.\\n   */\\n  function baseUnary(func) {\\n    return function(value) {\\n      return func(value);\\n    };\\n  }\\n\\n  /**\\n   * The base implementation of `_.values` and `_.valuesIn` which creates an\\n   * array of `object` property values corresponding to the property names\\n   * of `props`.\\n   *\\n   * @private\\n   * @param {Object} object The object to query.\\n   * @param {Array} props The property names to get values for.\\n   * @returns {Object} Returns the array of property values.\\n   */\\n  function baseValues(object, props) {\\n    return arrayMap(props, function(key) {\\n      return object[key];\\n    });\\n  }\\n\\n  /**\\n   * Checks if a `cache` value for `key` exists.\\n   *\\n   * @private\\n   * @param {Object} cache The cache to query.\\n   * @param {string} key The key of the entry to check.\\n   * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\\n   */\\n  function cacheHas(cache, key) {\\n    return cache.has(key);\\n  }\\n\\n  /**\\n   * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol\\n   * that is not found in the character symbols.\\n   *\\n   * @private\\n   * @param {Array} strSymbols The string symbols to inspect.\\n   * @param {Array} chrSymbols The character symbols to find.\\n   * @returns {number} Returns the index of the first unmatched string symbol.\\n   */\\n  function charsStartIndex(strSymbols, chrSymbols) {\\n    var index = -1,\\n        length = strSymbols.length;\\n\\n    while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}\\n    return index;\\n  }\\n\\n  /**\\n   * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol\\n   * that is not found in the character symbols.\\n   *\\n   * @private\\n   * @param {Array} strSymbols The string symbols to inspect.\\n   * @param {Array} chrSymbols The character symbols to find.\\n   * @returns {number} Returns the index of the last unmatched string symbol.\\n   */\\n  function charsEndIndex(strSymbols, chrSymbols) {\\n    var index = strSymbols.length;\\n\\n    while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}\\n    return index;\\n  }\\n\\n  /**\\n   * Gets the number of `placeholder` occurrences in `array`.\\n   *\\n   * @private\\n   * @param {Array} array The array to inspect.\\n   * @param {*} placeholder The placeholder to search for.\\n   * @returns {number} Returns the placeholder count.\\n   */\\n  function countHolders(array, placeholder) {\\n    var length = array.length,\\n        result = 0;\\n\\n    while (length--) {\\n      if (array[length] === placeholder) {\\n        ++result;\\n      }\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * Used by `_.deburr` to convert Latin-1 Supplement and Latin Extended-A\\n   * letters to basic Latin letters.\\n   *\\n   * @private\\n   * @param {string} letter The matched letter to deburr.\\n   * @returns {string} Returns the deburred letter.\\n   */\\n  var deburrLetter = basePropertyOf(deburredLetters);\\n\\n  /**\\n   * Used by `_.escape` to convert characters to HTML entities.\\n   *\\n   * @private\\n   * @param {string} chr The matched character to escape.\\n   * @returns {string} Returns the escaped character.\\n   */\\n  var escapeHtmlChar = basePropertyOf(htmlEscapes);\\n\\n  /**\\n   * Used by `_.template` to escape characters for inclusion in compiled string literals.\\n   *\\n   * @private\\n   * @param {string} chr The matched character to escape.\\n   * @returns {string} Returns the escaped character.\\n   */\\n  function escapeStringChar(chr) {\\n    return '\\\\\\\\' + stringEscapes[chr];\\n  }\\n\\n  /**\\n   * Gets the value at `key` of `object`.\\n   *\\n   * @private\\n   * @param {Object} [object] The object to query.\\n   * @param {string} key The key of the property to get.\\n   * @returns {*} Returns the property value.\\n   */\\n  function getValue(object, key) {\\n    return object == null ? undefined : object[key];\\n  }\\n\\n  /**\\n   * Checks if `string` contains Unicode symbols.\\n   *\\n   * @private\\n   * @param {string} string The string to inspect.\\n   * @returns {boolean} Returns `true` if a symbol is found, else `false`.\\n   */\\n  function hasUnicode(string) {\\n    return reHasUnicode.test(string);\\n  }\\n\\n  /**\\n   * Checks if `string` contains a word composed of Unicode symbols.\\n   *\\n   * @private\\n   * @param {string} string The string to inspect.\\n   * @returns {boolean} Returns `true` if a word is found, else `false`.\\n   */\\n  function hasUnicodeWord(string) {\\n    return reHasUnicodeWord.test(string);\\n  }\\n\\n  /**\\n   * Converts `iterator` to an array.\\n   *\\n   * @private\\n   * @param {Object} iterator The iterator to convert.\\n   * @returns {Array} Returns the converted array.\\n   */\\n  function iteratorToArray(iterator) {\\n    var data,\\n        result = [];\\n\\n    while (!(data = iterator.next()).done) {\\n      result.push(data.value);\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * Converts `map` to its key-value pairs.\\n   *\\n   * @private\\n   * @param {Object} map The map to convert.\\n   * @returns {Array} Returns the key-value pairs.\\n   */\\n  function mapToArray(map) {\\n    var index = -1,\\n        result = Array(map.size);\\n\\n    map.forEach(function(value, key) {\\n      result[++index] = [key, value];\\n    });\\n    return result;\\n  }\\n\\n  /**\\n   * Creates a unary function that invokes `func` with its argument transformed.\\n   *\\n   * @private\\n   * @param {Function} func The function to wrap.\\n   * @param {Function} transform The argument transform.\\n   * @returns {Function} Returns the new function.\\n   */\\n  function overArg(func, transform) {\\n    return function(arg) {\\n      return func(transform(arg));\\n    };\\n  }\\n\\n  /**\\n   * Replaces all `placeholder` elements in `array` with an internal placeholder\\n   * and returns an array of their indexes.\\n   *\\n   * @private\\n   * @param {Array} array The array to modify.\\n   * @param {*} placeholder The placeholder to replace.\\n   * @returns {Array} Returns the new array of placeholder indexes.\\n   */\\n  function replaceHolders(array, placeholder) {\\n    var index = -1,\\n        length = array.length,\\n        resIndex = 0,\\n        result = [];\\n\\n    while (++index < length) {\\n      var value = array[index];\\n      if (value === placeholder || value === PLACEHOLDER) {\\n        array[index] = PLACEHOLDER;\\n        result[resIndex++] = index;\\n      }\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * Converts `set` to an array of its values.\\n   *\\n   * @private\\n   * @param {Object} set The set to convert.\\n   * @returns {Array} Returns the values.\\n   */\\n  function setToArray(set) {\\n    var index = -1,\\n        result = Array(set.size);\\n\\n    set.forEach(function(value) {\\n      result[++index] = value;\\n    });\\n    return result;\\n  }\\n\\n  /**\\n   * Converts `set` to its value-value pairs.\\n   *\\n   * @private\\n   * @param {Object} set The set to convert.\\n   * @returns {Array} Returns the value-value pairs.\\n   */\\n  function setToPairs(set) {\\n    var index = -1,\\n        result = Array(set.size);\\n\\n    set.forEach(function(value) {\\n      result[++index] = [value, value];\\n    });\\n    return result;\\n  }\\n\\n  /**\\n   * A specialized version of `_.indexOf` which performs strict equality\\n   * comparisons of values, i.e. `===`.\\n   *\\n   * @private\\n   * @param {Array} array The array to inspect.\\n   * @param {*} value The value to search for.\\n   * @param {number} fromIndex The index to search from.\\n   * @returns {number} Returns the index of the matched value, else `-1`.\\n   */\\n  function strictIndexOf(array, value, fromIndex) {\\n    var index = fromIndex - 1,\\n        length = array.length;\\n\\n    while (++index < length) {\\n      if (array[index] === value) {\\n        return index;\\n      }\\n    }\\n    return -1;\\n  }\\n\\n  /**\\n   * A specialized version of `_.lastIndexOf` which performs strict equality\\n   * comparisons of values, i.e. `===`.\\n   *\\n   * @private\\n   * @param {Array} array The array to inspect.\\n   * @param {*} value The value to search for.\\n   * @param {number} fromIndex The index to search from.\\n   * @returns {number} Returns the index of the matched value, else `-1`.\\n   */\\n  function strictLastIndexOf(array, value, fromIndex) {\\n    var index = fromIndex + 1;\\n    while (index--) {\\n      if (array[index] === value) {\\n        return index;\\n      }\\n    }\\n    return index;\\n  }\\n\\n  /**\\n   * Gets the number of symbols in `string`.\\n   *\\n   * @private\\n   * @param {string} string The string to inspect.\\n   * @returns {number} Returns the string size.\\n   */\\n  function stringSize(string) {\\n    return hasUnicode(string)\\n      ? unicodeSize(string)\\n      : asciiSize(string);\\n  }\\n\\n  /**\\n   * Converts `string` to an array.\\n   *\\n   * @private\\n   * @param {string} string The string to convert.\\n   * @returns {Array} Returns the converted array.\\n   */\\n  function stringToArray(string) {\\n    return hasUnicode(string)\\n      ? unicodeToArray(string)\\n      : asciiToArray(string);\\n  }\\n\\n  /**\\n   * Used by `_.unescape` to convert HTML entities to characters.\\n   *\\n   * @private\\n   * @param {string} chr The matched character to unescape.\\n   * @returns {string} Returns the unescaped character.\\n   */\\n  var unescapeHtmlChar = basePropertyOf(htmlUnescapes);\\n\\n  /**\\n   * Gets the size of a Unicode `string`.\\n   *\\n   * @private\\n   * @param {string} string The string inspect.\\n   * @returns {number} Returns the string size.\\n   */\\n  function unicodeSize(string) {\\n    var result = reUnicode.lastIndex = 0;\\n    while (reUnicode.test(string)) {\\n      ++result;\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * Converts a Unicode `string` to an array.\\n   *\\n   * @private\\n   * @param {string} string The string to convert.\\n   * @returns {Array} Returns the converted array.\\n   */\\n  function unicodeToArray(string) {\\n    return string.match(reUnicode) || [];\\n  }\\n\\n  /**\\n   * Splits a Unicode `string` into an array of its words.\\n   *\\n   * @private\\n   * @param {string} The string to inspect.\\n   * @returns {Array} Returns the words of `string`.\\n   */\\n  function unicodeWords(string) {\\n    return string.match(reUnicodeWord) || [];\\n  }\\n\\n  /*--------------------------------------------------------------------------*/\\n\\n  /**\\n   * Create a new pristine `lodash` function using the `context` object.\\n   *\\n   * @static\\n   * @memberOf _\\n   * @since 1.1.0\\n   * @category Util\\n   * @param {Object} [context=root] The context object.\\n   * @returns {Function} Returns a new `lodash` function.\\n   * @example\\n   *\\n   * _.mixin({ 'foo': _.constant('foo') });\\n   *\\n   * var lodash = _.runInContext();\\n   * lodash.mixin({ 'bar': lodash.constant('bar') });\\n   *\\n   * _.isFunction(_.foo);\\n   * // => true\\n   * _.isFunction(_.bar);\\n   * // => false\\n   *\\n   * lodash.isFunction(lodash.foo);\\n   * // => false\\n   * lodash.isFunction(lodash.bar);\\n   * // => true\\n   *\\n   * // Create a suped-up `defer` in Node.js.\\n   * var defer = _.runInContext({ 'setTimeout': setImmediate }).defer;\\n   */\\n  var runInContext = (function runInContext(context) {\\n    context = context == null ? root : _.defaults(root.Object(), context, _.pick(root, contextProps));\\n\\n    /** Built-in constructor references. */\\n    var Array = context.Array,\\n        Date = context.Date,\\n        Error = context.Error,\\n        Function = context.Function,\\n        Math = context.Math,\\n        Object = context.Object,\\n        RegExp = context.RegExp,\\n        String = context.String,\\n        TypeError = context.TypeError;\\n\\n    /** Used for built-in method references. */\\n    var arrayProto = Array.prototype,\\n        funcProto = Function.prototype,\\n        objectProto = Object.prototype;\\n\\n    /** Used to detect overreaching core-js shims. */\\n    var coreJsData = context['__core-js_shared__'];\\n\\n    /** Used to resolve the decompiled source of functions. */\\n    var funcToString = funcProto.toString;\\n\\n    /** Used to check objects for own properties. */\\n    var hasOwnProperty = objectProto.hasOwnProperty;\\n\\n    /** Used to generate unique IDs. */\\n    var idCounter = 0;\\n\\n    /** Used to detect methods masquerading as native. */\\n    var maskSrcKey = (function() {\\n      var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\\n      return uid ? ('Symbol(src)_1.' + uid) : '';\\n    }());\\n\\n    /**\\n     * Used to resolve the\\n     * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\\n     * of values.\\n     */\\n    var nativeObjectToString = objectProto.toString;\\n\\n    /** Used to infer the `Object` constructor. */\\n    var objectCtorString = funcToString.call(Object);\\n\\n    /** Used to restore the original `_` reference in `_.noConflict`. */\\n    var oldDash = root._;\\n\\n    /** Used to detect if a method is native. */\\n    var reIsNative = RegExp('^' +\\n      funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\\\\\$&')\\n      .replace(/hasOwnProperty|(function).*?(?=\\\\\\\\\\\\()| for .+?(?=\\\\\\\\\\\\])/g, '$1.*?') + '$'\\n    );\\n\\n    /** Built-in value references. */\\n    var Buffer = moduleExports ? context.Buffer : undefined,\\n        Symbol = context.Symbol,\\n        Uint8Array = context.Uint8Array,\\n        allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined,\\n        getPrototype = overArg(Object.getPrototypeOf, Object),\\n        objectCreate = Object.create,\\n        propertyIsEnumerable = objectProto.propertyIsEnumerable,\\n        splice = arrayProto.splice,\\n        spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined,\\n        symIterator = Symbol ? Symbol.iterator : undefined,\\n        symToStringTag = Symbol ? Symbol.toStringTag : undefined;\\n\\n    var defineProperty = (function() {\\n      try {\\n        var func = getNative(Object, 'defineProperty');\\n        func({}, '', {});\\n        return func;\\n      } catch (e) {}\\n    }());\\n\\n    /** Mocked built-ins. */\\n    var ctxClearTimeout = context.clearTimeout !== root.clearTimeout && context.clearTimeout,\\n        ctxNow = Date && Date.now !== root.Date.now && Date.now,\\n        ctxSetTimeout = context.setTimeout !== root.setTimeout && context.setTimeout;\\n\\n    /* Built-in method references for those with the same name as other `lodash` methods. */\\n    var nativeCeil = Math.ceil,\\n        nativeFloor = Math.floor,\\n        nativeGetSymbols = Object.getOwnPropertySymbols,\\n        nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined,\\n        nativeIsFinite = context.isFinite,\\n        nativeJoin = arrayProto.join,\\n        nativeKeys = overArg(Object.keys, Object),\\n        nativeMax = Math.max,\\n        nativeMin = Math.min,\\n        nativeNow = Date.now,\\n        nativeParseInt = context.parseInt,\\n        nativeRandom = Math.random,\\n        nativeReverse = arrayProto.reverse;\\n\\n    /* Built-in method references that are verified to be native. */\\n    var DataView = getNative(context, 'DataView'),\\n        Map = getNative(context, 'Map'),\\n        Promise = getNative(context, 'Promise'),\\n        Set = getNative(context, 'Set'),\\n        WeakMap = getNative(context, 'WeakMap'),\\n        nativeCreate = getNative(Object, 'create');\\n\\n    /** Used to store function metadata. */\\n    var metaMap = WeakMap && new WeakMap;\\n\\n    /** Used to lookup unminified function names. */\\n    var realNames = {};\\n\\n    /** Used to detect maps, sets, and weakmaps. */\\n    var dataViewCtorString = toSource(DataView),\\n        mapCtorString = toSource(Map),\\n        promiseCtorString = toSource(Promise),\\n        setCtorString = toSource(Set),\\n        weakMapCtorString = toSource(WeakMap);\\n\\n    /** Used to convert symbols to primitives and strings. */\\n    var symbolProto = Symbol ? Symbol.prototype : undefined,\\n        symbolValueOf = symbolProto ? symbolProto.valueOf : undefined,\\n        symbolToString = symbolProto ? symbolProto.toString : undefined;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates a `lodash` object which wraps `value` to enable implicit method\\n     * chain sequences. Methods that operate on and return arrays, collections,\\n     * and functions can be chained together. Methods that retrieve a single value\\n     * or may return a primitive value will automatically end the chain sequence\\n     * and return the unwrapped value. Otherwise, the value must be unwrapped\\n     * with `_#value`.\\n     *\\n     * Explicit chain sequences, which must be unwrapped with `_#value`, may be\\n     * enabled using `_.chain`.\\n     *\\n     * The execution of chained methods is lazy, that is, it's deferred until\\n     * `_#value` is implicitly or explicitly called.\\n     *\\n     * Lazy evaluation allows several methods to support shortcut fusion.\\n     * Shortcut fusion is an optimization to merge iteratee calls; this avoids\\n     * the creation of intermediate arrays and can greatly reduce the number of\\n     * iteratee executions. Sections of a chain sequence qualify for shortcut\\n     * fusion if the section is applied to an array and iteratees accept only\\n     * one argument. The heuristic for whether a section qualifies for shortcut\\n     * fusion is subject to change.\\n     *\\n     * Chaining is supported in custom builds as long as the `_#value` method is\\n     * directly or indirectly included in the build.\\n     *\\n     * In addition to lodash methods, wrappers have `Array` and `String` methods.\\n     *\\n     * The wrapper `Array` methods are:\\n     * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift`\\n     *\\n     * The wrapper `String` methods are:\\n     * `replace` and `split`\\n     *\\n     * The wrapper methods that support shortcut fusion are:\\n     * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`,\\n     * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`,\\n     * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray`\\n     *\\n     * The chainable wrapper methods are:\\n     * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`,\\n     * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`,\\n     * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`,\\n     * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`,\\n     * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`,\\n     * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`,\\n     * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`,\\n     * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`,\\n     * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`,\\n     * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`,\\n     * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`,\\n     * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`,\\n     * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`,\\n     * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`,\\n     * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`,\\n     * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`,\\n     * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`,\\n     * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`,\\n     * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`,\\n     * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`,\\n     * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`,\\n     * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`,\\n     * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`,\\n     * `zipObject`, `zipObjectDeep`, and `zipWith`\\n     *\\n     * The wrapper methods that are **not** chainable by default are:\\n     * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`,\\n     * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`,\\n     * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`,\\n     * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`,\\n     * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`,\\n     * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`,\\n     * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`,\\n     * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`,\\n     * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`,\\n     * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`,\\n     * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`,\\n     * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`,\\n     * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`,\\n     * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`,\\n     * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`,\\n     * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`,\\n     * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`,\\n     * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`,\\n     * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`,\\n     * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`,\\n     * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`,\\n     * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`,\\n     * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`,\\n     * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`,\\n     * `upperFirst`, `value`, and `words`\\n     *\\n     * @name _\\n     * @constructor\\n     * @category Seq\\n     * @param {*} value The value to wrap in a `lodash` instance.\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * function square(n) {\\n     *   return n * n;\\n     * }\\n     *\\n     * var wrapped = _([1, 2, 3]);\\n     *\\n     * // Returns an unwrapped value.\\n     * wrapped.reduce(_.add);\\n     * // => 6\\n     *\\n     * // Returns a wrapped value.\\n     * var squares = wrapped.map(square);\\n     *\\n     * _.isArray(squares);\\n     * // => false\\n     *\\n     * _.isArray(squares.value());\\n     * // => true\\n     */\\n    function lodash(value) {\\n      if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) {\\n        if (value instanceof LodashWrapper) {\\n          return value;\\n        }\\n        if (hasOwnProperty.call(value, '__wrapped__')) {\\n          return wrapperClone(value);\\n        }\\n      }\\n      return new LodashWrapper(value);\\n    }\\n\\n    /**\\n     * The base implementation of `_.create` without support for assigning\\n     * properties to the created object.\\n     *\\n     * @private\\n     * @param {Object} proto The object to inherit from.\\n     * @returns {Object} Returns the new object.\\n     */\\n    var baseCreate = (function() {\\n      function object() {}\\n      return function(proto) {\\n        if (!isObject(proto)) {\\n          return {};\\n        }\\n        if (objectCreate) {\\n          return objectCreate(proto);\\n        }\\n        object.prototype = proto;\\n        var result = new object;\\n        object.prototype = undefined;\\n        return result;\\n      };\\n    }());\\n\\n    /**\\n     * The function whose prototype chain sequence wrappers inherit from.\\n     *\\n     * @private\\n     */\\n    function baseLodash() {\\n      // No operation performed.\\n    }\\n\\n    /**\\n     * The base constructor for creating `lodash` wrapper objects.\\n     *\\n     * @private\\n     * @param {*} value The value to wrap.\\n     * @param {boolean} [chainAll] Enable explicit method chain sequences.\\n     */\\n    function LodashWrapper(value, chainAll) {\\n      this.__wrapped__ = value;\\n      this.__actions__ = [];\\n      this.__chain__ = !!chainAll;\\n      this.__index__ = 0;\\n      this.__values__ = undefined;\\n    }\\n\\n    /**\\n     * By default, the template delimiters used by lodash are like those in\\n     * embedded Ruby (ERB) as well as ES2015 template strings. Change the\\n     * following template settings to use alternative delimiters.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @type {Object}\\n     */\\n    lodash.templateSettings = {\\n\\n      /**\\n       * Used to detect `data` property values to be HTML-escaped.\\n       *\\n       * @memberOf _.templateSettings\\n       * @type {RegExp}\\n       */\\n      'escape': reEscape,\\n\\n      /**\\n       * Used to detect code to be evaluated.\\n       *\\n       * @memberOf _.templateSettings\\n       * @type {RegExp}\\n       */\\n      'evaluate': reEvaluate,\\n\\n      /**\\n       * Used to detect `data` property values to inject.\\n       *\\n       * @memberOf _.templateSettings\\n       * @type {RegExp}\\n       */\\n      'interpolate': reInterpolate,\\n\\n      /**\\n       * Used to reference the data object in the template text.\\n       *\\n       * @memberOf _.templateSettings\\n       * @type {string}\\n       */\\n      'variable': '',\\n\\n      /**\\n       * Used to import variables into the compiled template.\\n       *\\n       * @memberOf _.templateSettings\\n       * @type {Object}\\n       */\\n      'imports': {\\n\\n        /**\\n         * A reference to the `lodash` function.\\n         *\\n         * @memberOf _.templateSettings.imports\\n         * @type {Function}\\n         */\\n        '_': lodash\\n      }\\n    };\\n\\n    // Ensure wrappers are instances of `baseLodash`.\\n    lodash.prototype = baseLodash.prototype;\\n    lodash.prototype.constructor = lodash;\\n\\n    LodashWrapper.prototype = baseCreate(baseLodash.prototype);\\n    LodashWrapper.prototype.constructor = LodashWrapper;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation.\\n     *\\n     * @private\\n     * @constructor\\n     * @param {*} value The value to wrap.\\n     */\\n    function LazyWrapper(value) {\\n      this.__wrapped__ = value;\\n      this.__actions__ = [];\\n      this.__dir__ = 1;\\n      this.__filtered__ = false;\\n      this.__iteratees__ = [];\\n      this.__takeCount__ = MAX_ARRAY_LENGTH;\\n      this.__views__ = [];\\n    }\\n\\n    /**\\n     * Creates a clone of the lazy wrapper object.\\n     *\\n     * @private\\n     * @name clone\\n     * @memberOf LazyWrapper\\n     * @returns {Object} Returns the cloned `LazyWrapper` object.\\n     */\\n    function lazyClone() {\\n      var result = new LazyWrapper(this.__wrapped__);\\n      result.__actions__ = copyArray(this.__actions__);\\n      result.__dir__ = this.__dir__;\\n      result.__filtered__ = this.__filtered__;\\n      result.__iteratees__ = copyArray(this.__iteratees__);\\n      result.__takeCount__ = this.__takeCount__;\\n      result.__views__ = copyArray(this.__views__);\\n      return result;\\n    }\\n\\n    /**\\n     * Reverses the direction of lazy iteration.\\n     *\\n     * @private\\n     * @name reverse\\n     * @memberOf LazyWrapper\\n     * @returns {Object} Returns the new reversed `LazyWrapper` object.\\n     */\\n    function lazyReverse() {\\n      if (this.__filtered__) {\\n        var result = new LazyWrapper(this);\\n        result.__dir__ = -1;\\n        result.__filtered__ = true;\\n      } else {\\n        result = this.clone();\\n        result.__dir__ *= -1;\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Extracts the unwrapped value from its lazy wrapper.\\n     *\\n     * @private\\n     * @name value\\n     * @memberOf LazyWrapper\\n     * @returns {*} Returns the unwrapped value.\\n     */\\n    function lazyValue() {\\n      var array = this.__wrapped__.value(),\\n          dir = this.__dir__,\\n          isArr = isArray(array),\\n          isRight = dir < 0,\\n          arrLength = isArr ? array.length : 0,\\n          view = getView(0, arrLength, this.__views__),\\n          start = view.start,\\n          end = view.end,\\n          length = end - start,\\n          index = isRight ? end : (start - 1),\\n          iteratees = this.__iteratees__,\\n          iterLength = iteratees.length,\\n          resIndex = 0,\\n          takeCount = nativeMin(length, this.__takeCount__);\\n\\n      if (!isArr || (!isRight && arrLength == length && takeCount == length)) {\\n        return baseWrapperValue(array, this.__actions__);\\n      }\\n      var result = [];\\n\\n      outer:\\n      while (length-- && resIndex < takeCount) {\\n        index += dir;\\n\\n        var iterIndex = -1,\\n            value = array[index];\\n\\n        while (++iterIndex < iterLength) {\\n          var data = iteratees[iterIndex],\\n              iteratee = data.iteratee,\\n              type = data.type,\\n              computed = iteratee(value);\\n\\n          if (type == LAZY_MAP_FLAG) {\\n            value = computed;\\n          } else if (!computed) {\\n            if (type == LAZY_FILTER_FLAG) {\\n              continue outer;\\n            } else {\\n              break outer;\\n            }\\n          }\\n        }\\n        result[resIndex++] = value;\\n      }\\n      return result;\\n    }\\n\\n    // Ensure `LazyWrapper` is an instance of `baseLodash`.\\n    LazyWrapper.prototype = baseCreate(baseLodash.prototype);\\n    LazyWrapper.prototype.constructor = LazyWrapper;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates a hash object.\\n     *\\n     * @private\\n     * @constructor\\n     * @param {Array} [entries] The key-value pairs to cache.\\n     */\\n    function Hash(entries) {\\n      var index = -1,\\n          length = entries == null ? 0 : entries.length;\\n\\n      this.clear();\\n      while (++index < length) {\\n        var entry = entries[index];\\n        this.set(entry[0], entry[1]);\\n      }\\n    }\\n\\n    /**\\n     * Removes all key-value entries from the hash.\\n     *\\n     * @private\\n     * @name clear\\n     * @memberOf Hash\\n     */\\n    function hashClear() {\\n      this.__data__ = nativeCreate ? nativeCreate(null) : {};\\n      this.size = 0;\\n    }\\n\\n    /**\\n     * Removes `key` and its value from the hash.\\n     *\\n     * @private\\n     * @name delete\\n     * @memberOf Hash\\n     * @param {Object} hash The hash to modify.\\n     * @param {string} key The key of the value to remove.\\n     * @returns {boolean} Returns `true` if the entry was removed, else `false`.\\n     */\\n    function hashDelete(key) {\\n      var result = this.has(key) && delete this.__data__[key];\\n      this.size -= result ? 1 : 0;\\n      return result;\\n    }\\n\\n    /**\\n     * Gets the hash value for `key`.\\n     *\\n     * @private\\n     * @name get\\n     * @memberOf Hash\\n     * @param {string} key The key of the value to get.\\n     * @returns {*} Returns the entry value.\\n     */\\n    function hashGet(key) {\\n      var data = this.__data__;\\n      if (nativeCreate) {\\n        var result = data[key];\\n        return result === HASH_UNDEFINED ? undefined : result;\\n      }\\n      return hasOwnProperty.call(data, key) ? data[key] : undefined;\\n    }\\n\\n    /**\\n     * Checks if a hash value for `key` exists.\\n     *\\n     * @private\\n     * @name has\\n     * @memberOf Hash\\n     * @param {string} key The key of the entry to check.\\n     * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\\n     */\\n    function hashHas(key) {\\n      var data = this.__data__;\\n      return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key);\\n    }\\n\\n    /**\\n     * Sets the hash `key` to `value`.\\n     *\\n     * @private\\n     * @name set\\n     * @memberOf Hash\\n     * @param {string} key The key of the value to set.\\n     * @param {*} value The value to set.\\n     * @returns {Object} Returns the hash instance.\\n     */\\n    function hashSet(key, value) {\\n      var data = this.__data__;\\n      this.size += this.has(key) ? 0 : 1;\\n      data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;\\n      return this;\\n    }\\n\\n    // Add methods to `Hash`.\\n    Hash.prototype.clear = hashClear;\\n    Hash.prototype['delete'] = hashDelete;\\n    Hash.prototype.get = hashGet;\\n    Hash.prototype.has = hashHas;\\n    Hash.prototype.set = hashSet;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates an list cache object.\\n     *\\n     * @private\\n     * @constructor\\n     * @param {Array} [entries] The key-value pairs to cache.\\n     */\\n    function ListCache(entries) {\\n      var index = -1,\\n          length = entries == null ? 0 : entries.length;\\n\\n      this.clear();\\n      while (++index < length) {\\n        var entry = entries[index];\\n        this.set(entry[0], entry[1]);\\n      }\\n    }\\n\\n    /**\\n     * Removes all key-value entries from the list cache.\\n     *\\n     * @private\\n     * @name clear\\n     * @memberOf ListCache\\n     */\\n    function listCacheClear() {\\n      this.__data__ = [];\\n      this.size = 0;\\n    }\\n\\n    /**\\n     * Removes `key` and its value from the list cache.\\n     *\\n     * @private\\n     * @name delete\\n     * @memberOf ListCache\\n     * @param {string} key The key of the value to remove.\\n     * @returns {boolean} Returns `true` if the entry was removed, else `false`.\\n     */\\n    function listCacheDelete(key) {\\n      var data = this.__data__,\\n          index = assocIndexOf(data, key);\\n\\n      if (index < 0) {\\n        return false;\\n      }\\n      var lastIndex = data.length - 1;\\n      if (index == lastIndex) {\\n        data.pop();\\n      } else {\\n        splice.call(data, index, 1);\\n      }\\n      --this.size;\\n      return true;\\n    }\\n\\n    /**\\n     * Gets the list cache value for `key`.\\n     *\\n     * @private\\n     * @name get\\n     * @memberOf ListCache\\n     * @param {string} key The key of the value to get.\\n     * @returns {*} Returns the entry value.\\n     */\\n    function listCacheGet(key) {\\n      var data = this.__data__,\\n          index = assocIndexOf(data, key);\\n\\n      return index < 0 ? undefined : data[index][1];\\n    }\\n\\n    /**\\n     * Checks if a list cache value for `key` exists.\\n     *\\n     * @private\\n     * @name has\\n     * @memberOf ListCache\\n     * @param {string} key The key of the entry to check.\\n     * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\\n     */\\n    function listCacheHas(key) {\\n      return assocIndexOf(this.__data__, key) > -1;\\n    }\\n\\n    /**\\n     * Sets the list cache `key` to `value`.\\n     *\\n     * @private\\n     * @name set\\n     * @memberOf ListCache\\n     * @param {string} key The key of the value to set.\\n     * @param {*} value The value to set.\\n     * @returns {Object} Returns the list cache instance.\\n     */\\n    function listCacheSet(key, value) {\\n      var data = this.__data__,\\n          index = assocIndexOf(data, key);\\n\\n      if (index < 0) {\\n        ++this.size;\\n        data.push([key, value]);\\n      } else {\\n        data[index][1] = value;\\n      }\\n      return this;\\n    }\\n\\n    // Add methods to `ListCache`.\\n    ListCache.prototype.clear = listCacheClear;\\n    ListCache.prototype['delete'] = listCacheDelete;\\n    ListCache.prototype.get = listCacheGet;\\n    ListCache.prototype.has = listCacheHas;\\n    ListCache.prototype.set = listCacheSet;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates a map cache object to store key-value pairs.\\n     *\\n     * @private\\n     * @constructor\\n     * @param {Array} [entries] The key-value pairs to cache.\\n     */\\n    function MapCache(entries) {\\n      var index = -1,\\n          length = entries == null ? 0 : entries.length;\\n\\n      this.clear();\\n      while (++index < length) {\\n        var entry = entries[index];\\n        this.set(entry[0], entry[1]);\\n      }\\n    }\\n\\n    /**\\n     * Removes all key-value entries from the map.\\n     *\\n     * @private\\n     * @name clear\\n     * @memberOf MapCache\\n     */\\n    function mapCacheClear() {\\n      this.size = 0;\\n      this.__data__ = {\\n        'hash': new Hash,\\n        'map': new (Map || ListCache),\\n        'string': new Hash\\n      };\\n    }\\n\\n    /**\\n     * Removes `key` and its value from the map.\\n     *\\n     * @private\\n     * @name delete\\n     * @memberOf MapCache\\n     * @param {string} key The key of the value to remove.\\n     * @returns {boolean} Returns `true` if the entry was removed, else `false`.\\n     */\\n    function mapCacheDelete(key) {\\n      var result = getMapData(this, key)['delete'](key);\\n      this.size -= result ? 1 : 0;\\n      return result;\\n    }\\n\\n    /**\\n     * Gets the map value for `key`.\\n     *\\n     * @private\\n     * @name get\\n     * @memberOf MapCache\\n     * @param {string} key The key of the value to get.\\n     * @returns {*} Returns the entry value.\\n     */\\n    function mapCacheGet(key) {\\n      return getMapData(this, key).get(key);\\n    }\\n\\n    /**\\n     * Checks if a map value for `key` exists.\\n     *\\n     * @private\\n     * @name has\\n     * @memberOf MapCache\\n     * @param {string} key The key of the entry to check.\\n     * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\\n     */\\n    function mapCacheHas(key) {\\n      return getMapData(this, key).has(key);\\n    }\\n\\n    /**\\n     * Sets the map `key` to `value`.\\n     *\\n     * @private\\n     * @name set\\n     * @memberOf MapCache\\n     * @param {string} key The key of the value to set.\\n     * @param {*} value The value to set.\\n     * @returns {Object} Returns the map cache instance.\\n     */\\n    function mapCacheSet(key, value) {\\n      var data = getMapData(this, key),\\n          size = data.size;\\n\\n      data.set(key, value);\\n      this.size += data.size == size ? 0 : 1;\\n      return this;\\n    }\\n\\n    // Add methods to `MapCache`.\\n    MapCache.prototype.clear = mapCacheClear;\\n    MapCache.prototype['delete'] = mapCacheDelete;\\n    MapCache.prototype.get = mapCacheGet;\\n    MapCache.prototype.has = mapCacheHas;\\n    MapCache.prototype.set = mapCacheSet;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     *\\n     * Creates an array cache object to store unique values.\\n     *\\n     * @private\\n     * @constructor\\n     * @param {Array} [values] The values to cache.\\n     */\\n    function SetCache(values) {\\n      var index = -1,\\n          length = values == null ? 0 : values.length;\\n\\n      this.__data__ = new MapCache;\\n      while (++index < length) {\\n        this.add(values[index]);\\n      }\\n    }\\n\\n    /**\\n     * Adds `value` to the array cache.\\n     *\\n     * @private\\n     * @name add\\n     * @memberOf SetCache\\n     * @alias push\\n     * @param {*} value The value to cache.\\n     * @returns {Object} Returns the cache instance.\\n     */\\n    function setCacheAdd(value) {\\n      this.__data__.set(value, HASH_UNDEFINED);\\n      return this;\\n    }\\n\\n    /**\\n     * Checks if `value` is in the array cache.\\n     *\\n     * @private\\n     * @name has\\n     * @memberOf SetCache\\n     * @param {*} value The value to search for.\\n     * @returns {number} Returns `true` if `value` is found, else `false`.\\n     */\\n    function setCacheHas(value) {\\n      return this.__data__.has(value);\\n    }\\n\\n    // Add methods to `SetCache`.\\n    SetCache.prototype.add = SetCache.prototype.push = setCacheAdd;\\n    SetCache.prototype.has = setCacheHas;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates a stack cache object to store key-value pairs.\\n     *\\n     * @private\\n     * @constructor\\n     * @param {Array} [entries] The key-value pairs to cache.\\n     */\\n    function Stack(entries) {\\n      var data = this.__data__ = new ListCache(entries);\\n      this.size = data.size;\\n    }\\n\\n    /**\\n     * Removes all key-value entries from the stack.\\n     *\\n     * @private\\n     * @name clear\\n     * @memberOf Stack\\n     */\\n    function stackClear() {\\n      this.__data__ = new ListCache;\\n      this.size = 0;\\n    }\\n\\n    /**\\n     * Removes `key` and its value from the stack.\\n     *\\n     * @private\\n     * @name delete\\n     * @memberOf Stack\\n     * @param {string} key The key of the value to remove.\\n     * @returns {boolean} Returns `true` if the entry was removed, else `false`.\\n     */\\n    function stackDelete(key) {\\n      var data = this.__data__,\\n          result = data['delete'](key);\\n\\n      this.size = data.size;\\n      return result;\\n    }\\n\\n    /**\\n     * Gets the stack value for `key`.\\n     *\\n     * @private\\n     * @name get\\n     * @memberOf Stack\\n     * @param {string} key The key of the value to get.\\n     * @returns {*} Returns the entry value.\\n     */\\n    function stackGet(key) {\\n      return this.__data__.get(key);\\n    }\\n\\n    /**\\n     * Checks if a stack value for `key` exists.\\n     *\\n     * @private\\n     * @name has\\n     * @memberOf Stack\\n     * @param {string} key The key of the entry to check.\\n     * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\\n     */\\n    function stackHas(key) {\\n      return this.__data__.has(key);\\n    }\\n\\n    /**\\n     * Sets the stack `key` to `value`.\\n     *\\n     * @private\\n     * @name set\\n     * @memberOf Stack\\n     * @param {string} key The key of the value to set.\\n     * @param {*} value The value to set.\\n     * @returns {Object} Returns the stack cache instance.\\n     */\\n    function stackSet(key, value) {\\n      var data = this.__data__;\\n      if (data instanceof ListCache) {\\n        var pairs = data.__data__;\\n        if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {\\n          pairs.push([key, value]);\\n          this.size = ++data.size;\\n          return this;\\n        }\\n        data = this.__data__ = new MapCache(pairs);\\n      }\\n      data.set(key, value);\\n      this.size = data.size;\\n      return this;\\n    }\\n\\n    // Add methods to `Stack`.\\n    Stack.prototype.clear = stackClear;\\n    Stack.prototype['delete'] = stackDelete;\\n    Stack.prototype.get = stackGet;\\n    Stack.prototype.has = stackHas;\\n    Stack.prototype.set = stackSet;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates an array of the enumerable property names of the array-like `value`.\\n     *\\n     * @private\\n     * @param {*} value The value to query.\\n     * @param {boolean} inherited Specify returning inherited property names.\\n     * @returns {Array} Returns the array of property names.\\n     */\\n    function arrayLikeKeys(value, inherited) {\\n      var isArr = isArray(value),\\n          isArg = !isArr && isArguments(value),\\n          isBuff = !isArr && !isArg && isBuffer(value),\\n          isType = !isArr && !isArg && !isBuff && isTypedArray(value),\\n          skipIndexes = isArr || isArg || isBuff || isType,\\n          result = skipIndexes ? baseTimes(value.length, String) : [],\\n          length = result.length;\\n\\n      for (var key in value) {\\n        if ((inherited || hasOwnProperty.call(value, key)) &&\\n            !(skipIndexes && (\\n               // Safari 9 has enumerable `arguments.length` in strict mode.\\n               key == 'length' ||\\n               // Node.js 0.10 has enumerable non-index properties on buffers.\\n               (isBuff && (key == 'offset' || key == 'parent')) ||\\n               // PhantomJS 2 has enumerable non-index properties on typed arrays.\\n               (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||\\n               // Skip index properties.\\n               isIndex(key, length)\\n            ))) {\\n          result.push(key);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * A specialized version of `_.sample` for arrays.\\n     *\\n     * @private\\n     * @param {Array} array The array to sample.\\n     * @returns {*} Returns the random element.\\n     */\\n    function arraySample(array) {\\n      var length = array.length;\\n      return length ? array[baseRandom(0, length - 1)] : undefined;\\n    }\\n\\n    /**\\n     * A specialized version of `_.sampleSize` for arrays.\\n     *\\n     * @private\\n     * @param {Array} array The array to sample.\\n     * @param {number} n The number of elements to sample.\\n     * @returns {Array} Returns the random elements.\\n     */\\n    function arraySampleSize(array, n) {\\n      return shuffleSelf(copyArray(array), baseClamp(n, 0, array.length));\\n    }\\n\\n    /**\\n     * A specialized version of `_.shuffle` for arrays.\\n     *\\n     * @private\\n     * @param {Array} array The array to shuffle.\\n     * @returns {Array} Returns the new shuffled array.\\n     */\\n    function arrayShuffle(array) {\\n      return shuffleSelf(copyArray(array));\\n    }\\n\\n    /**\\n     * This function is like `assignValue` except that it doesn't assign\\n     * `undefined` values.\\n     *\\n     * @private\\n     * @param {Object} object The object to modify.\\n     * @param {string} key The key of the property to assign.\\n     * @param {*} value The value to assign.\\n     */\\n    function assignMergeValue(object, key, value) {\\n      if ((value !== undefined && !eq(object[key], value)) ||\\n          (value === undefined && !(key in object))) {\\n        baseAssignValue(object, key, value);\\n      }\\n    }\\n\\n    /**\\n     * Assigns `value` to `key` of `object` if the existing value is not equivalent\\n     * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons.\\n     *\\n     * @private\\n     * @param {Object} object The object to modify.\\n     * @param {string} key The key of the property to assign.\\n     * @param {*} value The value to assign.\\n     */\\n    function assignValue(object, key, value) {\\n      var objValue = object[key];\\n      if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||\\n          (value === undefined && !(key in object))) {\\n        baseAssignValue(object, key, value);\\n      }\\n    }\\n\\n    /**\\n     * Gets the index at which the `key` is found in `array` of key-value pairs.\\n     *\\n     * @private\\n     * @param {Array} array The array to inspect.\\n     * @param {*} key The key to search for.\\n     * @returns {number} Returns the index of the matched value, else `-1`.\\n     */\\n    function assocIndexOf(array, key) {\\n      var length = array.length;\\n      while (length--) {\\n        if (eq(array[length][0], key)) {\\n          return length;\\n        }\\n      }\\n      return -1;\\n    }\\n\\n    /**\\n     * Aggregates elements of `collection` on `accumulator` with keys transformed\\n     * by `iteratee` and values set by `setter`.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} setter The function to set `accumulator` values.\\n     * @param {Function} iteratee The iteratee to transform keys.\\n     * @param {Object} accumulator The initial aggregated object.\\n     * @returns {Function} Returns `accumulator`.\\n     */\\n    function baseAggregator(collection, setter, iteratee, accumulator) {\\n      baseEach(collection, function(value, key, collection) {\\n        setter(accumulator, value, iteratee(value), collection);\\n      });\\n      return accumulator;\\n    }\\n\\n    /**\\n     * The base implementation of `_.assign` without support for multiple sources\\n     * or `customizer` functions.\\n     *\\n     * @private\\n     * @param {Object} object The destination object.\\n     * @param {Object} source The source object.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function baseAssign(object, source) {\\n      return object && copyObject(source, keys(source), object);\\n    }\\n\\n    /**\\n     * The base implementation of `_.assignIn` without support for multiple sources\\n     * or `customizer` functions.\\n     *\\n     * @private\\n     * @param {Object} object The destination object.\\n     * @param {Object} source The source object.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function baseAssignIn(object, source) {\\n      return object && copyObject(source, keysIn(source), object);\\n    }\\n\\n    /**\\n     * The base implementation of `assignValue` and `assignMergeValue` without\\n     * value checks.\\n     *\\n     * @private\\n     * @param {Object} object The object to modify.\\n     * @param {string} key The key of the property to assign.\\n     * @param {*} value The value to assign.\\n     */\\n    function baseAssignValue(object, key, value) {\\n      if (key == '__proto__' && defineProperty) {\\n        defineProperty(object, key, {\\n          'configurable': true,\\n          'enumerable': true,\\n          'value': value,\\n          'writable': true\\n        });\\n      } else {\\n        object[key] = value;\\n      }\\n    }\\n\\n    /**\\n     * The base implementation of `_.at` without support for individual paths.\\n     *\\n     * @private\\n     * @param {Object} object The object to iterate over.\\n     * @param {string[]} paths The property paths to pick.\\n     * @returns {Array} Returns the picked elements.\\n     */\\n    function baseAt(object, paths) {\\n      var index = -1,\\n          length = paths.length,\\n          result = Array(length),\\n          skip = object == null;\\n\\n      while (++index < length) {\\n        result[index] = skip ? undefined : get(object, paths[index]);\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.clamp` which doesn't coerce arguments.\\n     *\\n     * @private\\n     * @param {number} number The number to clamp.\\n     * @param {number} [lower] The lower bound.\\n     * @param {number} upper The upper bound.\\n     * @returns {number} Returns the clamped number.\\n     */\\n    function baseClamp(number, lower, upper) {\\n      if (number === number) {\\n        if (upper !== undefined) {\\n          number = number <= upper ? number : upper;\\n        }\\n        if (lower !== undefined) {\\n          number = number >= lower ? number : lower;\\n        }\\n      }\\n      return number;\\n    }\\n\\n    /**\\n     * The base implementation of `_.clone` and `_.cloneDeep` which tracks\\n     * traversed objects.\\n     *\\n     * @private\\n     * @param {*} value The value to clone.\\n     * @param {boolean} bitmask The bitmask flags.\\n     *  1 - Deep clone\\n     *  2 - Flatten inherited properties\\n     *  4 - Clone symbols\\n     * @param {Function} [customizer] The function to customize cloning.\\n     * @param {string} [key] The key of `value`.\\n     * @param {Object} [object] The parent object of `value`.\\n     * @param {Object} [stack] Tracks traversed objects and their clone counterparts.\\n     * @returns {*} Returns the cloned value.\\n     */\\n    function baseClone(value, bitmask, customizer, key, object, stack) {\\n      var result,\\n          isDeep = bitmask & CLONE_DEEP_FLAG,\\n          isFlat = bitmask & CLONE_FLAT_FLAG,\\n          isFull = bitmask & CLONE_SYMBOLS_FLAG;\\n\\n      if (customizer) {\\n        result = object ? customizer(value, key, object, stack) : customizer(value);\\n      }\\n      if (result !== undefined) {\\n        return result;\\n      }\\n      if (!isObject(value)) {\\n        return value;\\n      }\\n      var isArr = isArray(value);\\n      if (isArr) {\\n        result = initCloneArray(value);\\n        if (!isDeep) {\\n          return copyArray(value, result);\\n        }\\n      } else {\\n        var tag = getTag(value),\\n            isFunc = tag == funcTag || tag == genTag;\\n\\n        if (isBuffer(value)) {\\n          return cloneBuffer(value, isDeep);\\n        }\\n        if (tag == objectTag || tag == argsTag || (isFunc && !object)) {\\n          result = (isFlat || isFunc) ? {} : initCloneObject(value);\\n          if (!isDeep) {\\n            return isFlat\\n              ? copySymbolsIn(value, baseAssignIn(result, value))\\n              : copySymbols(value, baseAssign(result, value));\\n          }\\n        } else {\\n          if (!cloneableTags[tag]) {\\n            return object ? value : {};\\n          }\\n          result = initCloneByTag(value, tag, isDeep);\\n        }\\n      }\\n      // Check for circular references and return its corresponding clone.\\n      stack || (stack = new Stack);\\n      var stacked = stack.get(value);\\n      if (stacked) {\\n        return stacked;\\n      }\\n      stack.set(value, result);\\n\\n      if (isSet(value)) {\\n        value.forEach(function(subValue) {\\n          result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack));\\n        });\\n      } else if (isMap(value)) {\\n        value.forEach(function(subValue, key) {\\n          result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack));\\n        });\\n      }\\n\\n      var keysFunc = isFull\\n        ? (isFlat ? getAllKeysIn : getAllKeys)\\n        : (isFlat ? keysIn : keys);\\n\\n      var props = isArr ? undefined : keysFunc(value);\\n      arrayEach(props || value, function(subValue, key) {\\n        if (props) {\\n          key = subValue;\\n          subValue = value[key];\\n        }\\n        // Recursively populate clone (susceptible to call stack limits).\\n        assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack));\\n      });\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.conforms` which doesn't clone `source`.\\n     *\\n     * @private\\n     * @param {Object} source The object of property predicates to conform to.\\n     * @returns {Function} Returns the new spec function.\\n     */\\n    function baseConforms(source) {\\n      var props = keys(source);\\n      return function(object) {\\n        return baseConformsTo(object, source, props);\\n      };\\n    }\\n\\n    /**\\n     * The base implementation of `_.conformsTo` which accepts `props` to check.\\n     *\\n     * @private\\n     * @param {Object} object The object to inspect.\\n     * @param {Object} source The object of property predicates to conform to.\\n     * @returns {boolean} Returns `true` if `object` conforms, else `false`.\\n     */\\n    function baseConformsTo(object, source, props) {\\n      var length = props.length;\\n      if (object == null) {\\n        return !length;\\n      }\\n      object = Object(object);\\n      while (length--) {\\n        var key = props[length],\\n            predicate = source[key],\\n            value = object[key];\\n\\n        if ((value === undefined && !(key in object)) || !predicate(value)) {\\n          return false;\\n        }\\n      }\\n      return true;\\n    }\\n\\n    /**\\n     * The base implementation of `_.delay` and `_.defer` which accepts `args`\\n     * to provide to `func`.\\n     *\\n     * @private\\n     * @param {Function} func The function to delay.\\n     * @param {number} wait The number of milliseconds to delay invocation.\\n     * @param {Array} args The arguments to provide to `func`.\\n     * @returns {number|Object} Returns the timer id or timeout object.\\n     */\\n    function baseDelay(func, wait, args) {\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      return setTimeout(function() { func.apply(undefined, args); }, wait);\\n    }\\n\\n    /**\\n     * The base implementation of methods like `_.difference` without support\\n     * for excluding multiple arrays or iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array} array The array to inspect.\\n     * @param {Array} values The values to exclude.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of filtered values.\\n     */\\n    function baseDifference(array, values, iteratee, comparator) {\\n      var index = -1,\\n          includes = arrayIncludes,\\n          isCommon = true,\\n          length = array.length,\\n          result = [],\\n          valuesLength = values.length;\\n\\n      if (!length) {\\n        return result;\\n      }\\n      if (iteratee) {\\n        values = arrayMap(values, baseUnary(iteratee));\\n      }\\n      if (comparator) {\\n        includes = arrayIncludesWith;\\n        isCommon = false;\\n      }\\n      else if (values.length >= LARGE_ARRAY_SIZE) {\\n        includes = cacheHas;\\n        isCommon = false;\\n        values = new SetCache(values);\\n      }\\n      outer:\\n      while (++index < length) {\\n        var value = array[index],\\n            computed = iteratee == null ? value : iteratee(value);\\n\\n        value = (comparator || value !== 0) ? value : 0;\\n        if (isCommon && computed === computed) {\\n          var valuesIndex = valuesLength;\\n          while (valuesIndex--) {\\n            if (values[valuesIndex] === computed) {\\n              continue outer;\\n            }\\n          }\\n          result.push(value);\\n        }\\n        else if (!includes(values, computed, comparator)) {\\n          result.push(value);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.forEach` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @returns {Array|Object} Returns `collection`.\\n     */\\n    var baseEach = createBaseEach(baseForOwn);\\n\\n    /**\\n     * The base implementation of `_.forEachRight` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @returns {Array|Object} Returns `collection`.\\n     */\\n    var baseEachRight = createBaseEach(baseForOwnRight, true);\\n\\n    /**\\n     * The base implementation of `_.every` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} predicate The function invoked per iteration.\\n     * @returns {boolean} Returns `true` if all elements pass the predicate check,\\n     *  else `false`\\n     */\\n    function baseEvery(collection, predicate) {\\n      var result = true;\\n      baseEach(collection, function(value, index, collection) {\\n        result = !!predicate(value, index, collection);\\n        return result;\\n      });\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of methods like `_.max` and `_.min` which accepts a\\n     * `comparator` to determine the extremum value.\\n     *\\n     * @private\\n     * @param {Array} array The array to iterate over.\\n     * @param {Function} iteratee The iteratee invoked per iteration.\\n     * @param {Function} comparator The comparator used to compare values.\\n     * @returns {*} Returns the extremum value.\\n     */\\n    function baseExtremum(array, iteratee, comparator) {\\n      var index = -1,\\n          length = array.length;\\n\\n      while (++index < length) {\\n        var value = array[index],\\n            current = iteratee(value);\\n\\n        if (current != null && (computed === undefined\\n              ? (current === current && !isSymbol(current))\\n              : comparator(current, computed)\\n            )) {\\n          var computed = current,\\n              result = value;\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.fill` without an iteratee call guard.\\n     *\\n     * @private\\n     * @param {Array} array The array to fill.\\n     * @param {*} value The value to fill `array` with.\\n     * @param {number} [start=0] The start position.\\n     * @param {number} [end=array.length] The end position.\\n     * @returns {Array} Returns `array`.\\n     */\\n    function baseFill(array, value, start, end) {\\n      var length = array.length;\\n\\n      start = toInteger(start);\\n      if (start < 0) {\\n        start = -start > length ? 0 : (length + start);\\n      }\\n      end = (end === undefined || end > length) ? length : toInteger(end);\\n      if (end < 0) {\\n        end += length;\\n      }\\n      end = start > end ? 0 : toLength(end);\\n      while (start < end) {\\n        array[start++] = value;\\n      }\\n      return array;\\n    }\\n\\n    /**\\n     * The base implementation of `_.filter` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} predicate The function invoked per iteration.\\n     * @returns {Array} Returns the new filtered array.\\n     */\\n    function baseFilter(collection, predicate) {\\n      var result = [];\\n      baseEach(collection, function(value, index, collection) {\\n        if (predicate(value, index, collection)) {\\n          result.push(value);\\n        }\\n      });\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.flatten` with support for restricting flattening.\\n     *\\n     * @private\\n     * @param {Array} array The array to flatten.\\n     * @param {number} depth The maximum recursion depth.\\n     * @param {boolean} [predicate=isFlattenable] The function invoked per iteration.\\n     * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks.\\n     * @param {Array} [result=[]] The initial result value.\\n     * @returns {Array} Returns the new flattened array.\\n     */\\n    function baseFlatten(array, depth, predicate, isStrict, result) {\\n      var index = -1,\\n          length = array.length;\\n\\n      predicate || (predicate = isFlattenable);\\n      result || (result = []);\\n\\n      while (++index < length) {\\n        var value = array[index];\\n        if (depth > 0 && predicate(value)) {\\n          if (depth > 1) {\\n            // Recursively flatten arrays (susceptible to call stack limits).\\n            baseFlatten(value, depth - 1, predicate, isStrict, result);\\n          } else {\\n            arrayPush(result, value);\\n          }\\n        } else if (!isStrict) {\\n          result[result.length] = value;\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `baseForOwn` which iterates over `object`\\n     * properties returned by `keysFunc` and invokes `iteratee` for each property.\\n     * Iteratee functions may exit iteration early by explicitly returning `false`.\\n     *\\n     * @private\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @param {Function} keysFunc The function to get the keys of `object`.\\n     * @returns {Object} Returns `object`.\\n     */\\n    var baseFor = createBaseFor();\\n\\n    /**\\n     * This function is like `baseFor` except that it iterates over properties\\n     * in the opposite order.\\n     *\\n     * @private\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @param {Function} keysFunc The function to get the keys of `object`.\\n     * @returns {Object} Returns `object`.\\n     */\\n    var baseForRight = createBaseFor(true);\\n\\n    /**\\n     * The base implementation of `_.forOwn` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function baseForOwn(object, iteratee) {\\n      return object && baseFor(object, iteratee, keys);\\n    }\\n\\n    /**\\n     * The base implementation of `_.forOwnRight` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function baseForOwnRight(object, iteratee) {\\n      return object && baseForRight(object, iteratee, keys);\\n    }\\n\\n    /**\\n     * The base implementation of `_.functions` which creates an array of\\n     * `object` function property names filtered from `props`.\\n     *\\n     * @private\\n     * @param {Object} object The object to inspect.\\n     * @param {Array} props The property names to filter.\\n     * @returns {Array} Returns the function names.\\n     */\\n    function baseFunctions(object, props) {\\n      return arrayFilter(props, function(key) {\\n        return isFunction(object[key]);\\n      });\\n    }\\n\\n    /**\\n     * The base implementation of `_.get` without support for default values.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path of the property to get.\\n     * @returns {*} Returns the resolved value.\\n     */\\n    function baseGet(object, path) {\\n      path = castPath(path, object);\\n\\n      var index = 0,\\n          length = path.length;\\n\\n      while (object != null && index < length) {\\n        object = object[toKey(path[index++])];\\n      }\\n      return (index && index == length) ? object : undefined;\\n    }\\n\\n    /**\\n     * The base implementation of `getAllKeys` and `getAllKeysIn` which uses\\n     * `keysFunc` and `symbolsFunc` to get the enumerable property names and\\n     * symbols of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {Function} keysFunc The function to get the keys of `object`.\\n     * @param {Function} symbolsFunc The function to get the symbols of `object`.\\n     * @returns {Array} Returns the array of property names and symbols.\\n     */\\n    function baseGetAllKeys(object, keysFunc, symbolsFunc) {\\n      var result = keysFunc(object);\\n      return isArray(object) ? result : arrayPush(result, symbolsFunc(object));\\n    }\\n\\n    /**\\n     * The base implementation of `getTag` without fallbacks for buggy environments.\\n     *\\n     * @private\\n     * @param {*} value The value to query.\\n     * @returns {string} Returns the `toStringTag`.\\n     */\\n    function baseGetTag(value) {\\n      if (value == null) {\\n        return value === undefined ? undefinedTag : nullTag;\\n      }\\n      return (symToStringTag && symToStringTag in Object(value))\\n        ? getRawTag(value)\\n        : objectToString(value);\\n    }\\n\\n    /**\\n     * The base implementation of `_.gt` which doesn't coerce arguments.\\n     *\\n     * @private\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if `value` is greater than `other`,\\n     *  else `false`.\\n     */\\n    function baseGt(value, other) {\\n      return value > other;\\n    }\\n\\n    /**\\n     * The base implementation of `_.has` without support for deep paths.\\n     *\\n     * @private\\n     * @param {Object} [object] The object to query.\\n     * @param {Array|string} key The key to check.\\n     * @returns {boolean} Returns `true` if `key` exists, else `false`.\\n     */\\n    function baseHas(object, key) {\\n      return object != null && hasOwnProperty.call(object, key);\\n    }\\n\\n    /**\\n     * The base implementation of `_.hasIn` without support for deep paths.\\n     *\\n     * @private\\n     * @param {Object} [object] The object to query.\\n     * @param {Array|string} key The key to check.\\n     * @returns {boolean} Returns `true` if `key` exists, else `false`.\\n     */\\n    function baseHasIn(object, key) {\\n      return object != null && key in Object(object);\\n    }\\n\\n    /**\\n     * The base implementation of `_.inRange` which doesn't coerce arguments.\\n     *\\n     * @private\\n     * @param {number} number The number to check.\\n     * @param {number} start The start of the range.\\n     * @param {number} end The end of the range.\\n     * @returns {boolean} Returns `true` if `number` is in the range, else `false`.\\n     */\\n    function baseInRange(number, start, end) {\\n      return number >= nativeMin(start, end) && number < nativeMax(start, end);\\n    }\\n\\n    /**\\n     * The base implementation of methods like `_.intersection`, without support\\n     * for iteratee shorthands, that accepts an array of arrays to inspect.\\n     *\\n     * @private\\n     * @param {Array} arrays The arrays to inspect.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of shared values.\\n     */\\n    function baseIntersection(arrays, iteratee, comparator) {\\n      var includes = comparator ? arrayIncludesWith : arrayIncludes,\\n          length = arrays[0].length,\\n          othLength = arrays.length,\\n          othIndex = othLength,\\n          caches = Array(othLength),\\n          maxLength = Infinity,\\n          result = [];\\n\\n      while (othIndex--) {\\n        var array = arrays[othIndex];\\n        if (othIndex && iteratee) {\\n          array = arrayMap(array, baseUnary(iteratee));\\n        }\\n        maxLength = nativeMin(array.length, maxLength);\\n        caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120))\\n          ? new SetCache(othIndex && array)\\n          : undefined;\\n      }\\n      array = arrays[0];\\n\\n      var index = -1,\\n          seen = caches[0];\\n\\n      outer:\\n      while (++index < length && result.length < maxLength) {\\n        var value = array[index],\\n            computed = iteratee ? iteratee(value) : value;\\n\\n        value = (comparator || value !== 0) ? value : 0;\\n        if (!(seen\\n              ? cacheHas(seen, computed)\\n              : includes(result, computed, comparator)\\n            )) {\\n          othIndex = othLength;\\n          while (--othIndex) {\\n            var cache = caches[othIndex];\\n            if (!(cache\\n                  ? cacheHas(cache, computed)\\n                  : includes(arrays[othIndex], computed, comparator))\\n                ) {\\n              continue outer;\\n            }\\n          }\\n          if (seen) {\\n            seen.push(computed);\\n          }\\n          result.push(value);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.invert` and `_.invertBy` which inverts\\n     * `object` with values transformed by `iteratee` and set by `setter`.\\n     *\\n     * @private\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} setter The function to set `accumulator` values.\\n     * @param {Function} iteratee The iteratee to transform values.\\n     * @param {Object} accumulator The initial inverted object.\\n     * @returns {Function} Returns `accumulator`.\\n     */\\n    function baseInverter(object, setter, iteratee, accumulator) {\\n      baseForOwn(object, function(value, key, object) {\\n        setter(accumulator, iteratee(value), key, object);\\n      });\\n      return accumulator;\\n    }\\n\\n    /**\\n     * The base implementation of `_.invoke` without support for individual\\n     * method arguments.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path of the method to invoke.\\n     * @param {Array} args The arguments to invoke the method with.\\n     * @returns {*} Returns the result of the invoked method.\\n     */\\n    function baseInvoke(object, path, args) {\\n      path = castPath(path, object);\\n      object = parent(object, path);\\n      var func = object == null ? object : object[toKey(last(path))];\\n      return func == null ? undefined : apply(func, object, args);\\n    }\\n\\n    /**\\n     * The base implementation of `_.isArguments`.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an `arguments` object,\\n     */\\n    function baseIsArguments(value) {\\n      return isObjectLike(value) && baseGetTag(value) == argsTag;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isArrayBuffer` without Node.js optimizations.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`.\\n     */\\n    function baseIsArrayBuffer(value) {\\n      return isObjectLike(value) && baseGetTag(value) == arrayBufferTag;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isDate` without Node.js optimizations.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a date object, else `false`.\\n     */\\n    function baseIsDate(value) {\\n      return isObjectLike(value) && baseGetTag(value) == dateTag;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isEqual` which supports partial comparisons\\n     * and tracks traversed objects.\\n     *\\n     * @private\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @param {boolean} bitmask The bitmask flags.\\n     *  1 - Unordered comparison\\n     *  2 - Partial comparison\\n     * @param {Function} [customizer] The function to customize comparisons.\\n     * @param {Object} [stack] Tracks traversed `value` and `other` objects.\\n     * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\\n     */\\n    function baseIsEqual(value, other, bitmask, customizer, stack) {\\n      if (value === other) {\\n        return true;\\n      }\\n      if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) {\\n        return value !== value && other !== other;\\n      }\\n      return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);\\n    }\\n\\n    /**\\n     * A specialized version of `baseIsEqual` for arrays and objects which performs\\n     * deep comparisons and tracks traversed objects enabling objects with circular\\n     * references to be compared.\\n     *\\n     * @private\\n     * @param {Object} object The object to compare.\\n     * @param {Object} other The other object to compare.\\n     * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\\n     * @param {Function} customizer The function to customize comparisons.\\n     * @param {Function} equalFunc The function to determine equivalents of values.\\n     * @param {Object} [stack] Tracks traversed `object` and `other` objects.\\n     * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\\n     */\\n    function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {\\n      var objIsArr = isArray(object),\\n          othIsArr = isArray(other),\\n          objTag = objIsArr ? arrayTag : getTag(object),\\n          othTag = othIsArr ? arrayTag : getTag(other);\\n\\n      objTag = objTag == argsTag ? objectTag : objTag;\\n      othTag = othTag == argsTag ? objectTag : othTag;\\n\\n      var objIsObj = objTag == objectTag,\\n          othIsObj = othTag == objectTag,\\n          isSameTag = objTag == othTag;\\n\\n      if (isSameTag && isBuffer(object)) {\\n        if (!isBuffer(other)) {\\n          return false;\\n        }\\n        objIsArr = true;\\n        objIsObj = false;\\n      }\\n      if (isSameTag && !objIsObj) {\\n        stack || (stack = new Stack);\\n        return (objIsArr || isTypedArray(object))\\n          ? equalArrays(object, other, bitmask, customizer, equalFunc, stack)\\n          : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack);\\n      }\\n      if (!(bitmask & COMPARE_PARTIAL_FLAG)) {\\n        var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),\\n            othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__');\\n\\n        if (objIsWrapped || othIsWrapped) {\\n          var objUnwrapped = objIsWrapped ? object.value() : object,\\n              othUnwrapped = othIsWrapped ? other.value() : other;\\n\\n          stack || (stack = new Stack);\\n          return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack);\\n        }\\n      }\\n      if (!isSameTag) {\\n        return false;\\n      }\\n      stack || (stack = new Stack);\\n      return equalObjects(object, other, bitmask, customizer, equalFunc, stack);\\n    }\\n\\n    /**\\n     * The base implementation of `_.isMap` without Node.js optimizations.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a map, else `false`.\\n     */\\n    function baseIsMap(value) {\\n      return isObjectLike(value) && getTag(value) == mapTag;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isMatch` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Object} object The object to inspect.\\n     * @param {Object} source The object of property values to match.\\n     * @param {Array} matchData The property names, values, and compare flags to match.\\n     * @param {Function} [customizer] The function to customize comparisons.\\n     * @returns {boolean} Returns `true` if `object` is a match, else `false`.\\n     */\\n    function baseIsMatch(object, source, matchData, customizer) {\\n      var index = matchData.length,\\n          length = index,\\n          noCustomizer = !customizer;\\n\\n      if (object == null) {\\n        return !length;\\n      }\\n      object = Object(object);\\n      while (index--) {\\n        var data = matchData[index];\\n        if ((noCustomizer && data[2])\\n              ? data[1] !== object[data[0]]\\n              : !(data[0] in object)\\n            ) {\\n          return false;\\n        }\\n      }\\n      while (++index < length) {\\n        data = matchData[index];\\n        var key = data[0],\\n            objValue = object[key],\\n            srcValue = data[1];\\n\\n        if (noCustomizer && data[2]) {\\n          if (objValue === undefined && !(key in object)) {\\n            return false;\\n          }\\n        } else {\\n          var stack = new Stack;\\n          if (customizer) {\\n            var result = customizer(objValue, srcValue, key, object, source, stack);\\n          }\\n          if (!(result === undefined\\n                ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack)\\n                : result\\n              )) {\\n            return false;\\n          }\\n        }\\n      }\\n      return true;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isNative` without bad shim checks.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a native function,\\n     *  else `false`.\\n     */\\n    function baseIsNative(value) {\\n      if (!isObject(value) || isMasked(value)) {\\n        return false;\\n      }\\n      var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\\n      return pattern.test(toSource(value));\\n    }\\n\\n    /**\\n     * The base implementation of `_.isRegExp` without Node.js optimizations.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a regexp, else `false`.\\n     */\\n    function baseIsRegExp(value) {\\n      return isObjectLike(value) && baseGetTag(value) == regexpTag;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isSet` without Node.js optimizations.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a set, else `false`.\\n     */\\n    function baseIsSet(value) {\\n      return isObjectLike(value) && getTag(value) == setTag;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isTypedArray` without Node.js optimizations.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\\n     */\\n    function baseIsTypedArray(value) {\\n      return isObjectLike(value) &&\\n        isLength(value.length) && !!typedArrayTags[baseGetTag(value)];\\n    }\\n\\n    /**\\n     * The base implementation of `_.iteratee`.\\n     *\\n     * @private\\n     * @param {*} [value=_.identity] The value to convert to an iteratee.\\n     * @returns {Function} Returns the iteratee.\\n     */\\n    function baseIteratee(value) {\\n      // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9.\\n      // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details.\\n      if (typeof value == 'function') {\\n        return value;\\n      }\\n      if (value == null) {\\n        return identity;\\n      }\\n      if (typeof value == 'object') {\\n        return isArray(value)\\n          ? baseMatchesProperty(value[0], value[1])\\n          : baseMatches(value);\\n      }\\n      return property(value);\\n    }\\n\\n    /**\\n     * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names.\\n     */\\n    function baseKeys(object) {\\n      if (!isPrototype(object)) {\\n        return nativeKeys(object);\\n      }\\n      var result = [];\\n      for (var key in Object(object)) {\\n        if (hasOwnProperty.call(object, key) && key != 'constructor') {\\n          result.push(key);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names.\\n     */\\n    function baseKeysIn(object) {\\n      if (!isObject(object)) {\\n        return nativeKeysIn(object);\\n      }\\n      var isProto = isPrototype(object),\\n          result = [];\\n\\n      for (var key in object) {\\n        if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\\n          result.push(key);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.lt` which doesn't coerce arguments.\\n     *\\n     * @private\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if `value` is less than `other`,\\n     *  else `false`.\\n     */\\n    function baseLt(value, other) {\\n      return value < other;\\n    }\\n\\n    /**\\n     * The base implementation of `_.map` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @returns {Array} Returns the new mapped array.\\n     */\\n    function baseMap(collection, iteratee) {\\n      var index = -1,\\n          result = isArrayLike(collection) ? Array(collection.length) : [];\\n\\n      baseEach(collection, function(value, key, collection) {\\n        result[++index] = iteratee(value, key, collection);\\n      });\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.matches` which doesn't clone `source`.\\n     *\\n     * @private\\n     * @param {Object} source The object of property values to match.\\n     * @returns {Function} Returns the new spec function.\\n     */\\n    function baseMatches(source) {\\n      var matchData = getMatchData(source);\\n      if (matchData.length == 1 && matchData[0][2]) {\\n        return matchesStrictComparable(matchData[0][0], matchData[0][1]);\\n      }\\n      return function(object) {\\n        return object === source || baseIsMatch(object, source, matchData);\\n      };\\n    }\\n\\n    /**\\n     * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`.\\n     *\\n     * @private\\n     * @param {string} path The path of the property to get.\\n     * @param {*} srcValue The value to match.\\n     * @returns {Function} Returns the new spec function.\\n     */\\n    function baseMatchesProperty(path, srcValue) {\\n      if (isKey(path) && isStrictComparable(srcValue)) {\\n        return matchesStrictComparable(toKey(path), srcValue);\\n      }\\n      return function(object) {\\n        var objValue = get(object, path);\\n        return (objValue === undefined && objValue === srcValue)\\n          ? hasIn(object, path)\\n          : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);\\n      };\\n    }\\n\\n    /**\\n     * The base implementation of `_.merge` without support for multiple sources.\\n     *\\n     * @private\\n     * @param {Object} object The destination object.\\n     * @param {Object} source The source object.\\n     * @param {number} srcIndex The index of `source`.\\n     * @param {Function} [customizer] The function to customize merged values.\\n     * @param {Object} [stack] Tracks traversed source values and their merged\\n     *  counterparts.\\n     */\\n    function baseMerge(object, source, srcIndex, customizer, stack) {\\n      if (object === source) {\\n        return;\\n      }\\n      baseFor(source, function(srcValue, key) {\\n        stack || (stack = new Stack);\\n        if (isObject(srcValue)) {\\n          baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);\\n        }\\n        else {\\n          var newValue = customizer\\n            ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack)\\n            : undefined;\\n\\n          if (newValue === undefined) {\\n            newValue = srcValue;\\n          }\\n          assignMergeValue(object, key, newValue);\\n        }\\n      }, keysIn);\\n    }\\n\\n    /**\\n     * A specialized version of `baseMerge` for arrays and objects which performs\\n     * deep merges and tracks traversed objects enabling objects with circular\\n     * references to be merged.\\n     *\\n     * @private\\n     * @param {Object} object The destination object.\\n     * @param {Object} source The source object.\\n     * @param {string} key The key of the value to merge.\\n     * @param {number} srcIndex The index of `source`.\\n     * @param {Function} mergeFunc The function to merge values.\\n     * @param {Function} [customizer] The function to customize assigned values.\\n     * @param {Object} [stack] Tracks traversed source values and their merged\\n     *  counterparts.\\n     */\\n    function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {\\n      var objValue = safeGet(object, key),\\n          srcValue = safeGet(source, key),\\n          stacked = stack.get(srcValue);\\n\\n      if (stacked) {\\n        assignMergeValue(object, key, stacked);\\n        return;\\n      }\\n      var newValue = customizer\\n        ? customizer(objValue, srcValue, (key + ''), object, source, stack)\\n        : undefined;\\n\\n      var isCommon = newValue === undefined;\\n\\n      if (isCommon) {\\n        var isArr = isArray(srcValue),\\n            isBuff = !isArr && isBuffer(srcValue),\\n            isTyped = !isArr && !isBuff && isTypedArray(srcValue);\\n\\n        newValue = srcValue;\\n        if (isArr || isBuff || isTyped) {\\n          if (isArray(objValue)) {\\n            newValue = objValue;\\n          }\\n          else if (isArrayLikeObject(objValue)) {\\n            newValue = copyArray(objValue);\\n          }\\n          else if (isBuff) {\\n            isCommon = false;\\n            newValue = cloneBuffer(srcValue, true);\\n          }\\n          else if (isTyped) {\\n            isCommon = false;\\n            newValue = cloneTypedArray(srcValue, true);\\n          }\\n          else {\\n            newValue = [];\\n          }\\n        }\\n        else if (isPlainObject(srcValue) || isArguments(srcValue)) {\\n          newValue = objValue;\\n          if (isArguments(objValue)) {\\n            newValue = toPlainObject(objValue);\\n          }\\n          else if (!isObject(objValue) || isFunction(objValue)) {\\n            newValue = initCloneObject(srcValue);\\n          }\\n        }\\n        else {\\n          isCommon = false;\\n        }\\n      }\\n      if (isCommon) {\\n        // Recursively merge objects and arrays (susceptible to call stack limits).\\n        stack.set(srcValue, newValue);\\n        mergeFunc(newValue, srcValue, srcIndex, customizer, stack);\\n        stack['delete'](srcValue);\\n      }\\n      assignMergeValue(object, key, newValue);\\n    }\\n\\n    /**\\n     * The base implementation of `_.nth` which doesn't coerce arguments.\\n     *\\n     * @private\\n     * @param {Array} array The array to query.\\n     * @param {number} n The index of the element to return.\\n     * @returns {*} Returns the nth element of `array`.\\n     */\\n    function baseNth(array, n) {\\n      var length = array.length;\\n      if (!length) {\\n        return;\\n      }\\n      n += n < 0 ? length : 0;\\n      return isIndex(n, length) ? array[n] : undefined;\\n    }\\n\\n    /**\\n     * The base implementation of `_.orderBy` without param guards.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by.\\n     * @param {string[]} orders The sort orders of `iteratees`.\\n     * @returns {Array} Returns the new sorted array.\\n     */\\n    function baseOrderBy(collection, iteratees, orders) {\\n      if (iteratees.length) {\\n        iteratees = arrayMap(iteratees, function(iteratee) {\\n          if (isArray(iteratee)) {\\n            return function(value) {\\n              return baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee);\\n            }\\n          }\\n          return iteratee;\\n        });\\n      } else {\\n        iteratees = [identity];\\n      }\\n\\n      var index = -1;\\n      iteratees = arrayMap(iteratees, baseUnary(getIteratee()));\\n\\n      var result = baseMap(collection, function(value, key, collection) {\\n        var criteria = arrayMap(iteratees, function(iteratee) {\\n          return iteratee(value);\\n        });\\n        return { 'criteria': criteria, 'index': ++index, 'value': value };\\n      });\\n\\n      return baseSortBy(result, function(object, other) {\\n        return compareMultiple(object, other, orders);\\n      });\\n    }\\n\\n    /**\\n     * The base implementation of `_.pick` without support for individual\\n     * property identifiers.\\n     *\\n     * @private\\n     * @param {Object} object The source object.\\n     * @param {string[]} paths The property paths to pick.\\n     * @returns {Object} Returns the new object.\\n     */\\n    function basePick(object, paths) {\\n      return basePickBy(object, paths, function(value, path) {\\n        return hasIn(object, path);\\n      });\\n    }\\n\\n    /**\\n     * The base implementation of  `_.pickBy` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Object} object The source object.\\n     * @param {string[]} paths The property paths to pick.\\n     * @param {Function} predicate The function invoked per property.\\n     * @returns {Object} Returns the new object.\\n     */\\n    function basePickBy(object, paths, predicate) {\\n      var index = -1,\\n          length = paths.length,\\n          result = {};\\n\\n      while (++index < length) {\\n        var path = paths[index],\\n            value = baseGet(object, path);\\n\\n        if (predicate(value, path)) {\\n          baseSet(result, castPath(path, object), value);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * A specialized version of `baseProperty` which supports deep paths.\\n     *\\n     * @private\\n     * @param {Array|string} path The path of the property to get.\\n     * @returns {Function} Returns the new accessor function.\\n     */\\n    function basePropertyDeep(path) {\\n      return function(object) {\\n        return baseGet(object, path);\\n      };\\n    }\\n\\n    /**\\n     * The base implementation of `_.pullAllBy` without support for iteratee\\n     * shorthands.\\n     *\\n     * @private\\n     * @param {Array} array The array to modify.\\n     * @param {Array} values The values to remove.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns `array`.\\n     */\\n    function basePullAll(array, values, iteratee, comparator) {\\n      var indexOf = comparator ? baseIndexOfWith : baseIndexOf,\\n          index = -1,\\n          length = values.length,\\n          seen = array;\\n\\n      if (array === values) {\\n        values = copyArray(values);\\n      }\\n      if (iteratee) {\\n        seen = arrayMap(array, baseUnary(iteratee));\\n      }\\n      while (++index < length) {\\n        var fromIndex = 0,\\n            value = values[index],\\n            computed = iteratee ? iteratee(value) : value;\\n\\n        while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) {\\n          if (seen !== array) {\\n            splice.call(seen, fromIndex, 1);\\n          }\\n          splice.call(array, fromIndex, 1);\\n        }\\n      }\\n      return array;\\n    }\\n\\n    /**\\n     * The base implementation of `_.pullAt` without support for individual\\n     * indexes or capturing the removed elements.\\n     *\\n     * @private\\n     * @param {Array} array The array to modify.\\n     * @param {number[]} indexes The indexes of elements to remove.\\n     * @returns {Array} Returns `array`.\\n     */\\n    function basePullAt(array, indexes) {\\n      var length = array ? indexes.length : 0,\\n          lastIndex = length - 1;\\n\\n      while (length--) {\\n        var index = indexes[length];\\n        if (length == lastIndex || index !== previous) {\\n          var previous = index;\\n          if (isIndex(index)) {\\n            splice.call(array, index, 1);\\n          } else {\\n            baseUnset(array, index);\\n          }\\n        }\\n      }\\n      return array;\\n    }\\n\\n    /**\\n     * The base implementation of `_.random` without support for returning\\n     * floating-point numbers.\\n     *\\n     * @private\\n     * @param {number} lower The lower bound.\\n     * @param {number} upper The upper bound.\\n     * @returns {number} Returns the random number.\\n     */\\n    function baseRandom(lower, upper) {\\n      return lower + nativeFloor(nativeRandom() * (upper - lower + 1));\\n    }\\n\\n    /**\\n     * The base implementation of `_.range` and `_.rangeRight` which doesn't\\n     * coerce arguments.\\n     *\\n     * @private\\n     * @param {number} start The start of the range.\\n     * @param {number} end The end of the range.\\n     * @param {number} step The value to increment or decrement by.\\n     * @param {boolean} [fromRight] Specify iterating from right to left.\\n     * @returns {Array} Returns the range of numbers.\\n     */\\n    function baseRange(start, end, step, fromRight) {\\n      var index = -1,\\n          length = nativeMax(nativeCeil((end - start) / (step || 1)), 0),\\n          result = Array(length);\\n\\n      while (length--) {\\n        result[fromRight ? length : ++index] = start;\\n        start += step;\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.repeat` which doesn't coerce arguments.\\n     *\\n     * @private\\n     * @param {string} string The string to repeat.\\n     * @param {number} n The number of times to repeat the string.\\n     * @returns {string} Returns the repeated string.\\n     */\\n    function baseRepeat(string, n) {\\n      var result = '';\\n      if (!string || n < 1 || n > MAX_SAFE_INTEGER) {\\n        return result;\\n      }\\n      // Leverage the exponentiation by squaring algorithm for a faster repeat.\\n      // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details.\\n      do {\\n        if (n % 2) {\\n          result += string;\\n        }\\n        n = nativeFloor(n / 2);\\n        if (n) {\\n          string += string;\\n        }\\n      } while (n);\\n\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.rest` which doesn't validate or coerce arguments.\\n     *\\n     * @private\\n     * @param {Function} func The function to apply a rest parameter to.\\n     * @param {number} [start=func.length-1] The start position of the rest parameter.\\n     * @returns {Function} Returns the new function.\\n     */\\n    function baseRest(func, start) {\\n      return setToString(overRest(func, start, identity), func + '');\\n    }\\n\\n    /**\\n     * The base implementation of `_.sample`.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to sample.\\n     * @returns {*} Returns the random element.\\n     */\\n    function baseSample(collection) {\\n      return arraySample(values(collection));\\n    }\\n\\n    /**\\n     * The base implementation of `_.sampleSize` without param guards.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to sample.\\n     * @param {number} n The number of elements to sample.\\n     * @returns {Array} Returns the random elements.\\n     */\\n    function baseSampleSize(collection, n) {\\n      var array = values(collection);\\n      return shuffleSelf(array, baseClamp(n, 0, array.length));\\n    }\\n\\n    /**\\n     * The base implementation of `_.set`.\\n     *\\n     * @private\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to set.\\n     * @param {*} value The value to set.\\n     * @param {Function} [customizer] The function to customize path creation.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function baseSet(object, path, value, customizer) {\\n      if (!isObject(object)) {\\n        return object;\\n      }\\n      path = castPath(path, object);\\n\\n      var index = -1,\\n          length = path.length,\\n          lastIndex = length - 1,\\n          nested = object;\\n\\n      while (nested != null && ++index < length) {\\n        var key = toKey(path[index]),\\n            newValue = value;\\n\\n        if (key === '__proto__' || key === 'constructor' || key === 'prototype') {\\n          return object;\\n        }\\n\\n        if (index != lastIndex) {\\n          var objValue = nested[key];\\n          newValue = customizer ? customizer(objValue, key, nested) : undefined;\\n          if (newValue === undefined) {\\n            newValue = isObject(objValue)\\n              ? objValue\\n              : (isIndex(path[index + 1]) ? [] : {});\\n          }\\n        }\\n        assignValue(nested, key, newValue);\\n        nested = nested[key];\\n      }\\n      return object;\\n    }\\n\\n    /**\\n     * The base implementation of `setData` without support for hot loop shorting.\\n     *\\n     * @private\\n     * @param {Function} func The function to associate metadata with.\\n     * @param {*} data The metadata.\\n     * @returns {Function} Returns `func`.\\n     */\\n    var baseSetData = !metaMap ? identity : function(func, data) {\\n      metaMap.set(func, data);\\n      return func;\\n    };\\n\\n    /**\\n     * The base implementation of `setToString` without support for hot loop shorting.\\n     *\\n     * @private\\n     * @param {Function} func The function to modify.\\n     * @param {Function} string The `toString` result.\\n     * @returns {Function} Returns `func`.\\n     */\\n    var baseSetToString = !defineProperty ? identity : function(func, string) {\\n      return defineProperty(func, 'toString', {\\n        'configurable': true,\\n        'enumerable': false,\\n        'value': constant(string),\\n        'writable': true\\n      });\\n    };\\n\\n    /**\\n     * The base implementation of `_.shuffle`.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to shuffle.\\n     * @returns {Array} Returns the new shuffled array.\\n     */\\n    function baseShuffle(collection) {\\n      return shuffleSelf(values(collection));\\n    }\\n\\n    /**\\n     * The base implementation of `_.slice` without an iteratee call guard.\\n     *\\n     * @private\\n     * @param {Array} array The array to slice.\\n     * @param {number} [start=0] The start position.\\n     * @param {number} [end=array.length] The end position.\\n     * @returns {Array} Returns the slice of `array`.\\n     */\\n    function baseSlice(array, start, end) {\\n      var index = -1,\\n          length = array.length;\\n\\n      if (start < 0) {\\n        start = -start > length ? 0 : (length + start);\\n      }\\n      end = end > length ? length : end;\\n      if (end < 0) {\\n        end += length;\\n      }\\n      length = start > end ? 0 : ((end - start) >>> 0);\\n      start >>>= 0;\\n\\n      var result = Array(length);\\n      while (++index < length) {\\n        result[index] = array[index + start];\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.some` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} predicate The function invoked per iteration.\\n     * @returns {boolean} Returns `true` if any element passes the predicate check,\\n     *  else `false`.\\n     */\\n    function baseSome(collection, predicate) {\\n      var result;\\n\\n      baseEach(collection, function(value, index, collection) {\\n        result = predicate(value, index, collection);\\n        return !result;\\n      });\\n      return !!result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.sortedIndex` and `_.sortedLastIndex` which\\n     * performs a binary search of `array` to determine the index at which `value`\\n     * should be inserted into `array` in order to maintain its sort order.\\n     *\\n     * @private\\n     * @param {Array} array The sorted array to inspect.\\n     * @param {*} value The value to evaluate.\\n     * @param {boolean} [retHighest] Specify returning the highest qualified index.\\n     * @returns {number} Returns the index at which `value` should be inserted\\n     *  into `array`.\\n     */\\n    function baseSortedIndex(array, value, retHighest) {\\n      var low = 0,\\n          high = array == null ? low : array.length;\\n\\n      if (typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) {\\n        while (low < high) {\\n          var mid = (low + high) >>> 1,\\n              computed = array[mid];\\n\\n          if (computed !== null && !isSymbol(computed) &&\\n              (retHighest ? (computed <= value) : (computed < value))) {\\n            low = mid + 1;\\n          } else {\\n            high = mid;\\n          }\\n        }\\n        return high;\\n      }\\n      return baseSortedIndexBy(array, value, identity, retHighest);\\n    }\\n\\n    /**\\n     * The base implementation of `_.sortedIndexBy` and `_.sortedLastIndexBy`\\n     * which invokes `iteratee` for `value` and each element of `array` to compute\\n     * their sort ranking. The iteratee is invoked with one argument; (value).\\n     *\\n     * @private\\n     * @param {Array} array The sorted array to inspect.\\n     * @param {*} value The value to evaluate.\\n     * @param {Function} iteratee The iteratee invoked per element.\\n     * @param {boolean} [retHighest] Specify returning the highest qualified index.\\n     * @returns {number} Returns the index at which `value` should be inserted\\n     *  into `array`.\\n     */\\n    function baseSortedIndexBy(array, value, iteratee, retHighest) {\\n      var low = 0,\\n          high = array == null ? 0 : array.length;\\n      if (high === 0) {\\n        return 0;\\n      }\\n\\n      value = iteratee(value);\\n      var valIsNaN = value !== value,\\n          valIsNull = value === null,\\n          valIsSymbol = isSymbol(value),\\n          valIsUndefined = value === undefined;\\n\\n      while (low < high) {\\n        var mid = nativeFloor((low + high) / 2),\\n            computed = iteratee(array[mid]),\\n            othIsDefined = computed !== undefined,\\n            othIsNull = computed === null,\\n            othIsReflexive = computed === computed,\\n            othIsSymbol = isSymbol(computed);\\n\\n        if (valIsNaN) {\\n          var setLow = retHighest || othIsReflexive;\\n        } else if (valIsUndefined) {\\n          setLow = othIsReflexive && (retHighest || othIsDefined);\\n        } else if (valIsNull) {\\n          setLow = othIsReflexive && othIsDefined && (retHighest || !othIsNull);\\n        } else if (valIsSymbol) {\\n          setLow = othIsReflexive && othIsDefined && !othIsNull && (retHighest || !othIsSymbol);\\n        } else if (othIsNull || othIsSymbol) {\\n          setLow = false;\\n        } else {\\n          setLow = retHighest ? (computed <= value) : (computed < value);\\n        }\\n        if (setLow) {\\n          low = mid + 1;\\n        } else {\\n          high = mid;\\n        }\\n      }\\n      return nativeMin(high, MAX_ARRAY_INDEX);\\n    }\\n\\n    /**\\n     * The base implementation of `_.sortedUniq` and `_.sortedUniqBy` without\\n     * support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @returns {Array} Returns the new duplicate free array.\\n     */\\n    function baseSortedUniq(array, iteratee) {\\n      var index = -1,\\n          length = array.length,\\n          resIndex = 0,\\n          result = [];\\n\\n      while (++index < length) {\\n        var value = array[index],\\n            computed = iteratee ? iteratee(value) : value;\\n\\n        if (!index || !eq(computed, seen)) {\\n          var seen = computed;\\n          result[resIndex++] = value === 0 ? 0 : value;\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.toNumber` which doesn't ensure correct\\n     * conversions of binary, hexadecimal, or octal string values.\\n     *\\n     * @private\\n     * @param {*} value The value to process.\\n     * @returns {number} Returns the number.\\n     */\\n    function baseToNumber(value) {\\n      if (typeof value == 'number') {\\n        return value;\\n      }\\n      if (isSymbol(value)) {\\n        return NAN;\\n      }\\n      return +value;\\n    }\\n\\n    /**\\n     * The base implementation of `_.toString` which doesn't convert nullish\\n     * values to empty strings.\\n     *\\n     * @private\\n     * @param {*} value The value to process.\\n     * @returns {string} Returns the string.\\n     */\\n    function baseToString(value) {\\n      // Exit early for strings to avoid a performance hit in some environments.\\n      if (typeof value == 'string') {\\n        return value;\\n      }\\n      if (isArray(value)) {\\n        // Recursively convert values (susceptible to call stack limits).\\n        return arrayMap(value, baseToString) + '';\\n      }\\n      if (isSymbol(value)) {\\n        return symbolToString ? symbolToString.call(value) : '';\\n      }\\n      var result = (value + '');\\n      return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.uniqBy` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new duplicate free array.\\n     */\\n    function baseUniq(array, iteratee, comparator) {\\n      var index = -1,\\n          includes = arrayIncludes,\\n          length = array.length,\\n          isCommon = true,\\n          result = [],\\n          seen = result;\\n\\n      if (comparator) {\\n        isCommon = false;\\n        includes = arrayIncludesWith;\\n      }\\n      else if (length >= LARGE_ARRAY_SIZE) {\\n        var set = iteratee ? null : createSet(array);\\n        if (set) {\\n          return setToArray(set);\\n        }\\n        isCommon = false;\\n        includes = cacheHas;\\n        seen = new SetCache;\\n      }\\n      else {\\n        seen = iteratee ? [] : result;\\n      }\\n      outer:\\n      while (++index < length) {\\n        var value = array[index],\\n            computed = iteratee ? iteratee(value) : value;\\n\\n        value = (comparator || value !== 0) ? value : 0;\\n        if (isCommon && computed === computed) {\\n          var seenIndex = seen.length;\\n          while (seenIndex--) {\\n            if (seen[seenIndex] === computed) {\\n              continue outer;\\n            }\\n          }\\n          if (iteratee) {\\n            seen.push(computed);\\n          }\\n          result.push(value);\\n        }\\n        else if (!includes(seen, computed, comparator)) {\\n          if (seen !== result) {\\n            seen.push(computed);\\n          }\\n          result.push(value);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.unset`.\\n     *\\n     * @private\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The property path to unset.\\n     * @returns {boolean} Returns `true` if the property is deleted, else `false`.\\n     */\\n    function baseUnset(object, path) {\\n      path = castPath(path, object);\\n      object = parent(object, path);\\n      return object == null || delete object[toKey(last(path))];\\n    }\\n\\n    /**\\n     * The base implementation of `_.update`.\\n     *\\n     * @private\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to update.\\n     * @param {Function} updater The function to produce the updated value.\\n     * @param {Function} [customizer] The function to customize path creation.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function baseUpdate(object, path, updater, customizer) {\\n      return baseSet(object, path, updater(baseGet(object, path)), customizer);\\n    }\\n\\n    /**\\n     * The base implementation of methods like `_.dropWhile` and `_.takeWhile`\\n     * without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array} array The array to query.\\n     * @param {Function} predicate The function invoked per iteration.\\n     * @param {boolean} [isDrop] Specify dropping elements instead of taking them.\\n     * @param {boolean} [fromRight] Specify iterating from right to left.\\n     * @returns {Array} Returns the slice of `array`.\\n     */\\n    function baseWhile(array, predicate, isDrop, fromRight) {\\n      var length = array.length,\\n          index = fromRight ? length : -1;\\n\\n      while ((fromRight ? index-- : ++index < length) &&\\n        predicate(array[index], index, array)) {}\\n\\n      return isDrop\\n        ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length))\\n        : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index));\\n    }\\n\\n    /**\\n     * The base implementation of `wrapperValue` which returns the result of\\n     * performing a sequence of actions on the unwrapped `value`, where each\\n     * successive action is supplied the return value of the previous.\\n     *\\n     * @private\\n     * @param {*} value The unwrapped value.\\n     * @param {Array} actions Actions to perform to resolve the unwrapped value.\\n     * @returns {*} Returns the resolved value.\\n     */\\n    function baseWrapperValue(value, actions) {\\n      var result = value;\\n      if (result instanceof LazyWrapper) {\\n        result = result.value();\\n      }\\n      return arrayReduce(actions, function(result, action) {\\n        return action.func.apply(action.thisArg, arrayPush([result], action.args));\\n      }, result);\\n    }\\n\\n    /**\\n     * The base implementation of methods like `_.xor`, without support for\\n     * iteratee shorthands, that accepts an array of arrays to inspect.\\n     *\\n     * @private\\n     * @param {Array} arrays The arrays to inspect.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of values.\\n     */\\n    function baseXor(arrays, iteratee, comparator) {\\n      var length = arrays.length;\\n      if (length < 2) {\\n        return length ? baseUniq(arrays[0]) : [];\\n      }\\n      var index = -1,\\n          result = Array(length);\\n\\n      while (++index < length) {\\n        var array = arrays[index],\\n            othIndex = -1;\\n\\n        while (++othIndex < length) {\\n          if (othIndex != index) {\\n            result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator);\\n          }\\n        }\\n      }\\n      return baseUniq(baseFlatten(result, 1), iteratee, comparator);\\n    }\\n\\n    /**\\n     * This base implementation of `_.zipObject` which assigns values using `assignFunc`.\\n     *\\n     * @private\\n     * @param {Array} props The property identifiers.\\n     * @param {Array} values The property values.\\n     * @param {Function} assignFunc The function to assign values.\\n     * @returns {Object} Returns the new object.\\n     */\\n    function baseZipObject(props, values, assignFunc) {\\n      var index = -1,\\n          length = props.length,\\n          valsLength = values.length,\\n          result = {};\\n\\n      while (++index < length) {\\n        var value = index < valsLength ? values[index] : undefined;\\n        assignFunc(result, props[index], value);\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Casts `value` to an empty array if it's not an array like object.\\n     *\\n     * @private\\n     * @param {*} value The value to inspect.\\n     * @returns {Array|Object} Returns the cast array-like object.\\n     */\\n    function castArrayLikeObject(value) {\\n      return isArrayLikeObject(value) ? value : [];\\n    }\\n\\n    /**\\n     * Casts `value` to `identity` if it's not a function.\\n     *\\n     * @private\\n     * @param {*} value The value to inspect.\\n     * @returns {Function} Returns cast function.\\n     */\\n    function castFunction(value) {\\n      return typeof value == 'function' ? value : identity;\\n    }\\n\\n    /**\\n     * Casts `value` to a path array if it's not one.\\n     *\\n     * @private\\n     * @param {*} value The value to inspect.\\n     * @param {Object} [object] The object to query keys on.\\n     * @returns {Array} Returns the cast property path array.\\n     */\\n    function castPath(value, object) {\\n      if (isArray(value)) {\\n        return value;\\n      }\\n      return isKey(value, object) ? [value] : stringToPath(toString(value));\\n    }\\n\\n    /**\\n     * A `baseRest` alias which can be replaced with `identity` by module\\n     * replacement plugins.\\n     *\\n     * @private\\n     * @type {Function}\\n     * @param {Function} func The function to apply a rest parameter to.\\n     * @returns {Function} Returns the new function.\\n     */\\n    var castRest = baseRest;\\n\\n    /**\\n     * Casts `array` to a slice if it's needed.\\n     *\\n     * @private\\n     * @param {Array} array The array to inspect.\\n     * @param {number} start The start position.\\n     * @param {number} [end=array.length] The end position.\\n     * @returns {Array} Returns the cast slice.\\n     */\\n    function castSlice(array, start, end) {\\n      var length = array.length;\\n      end = end === undefined ? length : end;\\n      return (!start && end >= length) ? array : baseSlice(array, start, end);\\n    }\\n\\n    /**\\n     * A simple wrapper around the global [`clearTimeout`](https://mdn.io/clearTimeout).\\n     *\\n     * @private\\n     * @param {number|Object} id The timer id or timeout object of the timer to clear.\\n     */\\n    var clearTimeout = ctxClearTimeout || function(id) {\\n      return root.clearTimeout(id);\\n    };\\n\\n    /**\\n     * Creates a clone of  `buffer`.\\n     *\\n     * @private\\n     * @param {Buffer} buffer The buffer to clone.\\n     * @param {boolean} [isDeep] Specify a deep clone.\\n     * @returns {Buffer} Returns the cloned buffer.\\n     */\\n    function cloneBuffer(buffer, isDeep) {\\n      if (isDeep) {\\n        return buffer.slice();\\n      }\\n      var length = buffer.length,\\n          result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);\\n\\n      buffer.copy(result);\\n      return result;\\n    }\\n\\n    /**\\n     * Creates a clone of `arrayBuffer`.\\n     *\\n     * @private\\n     * @param {ArrayBuffer} arrayBuffer The array buffer to clone.\\n     * @returns {ArrayBuffer} Returns the cloned array buffer.\\n     */\\n    function cloneArrayBuffer(arrayBuffer) {\\n      var result = new arrayBuffer.constructor(arrayBuffer.byteLength);\\n      new Uint8Array(result).set(new Uint8Array(arrayBuffer));\\n      return result;\\n    }\\n\\n    /**\\n     * Creates a clone of `dataView`.\\n     *\\n     * @private\\n     * @param {Object} dataView The data view to clone.\\n     * @param {boolean} [isDeep] Specify a deep clone.\\n     * @returns {Object} Returns the cloned data view.\\n     */\\n    function cloneDataView(dataView, isDeep) {\\n      var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer;\\n      return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);\\n    }\\n\\n    /**\\n     * Creates a clone of `regexp`.\\n     *\\n     * @private\\n     * @param {Object} regexp The regexp to clone.\\n     * @returns {Object} Returns the cloned regexp.\\n     */\\n    function cloneRegExp(regexp) {\\n      var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));\\n      result.lastIndex = regexp.lastIndex;\\n      return result;\\n    }\\n\\n    /**\\n     * Creates a clone of the `symbol` object.\\n     *\\n     * @private\\n     * @param {Object} symbol The symbol object to clone.\\n     * @returns {Object} Returns the cloned symbol object.\\n     */\\n    function cloneSymbol(symbol) {\\n      return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};\\n    }\\n\\n    /**\\n     * Creates a clone of `typedArray`.\\n     *\\n     * @private\\n     * @param {Object} typedArray The typed array to clone.\\n     * @param {boolean} [isDeep] Specify a deep clone.\\n     * @returns {Object} Returns the cloned typed array.\\n     */\\n    function cloneTypedArray(typedArray, isDeep) {\\n      var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;\\n      return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);\\n    }\\n\\n    /**\\n     * Compares values to sort them in ascending order.\\n     *\\n     * @private\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {number} Returns the sort order indicator for `value`.\\n     */\\n    function compareAscending(value, other) {\\n      if (value !== other) {\\n        var valIsDefined = value !== undefined,\\n            valIsNull = value === null,\\n            valIsReflexive = value === value,\\n            valIsSymbol = isSymbol(value);\\n\\n        var othIsDefined = other !== undefined,\\n            othIsNull = other === null,\\n            othIsReflexive = other === other,\\n            othIsSymbol = isSymbol(other);\\n\\n        if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) ||\\n            (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) ||\\n            (valIsNull && othIsDefined && othIsReflexive) ||\\n            (!valIsDefined && othIsReflexive) ||\\n            !valIsReflexive) {\\n          return 1;\\n        }\\n        if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) ||\\n            (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) ||\\n            (othIsNull && valIsDefined && valIsReflexive) ||\\n            (!othIsDefined && valIsReflexive) ||\\n            !othIsReflexive) {\\n          return -1;\\n        }\\n      }\\n      return 0;\\n    }\\n\\n    /**\\n     * Used by `_.orderBy` to compare multiple properties of a value to another\\n     * and stable sort them.\\n     *\\n     * If `orders` is unspecified, all values are sorted in ascending order. Otherwise,\\n     * specify an order of \\\"desc\\\" for descending or \\\"asc\\\" for ascending sort order\\n     * of corresponding values.\\n     *\\n     * @private\\n     * @param {Object} object The object to compare.\\n     * @param {Object} other The other object to compare.\\n     * @param {boolean[]|string[]} orders The order to sort by for each property.\\n     * @returns {number} Returns the sort order indicator for `object`.\\n     */\\n    function compareMultiple(object, other, orders) {\\n      var index = -1,\\n          objCriteria = object.criteria,\\n          othCriteria = other.criteria,\\n          length = objCriteria.length,\\n          ordersLength = orders.length;\\n\\n      while (++index < length) {\\n        var result = compareAscending(objCriteria[index], othCriteria[index]);\\n        if (result) {\\n          if (index >= ordersLength) {\\n            return result;\\n          }\\n          var order = orders[index];\\n          return result * (order == 'desc' ? -1 : 1);\\n        }\\n      }\\n      // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications\\n      // that causes it, under certain circumstances, to provide the same value for\\n      // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247\\n      // for more details.\\n      //\\n      // This also ensures a stable sort in V8 and other engines.\\n      // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details.\\n      return object.index - other.index;\\n    }\\n\\n    /**\\n     * Creates an array that is the composition of partially applied arguments,\\n     * placeholders, and provided arguments into a single array of arguments.\\n     *\\n     * @private\\n     * @param {Array} args The provided arguments.\\n     * @param {Array} partials The arguments to prepend to those provided.\\n     * @param {Array} holders The `partials` placeholder indexes.\\n     * @params {boolean} [isCurried] Specify composing for a curried function.\\n     * @returns {Array} Returns the new array of composed arguments.\\n     */\\n    function composeArgs(args, partials, holders, isCurried) {\\n      var argsIndex = -1,\\n          argsLength = args.length,\\n          holdersLength = holders.length,\\n          leftIndex = -1,\\n          leftLength = partials.length,\\n          rangeLength = nativeMax(argsLength - holdersLength, 0),\\n          result = Array(leftLength + rangeLength),\\n          isUncurried = !isCurried;\\n\\n      while (++leftIndex < leftLength) {\\n        result[leftIndex] = partials[leftIndex];\\n      }\\n      while (++argsIndex < holdersLength) {\\n        if (isUncurried || argsIndex < argsLength) {\\n          result[holders[argsIndex]] = args[argsIndex];\\n        }\\n      }\\n      while (rangeLength--) {\\n        result[leftIndex++] = args[argsIndex++];\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * This function is like `composeArgs` except that the arguments composition\\n     * is tailored for `_.partialRight`.\\n     *\\n     * @private\\n     * @param {Array} args The provided arguments.\\n     * @param {Array} partials The arguments to append to those provided.\\n     * @param {Array} holders The `partials` placeholder indexes.\\n     * @params {boolean} [isCurried] Specify composing for a curried function.\\n     * @returns {Array} Returns the new array of composed arguments.\\n     */\\n    function composeArgsRight(args, partials, holders, isCurried) {\\n      var argsIndex = -1,\\n          argsLength = args.length,\\n          holdersIndex = -1,\\n          holdersLength = holders.length,\\n          rightIndex = -1,\\n          rightLength = partials.length,\\n          rangeLength = nativeMax(argsLength - holdersLength, 0),\\n          result = Array(rangeLength + rightLength),\\n          isUncurried = !isCurried;\\n\\n      while (++argsIndex < rangeLength) {\\n        result[argsIndex] = args[argsIndex];\\n      }\\n      var offset = argsIndex;\\n      while (++rightIndex < rightLength) {\\n        result[offset + rightIndex] = partials[rightIndex];\\n      }\\n      while (++holdersIndex < holdersLength) {\\n        if (isUncurried || argsIndex < argsLength) {\\n          result[offset + holders[holdersIndex]] = args[argsIndex++];\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Copies the values of `source` to `array`.\\n     *\\n     * @private\\n     * @param {Array} source The array to copy values from.\\n     * @param {Array} [array=[]] The array to copy values to.\\n     * @returns {Array} Returns `array`.\\n     */\\n    function copyArray(source, array) {\\n      var index = -1,\\n          length = source.length;\\n\\n      array || (array = Array(length));\\n      while (++index < length) {\\n        array[index] = source[index];\\n      }\\n      return array;\\n    }\\n\\n    /**\\n     * Copies properties of `source` to `object`.\\n     *\\n     * @private\\n     * @param {Object} source The object to copy properties from.\\n     * @param {Array} props The property identifiers to copy.\\n     * @param {Object} [object={}] The object to copy properties to.\\n     * @param {Function} [customizer] The function to customize copied values.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function copyObject(source, props, object, customizer) {\\n      var isNew = !object;\\n      object || (object = {});\\n\\n      var index = -1,\\n          length = props.length;\\n\\n      while (++index < length) {\\n        var key = props[index];\\n\\n        var newValue = customizer\\n          ? customizer(object[key], source[key], key, object, source)\\n          : undefined;\\n\\n        if (newValue === undefined) {\\n          newValue = source[key];\\n        }\\n        if (isNew) {\\n          baseAssignValue(object, key, newValue);\\n        } else {\\n          assignValue(object, key, newValue);\\n        }\\n      }\\n      return object;\\n    }\\n\\n    /**\\n     * Copies own symbols of `source` to `object`.\\n     *\\n     * @private\\n     * @param {Object} source The object to copy symbols from.\\n     * @param {Object} [object={}] The object to copy symbols to.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function copySymbols(source, object) {\\n      return copyObject(source, getSymbols(source), object);\\n    }\\n\\n    /**\\n     * Copies own and inherited symbols of `source` to `object`.\\n     *\\n     * @private\\n     * @param {Object} source The object to copy symbols from.\\n     * @param {Object} [object={}] The object to copy symbols to.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function copySymbolsIn(source, object) {\\n      return copyObject(source, getSymbolsIn(source), object);\\n    }\\n\\n    /**\\n     * Creates a function like `_.groupBy`.\\n     *\\n     * @private\\n     * @param {Function} setter The function to set accumulator values.\\n     * @param {Function} [initializer] The accumulator object initializer.\\n     * @returns {Function} Returns the new aggregator function.\\n     */\\n    function createAggregator(setter, initializer) {\\n      return function(collection, iteratee) {\\n        var func = isArray(collection) ? arrayAggregator : baseAggregator,\\n            accumulator = initializer ? initializer() : {};\\n\\n        return func(collection, setter, getIteratee(iteratee, 2), accumulator);\\n      };\\n    }\\n\\n    /**\\n     * Creates a function like `_.assign`.\\n     *\\n     * @private\\n     * @param {Function} assigner The function to assign values.\\n     * @returns {Function} Returns the new assigner function.\\n     */\\n    function createAssigner(assigner) {\\n      return baseRest(function(object, sources) {\\n        var index = -1,\\n            length = sources.length,\\n            customizer = length > 1 ? sources[length - 1] : undefined,\\n            guard = length > 2 ? sources[2] : undefined;\\n\\n        customizer = (assigner.length > 3 && typeof customizer == 'function')\\n          ? (length--, customizer)\\n          : undefined;\\n\\n        if (guard && isIterateeCall(sources[0], sources[1], guard)) {\\n          customizer = length < 3 ? undefined : customizer;\\n          length = 1;\\n        }\\n        object = Object(object);\\n        while (++index < length) {\\n          var source = sources[index];\\n          if (source) {\\n            assigner(object, source, index, customizer);\\n          }\\n        }\\n        return object;\\n      });\\n    }\\n\\n    /**\\n     * Creates a `baseEach` or `baseEachRight` function.\\n     *\\n     * @private\\n     * @param {Function} eachFunc The function to iterate over a collection.\\n     * @param {boolean} [fromRight] Specify iterating from right to left.\\n     * @returns {Function} Returns the new base function.\\n     */\\n    function createBaseEach(eachFunc, fromRight) {\\n      return function(collection, iteratee) {\\n        if (collection == null) {\\n          return collection;\\n        }\\n        if (!isArrayLike(collection)) {\\n          return eachFunc(collection, iteratee);\\n        }\\n        var length = collection.length,\\n            index = fromRight ? length : -1,\\n            iterable = Object(collection);\\n\\n        while ((fromRight ? index-- : ++index < length)) {\\n          if (iteratee(iterable[index], index, iterable) === false) {\\n            break;\\n          }\\n        }\\n        return collection;\\n      };\\n    }\\n\\n    /**\\n     * Creates a base function for methods like `_.forIn` and `_.forOwn`.\\n     *\\n     * @private\\n     * @param {boolean} [fromRight] Specify iterating from right to left.\\n     * @returns {Function} Returns the new base function.\\n     */\\n    function createBaseFor(fromRight) {\\n      return function(object, iteratee, keysFunc) {\\n        var index = -1,\\n            iterable = Object(object),\\n            props = keysFunc(object),\\n            length = props.length;\\n\\n        while (length--) {\\n          var key = props[fromRight ? length : ++index];\\n          if (iteratee(iterable[key], key, iterable) === false) {\\n            break;\\n          }\\n        }\\n        return object;\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that wraps `func` to invoke it with the optional `this`\\n     * binding of `thisArg`.\\n     *\\n     * @private\\n     * @param {Function} func The function to wrap.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @param {*} [thisArg] The `this` binding of `func`.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createBind(func, bitmask, thisArg) {\\n      var isBind = bitmask & WRAP_BIND_FLAG,\\n          Ctor = createCtor(func);\\n\\n      function wrapper() {\\n        var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;\\n        return fn.apply(isBind ? thisArg : this, arguments);\\n      }\\n      return wrapper;\\n    }\\n\\n    /**\\n     * Creates a function like `_.lowerFirst`.\\n     *\\n     * @private\\n     * @param {string} methodName The name of the `String` case method to use.\\n     * @returns {Function} Returns the new case function.\\n     */\\n    function createCaseFirst(methodName) {\\n      return function(string) {\\n        string = toString(string);\\n\\n        var strSymbols = hasUnicode(string)\\n          ? stringToArray(string)\\n          : undefined;\\n\\n        var chr = strSymbols\\n          ? strSymbols[0]\\n          : string.charAt(0);\\n\\n        var trailing = strSymbols\\n          ? castSlice(strSymbols, 1).join('')\\n          : string.slice(1);\\n\\n        return chr[methodName]() + trailing;\\n      };\\n    }\\n\\n    /**\\n     * Creates a function like `_.camelCase`.\\n     *\\n     * @private\\n     * @param {Function} callback The function to combine each word.\\n     * @returns {Function} Returns the new compounder function.\\n     */\\n    function createCompounder(callback) {\\n      return function(string) {\\n        return arrayReduce(words(deburr(string).replace(reApos, '')), callback, '');\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that produces an instance of `Ctor` regardless of\\n     * whether it was invoked as part of a `new` expression or by `call` or `apply`.\\n     *\\n     * @private\\n     * @param {Function} Ctor The constructor to wrap.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createCtor(Ctor) {\\n      return function() {\\n        // Use a `switch` statement to work with class constructors. See\\n        // http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist\\n        // for more details.\\n        var args = arguments;\\n        switch (args.length) {\\n          case 0: return new Ctor;\\n          case 1: return new Ctor(args[0]);\\n          case 2: return new Ctor(args[0], args[1]);\\n          case 3: return new Ctor(args[0], args[1], args[2]);\\n          case 4: return new Ctor(args[0], args[1], args[2], args[3]);\\n          case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]);\\n          case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]);\\n          case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);\\n        }\\n        var thisBinding = baseCreate(Ctor.prototype),\\n            result = Ctor.apply(thisBinding, args);\\n\\n        // Mimic the constructor's `return` behavior.\\n        // See https://es5.github.io/#x13.2.2 for more details.\\n        return isObject(result) ? result : thisBinding;\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that wraps `func` to enable currying.\\n     *\\n     * @private\\n     * @param {Function} func The function to wrap.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @param {number} arity The arity of `func`.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createCurry(func, bitmask, arity) {\\n      var Ctor = createCtor(func);\\n\\n      function wrapper() {\\n        var length = arguments.length,\\n            args = Array(length),\\n            index = length,\\n            placeholder = getHolder(wrapper);\\n\\n        while (index--) {\\n          args[index] = arguments[index];\\n        }\\n        var holders = (length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder)\\n          ? []\\n          : replaceHolders(args, placeholder);\\n\\n        length -= holders.length;\\n        if (length < arity) {\\n          return createRecurry(\\n            func, bitmask, createHybrid, wrapper.placeholder, undefined,\\n            args, holders, undefined, undefined, arity - length);\\n        }\\n        var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;\\n        return apply(fn, this, args);\\n      }\\n      return wrapper;\\n    }\\n\\n    /**\\n     * Creates a `_.find` or `_.findLast` function.\\n     *\\n     * @private\\n     * @param {Function} findIndexFunc The function to find the collection index.\\n     * @returns {Function} Returns the new find function.\\n     */\\n    function createFind(findIndexFunc) {\\n      return function(collection, predicate, fromIndex) {\\n        var iterable = Object(collection);\\n        if (!isArrayLike(collection)) {\\n          var iteratee = getIteratee(predicate, 3);\\n          collection = keys(collection);\\n          predicate = function(key) { return iteratee(iterable[key], key, iterable); };\\n        }\\n        var index = findIndexFunc(collection, predicate, fromIndex);\\n        return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined;\\n      };\\n    }\\n\\n    /**\\n     * Creates a `_.flow` or `_.flowRight` function.\\n     *\\n     * @private\\n     * @param {boolean} [fromRight] Specify iterating from right to left.\\n     * @returns {Function} Returns the new flow function.\\n     */\\n    function createFlow(fromRight) {\\n      return flatRest(function(funcs) {\\n        var length = funcs.length,\\n            index = length,\\n            prereq = LodashWrapper.prototype.thru;\\n\\n        if (fromRight) {\\n          funcs.reverse();\\n        }\\n        while (index--) {\\n          var func = funcs[index];\\n          if (typeof func != 'function') {\\n            throw new TypeError(FUNC_ERROR_TEXT);\\n          }\\n          if (prereq && !wrapper && getFuncName(func) == 'wrapper') {\\n            var wrapper = new LodashWrapper([], true);\\n          }\\n        }\\n        index = wrapper ? index : length;\\n        while (++index < length) {\\n          func = funcs[index];\\n\\n          var funcName = getFuncName(func),\\n              data = funcName == 'wrapper' ? getData(func) : undefined;\\n\\n          if (data && isLaziable(data[0]) &&\\n                data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) &&\\n                !data[4].length && data[9] == 1\\n              ) {\\n            wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]);\\n          } else {\\n            wrapper = (func.length == 1 && isLaziable(func))\\n              ? wrapper[funcName]()\\n              : wrapper.thru(func);\\n          }\\n        }\\n        return function() {\\n          var args = arguments,\\n              value = args[0];\\n\\n          if (wrapper && args.length == 1 && isArray(value)) {\\n            return wrapper.plant(value).value();\\n          }\\n          var index = 0,\\n              result = length ? funcs[index].apply(this, args) : value;\\n\\n          while (++index < length) {\\n            result = funcs[index].call(this, result);\\n          }\\n          return result;\\n        };\\n      });\\n    }\\n\\n    /**\\n     * Creates a function that wraps `func` to invoke it with optional `this`\\n     * binding of `thisArg`, partial application, and currying.\\n     *\\n     * @private\\n     * @param {Function|string} func The function or method name to wrap.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @param {*} [thisArg] The `this` binding of `func`.\\n     * @param {Array} [partials] The arguments to prepend to those provided to\\n     *  the new function.\\n     * @param {Array} [holders] The `partials` placeholder indexes.\\n     * @param {Array} [partialsRight] The arguments to append to those provided\\n     *  to the new function.\\n     * @param {Array} [holdersRight] The `partialsRight` placeholder indexes.\\n     * @param {Array} [argPos] The argument positions of the new function.\\n     * @param {number} [ary] The arity cap of `func`.\\n     * @param {number} [arity] The arity of `func`.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) {\\n      var isAry = bitmask & WRAP_ARY_FLAG,\\n          isBind = bitmask & WRAP_BIND_FLAG,\\n          isBindKey = bitmask & WRAP_BIND_KEY_FLAG,\\n          isCurried = bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG),\\n          isFlip = bitmask & WRAP_FLIP_FLAG,\\n          Ctor = isBindKey ? undefined : createCtor(func);\\n\\n      function wrapper() {\\n        var length = arguments.length,\\n            args = Array(length),\\n            index = length;\\n\\n        while (index--) {\\n          args[index] = arguments[index];\\n        }\\n        if (isCurried) {\\n          var placeholder = getHolder(wrapper),\\n              holdersCount = countHolders(args, placeholder);\\n        }\\n        if (partials) {\\n          args = composeArgs(args, partials, holders, isCurried);\\n        }\\n        if (partialsRight) {\\n          args = composeArgsRight(args, partialsRight, holdersRight, isCurried);\\n        }\\n        length -= holdersCount;\\n        if (isCurried && length < arity) {\\n          var newHolders = replaceHolders(args, placeholder);\\n          return createRecurry(\\n            func, bitmask, createHybrid, wrapper.placeholder, thisArg,\\n            args, newHolders, argPos, ary, arity - length\\n          );\\n        }\\n        var thisBinding = isBind ? thisArg : this,\\n            fn = isBindKey ? thisBinding[func] : func;\\n\\n        length = args.length;\\n        if (argPos) {\\n          args = reorder(args, argPos);\\n        } else if (isFlip && length > 1) {\\n          args.reverse();\\n        }\\n        if (isAry && ary < length) {\\n          args.length = ary;\\n        }\\n        if (this && this !== root && this instanceof wrapper) {\\n          fn = Ctor || createCtor(fn);\\n        }\\n        return fn.apply(thisBinding, args);\\n      }\\n      return wrapper;\\n    }\\n\\n    /**\\n     * Creates a function like `_.invertBy`.\\n     *\\n     * @private\\n     * @param {Function} setter The function to set accumulator values.\\n     * @param {Function} toIteratee The function to resolve iteratees.\\n     * @returns {Function} Returns the new inverter function.\\n     */\\n    function createInverter(setter, toIteratee) {\\n      return function(object, iteratee) {\\n        return baseInverter(object, setter, toIteratee(iteratee), {});\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that performs a mathematical operation on two values.\\n     *\\n     * @private\\n     * @param {Function} operator The function to perform the operation.\\n     * @param {number} [defaultValue] The value used for `undefined` arguments.\\n     * @returns {Function} Returns the new mathematical operation function.\\n     */\\n    function createMathOperation(operator, defaultValue) {\\n      return function(value, other) {\\n        var result;\\n        if (value === undefined && other === undefined) {\\n          return defaultValue;\\n        }\\n        if (value !== undefined) {\\n          result = value;\\n        }\\n        if (other !== undefined) {\\n          if (result === undefined) {\\n            return other;\\n          }\\n          if (typeof value == 'string' || typeof other == 'string') {\\n            value = baseToString(value);\\n            other = baseToString(other);\\n          } else {\\n            value = baseToNumber(value);\\n            other = baseToNumber(other);\\n          }\\n          result = operator(value, other);\\n        }\\n        return result;\\n      };\\n    }\\n\\n    /**\\n     * Creates a function like `_.over`.\\n     *\\n     * @private\\n     * @param {Function} arrayFunc The function to iterate over iteratees.\\n     * @returns {Function} Returns the new over function.\\n     */\\n    function createOver(arrayFunc) {\\n      return flatRest(function(iteratees) {\\n        iteratees = arrayMap(iteratees, baseUnary(getIteratee()));\\n        return baseRest(function(args) {\\n          var thisArg = this;\\n          return arrayFunc(iteratees, function(iteratee) {\\n            return apply(iteratee, thisArg, args);\\n          });\\n        });\\n      });\\n    }\\n\\n    /**\\n     * Creates the padding for `string` based on `length`. The `chars` string\\n     * is truncated if the number of characters exceeds `length`.\\n     *\\n     * @private\\n     * @param {number} length The padding length.\\n     * @param {string} [chars=' '] The string used as padding.\\n     * @returns {string} Returns the padding for `string`.\\n     */\\n    function createPadding(length, chars) {\\n      chars = chars === undefined ? ' ' : baseToString(chars);\\n\\n      var charsLength = chars.length;\\n      if (charsLength < 2) {\\n        return charsLength ? baseRepeat(chars, length) : chars;\\n      }\\n      var result = baseRepeat(chars, nativeCeil(length / stringSize(chars)));\\n      return hasUnicode(chars)\\n        ? castSlice(stringToArray(result), 0, length).join('')\\n        : result.slice(0, length);\\n    }\\n\\n    /**\\n     * Creates a function that wraps `func` to invoke it with the `this` binding\\n     * of `thisArg` and `partials` prepended to the arguments it receives.\\n     *\\n     * @private\\n     * @param {Function} func The function to wrap.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @param {*} thisArg The `this` binding of `func`.\\n     * @param {Array} partials The arguments to prepend to those provided to\\n     *  the new function.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createPartial(func, bitmask, thisArg, partials) {\\n      var isBind = bitmask & WRAP_BIND_FLAG,\\n          Ctor = createCtor(func);\\n\\n      function wrapper() {\\n        var argsIndex = -1,\\n            argsLength = arguments.length,\\n            leftIndex = -1,\\n            leftLength = partials.length,\\n            args = Array(leftLength + argsLength),\\n            fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;\\n\\n        while (++leftIndex < leftLength) {\\n          args[leftIndex] = partials[leftIndex];\\n        }\\n        while (argsLength--) {\\n          args[leftIndex++] = arguments[++argsIndex];\\n        }\\n        return apply(fn, isBind ? thisArg : this, args);\\n      }\\n      return wrapper;\\n    }\\n\\n    /**\\n     * Creates a `_.range` or `_.rangeRight` function.\\n     *\\n     * @private\\n     * @param {boolean} [fromRight] Specify iterating from right to left.\\n     * @returns {Function} Returns the new range function.\\n     */\\n    function createRange(fromRight) {\\n      return function(start, end, step) {\\n        if (step && typeof step != 'number' && isIterateeCall(start, end, step)) {\\n          end = step = undefined;\\n        }\\n        // Ensure the sign of `-0` is preserved.\\n        start = toFinite(start);\\n        if (end === undefined) {\\n          end = start;\\n          start = 0;\\n        } else {\\n          end = toFinite(end);\\n        }\\n        step = step === undefined ? (start < end ? 1 : -1) : toFinite(step);\\n        return baseRange(start, end, step, fromRight);\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that performs a relational operation on two values.\\n     *\\n     * @private\\n     * @param {Function} operator The function to perform the operation.\\n     * @returns {Function} Returns the new relational operation function.\\n     */\\n    function createRelationalOperation(operator) {\\n      return function(value, other) {\\n        if (!(typeof value == 'string' && typeof other == 'string')) {\\n          value = toNumber(value);\\n          other = toNumber(other);\\n        }\\n        return operator(value, other);\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that wraps `func` to continue currying.\\n     *\\n     * @private\\n     * @param {Function} func The function to wrap.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @param {Function} wrapFunc The function to create the `func` wrapper.\\n     * @param {*} placeholder The placeholder value.\\n     * @param {*} [thisArg] The `this` binding of `func`.\\n     * @param {Array} [partials] The arguments to prepend to those provided to\\n     *  the new function.\\n     * @param {Array} [holders] The `partials` placeholder indexes.\\n     * @param {Array} [argPos] The argument positions of the new function.\\n     * @param {number} [ary] The arity cap of `func`.\\n     * @param {number} [arity] The arity of `func`.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) {\\n      var isCurry = bitmask & WRAP_CURRY_FLAG,\\n          newHolders = isCurry ? holders : undefined,\\n          newHoldersRight = isCurry ? undefined : holders,\\n          newPartials = isCurry ? partials : undefined,\\n          newPartialsRight = isCurry ? undefined : partials;\\n\\n      bitmask |= (isCurry ? WRAP_PARTIAL_FLAG : WRAP_PARTIAL_RIGHT_FLAG);\\n      bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG : WRAP_PARTIAL_FLAG);\\n\\n      if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) {\\n        bitmask &= ~(WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG);\\n      }\\n      var newData = [\\n        func, bitmask, thisArg, newPartials, newHolders, newPartialsRight,\\n        newHoldersRight, argPos, ary, arity\\n      ];\\n\\n      var result = wrapFunc.apply(undefined, newData);\\n      if (isLaziable(func)) {\\n        setData(result, newData);\\n      }\\n      result.placeholder = placeholder;\\n      return setWrapToString(result, func, bitmask);\\n    }\\n\\n    /**\\n     * Creates a function like `_.round`.\\n     *\\n     * @private\\n     * @param {string} methodName The name of the `Math` method to use when rounding.\\n     * @returns {Function} Returns the new round function.\\n     */\\n    function createRound(methodName) {\\n      var func = Math[methodName];\\n      return function(number, precision) {\\n        number = toNumber(number);\\n        precision = precision == null ? 0 : nativeMin(toInteger(precision), 292);\\n        if (precision && nativeIsFinite(number)) {\\n          // Shift with exponential notation to avoid floating-point issues.\\n          // See [MDN](https://mdn.io/round#Examples) for more details.\\n          var pair = (toString(number) + 'e').split('e'),\\n              value = func(pair[0] + 'e' + (+pair[1] + precision));\\n\\n          pair = (toString(value) + 'e').split('e');\\n          return +(pair[0] + 'e' + (+pair[1] - precision));\\n        }\\n        return func(number);\\n      };\\n    }\\n\\n    /**\\n     * Creates a set object of `values`.\\n     *\\n     * @private\\n     * @param {Array} values The values to add to the set.\\n     * @returns {Object} Returns the new set.\\n     */\\n    var createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) {\\n      return new Set(values);\\n    };\\n\\n    /**\\n     * Creates a `_.toPairs` or `_.toPairsIn` function.\\n     *\\n     * @private\\n     * @param {Function} keysFunc The function to get the keys of a given object.\\n     * @returns {Function} Returns the new pairs function.\\n     */\\n    function createToPairs(keysFunc) {\\n      return function(object) {\\n        var tag = getTag(object);\\n        if (tag == mapTag) {\\n          return mapToArray(object);\\n        }\\n        if (tag == setTag) {\\n          return setToPairs(object);\\n        }\\n        return baseToPairs(object, keysFunc(object));\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that either curries or invokes `func` with optional\\n     * `this` binding and partially applied arguments.\\n     *\\n     * @private\\n     * @param {Function|string} func The function or method name to wrap.\\n     * @param {number} bitmask The bitmask flags.\\n     *    1 - `_.bind`\\n     *    2 - `_.bindKey`\\n     *    4 - `_.curry` or `_.curryRight` of a bound function\\n     *    8 - `_.curry`\\n     *   16 - `_.curryRight`\\n     *   32 - `_.partial`\\n     *   64 - `_.partialRight`\\n     *  128 - `_.rearg`\\n     *  256 - `_.ary`\\n     *  512 - `_.flip`\\n     * @param {*} [thisArg] The `this` binding of `func`.\\n     * @param {Array} [partials] The arguments to be partially applied.\\n     * @param {Array} [holders] The `partials` placeholder indexes.\\n     * @param {Array} [argPos] The argument positions of the new function.\\n     * @param {number} [ary] The arity cap of `func`.\\n     * @param {number} [arity] The arity of `func`.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) {\\n      var isBindKey = bitmask & WRAP_BIND_KEY_FLAG;\\n      if (!isBindKey && typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      var length = partials ? partials.length : 0;\\n      if (!length) {\\n        bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG);\\n        partials = holders = undefined;\\n      }\\n      ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0);\\n      arity = arity === undefined ? arity : toInteger(arity);\\n      length -= holders ? holders.length : 0;\\n\\n      if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) {\\n        var partialsRight = partials,\\n            holdersRight = holders;\\n\\n        partials = holders = undefined;\\n      }\\n      var data = isBindKey ? undefined : getData(func);\\n\\n      var newData = [\\n        func, bitmask, thisArg, partials, holders, partialsRight, holdersRight,\\n        argPos, ary, arity\\n      ];\\n\\n      if (data) {\\n        mergeData(newData, data);\\n      }\\n      func = newData[0];\\n      bitmask = newData[1];\\n      thisArg = newData[2];\\n      partials = newData[3];\\n      holders = newData[4];\\n      arity = newData[9] = newData[9] === undefined\\n        ? (isBindKey ? 0 : func.length)\\n        : nativeMax(newData[9] - length, 0);\\n\\n      if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) {\\n        bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG);\\n      }\\n      if (!bitmask || bitmask == WRAP_BIND_FLAG) {\\n        var result = createBind(func, bitmask, thisArg);\\n      } else if (bitmask == WRAP_CURRY_FLAG || bitmask == WRAP_CURRY_RIGHT_FLAG) {\\n        result = createCurry(func, bitmask, arity);\\n      } else if ((bitmask == WRAP_PARTIAL_FLAG || bitmask == (WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG)) && !holders.length) {\\n        result = createPartial(func, bitmask, thisArg, partials);\\n      } else {\\n        result = createHybrid.apply(undefined, newData);\\n      }\\n      var setter = data ? baseSetData : setData;\\n      return setWrapToString(setter(result, newData), func, bitmask);\\n    }\\n\\n    /**\\n     * Used by `_.defaults` to customize its `_.assignIn` use to assign properties\\n     * of source objects to the destination object for all destination properties\\n     * that resolve to `undefined`.\\n     *\\n     * @private\\n     * @param {*} objValue The destination value.\\n     * @param {*} srcValue The source value.\\n     * @param {string} key The key of the property to assign.\\n     * @param {Object} object The parent object of `objValue`.\\n     * @returns {*} Returns the value to assign.\\n     */\\n    function customDefaultsAssignIn(objValue, srcValue, key, object) {\\n      if (objValue === undefined ||\\n          (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) {\\n        return srcValue;\\n      }\\n      return objValue;\\n    }\\n\\n    /**\\n     * Used by `_.defaultsDeep` to customize its `_.merge` use to merge source\\n     * objects into destination objects that are passed thru.\\n     *\\n     * @private\\n     * @param {*} objValue The destination value.\\n     * @param {*} srcValue The source value.\\n     * @param {string} key The key of the property to merge.\\n     * @param {Object} object The parent object of `objValue`.\\n     * @param {Object} source The parent object of `srcValue`.\\n     * @param {Object} [stack] Tracks traversed source values and their merged\\n     *  counterparts.\\n     * @returns {*} Returns the value to assign.\\n     */\\n    function customDefaultsMerge(objValue, srcValue, key, object, source, stack) {\\n      if (isObject(objValue) && isObject(srcValue)) {\\n        // Recursively merge objects and arrays (susceptible to call stack limits).\\n        stack.set(srcValue, objValue);\\n        baseMerge(objValue, srcValue, undefined, customDefaultsMerge, stack);\\n        stack['delete'](srcValue);\\n      }\\n      return objValue;\\n    }\\n\\n    /**\\n     * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain\\n     * objects.\\n     *\\n     * @private\\n     * @param {*} value The value to inspect.\\n     * @param {string} key The key of the property to inspect.\\n     * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.\\n     */\\n    function customOmitClone(value) {\\n      return isPlainObject(value) ? undefined : value;\\n    }\\n\\n    /**\\n     * A specialized version of `baseIsEqualDeep` for arrays with support for\\n     * partial deep comparisons.\\n     *\\n     * @private\\n     * @param {Array} array The array to compare.\\n     * @param {Array} other The other array to compare.\\n     * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\\n     * @param {Function} customizer The function to customize comparisons.\\n     * @param {Function} equalFunc The function to determine equivalents of values.\\n     * @param {Object} stack Tracks traversed `array` and `other` objects.\\n     * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.\\n     */\\n    function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {\\n      var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\\n          arrLength = array.length,\\n          othLength = other.length;\\n\\n      if (arrLength != othLength && !(isPartial && othLength > arrLength)) {\\n        return false;\\n      }\\n      // Check that cyclic values are equal.\\n      var arrStacked = stack.get(array);\\n      var othStacked = stack.get(other);\\n      if (arrStacked && othStacked) {\\n        return arrStacked == other && othStacked == array;\\n      }\\n      var index = -1,\\n          result = true,\\n          seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined;\\n\\n      stack.set(array, other);\\n      stack.set(other, array);\\n\\n      // Ignore non-index properties.\\n      while (++index < arrLength) {\\n        var arrValue = array[index],\\n            othValue = other[index];\\n\\n        if (customizer) {\\n          var compared = isPartial\\n            ? customizer(othValue, arrValue, index, other, array, stack)\\n            : customizer(arrValue, othValue, index, array, other, stack);\\n        }\\n        if (compared !== undefined) {\\n          if (compared) {\\n            continue;\\n          }\\n          result = false;\\n          break;\\n        }\\n        // Recursively compare arrays (susceptible to call stack limits).\\n        if (seen) {\\n          if (!arraySome(other, function(othValue, othIndex) {\\n                if (!cacheHas(seen, othIndex) &&\\n                    (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {\\n                  return seen.push(othIndex);\\n                }\\n              })) {\\n            result = false;\\n            break;\\n          }\\n        } else if (!(\\n              arrValue === othValue ||\\n                equalFunc(arrValue, othValue, bitmask, customizer, stack)\\n            )) {\\n          result = false;\\n          break;\\n        }\\n      }\\n      stack['delete'](array);\\n      stack['delete'](other);\\n      return result;\\n    }\\n\\n    /**\\n     * A specialized version of `baseIsEqualDeep` for comparing objects of\\n     * the same `toStringTag`.\\n     *\\n     * **Note:** This function only supports comparing values with tags of\\n     * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.\\n     *\\n     * @private\\n     * @param {Object} object The object to compare.\\n     * @param {Object} other The other object to compare.\\n     * @param {string} tag The `toStringTag` of the objects to compare.\\n     * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\\n     * @param {Function} customizer The function to customize comparisons.\\n     * @param {Function} equalFunc The function to determine equivalents of values.\\n     * @param {Object} stack Tracks traversed `object` and `other` objects.\\n     * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\\n     */\\n    function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {\\n      switch (tag) {\\n        case dataViewTag:\\n          if ((object.byteLength != other.byteLength) ||\\n              (object.byteOffset != other.byteOffset)) {\\n            return false;\\n          }\\n          object = object.buffer;\\n          other = other.buffer;\\n\\n        case arrayBufferTag:\\n          if ((object.byteLength != other.byteLength) ||\\n              !equalFunc(new Uint8Array(object), new Uint8Array(other))) {\\n            return false;\\n          }\\n          return true;\\n\\n        case boolTag:\\n        case dateTag:\\n        case numberTag:\\n          // Coerce booleans to `1` or `0` and dates to milliseconds.\\n          // Invalid dates are coerced to `NaN`.\\n          return eq(+object, +other);\\n\\n        case errorTag:\\n          return object.name == other.name && object.message == other.message;\\n\\n        case regexpTag:\\n        case stringTag:\\n          // Coerce regexes to strings and treat strings, primitives and objects,\\n          // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring\\n          // for more details.\\n          return object == (other + '');\\n\\n        case mapTag:\\n          var convert = mapToArray;\\n\\n        case setTag:\\n          var isPartial = bitmask & COMPARE_PARTIAL_FLAG;\\n          convert || (convert = setToArray);\\n\\n          if (object.size != other.size && !isPartial) {\\n            return false;\\n          }\\n          // Assume cyclic values are equal.\\n          var stacked = stack.get(object);\\n          if (stacked) {\\n            return stacked == other;\\n          }\\n          bitmask |= COMPARE_UNORDERED_FLAG;\\n\\n          // Recursively compare objects (susceptible to call stack limits).\\n          stack.set(object, other);\\n          var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);\\n          stack['delete'](object);\\n          return result;\\n\\n        case symbolTag:\\n          if (symbolValueOf) {\\n            return symbolValueOf.call(object) == symbolValueOf.call(other);\\n          }\\n      }\\n      return false;\\n    }\\n\\n    /**\\n     * A specialized version of `baseIsEqualDeep` for objects with support for\\n     * partial deep comparisons.\\n     *\\n     * @private\\n     * @param {Object} object The object to compare.\\n     * @param {Object} other The other object to compare.\\n     * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\\n     * @param {Function} customizer The function to customize comparisons.\\n     * @param {Function} equalFunc The function to determine equivalents of values.\\n     * @param {Object} stack Tracks traversed `object` and `other` objects.\\n     * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\\n     */\\n    function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {\\n      var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\\n          objProps = getAllKeys(object),\\n          objLength = objProps.length,\\n          othProps = getAllKeys(other),\\n          othLength = othProps.length;\\n\\n      if (objLength != othLength && !isPartial) {\\n        return false;\\n      }\\n      var index = objLength;\\n      while (index--) {\\n        var key = objProps[index];\\n        if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {\\n          return false;\\n        }\\n      }\\n      // Check that cyclic values are equal.\\n      var objStacked = stack.get(object);\\n      var othStacked = stack.get(other);\\n      if (objStacked && othStacked) {\\n        return objStacked == other && othStacked == object;\\n      }\\n      var result = true;\\n      stack.set(object, other);\\n      stack.set(other, object);\\n\\n      var skipCtor = isPartial;\\n      while (++index < objLength) {\\n        key = objProps[index];\\n        var objValue = object[key],\\n            othValue = other[key];\\n\\n        if (customizer) {\\n          var compared = isPartial\\n            ? customizer(othValue, objValue, key, other, object, stack)\\n            : customizer(objValue, othValue, key, object, other, stack);\\n        }\\n        // Recursively compare objects (susceptible to call stack limits).\\n        if (!(compared === undefined\\n              ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack))\\n              : compared\\n            )) {\\n          result = false;\\n          break;\\n        }\\n        skipCtor || (skipCtor = key == 'constructor');\\n      }\\n      if (result && !skipCtor) {\\n        var objCtor = object.constructor,\\n            othCtor = other.constructor;\\n\\n        // Non `Object` object instances with different constructors are not equal.\\n        if (objCtor != othCtor &&\\n            ('constructor' in object && 'constructor' in other) &&\\n            !(typeof objCtor == 'function' && objCtor instanceof objCtor &&\\n              typeof othCtor == 'function' && othCtor instanceof othCtor)) {\\n          result = false;\\n        }\\n      }\\n      stack['delete'](object);\\n      stack['delete'](other);\\n      return result;\\n    }\\n\\n    /**\\n     * A specialized version of `baseRest` which flattens the rest array.\\n     *\\n     * @private\\n     * @param {Function} func The function to apply a rest parameter to.\\n     * @returns {Function} Returns the new function.\\n     */\\n    function flatRest(func) {\\n      return setToString(overRest(func, undefined, flatten), func + '');\\n    }\\n\\n    /**\\n     * Creates an array of own enumerable property names and symbols of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names and symbols.\\n     */\\n    function getAllKeys(object) {\\n      return baseGetAllKeys(object, keys, getSymbols);\\n    }\\n\\n    /**\\n     * Creates an array of own and inherited enumerable property names and\\n     * symbols of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names and symbols.\\n     */\\n    function getAllKeysIn(object) {\\n      return baseGetAllKeys(object, keysIn, getSymbolsIn);\\n    }\\n\\n    /**\\n     * Gets metadata for `func`.\\n     *\\n     * @private\\n     * @param {Function} func The function to query.\\n     * @returns {*} Returns the metadata for `func`.\\n     */\\n    var getData = !metaMap ? noop : function(func) {\\n      return metaMap.get(func);\\n    };\\n\\n    /**\\n     * Gets the name of `func`.\\n     *\\n     * @private\\n     * @param {Function} func The function to query.\\n     * @returns {string} Returns the function name.\\n     */\\n    function getFuncName(func) {\\n      var result = (func.name + ''),\\n          array = realNames[result],\\n          length = hasOwnProperty.call(realNames, result) ? array.length : 0;\\n\\n      while (length--) {\\n        var data = array[length],\\n            otherFunc = data.func;\\n        if (otherFunc == null || otherFunc == func) {\\n          return data.name;\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Gets the argument placeholder value for `func`.\\n     *\\n     * @private\\n     * @param {Function} func The function to inspect.\\n     * @returns {*} Returns the placeholder value.\\n     */\\n    function getHolder(func) {\\n      var object = hasOwnProperty.call(lodash, 'placeholder') ? lodash : func;\\n      return object.placeholder;\\n    }\\n\\n    /**\\n     * Gets the appropriate \\\"iteratee\\\" function. If `_.iteratee` is customized,\\n     * this function returns the custom method, otherwise it returns `baseIteratee`.\\n     * If arguments are provided, the chosen function is invoked with them and\\n     * its result is returned.\\n     *\\n     * @private\\n     * @param {*} [value] The value to convert to an iteratee.\\n     * @param {number} [arity] The arity of the created iteratee.\\n     * @returns {Function} Returns the chosen function or its result.\\n     */\\n    function getIteratee() {\\n      var result = lodash.iteratee || iteratee;\\n      result = result === iteratee ? baseIteratee : result;\\n      return arguments.length ? result(arguments[0], arguments[1]) : result;\\n    }\\n\\n    /**\\n     * Gets the data for `map`.\\n     *\\n     * @private\\n     * @param {Object} map The map to query.\\n     * @param {string} key The reference key.\\n     * @returns {*} Returns the map data.\\n     */\\n    function getMapData(map, key) {\\n      var data = map.__data__;\\n      return isKeyable(key)\\n        ? data[typeof key == 'string' ? 'string' : 'hash']\\n        : data.map;\\n    }\\n\\n    /**\\n     * Gets the property names, values, and compare flags of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the match data of `object`.\\n     */\\n    function getMatchData(object) {\\n      var result = keys(object),\\n          length = result.length;\\n\\n      while (length--) {\\n        var key = result[length],\\n            value = object[key];\\n\\n        result[length] = [key, value, isStrictComparable(value)];\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Gets the native function at `key` of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {string} key The key of the method to get.\\n     * @returns {*} Returns the function if it's native, else `undefined`.\\n     */\\n    function getNative(object, key) {\\n      var value = getValue(object, key);\\n      return baseIsNative(value) ? value : undefined;\\n    }\\n\\n    /**\\n     * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\\n     *\\n     * @private\\n     * @param {*} value The value to query.\\n     * @returns {string} Returns the raw `toStringTag`.\\n     */\\n    function getRawTag(value) {\\n      var isOwn = hasOwnProperty.call(value, symToStringTag),\\n          tag = value[symToStringTag];\\n\\n      try {\\n        value[symToStringTag] = undefined;\\n        var unmasked = true;\\n      } catch (e) {}\\n\\n      var result = nativeObjectToString.call(value);\\n      if (unmasked) {\\n        if (isOwn) {\\n          value[symToStringTag] = tag;\\n        } else {\\n          delete value[symToStringTag];\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Creates an array of the own enumerable symbols of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of symbols.\\n     */\\n    var getSymbols = !nativeGetSymbols ? stubArray : function(object) {\\n      if (object == null) {\\n        return [];\\n      }\\n      object = Object(object);\\n      return arrayFilter(nativeGetSymbols(object), function(symbol) {\\n        return propertyIsEnumerable.call(object, symbol);\\n      });\\n    };\\n\\n    /**\\n     * Creates an array of the own and inherited enumerable symbols of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of symbols.\\n     */\\n    var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) {\\n      var result = [];\\n      while (object) {\\n        arrayPush(result, getSymbols(object));\\n        object = getPrototype(object);\\n      }\\n      return result;\\n    };\\n\\n    /**\\n     * Gets the `toStringTag` of `value`.\\n     *\\n     * @private\\n     * @param {*} value The value to query.\\n     * @returns {string} Returns the `toStringTag`.\\n     */\\n    var getTag = baseGetTag;\\n\\n    // Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6.\\n    if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) ||\\n        (Map && getTag(new Map) != mapTag) ||\\n        (Promise && getTag(Promise.resolve()) != promiseTag) ||\\n        (Set && getTag(new Set) != setTag) ||\\n        (WeakMap && getTag(new WeakMap) != weakMapTag)) {\\n      getTag = function(value) {\\n        var result = baseGetTag(value),\\n            Ctor = result == objectTag ? value.constructor : undefined,\\n            ctorString = Ctor ? toSource(Ctor) : '';\\n\\n        if (ctorString) {\\n          switch (ctorString) {\\n            case dataViewCtorString: return dataViewTag;\\n            case mapCtorString: return mapTag;\\n            case promiseCtorString: return promiseTag;\\n            case setCtorString: return setTag;\\n            case weakMapCtorString: return weakMapTag;\\n          }\\n        }\\n        return result;\\n      };\\n    }\\n\\n    /**\\n     * Gets the view, applying any `transforms` to the `start` and `end` positions.\\n     *\\n     * @private\\n     * @param {number} start The start of the view.\\n     * @param {number} end The end of the view.\\n     * @param {Array} transforms The transformations to apply to the view.\\n     * @returns {Object} Returns an object containing the `start` and `end`\\n     *  positions of the view.\\n     */\\n    function getView(start, end, transforms) {\\n      var index = -1,\\n          length = transforms.length;\\n\\n      while (++index < length) {\\n        var data = transforms[index],\\n            size = data.size;\\n\\n        switch (data.type) {\\n          case 'drop':      start += size; break;\\n          case 'dropRight': end -= size; break;\\n          case 'take':      end = nativeMin(end, start + size); break;\\n          case 'takeRight': start = nativeMax(start, end - size); break;\\n        }\\n      }\\n      return { 'start': start, 'end': end };\\n    }\\n\\n    /**\\n     * Extracts wrapper details from the `source` body comment.\\n     *\\n     * @private\\n     * @param {string} source The source to inspect.\\n     * @returns {Array} Returns the wrapper details.\\n     */\\n    function getWrapDetails(source) {\\n      var match = source.match(reWrapDetails);\\n      return match ? match[1].split(reSplitDetails) : [];\\n    }\\n\\n    /**\\n     * Checks if `path` exists on `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path to check.\\n     * @param {Function} hasFunc The function to check properties.\\n     * @returns {boolean} Returns `true` if `path` exists, else `false`.\\n     */\\n    function hasPath(object, path, hasFunc) {\\n      path = castPath(path, object);\\n\\n      var index = -1,\\n          length = path.length,\\n          result = false;\\n\\n      while (++index < length) {\\n        var key = toKey(path[index]);\\n        if (!(result = object != null && hasFunc(object, key))) {\\n          break;\\n        }\\n        object = object[key];\\n      }\\n      if (result || ++index != length) {\\n        return result;\\n      }\\n      length = object == null ? 0 : object.length;\\n      return !!length && isLength(length) && isIndex(key, length) &&\\n        (isArray(object) || isArguments(object));\\n    }\\n\\n    /**\\n     * Initializes an array clone.\\n     *\\n     * @private\\n     * @param {Array} array The array to clone.\\n     * @returns {Array} Returns the initialized clone.\\n     */\\n    function initCloneArray(array) {\\n      var length = array.length,\\n          result = new array.constructor(length);\\n\\n      // Add properties assigned by `RegExp#exec`.\\n      if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) {\\n        result.index = array.index;\\n        result.input = array.input;\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Initializes an object clone.\\n     *\\n     * @private\\n     * @param {Object} object The object to clone.\\n     * @returns {Object} Returns the initialized clone.\\n     */\\n    function initCloneObject(object) {\\n      return (typeof object.constructor == 'function' && !isPrototype(object))\\n        ? baseCreate(getPrototype(object))\\n        : {};\\n    }\\n\\n    /**\\n     * Initializes an object clone based on its `toStringTag`.\\n     *\\n     * **Note:** This function only supports cloning values with tags of\\n     * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`.\\n     *\\n     * @private\\n     * @param {Object} object The object to clone.\\n     * @param {string} tag The `toStringTag` of the object to clone.\\n     * @param {boolean} [isDeep] Specify a deep clone.\\n     * @returns {Object} Returns the initialized clone.\\n     */\\n    function initCloneByTag(object, tag, isDeep) {\\n      var Ctor = object.constructor;\\n      switch (tag) {\\n        case arrayBufferTag:\\n          return cloneArrayBuffer(object);\\n\\n        case boolTag:\\n        case dateTag:\\n          return new Ctor(+object);\\n\\n        case dataViewTag:\\n          return cloneDataView(object, isDeep);\\n\\n        case float32Tag: case float64Tag:\\n        case int8Tag: case int16Tag: case int32Tag:\\n        case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag:\\n          return cloneTypedArray(object, isDeep);\\n\\n        case mapTag:\\n          return new Ctor;\\n\\n        case numberTag:\\n        case stringTag:\\n          return new Ctor(object);\\n\\n        case regexpTag:\\n          return cloneRegExp(object);\\n\\n        case setTag:\\n          return new Ctor;\\n\\n        case symbolTag:\\n          return cloneSymbol(object);\\n      }\\n    }\\n\\n    /**\\n     * Inserts wrapper `details` in a comment at the top of the `source` body.\\n     *\\n     * @private\\n     * @param {string} source The source to modify.\\n     * @returns {Array} details The details to insert.\\n     * @returns {string} Returns the modified source.\\n     */\\n    function insertWrapDetails(source, details) {\\n      var length = details.length;\\n      if (!length) {\\n        return source;\\n      }\\n      var lastIndex = length - 1;\\n      details[lastIndex] = (length > 1 ? '& ' : '') + details[lastIndex];\\n      details = details.join(length > 2 ? ', ' : ' ');\\n      return source.replace(reWrapComment, '{\\\\n/* [wrapped with ' + details + '] */\\\\n');\\n    }\\n\\n    /**\\n     * Checks if `value` is a flattenable `arguments` object or array.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is flattenable, else `false`.\\n     */\\n    function isFlattenable(value) {\\n      return isArray(value) || isArguments(value) ||\\n        !!(spreadableSymbol && value && value[spreadableSymbol]);\\n    }\\n\\n    /**\\n     * Checks if `value` is a valid array-like index.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\\n     * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\\n     */\\n    function isIndex(value, length) {\\n      var type = typeof value;\\n      length = length == null ? MAX_SAFE_INTEGER : length;\\n\\n      return !!length &&\\n        (type == 'number' ||\\n          (type != 'symbol' && reIsUint.test(value))) &&\\n            (value > -1 && value % 1 == 0 && value < length);\\n    }\\n\\n    /**\\n     * Checks if the given arguments are from an iteratee call.\\n     *\\n     * @private\\n     * @param {*} value The potential iteratee value argument.\\n     * @param {*} index The potential iteratee index or key argument.\\n     * @param {*} object The potential iteratee object argument.\\n     * @returns {boolean} Returns `true` if the arguments are from an iteratee call,\\n     *  else `false`.\\n     */\\n    function isIterateeCall(value, index, object) {\\n      if (!isObject(object)) {\\n        return false;\\n      }\\n      var type = typeof index;\\n      if (type == 'number'\\n            ? (isArrayLike(object) && isIndex(index, object.length))\\n            : (type == 'string' && index in object)\\n          ) {\\n        return eq(object[index], value);\\n      }\\n      return false;\\n    }\\n\\n    /**\\n     * Checks if `value` is a property name and not a property path.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @param {Object} [object] The object to query keys on.\\n     * @returns {boolean} Returns `true` if `value` is a property name, else `false`.\\n     */\\n    function isKey(value, object) {\\n      if (isArray(value)) {\\n        return false;\\n      }\\n      var type = typeof value;\\n      if (type == 'number' || type == 'symbol' || type == 'boolean' ||\\n          value == null || isSymbol(value)) {\\n        return true;\\n      }\\n      return reIsPlainProp.test(value) || !reIsDeepProp.test(value) ||\\n        (object != null && value in Object(object));\\n    }\\n\\n    /**\\n     * Checks if `value` is suitable for use as unique object key.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\\n     */\\n    function isKeyable(value) {\\n      var type = typeof value;\\n      return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')\\n        ? (value !== '__proto__')\\n        : (value === null);\\n    }\\n\\n    /**\\n     * Checks if `func` has a lazy counterpart.\\n     *\\n     * @private\\n     * @param {Function} func The function to check.\\n     * @returns {boolean} Returns `true` if `func` has a lazy counterpart,\\n     *  else `false`.\\n     */\\n    function isLaziable(func) {\\n      var funcName = getFuncName(func),\\n          other = lodash[funcName];\\n\\n      if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) {\\n        return false;\\n      }\\n      if (func === other) {\\n        return true;\\n      }\\n      var data = getData(other);\\n      return !!data && func === data[0];\\n    }\\n\\n    /**\\n     * Checks if `func` has its source masked.\\n     *\\n     * @private\\n     * @param {Function} func The function to check.\\n     * @returns {boolean} Returns `true` if `func` is masked, else `false`.\\n     */\\n    function isMasked(func) {\\n      return !!maskSrcKey && (maskSrcKey in func);\\n    }\\n\\n    /**\\n     * Checks if `func` is capable of being masked.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `func` is maskable, else `false`.\\n     */\\n    var isMaskable = coreJsData ? isFunction : stubFalse;\\n\\n    /**\\n     * Checks if `value` is likely a prototype object.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\\n     */\\n    function isPrototype(value) {\\n      var Ctor = value && value.constructor,\\n          proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto;\\n\\n      return value === proto;\\n    }\\n\\n    /**\\n     * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` if suitable for strict\\n     *  equality comparisons, else `false`.\\n     */\\n    function isStrictComparable(value) {\\n      return value === value && !isObject(value);\\n    }\\n\\n    /**\\n     * A specialized version of `matchesProperty` for source values suitable\\n     * for strict equality comparisons, i.e. `===`.\\n     *\\n     * @private\\n     * @param {string} key The key of the property to get.\\n     * @param {*} srcValue The value to match.\\n     * @returns {Function} Returns the new spec function.\\n     */\\n    function matchesStrictComparable(key, srcValue) {\\n      return function(object) {\\n        if (object == null) {\\n          return false;\\n        }\\n        return object[key] === srcValue &&\\n          (srcValue !== undefined || (key in Object(object)));\\n      };\\n    }\\n\\n    /**\\n     * A specialized version of `_.memoize` which clears the memoized function's\\n     * cache when it exceeds `MAX_MEMOIZE_SIZE`.\\n     *\\n     * @private\\n     * @param {Function} func The function to have its output memoized.\\n     * @returns {Function} Returns the new memoized function.\\n     */\\n    function memoizeCapped(func) {\\n      var result = memoize(func, function(key) {\\n        if (cache.size === MAX_MEMOIZE_SIZE) {\\n          cache.clear();\\n        }\\n        return key;\\n      });\\n\\n      var cache = result.cache;\\n      return result;\\n    }\\n\\n    /**\\n     * Merges the function metadata of `source` into `data`.\\n     *\\n     * Merging metadata reduces the number of wrappers used to invoke a function.\\n     * This is possible because methods like `_.bind`, `_.curry`, and `_.partial`\\n     * may be applied regardless of execution order. Methods like `_.ary` and\\n     * `_.rearg` modify function arguments, making the order in which they are\\n     * executed important, preventing the merging of metadata. However, we make\\n     * an exception for a safe combined case where curried functions have `_.ary`\\n     * and or `_.rearg` applied.\\n     *\\n     * @private\\n     * @param {Array} data The destination metadata.\\n     * @param {Array} source The source metadata.\\n     * @returns {Array} Returns `data`.\\n     */\\n    function mergeData(data, source) {\\n      var bitmask = data[1],\\n          srcBitmask = source[1],\\n          newBitmask = bitmask | srcBitmask,\\n          isCommon = newBitmask < (WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG | WRAP_ARY_FLAG);\\n\\n      var isCombo =\\n        ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_CURRY_FLAG)) ||\\n        ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_REARG_FLAG) && (data[7].length <= source[8])) ||\\n        ((srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG)) && (source[7].length <= source[8]) && (bitmask == WRAP_CURRY_FLAG));\\n\\n      // Exit early if metadata can't be merged.\\n      if (!(isCommon || isCombo)) {\\n        return data;\\n      }\\n      // Use source `thisArg` if available.\\n      if (srcBitmask & WRAP_BIND_FLAG) {\\n        data[2] = source[2];\\n        // Set when currying a bound function.\\n        newBitmask |= bitmask & WRAP_BIND_FLAG ? 0 : WRAP_CURRY_BOUND_FLAG;\\n      }\\n      // Compose partial arguments.\\n      var value = source[3];\\n      if (value) {\\n        var partials = data[3];\\n        data[3] = partials ? composeArgs(partials, value, source[4]) : value;\\n        data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4];\\n      }\\n      // Compose partial right arguments.\\n      value = source[5];\\n      if (value) {\\n        partials = data[5];\\n        data[5] = partials ? composeArgsRight(partials, value, source[6]) : value;\\n        data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : source[6];\\n      }\\n      // Use source `argPos` if available.\\n      value = source[7];\\n      if (value) {\\n        data[7] = value;\\n      }\\n      // Use source `ary` if it's smaller.\\n      if (srcBitmask & WRAP_ARY_FLAG) {\\n        data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]);\\n      }\\n      // Use source `arity` if one is not provided.\\n      if (data[9] == null) {\\n        data[9] = source[9];\\n      }\\n      // Use source `func` and merge bitmasks.\\n      data[0] = source[0];\\n      data[1] = newBitmask;\\n\\n      return data;\\n    }\\n\\n    /**\\n     * This function is like\\n     * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\\n     * except that it includes inherited enumerable properties.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names.\\n     */\\n    function nativeKeysIn(object) {\\n      var result = [];\\n      if (object != null) {\\n        for (var key in Object(object)) {\\n          result.push(key);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Converts `value` to a string using `Object.prototype.toString`.\\n     *\\n     * @private\\n     * @param {*} value The value to convert.\\n     * @returns {string} Returns the converted string.\\n     */\\n    function objectToString(value) {\\n      return nativeObjectToString.call(value);\\n    }\\n\\n    /**\\n     * A specialized version of `baseRest` which transforms the rest array.\\n     *\\n     * @private\\n     * @param {Function} func The function to apply a rest parameter to.\\n     * @param {number} [start=func.length-1] The start position of the rest parameter.\\n     * @param {Function} transform The rest array transform.\\n     * @returns {Function} Returns the new function.\\n     */\\n    function overRest(func, start, transform) {\\n      start = nativeMax(start === undefined ? (func.length - 1) : start, 0);\\n      return function() {\\n        var args = arguments,\\n            index = -1,\\n            length = nativeMax(args.length - start, 0),\\n            array = Array(length);\\n\\n        while (++index < length) {\\n          array[index] = args[start + index];\\n        }\\n        index = -1;\\n        var otherArgs = Array(start + 1);\\n        while (++index < start) {\\n          otherArgs[index] = args[index];\\n        }\\n        otherArgs[start] = transform(array);\\n        return apply(func, this, otherArgs);\\n      };\\n    }\\n\\n    /**\\n     * Gets the parent value at `path` of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {Array} path The path to get the parent value of.\\n     * @returns {*} Returns the parent value.\\n     */\\n    function parent(object, path) {\\n      return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1));\\n    }\\n\\n    /**\\n     * Reorder `array` according to the specified indexes where the element at\\n     * the first index is assigned as the first element, the element at\\n     * the second index is assigned as the second element, and so on.\\n     *\\n     * @private\\n     * @param {Array} array The array to reorder.\\n     * @param {Array} indexes The arranged array indexes.\\n     * @returns {Array} Returns `array`.\\n     */\\n    function reorder(array, indexes) {\\n      var arrLength = array.length,\\n          length = nativeMin(indexes.length, arrLength),\\n          oldArray = copyArray(array);\\n\\n      while (length--) {\\n        var index = indexes[length];\\n        array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined;\\n      }\\n      return array;\\n    }\\n\\n    /**\\n     * Gets the value at `key`, unless `key` is \\\"__proto__\\\" or \\\"constructor\\\".\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {string} key The key of the property to get.\\n     * @returns {*} Returns the property value.\\n     */\\n    function safeGet(object, key) {\\n      if (key === 'constructor' && typeof object[key] === 'function') {\\n        return;\\n      }\\n\\n      if (key == '__proto__') {\\n        return;\\n      }\\n\\n      return object[key];\\n    }\\n\\n    /**\\n     * Sets metadata for `func`.\\n     *\\n     * **Note:** If this function becomes hot, i.e. is invoked a lot in a short\\n     * period of time, it will trip its breaker and transition to an identity\\n     * function to avoid garbage collection pauses in V8. See\\n     * [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070)\\n     * for more details.\\n     *\\n     * @private\\n     * @param {Function} func The function to associate metadata with.\\n     * @param {*} data The metadata.\\n     * @returns {Function} Returns `func`.\\n     */\\n    var setData = shortOut(baseSetData);\\n\\n    /**\\n     * A simple wrapper around the global [`setTimeout`](https://mdn.io/setTimeout).\\n     *\\n     * @private\\n     * @param {Function} func The function to delay.\\n     * @param {number} wait The number of milliseconds to delay invocation.\\n     * @returns {number|Object} Returns the timer id or timeout object.\\n     */\\n    var setTimeout = ctxSetTimeout || function(func, wait) {\\n      return root.setTimeout(func, wait);\\n    };\\n\\n    /**\\n     * Sets the `toString` method of `func` to return `string`.\\n     *\\n     * @private\\n     * @param {Function} func The function to modify.\\n     * @param {Function} string The `toString` result.\\n     * @returns {Function} Returns `func`.\\n     */\\n    var setToString = shortOut(baseSetToString);\\n\\n    /**\\n     * Sets the `toString` method of `wrapper` to mimic the source of `reference`\\n     * with wrapper details in a comment at the top of the source body.\\n     *\\n     * @private\\n     * @param {Function} wrapper The function to modify.\\n     * @param {Function} reference The reference function.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @returns {Function} Returns `wrapper`.\\n     */\\n    function setWrapToString(wrapper, reference, bitmask) {\\n      var source = (reference + '');\\n      return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask)));\\n    }\\n\\n    /**\\n     * Creates a function that'll short out and invoke `identity` instead\\n     * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`\\n     * milliseconds.\\n     *\\n     * @private\\n     * @param {Function} func The function to restrict.\\n     * @returns {Function} Returns the new shortable function.\\n     */\\n    function shortOut(func) {\\n      var count = 0,\\n          lastCalled = 0;\\n\\n      return function() {\\n        var stamp = nativeNow(),\\n            remaining = HOT_SPAN - (stamp - lastCalled);\\n\\n        lastCalled = stamp;\\n        if (remaining > 0) {\\n          if (++count >= HOT_COUNT) {\\n            return arguments[0];\\n          }\\n        } else {\\n          count = 0;\\n        }\\n        return func.apply(undefined, arguments);\\n      };\\n    }\\n\\n    /**\\n     * A specialized version of `_.shuffle` which mutates and sets the size of `array`.\\n     *\\n     * @private\\n     * @param {Array} array The array to shuffle.\\n     * @param {number} [size=array.length] The size of `array`.\\n     * @returns {Array} Returns `array`.\\n     */\\n    function shuffleSelf(array, size) {\\n      var index = -1,\\n          length = array.length,\\n          lastIndex = length - 1;\\n\\n      size = size === undefined ? length : size;\\n      while (++index < size) {\\n        var rand = baseRandom(index, lastIndex),\\n            value = array[rand];\\n\\n        array[rand] = array[index];\\n        array[index] = value;\\n      }\\n      array.length = size;\\n      return array;\\n    }\\n\\n    /**\\n     * Converts `string` to a property path array.\\n     *\\n     * @private\\n     * @param {string} string The string to convert.\\n     * @returns {Array} Returns the property path array.\\n     */\\n    var stringToPath = memoizeCapped(function(string) {\\n      var result = [];\\n      if (string.charCodeAt(0) === 46 /* . */) {\\n        result.push('');\\n      }\\n      string.replace(rePropName, function(match, number, quote, subString) {\\n        result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match));\\n      });\\n      return result;\\n    });\\n\\n    /**\\n     * Converts `value` to a string key if it's not a string or symbol.\\n     *\\n     * @private\\n     * @param {*} value The value to inspect.\\n     * @returns {string|symbol} Returns the key.\\n     */\\n    function toKey(value) {\\n      if (typeof value == 'string' || isSymbol(value)) {\\n        return value;\\n      }\\n      var result = (value + '');\\n      return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\\n    }\\n\\n    /**\\n     * Converts `func` to its source code.\\n     *\\n     * @private\\n     * @param {Function} func The function to convert.\\n     * @returns {string} Returns the source code.\\n     */\\n    function toSource(func) {\\n      if (func != null) {\\n        try {\\n          return funcToString.call(func);\\n        } catch (e) {}\\n        try {\\n          return (func + '');\\n        } catch (e) {}\\n      }\\n      return '';\\n    }\\n\\n    /**\\n     * Updates wrapper `details` based on `bitmask` flags.\\n     *\\n     * @private\\n     * @returns {Array} details The details to modify.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @returns {Array} Returns `details`.\\n     */\\n    function updateWrapDetails(details, bitmask) {\\n      arrayEach(wrapFlags, function(pair) {\\n        var value = '_.' + pair[0];\\n        if ((bitmask & pair[1]) && !arrayIncludes(details, value)) {\\n          details.push(value);\\n        }\\n      });\\n      return details.sort();\\n    }\\n\\n    /**\\n     * Creates a clone of `wrapper`.\\n     *\\n     * @private\\n     * @param {Object} wrapper The wrapper to clone.\\n     * @returns {Object} Returns the cloned wrapper.\\n     */\\n    function wrapperClone(wrapper) {\\n      if (wrapper instanceof LazyWrapper) {\\n        return wrapper.clone();\\n      }\\n      var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__);\\n      result.__actions__ = copyArray(wrapper.__actions__);\\n      result.__index__  = wrapper.__index__;\\n      result.__values__ = wrapper.__values__;\\n      return result;\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates an array of elements split into groups the length of `size`.\\n     * If `array` can't be split evenly, the final chunk will be the remaining\\n     * elements.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to process.\\n     * @param {number} [size=1] The length of each chunk\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the new array of chunks.\\n     * @example\\n     *\\n     * _.chunk(['a', 'b', 'c', 'd'], 2);\\n     * // => [['a', 'b'], ['c', 'd']]\\n     *\\n     * _.chunk(['a', 'b', 'c', 'd'], 3);\\n     * // => [['a', 'b', 'c'], ['d']]\\n     */\\n    function chunk(array, size, guard) {\\n      if ((guard ? isIterateeCall(array, size, guard) : size === undefined)) {\\n        size = 1;\\n      } else {\\n        size = nativeMax(toInteger(size), 0);\\n      }\\n      var length = array == null ? 0 : array.length;\\n      if (!length || size < 1) {\\n        return [];\\n      }\\n      var index = 0,\\n          resIndex = 0,\\n          result = Array(nativeCeil(length / size));\\n\\n      while (index < length) {\\n        result[resIndex++] = baseSlice(array, index, (index += size));\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Creates an array with all falsey values removed. The values `false`, `null`,\\n     * `0`, `\\\"\\\"`, `undefined`, and `NaN` are falsey.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to compact.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @example\\n     *\\n     * _.compact([0, 1, false, 2, '', 3]);\\n     * // => [1, 2, 3]\\n     */\\n    function compact(array) {\\n      var index = -1,\\n          length = array == null ? 0 : array.length,\\n          resIndex = 0,\\n          result = [];\\n\\n      while (++index < length) {\\n        var value = array[index];\\n        if (value) {\\n          result[resIndex++] = value;\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Creates a new array concatenating `array` with any additional arrays\\n     * and/or values.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to concatenate.\\n     * @param {...*} [values] The values to concatenate.\\n     * @returns {Array} Returns the new concatenated array.\\n     * @example\\n     *\\n     * var array = [1];\\n     * var other = _.concat(array, 2, [3], [[4]]);\\n     *\\n     * console.log(other);\\n     * // => [1, 2, 3, [4]]\\n     *\\n     * console.log(array);\\n     * // => [1]\\n     */\\n    function concat() {\\n      var length = arguments.length;\\n      if (!length) {\\n        return [];\\n      }\\n      var args = Array(length - 1),\\n          array = arguments[0],\\n          index = length;\\n\\n      while (index--) {\\n        args[index - 1] = arguments[index];\\n      }\\n      return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1));\\n    }\\n\\n    /**\\n     * Creates an array of `array` values not included in the other given arrays\\n     * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons. The order and references of result values are\\n     * determined by the first array.\\n     *\\n     * **Note:** Unlike `_.pullAll`, this method returns a new array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {...Array} [values] The values to exclude.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @see _.without, _.xor\\n     * @example\\n     *\\n     * _.difference([2, 1], [2, 3]);\\n     * // => [1]\\n     */\\n    var difference = baseRest(function(array, values) {\\n      return isArrayLikeObject(array)\\n        ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true))\\n        : [];\\n    });\\n\\n    /**\\n     * This method is like `_.difference` except that it accepts `iteratee` which\\n     * is invoked for each element of `array` and `values` to generate the criterion\\n     * by which they're compared. The order and references of result values are\\n     * determined by the first array. The iteratee is invoked with one argument:\\n     * (value).\\n     *\\n     * **Note:** Unlike `_.pullAllBy`, this method returns a new array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {...Array} [values] The values to exclude.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @example\\n     *\\n     * _.differenceBy([2.1, 1.2], [2.3, 3.4], Math.floor);\\n     * // => [1.2]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.differenceBy([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], 'x');\\n     * // => [{ 'x': 2 }]\\n     */\\n    var differenceBy = baseRest(function(array, values) {\\n      var iteratee = last(values);\\n      if (isArrayLikeObject(iteratee)) {\\n        iteratee = undefined;\\n      }\\n      return isArrayLikeObject(array)\\n        ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), getIteratee(iteratee, 2))\\n        : [];\\n    });\\n\\n    /**\\n     * This method is like `_.difference` except that it accepts `comparator`\\n     * which is invoked to compare elements of `array` to `values`. The order and\\n     * references of result values are determined by the first array. The comparator\\n     * is invoked with two arguments: (arrVal, othVal).\\n     *\\n     * **Note:** Unlike `_.pullAllWith`, this method returns a new array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {...Array} [values] The values to exclude.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];\\n     *\\n     * _.differenceWith(objects, [{ 'x': 1, 'y': 2 }], _.isEqual);\\n     * // => [{ 'x': 2, 'y': 1 }]\\n     */\\n    var differenceWith = baseRest(function(array, values) {\\n      var comparator = last(values);\\n      if (isArrayLikeObject(comparator)) {\\n        comparator = undefined;\\n      }\\n      return isArrayLikeObject(array)\\n        ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), undefined, comparator)\\n        : [];\\n    });\\n\\n    /**\\n     * Creates a slice of `array` with `n` elements dropped from the beginning.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.5.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {number} [n=1] The number of elements to drop.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * _.drop([1, 2, 3]);\\n     * // => [2, 3]\\n     *\\n     * _.drop([1, 2, 3], 2);\\n     * // => [3]\\n     *\\n     * _.drop([1, 2, 3], 5);\\n     * // => []\\n     *\\n     * _.drop([1, 2, 3], 0);\\n     * // => [1, 2, 3]\\n     */\\n    function drop(array, n, guard) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return [];\\n      }\\n      n = (guard || n === undefined) ? 1 : toInteger(n);\\n      return baseSlice(array, n < 0 ? 0 : n, length);\\n    }\\n\\n    /**\\n     * Creates a slice of `array` with `n` elements dropped from the end.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {number} [n=1] The number of elements to drop.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * _.dropRight([1, 2, 3]);\\n     * // => [1, 2]\\n     *\\n     * _.dropRight([1, 2, 3], 2);\\n     * // => [1]\\n     *\\n     * _.dropRight([1, 2, 3], 5);\\n     * // => []\\n     *\\n     * _.dropRight([1, 2, 3], 0);\\n     * // => [1, 2, 3]\\n     */\\n    function dropRight(array, n, guard) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return [];\\n      }\\n      n = (guard || n === undefined) ? 1 : toInteger(n);\\n      n = length - n;\\n      return baseSlice(array, 0, n < 0 ? 0 : n);\\n    }\\n\\n    /**\\n     * Creates a slice of `array` excluding elements dropped from the end.\\n     * Elements are dropped until `predicate` returns falsey. The predicate is\\n     * invoked with three arguments: (value, index, array).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'active': true },\\n     *   { 'user': 'fred',    'active': false },\\n     *   { 'user': 'pebbles', 'active': false }\\n     * ];\\n     *\\n     * _.dropRightWhile(users, function(o) { return !o.active; });\\n     * // => objects for ['barney']\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.dropRightWhile(users, { 'user': 'pebbles', 'active': false });\\n     * // => objects for ['barney', 'fred']\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.dropRightWhile(users, ['active', false]);\\n     * // => objects for ['barney']\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.dropRightWhile(users, 'active');\\n     * // => objects for ['barney', 'fred', 'pebbles']\\n     */\\n    function dropRightWhile(array, predicate) {\\n      return (array && array.length)\\n        ? baseWhile(array, getIteratee(predicate, 3), true, true)\\n        : [];\\n    }\\n\\n    /**\\n     * Creates a slice of `array` excluding elements dropped from the beginning.\\n     * Elements are dropped until `predicate` returns falsey. The predicate is\\n     * invoked with three arguments: (value, index, array).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'active': false },\\n     *   { 'user': 'fred',    'active': false },\\n     *   { 'user': 'pebbles', 'active': true }\\n     * ];\\n     *\\n     * _.dropWhile(users, function(o) { return !o.active; });\\n     * // => objects for ['pebbles']\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.dropWhile(users, { 'user': 'barney', 'active': false });\\n     * // => objects for ['fred', 'pebbles']\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.dropWhile(users, ['active', false]);\\n     * // => objects for ['pebbles']\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.dropWhile(users, 'active');\\n     * // => objects for ['barney', 'fred', 'pebbles']\\n     */\\n    function dropWhile(array, predicate) {\\n      return (array && array.length)\\n        ? baseWhile(array, getIteratee(predicate, 3), true)\\n        : [];\\n    }\\n\\n    /**\\n     * Fills elements of `array` with `value` from `start` up to, but not\\n     * including, `end`.\\n     *\\n     * **Note:** This method mutates `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.2.0\\n     * @category Array\\n     * @param {Array} array The array to fill.\\n     * @param {*} value The value to fill `array` with.\\n     * @param {number} [start=0] The start position.\\n     * @param {number} [end=array.length] The end position.\\n     * @returns {Array} Returns `array`.\\n     * @example\\n     *\\n     * var array = [1, 2, 3];\\n     *\\n     * _.fill(array, 'a');\\n     * console.log(array);\\n     * // => ['a', 'a', 'a']\\n     *\\n     * _.fill(Array(3), 2);\\n     * // => [2, 2, 2]\\n     *\\n     * _.fill([4, 6, 8, 10], '*', 1, 3);\\n     * // => [4, '*', '*', 10]\\n     */\\n    function fill(array, value, start, end) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return [];\\n      }\\n      if (start && typeof start != 'number' && isIterateeCall(array, value, start)) {\\n        start = 0;\\n        end = length;\\n      }\\n      return baseFill(array, value, start, end);\\n    }\\n\\n    /**\\n     * This method is like `_.find` except that it returns the index of the first\\n     * element `predicate` returns truthy for instead of the element itself.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.1.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @param {number} [fromIndex=0] The index to search from.\\n     * @returns {number} Returns the index of the found element, else `-1`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'active': false },\\n     *   { 'user': 'fred',    'active': false },\\n     *   { 'user': 'pebbles', 'active': true }\\n     * ];\\n     *\\n     * _.findIndex(users, function(o) { return o.user == 'barney'; });\\n     * // => 0\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.findIndex(users, { 'user': 'fred', 'active': false });\\n     * // => 1\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.findIndex(users, ['active', false]);\\n     * // => 0\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.findIndex(users, 'active');\\n     * // => 2\\n     */\\n    function findIndex(array, predicate, fromIndex) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return -1;\\n      }\\n      var index = fromIndex == null ? 0 : toInteger(fromIndex);\\n      if (index < 0) {\\n        index = nativeMax(length + index, 0);\\n      }\\n      return baseFindIndex(array, getIteratee(predicate, 3), index);\\n    }\\n\\n    /**\\n     * This method is like `_.findIndex` except that it iterates over elements\\n     * of `collection` from right to left.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @param {number} [fromIndex=array.length-1] The index to search from.\\n     * @returns {number} Returns the index of the found element, else `-1`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'active': true },\\n     *   { 'user': 'fred',    'active': false },\\n     *   { 'user': 'pebbles', 'active': false }\\n     * ];\\n     *\\n     * _.findLastIndex(users, function(o) { return o.user == 'pebbles'; });\\n     * // => 2\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.findLastIndex(users, { 'user': 'barney', 'active': true });\\n     * // => 0\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.findLastIndex(users, ['active', false]);\\n     * // => 2\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.findLastIndex(users, 'active');\\n     * // => 0\\n     */\\n    function findLastIndex(array, predicate, fromIndex) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return -1;\\n      }\\n      var index = length - 1;\\n      if (fromIndex !== undefined) {\\n        index = toInteger(fromIndex);\\n        index = fromIndex < 0\\n          ? nativeMax(length + index, 0)\\n          : nativeMin(index, length - 1);\\n      }\\n      return baseFindIndex(array, getIteratee(predicate, 3), index, true);\\n    }\\n\\n    /**\\n     * Flattens `array` a single level deep.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to flatten.\\n     * @returns {Array} Returns the new flattened array.\\n     * @example\\n     *\\n     * _.flatten([1, [2, [3, [4]], 5]]);\\n     * // => [1, 2, [3, [4]], 5]\\n     */\\n    function flatten(array) {\\n      var length = array == null ? 0 : array.length;\\n      return length ? baseFlatten(array, 1) : [];\\n    }\\n\\n    /**\\n     * Recursively flattens `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to flatten.\\n     * @returns {Array} Returns the new flattened array.\\n     * @example\\n     *\\n     * _.flattenDeep([1, [2, [3, [4]], 5]]);\\n     * // => [1, 2, 3, 4, 5]\\n     */\\n    function flattenDeep(array) {\\n      var length = array == null ? 0 : array.length;\\n      return length ? baseFlatten(array, INFINITY) : [];\\n    }\\n\\n    /**\\n     * Recursively flatten `array` up to `depth` times.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.4.0\\n     * @category Array\\n     * @param {Array} array The array to flatten.\\n     * @param {number} [depth=1] The maximum recursion depth.\\n     * @returns {Array} Returns the new flattened array.\\n     * @example\\n     *\\n     * var array = [1, [2, [3, [4]], 5]];\\n     *\\n     * _.flattenDepth(array, 1);\\n     * // => [1, 2, [3, [4]], 5]\\n     *\\n     * _.flattenDepth(array, 2);\\n     * // => [1, 2, 3, [4], 5]\\n     */\\n    function flattenDepth(array, depth) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return [];\\n      }\\n      depth = depth === undefined ? 1 : toInteger(depth);\\n      return baseFlatten(array, depth);\\n    }\\n\\n    /**\\n     * The inverse of `_.toPairs`; this method returns an object composed\\n     * from key-value `pairs`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} pairs The key-value pairs.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * _.fromPairs([['a', 1], ['b', 2]]);\\n     * // => { 'a': 1, 'b': 2 }\\n     */\\n    function fromPairs(pairs) {\\n      var index = -1,\\n          length = pairs == null ? 0 : pairs.length,\\n          result = {};\\n\\n      while (++index < length) {\\n        var pair = pairs[index];\\n        result[pair[0]] = pair[1];\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Gets the first element of `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @alias first\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @returns {*} Returns the first element of `array`.\\n     * @example\\n     *\\n     * _.head([1, 2, 3]);\\n     * // => 1\\n     *\\n     * _.head([]);\\n     * // => undefined\\n     */\\n    function head(array) {\\n      return (array && array.length) ? array[0] : undefined;\\n    }\\n\\n    /**\\n     * Gets the index at which the first occurrence of `value` is found in `array`\\n     * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons. If `fromIndex` is negative, it's used as the\\n     * offset from the end of `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {*} value The value to search for.\\n     * @param {number} [fromIndex=0] The index to search from.\\n     * @returns {number} Returns the index of the matched value, else `-1`.\\n     * @example\\n     *\\n     * _.indexOf([1, 2, 1, 2], 2);\\n     * // => 1\\n     *\\n     * // Search from the `fromIndex`.\\n     * _.indexOf([1, 2, 1, 2], 2, 2);\\n     * // => 3\\n     */\\n    function indexOf(array, value, fromIndex) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return -1;\\n      }\\n      var index = fromIndex == null ? 0 : toInteger(fromIndex);\\n      if (index < 0) {\\n        index = nativeMax(length + index, 0);\\n      }\\n      return baseIndexOf(array, value, index);\\n    }\\n\\n    /**\\n     * Gets all but the last element of `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * _.initial([1, 2, 3]);\\n     * // => [1, 2]\\n     */\\n    function initial(array) {\\n      var length = array == null ? 0 : array.length;\\n      return length ? baseSlice(array, 0, -1) : [];\\n    }\\n\\n    /**\\n     * Creates an array of unique values that are included in all given arrays\\n     * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons. The order and references of result values are\\n     * determined by the first array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @returns {Array} Returns the new array of intersecting values.\\n     * @example\\n     *\\n     * _.intersection([2, 1], [2, 3]);\\n     * // => [2]\\n     */\\n    var intersection = baseRest(function(arrays) {\\n      var mapped = arrayMap(arrays, castArrayLikeObject);\\n      return (mapped.length && mapped[0] === arrays[0])\\n        ? baseIntersection(mapped)\\n        : [];\\n    });\\n\\n    /**\\n     * This method is like `_.intersection` except that it accepts `iteratee`\\n     * which is invoked for each element of each `arrays` to generate the criterion\\n     * by which they're compared. The order and references of result values are\\n     * determined by the first array. The iteratee is invoked with one argument:\\n     * (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Array} Returns the new array of intersecting values.\\n     * @example\\n     *\\n     * _.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor);\\n     * // => [2.1]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');\\n     * // => [{ 'x': 1 }]\\n     */\\n    var intersectionBy = baseRest(function(arrays) {\\n      var iteratee = last(arrays),\\n          mapped = arrayMap(arrays, castArrayLikeObject);\\n\\n      if (iteratee === last(mapped)) {\\n        iteratee = undefined;\\n      } else {\\n        mapped.pop();\\n      }\\n      return (mapped.length && mapped[0] === arrays[0])\\n        ? baseIntersection(mapped, getIteratee(iteratee, 2))\\n        : [];\\n    });\\n\\n    /**\\n     * This method is like `_.intersection` except that it accepts `comparator`\\n     * which is invoked to compare elements of `arrays`. The order and references\\n     * of result values are determined by the first array. The comparator is\\n     * invoked with two arguments: (arrVal, othVal).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of intersecting values.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];\\n     * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];\\n     *\\n     * _.intersectionWith(objects, others, _.isEqual);\\n     * // => [{ 'x': 1, 'y': 2 }]\\n     */\\n    var intersectionWith = baseRest(function(arrays) {\\n      var comparator = last(arrays),\\n          mapped = arrayMap(arrays, castArrayLikeObject);\\n\\n      comparator = typeof comparator == 'function' ? comparator : undefined;\\n      if (comparator) {\\n        mapped.pop();\\n      }\\n      return (mapped.length && mapped[0] === arrays[0])\\n        ? baseIntersection(mapped, undefined, comparator)\\n        : [];\\n    });\\n\\n    /**\\n     * Converts all elements in `array` into a string separated by `separator`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to convert.\\n     * @param {string} [separator=','] The element separator.\\n     * @returns {string} Returns the joined string.\\n     * @example\\n     *\\n     * _.join(['a', 'b', 'c'], '~');\\n     * // => 'a~b~c'\\n     */\\n    function join(array, separator) {\\n      return array == null ? '' : nativeJoin.call(array, separator);\\n    }\\n\\n    /**\\n     * Gets the last element of `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @returns {*} Returns the last element of `array`.\\n     * @example\\n     *\\n     * _.last([1, 2, 3]);\\n     * // => 3\\n     */\\n    function last(array) {\\n      var length = array == null ? 0 : array.length;\\n      return length ? array[length - 1] : undefined;\\n    }\\n\\n    /**\\n     * This method is like `_.indexOf` except that it iterates over elements of\\n     * `array` from right to left.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {*} value The value to search for.\\n     * @param {number} [fromIndex=array.length-1] The index to search from.\\n     * @returns {number} Returns the index of the matched value, else `-1`.\\n     * @example\\n     *\\n     * _.lastIndexOf([1, 2, 1, 2], 2);\\n     * // => 3\\n     *\\n     * // Search from the `fromIndex`.\\n     * _.lastIndexOf([1, 2, 1, 2], 2, 2);\\n     * // => 1\\n     */\\n    function lastIndexOf(array, value, fromIndex) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return -1;\\n      }\\n      var index = length;\\n      if (fromIndex !== undefined) {\\n        index = toInteger(fromIndex);\\n        index = index < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1);\\n      }\\n      return value === value\\n        ? strictLastIndexOf(array, value, index)\\n        : baseFindIndex(array, baseIsNaN, index, true);\\n    }\\n\\n    /**\\n     * Gets the element at index `n` of `array`. If `n` is negative, the nth\\n     * element from the end is returned.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.11.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {number} [n=0] The index of the element to return.\\n     * @returns {*} Returns the nth element of `array`.\\n     * @example\\n     *\\n     * var array = ['a', 'b', 'c', 'd'];\\n     *\\n     * _.nth(array, 1);\\n     * // => 'b'\\n     *\\n     * _.nth(array, -2);\\n     * // => 'c';\\n     */\\n    function nth(array, n) {\\n      return (array && array.length) ? baseNth(array, toInteger(n)) : undefined;\\n    }\\n\\n    /**\\n     * Removes all given values from `array` using\\n     * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons.\\n     *\\n     * **Note:** Unlike `_.without`, this method mutates `array`. Use `_.remove`\\n     * to remove elements from an array by predicate.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @param {...*} [values] The values to remove.\\n     * @returns {Array} Returns `array`.\\n     * @example\\n     *\\n     * var array = ['a', 'b', 'c', 'a', 'b', 'c'];\\n     *\\n     * _.pull(array, 'a', 'c');\\n     * console.log(array);\\n     * // => ['b', 'b']\\n     */\\n    var pull = baseRest(pullAll);\\n\\n    /**\\n     * This method is like `_.pull` except that it accepts an array of values to remove.\\n     *\\n     * **Note:** Unlike `_.difference`, this method mutates `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @param {Array} values The values to remove.\\n     * @returns {Array} Returns `array`.\\n     * @example\\n     *\\n     * var array = ['a', 'b', 'c', 'a', 'b', 'c'];\\n     *\\n     * _.pullAll(array, ['a', 'c']);\\n     * console.log(array);\\n     * // => ['b', 'b']\\n     */\\n    function pullAll(array, values) {\\n      return (array && array.length && values && values.length)\\n        ? basePullAll(array, values)\\n        : array;\\n    }\\n\\n    /**\\n     * This method is like `_.pullAll` except that it accepts `iteratee` which is\\n     * invoked for each element of `array` and `values` to generate the criterion\\n     * by which they're compared. The iteratee is invoked with one argument: (value).\\n     *\\n     * **Note:** Unlike `_.differenceBy`, this method mutates `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @param {Array} values The values to remove.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Array} Returns `array`.\\n     * @example\\n     *\\n     * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }];\\n     *\\n     * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x');\\n     * console.log(array);\\n     * // => [{ 'x': 2 }]\\n     */\\n    function pullAllBy(array, values, iteratee) {\\n      return (array && array.length && values && values.length)\\n        ? basePullAll(array, values, getIteratee(iteratee, 2))\\n        : array;\\n    }\\n\\n    /**\\n     * This method is like `_.pullAll` except that it accepts `comparator` which\\n     * is invoked to compare elements of `array` to `values`. The comparator is\\n     * invoked with two arguments: (arrVal, othVal).\\n     *\\n     * **Note:** Unlike `_.differenceWith`, this method mutates `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.6.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @param {Array} values The values to remove.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns `array`.\\n     * @example\\n     *\\n     * var array = [{ 'x': 1, 'y': 2 }, { 'x': 3, 'y': 4 }, { 'x': 5, 'y': 6 }];\\n     *\\n     * _.pullAllWith(array, [{ 'x': 3, 'y': 4 }], _.isEqual);\\n     * console.log(array);\\n     * // => [{ 'x': 1, 'y': 2 }, { 'x': 5, 'y': 6 }]\\n     */\\n    function pullAllWith(array, values, comparator) {\\n      return (array && array.length && values && values.length)\\n        ? basePullAll(array, values, undefined, comparator)\\n        : array;\\n    }\\n\\n    /**\\n     * Removes elements from `array` corresponding to `indexes` and returns an\\n     * array of removed elements.\\n     *\\n     * **Note:** Unlike `_.at`, this method mutates `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @param {...(number|number[])} [indexes] The indexes of elements to remove.\\n     * @returns {Array} Returns the new array of removed elements.\\n     * @example\\n     *\\n     * var array = ['a', 'b', 'c', 'd'];\\n     * var pulled = _.pullAt(array, [1, 3]);\\n     *\\n     * console.log(array);\\n     * // => ['a', 'c']\\n     *\\n     * console.log(pulled);\\n     * // => ['b', 'd']\\n     */\\n    var pullAt = flatRest(function(array, indexes) {\\n      var length = array == null ? 0 : array.length,\\n          result = baseAt(array, indexes);\\n\\n      basePullAt(array, arrayMap(indexes, function(index) {\\n        return isIndex(index, length) ? +index : index;\\n      }).sort(compareAscending));\\n\\n      return result;\\n    });\\n\\n    /**\\n     * Removes all elements from `array` that `predicate` returns truthy for\\n     * and returns an array of the removed elements. The predicate is invoked\\n     * with three arguments: (value, index, array).\\n     *\\n     * **Note:** Unlike `_.filter`, this method mutates `array`. Use `_.pull`\\n     * to pull elements from an array by value.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the new array of removed elements.\\n     * @example\\n     *\\n     * var array = [1, 2, 3, 4];\\n     * var evens = _.remove(array, function(n) {\\n     *   return n % 2 == 0;\\n     * });\\n     *\\n     * console.log(array);\\n     * // => [1, 3]\\n     *\\n     * console.log(evens);\\n     * // => [2, 4]\\n     */\\n    function remove(array, predicate) {\\n      var result = [];\\n      if (!(array && array.length)) {\\n        return result;\\n      }\\n      var index = -1,\\n          indexes = [],\\n          length = array.length;\\n\\n      predicate = getIteratee(predicate, 3);\\n      while (++index < length) {\\n        var value = array[index];\\n        if (predicate(value, index, array)) {\\n          result.push(value);\\n          indexes.push(index);\\n        }\\n      }\\n      basePullAt(array, indexes);\\n      return result;\\n    }\\n\\n    /**\\n     * Reverses `array` so that the first element becomes the last, the second\\n     * element becomes the second to last, and so on.\\n     *\\n     * **Note:** This method mutates `array` and is based on\\n     * [`Array#reverse`](https://mdn.io/Array/reverse).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @returns {Array} Returns `array`.\\n     * @example\\n     *\\n     * var array = [1, 2, 3];\\n     *\\n     * _.reverse(array);\\n     * // => [3, 2, 1]\\n     *\\n     * console.log(array);\\n     * // => [3, 2, 1]\\n     */\\n    function reverse(array) {\\n      return array == null ? array : nativeReverse.call(array);\\n    }\\n\\n    /**\\n     * Creates a slice of `array` from `start` up to, but not including, `end`.\\n     *\\n     * **Note:** This method is used instead of\\n     * [`Array#slice`](https://mdn.io/Array/slice) to ensure dense arrays are\\n     * returned.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to slice.\\n     * @param {number} [start=0] The start position.\\n     * @param {number} [end=array.length] The end position.\\n     * @returns {Array} Returns the slice of `array`.\\n     */\\n    function slice(array, start, end) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return [];\\n      }\\n      if (end && typeof end != 'number' && isIterateeCall(array, start, end)) {\\n        start = 0;\\n        end = length;\\n      }\\n      else {\\n        start = start == null ? 0 : toInteger(start);\\n        end = end === undefined ? length : toInteger(end);\\n      }\\n      return baseSlice(array, start, end);\\n    }\\n\\n    /**\\n     * Uses a binary search to determine the lowest index at which `value`\\n     * should be inserted into `array` in order to maintain its sort order.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The sorted array to inspect.\\n     * @param {*} value The value to evaluate.\\n     * @returns {number} Returns the index at which `value` should be inserted\\n     *  into `array`.\\n     * @example\\n     *\\n     * _.sortedIndex([30, 50], 40);\\n     * // => 1\\n     */\\n    function sortedIndex(array, value) {\\n      return baseSortedIndex(array, value);\\n    }\\n\\n    /**\\n     * This method is like `_.sortedIndex` except that it accepts `iteratee`\\n     * which is invoked for `value` and each element of `array` to compute their\\n     * sort ranking. The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The sorted array to inspect.\\n     * @param {*} value The value to evaluate.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {number} Returns the index at which `value` should be inserted\\n     *  into `array`.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 4 }, { 'x': 5 }];\\n     *\\n     * _.sortedIndexBy(objects, { 'x': 4 }, function(o) { return o.x; });\\n     * // => 0\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.sortedIndexBy(objects, { 'x': 4 }, 'x');\\n     * // => 0\\n     */\\n    function sortedIndexBy(array, value, iteratee) {\\n      return baseSortedIndexBy(array, value, getIteratee(iteratee, 2));\\n    }\\n\\n    /**\\n     * This method is like `_.indexOf` except that it performs a binary\\n     * search on a sorted `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {*} value The value to search for.\\n     * @returns {number} Returns the index of the matched value, else `-1`.\\n     * @example\\n     *\\n     * _.sortedIndexOf([4, 5, 5, 5, 6], 5);\\n     * // => 1\\n     */\\n    function sortedIndexOf(array, value) {\\n      var length = array == null ? 0 : array.length;\\n      if (length) {\\n        var index = baseSortedIndex(array, value);\\n        if (index < length && eq(array[index], value)) {\\n          return index;\\n        }\\n      }\\n      return -1;\\n    }\\n\\n    /**\\n     * This method is like `_.sortedIndex` except that it returns the highest\\n     * index at which `value` should be inserted into `array` in order to\\n     * maintain its sort order.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The sorted array to inspect.\\n     * @param {*} value The value to evaluate.\\n     * @returns {number} Returns the index at which `value` should be inserted\\n     *  into `array`.\\n     * @example\\n     *\\n     * _.sortedLastIndex([4, 5, 5, 5, 6], 5);\\n     * // => 4\\n     */\\n    function sortedLastIndex(array, value) {\\n      return baseSortedIndex(array, value, true);\\n    }\\n\\n    /**\\n     * This method is like `_.sortedLastIndex` except that it accepts `iteratee`\\n     * which is invoked for `value` and each element of `array` to compute their\\n     * sort ranking. The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The sorted array to inspect.\\n     * @param {*} value The value to evaluate.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {number} Returns the index at which `value` should be inserted\\n     *  into `array`.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 4 }, { 'x': 5 }];\\n     *\\n     * _.sortedLastIndexBy(objects, { 'x': 4 }, function(o) { return o.x; });\\n     * // => 1\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.sortedLastIndexBy(objects, { 'x': 4 }, 'x');\\n     * // => 1\\n     */\\n    function sortedLastIndexBy(array, value, iteratee) {\\n      return baseSortedIndexBy(array, value, getIteratee(iteratee, 2), true);\\n    }\\n\\n    /**\\n     * This method is like `_.lastIndexOf` except that it performs a binary\\n     * search on a sorted `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {*} value The value to search for.\\n     * @returns {number} Returns the index of the matched value, else `-1`.\\n     * @example\\n     *\\n     * _.sortedLastIndexOf([4, 5, 5, 5, 6], 5);\\n     * // => 3\\n     */\\n    function sortedLastIndexOf(array, value) {\\n      var length = array == null ? 0 : array.length;\\n      if (length) {\\n        var index = baseSortedIndex(array, value, true) - 1;\\n        if (eq(array[index], value)) {\\n          return index;\\n        }\\n      }\\n      return -1;\\n    }\\n\\n    /**\\n     * This method is like `_.uniq` except that it's designed and optimized\\n     * for sorted arrays.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @returns {Array} Returns the new duplicate free array.\\n     * @example\\n     *\\n     * _.sortedUniq([1, 1, 2]);\\n     * // => [1, 2]\\n     */\\n    function sortedUniq(array) {\\n      return (array && array.length)\\n        ? baseSortedUniq(array)\\n        : [];\\n    }\\n\\n    /**\\n     * This method is like `_.uniqBy` except that it's designed and optimized\\n     * for sorted arrays.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @returns {Array} Returns the new duplicate free array.\\n     * @example\\n     *\\n     * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor);\\n     * // => [1.1, 2.3]\\n     */\\n    function sortedUniqBy(array, iteratee) {\\n      return (array && array.length)\\n        ? baseSortedUniq(array, getIteratee(iteratee, 2))\\n        : [];\\n    }\\n\\n    /**\\n     * Gets all but the first element of `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * _.tail([1, 2, 3]);\\n     * // => [2, 3]\\n     */\\n    function tail(array) {\\n      var length = array == null ? 0 : array.length;\\n      return length ? baseSlice(array, 1, length) : [];\\n    }\\n\\n    /**\\n     * Creates a slice of `array` with `n` elements taken from the beginning.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {number} [n=1] The number of elements to take.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * _.take([1, 2, 3]);\\n     * // => [1]\\n     *\\n     * _.take([1, 2, 3], 2);\\n     * // => [1, 2]\\n     *\\n     * _.take([1, 2, 3], 5);\\n     * // => [1, 2, 3]\\n     *\\n     * _.take([1, 2, 3], 0);\\n     * // => []\\n     */\\n    function take(array, n, guard) {\\n      if (!(array && array.length)) {\\n        return [];\\n      }\\n      n = (guard || n === undefined) ? 1 : toInteger(n);\\n      return baseSlice(array, 0, n < 0 ? 0 : n);\\n    }\\n\\n    /**\\n     * Creates a slice of `array` with `n` elements taken from the end.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {number} [n=1] The number of elements to take.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * _.takeRight([1, 2, 3]);\\n     * // => [3]\\n     *\\n     * _.takeRight([1, 2, 3], 2);\\n     * // => [2, 3]\\n     *\\n     * _.takeRight([1, 2, 3], 5);\\n     * // => [1, 2, 3]\\n     *\\n     * _.takeRight([1, 2, 3], 0);\\n     * // => []\\n     */\\n    function takeRight(array, n, guard) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return [];\\n      }\\n      n = (guard || n === undefined) ? 1 : toInteger(n);\\n      n = length - n;\\n      return baseSlice(array, n < 0 ? 0 : n, length);\\n    }\\n\\n    /**\\n     * Creates a slice of `array` with elements taken from the end. Elements are\\n     * taken until `predicate` returns falsey. The predicate is invoked with\\n     * three arguments: (value, index, array).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'active': true },\\n     *   { 'user': 'fred',    'active': false },\\n     *   { 'user': 'pebbles', 'active': false }\\n     * ];\\n     *\\n     * _.takeRightWhile(users, function(o) { return !o.active; });\\n     * // => objects for ['fred', 'pebbles']\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.takeRightWhile(users, { 'user': 'pebbles', 'active': false });\\n     * // => objects for ['pebbles']\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.takeRightWhile(users, ['active', false]);\\n     * // => objects for ['fred', 'pebbles']\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.takeRightWhile(users, 'active');\\n     * // => []\\n     */\\n    function takeRightWhile(array, predicate) {\\n      return (array && array.length)\\n        ? baseWhile(array, getIteratee(predicate, 3), false, true)\\n        : [];\\n    }\\n\\n    /**\\n     * Creates a slice of `array` with elements taken from the beginning. Elements\\n     * are taken until `predicate` returns falsey. The predicate is invoked with\\n     * three arguments: (value, index, array).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'active': false },\\n     *   { 'user': 'fred',    'active': false },\\n     *   { 'user': 'pebbles', 'active': true }\\n     * ];\\n     *\\n     * _.takeWhile(users, function(o) { return !o.active; });\\n     * // => objects for ['barney', 'fred']\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.takeWhile(users, { 'user': 'barney', 'active': false });\\n     * // => objects for ['barney']\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.takeWhile(users, ['active', false]);\\n     * // => objects for ['barney', 'fred']\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.takeWhile(users, 'active');\\n     * // => []\\n     */\\n    function takeWhile(array, predicate) {\\n      return (array && array.length)\\n        ? baseWhile(array, getIteratee(predicate, 3))\\n        : [];\\n    }\\n\\n    /**\\n     * Creates an array of unique values, in order, from all given arrays using\\n     * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @returns {Array} Returns the new array of combined values.\\n     * @example\\n     *\\n     * _.union([2], [1, 2]);\\n     * // => [2, 1]\\n     */\\n    var union = baseRest(function(arrays) {\\n      return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true));\\n    });\\n\\n    /**\\n     * This method is like `_.union` except that it accepts `iteratee` which is\\n     * invoked for each element of each `arrays` to generate the criterion by\\n     * which uniqueness is computed. Result values are chosen from the first\\n     * array in which the value occurs. The iteratee is invoked with one argument:\\n     * (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Array} Returns the new array of combined values.\\n     * @example\\n     *\\n     * _.unionBy([2.1], [1.2, 2.3], Math.floor);\\n     * // => [2.1, 1.2]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');\\n     * // => [{ 'x': 1 }, { 'x': 2 }]\\n     */\\n    var unionBy = baseRest(function(arrays) {\\n      var iteratee = last(arrays);\\n      if (isArrayLikeObject(iteratee)) {\\n        iteratee = undefined;\\n      }\\n      return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), getIteratee(iteratee, 2));\\n    });\\n\\n    /**\\n     * This method is like `_.union` except that it accepts `comparator` which\\n     * is invoked to compare elements of `arrays`. Result values are chosen from\\n     * the first array in which the value occurs. The comparator is invoked\\n     * with two arguments: (arrVal, othVal).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of combined values.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];\\n     * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];\\n     *\\n     * _.unionWith(objects, others, _.isEqual);\\n     * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }]\\n     */\\n    var unionWith = baseRest(function(arrays) {\\n      var comparator = last(arrays);\\n      comparator = typeof comparator == 'function' ? comparator : undefined;\\n      return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), undefined, comparator);\\n    });\\n\\n    /**\\n     * Creates a duplicate-free version of an array, using\\n     * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons, in which only the first occurrence of each element\\n     * is kept. The order of result values is determined by the order they occur\\n     * in the array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @returns {Array} Returns the new duplicate free array.\\n     * @example\\n     *\\n     * _.uniq([2, 1, 2]);\\n     * // => [2, 1]\\n     */\\n    function uniq(array) {\\n      return (array && array.length) ? baseUniq(array) : [];\\n    }\\n\\n    /**\\n     * This method is like `_.uniq` except that it accepts `iteratee` which is\\n     * invoked for each element in `array` to generate the criterion by which\\n     * uniqueness is computed. The order of result values is determined by the\\n     * order they occur in the array. The iteratee is invoked with one argument:\\n     * (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Array} Returns the new duplicate free array.\\n     * @example\\n     *\\n     * _.uniqBy([2.1, 1.2, 2.3], Math.floor);\\n     * // => [2.1, 1.2]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x');\\n     * // => [{ 'x': 1 }, { 'x': 2 }]\\n     */\\n    function uniqBy(array, iteratee) {\\n      return (array && array.length) ? baseUniq(array, getIteratee(iteratee, 2)) : [];\\n    }\\n\\n    /**\\n     * This method is like `_.uniq` except that it accepts `comparator` which\\n     * is invoked to compare elements of `array`. The order of result values is\\n     * determined by the order they occur in the array.The comparator is invoked\\n     * with two arguments: (arrVal, othVal).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new duplicate free array.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }];\\n     *\\n     * _.uniqWith(objects, _.isEqual);\\n     * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]\\n     */\\n    function uniqWith(array, comparator) {\\n      comparator = typeof comparator == 'function' ? comparator : undefined;\\n      return (array && array.length) ? baseUniq(array, undefined, comparator) : [];\\n    }\\n\\n    /**\\n     * This method is like `_.zip` except that it accepts an array of grouped\\n     * elements and creates an array regrouping the elements to their pre-zip\\n     * configuration.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.2.0\\n     * @category Array\\n     * @param {Array} array The array of grouped elements to process.\\n     * @returns {Array} Returns the new array of regrouped elements.\\n     * @example\\n     *\\n     * var zipped = _.zip(['a', 'b'], [1, 2], [true, false]);\\n     * // => [['a', 1, true], ['b', 2, false]]\\n     *\\n     * _.unzip(zipped);\\n     * // => [['a', 'b'], [1, 2], [true, false]]\\n     */\\n    function unzip(array) {\\n      if (!(array && array.length)) {\\n        return [];\\n      }\\n      var length = 0;\\n      array = arrayFilter(array, function(group) {\\n        if (isArrayLikeObject(group)) {\\n          length = nativeMax(group.length, length);\\n          return true;\\n        }\\n      });\\n      return baseTimes(length, function(index) {\\n        return arrayMap(array, baseProperty(index));\\n      });\\n    }\\n\\n    /**\\n     * This method is like `_.unzip` except that it accepts `iteratee` to specify\\n     * how regrouped values should be combined. The iteratee is invoked with the\\n     * elements of each group: (...group).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.8.0\\n     * @category Array\\n     * @param {Array} array The array of grouped elements to process.\\n     * @param {Function} [iteratee=_.identity] The function to combine\\n     *  regrouped values.\\n     * @returns {Array} Returns the new array of regrouped elements.\\n     * @example\\n     *\\n     * var zipped = _.zip([1, 2], [10, 20], [100, 200]);\\n     * // => [[1, 10, 100], [2, 20, 200]]\\n     *\\n     * _.unzipWith(zipped, _.add);\\n     * // => [3, 30, 300]\\n     */\\n    function unzipWith(array, iteratee) {\\n      if (!(array && array.length)) {\\n        return [];\\n      }\\n      var result = unzip(array);\\n      if (iteratee == null) {\\n        return result;\\n      }\\n      return arrayMap(result, function(group) {\\n        return apply(iteratee, undefined, group);\\n      });\\n    }\\n\\n    /**\\n     * Creates an array excluding all given values using\\n     * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons.\\n     *\\n     * **Note:** Unlike `_.pull`, this method returns a new array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {...*} [values] The values to exclude.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @see _.difference, _.xor\\n     * @example\\n     *\\n     * _.without([2, 1, 2, 3], 1, 2);\\n     * // => [3]\\n     */\\n    var without = baseRest(function(array, values) {\\n      return isArrayLikeObject(array)\\n        ? baseDifference(array, values)\\n        : [];\\n    });\\n\\n    /**\\n     * Creates an array of unique values that is the\\n     * [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference)\\n     * of the given arrays. The order of result values is determined by the order\\n     * they occur in the arrays.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.4.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @see _.difference, _.without\\n     * @example\\n     *\\n     * _.xor([2, 1], [2, 3]);\\n     * // => [1, 3]\\n     */\\n    var xor = baseRest(function(arrays) {\\n      return baseXor(arrayFilter(arrays, isArrayLikeObject));\\n    });\\n\\n    /**\\n     * This method is like `_.xor` except that it accepts `iteratee` which is\\n     * invoked for each element of each `arrays` to generate the criterion by\\n     * which by which they're compared. The order of result values is determined\\n     * by the order they occur in the arrays. The iteratee is invoked with one\\n     * argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @example\\n     *\\n     * _.xorBy([2.1, 1.2], [2.3, 3.4], Math.floor);\\n     * // => [1.2, 3.4]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');\\n     * // => [{ 'x': 2 }]\\n     */\\n    var xorBy = baseRest(function(arrays) {\\n      var iteratee = last(arrays);\\n      if (isArrayLikeObject(iteratee)) {\\n        iteratee = undefined;\\n      }\\n      return baseXor(arrayFilter(arrays, isArrayLikeObject), getIteratee(iteratee, 2));\\n    });\\n\\n    /**\\n     * This method is like `_.xor` except that it accepts `comparator` which is\\n     * invoked to compare elements of `arrays`. The order of result values is\\n     * determined by the order they occur in the arrays. The comparator is invoked\\n     * with two arguments: (arrVal, othVal).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];\\n     * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];\\n     *\\n     * _.xorWith(objects, others, _.isEqual);\\n     * // => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }]\\n     */\\n    var xorWith = baseRest(function(arrays) {\\n      var comparator = last(arrays);\\n      comparator = typeof comparator == 'function' ? comparator : undefined;\\n      return baseXor(arrayFilter(arrays, isArrayLikeObject), undefined, comparator);\\n    });\\n\\n    /**\\n     * Creates an array of grouped elements, the first of which contains the\\n     * first elements of the given arrays, the second of which contains the\\n     * second elements of the given arrays, and so on.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to process.\\n     * @returns {Array} Returns the new array of grouped elements.\\n     * @example\\n     *\\n     * _.zip(['a', 'b'], [1, 2], [true, false]);\\n     * // => [['a', 1, true], ['b', 2, false]]\\n     */\\n    var zip = baseRest(unzip);\\n\\n    /**\\n     * This method is like `_.fromPairs` except that it accepts two arrays,\\n     * one of property identifiers and one of corresponding values.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.4.0\\n     * @category Array\\n     * @param {Array} [props=[]] The property identifiers.\\n     * @param {Array} [values=[]] The property values.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * _.zipObject(['a', 'b'], [1, 2]);\\n     * // => { 'a': 1, 'b': 2 }\\n     */\\n    function zipObject(props, values) {\\n      return baseZipObject(props || [], values || [], assignValue);\\n    }\\n\\n    /**\\n     * This method is like `_.zipObject` except that it supports property paths.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.1.0\\n     * @category Array\\n     * @param {Array} [props=[]] The property identifiers.\\n     * @param {Array} [values=[]] The property values.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * _.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]);\\n     * // => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } }\\n     */\\n    function zipObjectDeep(props, values) {\\n      return baseZipObject(props || [], values || [], baseSet);\\n    }\\n\\n    /**\\n     * This method is like `_.zip` except that it accepts `iteratee` to specify\\n     * how grouped values should be combined. The iteratee is invoked with the\\n     * elements of each group: (...group).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.8.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to process.\\n     * @param {Function} [iteratee=_.identity] The function to combine\\n     *  grouped values.\\n     * @returns {Array} Returns the new array of grouped elements.\\n     * @example\\n     *\\n     * _.zipWith([1, 2], [10, 20], [100, 200], function(a, b, c) {\\n     *   return a + b + c;\\n     * });\\n     * // => [111, 222]\\n     */\\n    var zipWith = baseRest(function(arrays) {\\n      var length = arrays.length,\\n          iteratee = length > 1 ? arrays[length - 1] : undefined;\\n\\n      iteratee = typeof iteratee == 'function' ? (arrays.pop(), iteratee) : undefined;\\n      return unzipWith(arrays, iteratee);\\n    });\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates a `lodash` wrapper instance that wraps `value` with explicit method\\n     * chain sequences enabled. The result of such sequences must be unwrapped\\n     * with `_#value`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.3.0\\n     * @category Seq\\n     * @param {*} value The value to wrap.\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'age': 36 },\\n     *   { 'user': 'fred',    'age': 40 },\\n     *   { 'user': 'pebbles', 'age': 1 }\\n     * ];\\n     *\\n     * var youngest = _\\n     *   .chain(users)\\n     *   .sortBy('age')\\n     *   .map(function(o) {\\n     *     return o.user + ' is ' + o.age;\\n     *   })\\n     *   .head()\\n     *   .value();\\n     * // => 'pebbles is 1'\\n     */\\n    function chain(value) {\\n      var result = lodash(value);\\n      result.__chain__ = true;\\n      return result;\\n    }\\n\\n    /**\\n     * This method invokes `interceptor` and returns `value`. The interceptor\\n     * is invoked with one argument; (value). The purpose of this method is to\\n     * \\\"tap into\\\" a method chain sequence in order to modify intermediate results.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Seq\\n     * @param {*} value The value to provide to `interceptor`.\\n     * @param {Function} interceptor The function to invoke.\\n     * @returns {*} Returns `value`.\\n     * @example\\n     *\\n     * _([1, 2, 3])\\n     *  .tap(function(array) {\\n     *    // Mutate input array.\\n     *    array.pop();\\n     *  })\\n     *  .reverse()\\n     *  .value();\\n     * // => [2, 1]\\n     */\\n    function tap(value, interceptor) {\\n      interceptor(value);\\n      return value;\\n    }\\n\\n    /**\\n     * This method is like `_.tap` except that it returns the result of `interceptor`.\\n     * The purpose of this method is to \\\"pass thru\\\" values replacing intermediate\\n     * results in a method chain sequence.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Seq\\n     * @param {*} value The value to provide to `interceptor`.\\n     * @param {Function} interceptor The function to invoke.\\n     * @returns {*} Returns the result of `interceptor`.\\n     * @example\\n     *\\n     * _('  abc  ')\\n     *  .chain()\\n     *  .trim()\\n     *  .thru(function(value) {\\n     *    return [value];\\n     *  })\\n     *  .value();\\n     * // => ['abc']\\n     */\\n    function thru(value, interceptor) {\\n      return interceptor(value);\\n    }\\n\\n    /**\\n     * This method is the wrapper version of `_.at`.\\n     *\\n     * @name at\\n     * @memberOf _\\n     * @since 1.0.0\\n     * @category Seq\\n     * @param {...(string|string[])} [paths] The property paths to pick.\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };\\n     *\\n     * _(object).at(['a[0].b.c', 'a[1]']).value();\\n     * // => [3, 4]\\n     */\\n    var wrapperAt = flatRest(function(paths) {\\n      var length = paths.length,\\n          start = length ? paths[0] : 0,\\n          value = this.__wrapped__,\\n          interceptor = function(object) { return baseAt(object, paths); };\\n\\n      if (length > 1 || this.__actions__.length ||\\n          !(value instanceof LazyWrapper) || !isIndex(start)) {\\n        return this.thru(interceptor);\\n      }\\n      value = value.slice(start, +start + (length ? 1 : 0));\\n      value.__actions__.push({\\n        'func': thru,\\n        'args': [interceptor],\\n        'thisArg': undefined\\n      });\\n      return new LodashWrapper(value, this.__chain__).thru(function(array) {\\n        if (length && !array.length) {\\n          array.push(undefined);\\n        }\\n        return array;\\n      });\\n    });\\n\\n    /**\\n     * Creates a `lodash` wrapper instance with explicit method chain sequences enabled.\\n     *\\n     * @name chain\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Seq\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney', 'age': 36 },\\n     *   { 'user': 'fred',   'age': 40 }\\n     * ];\\n     *\\n     * // A sequence without explicit chaining.\\n     * _(users).head();\\n     * // => { 'user': 'barney', 'age': 36 }\\n     *\\n     * // A sequence with explicit chaining.\\n     * _(users)\\n     *   .chain()\\n     *   .head()\\n     *   .pick('user')\\n     *   .value();\\n     * // => { 'user': 'barney' }\\n     */\\n    function wrapperChain() {\\n      return chain(this);\\n    }\\n\\n    /**\\n     * Executes the chain sequence and returns the wrapped result.\\n     *\\n     * @name commit\\n     * @memberOf _\\n     * @since 3.2.0\\n     * @category Seq\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * var array = [1, 2];\\n     * var wrapped = _(array).push(3);\\n     *\\n     * console.log(array);\\n     * // => [1, 2]\\n     *\\n     * wrapped = wrapped.commit();\\n     * console.log(array);\\n     * // => [1, 2, 3]\\n     *\\n     * wrapped.last();\\n     * // => 3\\n     *\\n     * console.log(array);\\n     * // => [1, 2, 3]\\n     */\\n    function wrapperCommit() {\\n      return new LodashWrapper(this.value(), this.__chain__);\\n    }\\n\\n    /**\\n     * Gets the next value on a wrapped object following the\\n     * [iterator protocol](https://mdn.io/iteration_protocols#iterator).\\n     *\\n     * @name next\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Seq\\n     * @returns {Object} Returns the next iterator value.\\n     * @example\\n     *\\n     * var wrapped = _([1, 2]);\\n     *\\n     * wrapped.next();\\n     * // => { 'done': false, 'value': 1 }\\n     *\\n     * wrapped.next();\\n     * // => { 'done': false, 'value': 2 }\\n     *\\n     * wrapped.next();\\n     * // => { 'done': true, 'value': undefined }\\n     */\\n    function wrapperNext() {\\n      if (this.__values__ === undefined) {\\n        this.__values__ = toArray(this.value());\\n      }\\n      var done = this.__index__ >= this.__values__.length,\\n          value = done ? undefined : this.__values__[this.__index__++];\\n\\n      return { 'done': done, 'value': value };\\n    }\\n\\n    /**\\n     * Enables the wrapper to be iterable.\\n     *\\n     * @name Symbol.iterator\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Seq\\n     * @returns {Object} Returns the wrapper object.\\n     * @example\\n     *\\n     * var wrapped = _([1, 2]);\\n     *\\n     * wrapped[Symbol.iterator]() === wrapped;\\n     * // => true\\n     *\\n     * Array.from(wrapped);\\n     * // => [1, 2]\\n     */\\n    function wrapperToIterator() {\\n      return this;\\n    }\\n\\n    /**\\n     * Creates a clone of the chain sequence planting `value` as the wrapped value.\\n     *\\n     * @name plant\\n     * @memberOf _\\n     * @since 3.2.0\\n     * @category Seq\\n     * @param {*} value The value to plant.\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * function square(n) {\\n     *   return n * n;\\n     * }\\n     *\\n     * var wrapped = _([1, 2]).map(square);\\n     * var other = wrapped.plant([3, 4]);\\n     *\\n     * other.value();\\n     * // => [9, 16]\\n     *\\n     * wrapped.value();\\n     * // => [1, 4]\\n     */\\n    function wrapperPlant(value) {\\n      var result,\\n          parent = this;\\n\\n      while (parent instanceof baseLodash) {\\n        var clone = wrapperClone(parent);\\n        clone.__index__ = 0;\\n        clone.__values__ = undefined;\\n        if (result) {\\n          previous.__wrapped__ = clone;\\n        } else {\\n          result = clone;\\n        }\\n        var previous = clone;\\n        parent = parent.__wrapped__;\\n      }\\n      previous.__wrapped__ = value;\\n      return result;\\n    }\\n\\n    /**\\n     * This method is the wrapper version of `_.reverse`.\\n     *\\n     * **Note:** This method mutates the wrapped array.\\n     *\\n     * @name reverse\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Seq\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * var array = [1, 2, 3];\\n     *\\n     * _(array).reverse().value()\\n     * // => [3, 2, 1]\\n     *\\n     * console.log(array);\\n     * // => [3, 2, 1]\\n     */\\n    function wrapperReverse() {\\n      var value = this.__wrapped__;\\n      if (value instanceof LazyWrapper) {\\n        var wrapped = value;\\n        if (this.__actions__.length) {\\n          wrapped = new LazyWrapper(this);\\n        }\\n        wrapped = wrapped.reverse();\\n        wrapped.__actions__.push({\\n          'func': thru,\\n          'args': [reverse],\\n          'thisArg': undefined\\n        });\\n        return new LodashWrapper(wrapped, this.__chain__);\\n      }\\n      return this.thru(reverse);\\n    }\\n\\n    /**\\n     * Executes the chain sequence to resolve the unwrapped value.\\n     *\\n     * @name value\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @alias toJSON, valueOf\\n     * @category Seq\\n     * @returns {*} Returns the resolved unwrapped value.\\n     * @example\\n     *\\n     * _([1, 2, 3]).value();\\n     * // => [1, 2, 3]\\n     */\\n    function wrapperValue() {\\n      return baseWrapperValue(this.__wrapped__, this.__actions__);\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates an object composed of keys generated from the results of running\\n     * each element of `collection` thru `iteratee`. The corresponding value of\\n     * each key is the number of times the key was returned by `iteratee`. The\\n     * iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.5.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee to transform keys.\\n     * @returns {Object} Returns the composed aggregate object.\\n     * @example\\n     *\\n     * _.countBy([6.1, 4.2, 6.3], Math.floor);\\n     * // => { '4': 1, '6': 2 }\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.countBy(['one', 'two', 'three'], 'length');\\n     * // => { '3': 2, '5': 1 }\\n     */\\n    var countBy = createAggregator(function(result, value, key) {\\n      if (hasOwnProperty.call(result, key)) {\\n        ++result[key];\\n      } else {\\n        baseAssignValue(result, key, 1);\\n      }\\n    });\\n\\n    /**\\n     * Checks if `predicate` returns truthy for **all** elements of `collection`.\\n     * Iteration is stopped once `predicate` returns falsey. The predicate is\\n     * invoked with three arguments: (value, index|key, collection).\\n     *\\n     * **Note:** This method returns `true` for\\n     * [empty collections](https://en.wikipedia.org/wiki/Empty_set) because\\n     * [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of\\n     * elements of empty collections.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {boolean} Returns `true` if all elements pass the predicate check,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.every([true, 1, null, 'yes'], Boolean);\\n     * // => false\\n     *\\n     * var users = [\\n     *   { 'user': 'barney', 'age': 36, 'active': false },\\n     *   { 'user': 'fred',   'age': 40, 'active': false }\\n     * ];\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.every(users, { 'user': 'barney', 'active': false });\\n     * // => false\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.every(users, ['active', false]);\\n     * // => true\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.every(users, 'active');\\n     * // => false\\n     */\\n    function every(collection, predicate, guard) {\\n      var func = isArray(collection) ? arrayEvery : baseEvery;\\n      if (guard && isIterateeCall(collection, predicate, guard)) {\\n        predicate = undefined;\\n      }\\n      return func(collection, getIteratee(predicate, 3));\\n    }\\n\\n    /**\\n     * Iterates over elements of `collection`, returning an array of all elements\\n     * `predicate` returns truthy for. The predicate is invoked with three\\n     * arguments: (value, index|key, collection).\\n     *\\n     * **Note:** Unlike `_.remove`, this method returns a new array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the new filtered array.\\n     * @see _.reject\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney', 'age': 36, 'active': true },\\n     *   { 'user': 'fred',   'age': 40, 'active': false }\\n     * ];\\n     *\\n     * _.filter(users, function(o) { return !o.active; });\\n     * // => objects for ['fred']\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.filter(users, { 'age': 36, 'active': true });\\n     * // => objects for ['barney']\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.filter(users, ['active', false]);\\n     * // => objects for ['fred']\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.filter(users, 'active');\\n     * // => objects for ['barney']\\n     *\\n     * // Combining several predicates using `_.overEvery` or `_.overSome`.\\n     * _.filter(users, _.overSome([{ 'age': 36 }, ['age', 40]]));\\n     * // => objects for ['fred', 'barney']\\n     */\\n    function filter(collection, predicate) {\\n      var func = isArray(collection) ? arrayFilter : baseFilter;\\n      return func(collection, getIteratee(predicate, 3));\\n    }\\n\\n    /**\\n     * Iterates over elements of `collection`, returning the first element\\n     * `predicate` returns truthy for. The predicate is invoked with three\\n     * arguments: (value, index|key, collection).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to inspect.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @param {number} [fromIndex=0] The index to search from.\\n     * @returns {*} Returns the matched element, else `undefined`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'age': 36, 'active': true },\\n     *   { 'user': 'fred',    'age': 40, 'active': false },\\n     *   { 'user': 'pebbles', 'age': 1,  'active': true }\\n     * ];\\n     *\\n     * _.find(users, function(o) { return o.age < 40; });\\n     * // => object for 'barney'\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.find(users, { 'age': 1, 'active': true });\\n     * // => object for 'pebbles'\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.find(users, ['active', false]);\\n     * // => object for 'fred'\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.find(users, 'active');\\n     * // => object for 'barney'\\n     */\\n    var find = createFind(findIndex);\\n\\n    /**\\n     * This method is like `_.find` except that it iterates over elements of\\n     * `collection` from right to left.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to inspect.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @param {number} [fromIndex=collection.length-1] The index to search from.\\n     * @returns {*} Returns the matched element, else `undefined`.\\n     * @example\\n     *\\n     * _.findLast([1, 2, 3, 4], function(n) {\\n     *   return n % 2 == 1;\\n     * });\\n     * // => 3\\n     */\\n    var findLast = createFind(findLastIndex);\\n\\n    /**\\n     * Creates a flattened array of values by running each element in `collection`\\n     * thru `iteratee` and flattening the mapped results. The iteratee is invoked\\n     * with three arguments: (value, index|key, collection).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the new flattened array.\\n     * @example\\n     *\\n     * function duplicate(n) {\\n     *   return [n, n];\\n     * }\\n     *\\n     * _.flatMap([1, 2], duplicate);\\n     * // => [1, 1, 2, 2]\\n     */\\n    function flatMap(collection, iteratee) {\\n      return baseFlatten(map(collection, iteratee), 1);\\n    }\\n\\n    /**\\n     * This method is like `_.flatMap` except that it recursively flattens the\\n     * mapped results.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.7.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the new flattened array.\\n     * @example\\n     *\\n     * function duplicate(n) {\\n     *   return [[[n, n]]];\\n     * }\\n     *\\n     * _.flatMapDeep([1, 2], duplicate);\\n     * // => [1, 1, 2, 2]\\n     */\\n    function flatMapDeep(collection, iteratee) {\\n      return baseFlatten(map(collection, iteratee), INFINITY);\\n    }\\n\\n    /**\\n     * This method is like `_.flatMap` except that it recursively flattens the\\n     * mapped results up to `depth` times.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.7.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @param {number} [depth=1] The maximum recursion depth.\\n     * @returns {Array} Returns the new flattened array.\\n     * @example\\n     *\\n     * function duplicate(n) {\\n     *   return [[[n, n]]];\\n     * }\\n     *\\n     * _.flatMapDepth([1, 2], duplicate, 2);\\n     * // => [[1, 1], [2, 2]]\\n     */\\n    function flatMapDepth(collection, iteratee, depth) {\\n      depth = depth === undefined ? 1 : toInteger(depth);\\n      return baseFlatten(map(collection, iteratee), depth);\\n    }\\n\\n    /**\\n     * Iterates over elements of `collection` and invokes `iteratee` for each element.\\n     * The iteratee is invoked with three arguments: (value, index|key, collection).\\n     * Iteratee functions may exit iteration early by explicitly returning `false`.\\n     *\\n     * **Note:** As with other \\\"Collections\\\" methods, objects with a \\\"length\\\"\\n     * property are iterated like arrays. To avoid this behavior use `_.forIn`\\n     * or `_.forOwn` for object iteration.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @alias each\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Array|Object} Returns `collection`.\\n     * @see _.forEachRight\\n     * @example\\n     *\\n     * _.forEach([1, 2], function(value) {\\n     *   console.log(value);\\n     * });\\n     * // => Logs `1` then `2`.\\n     *\\n     * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) {\\n     *   console.log(key);\\n     * });\\n     * // => Logs 'a' then 'b' (iteration order is not guaranteed).\\n     */\\n    function forEach(collection, iteratee) {\\n      var func = isArray(collection) ? arrayEach : baseEach;\\n      return func(collection, getIteratee(iteratee, 3));\\n    }\\n\\n    /**\\n     * This method is like `_.forEach` except that it iterates over elements of\\n     * `collection` from right to left.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @alias eachRight\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Array|Object} Returns `collection`.\\n     * @see _.forEach\\n     * @example\\n     *\\n     * _.forEachRight([1, 2], function(value) {\\n     *   console.log(value);\\n     * });\\n     * // => Logs `2` then `1`.\\n     */\\n    function forEachRight(collection, iteratee) {\\n      var func = isArray(collection) ? arrayEachRight : baseEachRight;\\n      return func(collection, getIteratee(iteratee, 3));\\n    }\\n\\n    /**\\n     * Creates an object composed of keys generated from the results of running\\n     * each element of `collection` thru `iteratee`. The order of grouped values\\n     * is determined by the order they occur in `collection`. The corresponding\\n     * value of each key is an array of elements responsible for generating the\\n     * key. The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee to transform keys.\\n     * @returns {Object} Returns the composed aggregate object.\\n     * @example\\n     *\\n     * _.groupBy([6.1, 4.2, 6.3], Math.floor);\\n     * // => { '4': [4.2], '6': [6.1, 6.3] }\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.groupBy(['one', 'two', 'three'], 'length');\\n     * // => { '3': ['one', 'two'], '5': ['three'] }\\n     */\\n    var groupBy = createAggregator(function(result, value, key) {\\n      if (hasOwnProperty.call(result, key)) {\\n        result[key].push(value);\\n      } else {\\n        baseAssignValue(result, key, [value]);\\n      }\\n    });\\n\\n    /**\\n     * Checks if `value` is in `collection`. If `collection` is a string, it's\\n     * checked for a substring of `value`, otherwise\\n     * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * is used for equality comparisons. If `fromIndex` is negative, it's used as\\n     * the offset from the end of `collection`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object|string} collection The collection to inspect.\\n     * @param {*} value The value to search for.\\n     * @param {number} [fromIndex=0] The index to search from.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`.\\n     * @returns {boolean} Returns `true` if `value` is found, else `false`.\\n     * @example\\n     *\\n     * _.includes([1, 2, 3], 1);\\n     * // => true\\n     *\\n     * _.includes([1, 2, 3], 1, 2);\\n     * // => false\\n     *\\n     * _.includes({ 'a': 1, 'b': 2 }, 1);\\n     * // => true\\n     *\\n     * _.includes('abcd', 'bc');\\n     * // => true\\n     */\\n    function includes(collection, value, fromIndex, guard) {\\n      collection = isArrayLike(collection) ? collection : values(collection);\\n      fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0;\\n\\n      var length = collection.length;\\n      if (fromIndex < 0) {\\n        fromIndex = nativeMax(length + fromIndex, 0);\\n      }\\n      return isString(collection)\\n        ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1)\\n        : (!!length && baseIndexOf(collection, value, fromIndex) > -1);\\n    }\\n\\n    /**\\n     * Invokes the method at `path` of each element in `collection`, returning\\n     * an array of the results of each invoked method. Any additional arguments\\n     * are provided to each invoked method. If `path` is a function, it's invoked\\n     * for, and `this` bound to, each element in `collection`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Array|Function|string} path The path of the method to invoke or\\n     *  the function invoked per iteration.\\n     * @param {...*} [args] The arguments to invoke each method with.\\n     * @returns {Array} Returns the array of results.\\n     * @example\\n     *\\n     * _.invokeMap([[5, 1, 7], [3, 2, 1]], 'sort');\\n     * // => [[1, 5, 7], [1, 2, 3]]\\n     *\\n     * _.invokeMap([123, 456], String.prototype.split, '');\\n     * // => [['1', '2', '3'], ['4', '5', '6']]\\n     */\\n    var invokeMap = baseRest(function(collection, path, args) {\\n      var index = -1,\\n          isFunc = typeof path == 'function',\\n          result = isArrayLike(collection) ? Array(collection.length) : [];\\n\\n      baseEach(collection, function(value) {\\n        result[++index] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args);\\n      });\\n      return result;\\n    });\\n\\n    /**\\n     * Creates an object composed of keys generated from the results of running\\n     * each element of `collection` thru `iteratee`. The corresponding value of\\n     * each key is the last element responsible for generating the key. The\\n     * iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee to transform keys.\\n     * @returns {Object} Returns the composed aggregate object.\\n     * @example\\n     *\\n     * var array = [\\n     *   { 'dir': 'left', 'code': 97 },\\n     *   { 'dir': 'right', 'code': 100 }\\n     * ];\\n     *\\n     * _.keyBy(array, function(o) {\\n     *   return String.fromCharCode(o.code);\\n     * });\\n     * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } }\\n     *\\n     * _.keyBy(array, 'dir');\\n     * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } }\\n     */\\n    var keyBy = createAggregator(function(result, value, key) {\\n      baseAssignValue(result, key, value);\\n    });\\n\\n    /**\\n     * Creates an array of values by running each element in `collection` thru\\n     * `iteratee`. The iteratee is invoked with three arguments:\\n     * (value, index|key, collection).\\n     *\\n     * Many lodash methods are guarded to work as iteratees for methods like\\n     * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`.\\n     *\\n     * The guarded methods are:\\n     * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`,\\n     * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`,\\n     * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`,\\n     * `template`, `trim`, `trimEnd`, `trimStart`, and `words`\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the new mapped array.\\n     * @example\\n     *\\n     * function square(n) {\\n     *   return n * n;\\n     * }\\n     *\\n     * _.map([4, 8], square);\\n     * // => [16, 64]\\n     *\\n     * _.map({ 'a': 4, 'b': 8 }, square);\\n     * // => [16, 64] (iteration order is not guaranteed)\\n     *\\n     * var users = [\\n     *   { 'user': 'barney' },\\n     *   { 'user': 'fred' }\\n     * ];\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.map(users, 'user');\\n     * // => ['barney', 'fred']\\n     */\\n    function map(collection, iteratee) {\\n      var func = isArray(collection) ? arrayMap : baseMap;\\n      return func(collection, getIteratee(iteratee, 3));\\n    }\\n\\n    /**\\n     * This method is like `_.sortBy` except that it allows specifying the sort\\n     * orders of the iteratees to sort by. If `orders` is unspecified, all values\\n     * are sorted in ascending order. Otherwise, specify an order of \\\"desc\\\" for\\n     * descending or \\\"asc\\\" for ascending sort order of corresponding values.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]]\\n     *  The iteratees to sort by.\\n     * @param {string[]} [orders] The sort orders of `iteratees`.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`.\\n     * @returns {Array} Returns the new sorted array.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'fred',   'age': 48 },\\n     *   { 'user': 'barney', 'age': 34 },\\n     *   { 'user': 'fred',   'age': 40 },\\n     *   { 'user': 'barney', 'age': 36 }\\n     * ];\\n     *\\n     * // Sort by `user` in ascending order and by `age` in descending order.\\n     * _.orderBy(users, ['user', 'age'], ['asc', 'desc']);\\n     * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]]\\n     */\\n    function orderBy(collection, iteratees, orders, guard) {\\n      if (collection == null) {\\n        return [];\\n      }\\n      if (!isArray(iteratees)) {\\n        iteratees = iteratees == null ? [] : [iteratees];\\n      }\\n      orders = guard ? undefined : orders;\\n      if (!isArray(orders)) {\\n        orders = orders == null ? [] : [orders];\\n      }\\n      return baseOrderBy(collection, iteratees, orders);\\n    }\\n\\n    /**\\n     * Creates an array of elements split into two groups, the first of which\\n     * contains elements `predicate` returns truthy for, the second of which\\n     * contains elements `predicate` returns falsey for. The predicate is\\n     * invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the array of grouped elements.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'age': 36, 'active': false },\\n     *   { 'user': 'fred',    'age': 40, 'active': true },\\n     *   { 'user': 'pebbles', 'age': 1,  'active': false }\\n     * ];\\n     *\\n     * _.partition(users, function(o) { return o.active; });\\n     * // => objects for [['fred'], ['barney', 'pebbles']]\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.partition(users, { 'age': 1, 'active': false });\\n     * // => objects for [['pebbles'], ['barney', 'fred']]\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.partition(users, ['active', false]);\\n     * // => objects for [['barney', 'pebbles'], ['fred']]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.partition(users, 'active');\\n     * // => objects for [['fred'], ['barney', 'pebbles']]\\n     */\\n    var partition = createAggregator(function(result, value, key) {\\n      result[key ? 0 : 1].push(value);\\n    }, function() { return [[], []]; });\\n\\n    /**\\n     * Reduces `collection` to a value which is the accumulated result of running\\n     * each element in `collection` thru `iteratee`, where each successive\\n     * invocation is supplied the return value of the previous. If `accumulator`\\n     * is not given, the first element of `collection` is used as the initial\\n     * value. The iteratee is invoked with four arguments:\\n     * (accumulator, value, index|key, collection).\\n     *\\n     * Many lodash methods are guarded to work as iteratees for methods like\\n     * `_.reduce`, `_.reduceRight`, and `_.transform`.\\n     *\\n     * The guarded methods are:\\n     * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`,\\n     * and `sortBy`\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @param {*} [accumulator] The initial value.\\n     * @returns {*} Returns the accumulated value.\\n     * @see _.reduceRight\\n     * @example\\n     *\\n     * _.reduce([1, 2], function(sum, n) {\\n     *   return sum + n;\\n     * }, 0);\\n     * // => 3\\n     *\\n     * _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) {\\n     *   (result[value] || (result[value] = [])).push(key);\\n     *   return result;\\n     * }, {});\\n     * // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed)\\n     */\\n    function reduce(collection, iteratee, accumulator) {\\n      var func = isArray(collection) ? arrayReduce : baseReduce,\\n          initAccum = arguments.length < 3;\\n\\n      return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEach);\\n    }\\n\\n    /**\\n     * This method is like `_.reduce` except that it iterates over elements of\\n     * `collection` from right to left.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @param {*} [accumulator] The initial value.\\n     * @returns {*} Returns the accumulated value.\\n     * @see _.reduce\\n     * @example\\n     *\\n     * var array = [[0, 1], [2, 3], [4, 5]];\\n     *\\n     * _.reduceRight(array, function(flattened, other) {\\n     *   return flattened.concat(other);\\n     * }, []);\\n     * // => [4, 5, 2, 3, 0, 1]\\n     */\\n    function reduceRight(collection, iteratee, accumulator) {\\n      var func = isArray(collection) ? arrayReduceRight : baseReduce,\\n          initAccum = arguments.length < 3;\\n\\n      return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEachRight);\\n    }\\n\\n    /**\\n     * The opposite of `_.filter`; this method returns the elements of `collection`\\n     * that `predicate` does **not** return truthy for.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the new filtered array.\\n     * @see _.filter\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney', 'age': 36, 'active': false },\\n     *   { 'user': 'fred',   'age': 40, 'active': true }\\n     * ];\\n     *\\n     * _.reject(users, function(o) { return !o.active; });\\n     * // => objects for ['fred']\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.reject(users, { 'age': 40, 'active': true });\\n     * // => objects for ['barney']\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.reject(users, ['active', false]);\\n     * // => objects for ['fred']\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.reject(users, 'active');\\n     * // => objects for ['barney']\\n     */\\n    function reject(collection, predicate) {\\n      var func = isArray(collection) ? arrayFilter : baseFilter;\\n      return func(collection, negate(getIteratee(predicate, 3)));\\n    }\\n\\n    /**\\n     * Gets a random element from `collection`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to sample.\\n     * @returns {*} Returns the random element.\\n     * @example\\n     *\\n     * _.sample([1, 2, 3, 4]);\\n     * // => 2\\n     */\\n    function sample(collection) {\\n      var func = isArray(collection) ? arraySample : baseSample;\\n      return func(collection);\\n    }\\n\\n    /**\\n     * Gets `n` random elements at unique keys from `collection` up to the\\n     * size of `collection`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to sample.\\n     * @param {number} [n=1] The number of elements to sample.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the random elements.\\n     * @example\\n     *\\n     * _.sampleSize([1, 2, 3], 2);\\n     * // => [3, 1]\\n     *\\n     * _.sampleSize([1, 2, 3], 4);\\n     * // => [2, 3, 1]\\n     */\\n    function sampleSize(collection, n, guard) {\\n      if ((guard ? isIterateeCall(collection, n, guard) : n === undefined)) {\\n        n = 1;\\n      } else {\\n        n = toInteger(n);\\n      }\\n      var func = isArray(collection) ? arraySampleSize : baseSampleSize;\\n      return func(collection, n);\\n    }\\n\\n    /**\\n     * Creates an array of shuffled values, using a version of the\\n     * [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to shuffle.\\n     * @returns {Array} Returns the new shuffled array.\\n     * @example\\n     *\\n     * _.shuffle([1, 2, 3, 4]);\\n     * // => [4, 1, 3, 2]\\n     */\\n    function shuffle(collection) {\\n      var func = isArray(collection) ? arrayShuffle : baseShuffle;\\n      return func(collection);\\n    }\\n\\n    /**\\n     * Gets the size of `collection` by returning its length for array-like\\n     * values or the number of own enumerable string keyed properties for objects.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object|string} collection The collection to inspect.\\n     * @returns {number} Returns the collection size.\\n     * @example\\n     *\\n     * _.size([1, 2, 3]);\\n     * // => 3\\n     *\\n     * _.size({ 'a': 1, 'b': 2 });\\n     * // => 2\\n     *\\n     * _.size('pebbles');\\n     * // => 7\\n     */\\n    function size(collection) {\\n      if (collection == null) {\\n        return 0;\\n      }\\n      if (isArrayLike(collection)) {\\n        return isString(collection) ? stringSize(collection) : collection.length;\\n      }\\n      var tag = getTag(collection);\\n      if (tag == mapTag || tag == setTag) {\\n        return collection.size;\\n      }\\n      return baseKeys(collection).length;\\n    }\\n\\n    /**\\n     * Checks if `predicate` returns truthy for **any** element of `collection`.\\n     * Iteration is stopped once `predicate` returns truthy. The predicate is\\n     * invoked with three arguments: (value, index|key, collection).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {boolean} Returns `true` if any element passes the predicate check,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.some([null, 0, 'yes', false], Boolean);\\n     * // => true\\n     *\\n     * var users = [\\n     *   { 'user': 'barney', 'active': true },\\n     *   { 'user': 'fred',   'active': false }\\n     * ];\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.some(users, { 'user': 'barney', 'active': false });\\n     * // => false\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.some(users, ['active', false]);\\n     * // => true\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.some(users, 'active');\\n     * // => true\\n     */\\n    function some(collection, predicate, guard) {\\n      var func = isArray(collection) ? arraySome : baseSome;\\n      if (guard && isIterateeCall(collection, predicate, guard)) {\\n        predicate = undefined;\\n      }\\n      return func(collection, getIteratee(predicate, 3));\\n    }\\n\\n    /**\\n     * Creates an array of elements, sorted in ascending order by the results of\\n     * running each element in a collection thru each iteratee. This method\\n     * performs a stable sort, that is, it preserves the original sort order of\\n     * equal elements. The iteratees are invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {...(Function|Function[])} [iteratees=[_.identity]]\\n     *  The iteratees to sort by.\\n     * @returns {Array} Returns the new sorted array.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'fred',   'age': 48 },\\n     *   { 'user': 'barney', 'age': 36 },\\n     *   { 'user': 'fred',   'age': 30 },\\n     *   { 'user': 'barney', 'age': 34 }\\n     * ];\\n     *\\n     * _.sortBy(users, [function(o) { return o.user; }]);\\n     * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 30]]\\n     *\\n     * _.sortBy(users, ['user', 'age']);\\n     * // => objects for [['barney', 34], ['barney', 36], ['fred', 30], ['fred', 48]]\\n     */\\n    var sortBy = baseRest(function(collection, iteratees) {\\n      if (collection == null) {\\n        return [];\\n      }\\n      var length = iteratees.length;\\n      if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) {\\n        iteratees = [];\\n      } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) {\\n        iteratees = [iteratees[0]];\\n      }\\n      return baseOrderBy(collection, baseFlatten(iteratees, 1), []);\\n    });\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Gets the timestamp of the number of milliseconds that have elapsed since\\n     * the Unix epoch (1 January 1970 00:00:00 UTC).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.4.0\\n     * @category Date\\n     * @returns {number} Returns the timestamp.\\n     * @example\\n     *\\n     * _.defer(function(stamp) {\\n     *   console.log(_.now() - stamp);\\n     * }, _.now());\\n     * // => Logs the number of milliseconds it took for the deferred invocation.\\n     */\\n    var now = ctxNow || function() {\\n      return root.Date.now();\\n    };\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * The opposite of `_.before`; this method creates a function that invokes\\n     * `func` once it's called `n` or more times.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {number} n The number of calls before `func` is invoked.\\n     * @param {Function} func The function to restrict.\\n     * @returns {Function} Returns the new restricted function.\\n     * @example\\n     *\\n     * var saves = ['profile', 'settings'];\\n     *\\n     * var done = _.after(saves.length, function() {\\n     *   console.log('done saving!');\\n     * });\\n     *\\n     * _.forEach(saves, function(type) {\\n     *   asyncSave({ 'type': type, 'complete': done });\\n     * });\\n     * // => Logs 'done saving!' after the two async saves have completed.\\n     */\\n    function after(n, func) {\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      n = toInteger(n);\\n      return function() {\\n        if (--n < 1) {\\n          return func.apply(this, arguments);\\n        }\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that invokes `func`, with up to `n` arguments,\\n     * ignoring any additional arguments.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Function\\n     * @param {Function} func The function to cap arguments for.\\n     * @param {number} [n=func.length] The arity cap.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Function} Returns the new capped function.\\n     * @example\\n     *\\n     * _.map(['6', '8', '10'], _.ary(parseInt, 1));\\n     * // => [6, 8, 10]\\n     */\\n    function ary(func, n, guard) {\\n      n = guard ? undefined : n;\\n      n = (func && n == null) ? func.length : n;\\n      return createWrap(func, WRAP_ARY_FLAG, undefined, undefined, undefined, undefined, n);\\n    }\\n\\n    /**\\n     * Creates a function that invokes `func`, with the `this` binding and arguments\\n     * of the created function, while it's called less than `n` times. Subsequent\\n     * calls to the created function return the result of the last `func` invocation.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Function\\n     * @param {number} n The number of calls at which `func` is no longer invoked.\\n     * @param {Function} func The function to restrict.\\n     * @returns {Function} Returns the new restricted function.\\n     * @example\\n     *\\n     * jQuery(element).on('click', _.before(5, addContactToList));\\n     * // => Allows adding up to 4 contacts to the list.\\n     */\\n    function before(n, func) {\\n      var result;\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      n = toInteger(n);\\n      return function() {\\n        if (--n > 0) {\\n          result = func.apply(this, arguments);\\n        }\\n        if (n <= 1) {\\n          func = undefined;\\n        }\\n        return result;\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that invokes `func` with the `this` binding of `thisArg`\\n     * and `partials` prepended to the arguments it receives.\\n     *\\n     * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds,\\n     * may be used as a placeholder for partially applied arguments.\\n     *\\n     * **Note:** Unlike native `Function#bind`, this method doesn't set the \\\"length\\\"\\n     * property of bound functions.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to bind.\\n     * @param {*} thisArg The `this` binding of `func`.\\n     * @param {...*} [partials] The arguments to be partially applied.\\n     * @returns {Function} Returns the new bound function.\\n     * @example\\n     *\\n     * function greet(greeting, punctuation) {\\n     *   return greeting + ' ' + this.user + punctuation;\\n     * }\\n     *\\n     * var object = { 'user': 'fred' };\\n     *\\n     * var bound = _.bind(greet, object, 'hi');\\n     * bound('!');\\n     * // => 'hi fred!'\\n     *\\n     * // Bound with placeholders.\\n     * var bound = _.bind(greet, object, _, '!');\\n     * bound('hi');\\n     * // => 'hi fred!'\\n     */\\n    var bind = baseRest(function(func, thisArg, partials) {\\n      var bitmask = WRAP_BIND_FLAG;\\n      if (partials.length) {\\n        var holders = replaceHolders(partials, getHolder(bind));\\n        bitmask |= WRAP_PARTIAL_FLAG;\\n      }\\n      return createWrap(func, bitmask, thisArg, partials, holders);\\n    });\\n\\n    /**\\n     * Creates a function that invokes the method at `object[key]` with `partials`\\n     * prepended to the arguments it receives.\\n     *\\n     * This method differs from `_.bind` by allowing bound functions to reference\\n     * methods that may be redefined or don't yet exist. See\\n     * [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern)\\n     * for more details.\\n     *\\n     * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic\\n     * builds, may be used as a placeholder for partially applied arguments.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.10.0\\n     * @category Function\\n     * @param {Object} object The object to invoke the method on.\\n     * @param {string} key The key of the method.\\n     * @param {...*} [partials] The arguments to be partially applied.\\n     * @returns {Function} Returns the new bound function.\\n     * @example\\n     *\\n     * var object = {\\n     *   'user': 'fred',\\n     *   'greet': function(greeting, punctuation) {\\n     *     return greeting + ' ' + this.user + punctuation;\\n     *   }\\n     * };\\n     *\\n     * var bound = _.bindKey(object, 'greet', 'hi');\\n     * bound('!');\\n     * // => 'hi fred!'\\n     *\\n     * object.greet = function(greeting, punctuation) {\\n     *   return greeting + 'ya ' + this.user + punctuation;\\n     * };\\n     *\\n     * bound('!');\\n     * // => 'hiya fred!'\\n     *\\n     * // Bound with placeholders.\\n     * var bound = _.bindKey(object, 'greet', _, '!');\\n     * bound('hi');\\n     * // => 'hiya fred!'\\n     */\\n    var bindKey = baseRest(function(object, key, partials) {\\n      var bitmask = WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG;\\n      if (partials.length) {\\n        var holders = replaceHolders(partials, getHolder(bindKey));\\n        bitmask |= WRAP_PARTIAL_FLAG;\\n      }\\n      return createWrap(key, bitmask, object, partials, holders);\\n    });\\n\\n    /**\\n     * Creates a function that accepts arguments of `func` and either invokes\\n     * `func` returning its result, if at least `arity` number of arguments have\\n     * been provided, or returns a function that accepts the remaining `func`\\n     * arguments, and so on. The arity of `func` may be specified if `func.length`\\n     * is not sufficient.\\n     *\\n     * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds,\\n     * may be used as a placeholder for provided arguments.\\n     *\\n     * **Note:** This method doesn't set the \\\"length\\\" property of curried functions.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Function\\n     * @param {Function} func The function to curry.\\n     * @param {number} [arity=func.length] The arity of `func`.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Function} Returns the new curried function.\\n     * @example\\n     *\\n     * var abc = function(a, b, c) {\\n     *   return [a, b, c];\\n     * };\\n     *\\n     * var curried = _.curry(abc);\\n     *\\n     * curried(1)(2)(3);\\n     * // => [1, 2, 3]\\n     *\\n     * curried(1, 2)(3);\\n     * // => [1, 2, 3]\\n     *\\n     * curried(1, 2, 3);\\n     * // => [1, 2, 3]\\n     *\\n     * // Curried with placeholders.\\n     * curried(1)(_, 3)(2);\\n     * // => [1, 2, 3]\\n     */\\n    function curry(func, arity, guard) {\\n      arity = guard ? undefined : arity;\\n      var result = createWrap(func, WRAP_CURRY_FLAG, undefined, undefined, undefined, undefined, undefined, arity);\\n      result.placeholder = curry.placeholder;\\n      return result;\\n    }\\n\\n    /**\\n     * This method is like `_.curry` except that arguments are applied to `func`\\n     * in the manner of `_.partialRight` instead of `_.partial`.\\n     *\\n     * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic\\n     * builds, may be used as a placeholder for provided arguments.\\n     *\\n     * **Note:** This method doesn't set the \\\"length\\\" property of curried functions.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Function\\n     * @param {Function} func The function to curry.\\n     * @param {number} [arity=func.length] The arity of `func`.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Function} Returns the new curried function.\\n     * @example\\n     *\\n     * var abc = function(a, b, c) {\\n     *   return [a, b, c];\\n     * };\\n     *\\n     * var curried = _.curryRight(abc);\\n     *\\n     * curried(3)(2)(1);\\n     * // => [1, 2, 3]\\n     *\\n     * curried(2, 3)(1);\\n     * // => [1, 2, 3]\\n     *\\n     * curried(1, 2, 3);\\n     * // => [1, 2, 3]\\n     *\\n     * // Curried with placeholders.\\n     * curried(3)(1, _)(2);\\n     * // => [1, 2, 3]\\n     */\\n    function curryRight(func, arity, guard) {\\n      arity = guard ? undefined : arity;\\n      var result = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity);\\n      result.placeholder = curryRight.placeholder;\\n      return result;\\n    }\\n\\n    /**\\n     * Creates a debounced function that delays invoking `func` until after `wait`\\n     * milliseconds have elapsed since the last time the debounced function was\\n     * invoked. The debounced function comes with a `cancel` method to cancel\\n     * delayed `func` invocations and a `flush` method to immediately invoke them.\\n     * Provide `options` to indicate whether `func` should be invoked on the\\n     * leading and/or trailing edge of the `wait` timeout. The `func` is invoked\\n     * with the last arguments provided to the debounced function. Subsequent\\n     * calls to the debounced function return the result of the last `func`\\n     * invocation.\\n     *\\n     * **Note:** If `leading` and `trailing` options are `true`, `func` is\\n     * invoked on the trailing edge of the timeout only if the debounced function\\n     * is invoked more than once during the `wait` timeout.\\n     *\\n     * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\\n     * until to the next tick, similar to `setTimeout` with a timeout of `0`.\\n     *\\n     * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\\n     * for details over the differences between `_.debounce` and `_.throttle`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to debounce.\\n     * @param {number} [wait=0] The number of milliseconds to delay.\\n     * @param {Object} [options={}] The options object.\\n     * @param {boolean} [options.leading=false]\\n     *  Specify invoking on the leading edge of the timeout.\\n     * @param {number} [options.maxWait]\\n     *  The maximum time `func` is allowed to be delayed before it's invoked.\\n     * @param {boolean} [options.trailing=true]\\n     *  Specify invoking on the trailing edge of the timeout.\\n     * @returns {Function} Returns the new debounced function.\\n     * @example\\n     *\\n     * // Avoid costly calculations while the window size is in flux.\\n     * jQuery(window).on('resize', _.debounce(calculateLayout, 150));\\n     *\\n     * // Invoke `sendMail` when clicked, debouncing subsequent calls.\\n     * jQuery(element).on('click', _.debounce(sendMail, 300, {\\n     *   'leading': true,\\n     *   'trailing': false\\n     * }));\\n     *\\n     * // Ensure `batchLog` is invoked once after 1 second of debounced calls.\\n     * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 });\\n     * var source = new EventSource('/stream');\\n     * jQuery(source).on('message', debounced);\\n     *\\n     * // Cancel the trailing debounced invocation.\\n     * jQuery(window).on('popstate', debounced.cancel);\\n     */\\n    function debounce(func, wait, options) {\\n      var lastArgs,\\n          lastThis,\\n          maxWait,\\n          result,\\n          timerId,\\n          lastCallTime,\\n          lastInvokeTime = 0,\\n          leading = false,\\n          maxing = false,\\n          trailing = true;\\n\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      wait = toNumber(wait) || 0;\\n      if (isObject(options)) {\\n        leading = !!options.leading;\\n        maxing = 'maxWait' in options;\\n        maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;\\n        trailing = 'trailing' in options ? !!options.trailing : trailing;\\n      }\\n\\n      function invokeFunc(time) {\\n        var args = lastArgs,\\n            thisArg = lastThis;\\n\\n        lastArgs = lastThis = undefined;\\n        lastInvokeTime = time;\\n        result = func.apply(thisArg, args);\\n        return result;\\n      }\\n\\n      function leadingEdge(time) {\\n        // Reset any `maxWait` timer.\\n        lastInvokeTime = time;\\n        // Start the timer for the trailing edge.\\n        timerId = setTimeout(timerExpired, wait);\\n        // Invoke the leading edge.\\n        return leading ? invokeFunc(time) : result;\\n      }\\n\\n      function remainingWait(time) {\\n        var timeSinceLastCall = time - lastCallTime,\\n            timeSinceLastInvoke = time - lastInvokeTime,\\n            timeWaiting = wait - timeSinceLastCall;\\n\\n        return maxing\\n          ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke)\\n          : timeWaiting;\\n      }\\n\\n      function shouldInvoke(time) {\\n        var timeSinceLastCall = time - lastCallTime,\\n            timeSinceLastInvoke = time - lastInvokeTime;\\n\\n        // Either this is the first call, activity has stopped and we're at the\\n        // trailing edge, the system time has gone backwards and we're treating\\n        // it as the trailing edge, or we've hit the `maxWait` limit.\\n        return (lastCallTime === undefined || (timeSinceLastCall >= wait) ||\\n          (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait));\\n      }\\n\\n      function timerExpired() {\\n        var time = now();\\n        if (shouldInvoke(time)) {\\n          return trailingEdge(time);\\n        }\\n        // Restart the timer.\\n        timerId = setTimeout(timerExpired, remainingWait(time));\\n      }\\n\\n      function trailingEdge(time) {\\n        timerId = undefined;\\n\\n        // Only invoke if we have `lastArgs` which means `func` has been\\n        // debounced at least once.\\n        if (trailing && lastArgs) {\\n          return invokeFunc(time);\\n        }\\n        lastArgs = lastThis = undefined;\\n        return result;\\n      }\\n\\n      function cancel() {\\n        if (timerId !== undefined) {\\n          clearTimeout(timerId);\\n        }\\n        lastInvokeTime = 0;\\n        lastArgs = lastCallTime = lastThis = timerId = undefined;\\n      }\\n\\n      function flush() {\\n        return timerId === undefined ? result : trailingEdge(now());\\n      }\\n\\n      function debounced() {\\n        var time = now(),\\n            isInvoking = shouldInvoke(time);\\n\\n        lastArgs = arguments;\\n        lastThis = this;\\n        lastCallTime = time;\\n\\n        if (isInvoking) {\\n          if (timerId === undefined) {\\n            return leadingEdge(lastCallTime);\\n          }\\n          if (maxing) {\\n            // Handle invocations in a tight loop.\\n            clearTimeout(timerId);\\n            timerId = setTimeout(timerExpired, wait);\\n            return invokeFunc(lastCallTime);\\n          }\\n        }\\n        if (timerId === undefined) {\\n          timerId = setTimeout(timerExpired, wait);\\n        }\\n        return result;\\n      }\\n      debounced.cancel = cancel;\\n      debounced.flush = flush;\\n      return debounced;\\n    }\\n\\n    /**\\n     * Defers invoking the `func` until the current call stack has cleared. Any\\n     * additional arguments are provided to `func` when it's invoked.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to defer.\\n     * @param {...*} [args] The arguments to invoke `func` with.\\n     * @returns {number} Returns the timer id.\\n     * @example\\n     *\\n     * _.defer(function(text) {\\n     *   console.log(text);\\n     * }, 'deferred');\\n     * // => Logs 'deferred' after one millisecond.\\n     */\\n    var defer = baseRest(function(func, args) {\\n      return baseDelay(func, 1, args);\\n    });\\n\\n    /**\\n     * Invokes `func` after `wait` milliseconds. Any additional arguments are\\n     * provided to `func` when it's invoked.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to delay.\\n     * @param {number} wait The number of milliseconds to delay invocation.\\n     * @param {...*} [args] The arguments to invoke `func` with.\\n     * @returns {number} Returns the timer id.\\n     * @example\\n     *\\n     * _.delay(function(text) {\\n     *   console.log(text);\\n     * }, 1000, 'later');\\n     * // => Logs 'later' after one second.\\n     */\\n    var delay = baseRest(function(func, wait, args) {\\n      return baseDelay(func, toNumber(wait) || 0, args);\\n    });\\n\\n    /**\\n     * Creates a function that invokes `func` with arguments reversed.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Function\\n     * @param {Function} func The function to flip arguments for.\\n     * @returns {Function} Returns the new flipped function.\\n     * @example\\n     *\\n     * var flipped = _.flip(function() {\\n     *   return _.toArray(arguments);\\n     * });\\n     *\\n     * flipped('a', 'b', 'c', 'd');\\n     * // => ['d', 'c', 'b', 'a']\\n     */\\n    function flip(func) {\\n      return createWrap(func, WRAP_FLIP_FLAG);\\n    }\\n\\n    /**\\n     * Creates a function that memoizes the result of `func`. If `resolver` is\\n     * provided, it determines the cache key for storing the result based on the\\n     * arguments provided to the memoized function. By default, the first argument\\n     * provided to the memoized function is used as the map cache key. The `func`\\n     * is invoked with the `this` binding of the memoized function.\\n     *\\n     * **Note:** The cache is exposed as the `cache` property on the memoized\\n     * function. Its creation may be customized by replacing the `_.memoize.Cache`\\n     * constructor with one whose instances implement the\\n     * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object)\\n     * method interface of `clear`, `delete`, `get`, `has`, and `set`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to have its output memoized.\\n     * @param {Function} [resolver] The function to resolve the cache key.\\n     * @returns {Function} Returns the new memoized function.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': 2 };\\n     * var other = { 'c': 3, 'd': 4 };\\n     *\\n     * var values = _.memoize(_.values);\\n     * values(object);\\n     * // => [1, 2]\\n     *\\n     * values(other);\\n     * // => [3, 4]\\n     *\\n     * object.a = 2;\\n     * values(object);\\n     * // => [1, 2]\\n     *\\n     * // Modify the result cache.\\n     * values.cache.set(object, ['a', 'b']);\\n     * values(object);\\n     * // => ['a', 'b']\\n     *\\n     * // Replace `_.memoize.Cache`.\\n     * _.memoize.Cache = WeakMap;\\n     */\\n    function memoize(func, resolver) {\\n      if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      var memoized = function() {\\n        var args = arguments,\\n            key = resolver ? resolver.apply(this, args) : args[0],\\n            cache = memoized.cache;\\n\\n        if (cache.has(key)) {\\n          return cache.get(key);\\n        }\\n        var result = func.apply(this, args);\\n        memoized.cache = cache.set(key, result) || cache;\\n        return result;\\n      };\\n      memoized.cache = new (memoize.Cache || MapCache);\\n      return memoized;\\n    }\\n\\n    // Expose `MapCache`.\\n    memoize.Cache = MapCache;\\n\\n    /**\\n     * Creates a function that negates the result of the predicate `func`. The\\n     * `func` predicate is invoked with the `this` binding and arguments of the\\n     * created function.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Function\\n     * @param {Function} predicate The predicate to negate.\\n     * @returns {Function} Returns the new negated function.\\n     * @example\\n     *\\n     * function isEven(n) {\\n     *   return n % 2 == 0;\\n     * }\\n     *\\n     * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven));\\n     * // => [1, 3, 5]\\n     */\\n    function negate(predicate) {\\n      if (typeof predicate != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      return function() {\\n        var args = arguments;\\n        switch (args.length) {\\n          case 0: return !predicate.call(this);\\n          case 1: return !predicate.call(this, args[0]);\\n          case 2: return !predicate.call(this, args[0], args[1]);\\n          case 3: return !predicate.call(this, args[0], args[1], args[2]);\\n        }\\n        return !predicate.apply(this, args);\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that is restricted to invoking `func` once. Repeat calls\\n     * to the function return the value of the first invocation. The `func` is\\n     * invoked with the `this` binding and arguments of the created function.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to restrict.\\n     * @returns {Function} Returns the new restricted function.\\n     * @example\\n     *\\n     * var initialize = _.once(createApplication);\\n     * initialize();\\n     * initialize();\\n     * // => `createApplication` is invoked once\\n     */\\n    function once(func) {\\n      return before(2, func);\\n    }\\n\\n    /**\\n     * Creates a function that invokes `func` with its arguments transformed.\\n     *\\n     * @static\\n     * @since 4.0.0\\n     * @memberOf _\\n     * @category Function\\n     * @param {Function} func The function to wrap.\\n     * @param {...(Function|Function[])} [transforms=[_.identity]]\\n     *  The argument transforms.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * function doubled(n) {\\n     *   return n * 2;\\n     * }\\n     *\\n     * function square(n) {\\n     *   return n * n;\\n     * }\\n     *\\n     * var func = _.overArgs(function(x, y) {\\n     *   return [x, y];\\n     * }, [square, doubled]);\\n     *\\n     * func(9, 3);\\n     * // => [81, 6]\\n     *\\n     * func(10, 5);\\n     * // => [100, 10]\\n     */\\n    var overArgs = castRest(function(func, transforms) {\\n      transforms = (transforms.length == 1 && isArray(transforms[0]))\\n        ? arrayMap(transforms[0], baseUnary(getIteratee()))\\n        : arrayMap(baseFlatten(transforms, 1), baseUnary(getIteratee()));\\n\\n      var funcsLength = transforms.length;\\n      return baseRest(function(args) {\\n        var index = -1,\\n            length = nativeMin(args.length, funcsLength);\\n\\n        while (++index < length) {\\n          args[index] = transforms[index].call(this, args[index]);\\n        }\\n        return apply(func, this, args);\\n      });\\n    });\\n\\n    /**\\n     * Creates a function that invokes `func` with `partials` prepended to the\\n     * arguments it receives. This method is like `_.bind` except it does **not**\\n     * alter the `this` binding.\\n     *\\n     * The `_.partial.placeholder` value, which defaults to `_` in monolithic\\n     * builds, may be used as a placeholder for partially applied arguments.\\n     *\\n     * **Note:** This method doesn't set the \\\"length\\\" property of partially\\n     * applied functions.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.2.0\\n     * @category Function\\n     * @param {Function} func The function to partially apply arguments to.\\n     * @param {...*} [partials] The arguments to be partially applied.\\n     * @returns {Function} Returns the new partially applied function.\\n     * @example\\n     *\\n     * function greet(greeting, name) {\\n     *   return greeting + ' ' + name;\\n     * }\\n     *\\n     * var sayHelloTo = _.partial(greet, 'hello');\\n     * sayHelloTo('fred');\\n     * // => 'hello fred'\\n     *\\n     * // Partially applied with placeholders.\\n     * var greetFred = _.partial(greet, _, 'fred');\\n     * greetFred('hi');\\n     * // => 'hi fred'\\n     */\\n    var partial = baseRest(function(func, partials) {\\n      var holders = replaceHolders(partials, getHolder(partial));\\n      return createWrap(func, WRAP_PARTIAL_FLAG, undefined, partials, holders);\\n    });\\n\\n    /**\\n     * This method is like `_.partial` except that partially applied arguments\\n     * are appended to the arguments it receives.\\n     *\\n     * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic\\n     * builds, may be used as a placeholder for partially applied arguments.\\n     *\\n     * **Note:** This method doesn't set the \\\"length\\\" property of partially\\n     * applied functions.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.0.0\\n     * @category Function\\n     * @param {Function} func The function to partially apply arguments to.\\n     * @param {...*} [partials] The arguments to be partially applied.\\n     * @returns {Function} Returns the new partially applied function.\\n     * @example\\n     *\\n     * function greet(greeting, name) {\\n     *   return greeting + ' ' + name;\\n     * }\\n     *\\n     * var greetFred = _.partialRight(greet, 'fred');\\n     * greetFred('hi');\\n     * // => 'hi fred'\\n     *\\n     * // Partially applied with placeholders.\\n     * var sayHelloTo = _.partialRight(greet, 'hello', _);\\n     * sayHelloTo('fred');\\n     * // => 'hello fred'\\n     */\\n    var partialRight = baseRest(function(func, partials) {\\n      var holders = replaceHolders(partials, getHolder(partialRight));\\n      return createWrap(func, WRAP_PARTIAL_RIGHT_FLAG, undefined, partials, holders);\\n    });\\n\\n    /**\\n     * Creates a function that invokes `func` with arguments arranged according\\n     * to the specified `indexes` where the argument value at the first index is\\n     * provided as the first argument, the argument value at the second index is\\n     * provided as the second argument, and so on.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Function\\n     * @param {Function} func The function to rearrange arguments for.\\n     * @param {...(number|number[])} indexes The arranged argument indexes.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var rearged = _.rearg(function(a, b, c) {\\n     *   return [a, b, c];\\n     * }, [2, 0, 1]);\\n     *\\n     * rearged('b', 'c', 'a')\\n     * // => ['a', 'b', 'c']\\n     */\\n    var rearg = flatRest(function(func, indexes) {\\n      return createWrap(func, WRAP_REARG_FLAG, undefined, undefined, undefined, indexes);\\n    });\\n\\n    /**\\n     * Creates a function that invokes `func` with the `this` binding of the\\n     * created function and arguments from `start` and beyond provided as\\n     * an array.\\n     *\\n     * **Note:** This method is based on the\\n     * [rest parameter](https://mdn.io/rest_parameters).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Function\\n     * @param {Function} func The function to apply a rest parameter to.\\n     * @param {number} [start=func.length-1] The start position of the rest parameter.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var say = _.rest(function(what, names) {\\n     *   return what + ' ' + _.initial(names).join(', ') +\\n     *     (_.size(names) > 1 ? ', & ' : '') + _.last(names);\\n     * });\\n     *\\n     * say('hello', 'fred', 'barney', 'pebbles');\\n     * // => 'hello fred, barney, & pebbles'\\n     */\\n    function rest(func, start) {\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      start = start === undefined ? start : toInteger(start);\\n      return baseRest(func, start);\\n    }\\n\\n    /**\\n     * Creates a function that invokes `func` with the `this` binding of the\\n     * create function and an array of arguments much like\\n     * [`Function#apply`](http://www.ecma-international.org/ecma-262/7.0/#sec-function.prototype.apply).\\n     *\\n     * **Note:** This method is based on the\\n     * [spread operator](https://mdn.io/spread_operator).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.2.0\\n     * @category Function\\n     * @param {Function} func The function to spread arguments over.\\n     * @param {number} [start=0] The start position of the spread.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var say = _.spread(function(who, what) {\\n     *   return who + ' says ' + what;\\n     * });\\n     *\\n     * say(['fred', 'hello']);\\n     * // => 'fred says hello'\\n     *\\n     * var numbers = Promise.all([\\n     *   Promise.resolve(40),\\n     *   Promise.resolve(36)\\n     * ]);\\n     *\\n     * numbers.then(_.spread(function(x, y) {\\n     *   return x + y;\\n     * }));\\n     * // => a Promise of 76\\n     */\\n    function spread(func, start) {\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      start = start == null ? 0 : nativeMax(toInteger(start), 0);\\n      return baseRest(function(args) {\\n        var array = args[start],\\n            otherArgs = castSlice(args, 0, start);\\n\\n        if (array) {\\n          arrayPush(otherArgs, array);\\n        }\\n        return apply(func, this, otherArgs);\\n      });\\n    }\\n\\n    /**\\n     * Creates a throttled function that only invokes `func` at most once per\\n     * every `wait` milliseconds. The throttled function comes with a `cancel`\\n     * method to cancel delayed `func` invocations and a `flush` method to\\n     * immediately invoke them. Provide `options` to indicate whether `func`\\n     * should be invoked on the leading and/or trailing edge of the `wait`\\n     * timeout. The `func` is invoked with the last arguments provided to the\\n     * throttled function. Subsequent calls to the throttled function return the\\n     * result of the last `func` invocation.\\n     *\\n     * **Note:** If `leading` and `trailing` options are `true`, `func` is\\n     * invoked on the trailing edge of the timeout only if the throttled function\\n     * is invoked more than once during the `wait` timeout.\\n     *\\n     * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\\n     * until to the next tick, similar to `setTimeout` with a timeout of `0`.\\n     *\\n     * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\\n     * for details over the differences between `_.throttle` and `_.debounce`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to throttle.\\n     * @param {number} [wait=0] The number of milliseconds to throttle invocations to.\\n     * @param {Object} [options={}] The options object.\\n     * @param {boolean} [options.leading=true]\\n     *  Specify invoking on the leading edge of the timeout.\\n     * @param {boolean} [options.trailing=true]\\n     *  Specify invoking on the trailing edge of the timeout.\\n     * @returns {Function} Returns the new throttled function.\\n     * @example\\n     *\\n     * // Avoid excessively updating the position while scrolling.\\n     * jQuery(window).on('scroll', _.throttle(updatePosition, 100));\\n     *\\n     * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes.\\n     * var throttled = _.throttle(renewToken, 300000, { 'trailing': false });\\n     * jQuery(element).on('click', throttled);\\n     *\\n     * // Cancel the trailing throttled invocation.\\n     * jQuery(window).on('popstate', throttled.cancel);\\n     */\\n    function throttle(func, wait, options) {\\n      var leading = true,\\n          trailing = true;\\n\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      if (isObject(options)) {\\n        leading = 'leading' in options ? !!options.leading : leading;\\n        trailing = 'trailing' in options ? !!options.trailing : trailing;\\n      }\\n      return debounce(func, wait, {\\n        'leading': leading,\\n        'maxWait': wait,\\n        'trailing': trailing\\n      });\\n    }\\n\\n    /**\\n     * Creates a function that accepts up to one argument, ignoring any\\n     * additional arguments.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Function\\n     * @param {Function} func The function to cap arguments for.\\n     * @returns {Function} Returns the new capped function.\\n     * @example\\n     *\\n     * _.map(['6', '8', '10'], _.unary(parseInt));\\n     * // => [6, 8, 10]\\n     */\\n    function unary(func) {\\n      return ary(func, 1);\\n    }\\n\\n    /**\\n     * Creates a function that provides `value` to `wrapper` as its first\\n     * argument. Any additional arguments provided to the function are appended\\n     * to those provided to the `wrapper`. The wrapper is invoked with the `this`\\n     * binding of the created function.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {*} value The value to wrap.\\n     * @param {Function} [wrapper=identity] The wrapper function.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var p = _.wrap(_.escape, function(func, text) {\\n     *   return '<p>' + func(text) + '</p>';\\n     * });\\n     *\\n     * p('fred, barney, & pebbles');\\n     * // => '<p>fred, barney, &amp; pebbles</p>'\\n     */\\n    function wrap(value, wrapper) {\\n      return partial(castFunction(wrapper), value);\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Casts `value` as an array if it's not one.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.4.0\\n     * @category Lang\\n     * @param {*} value The value to inspect.\\n     * @returns {Array} Returns the cast array.\\n     * @example\\n     *\\n     * _.castArray(1);\\n     * // => [1]\\n     *\\n     * _.castArray({ 'a': 1 });\\n     * // => [{ 'a': 1 }]\\n     *\\n     * _.castArray('abc');\\n     * // => ['abc']\\n     *\\n     * _.castArray(null);\\n     * // => [null]\\n     *\\n     * _.castArray(undefined);\\n     * // => [undefined]\\n     *\\n     * _.castArray();\\n     * // => []\\n     *\\n     * var array = [1, 2, 3];\\n     * console.log(_.castArray(array) === array);\\n     * // => true\\n     */\\n    function castArray() {\\n      if (!arguments.length) {\\n        return [];\\n      }\\n      var value = arguments[0];\\n      return isArray(value) ? value : [value];\\n    }\\n\\n    /**\\n     * Creates a shallow clone of `value`.\\n     *\\n     * **Note:** This method is loosely based on the\\n     * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm)\\n     * and supports cloning arrays, array buffers, booleans, date objects, maps,\\n     * numbers, `Object` objects, regexes, sets, strings, symbols, and typed\\n     * arrays. The own enumerable properties of `arguments` objects are cloned\\n     * as plain objects. An empty object is returned for uncloneable values such\\n     * as error objects, functions, DOM nodes, and WeakMaps.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to clone.\\n     * @returns {*} Returns the cloned value.\\n     * @see _.cloneDeep\\n     * @example\\n     *\\n     * var objects = [{ 'a': 1 }, { 'b': 2 }];\\n     *\\n     * var shallow = _.clone(objects);\\n     * console.log(shallow[0] === objects[0]);\\n     * // => true\\n     */\\n    function clone(value) {\\n      return baseClone(value, CLONE_SYMBOLS_FLAG);\\n    }\\n\\n    /**\\n     * This method is like `_.clone` except that it accepts `customizer` which\\n     * is invoked to produce the cloned value. If `customizer` returns `undefined`,\\n     * cloning is handled by the method instead. The `customizer` is invoked with\\n     * up to four arguments; (value [, index|key, object, stack]).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to clone.\\n     * @param {Function} [customizer] The function to customize cloning.\\n     * @returns {*} Returns the cloned value.\\n     * @see _.cloneDeepWith\\n     * @example\\n     *\\n     * function customizer(value) {\\n     *   if (_.isElement(value)) {\\n     *     return value.cloneNode(false);\\n     *   }\\n     * }\\n     *\\n     * var el = _.cloneWith(document.body, customizer);\\n     *\\n     * console.log(el === document.body);\\n     * // => false\\n     * console.log(el.nodeName);\\n     * // => 'BODY'\\n     * console.log(el.childNodes.length);\\n     * // => 0\\n     */\\n    function cloneWith(value, customizer) {\\n      customizer = typeof customizer == 'function' ? customizer : undefined;\\n      return baseClone(value, CLONE_SYMBOLS_FLAG, customizer);\\n    }\\n\\n    /**\\n     * This method is like `_.clone` except that it recursively clones `value`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.0.0\\n     * @category Lang\\n     * @param {*} value The value to recursively clone.\\n     * @returns {*} Returns the deep cloned value.\\n     * @see _.clone\\n     * @example\\n     *\\n     * var objects = [{ 'a': 1 }, { 'b': 2 }];\\n     *\\n     * var deep = _.cloneDeep(objects);\\n     * console.log(deep[0] === objects[0]);\\n     * // => false\\n     */\\n    function cloneDeep(value) {\\n      return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG);\\n    }\\n\\n    /**\\n     * This method is like `_.cloneWith` except that it recursively clones `value`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to recursively clone.\\n     * @param {Function} [customizer] The function to customize cloning.\\n     * @returns {*} Returns the deep cloned value.\\n     * @see _.cloneWith\\n     * @example\\n     *\\n     * function customizer(value) {\\n     *   if (_.isElement(value)) {\\n     *     return value.cloneNode(true);\\n     *   }\\n     * }\\n     *\\n     * var el = _.cloneDeepWith(document.body, customizer);\\n     *\\n     * console.log(el === document.body);\\n     * // => false\\n     * console.log(el.nodeName);\\n     * // => 'BODY'\\n     * console.log(el.childNodes.length);\\n     * // => 20\\n     */\\n    function cloneDeepWith(value, customizer) {\\n      customizer = typeof customizer == 'function' ? customizer : undefined;\\n      return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer);\\n    }\\n\\n    /**\\n     * Checks if `object` conforms to `source` by invoking the predicate\\n     * properties of `source` with the corresponding property values of `object`.\\n     *\\n     * **Note:** This method is equivalent to `_.conforms` when `source` is\\n     * partially applied.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.14.0\\n     * @category Lang\\n     * @param {Object} object The object to inspect.\\n     * @param {Object} source The object of property predicates to conform to.\\n     * @returns {boolean} Returns `true` if `object` conforms, else `false`.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': 2 };\\n     *\\n     * _.conformsTo(object, { 'b': function(n) { return n > 1; } });\\n     * // => true\\n     *\\n     * _.conformsTo(object, { 'b': function(n) { return n > 2; } });\\n     * // => false\\n     */\\n    function conformsTo(object, source) {\\n      return source == null || baseConformsTo(object, source, keys(source));\\n    }\\n\\n    /**\\n     * Performs a\\n     * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * comparison between two values to determine if they are equivalent.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\\n     * @example\\n     *\\n     * var object = { 'a': 1 };\\n     * var other = { 'a': 1 };\\n     *\\n     * _.eq(object, object);\\n     * // => true\\n     *\\n     * _.eq(object, other);\\n     * // => false\\n     *\\n     * _.eq('a', 'a');\\n     * // => true\\n     *\\n     * _.eq('a', Object('a'));\\n     * // => false\\n     *\\n     * _.eq(NaN, NaN);\\n     * // => true\\n     */\\n    function eq(value, other) {\\n      return value === other || (value !== value && other !== other);\\n    }\\n\\n    /**\\n     * Checks if `value` is greater than `other`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.9.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if `value` is greater than `other`,\\n     *  else `false`.\\n     * @see _.lt\\n     * @example\\n     *\\n     * _.gt(3, 1);\\n     * // => true\\n     *\\n     * _.gt(3, 3);\\n     * // => false\\n     *\\n     * _.gt(1, 3);\\n     * // => false\\n     */\\n    var gt = createRelationalOperation(baseGt);\\n\\n    /**\\n     * Checks if `value` is greater than or equal to `other`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.9.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if `value` is greater than or equal to\\n     *  `other`, else `false`.\\n     * @see _.lte\\n     * @example\\n     *\\n     * _.gte(3, 1);\\n     * // => true\\n     *\\n     * _.gte(3, 3);\\n     * // => true\\n     *\\n     * _.gte(1, 3);\\n     * // => false\\n     */\\n    var gte = createRelationalOperation(function(value, other) {\\n      return value >= other;\\n    });\\n\\n    /**\\n     * Checks if `value` is likely an `arguments` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an `arguments` object,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.isArguments(function() { return arguments; }());\\n     * // => true\\n     *\\n     * _.isArguments([1, 2, 3]);\\n     * // => false\\n     */\\n    var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {\\n      return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&\\n        !propertyIsEnumerable.call(value, 'callee');\\n    };\\n\\n    /**\\n     * Checks if `value` is classified as an `Array` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an array, else `false`.\\n     * @example\\n     *\\n     * _.isArray([1, 2, 3]);\\n     * // => true\\n     *\\n     * _.isArray(document.body.children);\\n     * // => false\\n     *\\n     * _.isArray('abc');\\n     * // => false\\n     *\\n     * _.isArray(_.noop);\\n     * // => false\\n     */\\n    var isArray = Array.isArray;\\n\\n    /**\\n     * Checks if `value` is classified as an `ArrayBuffer` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.3.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`.\\n     * @example\\n     *\\n     * _.isArrayBuffer(new ArrayBuffer(2));\\n     * // => true\\n     *\\n     * _.isArrayBuffer(new Array(2));\\n     * // => false\\n     */\\n    var isArrayBuffer = nodeIsArrayBuffer ? baseUnary(nodeIsArrayBuffer) : baseIsArrayBuffer;\\n\\n    /**\\n     * Checks if `value` is array-like. A value is considered array-like if it's\\n     * not a function and has a `value.length` that's an integer greater than or\\n     * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\\n     * @example\\n     *\\n     * _.isArrayLike([1, 2, 3]);\\n     * // => true\\n     *\\n     * _.isArrayLike(document.body.children);\\n     * // => true\\n     *\\n     * _.isArrayLike('abc');\\n     * // => true\\n     *\\n     * _.isArrayLike(_.noop);\\n     * // => false\\n     */\\n    function isArrayLike(value) {\\n      return value != null && isLength(value.length) && !isFunction(value);\\n    }\\n\\n    /**\\n     * This method is like `_.isArrayLike` except that it also checks if `value`\\n     * is an object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an array-like object,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.isArrayLikeObject([1, 2, 3]);\\n     * // => true\\n     *\\n     * _.isArrayLikeObject(document.body.children);\\n     * // => true\\n     *\\n     * _.isArrayLikeObject('abc');\\n     * // => false\\n     *\\n     * _.isArrayLikeObject(_.noop);\\n     * // => false\\n     */\\n    function isArrayLikeObject(value) {\\n      return isObjectLike(value) && isArrayLike(value);\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a boolean primitive or object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a boolean, else `false`.\\n     * @example\\n     *\\n     * _.isBoolean(false);\\n     * // => true\\n     *\\n     * _.isBoolean(null);\\n     * // => false\\n     */\\n    function isBoolean(value) {\\n      return value === true || value === false ||\\n        (isObjectLike(value) && baseGetTag(value) == boolTag);\\n    }\\n\\n    /**\\n     * Checks if `value` is a buffer.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.3.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\\n     * @example\\n     *\\n     * _.isBuffer(new Buffer(2));\\n     * // => true\\n     *\\n     * _.isBuffer(new Uint8Array(2));\\n     * // => false\\n     */\\n    var isBuffer = nativeIsBuffer || stubFalse;\\n\\n    /**\\n     * Checks if `value` is classified as a `Date` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a date object, else `false`.\\n     * @example\\n     *\\n     * _.isDate(new Date);\\n     * // => true\\n     *\\n     * _.isDate('Mon April 23 2012');\\n     * // => false\\n     */\\n    var isDate = nodeIsDate ? baseUnary(nodeIsDate) : baseIsDate;\\n\\n    /**\\n     * Checks if `value` is likely a DOM element.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`.\\n     * @example\\n     *\\n     * _.isElement(document.body);\\n     * // => true\\n     *\\n     * _.isElement('<body>');\\n     * // => false\\n     */\\n    function isElement(value) {\\n      return isObjectLike(value) && value.nodeType === 1 && !isPlainObject(value);\\n    }\\n\\n    /**\\n     * Checks if `value` is an empty object, collection, map, or set.\\n     *\\n     * Objects are considered empty if they have no own enumerable string keyed\\n     * properties.\\n     *\\n     * Array-like values such as `arguments` objects, arrays, buffers, strings, or\\n     * jQuery-like collections are considered empty if they have a `length` of `0`.\\n     * Similarly, maps and sets are considered empty if they have a `size` of `0`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is empty, else `false`.\\n     * @example\\n     *\\n     * _.isEmpty(null);\\n     * // => true\\n     *\\n     * _.isEmpty(true);\\n     * // => true\\n     *\\n     * _.isEmpty(1);\\n     * // => true\\n     *\\n     * _.isEmpty([1, 2, 3]);\\n     * // => false\\n     *\\n     * _.isEmpty({ 'a': 1 });\\n     * // => false\\n     */\\n    function isEmpty(value) {\\n      if (value == null) {\\n        return true;\\n      }\\n      if (isArrayLike(value) &&\\n          (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' ||\\n            isBuffer(value) || isTypedArray(value) || isArguments(value))) {\\n        return !value.length;\\n      }\\n      var tag = getTag(value);\\n      if (tag == mapTag || tag == setTag) {\\n        return !value.size;\\n      }\\n      if (isPrototype(value)) {\\n        return !baseKeys(value).length;\\n      }\\n      for (var key in value) {\\n        if (hasOwnProperty.call(value, key)) {\\n          return false;\\n        }\\n      }\\n      return true;\\n    }\\n\\n    /**\\n     * Performs a deep comparison between two values to determine if they are\\n     * equivalent.\\n     *\\n     * **Note:** This method supports comparing arrays, array buffers, booleans,\\n     * date objects, error objects, maps, numbers, `Object` objects, regexes,\\n     * sets, strings, symbols, and typed arrays. `Object` objects are compared\\n     * by their own, not inherited, enumerable properties. Functions and DOM\\n     * nodes are compared by strict equality, i.e. `===`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\\n     * @example\\n     *\\n     * var object = { 'a': 1 };\\n     * var other = { 'a': 1 };\\n     *\\n     * _.isEqual(object, other);\\n     * // => true\\n     *\\n     * object === other;\\n     * // => false\\n     */\\n    function isEqual(value, other) {\\n      return baseIsEqual(value, other);\\n    }\\n\\n    /**\\n     * This method is like `_.isEqual` except that it accepts `customizer` which\\n     * is invoked to compare values. If `customizer` returns `undefined`, comparisons\\n     * are handled by the method instead. The `customizer` is invoked with up to\\n     * six arguments: (objValue, othValue [, index|key, object, other, stack]).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @param {Function} [customizer] The function to customize comparisons.\\n     * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\\n     * @example\\n     *\\n     * function isGreeting(value) {\\n     *   return /^h(?:i|ello)$/.test(value);\\n     * }\\n     *\\n     * function customizer(objValue, othValue) {\\n     *   if (isGreeting(objValue) && isGreeting(othValue)) {\\n     *     return true;\\n     *   }\\n     * }\\n     *\\n     * var array = ['hello', 'goodbye'];\\n     * var other = ['hi', 'goodbye'];\\n     *\\n     * _.isEqualWith(array, other, customizer);\\n     * // => true\\n     */\\n    function isEqualWith(value, other, customizer) {\\n      customizer = typeof customizer == 'function' ? customizer : undefined;\\n      var result = customizer ? customizer(value, other) : undefined;\\n      return result === undefined ? baseIsEqual(value, other, undefined, customizer) : !!result;\\n    }\\n\\n    /**\\n     * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`,\\n     * `SyntaxError`, `TypeError`, or `URIError` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an error object, else `false`.\\n     * @example\\n     *\\n     * _.isError(new Error);\\n     * // => true\\n     *\\n     * _.isError(Error);\\n     * // => false\\n     */\\n    function isError(value) {\\n      if (!isObjectLike(value)) {\\n        return false;\\n      }\\n      var tag = baseGetTag(value);\\n      return tag == errorTag || tag == domExcTag ||\\n        (typeof value.message == 'string' && typeof value.name == 'string' && !isPlainObject(value));\\n    }\\n\\n    /**\\n     * Checks if `value` is a finite primitive number.\\n     *\\n     * **Note:** This method is based on\\n     * [`Number.isFinite`](https://mdn.io/Number/isFinite).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a finite number, else `false`.\\n     * @example\\n     *\\n     * _.isFinite(3);\\n     * // => true\\n     *\\n     * _.isFinite(Number.MIN_VALUE);\\n     * // => true\\n     *\\n     * _.isFinite(Infinity);\\n     * // => false\\n     *\\n     * _.isFinite('3');\\n     * // => false\\n     */\\n    function isFinite(value) {\\n      return typeof value == 'number' && nativeIsFinite(value);\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `Function` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a function, else `false`.\\n     * @example\\n     *\\n     * _.isFunction(_);\\n     * // => true\\n     *\\n     * _.isFunction(/abc/);\\n     * // => false\\n     */\\n    function isFunction(value) {\\n      if (!isObject(value)) {\\n        return false;\\n      }\\n      // The use of `Object#toString` avoids issues with the `typeof` operator\\n      // in Safari 9 which returns 'object' for typed arrays and other constructors.\\n      var tag = baseGetTag(value);\\n      return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;\\n    }\\n\\n    /**\\n     * Checks if `value` is an integer.\\n     *\\n     * **Note:** This method is based on\\n     * [`Number.isInteger`](https://mdn.io/Number/isInteger).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an integer, else `false`.\\n     * @example\\n     *\\n     * _.isInteger(3);\\n     * // => true\\n     *\\n     * _.isInteger(Number.MIN_VALUE);\\n     * // => false\\n     *\\n     * _.isInteger(Infinity);\\n     * // => false\\n     *\\n     * _.isInteger('3');\\n     * // => false\\n     */\\n    function isInteger(value) {\\n      return typeof value == 'number' && value == toInteger(value);\\n    }\\n\\n    /**\\n     * Checks if `value` is a valid array-like length.\\n     *\\n     * **Note:** This method is loosely based on\\n     * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\\n     * @example\\n     *\\n     * _.isLength(3);\\n     * // => true\\n     *\\n     * _.isLength(Number.MIN_VALUE);\\n     * // => false\\n     *\\n     * _.isLength(Infinity);\\n     * // => false\\n     *\\n     * _.isLength('3');\\n     * // => false\\n     */\\n    function isLength(value) {\\n      return typeof value == 'number' &&\\n        value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\\n    }\\n\\n    /**\\n     * Checks if `value` is the\\n     * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\\n     * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an object, else `false`.\\n     * @example\\n     *\\n     * _.isObject({});\\n     * // => true\\n     *\\n     * _.isObject([1, 2, 3]);\\n     * // => true\\n     *\\n     * _.isObject(_.noop);\\n     * // => true\\n     *\\n     * _.isObject(null);\\n     * // => false\\n     */\\n    function isObject(value) {\\n      var type = typeof value;\\n      return value != null && (type == 'object' || type == 'function');\\n    }\\n\\n    /**\\n     * Checks if `value` is object-like. A value is object-like if it's not `null`\\n     * and has a `typeof` result of \\\"object\\\".\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\\n     * @example\\n     *\\n     * _.isObjectLike({});\\n     * // => true\\n     *\\n     * _.isObjectLike([1, 2, 3]);\\n     * // => true\\n     *\\n     * _.isObjectLike(_.noop);\\n     * // => false\\n     *\\n     * _.isObjectLike(null);\\n     * // => false\\n     */\\n    function isObjectLike(value) {\\n      return value != null && typeof value == 'object';\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `Map` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.3.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a map, else `false`.\\n     * @example\\n     *\\n     * _.isMap(new Map);\\n     * // => true\\n     *\\n     * _.isMap(new WeakMap);\\n     * // => false\\n     */\\n    var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap;\\n\\n    /**\\n     * Performs a partial deep comparison between `object` and `source` to\\n     * determine if `object` contains equivalent property values.\\n     *\\n     * **Note:** This method is equivalent to `_.matches` when `source` is\\n     * partially applied.\\n     *\\n     * Partial comparisons will match empty array and empty object `source`\\n     * values against any array or object value, respectively. See `_.isEqual`\\n     * for a list of supported value comparisons.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Lang\\n     * @param {Object} object The object to inspect.\\n     * @param {Object} source The object of property values to match.\\n     * @returns {boolean} Returns `true` if `object` is a match, else `false`.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': 2 };\\n     *\\n     * _.isMatch(object, { 'b': 2 });\\n     * // => true\\n     *\\n     * _.isMatch(object, { 'b': 1 });\\n     * // => false\\n     */\\n    function isMatch(object, source) {\\n      return object === source || baseIsMatch(object, source, getMatchData(source));\\n    }\\n\\n    /**\\n     * This method is like `_.isMatch` except that it accepts `customizer` which\\n     * is invoked to compare values. If `customizer` returns `undefined`, comparisons\\n     * are handled by the method instead. The `customizer` is invoked with five\\n     * arguments: (objValue, srcValue, index|key, object, source).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {Object} object The object to inspect.\\n     * @param {Object} source The object of property values to match.\\n     * @param {Function} [customizer] The function to customize comparisons.\\n     * @returns {boolean} Returns `true` if `object` is a match, else `false`.\\n     * @example\\n     *\\n     * function isGreeting(value) {\\n     *   return /^h(?:i|ello)$/.test(value);\\n     * }\\n     *\\n     * function customizer(objValue, srcValue) {\\n     *   if (isGreeting(objValue) && isGreeting(srcValue)) {\\n     *     return true;\\n     *   }\\n     * }\\n     *\\n     * var object = { 'greeting': 'hello' };\\n     * var source = { 'greeting': 'hi' };\\n     *\\n     * _.isMatchWith(object, source, customizer);\\n     * // => true\\n     */\\n    function isMatchWith(object, source, customizer) {\\n      customizer = typeof customizer == 'function' ? customizer : undefined;\\n      return baseIsMatch(object, source, getMatchData(source), customizer);\\n    }\\n\\n    /**\\n     * Checks if `value` is `NaN`.\\n     *\\n     * **Note:** This method is based on\\n     * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as\\n     * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for\\n     * `undefined` and other non-number values.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.\\n     * @example\\n     *\\n     * _.isNaN(NaN);\\n     * // => true\\n     *\\n     * _.isNaN(new Number(NaN));\\n     * // => true\\n     *\\n     * isNaN(undefined);\\n     * // => true\\n     *\\n     * _.isNaN(undefined);\\n     * // => false\\n     */\\n    function isNaN(value) {\\n      // An `NaN` primitive is the only value that is not equal to itself.\\n      // Perform the `toStringTag` check first to avoid errors with some\\n      // ActiveX objects in IE.\\n      return isNumber(value) && value != +value;\\n    }\\n\\n    /**\\n     * Checks if `value` is a pristine native function.\\n     *\\n     * **Note:** This method can't reliably detect native functions in the presence\\n     * of the core-js package because core-js circumvents this kind of detection.\\n     * Despite multiple requests, the core-js maintainer has made it clear: any\\n     * attempt to fix the detection will be obstructed. As a result, we're left\\n     * with little choice but to throw an error. Unfortunately, this also affects\\n     * packages, like [babel-polyfill](https://www.npmjs.com/package/babel-polyfill),\\n     * which rely on core-js.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a native function,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.isNative(Array.prototype.push);\\n     * // => true\\n     *\\n     * _.isNative(_);\\n     * // => false\\n     */\\n    function isNative(value) {\\n      if (isMaskable(value)) {\\n        throw new Error(CORE_ERROR_TEXT);\\n      }\\n      return baseIsNative(value);\\n    }\\n\\n    /**\\n     * Checks if `value` is `null`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is `null`, else `false`.\\n     * @example\\n     *\\n     * _.isNull(null);\\n     * // => true\\n     *\\n     * _.isNull(void 0);\\n     * // => false\\n     */\\n    function isNull(value) {\\n      return value === null;\\n    }\\n\\n    /**\\n     * Checks if `value` is `null` or `undefined`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is nullish, else `false`.\\n     * @example\\n     *\\n     * _.isNil(null);\\n     * // => true\\n     *\\n     * _.isNil(void 0);\\n     * // => true\\n     *\\n     * _.isNil(NaN);\\n     * // => false\\n     */\\n    function isNil(value) {\\n      return value == null;\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `Number` primitive or object.\\n     *\\n     * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are\\n     * classified as numbers, use the `_.isFinite` method.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a number, else `false`.\\n     * @example\\n     *\\n     * _.isNumber(3);\\n     * // => true\\n     *\\n     * _.isNumber(Number.MIN_VALUE);\\n     * // => true\\n     *\\n     * _.isNumber(Infinity);\\n     * // => true\\n     *\\n     * _.isNumber('3');\\n     * // => false\\n     */\\n    function isNumber(value) {\\n      return typeof value == 'number' ||\\n        (isObjectLike(value) && baseGetTag(value) == numberTag);\\n    }\\n\\n    /**\\n     * Checks if `value` is a plain object, that is, an object created by the\\n     * `Object` constructor or one with a `[[Prototype]]` of `null`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.8.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     * }\\n     *\\n     * _.isPlainObject(new Foo);\\n     * // => false\\n     *\\n     * _.isPlainObject([1, 2, 3]);\\n     * // => false\\n     *\\n     * _.isPlainObject({ 'x': 0, 'y': 0 });\\n     * // => true\\n     *\\n     * _.isPlainObject(Object.create(null));\\n     * // => true\\n     */\\n    function isPlainObject(value) {\\n      if (!isObjectLike(value) || baseGetTag(value) != objectTag) {\\n        return false;\\n      }\\n      var proto = getPrototype(value);\\n      if (proto === null) {\\n        return true;\\n      }\\n      var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;\\n      return typeof Ctor == 'function' && Ctor instanceof Ctor &&\\n        funcToString.call(Ctor) == objectCtorString;\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `RegExp` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a regexp, else `false`.\\n     * @example\\n     *\\n     * _.isRegExp(/abc/);\\n     * // => true\\n     *\\n     * _.isRegExp('/abc/');\\n     * // => false\\n     */\\n    var isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp;\\n\\n    /**\\n     * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754\\n     * double precision number which isn't the result of a rounded unsafe integer.\\n     *\\n     * **Note:** This method is based on\\n     * [`Number.isSafeInteger`](https://mdn.io/Number/isSafeInteger).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a safe integer, else `false`.\\n     * @example\\n     *\\n     * _.isSafeInteger(3);\\n     * // => true\\n     *\\n     * _.isSafeInteger(Number.MIN_VALUE);\\n     * // => false\\n     *\\n     * _.isSafeInteger(Infinity);\\n     * // => false\\n     *\\n     * _.isSafeInteger('3');\\n     * // => false\\n     */\\n    function isSafeInteger(value) {\\n      return isInteger(value) && value >= -MAX_SAFE_INTEGER && value <= MAX_SAFE_INTEGER;\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `Set` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.3.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a set, else `false`.\\n     * @example\\n     *\\n     * _.isSet(new Set);\\n     * // => true\\n     *\\n     * _.isSet(new WeakSet);\\n     * // => false\\n     */\\n    var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet;\\n\\n    /**\\n     * Checks if `value` is classified as a `String` primitive or object.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a string, else `false`.\\n     * @example\\n     *\\n     * _.isString('abc');\\n     * // => true\\n     *\\n     * _.isString(1);\\n     * // => false\\n     */\\n    function isString(value) {\\n      return typeof value == 'string' ||\\n        (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag);\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `Symbol` primitive or object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\\n     * @example\\n     *\\n     * _.isSymbol(Symbol.iterator);\\n     * // => true\\n     *\\n     * _.isSymbol('abc');\\n     * // => false\\n     */\\n    function isSymbol(value) {\\n      return typeof value == 'symbol' ||\\n        (isObjectLike(value) && baseGetTag(value) == symbolTag);\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a typed array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\\n     * @example\\n     *\\n     * _.isTypedArray(new Uint8Array);\\n     * // => true\\n     *\\n     * _.isTypedArray([]);\\n     * // => false\\n     */\\n    var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;\\n\\n    /**\\n     * Checks if `value` is `undefined`.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`.\\n     * @example\\n     *\\n     * _.isUndefined(void 0);\\n     * // => true\\n     *\\n     * _.isUndefined(null);\\n     * // => false\\n     */\\n    function isUndefined(value) {\\n      return value === undefined;\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `WeakMap` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.3.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a weak map, else `false`.\\n     * @example\\n     *\\n     * _.isWeakMap(new WeakMap);\\n     * // => true\\n     *\\n     * _.isWeakMap(new Map);\\n     * // => false\\n     */\\n    function isWeakMap(value) {\\n      return isObjectLike(value) && getTag(value) == weakMapTag;\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `WeakSet` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.3.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a weak set, else `false`.\\n     * @example\\n     *\\n     * _.isWeakSet(new WeakSet);\\n     * // => true\\n     *\\n     * _.isWeakSet(new Set);\\n     * // => false\\n     */\\n    function isWeakSet(value) {\\n      return isObjectLike(value) && baseGetTag(value) == weakSetTag;\\n    }\\n\\n    /**\\n     * Checks if `value` is less than `other`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.9.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if `value` is less than `other`,\\n     *  else `false`.\\n     * @see _.gt\\n     * @example\\n     *\\n     * _.lt(1, 3);\\n     * // => true\\n     *\\n     * _.lt(3, 3);\\n     * // => false\\n     *\\n     * _.lt(3, 1);\\n     * // => false\\n     */\\n    var lt = createRelationalOperation(baseLt);\\n\\n    /**\\n     * Checks if `value` is less than or equal to `other`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.9.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if `value` is less than or equal to\\n     *  `other`, else `false`.\\n     * @see _.gte\\n     * @example\\n     *\\n     * _.lte(1, 3);\\n     * // => true\\n     *\\n     * _.lte(3, 3);\\n     * // => true\\n     *\\n     * _.lte(3, 1);\\n     * // => false\\n     */\\n    var lte = createRelationalOperation(function(value, other) {\\n      return value <= other;\\n    });\\n\\n    /**\\n     * Converts `value` to an array.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {Array} Returns the converted array.\\n     * @example\\n     *\\n     * _.toArray({ 'a': 1, 'b': 2 });\\n     * // => [1, 2]\\n     *\\n     * _.toArray('abc');\\n     * // => ['a', 'b', 'c']\\n     *\\n     * _.toArray(1);\\n     * // => []\\n     *\\n     * _.toArray(null);\\n     * // => []\\n     */\\n    function toArray(value) {\\n      if (!value) {\\n        return [];\\n      }\\n      if (isArrayLike(value)) {\\n        return isString(value) ? stringToArray(value) : copyArray(value);\\n      }\\n      if (symIterator && value[symIterator]) {\\n        return iteratorToArray(value[symIterator]());\\n      }\\n      var tag = getTag(value),\\n          func = tag == mapTag ? mapToArray : (tag == setTag ? setToArray : values);\\n\\n      return func(value);\\n    }\\n\\n    /**\\n     * Converts `value` to a finite number.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.12.0\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {number} Returns the converted number.\\n     * @example\\n     *\\n     * _.toFinite(3.2);\\n     * // => 3.2\\n     *\\n     * _.toFinite(Number.MIN_VALUE);\\n     * // => 5e-324\\n     *\\n     * _.toFinite(Infinity);\\n     * // => 1.7976931348623157e+308\\n     *\\n     * _.toFinite('3.2');\\n     * // => 3.2\\n     */\\n    function toFinite(value) {\\n      if (!value) {\\n        return value === 0 ? value : 0;\\n      }\\n      value = toNumber(value);\\n      if (value === INFINITY || value === -INFINITY) {\\n        var sign = (value < 0 ? -1 : 1);\\n        return sign * MAX_INTEGER;\\n      }\\n      return value === value ? value : 0;\\n    }\\n\\n    /**\\n     * Converts `value` to an integer.\\n     *\\n     * **Note:** This method is loosely based on\\n     * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {number} Returns the converted integer.\\n     * @example\\n     *\\n     * _.toInteger(3.2);\\n     * // => 3\\n     *\\n     * _.toInteger(Number.MIN_VALUE);\\n     * // => 0\\n     *\\n     * _.toInteger(Infinity);\\n     * // => 1.7976931348623157e+308\\n     *\\n     * _.toInteger('3.2');\\n     * // => 3\\n     */\\n    function toInteger(value) {\\n      var result = toFinite(value),\\n          remainder = result % 1;\\n\\n      return result === result ? (remainder ? result - remainder : result) : 0;\\n    }\\n\\n    /**\\n     * Converts `value` to an integer suitable for use as the length of an\\n     * array-like object.\\n     *\\n     * **Note:** This method is based on\\n     * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {number} Returns the converted integer.\\n     * @example\\n     *\\n     * _.toLength(3.2);\\n     * // => 3\\n     *\\n     * _.toLength(Number.MIN_VALUE);\\n     * // => 0\\n     *\\n     * _.toLength(Infinity);\\n     * // => 4294967295\\n     *\\n     * _.toLength('3.2');\\n     * // => 3\\n     */\\n    function toLength(value) {\\n      return value ? baseClamp(toInteger(value), 0, MAX_ARRAY_LENGTH) : 0;\\n    }\\n\\n    /**\\n     * Converts `value` to a number.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to process.\\n     * @returns {number} Returns the number.\\n     * @example\\n     *\\n     * _.toNumber(3.2);\\n     * // => 3.2\\n     *\\n     * _.toNumber(Number.MIN_VALUE);\\n     * // => 5e-324\\n     *\\n     * _.toNumber(Infinity);\\n     * // => Infinity\\n     *\\n     * _.toNumber('3.2');\\n     * // => 3.2\\n     */\\n    function toNumber(value) {\\n      if (typeof value == 'number') {\\n        return value;\\n      }\\n      if (isSymbol(value)) {\\n        return NAN;\\n      }\\n      if (isObject(value)) {\\n        var other = typeof value.valueOf == 'function' ? value.valueOf() : value;\\n        value = isObject(other) ? (other + '') : other;\\n      }\\n      if (typeof value != 'string') {\\n        return value === 0 ? value : +value;\\n      }\\n      value = value.replace(reTrim, '');\\n      var isBinary = reIsBinary.test(value);\\n      return (isBinary || reIsOctal.test(value))\\n        ? freeParseInt(value.slice(2), isBinary ? 2 : 8)\\n        : (reIsBadHex.test(value) ? NAN : +value);\\n    }\\n\\n    /**\\n     * Converts `value` to a plain object flattening inherited enumerable string\\n     * keyed properties of `value` to own properties of the plain object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {Object} Returns the converted plain object.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.assign({ 'a': 1 }, new Foo);\\n     * // => { 'a': 1, 'b': 2 }\\n     *\\n     * _.assign({ 'a': 1 }, _.toPlainObject(new Foo));\\n     * // => { 'a': 1, 'b': 2, 'c': 3 }\\n     */\\n    function toPlainObject(value) {\\n      return copyObject(value, keysIn(value));\\n    }\\n\\n    /**\\n     * Converts `value` to a safe integer. A safe integer can be compared and\\n     * represented correctly.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {number} Returns the converted integer.\\n     * @example\\n     *\\n     * _.toSafeInteger(3.2);\\n     * // => 3\\n     *\\n     * _.toSafeInteger(Number.MIN_VALUE);\\n     * // => 0\\n     *\\n     * _.toSafeInteger(Infinity);\\n     * // => 9007199254740991\\n     *\\n     * _.toSafeInteger('3.2');\\n     * // => 3\\n     */\\n    function toSafeInteger(value) {\\n      return value\\n        ? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER)\\n        : (value === 0 ? value : 0);\\n    }\\n\\n    /**\\n     * Converts `value` to a string. An empty string is returned for `null`\\n     * and `undefined` values. The sign of `-0` is preserved.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {string} Returns the converted string.\\n     * @example\\n     *\\n     * _.toString(null);\\n     * // => ''\\n     *\\n     * _.toString(-0);\\n     * // => '-0'\\n     *\\n     * _.toString([1, 2, 3]);\\n     * // => '1,2,3'\\n     */\\n    function toString(value) {\\n      return value == null ? '' : baseToString(value);\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Assigns own enumerable string keyed properties of source objects to the\\n     * destination object. Source objects are applied from left to right.\\n     * Subsequent sources overwrite property assignments of previous sources.\\n     *\\n     * **Note:** This method mutates `object` and is loosely based on\\n     * [`Object.assign`](https://mdn.io/Object/assign).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.10.0\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} [sources] The source objects.\\n     * @returns {Object} Returns `object`.\\n     * @see _.assignIn\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     * }\\n     *\\n     * function Bar() {\\n     *   this.c = 3;\\n     * }\\n     *\\n     * Foo.prototype.b = 2;\\n     * Bar.prototype.d = 4;\\n     *\\n     * _.assign({ 'a': 0 }, new Foo, new Bar);\\n     * // => { 'a': 1, 'c': 3 }\\n     */\\n    var assign = createAssigner(function(object, source) {\\n      if (isPrototype(source) || isArrayLike(source)) {\\n        copyObject(source, keys(source), object);\\n        return;\\n      }\\n      for (var key in source) {\\n        if (hasOwnProperty.call(source, key)) {\\n          assignValue(object, key, source[key]);\\n        }\\n      }\\n    });\\n\\n    /**\\n     * This method is like `_.assign` except that it iterates over own and\\n     * inherited source properties.\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @alias extend\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} [sources] The source objects.\\n     * @returns {Object} Returns `object`.\\n     * @see _.assign\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     * }\\n     *\\n     * function Bar() {\\n     *   this.c = 3;\\n     * }\\n     *\\n     * Foo.prototype.b = 2;\\n     * Bar.prototype.d = 4;\\n     *\\n     * _.assignIn({ 'a': 0 }, new Foo, new Bar);\\n     * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 }\\n     */\\n    var assignIn = createAssigner(function(object, source) {\\n      copyObject(source, keysIn(source), object);\\n    });\\n\\n    /**\\n     * This method is like `_.assignIn` except that it accepts `customizer`\\n     * which is invoked to produce the assigned values. If `customizer` returns\\n     * `undefined`, assignment is handled by the method instead. The `customizer`\\n     * is invoked with five arguments: (objValue, srcValue, key, object, source).\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @alias extendWith\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} sources The source objects.\\n     * @param {Function} [customizer] The function to customize assigned values.\\n     * @returns {Object} Returns `object`.\\n     * @see _.assignWith\\n     * @example\\n     *\\n     * function customizer(objValue, srcValue) {\\n     *   return _.isUndefined(objValue) ? srcValue : objValue;\\n     * }\\n     *\\n     * var defaults = _.partialRight(_.assignInWith, customizer);\\n     *\\n     * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\\n     * // => { 'a': 1, 'b': 2 }\\n     */\\n    var assignInWith = createAssigner(function(object, source, srcIndex, customizer) {\\n      copyObject(source, keysIn(source), object, customizer);\\n    });\\n\\n    /**\\n     * This method is like `_.assign` except that it accepts `customizer`\\n     * which is invoked to produce the assigned values. If `customizer` returns\\n     * `undefined`, assignment is handled by the method instead. The `customizer`\\n     * is invoked with five arguments: (objValue, srcValue, key, object, source).\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} sources The source objects.\\n     * @param {Function} [customizer] The function to customize assigned values.\\n     * @returns {Object} Returns `object`.\\n     * @see _.assignInWith\\n     * @example\\n     *\\n     * function customizer(objValue, srcValue) {\\n     *   return _.isUndefined(objValue) ? srcValue : objValue;\\n     * }\\n     *\\n     * var defaults = _.partialRight(_.assignWith, customizer);\\n     *\\n     * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\\n     * // => { 'a': 1, 'b': 2 }\\n     */\\n    var assignWith = createAssigner(function(object, source, srcIndex, customizer) {\\n      copyObject(source, keys(source), object, customizer);\\n    });\\n\\n    /**\\n     * Creates an array of values corresponding to `paths` of `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.0.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {...(string|string[])} [paths] The property paths to pick.\\n     * @returns {Array} Returns the picked values.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };\\n     *\\n     * _.at(object, ['a[0].b.c', 'a[1]']);\\n     * // => [3, 4]\\n     */\\n    var at = flatRest(baseAt);\\n\\n    /**\\n     * Creates an object that inherits from the `prototype` object. If a\\n     * `properties` object is given, its own enumerable string keyed properties\\n     * are assigned to the created object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.3.0\\n     * @category Object\\n     * @param {Object} prototype The object to inherit from.\\n     * @param {Object} [properties] The properties to assign to the object.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * function Shape() {\\n     *   this.x = 0;\\n     *   this.y = 0;\\n     * }\\n     *\\n     * function Circle() {\\n     *   Shape.call(this);\\n     * }\\n     *\\n     * Circle.prototype = _.create(Shape.prototype, {\\n     *   'constructor': Circle\\n     * });\\n     *\\n     * var circle = new Circle;\\n     * circle instanceof Circle;\\n     * // => true\\n     *\\n     * circle instanceof Shape;\\n     * // => true\\n     */\\n    function create(prototype, properties) {\\n      var result = baseCreate(prototype);\\n      return properties == null ? result : baseAssign(result, properties);\\n    }\\n\\n    /**\\n     * Assigns own and inherited enumerable string keyed properties of source\\n     * objects to the destination object for all destination properties that\\n     * resolve to `undefined`. Source objects are applied from left to right.\\n     * Once a property is set, additional values of the same property are ignored.\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} [sources] The source objects.\\n     * @returns {Object} Returns `object`.\\n     * @see _.defaultsDeep\\n     * @example\\n     *\\n     * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\\n     * // => { 'a': 1, 'b': 2 }\\n     */\\n    var defaults = baseRest(function(object, sources) {\\n      object = Object(object);\\n\\n      var index = -1;\\n      var length = sources.length;\\n      var guard = length > 2 ? sources[2] : undefined;\\n\\n      if (guard && isIterateeCall(sources[0], sources[1], guard)) {\\n        length = 1;\\n      }\\n\\n      while (++index < length) {\\n        var source = sources[index];\\n        var props = keysIn(source);\\n        var propsIndex = -1;\\n        var propsLength = props.length;\\n\\n        while (++propsIndex < propsLength) {\\n          var key = props[propsIndex];\\n          var value = object[key];\\n\\n          if (value === undefined ||\\n              (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) {\\n            object[key] = source[key];\\n          }\\n        }\\n      }\\n\\n      return object;\\n    });\\n\\n    /**\\n     * This method is like `_.defaults` except that it recursively assigns\\n     * default properties.\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.10.0\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} [sources] The source objects.\\n     * @returns {Object} Returns `object`.\\n     * @see _.defaults\\n     * @example\\n     *\\n     * _.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } });\\n     * // => { 'a': { 'b': 2, 'c': 3 } }\\n     */\\n    var defaultsDeep = baseRest(function(args) {\\n      args.push(undefined, customDefaultsMerge);\\n      return apply(mergeWith, undefined, args);\\n    });\\n\\n    /**\\n     * This method is like `_.find` except that it returns the key of the first\\n     * element `predicate` returns truthy for instead of the element itself.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.1.0\\n     * @category Object\\n     * @param {Object} object The object to inspect.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {string|undefined} Returns the key of the matched element,\\n     *  else `undefined`.\\n     * @example\\n     *\\n     * var users = {\\n     *   'barney':  { 'age': 36, 'active': true },\\n     *   'fred':    { 'age': 40, 'active': false },\\n     *   'pebbles': { 'age': 1,  'active': true }\\n     * };\\n     *\\n     * _.findKey(users, function(o) { return o.age < 40; });\\n     * // => 'barney' (iteration order is not guaranteed)\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.findKey(users, { 'age': 1, 'active': true });\\n     * // => 'pebbles'\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.findKey(users, ['active', false]);\\n     * // => 'fred'\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.findKey(users, 'active');\\n     * // => 'barney'\\n     */\\n    function findKey(object, predicate) {\\n      return baseFindKey(object, getIteratee(predicate, 3), baseForOwn);\\n    }\\n\\n    /**\\n     * This method is like `_.findKey` except that it iterates over elements of\\n     * a collection in the opposite order.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Object\\n     * @param {Object} object The object to inspect.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {string|undefined} Returns the key of the matched element,\\n     *  else `undefined`.\\n     * @example\\n     *\\n     * var users = {\\n     *   'barney':  { 'age': 36, 'active': true },\\n     *   'fred':    { 'age': 40, 'active': false },\\n     *   'pebbles': { 'age': 1,  'active': true }\\n     * };\\n     *\\n     * _.findLastKey(users, function(o) { return o.age < 40; });\\n     * // => returns 'pebbles' assuming `_.findKey` returns 'barney'\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.findLastKey(users, { 'age': 36, 'active': true });\\n     * // => 'barney'\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.findLastKey(users, ['active', false]);\\n     * // => 'fred'\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.findLastKey(users, 'active');\\n     * // => 'pebbles'\\n     */\\n    function findLastKey(object, predicate) {\\n      return baseFindKey(object, getIteratee(predicate, 3), baseForOwnRight);\\n    }\\n\\n    /**\\n     * Iterates over own and inherited enumerable string keyed properties of an\\n     * object and invokes `iteratee` for each property. The iteratee is invoked\\n     * with three arguments: (value, key, object). Iteratee functions may exit\\n     * iteration early by explicitly returning `false`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.3.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Object} Returns `object`.\\n     * @see _.forInRight\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.forIn(new Foo, function(value, key) {\\n     *   console.log(key);\\n     * });\\n     * // => Logs 'a', 'b', then 'c' (iteration order is not guaranteed).\\n     */\\n    function forIn(object, iteratee) {\\n      return object == null\\n        ? object\\n        : baseFor(object, getIteratee(iteratee, 3), keysIn);\\n    }\\n\\n    /**\\n     * This method is like `_.forIn` except that it iterates over properties of\\n     * `object` in the opposite order.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Object} Returns `object`.\\n     * @see _.forIn\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.forInRight(new Foo, function(value, key) {\\n     *   console.log(key);\\n     * });\\n     * // => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'.\\n     */\\n    function forInRight(object, iteratee) {\\n      return object == null\\n        ? object\\n        : baseForRight(object, getIteratee(iteratee, 3), keysIn);\\n    }\\n\\n    /**\\n     * Iterates over own enumerable string keyed properties of an object and\\n     * invokes `iteratee` for each property. The iteratee is invoked with three\\n     * arguments: (value, key, object). Iteratee functions may exit iteration\\n     * early by explicitly returning `false`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.3.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Object} Returns `object`.\\n     * @see _.forOwnRight\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.forOwn(new Foo, function(value, key) {\\n     *   console.log(key);\\n     * });\\n     * // => Logs 'a' then 'b' (iteration order is not guaranteed).\\n     */\\n    function forOwn(object, iteratee) {\\n      return object && baseForOwn(object, getIteratee(iteratee, 3));\\n    }\\n\\n    /**\\n     * This method is like `_.forOwn` except that it iterates over properties of\\n     * `object` in the opposite order.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Object} Returns `object`.\\n     * @see _.forOwn\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.forOwnRight(new Foo, function(value, key) {\\n     *   console.log(key);\\n     * });\\n     * // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'.\\n     */\\n    function forOwnRight(object, iteratee) {\\n      return object && baseForOwnRight(object, getIteratee(iteratee, 3));\\n    }\\n\\n    /**\\n     * Creates an array of function property names from own enumerable properties\\n     * of `object`.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The object to inspect.\\n     * @returns {Array} Returns the function names.\\n     * @see _.functionsIn\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = _.constant('a');\\n     *   this.b = _.constant('b');\\n     * }\\n     *\\n     * Foo.prototype.c = _.constant('c');\\n     *\\n     * _.functions(new Foo);\\n     * // => ['a', 'b']\\n     */\\n    function functions(object) {\\n      return object == null ? [] : baseFunctions(object, keys(object));\\n    }\\n\\n    /**\\n     * Creates an array of function property names from own and inherited\\n     * enumerable properties of `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The object to inspect.\\n     * @returns {Array} Returns the function names.\\n     * @see _.functions\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = _.constant('a');\\n     *   this.b = _.constant('b');\\n     * }\\n     *\\n     * Foo.prototype.c = _.constant('c');\\n     *\\n     * _.functionsIn(new Foo);\\n     * // => ['a', 'b', 'c']\\n     */\\n    function functionsIn(object) {\\n      return object == null ? [] : baseFunctions(object, keysIn(object));\\n    }\\n\\n    /**\\n     * Gets the value at `path` of `object`. If the resolved value is\\n     * `undefined`, the `defaultValue` is returned in its place.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.7.0\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path of the property to get.\\n     * @param {*} [defaultValue] The value returned for `undefined` resolved values.\\n     * @returns {*} Returns the resolved value.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': 3 } }] };\\n     *\\n     * _.get(object, 'a[0].b.c');\\n     * // => 3\\n     *\\n     * _.get(object, ['a', '0', 'b', 'c']);\\n     * // => 3\\n     *\\n     * _.get(object, 'a.b.c', 'default');\\n     * // => 'default'\\n     */\\n    function get(object, path, defaultValue) {\\n      var result = object == null ? undefined : baseGet(object, path);\\n      return result === undefined ? defaultValue : result;\\n    }\\n\\n    /**\\n     * Checks if `path` is a direct property of `object`.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path to check.\\n     * @returns {boolean} Returns `true` if `path` exists, else `false`.\\n     * @example\\n     *\\n     * var object = { 'a': { 'b': 2 } };\\n     * var other = _.create({ 'a': _.create({ 'b': 2 }) });\\n     *\\n     * _.has(object, 'a');\\n     * // => true\\n     *\\n     * _.has(object, 'a.b');\\n     * // => true\\n     *\\n     * _.has(object, ['a', 'b']);\\n     * // => true\\n     *\\n     * _.has(other, 'a');\\n     * // => false\\n     */\\n    function has(object, path) {\\n      return object != null && hasPath(object, path, baseHas);\\n    }\\n\\n    /**\\n     * Checks if `path` is a direct or inherited property of `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path to check.\\n     * @returns {boolean} Returns `true` if `path` exists, else `false`.\\n     * @example\\n     *\\n     * var object = _.create({ 'a': _.create({ 'b': 2 }) });\\n     *\\n     * _.hasIn(object, 'a');\\n     * // => true\\n     *\\n     * _.hasIn(object, 'a.b');\\n     * // => true\\n     *\\n     * _.hasIn(object, ['a', 'b']);\\n     * // => true\\n     *\\n     * _.hasIn(object, 'b');\\n     * // => false\\n     */\\n    function hasIn(object, path) {\\n      return object != null && hasPath(object, path, baseHasIn);\\n    }\\n\\n    /**\\n     * Creates an object composed of the inverted keys and values of `object`.\\n     * If `object` contains duplicate values, subsequent values overwrite\\n     * property assignments of previous values.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.7.0\\n     * @category Object\\n     * @param {Object} object The object to invert.\\n     * @returns {Object} Returns the new inverted object.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': 2, 'c': 1 };\\n     *\\n     * _.invert(object);\\n     * // => { '1': 'c', '2': 'b' }\\n     */\\n    var invert = createInverter(function(result, value, key) {\\n      if (value != null &&\\n          typeof value.toString != 'function') {\\n        value = nativeObjectToString.call(value);\\n      }\\n\\n      result[value] = key;\\n    }, constant(identity));\\n\\n    /**\\n     * This method is like `_.invert` except that the inverted object is generated\\n     * from the results of running each element of `object` thru `iteratee`. The\\n     * corresponding inverted value of each inverted key is an array of keys\\n     * responsible for generating the inverted value. The iteratee is invoked\\n     * with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.1.0\\n     * @category Object\\n     * @param {Object} object The object to invert.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Object} Returns the new inverted object.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': 2, 'c': 1 };\\n     *\\n     * _.invertBy(object);\\n     * // => { '1': ['a', 'c'], '2': ['b'] }\\n     *\\n     * _.invertBy(object, function(value) {\\n     *   return 'group' + value;\\n     * });\\n     * // => { 'group1': ['a', 'c'], 'group2': ['b'] }\\n     */\\n    var invertBy = createInverter(function(result, value, key) {\\n      if (value != null &&\\n          typeof value.toString != 'function') {\\n        value = nativeObjectToString.call(value);\\n      }\\n\\n      if (hasOwnProperty.call(result, value)) {\\n        result[value].push(key);\\n      } else {\\n        result[value] = [key];\\n      }\\n    }, getIteratee);\\n\\n    /**\\n     * Invokes the method at `path` of `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path of the method to invoke.\\n     * @param {...*} [args] The arguments to invoke the method with.\\n     * @returns {*} Returns the result of the invoked method.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] };\\n     *\\n     * _.invoke(object, 'a[0].b.c.slice', 1, 3);\\n     * // => [2, 3]\\n     */\\n    var invoke = baseRest(baseInvoke);\\n\\n    /**\\n     * Creates an array of the own enumerable property names of `object`.\\n     *\\n     * **Note:** Non-object values are coerced to objects. See the\\n     * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\\n     * for more details.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.keys(new Foo);\\n     * // => ['a', 'b'] (iteration order is not guaranteed)\\n     *\\n     * _.keys('hi');\\n     * // => ['0', '1']\\n     */\\n    function keys(object) {\\n      return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);\\n    }\\n\\n    /**\\n     * Creates an array of the own and inherited enumerable property names of `object`.\\n     *\\n     * **Note:** Non-object values are coerced to objects.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.keysIn(new Foo);\\n     * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\\n     */\\n    function keysIn(object) {\\n      return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);\\n    }\\n\\n    /**\\n     * The opposite of `_.mapValues`; this method creates an object with the\\n     * same values as `object` and keys generated by running each own enumerable\\n     * string keyed property of `object` thru `iteratee`. The iteratee is invoked\\n     * with three arguments: (value, key, object).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.8.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Object} Returns the new mapped object.\\n     * @see _.mapValues\\n     * @example\\n     *\\n     * _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) {\\n     *   return key + value;\\n     * });\\n     * // => { 'a1': 1, 'b2': 2 }\\n     */\\n    function mapKeys(object, iteratee) {\\n      var result = {};\\n      iteratee = getIteratee(iteratee, 3);\\n\\n      baseForOwn(object, function(value, key, object) {\\n        baseAssignValue(result, iteratee(value, key, object), value);\\n      });\\n      return result;\\n    }\\n\\n    /**\\n     * Creates an object with the same keys as `object` and values generated\\n     * by running each own enumerable string keyed property of `object` thru\\n     * `iteratee`. The iteratee is invoked with three arguments:\\n     * (value, key, object).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.4.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Object} Returns the new mapped object.\\n     * @see _.mapKeys\\n     * @example\\n     *\\n     * var users = {\\n     *   'fred':    { 'user': 'fred',    'age': 40 },\\n     *   'pebbles': { 'user': 'pebbles', 'age': 1 }\\n     * };\\n     *\\n     * _.mapValues(users, function(o) { return o.age; });\\n     * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.mapValues(users, 'age');\\n     * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)\\n     */\\n    function mapValues(object, iteratee) {\\n      var result = {};\\n      iteratee = getIteratee(iteratee, 3);\\n\\n      baseForOwn(object, function(value, key, object) {\\n        baseAssignValue(result, key, iteratee(value, key, object));\\n      });\\n      return result;\\n    }\\n\\n    /**\\n     * This method is like `_.assign` except that it recursively merges own and\\n     * inherited enumerable string keyed properties of source objects into the\\n     * destination object. Source properties that resolve to `undefined` are\\n     * skipped if a destination value exists. Array and plain object properties\\n     * are merged recursively. Other objects and value types are overridden by\\n     * assignment. Source objects are applied from left to right. Subsequent\\n     * sources overwrite property assignments of previous sources.\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.5.0\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} [sources] The source objects.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * var object = {\\n     *   'a': [{ 'b': 2 }, { 'd': 4 }]\\n     * };\\n     *\\n     * var other = {\\n     *   'a': [{ 'c': 3 }, { 'e': 5 }]\\n     * };\\n     *\\n     * _.merge(object, other);\\n     * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] }\\n     */\\n    var merge = createAssigner(function(object, source, srcIndex) {\\n      baseMerge(object, source, srcIndex);\\n    });\\n\\n    /**\\n     * This method is like `_.merge` except that it accepts `customizer` which\\n     * is invoked to produce the merged values of the destination and source\\n     * properties. If `customizer` returns `undefined`, merging is handled by the\\n     * method instead. The `customizer` is invoked with six arguments:\\n     * (objValue, srcValue, key, object, source, stack).\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} sources The source objects.\\n     * @param {Function} customizer The function to customize assigned values.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * function customizer(objValue, srcValue) {\\n     *   if (_.isArray(objValue)) {\\n     *     return objValue.concat(srcValue);\\n     *   }\\n     * }\\n     *\\n     * var object = { 'a': [1], 'b': [2] };\\n     * var other = { 'a': [3], 'b': [4] };\\n     *\\n     * _.mergeWith(object, other, customizer);\\n     * // => { 'a': [1, 3], 'b': [2, 4] }\\n     */\\n    var mergeWith = createAssigner(function(object, source, srcIndex, customizer) {\\n      baseMerge(object, source, srcIndex, customizer);\\n    });\\n\\n    /**\\n     * The opposite of `_.pick`; this method creates an object composed of the\\n     * own and inherited enumerable property paths of `object` that are not omitted.\\n     *\\n     * **Note:** This method is considerably slower than `_.pick`.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The source object.\\n     * @param {...(string|string[])} [paths] The property paths to omit.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': '2', 'c': 3 };\\n     *\\n     * _.omit(object, ['a', 'c']);\\n     * // => { 'b': '2' }\\n     */\\n    var omit = flatRest(function(object, paths) {\\n      var result = {};\\n      if (object == null) {\\n        return result;\\n      }\\n      var isDeep = false;\\n      paths = arrayMap(paths, function(path) {\\n        path = castPath(path, object);\\n        isDeep || (isDeep = path.length > 1);\\n        return path;\\n      });\\n      copyObject(object, getAllKeysIn(object), result);\\n      if (isDeep) {\\n        result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone);\\n      }\\n      var length = paths.length;\\n      while (length--) {\\n        baseUnset(result, paths[length]);\\n      }\\n      return result;\\n    });\\n\\n    /**\\n     * The opposite of `_.pickBy`; this method creates an object composed of\\n     * the own and inherited enumerable string keyed properties of `object` that\\n     * `predicate` doesn't return truthy for. The predicate is invoked with two\\n     * arguments: (value, key).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The source object.\\n     * @param {Function} [predicate=_.identity] The function invoked per property.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': '2', 'c': 3 };\\n     *\\n     * _.omitBy(object, _.isNumber);\\n     * // => { 'b': '2' }\\n     */\\n    function omitBy(object, predicate) {\\n      return pickBy(object, negate(getIteratee(predicate)));\\n    }\\n\\n    /**\\n     * Creates an object composed of the picked `object` properties.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The source object.\\n     * @param {...(string|string[])} [paths] The property paths to pick.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': '2', 'c': 3 };\\n     *\\n     * _.pick(object, ['a', 'c']);\\n     * // => { 'a': 1, 'c': 3 }\\n     */\\n    var pick = flatRest(function(object, paths) {\\n      return object == null ? {} : basePick(object, paths);\\n    });\\n\\n    /**\\n     * Creates an object composed of the `object` properties `predicate` returns\\n     * truthy for. The predicate is invoked with two arguments: (value, key).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The source object.\\n     * @param {Function} [predicate=_.identity] The function invoked per property.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': '2', 'c': 3 };\\n     *\\n     * _.pickBy(object, _.isNumber);\\n     * // => { 'a': 1, 'c': 3 }\\n     */\\n    function pickBy(object, predicate) {\\n      if (object == null) {\\n        return {};\\n      }\\n      var props = arrayMap(getAllKeysIn(object), function(prop) {\\n        return [prop];\\n      });\\n      predicate = getIteratee(predicate);\\n      return basePickBy(object, props, function(value, path) {\\n        return predicate(value, path[0]);\\n      });\\n    }\\n\\n    /**\\n     * This method is like `_.get` except that if the resolved value is a\\n     * function it's invoked with the `this` binding of its parent object and\\n     * its result is returned.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path of the property to resolve.\\n     * @param {*} [defaultValue] The value returned for `undefined` resolved values.\\n     * @returns {*} Returns the resolved value.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] };\\n     *\\n     * _.result(object, 'a[0].b.c1');\\n     * // => 3\\n     *\\n     * _.result(object, 'a[0].b.c2');\\n     * // => 4\\n     *\\n     * _.result(object, 'a[0].b.c3', 'default');\\n     * // => 'default'\\n     *\\n     * _.result(object, 'a[0].b.c3', _.constant('default'));\\n     * // => 'default'\\n     */\\n    function result(object, path, defaultValue) {\\n      path = castPath(path, object);\\n\\n      var index = -1,\\n          length = path.length;\\n\\n      // Ensure the loop is entered when path is empty.\\n      if (!length) {\\n        length = 1;\\n        object = undefined;\\n      }\\n      while (++index < length) {\\n        var value = object == null ? undefined : object[toKey(path[index])];\\n        if (value === undefined) {\\n          index = length;\\n          value = defaultValue;\\n        }\\n        object = isFunction(value) ? value.call(object) : value;\\n      }\\n      return object;\\n    }\\n\\n    /**\\n     * Sets the value at `path` of `object`. If a portion of `path` doesn't exist,\\n     * it's created. Arrays are created for missing index properties while objects\\n     * are created for all other missing properties. Use `_.setWith` to customize\\n     * `path` creation.\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.7.0\\n     * @category Object\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to set.\\n     * @param {*} value The value to set.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': 3 } }] };\\n     *\\n     * _.set(object, 'a[0].b.c', 4);\\n     * console.log(object.a[0].b.c);\\n     * // => 4\\n     *\\n     * _.set(object, ['x', '0', 'y', 'z'], 5);\\n     * console.log(object.x[0].y.z);\\n     * // => 5\\n     */\\n    function set(object, path, value) {\\n      return object == null ? object : baseSet(object, path, value);\\n    }\\n\\n    /**\\n     * This method is like `_.set` except that it accepts `customizer` which is\\n     * invoked to produce the objects of `path`.  If `customizer` returns `undefined`\\n     * path creation is handled by the method instead. The `customizer` is invoked\\n     * with three arguments: (nsValue, key, nsObject).\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to set.\\n     * @param {*} value The value to set.\\n     * @param {Function} [customizer] The function to customize assigned values.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * var object = {};\\n     *\\n     * _.setWith(object, '[0][1]', 'a', Object);\\n     * // => { '0': { '1': 'a' } }\\n     */\\n    function setWith(object, path, value, customizer) {\\n      customizer = typeof customizer == 'function' ? customizer : undefined;\\n      return object == null ? object : baseSet(object, path, value, customizer);\\n    }\\n\\n    /**\\n     * Creates an array of own enumerable string keyed-value pairs for `object`\\n     * which can be consumed by `_.fromPairs`. If `object` is a map or set, its\\n     * entries are returned.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @alias entries\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the key-value pairs.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.toPairs(new Foo);\\n     * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed)\\n     */\\n    var toPairs = createToPairs(keys);\\n\\n    /**\\n     * Creates an array of own and inherited enumerable string keyed-value pairs\\n     * for `object` which can be consumed by `_.fromPairs`. If `object` is a map\\n     * or set, its entries are returned.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @alias entriesIn\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the key-value pairs.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.toPairsIn(new Foo);\\n     * // => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed)\\n     */\\n    var toPairsIn = createToPairs(keysIn);\\n\\n    /**\\n     * An alternative to `_.reduce`; this method transforms `object` to a new\\n     * `accumulator` object which is the result of running each of its own\\n     * enumerable string keyed properties thru `iteratee`, with each invocation\\n     * potentially mutating the `accumulator` object. If `accumulator` is not\\n     * provided, a new object with the same `[[Prototype]]` will be used. The\\n     * iteratee is invoked with four arguments: (accumulator, value, key, object).\\n     * Iteratee functions may exit iteration early by explicitly returning `false`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.3.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @param {*} [accumulator] The custom accumulator value.\\n     * @returns {*} Returns the accumulated value.\\n     * @example\\n     *\\n     * _.transform([2, 3, 4], function(result, n) {\\n     *   result.push(n *= n);\\n     *   return n % 2 == 0;\\n     * }, []);\\n     * // => [4, 9]\\n     *\\n     * _.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) {\\n     *   (result[value] || (result[value] = [])).push(key);\\n     * }, {});\\n     * // => { '1': ['a', 'c'], '2': ['b'] }\\n     */\\n    function transform(object, iteratee, accumulator) {\\n      var isArr = isArray(object),\\n          isArrLike = isArr || isBuffer(object) || isTypedArray(object);\\n\\n      iteratee = getIteratee(iteratee, 4);\\n      if (accumulator == null) {\\n        var Ctor = object && object.constructor;\\n        if (isArrLike) {\\n          accumulator = isArr ? new Ctor : [];\\n        }\\n        else if (isObject(object)) {\\n          accumulator = isFunction(Ctor) ? baseCreate(getPrototype(object)) : {};\\n        }\\n        else {\\n          accumulator = {};\\n        }\\n      }\\n      (isArrLike ? arrayEach : baseForOwn)(object, function(value, index, object) {\\n        return iteratee(accumulator, value, index, object);\\n      });\\n      return accumulator;\\n    }\\n\\n    /**\\n     * Removes the property at `path` of `object`.\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to unset.\\n     * @returns {boolean} Returns `true` if the property is deleted, else `false`.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': 7 } }] };\\n     * _.unset(object, 'a[0].b.c');\\n     * // => true\\n     *\\n     * console.log(object);\\n     * // => { 'a': [{ 'b': {} }] };\\n     *\\n     * _.unset(object, ['a', '0', 'b', 'c']);\\n     * // => true\\n     *\\n     * console.log(object);\\n     * // => { 'a': [{ 'b': {} }] };\\n     */\\n    function unset(object, path) {\\n      return object == null ? true : baseUnset(object, path);\\n    }\\n\\n    /**\\n     * This method is like `_.set` except that accepts `updater` to produce the\\n     * value to set. Use `_.updateWith` to customize `path` creation. The `updater`\\n     * is invoked with one argument: (value).\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.6.0\\n     * @category Object\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to set.\\n     * @param {Function} updater The function to produce the updated value.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': 3 } }] };\\n     *\\n     * _.update(object, 'a[0].b.c', function(n) { return n * n; });\\n     * console.log(object.a[0].b.c);\\n     * // => 9\\n     *\\n     * _.update(object, 'x[0].y.z', function(n) { return n ? n + 1 : 0; });\\n     * console.log(object.x[0].y.z);\\n     * // => 0\\n     */\\n    function update(object, path, updater) {\\n      return object == null ? object : baseUpdate(object, path, castFunction(updater));\\n    }\\n\\n    /**\\n     * This method is like `_.update` except that it accepts `customizer` which is\\n     * invoked to produce the objects of `path`.  If `customizer` returns `undefined`\\n     * path creation is handled by the method instead. The `customizer` is invoked\\n     * with three arguments: (nsValue, key, nsObject).\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.6.0\\n     * @category Object\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to set.\\n     * @param {Function} updater The function to produce the updated value.\\n     * @param {Function} [customizer] The function to customize assigned values.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * var object = {};\\n     *\\n     * _.updateWith(object, '[0][1]', _.constant('a'), Object);\\n     * // => { '0': { '1': 'a' } }\\n     */\\n    function updateWith(object, path, updater, customizer) {\\n      customizer = typeof customizer == 'function' ? customizer : undefined;\\n      return object == null ? object : baseUpdate(object, path, castFunction(updater), customizer);\\n    }\\n\\n    /**\\n     * Creates an array of the own enumerable string keyed property values of `object`.\\n     *\\n     * **Note:** Non-object values are coerced to objects.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property values.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.values(new Foo);\\n     * // => [1, 2] (iteration order is not guaranteed)\\n     *\\n     * _.values('hi');\\n     * // => ['h', 'i']\\n     */\\n    function values(object) {\\n      return object == null ? [] : baseValues(object, keys(object));\\n    }\\n\\n    /**\\n     * Creates an array of the own and inherited enumerable string keyed property\\n     * values of `object`.\\n     *\\n     * **Note:** Non-object values are coerced to objects.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property values.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.valuesIn(new Foo);\\n     * // => [1, 2, 3] (iteration order is not guaranteed)\\n     */\\n    function valuesIn(object) {\\n      return object == null ? [] : baseValues(object, keysIn(object));\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Clamps `number` within the inclusive `lower` and `upper` bounds.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Number\\n     * @param {number} number The number to clamp.\\n     * @param {number} [lower] The lower bound.\\n     * @param {number} upper The upper bound.\\n     * @returns {number} Returns the clamped number.\\n     * @example\\n     *\\n     * _.clamp(-10, -5, 5);\\n     * // => -5\\n     *\\n     * _.clamp(10, -5, 5);\\n     * // => 5\\n     */\\n    function clamp(number, lower, upper) {\\n      if (upper === undefined) {\\n        upper = lower;\\n        lower = undefined;\\n      }\\n      if (upper !== undefined) {\\n        upper = toNumber(upper);\\n        upper = upper === upper ? upper : 0;\\n      }\\n      if (lower !== undefined) {\\n        lower = toNumber(lower);\\n        lower = lower === lower ? lower : 0;\\n      }\\n      return baseClamp(toNumber(number), lower, upper);\\n    }\\n\\n    /**\\n     * Checks if `n` is between `start` and up to, but not including, `end`. If\\n     * `end` is not specified, it's set to `start` with `start` then set to `0`.\\n     * If `start` is greater than `end` the params are swapped to support\\n     * negative ranges.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.3.0\\n     * @category Number\\n     * @param {number} number The number to check.\\n     * @param {number} [start=0] The start of the range.\\n     * @param {number} end The end of the range.\\n     * @returns {boolean} Returns `true` if `number` is in the range, else `false`.\\n     * @see _.range, _.rangeRight\\n     * @example\\n     *\\n     * _.inRange(3, 2, 4);\\n     * // => true\\n     *\\n     * _.inRange(4, 8);\\n     * // => true\\n     *\\n     * _.inRange(4, 2);\\n     * // => false\\n     *\\n     * _.inRange(2, 2);\\n     * // => false\\n     *\\n     * _.inRange(1.2, 2);\\n     * // => true\\n     *\\n     * _.inRange(5.2, 4);\\n     * // => false\\n     *\\n     * _.inRange(-3, -2, -6);\\n     * // => true\\n     */\\n    function inRange(number, start, end) {\\n      start = toFinite(start);\\n      if (end === undefined) {\\n        end = start;\\n        start = 0;\\n      } else {\\n        end = toFinite(end);\\n      }\\n      number = toNumber(number);\\n      return baseInRange(number, start, end);\\n    }\\n\\n    /**\\n     * Produces a random number between the inclusive `lower` and `upper` bounds.\\n     * If only one argument is provided a number between `0` and the given number\\n     * is returned. If `floating` is `true`, or either `lower` or `upper` are\\n     * floats, a floating-point number is returned instead of an integer.\\n     *\\n     * **Note:** JavaScript follows the IEEE-754 standard for resolving\\n     * floating-point values which can produce unexpected results.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.7.0\\n     * @category Number\\n     * @param {number} [lower=0] The lower bound.\\n     * @param {number} [upper=1] The upper bound.\\n     * @param {boolean} [floating] Specify returning a floating-point number.\\n     * @returns {number} Returns the random number.\\n     * @example\\n     *\\n     * _.random(0, 5);\\n     * // => an integer between 0 and 5\\n     *\\n     * _.random(5);\\n     * // => also an integer between 0 and 5\\n     *\\n     * _.random(5, true);\\n     * // => a floating-point number between 0 and 5\\n     *\\n     * _.random(1.2, 5.2);\\n     * // => a floating-point number between 1.2 and 5.2\\n     */\\n    function random(lower, upper, floating) {\\n      if (floating && typeof floating != 'boolean' && isIterateeCall(lower, upper, floating)) {\\n        upper = floating = undefined;\\n      }\\n      if (floating === undefined) {\\n        if (typeof upper == 'boolean') {\\n          floating = upper;\\n          upper = undefined;\\n        }\\n        else if (typeof lower == 'boolean') {\\n          floating = lower;\\n          lower = undefined;\\n        }\\n      }\\n      if (lower === undefined && upper === undefined) {\\n        lower = 0;\\n        upper = 1;\\n      }\\n      else {\\n        lower = toFinite(lower);\\n        if (upper === undefined) {\\n          upper = lower;\\n          lower = 0;\\n        } else {\\n          upper = toFinite(upper);\\n        }\\n      }\\n      if (lower > upper) {\\n        var temp = lower;\\n        lower = upper;\\n        upper = temp;\\n      }\\n      if (floating || lower % 1 || upper % 1) {\\n        var rand = nativeRandom();\\n        return nativeMin(lower + (rand * (upper - lower + freeParseFloat('1e-' + ((rand + '').length - 1)))), upper);\\n      }\\n      return baseRandom(lower, upper);\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the camel cased string.\\n     * @example\\n     *\\n     * _.camelCase('Foo Bar');\\n     * // => 'fooBar'\\n     *\\n     * _.camelCase('--foo-bar--');\\n     * // => 'fooBar'\\n     *\\n     * _.camelCase('__FOO_BAR__');\\n     * // => 'fooBar'\\n     */\\n    var camelCase = createCompounder(function(result, word, index) {\\n      word = word.toLowerCase();\\n      return result + (index ? capitalize(word) : word);\\n    });\\n\\n    /**\\n     * Converts the first character of `string` to upper case and the remaining\\n     * to lower case.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to capitalize.\\n     * @returns {string} Returns the capitalized string.\\n     * @example\\n     *\\n     * _.capitalize('FRED');\\n     * // => 'Fred'\\n     */\\n    function capitalize(string) {\\n      return upperFirst(toString(string).toLowerCase());\\n    }\\n\\n    /**\\n     * Deburrs `string` by converting\\n     * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table)\\n     * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A)\\n     * letters to basic Latin letters and removing\\n     * [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to deburr.\\n     * @returns {string} Returns the deburred string.\\n     * @example\\n     *\\n     * _.deburr('déjà vu');\\n     * // => 'deja vu'\\n     */\\n    function deburr(string) {\\n      string = toString(string);\\n      return string && string.replace(reLatin, deburrLetter).replace(reComboMark, '');\\n    }\\n\\n    /**\\n     * Checks if `string` ends with the given target string.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to inspect.\\n     * @param {string} [target] The string to search for.\\n     * @param {number} [position=string.length] The position to search up to.\\n     * @returns {boolean} Returns `true` if `string` ends with `target`,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.endsWith('abc', 'c');\\n     * // => true\\n     *\\n     * _.endsWith('abc', 'b');\\n     * // => false\\n     *\\n     * _.endsWith('abc', 'b', 2);\\n     * // => true\\n     */\\n    function endsWith(string, target, position) {\\n      string = toString(string);\\n      target = baseToString(target);\\n\\n      var length = string.length;\\n      position = position === undefined\\n        ? length\\n        : baseClamp(toInteger(position), 0, length);\\n\\n      var end = position;\\n      position -= target.length;\\n      return position >= 0 && string.slice(position, end) == target;\\n    }\\n\\n    /**\\n     * Converts the characters \\\"&\\\", \\\"<\\\", \\\">\\\", '\\\"', and \\\"'\\\" in `string` to their\\n     * corresponding HTML entities.\\n     *\\n     * **Note:** No other characters are escaped. To escape additional\\n     * characters use a third-party library like [_he_](https://mths.be/he).\\n     *\\n     * Though the \\\">\\\" character is escaped for symmetry, characters like\\n     * \\\">\\\" and \\\"/\\\" don't need escaping in HTML and have no special meaning\\n     * unless they're part of a tag or unquoted attribute value. See\\n     * [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands)\\n     * (under \\\"semi-related fun fact\\\") for more details.\\n     *\\n     * When working with HTML you should always\\n     * [quote attribute values](http://wonko.com/post/html-escaping) to reduce\\n     * XSS vectors.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category String\\n     * @param {string} [string=''] The string to escape.\\n     * @returns {string} Returns the escaped string.\\n     * @example\\n     *\\n     * _.escape('fred, barney, & pebbles');\\n     * // => 'fred, barney, &amp; pebbles'\\n     */\\n    function escape(string) {\\n      string = toString(string);\\n      return (string && reHasUnescapedHtml.test(string))\\n        ? string.replace(reUnescapedHtml, escapeHtmlChar)\\n        : string;\\n    }\\n\\n    /**\\n     * Escapes the `RegExp` special characters \\\"^\\\", \\\"$\\\", \\\"\\\\\\\", \\\".\\\", \\\"*\\\", \\\"+\\\",\\n     * \\\"?\\\", \\\"(\\\", \\\")\\\", \\\"[\\\", \\\"]\\\", \\\"{\\\", \\\"}\\\", and \\\"|\\\" in `string`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to escape.\\n     * @returns {string} Returns the escaped string.\\n     * @example\\n     *\\n     * _.escapeRegExp('[lodash](https://lodash.com/)');\\n     * // => '\\\\[lodash\\\\]\\\\(https://lodash\\\\.com/\\\\)'\\n     */\\n    function escapeRegExp(string) {\\n      string = toString(string);\\n      return (string && reHasRegExpChar.test(string))\\n        ? string.replace(reRegExpChar, '\\\\\\\\$&')\\n        : string;\\n    }\\n\\n    /**\\n     * Converts `string` to\\n     * [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the kebab cased string.\\n     * @example\\n     *\\n     * _.kebabCase('Foo Bar');\\n     * // => 'foo-bar'\\n     *\\n     * _.kebabCase('fooBar');\\n     * // => 'foo-bar'\\n     *\\n     * _.kebabCase('__FOO_BAR__');\\n     * // => 'foo-bar'\\n     */\\n    var kebabCase = createCompounder(function(result, word, index) {\\n      return result + (index ? '-' : '') + word.toLowerCase();\\n    });\\n\\n    /**\\n     * Converts `string`, as space separated words, to lower case.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the lower cased string.\\n     * @example\\n     *\\n     * _.lowerCase('--Foo-Bar--');\\n     * // => 'foo bar'\\n     *\\n     * _.lowerCase('fooBar');\\n     * // => 'foo bar'\\n     *\\n     * _.lowerCase('__FOO_BAR__');\\n     * // => 'foo bar'\\n     */\\n    var lowerCase = createCompounder(function(result, word, index) {\\n      return result + (index ? ' ' : '') + word.toLowerCase();\\n    });\\n\\n    /**\\n     * Converts the first character of `string` to lower case.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the converted string.\\n     * @example\\n     *\\n     * _.lowerFirst('Fred');\\n     * // => 'fred'\\n     *\\n     * _.lowerFirst('FRED');\\n     * // => 'fRED'\\n     */\\n    var lowerFirst = createCaseFirst('toLowerCase');\\n\\n    /**\\n     * Pads `string` on the left and right sides if it's shorter than `length`.\\n     * Padding characters are truncated if they can't be evenly divided by `length`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to pad.\\n     * @param {number} [length=0] The padding length.\\n     * @param {string} [chars=' '] The string used as padding.\\n     * @returns {string} Returns the padded string.\\n     * @example\\n     *\\n     * _.pad('abc', 8);\\n     * // => '  abc   '\\n     *\\n     * _.pad('abc', 8, '_-');\\n     * // => '_-abc_-_'\\n     *\\n     * _.pad('abc', 3);\\n     * // => 'abc'\\n     */\\n    function pad(string, length, chars) {\\n      string = toString(string);\\n      length = toInteger(length);\\n\\n      var strLength = length ? stringSize(string) : 0;\\n      if (!length || strLength >= length) {\\n        return string;\\n      }\\n      var mid = (length - strLength) / 2;\\n      return (\\n        createPadding(nativeFloor(mid), chars) +\\n        string +\\n        createPadding(nativeCeil(mid), chars)\\n      );\\n    }\\n\\n    /**\\n     * Pads `string` on the right side if it's shorter than `length`. Padding\\n     * characters are truncated if they exceed `length`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to pad.\\n     * @param {number} [length=0] The padding length.\\n     * @param {string} [chars=' '] The string used as padding.\\n     * @returns {string} Returns the padded string.\\n     * @example\\n     *\\n     * _.padEnd('abc', 6);\\n     * // => 'abc   '\\n     *\\n     * _.padEnd('abc', 6, '_-');\\n     * // => 'abc_-_'\\n     *\\n     * _.padEnd('abc', 3);\\n     * // => 'abc'\\n     */\\n    function padEnd(string, length, chars) {\\n      string = toString(string);\\n      length = toInteger(length);\\n\\n      var strLength = length ? stringSize(string) : 0;\\n      return (length && strLength < length)\\n        ? (string + createPadding(length - strLength, chars))\\n        : string;\\n    }\\n\\n    /**\\n     * Pads `string` on the left side if it's shorter than `length`. Padding\\n     * characters are truncated if they exceed `length`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to pad.\\n     * @param {number} [length=0] The padding length.\\n     * @param {string} [chars=' '] The string used as padding.\\n     * @returns {string} Returns the padded string.\\n     * @example\\n     *\\n     * _.padStart('abc', 6);\\n     * // => '   abc'\\n     *\\n     * _.padStart('abc', 6, '_-');\\n     * // => '_-_abc'\\n     *\\n     * _.padStart('abc', 3);\\n     * // => 'abc'\\n     */\\n    function padStart(string, length, chars) {\\n      string = toString(string);\\n      length = toInteger(length);\\n\\n      var strLength = length ? stringSize(string) : 0;\\n      return (length && strLength < length)\\n        ? (createPadding(length - strLength, chars) + string)\\n        : string;\\n    }\\n\\n    /**\\n     * Converts `string` to an integer of the specified radix. If `radix` is\\n     * `undefined` or `0`, a `radix` of `10` is used unless `value` is a\\n     * hexadecimal, in which case a `radix` of `16` is used.\\n     *\\n     * **Note:** This method aligns with the\\n     * [ES5 implementation](https://es5.github.io/#x15.1.2.2) of `parseInt`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.1.0\\n     * @category String\\n     * @param {string} string The string to convert.\\n     * @param {number} [radix=10] The radix to interpret `value` by.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {number} Returns the converted integer.\\n     * @example\\n     *\\n     * _.parseInt('08');\\n     * // => 8\\n     *\\n     * _.map(['6', '08', '10'], _.parseInt);\\n     * // => [6, 8, 10]\\n     */\\n    function parseInt(string, radix, guard) {\\n      if (guard || radix == null) {\\n        radix = 0;\\n      } else if (radix) {\\n        radix = +radix;\\n      }\\n      return nativeParseInt(toString(string).replace(reTrimStart, ''), radix || 0);\\n    }\\n\\n    /**\\n     * Repeats the given string `n` times.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to repeat.\\n     * @param {number} [n=1] The number of times to repeat the string.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {string} Returns the repeated string.\\n     * @example\\n     *\\n     * _.repeat('*', 3);\\n     * // => '***'\\n     *\\n     * _.repeat('abc', 2);\\n     * // => 'abcabc'\\n     *\\n     * _.repeat('abc', 0);\\n     * // => ''\\n     */\\n    function repeat(string, n, guard) {\\n      if ((guard ? isIterateeCall(string, n, guard) : n === undefined)) {\\n        n = 1;\\n      } else {\\n        n = toInteger(n);\\n      }\\n      return baseRepeat(toString(string), n);\\n    }\\n\\n    /**\\n     * Replaces matches for `pattern` in `string` with `replacement`.\\n     *\\n     * **Note:** This method is based on\\n     * [`String#replace`](https://mdn.io/String/replace).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to modify.\\n     * @param {RegExp|string} pattern The pattern to replace.\\n     * @param {Function|string} replacement The match replacement.\\n     * @returns {string} Returns the modified string.\\n     * @example\\n     *\\n     * _.replace('Hi Fred', 'Fred', 'Barney');\\n     * // => 'Hi Barney'\\n     */\\n    function replace() {\\n      var args = arguments,\\n          string = toString(args[0]);\\n\\n      return args.length < 3 ? string : string.replace(args[1], args[2]);\\n    }\\n\\n    /**\\n     * Converts `string` to\\n     * [snake case](https://en.wikipedia.org/wiki/Snake_case).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the snake cased string.\\n     * @example\\n     *\\n     * _.snakeCase('Foo Bar');\\n     * // => 'foo_bar'\\n     *\\n     * _.snakeCase('fooBar');\\n     * // => 'foo_bar'\\n     *\\n     * _.snakeCase('--FOO-BAR--');\\n     * // => 'foo_bar'\\n     */\\n    var snakeCase = createCompounder(function(result, word, index) {\\n      return result + (index ? '_' : '') + word.toLowerCase();\\n    });\\n\\n    /**\\n     * Splits `string` by `separator`.\\n     *\\n     * **Note:** This method is based on\\n     * [`String#split`](https://mdn.io/String/split).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to split.\\n     * @param {RegExp|string} separator The separator pattern to split by.\\n     * @param {number} [limit] The length to truncate results to.\\n     * @returns {Array} Returns the string segments.\\n     * @example\\n     *\\n     * _.split('a-b-c', '-', 2);\\n     * // => ['a', 'b']\\n     */\\n    function split(string, separator, limit) {\\n      if (limit && typeof limit != 'number' && isIterateeCall(string, separator, limit)) {\\n        separator = limit = undefined;\\n      }\\n      limit = limit === undefined ? MAX_ARRAY_LENGTH : limit >>> 0;\\n      if (!limit) {\\n        return [];\\n      }\\n      string = toString(string);\\n      if (string && (\\n            typeof separator == 'string' ||\\n            (separator != null && !isRegExp(separator))\\n          )) {\\n        separator = baseToString(separator);\\n        if (!separator && hasUnicode(string)) {\\n          return castSlice(stringToArray(string), 0, limit);\\n        }\\n      }\\n      return string.split(separator, limit);\\n    }\\n\\n    /**\\n     * Converts `string` to\\n     * [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.1.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the start cased string.\\n     * @example\\n     *\\n     * _.startCase('--foo-bar--');\\n     * // => 'Foo Bar'\\n     *\\n     * _.startCase('fooBar');\\n     * // => 'Foo Bar'\\n     *\\n     * _.startCase('__FOO_BAR__');\\n     * // => 'FOO BAR'\\n     */\\n    var startCase = createCompounder(function(result, word, index) {\\n      return result + (index ? ' ' : '') + upperFirst(word);\\n    });\\n\\n    /**\\n     * Checks if `string` starts with the given target string.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to inspect.\\n     * @param {string} [target] The string to search for.\\n     * @param {number} [position=0] The position to search from.\\n     * @returns {boolean} Returns `true` if `string` starts with `target`,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.startsWith('abc', 'a');\\n     * // => true\\n     *\\n     * _.startsWith('abc', 'b');\\n     * // => false\\n     *\\n     * _.startsWith('abc', 'b', 1);\\n     * // => true\\n     */\\n    function startsWith(string, target, position) {\\n      string = toString(string);\\n      position = position == null\\n        ? 0\\n        : baseClamp(toInteger(position), 0, string.length);\\n\\n      target = baseToString(target);\\n      return string.slice(position, position + target.length) == target;\\n    }\\n\\n    /**\\n     * Creates a compiled template function that can interpolate data properties\\n     * in \\\"interpolate\\\" delimiters, HTML-escape interpolated data properties in\\n     * \\\"escape\\\" delimiters, and execute JavaScript in \\\"evaluate\\\" delimiters. Data\\n     * properties may be accessed as free variables in the template. If a setting\\n     * object is given, it takes precedence over `_.templateSettings` values.\\n     *\\n     * **Note:** In the development build `_.template` utilizes\\n     * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl)\\n     * for easier debugging.\\n     *\\n     * For more information on precompiling templates see\\n     * [lodash's custom builds documentation](https://lodash.com/custom-builds).\\n     *\\n     * For more information on Chrome extension sandboxes see\\n     * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval).\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category String\\n     * @param {string} [string=''] The template string.\\n     * @param {Object} [options={}] The options object.\\n     * @param {RegExp} [options.escape=_.templateSettings.escape]\\n     *  The HTML \\\"escape\\\" delimiter.\\n     * @param {RegExp} [options.evaluate=_.templateSettings.evaluate]\\n     *  The \\\"evaluate\\\" delimiter.\\n     * @param {Object} [options.imports=_.templateSettings.imports]\\n     *  An object to import into the template as free variables.\\n     * @param {RegExp} [options.interpolate=_.templateSettings.interpolate]\\n     *  The \\\"interpolate\\\" delimiter.\\n     * @param {string} [options.sourceURL='lodash.templateSources[n]']\\n     *  The sourceURL of the compiled template.\\n     * @param {string} [options.variable='obj']\\n     *  The data object variable name.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Function} Returns the compiled template function.\\n     * @example\\n     *\\n     * // Use the \\\"interpolate\\\" delimiter to create a compiled template.\\n     * var compiled = _.template('hello <%= user %>!');\\n     * compiled({ 'user': 'fred' });\\n     * // => 'hello fred!'\\n     *\\n     * // Use the HTML \\\"escape\\\" delimiter to escape data property values.\\n     * var compiled = _.template('<b><%- value %></b>');\\n     * compiled({ 'value': '<script>' });\\n     * // => '<b>&lt;script&gt;</b>'\\n     *\\n     * // Use the \\\"evaluate\\\" delimiter to execute JavaScript and generate HTML.\\n     * var compiled = _.template('<% _.forEach(users, function(user) { %><li><%- user %></li><% }); %>');\\n     * compiled({ 'users': ['fred', 'barney'] });\\n     * // => '<li>fred</li><li>barney</li>'\\n     *\\n     * // Use the internal `print` function in \\\"evaluate\\\" delimiters.\\n     * var compiled = _.template('<% print(\\\"hello \\\" + user); %>!');\\n     * compiled({ 'user': 'barney' });\\n     * // => 'hello barney!'\\n     *\\n     * // Use the ES template literal delimiter as an \\\"interpolate\\\" delimiter.\\n     * // Disable support by replacing the \\\"interpolate\\\" delimiter.\\n     * var compiled = _.template('hello ${ user }!');\\n     * compiled({ 'user': 'pebbles' });\\n     * // => 'hello pebbles!'\\n     *\\n     * // Use backslashes to treat delimiters as plain text.\\n     * var compiled = _.template('<%= \\\"\\\\\\\\<%- value %\\\\\\\\>\\\" %>');\\n     * compiled({ 'value': 'ignored' });\\n     * // => '<%- value %>'\\n     *\\n     * // Use the `imports` option to import `jQuery` as `jq`.\\n     * var text = '<% jq.each(users, function(user) { %><li><%- user %></li><% }); %>';\\n     * var compiled = _.template(text, { 'imports': { 'jq': jQuery } });\\n     * compiled({ 'users': ['fred', 'barney'] });\\n     * // => '<li>fred</li><li>barney</li>'\\n     *\\n     * // Use the `sourceURL` option to specify a custom sourceURL for the template.\\n     * var compiled = _.template('hello <%= user %>!', { 'sourceURL': '/basic/greeting.jst' });\\n     * compiled(data);\\n     * // => Find the source of \\\"greeting.jst\\\" under the Sources tab or Resources panel of the web inspector.\\n     *\\n     * // Use the `variable` option to ensure a with-statement isn't used in the compiled template.\\n     * var compiled = _.template('hi <%= data.user %>!', { 'variable': 'data' });\\n     * compiled.source;\\n     * // => function(data) {\\n     * //   var __t, __p = '';\\n     * //   __p += 'hi ' + ((__t = ( data.user )) == null ? '' : __t) + '!';\\n     * //   return __p;\\n     * // }\\n     *\\n     * // Use custom template delimiters.\\n     * _.templateSettings.interpolate = /{{([\\\\s\\\\S]+?)}}/g;\\n     * var compiled = _.template('hello {{ user }}!');\\n     * compiled({ 'user': 'mustache' });\\n     * // => 'hello mustache!'\\n     *\\n     * // Use the `source` property to inline compiled templates for meaningful\\n     * // line numbers in error messages and stack traces.\\n     * fs.writeFileSync(path.join(process.cwd(), 'jst.js'), '\\\\\\n     *   var JST = {\\\\\\n     *     \\\"main\\\": ' + _.template(mainText).source + '\\\\\\n     *   };\\\\\\n     * ');\\n     */\\n    function template(string, options, guard) {\\n      // Based on John Resig's `tmpl` implementation\\n      // (http://ejohn.org/blog/javascript-micro-templating/)\\n      // and Laura Doktorova's doT.js (https://github.com/olado/doT).\\n      var settings = lodash.templateSettings;\\n\\n      if (guard && isIterateeCall(string, options, guard)) {\\n        options = undefined;\\n      }\\n      string = toString(string);\\n      options = assignInWith({}, options, settings, customDefaultsAssignIn);\\n\\n      var imports = assignInWith({}, options.imports, settings.imports, customDefaultsAssignIn),\\n          importsKeys = keys(imports),\\n          importsValues = baseValues(imports, importsKeys);\\n\\n      var isEscaping,\\n          isEvaluating,\\n          index = 0,\\n          interpolate = options.interpolate || reNoMatch,\\n          source = \\\"__p += '\\\";\\n\\n      // Compile the regexp to match each delimiter.\\n      var reDelimiters = RegExp(\\n        (options.escape || reNoMatch).source + '|' +\\n        interpolate.source + '|' +\\n        (interpolate === reInterpolate ? reEsTemplate : reNoMatch).source + '|' +\\n        (options.evaluate || reNoMatch).source + '|$'\\n      , 'g');\\n\\n      // Use a sourceURL for easier debugging.\\n      // The sourceURL gets injected into the source that's eval-ed, so be careful\\n      // to normalize all kinds of whitespace, so e.g. newlines (and unicode versions of it) can't sneak in\\n      // and escape the comment, thus injecting code that gets evaled.\\n      var sourceURL = '//# sourceURL=' +\\n        (hasOwnProperty.call(options, 'sourceURL')\\n          ? (options.sourceURL + '').replace(/\\\\s/g, ' ')\\n          : ('lodash.templateSources[' + (++templateCounter) + ']')\\n        ) + '\\\\n';\\n\\n      string.replace(reDelimiters, function(match, escapeValue, interpolateValue, esTemplateValue, evaluateValue, offset) {\\n        interpolateValue || (interpolateValue = esTemplateValue);\\n\\n        // Escape characters that can't be included in string literals.\\n        source += string.slice(index, offset).replace(reUnescapedString, escapeStringChar);\\n\\n        // Replace delimiters with snippets.\\n        if (escapeValue) {\\n          isEscaping = true;\\n          source += \\\"' +\\\\n__e(\\\" + escapeValue + \\\") +\\\\n'\\\";\\n        }\\n        if (evaluateValue) {\\n          isEvaluating = true;\\n          source += \\\"';\\\\n\\\" + evaluateValue + \\\";\\\\n__p += '\\\";\\n        }\\n        if (interpolateValue) {\\n          source += \\\"' +\\\\n((__t = (\\\" + interpolateValue + \\\")) == null ? '' : __t) +\\\\n'\\\";\\n        }\\n        index = offset + match.length;\\n\\n        // The JS engine embedded in Adobe products needs `match` returned in\\n        // order to produce the correct `offset` value.\\n        return match;\\n      });\\n\\n      source += \\\"';\\\\n\\\";\\n\\n      // If `variable` is not specified wrap a with-statement around the generated\\n      // code to add the data object to the top of the scope chain.\\n      var variable = hasOwnProperty.call(options, 'variable') && options.variable;\\n      if (!variable) {\\n        source = 'with (obj) {\\\\n' + source + '\\\\n}\\\\n';\\n      }\\n      // Cleanup code by stripping empty strings.\\n      source = (isEvaluating ? source.replace(reEmptyStringLeading, '') : source)\\n        .replace(reEmptyStringMiddle, '$1')\\n        .replace(reEmptyStringTrailing, '$1;');\\n\\n      // Frame code as the function body.\\n      source = 'function(' + (variable || 'obj') + ') {\\\\n' +\\n        (variable\\n          ? ''\\n          : 'obj || (obj = {});\\\\n'\\n        ) +\\n        \\\"var __t, __p = ''\\\" +\\n        (isEscaping\\n           ? ', __e = _.escape'\\n           : ''\\n        ) +\\n        (isEvaluating\\n          ? ', __j = Array.prototype.join;\\\\n' +\\n            \\\"function print() { __p += __j.call(arguments, '') }\\\\n\\\"\\n          : ';\\\\n'\\n        ) +\\n        source +\\n        'return __p\\\\n}';\\n\\n      var result = attempt(function() {\\n        return Function(importsKeys, sourceURL + 'return ' + source)\\n          .apply(undefined, importsValues);\\n      });\\n\\n      // Provide the compiled function's source by its `toString` method or\\n      // the `source` property as a convenience for inlining compiled templates.\\n      result.source = source;\\n      if (isError(result)) {\\n        throw result;\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Converts `string`, as a whole, to lower case just like\\n     * [String#toLowerCase](https://mdn.io/toLowerCase).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the lower cased string.\\n     * @example\\n     *\\n     * _.toLower('--Foo-Bar--');\\n     * // => '--foo-bar--'\\n     *\\n     * _.toLower('fooBar');\\n     * // => 'foobar'\\n     *\\n     * _.toLower('__FOO_BAR__');\\n     * // => '__foo_bar__'\\n     */\\n    function toLower(value) {\\n      return toString(value).toLowerCase();\\n    }\\n\\n    /**\\n     * Converts `string`, as a whole, to upper case just like\\n     * [String#toUpperCase](https://mdn.io/toUpperCase).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the upper cased string.\\n     * @example\\n     *\\n     * _.toUpper('--foo-bar--');\\n     * // => '--FOO-BAR--'\\n     *\\n     * _.toUpper('fooBar');\\n     * // => 'FOOBAR'\\n     *\\n     * _.toUpper('__foo_bar__');\\n     * // => '__FOO_BAR__'\\n     */\\n    function toUpper(value) {\\n      return toString(value).toUpperCase();\\n    }\\n\\n    /**\\n     * Removes leading and trailing whitespace or specified characters from `string`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to trim.\\n     * @param {string} [chars=whitespace] The characters to trim.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {string} Returns the trimmed string.\\n     * @example\\n     *\\n     * _.trim('  abc  ');\\n     * // => 'abc'\\n     *\\n     * _.trim('-_-abc-_-', '_-');\\n     * // => 'abc'\\n     *\\n     * _.map(['  foo  ', '  bar  '], _.trim);\\n     * // => ['foo', 'bar']\\n     */\\n    function trim(string, chars, guard) {\\n      string = toString(string);\\n      if (string && (guard || chars === undefined)) {\\n        return string.replace(reTrim, '');\\n      }\\n      if (!string || !(chars = baseToString(chars))) {\\n        return string;\\n      }\\n      var strSymbols = stringToArray(string),\\n          chrSymbols = stringToArray(chars),\\n          start = charsStartIndex(strSymbols, chrSymbols),\\n          end = charsEndIndex(strSymbols, chrSymbols) + 1;\\n\\n      return castSlice(strSymbols, start, end).join('');\\n    }\\n\\n    /**\\n     * Removes trailing whitespace or specified characters from `string`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to trim.\\n     * @param {string} [chars=whitespace] The characters to trim.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {string} Returns the trimmed string.\\n     * @example\\n     *\\n     * _.trimEnd('  abc  ');\\n     * // => '  abc'\\n     *\\n     * _.trimEnd('-_-abc-_-', '_-');\\n     * // => '-_-abc'\\n     */\\n    function trimEnd(string, chars, guard) {\\n      string = toString(string);\\n      if (string && (guard || chars === undefined)) {\\n        return string.replace(reTrimEnd, '');\\n      }\\n      if (!string || !(chars = baseToString(chars))) {\\n        return string;\\n      }\\n      var strSymbols = stringToArray(string),\\n          end = charsEndIndex(strSymbols, stringToArray(chars)) + 1;\\n\\n      return castSlice(strSymbols, 0, end).join('');\\n    }\\n\\n    /**\\n     * Removes leading whitespace or specified characters from `string`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to trim.\\n     * @param {string} [chars=whitespace] The characters to trim.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {string} Returns the trimmed string.\\n     * @example\\n     *\\n     * _.trimStart('  abc  ');\\n     * // => 'abc  '\\n     *\\n     * _.trimStart('-_-abc-_-', '_-');\\n     * // => 'abc-_-'\\n     */\\n    function trimStart(string, chars, guard) {\\n      string = toString(string);\\n      if (string && (guard || chars === undefined)) {\\n        return string.replace(reTrimStart, '');\\n      }\\n      if (!string || !(chars = baseToString(chars))) {\\n        return string;\\n      }\\n      var strSymbols = stringToArray(string),\\n          start = charsStartIndex(strSymbols, stringToArray(chars));\\n\\n      return castSlice(strSymbols, start).join('');\\n    }\\n\\n    /**\\n     * Truncates `string` if it's longer than the given maximum string length.\\n     * The last characters of the truncated string are replaced with the omission\\n     * string which defaults to \\\"...\\\".\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to truncate.\\n     * @param {Object} [options={}] The options object.\\n     * @param {number} [options.length=30] The maximum string length.\\n     * @param {string} [options.omission='...'] The string to indicate text is omitted.\\n     * @param {RegExp|string} [options.separator] The separator pattern to truncate to.\\n     * @returns {string} Returns the truncated string.\\n     * @example\\n     *\\n     * _.truncate('hi-diddly-ho there, neighborino');\\n     * // => 'hi-diddly-ho there, neighbo...'\\n     *\\n     * _.truncate('hi-diddly-ho there, neighborino', {\\n     *   'length': 24,\\n     *   'separator': ' '\\n     * });\\n     * // => 'hi-diddly-ho there,...'\\n     *\\n     * _.truncate('hi-diddly-ho there, neighborino', {\\n     *   'length': 24,\\n     *   'separator': /,? +/\\n     * });\\n     * // => 'hi-diddly-ho there...'\\n     *\\n     * _.truncate('hi-diddly-ho there, neighborino', {\\n     *   'omission': ' [...]'\\n     * });\\n     * // => 'hi-diddly-ho there, neig [...]'\\n     */\\n    function truncate(string, options) {\\n      var length = DEFAULT_TRUNC_LENGTH,\\n          omission = DEFAULT_TRUNC_OMISSION;\\n\\n      if (isObject(options)) {\\n        var separator = 'separator' in options ? options.separator : separator;\\n        length = 'length' in options ? toInteger(options.length) : length;\\n        omission = 'omission' in options ? baseToString(options.omission) : omission;\\n      }\\n      string = toString(string);\\n\\n      var strLength = string.length;\\n      if (hasUnicode(string)) {\\n        var strSymbols = stringToArray(string);\\n        strLength = strSymbols.length;\\n      }\\n      if (length >= strLength) {\\n        return string;\\n      }\\n      var end = length - stringSize(omission);\\n      if (end < 1) {\\n        return omission;\\n      }\\n      var result = strSymbols\\n        ? castSlice(strSymbols, 0, end).join('')\\n        : string.slice(0, end);\\n\\n      if (separator === undefined) {\\n        return result + omission;\\n      }\\n      if (strSymbols) {\\n        end += (result.length - end);\\n      }\\n      if (isRegExp(separator)) {\\n        if (string.slice(end).search(separator)) {\\n          var match,\\n              substring = result;\\n\\n          if (!separator.global) {\\n            separator = RegExp(separator.source, toString(reFlags.exec(separator)) + 'g');\\n          }\\n          separator.lastIndex = 0;\\n          while ((match = separator.exec(substring))) {\\n            var newEnd = match.index;\\n          }\\n          result = result.slice(0, newEnd === undefined ? end : newEnd);\\n        }\\n      } else if (string.indexOf(baseToString(separator), end) != end) {\\n        var index = result.lastIndexOf(separator);\\n        if (index > -1) {\\n          result = result.slice(0, index);\\n        }\\n      }\\n      return result + omission;\\n    }\\n\\n    /**\\n     * The inverse of `_.escape`; this method converts the HTML entities\\n     * `&amp;`, `&lt;`, `&gt;`, `&quot;`, and `&#39;` in `string` to\\n     * their corresponding characters.\\n     *\\n     * **Note:** No other HTML entities are unescaped. To unescape additional\\n     * HTML entities use a third-party library like [_he_](https://mths.be/he).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.6.0\\n     * @category String\\n     * @param {string} [string=''] The string to unescape.\\n     * @returns {string} Returns the unescaped string.\\n     * @example\\n     *\\n     * _.unescape('fred, barney, &amp; pebbles');\\n     * // => 'fred, barney, & pebbles'\\n     */\\n    function unescape(string) {\\n      string = toString(string);\\n      return (string && reHasEscapedHtml.test(string))\\n        ? string.replace(reEscapedHtml, unescapeHtmlChar)\\n        : string;\\n    }\\n\\n    /**\\n     * Converts `string`, as space separated words, to upper case.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the upper cased string.\\n     * @example\\n     *\\n     * _.upperCase('--foo-bar');\\n     * // => 'FOO BAR'\\n     *\\n     * _.upperCase('fooBar');\\n     * // => 'FOO BAR'\\n     *\\n     * _.upperCase('__foo_bar__');\\n     * // => 'FOO BAR'\\n     */\\n    var upperCase = createCompounder(function(result, word, index) {\\n      return result + (index ? ' ' : '') + word.toUpperCase();\\n    });\\n\\n    /**\\n     * Converts the first character of `string` to upper case.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the converted string.\\n     * @example\\n     *\\n     * _.upperFirst('fred');\\n     * // => 'Fred'\\n     *\\n     * _.upperFirst('FRED');\\n     * // => 'FRED'\\n     */\\n    var upperFirst = createCaseFirst('toUpperCase');\\n\\n    /**\\n     * Splits `string` into an array of its words.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to inspect.\\n     * @param {RegExp|string} [pattern] The pattern to match words.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the words of `string`.\\n     * @example\\n     *\\n     * _.words('fred, barney, & pebbles');\\n     * // => ['fred', 'barney', 'pebbles']\\n     *\\n     * _.words('fred, barney, & pebbles', /[^, ]+/g);\\n     * // => ['fred', 'barney', '&', 'pebbles']\\n     */\\n    function words(string, pattern, guard) {\\n      string = toString(string);\\n      pattern = guard ? undefined : pattern;\\n\\n      if (pattern === undefined) {\\n        return hasUnicodeWord(string) ? unicodeWords(string) : asciiWords(string);\\n      }\\n      return string.match(pattern) || [];\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Attempts to invoke `func`, returning either the result or the caught error\\n     * object. Any additional arguments are provided to `func` when it's invoked.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Util\\n     * @param {Function} func The function to attempt.\\n     * @param {...*} [args] The arguments to invoke `func` with.\\n     * @returns {*} Returns the `func` result or error object.\\n     * @example\\n     *\\n     * // Avoid throwing errors for invalid selectors.\\n     * var elements = _.attempt(function(selector) {\\n     *   return document.querySelectorAll(selector);\\n     * }, '>_>');\\n     *\\n     * if (_.isError(elements)) {\\n     *   elements = [];\\n     * }\\n     */\\n    var attempt = baseRest(function(func, args) {\\n      try {\\n        return apply(func, undefined, args);\\n      } catch (e) {\\n        return isError(e) ? e : new Error(e);\\n      }\\n    });\\n\\n    /**\\n     * Binds methods of an object to the object itself, overwriting the existing\\n     * method.\\n     *\\n     * **Note:** This method doesn't set the \\\"length\\\" property of bound functions.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {Object} object The object to bind and assign the bound methods to.\\n     * @param {...(string|string[])} methodNames The object method names to bind.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * var view = {\\n     *   'label': 'docs',\\n     *   'click': function() {\\n     *     console.log('clicked ' + this.label);\\n     *   }\\n     * };\\n     *\\n     * _.bindAll(view, ['click']);\\n     * jQuery(element).on('click', view.click);\\n     * // => Logs 'clicked docs' when clicked.\\n     */\\n    var bindAll = flatRest(function(object, methodNames) {\\n      arrayEach(methodNames, function(key) {\\n        key = toKey(key);\\n        baseAssignValue(object, key, bind(object[key], object));\\n      });\\n      return object;\\n    });\\n\\n    /**\\n     * Creates a function that iterates over `pairs` and invokes the corresponding\\n     * function of the first predicate to return truthy. The predicate-function\\n     * pairs are invoked with the `this` binding and arguments of the created\\n     * function.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {Array} pairs The predicate-function pairs.\\n     * @returns {Function} Returns the new composite function.\\n     * @example\\n     *\\n     * var func = _.cond([\\n     *   [_.matches({ 'a': 1 }),           _.constant('matches A')],\\n     *   [_.conforms({ 'b': _.isNumber }), _.constant('matches B')],\\n     *   [_.stubTrue,                      _.constant('no match')]\\n     * ]);\\n     *\\n     * func({ 'a': 1, 'b': 2 });\\n     * // => 'matches A'\\n     *\\n     * func({ 'a': 0, 'b': 1 });\\n     * // => 'matches B'\\n     *\\n     * func({ 'a': '1', 'b': '2' });\\n     * // => 'no match'\\n     */\\n    function cond(pairs) {\\n      var length = pairs == null ? 0 : pairs.length,\\n          toIteratee = getIteratee();\\n\\n      pairs = !length ? [] : arrayMap(pairs, function(pair) {\\n        if (typeof pair[1] != 'function') {\\n          throw new TypeError(FUNC_ERROR_TEXT);\\n        }\\n        return [toIteratee(pair[0]), pair[1]];\\n      });\\n\\n      return baseRest(function(args) {\\n        var index = -1;\\n        while (++index < length) {\\n          var pair = pairs[index];\\n          if (apply(pair[0], this, args)) {\\n            return apply(pair[1], this, args);\\n          }\\n        }\\n      });\\n    }\\n\\n    /**\\n     * Creates a function that invokes the predicate properties of `source` with\\n     * the corresponding property values of a given object, returning `true` if\\n     * all predicates return truthy, else `false`.\\n     *\\n     * **Note:** The created function is equivalent to `_.conformsTo` with\\n     * `source` partially applied.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {Object} source The object of property predicates to conform to.\\n     * @returns {Function} Returns the new spec function.\\n     * @example\\n     *\\n     * var objects = [\\n     *   { 'a': 2, 'b': 1 },\\n     *   { 'a': 1, 'b': 2 }\\n     * ];\\n     *\\n     * _.filter(objects, _.conforms({ 'b': function(n) { return n > 1; } }));\\n     * // => [{ 'a': 1, 'b': 2 }]\\n     */\\n    function conforms(source) {\\n      return baseConforms(baseClone(source, CLONE_DEEP_FLAG));\\n    }\\n\\n    /**\\n     * Creates a function that returns `value`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.4.0\\n     * @category Util\\n     * @param {*} value The value to return from the new function.\\n     * @returns {Function} Returns the new constant function.\\n     * @example\\n     *\\n     * var objects = _.times(2, _.constant({ 'a': 1 }));\\n     *\\n     * console.log(objects);\\n     * // => [{ 'a': 1 }, { 'a': 1 }]\\n     *\\n     * console.log(objects[0] === objects[1]);\\n     * // => true\\n     */\\n    function constant(value) {\\n      return function() {\\n        return value;\\n      };\\n    }\\n\\n    /**\\n     * Checks `value` to determine whether a default value should be returned in\\n     * its place. The `defaultValue` is returned if `value` is `NaN`, `null`,\\n     * or `undefined`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.14.0\\n     * @category Util\\n     * @param {*} value The value to check.\\n     * @param {*} defaultValue The default value.\\n     * @returns {*} Returns the resolved value.\\n     * @example\\n     *\\n     * _.defaultTo(1, 10);\\n     * // => 1\\n     *\\n     * _.defaultTo(undefined, 10);\\n     * // => 10\\n     */\\n    function defaultTo(value, defaultValue) {\\n      return (value == null || value !== value) ? defaultValue : value;\\n    }\\n\\n    /**\\n     * Creates a function that returns the result of invoking the given functions\\n     * with the `this` binding of the created function, where each successive\\n     * invocation is supplied the return value of the previous.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Util\\n     * @param {...(Function|Function[])} [funcs] The functions to invoke.\\n     * @returns {Function} Returns the new composite function.\\n     * @see _.flowRight\\n     * @example\\n     *\\n     * function square(n) {\\n     *   return n * n;\\n     * }\\n     *\\n     * var addSquare = _.flow([_.add, square]);\\n     * addSquare(1, 2);\\n     * // => 9\\n     */\\n    var flow = createFlow();\\n\\n    /**\\n     * This method is like `_.flow` except that it creates a function that\\n     * invokes the given functions from right to left.\\n     *\\n     * @static\\n     * @since 3.0.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {...(Function|Function[])} [funcs] The functions to invoke.\\n     * @returns {Function} Returns the new composite function.\\n     * @see _.flow\\n     * @example\\n     *\\n     * function square(n) {\\n     *   return n * n;\\n     * }\\n     *\\n     * var addSquare = _.flowRight([square, _.add]);\\n     * addSquare(1, 2);\\n     * // => 9\\n     */\\n    var flowRight = createFlow(true);\\n\\n    /**\\n     * This method returns the first argument it receives.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {*} value Any value.\\n     * @returns {*} Returns `value`.\\n     * @example\\n     *\\n     * var object = { 'a': 1 };\\n     *\\n     * console.log(_.identity(object) === object);\\n     * // => true\\n     */\\n    function identity(value) {\\n      return value;\\n    }\\n\\n    /**\\n     * Creates a function that invokes `func` with the arguments of the created\\n     * function. If `func` is a property name, the created function returns the\\n     * property value for a given element. If `func` is an array or object, the\\n     * created function returns `true` for elements that contain the equivalent\\n     * source properties, otherwise it returns `false`.\\n     *\\n     * @static\\n     * @since 4.0.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {*} [func=_.identity] The value to convert to a callback.\\n     * @returns {Function} Returns the callback.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney', 'age': 36, 'active': true },\\n     *   { 'user': 'fred',   'age': 40, 'active': false }\\n     * ];\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.filter(users, _.iteratee({ 'user': 'barney', 'active': true }));\\n     * // => [{ 'user': 'barney', 'age': 36, 'active': true }]\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.filter(users, _.iteratee(['user', 'fred']));\\n     * // => [{ 'user': 'fred', 'age': 40 }]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.map(users, _.iteratee('user'));\\n     * // => ['barney', 'fred']\\n     *\\n     * // Create custom iteratee shorthands.\\n     * _.iteratee = _.wrap(_.iteratee, function(iteratee, func) {\\n     *   return !_.isRegExp(func) ? iteratee(func) : function(string) {\\n     *     return func.test(string);\\n     *   };\\n     * });\\n     *\\n     * _.filter(['abc', 'def'], /ef/);\\n     * // => ['def']\\n     */\\n    function iteratee(func) {\\n      return baseIteratee(typeof func == 'function' ? func : baseClone(func, CLONE_DEEP_FLAG));\\n    }\\n\\n    /**\\n     * Creates a function that performs a partial deep comparison between a given\\n     * object and `source`, returning `true` if the given object has equivalent\\n     * property values, else `false`.\\n     *\\n     * **Note:** The created function is equivalent to `_.isMatch` with `source`\\n     * partially applied.\\n     *\\n     * Partial comparisons will match empty array and empty object `source`\\n     * values against any array or object value, respectively. See `_.isEqual`\\n     * for a list of supported value comparisons.\\n     *\\n     * **Note:** Multiple values can be checked by combining several matchers\\n     * using `_.overSome`\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Util\\n     * @param {Object} source The object of property values to match.\\n     * @returns {Function} Returns the new spec function.\\n     * @example\\n     *\\n     * var objects = [\\n     *   { 'a': 1, 'b': 2, 'c': 3 },\\n     *   { 'a': 4, 'b': 5, 'c': 6 }\\n     * ];\\n     *\\n     * _.filter(objects, _.matches({ 'a': 4, 'c': 6 }));\\n     * // => [{ 'a': 4, 'b': 5, 'c': 6 }]\\n     *\\n     * // Checking for several possible values\\n     * _.filter(objects, _.overSome([_.matches({ 'a': 1 }), _.matches({ 'a': 4 })]));\\n     * // => [{ 'a': 1, 'b': 2, 'c': 3 }, { 'a': 4, 'b': 5, 'c': 6 }]\\n     */\\n    function matches(source) {\\n      return baseMatches(baseClone(source, CLONE_DEEP_FLAG));\\n    }\\n\\n    /**\\n     * Creates a function that performs a partial deep comparison between the\\n     * value at `path` of a given object to `srcValue`, returning `true` if the\\n     * object value is equivalent, else `false`.\\n     *\\n     * **Note:** Partial comparisons will match empty array and empty object\\n     * `srcValue` values against any array or object value, respectively. See\\n     * `_.isEqual` for a list of supported value comparisons.\\n     *\\n     * **Note:** Multiple values can be checked by combining several matchers\\n     * using `_.overSome`\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.2.0\\n     * @category Util\\n     * @param {Array|string} path The path of the property to get.\\n     * @param {*} srcValue The value to match.\\n     * @returns {Function} Returns the new spec function.\\n     * @example\\n     *\\n     * var objects = [\\n     *   { 'a': 1, 'b': 2, 'c': 3 },\\n     *   { 'a': 4, 'b': 5, 'c': 6 }\\n     * ];\\n     *\\n     * _.find(objects, _.matchesProperty('a', 4));\\n     * // => { 'a': 4, 'b': 5, 'c': 6 }\\n     *\\n     * // Checking for several possible values\\n     * _.filter(objects, _.overSome([_.matchesProperty('a', 1), _.matchesProperty('a', 4)]));\\n     * // => [{ 'a': 1, 'b': 2, 'c': 3 }, { 'a': 4, 'b': 5, 'c': 6 }]\\n     */\\n    function matchesProperty(path, srcValue) {\\n      return baseMatchesProperty(path, baseClone(srcValue, CLONE_DEEP_FLAG));\\n    }\\n\\n    /**\\n     * Creates a function that invokes the method at `path` of a given object.\\n     * Any additional arguments are provided to the invoked method.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.7.0\\n     * @category Util\\n     * @param {Array|string} path The path of the method to invoke.\\n     * @param {...*} [args] The arguments to invoke the method with.\\n     * @returns {Function} Returns the new invoker function.\\n     * @example\\n     *\\n     * var objects = [\\n     *   { 'a': { 'b': _.constant(2) } },\\n     *   { 'a': { 'b': _.constant(1) } }\\n     * ];\\n     *\\n     * _.map(objects, _.method('a.b'));\\n     * // => [2, 1]\\n     *\\n     * _.map(objects, _.method(['a', 'b']));\\n     * // => [2, 1]\\n     */\\n    var method = baseRest(function(path, args) {\\n      return function(object) {\\n        return baseInvoke(object, path, args);\\n      };\\n    });\\n\\n    /**\\n     * The opposite of `_.method`; this method creates a function that invokes\\n     * the method at a given path of `object`. Any additional arguments are\\n     * provided to the invoked method.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.7.0\\n     * @category Util\\n     * @param {Object} object The object to query.\\n     * @param {...*} [args] The arguments to invoke the method with.\\n     * @returns {Function} Returns the new invoker function.\\n     * @example\\n     *\\n     * var array = _.times(3, _.constant),\\n     *     object = { 'a': array, 'b': array, 'c': array };\\n     *\\n     * _.map(['a[2]', 'c[0]'], _.methodOf(object));\\n     * // => [2, 0]\\n     *\\n     * _.map([['a', '2'], ['c', '0']], _.methodOf(object));\\n     * // => [2, 0]\\n     */\\n    var methodOf = baseRest(function(object, args) {\\n      return function(path) {\\n        return baseInvoke(object, path, args);\\n      };\\n    });\\n\\n    /**\\n     * Adds all own enumerable string keyed function properties of a source\\n     * object to the destination object. If `object` is a function, then methods\\n     * are added to its prototype as well.\\n     *\\n     * **Note:** Use `_.runInContext` to create a pristine `lodash` function to\\n     * avoid conflicts caused by modifying the original.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {Function|Object} [object=lodash] The destination object.\\n     * @param {Object} source The object of functions to add.\\n     * @param {Object} [options={}] The options object.\\n     * @param {boolean} [options.chain=true] Specify whether mixins are chainable.\\n     * @returns {Function|Object} Returns `object`.\\n     * @example\\n     *\\n     * function vowels(string) {\\n     *   return _.filter(string, function(v) {\\n     *     return /[aeiou]/i.test(v);\\n     *   });\\n     * }\\n     *\\n     * _.mixin({ 'vowels': vowels });\\n     * _.vowels('fred');\\n     * // => ['e']\\n     *\\n     * _('fred').vowels().value();\\n     * // => ['e']\\n     *\\n     * _.mixin({ 'vowels': vowels }, { 'chain': false });\\n     * _('fred').vowels();\\n     * // => ['e']\\n     */\\n    function mixin(object, source, options) {\\n      var props = keys(source),\\n          methodNames = baseFunctions(source, props);\\n\\n      if (options == null &&\\n          !(isObject(source) && (methodNames.length || !props.length))) {\\n        options = source;\\n        source = object;\\n        object = this;\\n        methodNames = baseFunctions(source, keys(source));\\n      }\\n      var chain = !(isObject(options) && 'chain' in options) || !!options.chain,\\n          isFunc = isFunction(object);\\n\\n      arrayEach(methodNames, function(methodName) {\\n        var func = source[methodName];\\n        object[methodName] = func;\\n        if (isFunc) {\\n          object.prototype[methodName] = function() {\\n            var chainAll = this.__chain__;\\n            if (chain || chainAll) {\\n              var result = object(this.__wrapped__),\\n                  actions = result.__actions__ = copyArray(this.__actions__);\\n\\n              actions.push({ 'func': func, 'args': arguments, 'thisArg': object });\\n              result.__chain__ = chainAll;\\n              return result;\\n            }\\n            return func.apply(object, arrayPush([this.value()], arguments));\\n          };\\n        }\\n      });\\n\\n      return object;\\n    }\\n\\n    /**\\n     * Reverts the `_` variable to its previous value and returns a reference to\\n     * the `lodash` function.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @returns {Function} Returns the `lodash` function.\\n     * @example\\n     *\\n     * var lodash = _.noConflict();\\n     */\\n    function noConflict() {\\n      if (root._ === this) {\\n        root._ = oldDash;\\n      }\\n      return this;\\n    }\\n\\n    /**\\n     * This method returns `undefined`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.3.0\\n     * @category Util\\n     * @example\\n     *\\n     * _.times(2, _.noop);\\n     * // => [undefined, undefined]\\n     */\\n    function noop() {\\n      // No operation performed.\\n    }\\n\\n    /**\\n     * Creates a function that gets the argument at index `n`. If `n` is negative,\\n     * the nth argument from the end is returned.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {number} [n=0] The index of the argument to return.\\n     * @returns {Function} Returns the new pass-thru function.\\n     * @example\\n     *\\n     * var func = _.nthArg(1);\\n     * func('a', 'b', 'c', 'd');\\n     * // => 'b'\\n     *\\n     * var func = _.nthArg(-2);\\n     * func('a', 'b', 'c', 'd');\\n     * // => 'c'\\n     */\\n    function nthArg(n) {\\n      n = toInteger(n);\\n      return baseRest(function(args) {\\n        return baseNth(args, n);\\n      });\\n    }\\n\\n    /**\\n     * Creates a function that invokes `iteratees` with the arguments it receives\\n     * and returns their results.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {...(Function|Function[])} [iteratees=[_.identity]]\\n     *  The iteratees to invoke.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var func = _.over([Math.max, Math.min]);\\n     *\\n     * func(1, 2, 3, 4);\\n     * // => [4, 1]\\n     */\\n    var over = createOver(arrayMap);\\n\\n    /**\\n     * Creates a function that checks if **all** of the `predicates` return\\n     * truthy when invoked with the arguments it receives.\\n     *\\n     * Following shorthands are possible for providing predicates.\\n     * Pass an `Object` and it will be used as an parameter for `_.matches` to create the predicate.\\n     * Pass an `Array` of parameters for `_.matchesProperty` and the predicate will be created using them.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {...(Function|Function[])} [predicates=[_.identity]]\\n     *  The predicates to check.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var func = _.overEvery([Boolean, isFinite]);\\n     *\\n     * func('1');\\n     * // => true\\n     *\\n     * func(null);\\n     * // => false\\n     *\\n     * func(NaN);\\n     * // => false\\n     */\\n    var overEvery = createOver(arrayEvery);\\n\\n    /**\\n     * Creates a function that checks if **any** of the `predicates` return\\n     * truthy when invoked with the arguments it receives.\\n     *\\n     * Following shorthands are possible for providing predicates.\\n     * Pass an `Object` and it will be used as an parameter for `_.matches` to create the predicate.\\n     * Pass an `Array` of parameters for `_.matchesProperty` and the predicate will be created using them.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {...(Function|Function[])} [predicates=[_.identity]]\\n     *  The predicates to check.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var func = _.overSome([Boolean, isFinite]);\\n     *\\n     * func('1');\\n     * // => true\\n     *\\n     * func(null);\\n     * // => true\\n     *\\n     * func(NaN);\\n     * // => false\\n     *\\n     * var matchesFunc = _.overSome([{ 'a': 1 }, { 'a': 2 }])\\n     * var matchesPropertyFunc = _.overSome([['a', 1], ['a', 2]])\\n     */\\n    var overSome = createOver(arraySome);\\n\\n    /**\\n     * Creates a function that returns the value at `path` of a given object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.4.0\\n     * @category Util\\n     * @param {Array|string} path The path of the property to get.\\n     * @returns {Function} Returns the new accessor function.\\n     * @example\\n     *\\n     * var objects = [\\n     *   { 'a': { 'b': 2 } },\\n     *   { 'a': { 'b': 1 } }\\n     * ];\\n     *\\n     * _.map(objects, _.property('a.b'));\\n     * // => [2, 1]\\n     *\\n     * _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b');\\n     * // => [1, 2]\\n     */\\n    function property(path) {\\n      return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path);\\n    }\\n\\n    /**\\n     * The opposite of `_.property`; this method creates a function that returns\\n     * the value at a given path of `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Util\\n     * @param {Object} object The object to query.\\n     * @returns {Function} Returns the new accessor function.\\n     * @example\\n     *\\n     * var array = [0, 1, 2],\\n     *     object = { 'a': array, 'b': array, 'c': array };\\n     *\\n     * _.map(['a[2]', 'c[0]'], _.propertyOf(object));\\n     * // => [2, 0]\\n     *\\n     * _.map([['a', '2'], ['c', '0']], _.propertyOf(object));\\n     * // => [2, 0]\\n     */\\n    function propertyOf(object) {\\n      return function(path) {\\n        return object == null ? undefined : baseGet(object, path);\\n      };\\n    }\\n\\n    /**\\n     * Creates an array of numbers (positive and/or negative) progressing from\\n     * `start` up to, but not including, `end`. A step of `-1` is used if a negative\\n     * `start` is specified without an `end` or `step`. If `end` is not specified,\\n     * it's set to `start` with `start` then set to `0`.\\n     *\\n     * **Note:** JavaScript follows the IEEE-754 standard for resolving\\n     * floating-point values which can produce unexpected results.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {number} [start=0] The start of the range.\\n     * @param {number} end The end of the range.\\n     * @param {number} [step=1] The value to increment or decrement by.\\n     * @returns {Array} Returns the range of numbers.\\n     * @see _.inRange, _.rangeRight\\n     * @example\\n     *\\n     * _.range(4);\\n     * // => [0, 1, 2, 3]\\n     *\\n     * _.range(-4);\\n     * // => [0, -1, -2, -3]\\n     *\\n     * _.range(1, 5);\\n     * // => [1, 2, 3, 4]\\n     *\\n     * _.range(0, 20, 5);\\n     * // => [0, 5, 10, 15]\\n     *\\n     * _.range(0, -4, -1);\\n     * // => [0, -1, -2, -3]\\n     *\\n     * _.range(1, 4, 0);\\n     * // => [1, 1, 1]\\n     *\\n     * _.range(0);\\n     * // => []\\n     */\\n    var range = createRange();\\n\\n    /**\\n     * This method is like `_.range` except that it populates values in\\n     * descending order.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {number} [start=0] The start of the range.\\n     * @param {number} end The end of the range.\\n     * @param {number} [step=1] The value to increment or decrement by.\\n     * @returns {Array} Returns the range of numbers.\\n     * @see _.inRange, _.range\\n     * @example\\n     *\\n     * _.rangeRight(4);\\n     * // => [3, 2, 1, 0]\\n     *\\n     * _.rangeRight(-4);\\n     * // => [-3, -2, -1, 0]\\n     *\\n     * _.rangeRight(1, 5);\\n     * // => [4, 3, 2, 1]\\n     *\\n     * _.rangeRight(0, 20, 5);\\n     * // => [15, 10, 5, 0]\\n     *\\n     * _.rangeRight(0, -4, -1);\\n     * // => [-3, -2, -1, 0]\\n     *\\n     * _.rangeRight(1, 4, 0);\\n     * // => [1, 1, 1]\\n     *\\n     * _.rangeRight(0);\\n     * // => []\\n     */\\n    var rangeRight = createRange(true);\\n\\n    /**\\n     * This method returns a new empty array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.13.0\\n     * @category Util\\n     * @returns {Array} Returns the new empty array.\\n     * @example\\n     *\\n     * var arrays = _.times(2, _.stubArray);\\n     *\\n     * console.log(arrays);\\n     * // => [[], []]\\n     *\\n     * console.log(arrays[0] === arrays[1]);\\n     * // => false\\n     */\\n    function stubArray() {\\n      return [];\\n    }\\n\\n    /**\\n     * This method returns `false`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.13.0\\n     * @category Util\\n     * @returns {boolean} Returns `false`.\\n     * @example\\n     *\\n     * _.times(2, _.stubFalse);\\n     * // => [false, false]\\n     */\\n    function stubFalse() {\\n      return false;\\n    }\\n\\n    /**\\n     * This method returns a new empty object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.13.0\\n     * @category Util\\n     * @returns {Object} Returns the new empty object.\\n     * @example\\n     *\\n     * var objects = _.times(2, _.stubObject);\\n     *\\n     * console.log(objects);\\n     * // => [{}, {}]\\n     *\\n     * console.log(objects[0] === objects[1]);\\n     * // => false\\n     */\\n    function stubObject() {\\n      return {};\\n    }\\n\\n    /**\\n     * This method returns an empty string.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.13.0\\n     * @category Util\\n     * @returns {string} Returns the empty string.\\n     * @example\\n     *\\n     * _.times(2, _.stubString);\\n     * // => ['', '']\\n     */\\n    function stubString() {\\n      return '';\\n    }\\n\\n    /**\\n     * This method returns `true`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.13.0\\n     * @category Util\\n     * @returns {boolean} Returns `true`.\\n     * @example\\n     *\\n     * _.times(2, _.stubTrue);\\n     * // => [true, true]\\n     */\\n    function stubTrue() {\\n      return true;\\n    }\\n\\n    /**\\n     * Invokes the iteratee `n` times, returning an array of the results of\\n     * each invocation. The iteratee is invoked with one argument; (index).\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {number} n The number of times to invoke `iteratee`.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the array of results.\\n     * @example\\n     *\\n     * _.times(3, String);\\n     * // => ['0', '1', '2']\\n     *\\n     *  _.times(4, _.constant(0));\\n     * // => [0, 0, 0, 0]\\n     */\\n    function times(n, iteratee) {\\n      n = toInteger(n);\\n      if (n < 1 || n > MAX_SAFE_INTEGER) {\\n        return [];\\n      }\\n      var index = MAX_ARRAY_LENGTH,\\n          length = nativeMin(n, MAX_ARRAY_LENGTH);\\n\\n      iteratee = getIteratee(iteratee);\\n      n -= MAX_ARRAY_LENGTH;\\n\\n      var result = baseTimes(length, iteratee);\\n      while (++index < n) {\\n        iteratee(index);\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Converts `value` to a property path array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {*} value The value to convert.\\n     * @returns {Array} Returns the new property path array.\\n     * @example\\n     *\\n     * _.toPath('a.b.c');\\n     * // => ['a', 'b', 'c']\\n     *\\n     * _.toPath('a[0].b.c');\\n     * // => ['a', '0', 'b', 'c']\\n     */\\n    function toPath(value) {\\n      if (isArray(value)) {\\n        return arrayMap(value, toKey);\\n      }\\n      return isSymbol(value) ? [value] : copyArray(stringToPath(toString(value)));\\n    }\\n\\n    /**\\n     * Generates a unique ID. If `prefix` is given, the ID is appended to it.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {string} [prefix=''] The value to prefix the ID with.\\n     * @returns {string} Returns the unique ID.\\n     * @example\\n     *\\n     * _.uniqueId('contact_');\\n     * // => 'contact_104'\\n     *\\n     * _.uniqueId();\\n     * // => '105'\\n     */\\n    function uniqueId(prefix) {\\n      var id = ++idCounter;\\n      return toString(prefix) + id;\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Adds two numbers.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.4.0\\n     * @category Math\\n     * @param {number} augend The first number in an addition.\\n     * @param {number} addend The second number in an addition.\\n     * @returns {number} Returns the total.\\n     * @example\\n     *\\n     * _.add(6, 4);\\n     * // => 10\\n     */\\n    var add = createMathOperation(function(augend, addend) {\\n      return augend + addend;\\n    }, 0);\\n\\n    /**\\n     * Computes `number` rounded up to `precision`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.10.0\\n     * @category Math\\n     * @param {number} number The number to round up.\\n     * @param {number} [precision=0] The precision to round up to.\\n     * @returns {number} Returns the rounded up number.\\n     * @example\\n     *\\n     * _.ceil(4.006);\\n     * // => 5\\n     *\\n     * _.ceil(6.004, 2);\\n     * // => 6.01\\n     *\\n     * _.ceil(6040, -2);\\n     * // => 6100\\n     */\\n    var ceil = createRound('ceil');\\n\\n    /**\\n     * Divide two numbers.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.7.0\\n     * @category Math\\n     * @param {number} dividend The first number in a division.\\n     * @param {number} divisor The second number in a division.\\n     * @returns {number} Returns the quotient.\\n     * @example\\n     *\\n     * _.divide(6, 4);\\n     * // => 1.5\\n     */\\n    var divide = createMathOperation(function(dividend, divisor) {\\n      return dividend / divisor;\\n    }, 1);\\n\\n    /**\\n     * Computes `number` rounded down to `precision`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.10.0\\n     * @category Math\\n     * @param {number} number The number to round down.\\n     * @param {number} [precision=0] The precision to round down to.\\n     * @returns {number} Returns the rounded down number.\\n     * @example\\n     *\\n     * _.floor(4.006);\\n     * // => 4\\n     *\\n     * _.floor(0.046, 2);\\n     * // => 0.04\\n     *\\n     * _.floor(4060, -2);\\n     * // => 4000\\n     */\\n    var floor = createRound('floor');\\n\\n    /**\\n     * Computes the maximum value of `array`. If `array` is empty or falsey,\\n     * `undefined` is returned.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @returns {*} Returns the maximum value.\\n     * @example\\n     *\\n     * _.max([4, 2, 8, 6]);\\n     * // => 8\\n     *\\n     * _.max([]);\\n     * // => undefined\\n     */\\n    function max(array) {\\n      return (array && array.length)\\n        ? baseExtremum(array, identity, baseGt)\\n        : undefined;\\n    }\\n\\n    /**\\n     * This method is like `_.max` except that it accepts `iteratee` which is\\n     * invoked for each element in `array` to generate the criterion by which\\n     * the value is ranked. The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {*} Returns the maximum value.\\n     * @example\\n     *\\n     * var objects = [{ 'n': 1 }, { 'n': 2 }];\\n     *\\n     * _.maxBy(objects, function(o) { return o.n; });\\n     * // => { 'n': 2 }\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.maxBy(objects, 'n');\\n     * // => { 'n': 2 }\\n     */\\n    function maxBy(array, iteratee) {\\n      return (array && array.length)\\n        ? baseExtremum(array, getIteratee(iteratee, 2), baseGt)\\n        : undefined;\\n    }\\n\\n    /**\\n     * Computes the mean of the values in `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @returns {number} Returns the mean.\\n     * @example\\n     *\\n     * _.mean([4, 2, 8, 6]);\\n     * // => 5\\n     */\\n    function mean(array) {\\n      return baseMean(array, identity);\\n    }\\n\\n    /**\\n     * This method is like `_.mean` except that it accepts `iteratee` which is\\n     * invoked for each element in `array` to generate the value to be averaged.\\n     * The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.7.0\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {number} Returns the mean.\\n     * @example\\n     *\\n     * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }];\\n     *\\n     * _.meanBy(objects, function(o) { return o.n; });\\n     * // => 5\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.meanBy(objects, 'n');\\n     * // => 5\\n     */\\n    function meanBy(array, iteratee) {\\n      return baseMean(array, getIteratee(iteratee, 2));\\n    }\\n\\n    /**\\n     * Computes the minimum value of `array`. If `array` is empty or falsey,\\n     * `undefined` is returned.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @returns {*} Returns the minimum value.\\n     * @example\\n     *\\n     * _.min([4, 2, 8, 6]);\\n     * // => 2\\n     *\\n     * _.min([]);\\n     * // => undefined\\n     */\\n    function min(array) {\\n      return (array && array.length)\\n        ? baseExtremum(array, identity, baseLt)\\n        : undefined;\\n    }\\n\\n    /**\\n     * This method is like `_.min` except that it accepts `iteratee` which is\\n     * invoked for each element in `array` to generate the criterion by which\\n     * the value is ranked. The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {*} Returns the minimum value.\\n     * @example\\n     *\\n     * var objects = [{ 'n': 1 }, { 'n': 2 }];\\n     *\\n     * _.minBy(objects, function(o) { return o.n; });\\n     * // => { 'n': 1 }\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.minBy(objects, 'n');\\n     * // => { 'n': 1 }\\n     */\\n    function minBy(array, iteratee) {\\n      return (array && array.length)\\n        ? baseExtremum(array, getIteratee(iteratee, 2), baseLt)\\n        : undefined;\\n    }\\n\\n    /**\\n     * Multiply two numbers.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.7.0\\n     * @category Math\\n     * @param {number} multiplier The first number in a multiplication.\\n     * @param {number} multiplicand The second number in a multiplication.\\n     * @returns {number} Returns the product.\\n     * @example\\n     *\\n     * _.multiply(6, 4);\\n     * // => 24\\n     */\\n    var multiply = createMathOperation(function(multiplier, multiplicand) {\\n      return multiplier * multiplicand;\\n    }, 1);\\n\\n    /**\\n     * Computes `number` rounded to `precision`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.10.0\\n     * @category Math\\n     * @param {number} number The number to round.\\n     * @param {number} [precision=0] The precision to round to.\\n     * @returns {number} Returns the rounded number.\\n     * @example\\n     *\\n     * _.round(4.006);\\n     * // => 4\\n     *\\n     * _.round(4.006, 2);\\n     * // => 4.01\\n     *\\n     * _.round(4060, -2);\\n     * // => 4100\\n     */\\n    var round = createRound('round');\\n\\n    /**\\n     * Subtract two numbers.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Math\\n     * @param {number} minuend The first number in a subtraction.\\n     * @param {number} subtrahend The second number in a subtraction.\\n     * @returns {number} Returns the difference.\\n     * @example\\n     *\\n     * _.subtract(6, 4);\\n     * // => 2\\n     */\\n    var subtract = createMathOperation(function(minuend, subtrahend) {\\n      return minuend - subtrahend;\\n    }, 0);\\n\\n    /**\\n     * Computes the sum of the values in `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.4.0\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @returns {number} Returns the sum.\\n     * @example\\n     *\\n     * _.sum([4, 2, 8, 6]);\\n     * // => 20\\n     */\\n    function sum(array) {\\n      return (array && array.length)\\n        ? baseSum(array, identity)\\n        : 0;\\n    }\\n\\n    /**\\n     * This method is like `_.sum` except that it accepts `iteratee` which is\\n     * invoked for each element in `array` to generate the value to be summed.\\n     * The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {number} Returns the sum.\\n     * @example\\n     *\\n     * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }];\\n     *\\n     * _.sumBy(objects, function(o) { return o.n; });\\n     * // => 20\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.sumBy(objects, 'n');\\n     * // => 20\\n     */\\n    function sumBy(array, iteratee) {\\n      return (array && array.length)\\n        ? baseSum(array, getIteratee(iteratee, 2))\\n        : 0;\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    // Add methods that return wrapped values in chain sequences.\\n    lodash.after = after;\\n    lodash.ary = ary;\\n    lodash.assign = assign;\\n    lodash.assignIn = assignIn;\\n    lodash.assignInWith = assignInWith;\\n    lodash.assignWith = assignWith;\\n    lodash.at = at;\\n    lodash.before = before;\\n    lodash.bind = bind;\\n    lodash.bindAll = bindAll;\\n    lodash.bindKey = bindKey;\\n    lodash.castArray = castArray;\\n    lodash.chain = chain;\\n    lodash.chunk = chunk;\\n    lodash.compact = compact;\\n    lodash.concat = concat;\\n    lodash.cond = cond;\\n    lodash.conforms = conforms;\\n    lodash.constant = constant;\\n    lodash.countBy = countBy;\\n    lodash.create = create;\\n    lodash.curry = curry;\\n    lodash.curryRight = curryRight;\\n    lodash.debounce = debounce;\\n    lodash.defaults = defaults;\\n    lodash.defaultsDeep = defaultsDeep;\\n    lodash.defer = defer;\\n    lodash.delay = delay;\\n    lodash.difference = difference;\\n    lodash.differenceBy = differenceBy;\\n    lodash.differenceWith = differenceWith;\\n    lodash.drop = drop;\\n    lodash.dropRight = dropRight;\\n    lodash.dropRightWhile = dropRightWhile;\\n    lodash.dropWhile = dropWhile;\\n    lodash.fill = fill;\\n    lodash.filter = filter;\\n    lodash.flatMap = flatMap;\\n    lodash.flatMapDeep = flatMapDeep;\\n    lodash.flatMapDepth = flatMapDepth;\\n    lodash.flatten = flatten;\\n    lodash.flattenDeep = flattenDeep;\\n    lodash.flattenDepth = flattenDepth;\\n    lodash.flip = flip;\\n    lodash.flow = flow;\\n    lodash.flowRight = flowRight;\\n    lodash.fromPairs = fromPairs;\\n    lodash.functions = functions;\\n    lodash.functionsIn = functionsIn;\\n    lodash.groupBy = groupBy;\\n    lodash.initial = initial;\\n    lodash.intersection = intersection;\\n    lodash.intersectionBy = intersectionBy;\\n    lodash.intersectionWith = intersectionWith;\\n    lodash.invert = invert;\\n    lodash.invertBy = invertBy;\\n    lodash.invokeMap = invokeMap;\\n    lodash.iteratee = iteratee;\\n    lodash.keyBy = keyBy;\\n    lodash.keys = keys;\\n    lodash.keysIn = keysIn;\\n    lodash.map = map;\\n    lodash.mapKeys = mapKeys;\\n    lodash.mapValues = mapValues;\\n    lodash.matches = matches;\\n    lodash.matchesProperty = matchesProperty;\\n    lodash.memoize = memoize;\\n    lodash.merge = merge;\\n    lodash.mergeWith = mergeWith;\\n    lodash.method = method;\\n    lodash.methodOf = methodOf;\\n    lodash.mixin = mixin;\\n    lodash.negate = negate;\\n    lodash.nthArg = nthArg;\\n    lodash.omit = omit;\\n    lodash.omitBy = omitBy;\\n    lodash.once = once;\\n    lodash.orderBy = orderBy;\\n    lodash.over = over;\\n    lodash.overArgs = overArgs;\\n    lodash.overEvery = overEvery;\\n    lodash.overSome = overSome;\\n    lodash.partial = partial;\\n    lodash.partialRight = partialRight;\\n    lodash.partition = partition;\\n    lodash.pick = pick;\\n    lodash.pickBy = pickBy;\\n    lodash.property = property;\\n    lodash.propertyOf = propertyOf;\\n    lodash.pull = pull;\\n    lodash.pullAll = pullAll;\\n    lodash.pullAllBy = pullAllBy;\\n    lodash.pullAllWith = pullAllWith;\\n    lodash.pullAt = pullAt;\\n    lodash.range = range;\\n    lodash.rangeRight = rangeRight;\\n    lodash.rearg = rearg;\\n    lodash.reject = reject;\\n    lodash.remove = remove;\\n    lodash.rest = rest;\\n    lodash.reverse = reverse;\\n    lodash.sampleSize = sampleSize;\\n    lodash.set = set;\\n    lodash.setWith = setWith;\\n    lodash.shuffle = shuffle;\\n    lodash.slice = slice;\\n    lodash.sortBy = sortBy;\\n    lodash.sortedUniq = sortedUniq;\\n    lodash.sortedUniqBy = sortedUniqBy;\\n    lodash.split = split;\\n    lodash.spread = spread;\\n    lodash.tail = tail;\\n    lodash.take = take;\\n    lodash.takeRight = takeRight;\\n    lodash.takeRightWhile = takeRightWhile;\\n    lodash.takeWhile = takeWhile;\\n    lodash.tap = tap;\\n    lodash.throttle = throttle;\\n    lodash.thru = thru;\\n    lodash.toArray = toArray;\\n    lodash.toPairs = toPairs;\\n    lodash.toPairsIn = toPairsIn;\\n    lodash.toPath = toPath;\\n    lodash.toPlainObject = toPlainObject;\\n    lodash.transform = transform;\\n    lodash.unary = unary;\\n    lodash.union = union;\\n    lodash.unionBy = unionBy;\\n    lodash.unionWith = unionWith;\\n    lodash.uniq = uniq;\\n    lodash.uniqBy = uniqBy;\\n    lodash.uniqWith = uniqWith;\\n    lodash.unset = unset;\\n    lodash.unzip = unzip;\\n    lodash.unzipWith = unzipWith;\\n    lodash.update = update;\\n    lodash.updateWith = updateWith;\\n    lodash.values = values;\\n    lodash.valuesIn = valuesIn;\\n    lodash.without = without;\\n    lodash.words = words;\\n    lodash.wrap = wrap;\\n    lodash.xor = xor;\\n    lodash.xorBy = xorBy;\\n    lodash.xorWith = xorWith;\\n    lodash.zip = zip;\\n    lodash.zipObject = zipObject;\\n    lodash.zipObjectDeep = zipObjectDeep;\\n    lodash.zipWith = zipWith;\\n\\n    // Add aliases.\\n    lodash.entries = toPairs;\\n    lodash.entriesIn = toPairsIn;\\n    lodash.extend = assignIn;\\n    lodash.extendWith = assignInWith;\\n\\n    // Add methods to `lodash.prototype`.\\n    mixin(lodash, lodash);\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    // Add methods that return unwrapped values in chain sequences.\\n    lodash.add = add;\\n    lodash.attempt = attempt;\\n    lodash.camelCase = camelCase;\\n    lodash.capitalize = capitalize;\\n    lodash.ceil = ceil;\\n    lodash.clamp = clamp;\\n    lodash.clone = clone;\\n    lodash.cloneDeep = cloneDeep;\\n    lodash.cloneDeepWith = cloneDeepWith;\\n    lodash.cloneWith = cloneWith;\\n    lodash.conformsTo = conformsTo;\\n    lodash.deburr = deburr;\\n    lodash.defaultTo = defaultTo;\\n    lodash.divide = divide;\\n    lodash.endsWith = endsWith;\\n    lodash.eq = eq;\\n    lodash.escape = escape;\\n    lodash.escapeRegExp = escapeRegExp;\\n    lodash.every = every;\\n    lodash.find = find;\\n    lodash.findIndex = findIndex;\\n    lodash.findKey = findKey;\\n    lodash.findLast = findLast;\\n    lodash.findLastIndex = findLastIndex;\\n    lodash.findLastKey = findLastKey;\\n    lodash.floor = floor;\\n    lodash.forEach = forEach;\\n    lodash.forEachRight = forEachRight;\\n    lodash.forIn = forIn;\\n    lodash.forInRight = forInRight;\\n    lodash.forOwn = forOwn;\\n    lodash.forOwnRight = forOwnRight;\\n    lodash.get = get;\\n    lodash.gt = gt;\\n    lodash.gte = gte;\\n    lodash.has = has;\\n    lodash.hasIn = hasIn;\\n    lodash.head = head;\\n    lodash.identity = identity;\\n    lodash.includes = includes;\\n    lodash.indexOf = indexOf;\\n    lodash.inRange = inRange;\\n    lodash.invoke = invoke;\\n    lodash.isArguments = isArguments;\\n    lodash.isArray = isArray;\\n    lodash.isArrayBuffer = isArrayBuffer;\\n    lodash.isArrayLike = isArrayLike;\\n    lodash.isArrayLikeObject = isArrayLikeObject;\\n    lodash.isBoolean = isBoolean;\\n    lodash.isBuffer = isBuffer;\\n    lodash.isDate = isDate;\\n    lodash.isElement = isElement;\\n    lodash.isEmpty = isEmpty;\\n    lodash.isEqual = isEqual;\\n    lodash.isEqualWith = isEqualWith;\\n    lodash.isError = isError;\\n    lodash.isFinite = isFinite;\\n    lodash.isFunction = isFunction;\\n    lodash.isInteger = isInteger;\\n    lodash.isLength = isLength;\\n    lodash.isMap = isMap;\\n    lodash.isMatch = isMatch;\\n    lodash.isMatchWith = isMatchWith;\\n    lodash.isNaN = isNaN;\\n    lodash.isNative = isNative;\\n    lodash.isNil = isNil;\\n    lodash.isNull = isNull;\\n    lodash.isNumber = isNumber;\\n    lodash.isObject = isObject;\\n    lodash.isObjectLike = isObjectLike;\\n    lodash.isPlainObject = isPlainObject;\\n    lodash.isRegExp = isRegExp;\\n    lodash.isSafeInteger = isSafeInteger;\\n    lodash.isSet = isSet;\\n    lodash.isString = isString;\\n    lodash.isSymbol = isSymbol;\\n    lodash.isTypedArray = isTypedArray;\\n    lodash.isUndefined = isUndefined;\\n    lodash.isWeakMap = isWeakMap;\\n    lodash.isWeakSet = isWeakSet;\\n    lodash.join = join;\\n    lodash.kebabCase = kebabCase;\\n    lodash.last = last;\\n    lodash.lastIndexOf = lastIndexOf;\\n    lodash.lowerCase = lowerCase;\\n    lodash.lowerFirst = lowerFirst;\\n    lodash.lt = lt;\\n    lodash.lte = lte;\\n    lodash.max = max;\\n    lodash.maxBy = maxBy;\\n    lodash.mean = mean;\\n    lodash.meanBy = meanBy;\\n    lodash.min = min;\\n    lodash.minBy = minBy;\\n    lodash.stubArray = stubArray;\\n    lodash.stubFalse = stubFalse;\\n    lodash.stubObject = stubObject;\\n    lodash.stubString = stubString;\\n    lodash.stubTrue = stubTrue;\\n    lodash.multiply = multiply;\\n    lodash.nth = nth;\\n    lodash.noConflict = noConflict;\\n    lodash.noop = noop;\\n    lodash.now = now;\\n    lodash.pad = pad;\\n    lodash.padEnd = padEnd;\\n    lodash.padStart = padStart;\\n    lodash.parseInt = parseInt;\\n    lodash.random = random;\\n    lodash.reduce = reduce;\\n    lodash.reduceRight = reduceRight;\\n    lodash.repeat = repeat;\\n    lodash.replace = replace;\\n    lodash.result = result;\\n    lodash.round = round;\\n    lodash.runInContext = runInContext;\\n    lodash.sample = sample;\\n    lodash.size = size;\\n    lodash.snakeCase = snakeCase;\\n    lodash.some = some;\\n    lodash.sortedIndex = sortedIndex;\\n    lodash.sortedIndexBy = sortedIndexBy;\\n    lodash.sortedIndexOf = sortedIndexOf;\\n    lodash.sortedLastIndex = sortedLastIndex;\\n    lodash.sortedLastIndexBy = sortedLastIndexBy;\\n    lodash.sortedLastIndexOf = sortedLastIndexOf;\\n    lodash.startCase = startCase;\\n    lodash.startsWith = startsWith;\\n    lodash.subtract = subtract;\\n    lodash.sum = sum;\\n    lodash.sumBy = sumBy;\\n    lodash.template = template;\\n    lodash.times = times;\\n    lodash.toFinite = toFinite;\\n    lodash.toInteger = toInteger;\\n    lodash.toLength = toLength;\\n    lodash.toLower = toLower;\\n    lodash.toNumber = toNumber;\\n    lodash.toSafeInteger = toSafeInteger;\\n    lodash.toString = toString;\\n    lodash.toUpper = toUpper;\\n    lodash.trim = trim;\\n    lodash.trimEnd = trimEnd;\\n    lodash.trimStart = trimStart;\\n    lodash.truncate = truncate;\\n    lodash.unescape = unescape;\\n    lodash.uniqueId = uniqueId;\\n    lodash.upperCase = upperCase;\\n    lodash.upperFirst = upperFirst;\\n\\n    // Add aliases.\\n    lodash.each = forEach;\\n    lodash.eachRight = forEachRight;\\n    lodash.first = head;\\n\\n    mixin(lodash, (function() {\\n      var source = {};\\n      baseForOwn(lodash, function(func, methodName) {\\n        if (!hasOwnProperty.call(lodash.prototype, methodName)) {\\n          source[methodName] = func;\\n        }\\n      });\\n      return source;\\n    }()), { 'chain': false });\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * The semantic version number.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @type {string}\\n     */\\n    lodash.VERSION = VERSION;\\n\\n    // Assign default placeholders.\\n    arrayEach(['bind', 'bindKey', 'curry', 'curryRight', 'partial', 'partialRight'], function(methodName) {\\n      lodash[methodName].placeholder = lodash;\\n    });\\n\\n    // Add `LazyWrapper` methods for `_.drop` and `_.take` variants.\\n    arrayEach(['drop', 'take'], function(methodName, index) {\\n      LazyWrapper.prototype[methodName] = function(n) {\\n        n = n === undefined ? 1 : nativeMax(toInteger(n), 0);\\n\\n        var result = (this.__filtered__ && !index)\\n          ? new LazyWrapper(this)\\n          : this.clone();\\n\\n        if (result.__filtered__) {\\n          result.__takeCount__ = nativeMin(n, result.__takeCount__);\\n        } else {\\n          result.__views__.push({\\n            'size': nativeMin(n, MAX_ARRAY_LENGTH),\\n            'type': methodName + (result.__dir__ < 0 ? 'Right' : '')\\n          });\\n        }\\n        return result;\\n      };\\n\\n      LazyWrapper.prototype[methodName + 'Right'] = function(n) {\\n        return this.reverse()[methodName](n).reverse();\\n      };\\n    });\\n\\n    // Add `LazyWrapper` methods that accept an `iteratee` value.\\n    arrayEach(['filter', 'map', 'takeWhile'], function(methodName, index) {\\n      var type = index + 1,\\n          isFilter = type == LAZY_FILTER_FLAG || type == LAZY_WHILE_FLAG;\\n\\n      LazyWrapper.prototype[methodName] = function(iteratee) {\\n        var result = this.clone();\\n        result.__iteratees__.push({\\n          'iteratee': getIteratee(iteratee, 3),\\n          'type': type\\n        });\\n        result.__filtered__ = result.__filtered__ || isFilter;\\n        return result;\\n      };\\n    });\\n\\n    // Add `LazyWrapper` methods for `_.head` and `_.last`.\\n    arrayEach(['head', 'last'], function(methodName, index) {\\n      var takeName = 'take' + (index ? 'Right' : '');\\n\\n      LazyWrapper.prototype[methodName] = function() {\\n        return this[takeName](1).value()[0];\\n      };\\n    });\\n\\n    // Add `LazyWrapper` methods for `_.initial` and `_.tail`.\\n    arrayEach(['initial', 'tail'], function(methodName, index) {\\n      var dropName = 'drop' + (index ? '' : 'Right');\\n\\n      LazyWrapper.prototype[methodName] = function() {\\n        return this.__filtered__ ? new LazyWrapper(this) : this[dropName](1);\\n      };\\n    });\\n\\n    LazyWrapper.prototype.compact = function() {\\n      return this.filter(identity);\\n    };\\n\\n    LazyWrapper.prototype.find = function(predicate) {\\n      return this.filter(predicate).head();\\n    };\\n\\n    LazyWrapper.prototype.findLast = function(predicate) {\\n      return this.reverse().find(predicate);\\n    };\\n\\n    LazyWrapper.prototype.invokeMap = baseRest(function(path, args) {\\n      if (typeof path == 'function') {\\n        return new LazyWrapper(this);\\n      }\\n      return this.map(function(value) {\\n        return baseInvoke(value, path, args);\\n      });\\n    });\\n\\n    LazyWrapper.prototype.reject = function(predicate) {\\n      return this.filter(negate(getIteratee(predicate)));\\n    };\\n\\n    LazyWrapper.prototype.slice = function(start, end) {\\n      start = toInteger(start);\\n\\n      var result = this;\\n      if (result.__filtered__ && (start > 0 || end < 0)) {\\n        return new LazyWrapper(result);\\n      }\\n      if (start < 0) {\\n        result = result.takeRight(-start);\\n      } else if (start) {\\n        result = result.drop(start);\\n      }\\n      if (end !== undefined) {\\n        end = toInteger(end);\\n        result = end < 0 ? result.dropRight(-end) : result.take(end - start);\\n      }\\n      return result;\\n    };\\n\\n    LazyWrapper.prototype.takeRightWhile = function(predicate) {\\n      return this.reverse().takeWhile(predicate).reverse();\\n    };\\n\\n    LazyWrapper.prototype.toArray = function() {\\n      return this.take(MAX_ARRAY_LENGTH);\\n    };\\n\\n    // Add `LazyWrapper` methods to `lodash.prototype`.\\n    baseForOwn(LazyWrapper.prototype, function(func, methodName) {\\n      var checkIteratee = /^(?:filter|find|map|reject)|While$/.test(methodName),\\n          isTaker = /^(?:head|last)$/.test(methodName),\\n          lodashFunc = lodash[isTaker ? ('take' + (methodName == 'last' ? 'Right' : '')) : methodName],\\n          retUnwrapped = isTaker || /^find/.test(methodName);\\n\\n      if (!lodashFunc) {\\n        return;\\n      }\\n      lodash.prototype[methodName] = function() {\\n        var value = this.__wrapped__,\\n            args = isTaker ? [1] : arguments,\\n            isLazy = value instanceof LazyWrapper,\\n            iteratee = args[0],\\n            useLazy = isLazy || isArray(value);\\n\\n        var interceptor = function(value) {\\n          var result = lodashFunc.apply(lodash, arrayPush([value], args));\\n          return (isTaker && chainAll) ? result[0] : result;\\n        };\\n\\n        if (useLazy && checkIteratee && typeof iteratee == 'function' && iteratee.length != 1) {\\n          // Avoid lazy use if the iteratee has a \\\"length\\\" value other than `1`.\\n          isLazy = useLazy = false;\\n        }\\n        var chainAll = this.__chain__,\\n            isHybrid = !!this.__actions__.length,\\n            isUnwrapped = retUnwrapped && !chainAll,\\n            onlyLazy = isLazy && !isHybrid;\\n\\n        if (!retUnwrapped && useLazy) {\\n          value = onlyLazy ? value : new LazyWrapper(this);\\n          var result = func.apply(value, args);\\n          result.__actions__.push({ 'func': thru, 'args': [interceptor], 'thisArg': undefined });\\n          return new LodashWrapper(result, chainAll);\\n        }\\n        if (isUnwrapped && onlyLazy) {\\n          return func.apply(this, args);\\n        }\\n        result = this.thru(interceptor);\\n        return isUnwrapped ? (isTaker ? result.value()[0] : result.value()) : result;\\n      };\\n    });\\n\\n    // Add `Array` methods to `lodash.prototype`.\\n    arrayEach(['pop', 'push', 'shift', 'sort', 'splice', 'unshift'], function(methodName) {\\n      var func = arrayProto[methodName],\\n          chainName = /^(?:push|sort|unshift)$/.test(methodName) ? 'tap' : 'thru',\\n          retUnwrapped = /^(?:pop|shift)$/.test(methodName);\\n\\n      lodash.prototype[methodName] = function() {\\n        var args = arguments;\\n        if (retUnwrapped && !this.__chain__) {\\n          var value = this.value();\\n          return func.apply(isArray(value) ? value : [], args);\\n        }\\n        return this[chainName](function(value) {\\n          return func.apply(isArray(value) ? value : [], args);\\n        });\\n      };\\n    });\\n\\n    // Map minified method names to their real names.\\n    baseForOwn(LazyWrapper.prototype, function(func, methodName) {\\n      var lodashFunc = lodash[methodName];\\n      if (lodashFunc) {\\n        var key = lodashFunc.name + '';\\n        if (!hasOwnProperty.call(realNames, key)) {\\n          realNames[key] = [];\\n        }\\n        realNames[key].push({ 'name': methodName, 'func': lodashFunc });\\n      }\\n    });\\n\\n    realNames[createHybrid(undefined, WRAP_BIND_KEY_FLAG).name] = [{\\n      'name': 'wrapper',\\n      'func': undefined\\n    }];\\n\\n    // Add methods to `LazyWrapper`.\\n    LazyWrapper.prototype.clone = lazyClone;\\n    LazyWrapper.prototype.reverse = lazyReverse;\\n    LazyWrapper.prototype.value = lazyValue;\\n\\n    // Add chain sequence methods to the `lodash` wrapper.\\n    lodash.prototype.at = wrapperAt;\\n    lodash.prototype.chain = wrapperChain;\\n    lodash.prototype.commit = wrapperCommit;\\n    lodash.prototype.next = wrapperNext;\\n    lodash.prototype.plant = wrapperPlant;\\n    lodash.prototype.reverse = wrapperReverse;\\n    lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue;\\n\\n    // Add lazy aliases.\\n    lodash.prototype.first = lodash.prototype.head;\\n\\n    if (symIterator) {\\n      lodash.prototype[symIterator] = wrapperToIterator;\\n    }\\n    return lodash;\\n  });\\n\\n  /*--------------------------------------------------------------------------*/\\n\\n  // Export lodash.\\n  var _ = runInContext();\\n\\n  // Some AMD build optimizers, like r.js, check for condition patterns like:\\n  if (typeof define == 'function' && typeof define.amd == 'object' && define.amd) {\\n    // Expose Lodash on the global object to prevent errors when Lodash is\\n    // loaded by a script tag in the presence of an AMD loader.\\n    // See http://requirejs.org/docs/errors.html#mismatch for more details.\\n    // Use `_.noConflict` to remove Lodash from the global object.\\n    root._ = _;\\n\\n    // Define as an anonymous module so, through path mapping, it can be\\n    // referenced as the \\\"underscore\\\" module.\\n    define(function() {\\n      return _;\\n    });\\n  }\\n  // Check for `exports` after `define` in case a build optimizer adds it.\\n  else if (freeModule) {\\n    // Export for Node.js.\\n    (freeModule.exports = _)._ = _;\\n    // Export for CommonJS support.\\n    freeExports._ = _;\\n  }\\n  else {\\n    // Export to the global object.\\n    root._ = _;\\n  }\\n}.call(this));\\n\"\n              },\n              {\n                \"id\": 3,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                \"name\": \"./src/timeout.worker.js\",\n                \"index\": 0,\n                \"index2\": 3,\n                \"size\": 682,\n                \"cacheable\": true,\n                \"built\": true,\n                \"optional\": false,\n                \"prefetched\": false,\n                \"chunks\": [\n                  0\n                ],\n                \"assets\": [\n                ],\n                \"issuer\": null,\n                \"issuerId\": null,\n                \"issuerName\": null,\n                \"issuerPath\": null,\n                \"failed\": false,\n                \"errors\": 0,\n                \"warnings\": 0,\n                \"reasons\": [\n                  {\n                    \"moduleId\": null,\n                    \"moduleIdentifier\": null,\n                    \"module\": null,\n                    \"moduleName\": null,\n                    \"type\": \"single entry\",\n                    \"userRequest\": \"!!D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                    \"loc\": \"timeout.worker\"\n                  }\n                ],\n                \"usedExports\": true,\n                \"providedExports\": null,\n                \"optimizationBailout\": [\n                  \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n                ],\n                \"depth\": 0,\n                \"source\": \"const _ = require(\\\"lodash\\\");\\r\\nvar timers = new Map();\\r\\n\\r\\nfunction fireTimeout(id) {\\r\\n    self.postMessage({ id: id });\\r\\n    timers.delete(id);\\r\\n}\\r\\n\\r\\nself.onmessage = (evt) => {\\r\\n    var data = evt.data;\\r\\n\\r\\n    switch (data.command) {\\r\\n        case \\\"setTimeout\\\":\\r\\n            var time = _.toInteger(data.timeout),\\r\\n                timer = setTimeout(fireTimeout.bind(null, data.id), time);\\r\\n            timers.set(data.id, timer);\\r\\n            break;\\r\\n        case \\\"clearTimeout\\\":\\r\\n            var timer = timers.get(data.id);\\r\\n            if (!_.isNil(timer)) {\\r\\n                clearTimeout(timer);\\r\\n            }\\r\\n            timers.delete(data.id);\\r\\n            break;\\r\\n    }\\r\\n};\"\n              }\n            ],\n            \"filteredModules\": 0,\n            \"origins\": [\n              {\n                \"module\": \"\",\n                \"moduleIdentifier\": \"\",\n                \"moduleName\": \"\",\n                \"loc\": \"timeout.worker\",\n                \"request\": \"!!D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                \"reasons\": [\n                ]\n              }\n            ]\n          }\n        ],\n        \"modules\": [\n          {\n            \"id\": 0,\n            \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\webpack\\\\buildin\\\\module.js\",\n            \"name\": \"(webpack)/buildin/module.js\",\n            \"index\": 3,\n            \"index2\": 1,\n            \"size\": 519,\n            \"cacheable\": true,\n            \"built\": true,\n            \"optional\": false,\n            \"prefetched\": false,\n            \"chunks\": [\n              0\n            ],\n            \"assets\": [\n            ],\n            \"issuer\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n            \"issuerId\": 2,\n            \"issuerName\": \"./node_modules/lodash/lodash.js\",\n            \"issuerPath\": [\n              {\n                \"id\": 3,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                \"name\": \"./src/timeout.worker.js\"\n              },\n              {\n                \"id\": 2,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n                \"name\": \"./node_modules/lodash/lodash.js\"\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"reasons\": [\n              {\n                \"moduleId\": 2,\n                \"moduleIdentifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n                \"module\": \"./node_modules/lodash/lodash.js\",\n                \"moduleName\": \"./node_modules/lodash/lodash.js\",\n                \"type\": \"cjs require\",\n                \"userRequest\": \"module\",\n                \"loc\": \"1:0-41\"\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": null,\n            \"optimizationBailout\": [\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 2,\n            \"source\": \"module.exports = function(module) {\\r\\n\\tif (!module.webpackPolyfill) {\\r\\n\\t\\tmodule.deprecate = function() {};\\r\\n\\t\\tmodule.paths = [];\\r\\n\\t\\t// module.parent = undefined by default\\r\\n\\t\\tif (!module.children) module.children = [];\\r\\n\\t\\tObject.defineProperty(module, \\\"loaded\\\", {\\r\\n\\t\\t\\tenumerable: true,\\r\\n\\t\\t\\tget: function() {\\r\\n\\t\\t\\t\\treturn module.l;\\r\\n\\t\\t\\t}\\r\\n\\t\\t});\\r\\n\\t\\tObject.defineProperty(module, \\\"id\\\", {\\r\\n\\t\\t\\tenumerable: true,\\r\\n\\t\\t\\tget: function() {\\r\\n\\t\\t\\t\\treturn module.i;\\r\\n\\t\\t\\t}\\r\\n\\t\\t});\\r\\n\\t\\tmodule.webpackPolyfill = 1;\\r\\n\\t}\\r\\n\\treturn module;\\r\\n};\\r\\n\"\n          },\n          {\n            \"id\": 1,\n            \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\webpack\\\\buildin\\\\global.js\",\n            \"name\": \"(webpack)/buildin/global.js\",\n            \"index\": 2,\n            \"index2\": 0,\n            \"size\": 509,\n            \"cacheable\": true,\n            \"built\": true,\n            \"optional\": false,\n            \"prefetched\": false,\n            \"chunks\": [\n              0\n            ],\n            \"assets\": [\n            ],\n            \"issuer\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n            \"issuerId\": 2,\n            \"issuerName\": \"./node_modules/lodash/lodash.js\",\n            \"issuerPath\": [\n              {\n                \"id\": 3,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                \"name\": \"./src/timeout.worker.js\"\n              },\n              {\n                \"id\": 2,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n                \"name\": \"./node_modules/lodash/lodash.js\"\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"reasons\": [\n              {\n                \"moduleId\": 2,\n                \"moduleIdentifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n                \"module\": \"./node_modules/lodash/lodash.js\",\n                \"moduleName\": \"./node_modules/lodash/lodash.js\",\n                \"type\": \"cjs require\",\n                \"userRequest\": \"global\",\n                \"loc\": \"1:0-41\"\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": null,\n            \"optimizationBailout\": [\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 2,\n            \"source\": \"var g;\\r\\n\\r\\n// This works in non-strict mode\\r\\ng = (function() {\\r\\n\\treturn this;\\r\\n})();\\r\\n\\r\\ntry {\\r\\n\\t// This works if eval is allowed (see CSP)\\r\\n\\tg = g || Function(\\\"return this\\\")() || (1, eval)(\\\"this\\\");\\r\\n} catch (e) {\\r\\n\\t// This works if the window reference is available\\r\\n\\tif (typeof window === \\\"object\\\") g = window;\\r\\n}\\r\\n\\r\\n// g can still be undefined, but nothing to do about it...\\r\\n// We return undefined, instead of nothing here, so it's\\r\\n// easier to handle this case. if(!global) { ...}\\r\\n\\r\\nmodule.exports = g;\\r\\n\"\n          },\n          {\n            \"id\": 2,\n            \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\node_modules\\\\lodash\\\\lodash.js\",\n            \"name\": \"./node_modules/lodash/lodash.js\",\n            \"index\": 1,\n            \"index2\": 2,\n            \"size\": 542563,\n            \"cacheable\": true,\n            \"built\": true,\n            \"optional\": false,\n            \"prefetched\": false,\n            \"chunks\": [\n              0\n            ],\n            \"assets\": [\n            ],\n            \"issuer\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n            \"issuerId\": 3,\n            \"issuerName\": \"./src/timeout.worker.js\",\n            \"issuerPath\": [\n              {\n                \"id\": 3,\n                \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                \"name\": \"./src/timeout.worker.js\"\n              }\n            ],\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"reasons\": [\n              {\n                \"moduleId\": 3,\n                \"moduleIdentifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                \"module\": \"./src/timeout.worker.js\",\n                \"moduleName\": \"./src/timeout.worker.js\",\n                \"type\": \"cjs require\",\n                \"userRequest\": \"lodash\",\n                \"loc\": \"1:10-27\"\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": null,\n            \"optimizationBailout\": [\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 1,\n            \"source\": \"/**\\n * @license\\n * Lodash <https://lodash.com/>\\n * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>\\n * Released under MIT license <https://lodash.com/license>\\n * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>\\n * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\\n */\\n;(function() {\\n\\n  /** Used as a safe reference for `undefined` in pre-ES5 environments. */\\n  var undefined;\\n\\n  /** Used as the semantic version number. */\\n  var VERSION = '4.17.20';\\n\\n  /** Used as the size to enable large array optimizations. */\\n  var LARGE_ARRAY_SIZE = 200;\\n\\n  /** Error message constants. */\\n  var CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=ponyfill.',\\n      FUNC_ERROR_TEXT = 'Expected a function';\\n\\n  /** Used to stand-in for `undefined` hash values. */\\n  var HASH_UNDEFINED = '__lodash_hash_undefined__';\\n\\n  /** Used as the maximum memoize cache size. */\\n  var MAX_MEMOIZE_SIZE = 500;\\n\\n  /** Used as the internal argument placeholder. */\\n  var PLACEHOLDER = '__lodash_placeholder__';\\n\\n  /** Used to compose bitmasks for cloning. */\\n  var CLONE_DEEP_FLAG = 1,\\n      CLONE_FLAT_FLAG = 2,\\n      CLONE_SYMBOLS_FLAG = 4;\\n\\n  /** Used to compose bitmasks for value comparisons. */\\n  var COMPARE_PARTIAL_FLAG = 1,\\n      COMPARE_UNORDERED_FLAG = 2;\\n\\n  /** Used to compose bitmasks for function metadata. */\\n  var WRAP_BIND_FLAG = 1,\\n      WRAP_BIND_KEY_FLAG = 2,\\n      WRAP_CURRY_BOUND_FLAG = 4,\\n      WRAP_CURRY_FLAG = 8,\\n      WRAP_CURRY_RIGHT_FLAG = 16,\\n      WRAP_PARTIAL_FLAG = 32,\\n      WRAP_PARTIAL_RIGHT_FLAG = 64,\\n      WRAP_ARY_FLAG = 128,\\n      WRAP_REARG_FLAG = 256,\\n      WRAP_FLIP_FLAG = 512;\\n\\n  /** Used as default options for `_.truncate`. */\\n  var DEFAULT_TRUNC_LENGTH = 30,\\n      DEFAULT_TRUNC_OMISSION = '...';\\n\\n  /** Used to detect hot functions by number of calls within a span of milliseconds. */\\n  var HOT_COUNT = 800,\\n      HOT_SPAN = 16;\\n\\n  /** Used to indicate the type of lazy iteratees. */\\n  var LAZY_FILTER_FLAG = 1,\\n      LAZY_MAP_FLAG = 2,\\n      LAZY_WHILE_FLAG = 3;\\n\\n  /** Used as references for various `Number` constants. */\\n  var INFINITY = 1 / 0,\\n      MAX_SAFE_INTEGER = 9007199254740991,\\n      MAX_INTEGER = 1.7976931348623157e+308,\\n      NAN = 0 / 0;\\n\\n  /** Used as references for the maximum length and index of an array. */\\n  var MAX_ARRAY_LENGTH = 4294967295,\\n      MAX_ARRAY_INDEX = MAX_ARRAY_LENGTH - 1,\\n      HALF_MAX_ARRAY_LENGTH = MAX_ARRAY_LENGTH >>> 1;\\n\\n  /** Used to associate wrap methods with their bit flags. */\\n  var wrapFlags = [\\n    ['ary', WRAP_ARY_FLAG],\\n    ['bind', WRAP_BIND_FLAG],\\n    ['bindKey', WRAP_BIND_KEY_FLAG],\\n    ['curry', WRAP_CURRY_FLAG],\\n    ['curryRight', WRAP_CURRY_RIGHT_FLAG],\\n    ['flip', WRAP_FLIP_FLAG],\\n    ['partial', WRAP_PARTIAL_FLAG],\\n    ['partialRight', WRAP_PARTIAL_RIGHT_FLAG],\\n    ['rearg', WRAP_REARG_FLAG]\\n  ];\\n\\n  /** `Object#toString` result references. */\\n  var argsTag = '[object Arguments]',\\n      arrayTag = '[object Array]',\\n      asyncTag = '[object AsyncFunction]',\\n      boolTag = '[object Boolean]',\\n      dateTag = '[object Date]',\\n      domExcTag = '[object DOMException]',\\n      errorTag = '[object Error]',\\n      funcTag = '[object Function]',\\n      genTag = '[object GeneratorFunction]',\\n      mapTag = '[object Map]',\\n      numberTag = '[object Number]',\\n      nullTag = '[object Null]',\\n      objectTag = '[object Object]',\\n      promiseTag = '[object Promise]',\\n      proxyTag = '[object Proxy]',\\n      regexpTag = '[object RegExp]',\\n      setTag = '[object Set]',\\n      stringTag = '[object String]',\\n      symbolTag = '[object Symbol]',\\n      undefinedTag = '[object Undefined]',\\n      weakMapTag = '[object WeakMap]',\\n      weakSetTag = '[object WeakSet]';\\n\\n  var arrayBufferTag = '[object ArrayBuffer]',\\n      dataViewTag = '[object DataView]',\\n      float32Tag = '[object Float32Array]',\\n      float64Tag = '[object Float64Array]',\\n      int8Tag = '[object Int8Array]',\\n      int16Tag = '[object Int16Array]',\\n      int32Tag = '[object Int32Array]',\\n      uint8Tag = '[object Uint8Array]',\\n      uint8ClampedTag = '[object Uint8ClampedArray]',\\n      uint16Tag = '[object Uint16Array]',\\n      uint32Tag = '[object Uint32Array]';\\n\\n  /** Used to match empty string literals in compiled template source. */\\n  var reEmptyStringLeading = /\\\\b__p \\\\+= '';/g,\\n      reEmptyStringMiddle = /\\\\b(__p \\\\+=) '' \\\\+/g,\\n      reEmptyStringTrailing = /(__e\\\\(.*?\\\\)|\\\\b__t\\\\)) \\\\+\\\\n'';/g;\\n\\n  /** Used to match HTML entities and HTML characters. */\\n  var reEscapedHtml = /&(?:amp|lt|gt|quot|#39);/g,\\n      reUnescapedHtml = /[&<>\\\"']/g,\\n      reHasEscapedHtml = RegExp(reEscapedHtml.source),\\n      reHasUnescapedHtml = RegExp(reUnescapedHtml.source);\\n\\n  /** Used to match template delimiters. */\\n  var reEscape = /<%-([\\\\s\\\\S]+?)%>/g,\\n      reEvaluate = /<%([\\\\s\\\\S]+?)%>/g,\\n      reInterpolate = /<%=([\\\\s\\\\S]+?)%>/g;\\n\\n  /** Used to match property names within property paths. */\\n  var reIsDeepProp = /\\\\.|\\\\[(?:[^[\\\\]]*|([\\\"'])(?:(?!\\\\1)[^\\\\\\\\]|\\\\\\\\.)*?\\\\1)\\\\]/,\\n      reIsPlainProp = /^\\\\w*$/,\\n      rePropName = /[^.[\\\\]]+|\\\\[(?:(-?\\\\d+(?:\\\\.\\\\d+)?)|([\\\"'])((?:(?!\\\\2)[^\\\\\\\\]|\\\\\\\\.)*?)\\\\2)\\\\]|(?=(?:\\\\.|\\\\[\\\\])(?:\\\\.|\\\\[\\\\]|$))/g;\\n\\n  /**\\n   * Used to match `RegExp`\\n   * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\\n   */\\n  var reRegExpChar = /[\\\\\\\\^$.*+?()[\\\\]{}|]/g,\\n      reHasRegExpChar = RegExp(reRegExpChar.source);\\n\\n  /** Used to match leading and trailing whitespace. */\\n  var reTrim = /^\\\\s+|\\\\s+$/g,\\n      reTrimStart = /^\\\\s+/,\\n      reTrimEnd = /\\\\s+$/;\\n\\n  /** Used to match wrap detail comments. */\\n  var reWrapComment = /\\\\{(?:\\\\n\\\\/\\\\* \\\\[wrapped with .+\\\\] \\\\*\\\\/)?\\\\n?/,\\n      reWrapDetails = /\\\\{\\\\n\\\\/\\\\* \\\\[wrapped with (.+)\\\\] \\\\*/,\\n      reSplitDetails = /,? & /;\\n\\n  /** Used to match words composed of alphanumeric characters. */\\n  var reAsciiWord = /[^\\\\x00-\\\\x2f\\\\x3a-\\\\x40\\\\x5b-\\\\x60\\\\x7b-\\\\x7f]+/g;\\n\\n  /** Used to match backslashes in property paths. */\\n  var reEscapeChar = /\\\\\\\\(\\\\\\\\)?/g;\\n\\n  /**\\n   * Used to match\\n   * [ES template delimiters](http://ecma-international.org/ecma-262/7.0/#sec-template-literal-lexical-components).\\n   */\\n  var reEsTemplate = /\\\\$\\\\{([^\\\\\\\\}]*(?:\\\\\\\\.[^\\\\\\\\}]*)*)\\\\}/g;\\n\\n  /** Used to match `RegExp` flags from their coerced string values. */\\n  var reFlags = /\\\\w*$/;\\n\\n  /** Used to detect bad signed hexadecimal string values. */\\n  var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\\n\\n  /** Used to detect binary string values. */\\n  var reIsBinary = /^0b[01]+$/i;\\n\\n  /** Used to detect host constructors (Safari). */\\n  var reIsHostCtor = /^\\\\[object .+?Constructor\\\\]$/;\\n\\n  /** Used to detect octal string values. */\\n  var reIsOctal = /^0o[0-7]+$/i;\\n\\n  /** Used to detect unsigned integer values. */\\n  var reIsUint = /^(?:0|[1-9]\\\\d*)$/;\\n\\n  /** Used to match Latin Unicode letters (excluding mathematical operators). */\\n  var reLatin = /[\\\\xc0-\\\\xd6\\\\xd8-\\\\xf6\\\\xf8-\\\\xff\\\\u0100-\\\\u017f]/g;\\n\\n  /** Used to ensure capturing order of template delimiters. */\\n  var reNoMatch = /($^)/;\\n\\n  /** Used to match unescaped characters in compiled string literals. */\\n  var reUnescapedString = /['\\\\n\\\\r\\\\u2028\\\\u2029\\\\\\\\]/g;\\n\\n  /** Used to compose unicode character classes. */\\n  var rsAstralRange = '\\\\\\\\ud800-\\\\\\\\udfff',\\n      rsComboMarksRange = '\\\\\\\\u0300-\\\\\\\\u036f',\\n      reComboHalfMarksRange = '\\\\\\\\ufe20-\\\\\\\\ufe2f',\\n      rsComboSymbolsRange = '\\\\\\\\u20d0-\\\\\\\\u20ff',\\n      rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange,\\n      rsDingbatRange = '\\\\\\\\u2700-\\\\\\\\u27bf',\\n      rsLowerRange = 'a-z\\\\\\\\xdf-\\\\\\\\xf6\\\\\\\\xf8-\\\\\\\\xff',\\n      rsMathOpRange = '\\\\\\\\xac\\\\\\\\xb1\\\\\\\\xd7\\\\\\\\xf7',\\n      rsNonCharRange = '\\\\\\\\x00-\\\\\\\\x2f\\\\\\\\x3a-\\\\\\\\x40\\\\\\\\x5b-\\\\\\\\x60\\\\\\\\x7b-\\\\\\\\xbf',\\n      rsPunctuationRange = '\\\\\\\\u2000-\\\\\\\\u206f',\\n      rsSpaceRange = ' \\\\\\\\t\\\\\\\\x0b\\\\\\\\f\\\\\\\\xa0\\\\\\\\ufeff\\\\\\\\n\\\\\\\\r\\\\\\\\u2028\\\\\\\\u2029\\\\\\\\u1680\\\\\\\\u180e\\\\\\\\u2000\\\\\\\\u2001\\\\\\\\u2002\\\\\\\\u2003\\\\\\\\u2004\\\\\\\\u2005\\\\\\\\u2006\\\\\\\\u2007\\\\\\\\u2008\\\\\\\\u2009\\\\\\\\u200a\\\\\\\\u202f\\\\\\\\u205f\\\\\\\\u3000',\\n      rsUpperRange = 'A-Z\\\\\\\\xc0-\\\\\\\\xd6\\\\\\\\xd8-\\\\\\\\xde',\\n      rsVarRange = '\\\\\\\\ufe0e\\\\\\\\ufe0f',\\n      rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange;\\n\\n  /** Used to compose unicode capture groups. */\\n  var rsApos = \\\"['\\\\u2019]\\\",\\n      rsAstral = '[' + rsAstralRange + ']',\\n      rsBreak = '[' + rsBreakRange + ']',\\n      rsCombo = '[' + rsComboRange + ']',\\n      rsDigits = '\\\\\\\\d+',\\n      rsDingbat = '[' + rsDingbatRange + ']',\\n      rsLower = '[' + rsLowerRange + ']',\\n      rsMisc = '[^' + rsAstralRange + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']',\\n      rsFitz = '\\\\\\\\ud83c[\\\\\\\\udffb-\\\\\\\\udfff]',\\n      rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')',\\n      rsNonAstral = '[^' + rsAstralRange + ']',\\n      rsRegional = '(?:\\\\\\\\ud83c[\\\\\\\\udde6-\\\\\\\\uddff]){2}',\\n      rsSurrPair = '[\\\\\\\\ud800-\\\\\\\\udbff][\\\\\\\\udc00-\\\\\\\\udfff]',\\n      rsUpper = '[' + rsUpperRange + ']',\\n      rsZWJ = '\\\\\\\\u200d';\\n\\n  /** Used to compose unicode regexes. */\\n  var rsMiscLower = '(?:' + rsLower + '|' + rsMisc + ')',\\n      rsMiscUpper = '(?:' + rsUpper + '|' + rsMisc + ')',\\n      rsOptContrLower = '(?:' + rsApos + '(?:d|ll|m|re|s|t|ve))?',\\n      rsOptContrUpper = '(?:' + rsApos + '(?:D|LL|M|RE|S|T|VE))?',\\n      reOptMod = rsModifier + '?',\\n      rsOptVar = '[' + rsVarRange + ']?',\\n      rsOptJoin = '(?:' + rsZWJ + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*',\\n      rsOrdLower = '\\\\\\\\d*(?:1st|2nd|3rd|(?![123])\\\\\\\\dth)(?=\\\\\\\\b|[A-Z_])',\\n      rsOrdUpper = '\\\\\\\\d*(?:1ST|2ND|3RD|(?![123])\\\\\\\\dTH)(?=\\\\\\\\b|[a-z_])',\\n      rsSeq = rsOptVar + reOptMod + rsOptJoin,\\n      rsEmoji = '(?:' + [rsDingbat, rsRegional, rsSurrPair].join('|') + ')' + rsSeq,\\n      rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')';\\n\\n  /** Used to match apostrophes. */\\n  var reApos = RegExp(rsApos, 'g');\\n\\n  /**\\n   * Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks) and\\n   * [combining diacritical marks for symbols](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks_for_Symbols).\\n   */\\n  var reComboMark = RegExp(rsCombo, 'g');\\n\\n  /** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */\\n  var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g');\\n\\n  /** Used to match complex or compound words. */\\n  var reUnicodeWord = RegExp([\\n    rsUpper + '?' + rsLower + '+' + rsOptContrLower + '(?=' + [rsBreak, rsUpper, '$'].join('|') + ')',\\n    rsMiscUpper + '+' + rsOptContrUpper + '(?=' + [rsBreak, rsUpper + rsMiscLower, '$'].join('|') + ')',\\n    rsUpper + '?' + rsMiscLower + '+' + rsOptContrLower,\\n    rsUpper + '+' + rsOptContrUpper,\\n    rsOrdUpper,\\n    rsOrdLower,\\n    rsDigits,\\n    rsEmoji\\n  ].join('|'), 'g');\\n\\n  /** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */\\n  var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange  + rsComboRange + rsVarRange + ']');\\n\\n  /** Used to detect strings that need a more robust regexp to match words. */\\n  var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;\\n\\n  /** Used to assign default `context` object properties. */\\n  var contextProps = [\\n    'Array', 'Buffer', 'DataView', 'Date', 'Error', 'Float32Array', 'Float64Array',\\n    'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Map', 'Math', 'Object',\\n    'Promise', 'RegExp', 'Set', 'String', 'Symbol', 'TypeError', 'Uint8Array',\\n    'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap',\\n    '_', 'clearTimeout', 'isFinite', 'parseInt', 'setTimeout'\\n  ];\\n\\n  /** Used to make template sourceURLs easier to identify. */\\n  var templateCounter = -1;\\n\\n  /** Used to identify `toStringTag` values of typed arrays. */\\n  var typedArrayTags = {};\\n  typedArrayTags[float32Tag] = typedArrayTags[float64Tag] =\\n  typedArrayTags[int8Tag] = typedArrayTags[int16Tag] =\\n  typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =\\n  typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =\\n  typedArrayTags[uint32Tag] = true;\\n  typedArrayTags[argsTag] = typedArrayTags[arrayTag] =\\n  typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =\\n  typedArrayTags[dataViewTag] = typedArrayTags[dateTag] =\\n  typedArrayTags[errorTag] = typedArrayTags[funcTag] =\\n  typedArrayTags[mapTag] = typedArrayTags[numberTag] =\\n  typedArrayTags[objectTag] = typedArrayTags[regexpTag] =\\n  typedArrayTags[setTag] = typedArrayTags[stringTag] =\\n  typedArrayTags[weakMapTag] = false;\\n\\n  /** Used to identify `toStringTag` values supported by `_.clone`. */\\n  var cloneableTags = {};\\n  cloneableTags[argsTag] = cloneableTags[arrayTag] =\\n  cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] =\\n  cloneableTags[boolTag] = cloneableTags[dateTag] =\\n  cloneableTags[float32Tag] = cloneableTags[float64Tag] =\\n  cloneableTags[int8Tag] = cloneableTags[int16Tag] =\\n  cloneableTags[int32Tag] = cloneableTags[mapTag] =\\n  cloneableTags[numberTag] = cloneableTags[objectTag] =\\n  cloneableTags[regexpTag] = cloneableTags[setTag] =\\n  cloneableTags[stringTag] = cloneableTags[symbolTag] =\\n  cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] =\\n  cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;\\n  cloneableTags[errorTag] = cloneableTags[funcTag] =\\n  cloneableTags[weakMapTag] = false;\\n\\n  /** Used to map Latin Unicode letters to basic Latin letters. */\\n  var deburredLetters = {\\n    // Latin-1 Supplement block.\\n    '\\\\xc0': 'A',  '\\\\xc1': 'A', '\\\\xc2': 'A', '\\\\xc3': 'A', '\\\\xc4': 'A', '\\\\xc5': 'A',\\n    '\\\\xe0': 'a',  '\\\\xe1': 'a', '\\\\xe2': 'a', '\\\\xe3': 'a', '\\\\xe4': 'a', '\\\\xe5': 'a',\\n    '\\\\xc7': 'C',  '\\\\xe7': 'c',\\n    '\\\\xd0': 'D',  '\\\\xf0': 'd',\\n    '\\\\xc8': 'E',  '\\\\xc9': 'E', '\\\\xca': 'E', '\\\\xcb': 'E',\\n    '\\\\xe8': 'e',  '\\\\xe9': 'e', '\\\\xea': 'e', '\\\\xeb': 'e',\\n    '\\\\xcc': 'I',  '\\\\xcd': 'I', '\\\\xce': 'I', '\\\\xcf': 'I',\\n    '\\\\xec': 'i',  '\\\\xed': 'i', '\\\\xee': 'i', '\\\\xef': 'i',\\n    '\\\\xd1': 'N',  '\\\\xf1': 'n',\\n    '\\\\xd2': 'O',  '\\\\xd3': 'O', '\\\\xd4': 'O', '\\\\xd5': 'O', '\\\\xd6': 'O', '\\\\xd8': 'O',\\n    '\\\\xf2': 'o',  '\\\\xf3': 'o', '\\\\xf4': 'o', '\\\\xf5': 'o', '\\\\xf6': 'o', '\\\\xf8': 'o',\\n    '\\\\xd9': 'U',  '\\\\xda': 'U', '\\\\xdb': 'U', '\\\\xdc': 'U',\\n    '\\\\xf9': 'u',  '\\\\xfa': 'u', '\\\\xfb': 'u', '\\\\xfc': 'u',\\n    '\\\\xdd': 'Y',  '\\\\xfd': 'y', '\\\\xff': 'y',\\n    '\\\\xc6': 'Ae', '\\\\xe6': 'ae',\\n    '\\\\xde': 'Th', '\\\\xfe': 'th',\\n    '\\\\xdf': 'ss',\\n    // Latin Extended-A block.\\n    '\\\\u0100': 'A',  '\\\\u0102': 'A', '\\\\u0104': 'A',\\n    '\\\\u0101': 'a',  '\\\\u0103': 'a', '\\\\u0105': 'a',\\n    '\\\\u0106': 'C',  '\\\\u0108': 'C', '\\\\u010a': 'C', '\\\\u010c': 'C',\\n    '\\\\u0107': 'c',  '\\\\u0109': 'c', '\\\\u010b': 'c', '\\\\u010d': 'c',\\n    '\\\\u010e': 'D',  '\\\\u0110': 'D', '\\\\u010f': 'd', '\\\\u0111': 'd',\\n    '\\\\u0112': 'E',  '\\\\u0114': 'E', '\\\\u0116': 'E', '\\\\u0118': 'E', '\\\\u011a': 'E',\\n    '\\\\u0113': 'e',  '\\\\u0115': 'e', '\\\\u0117': 'e', '\\\\u0119': 'e', '\\\\u011b': 'e',\\n    '\\\\u011c': 'G',  '\\\\u011e': 'G', '\\\\u0120': 'G', '\\\\u0122': 'G',\\n    '\\\\u011d': 'g',  '\\\\u011f': 'g', '\\\\u0121': 'g', '\\\\u0123': 'g',\\n    '\\\\u0124': 'H',  '\\\\u0126': 'H', '\\\\u0125': 'h', '\\\\u0127': 'h',\\n    '\\\\u0128': 'I',  '\\\\u012a': 'I', '\\\\u012c': 'I', '\\\\u012e': 'I', '\\\\u0130': 'I',\\n    '\\\\u0129': 'i',  '\\\\u012b': 'i', '\\\\u012d': 'i', '\\\\u012f': 'i', '\\\\u0131': 'i',\\n    '\\\\u0134': 'J',  '\\\\u0135': 'j',\\n    '\\\\u0136': 'K',  '\\\\u0137': 'k', '\\\\u0138': 'k',\\n    '\\\\u0139': 'L',  '\\\\u013b': 'L', '\\\\u013d': 'L', '\\\\u013f': 'L', '\\\\u0141': 'L',\\n    '\\\\u013a': 'l',  '\\\\u013c': 'l', '\\\\u013e': 'l', '\\\\u0140': 'l', '\\\\u0142': 'l',\\n    '\\\\u0143': 'N',  '\\\\u0145': 'N', '\\\\u0147': 'N', '\\\\u014a': 'N',\\n    '\\\\u0144': 'n',  '\\\\u0146': 'n', '\\\\u0148': 'n', '\\\\u014b': 'n',\\n    '\\\\u014c': 'O',  '\\\\u014e': 'O', '\\\\u0150': 'O',\\n    '\\\\u014d': 'o',  '\\\\u014f': 'o', '\\\\u0151': 'o',\\n    '\\\\u0154': 'R',  '\\\\u0156': 'R', '\\\\u0158': 'R',\\n    '\\\\u0155': 'r',  '\\\\u0157': 'r', '\\\\u0159': 'r',\\n    '\\\\u015a': 'S',  '\\\\u015c': 'S', '\\\\u015e': 'S', '\\\\u0160': 'S',\\n    '\\\\u015b': 's',  '\\\\u015d': 's', '\\\\u015f': 's', '\\\\u0161': 's',\\n    '\\\\u0162': 'T',  '\\\\u0164': 'T', '\\\\u0166': 'T',\\n    '\\\\u0163': 't',  '\\\\u0165': 't', '\\\\u0167': 't',\\n    '\\\\u0168': 'U',  '\\\\u016a': 'U', '\\\\u016c': 'U', '\\\\u016e': 'U', '\\\\u0170': 'U', '\\\\u0172': 'U',\\n    '\\\\u0169': 'u',  '\\\\u016b': 'u', '\\\\u016d': 'u', '\\\\u016f': 'u', '\\\\u0171': 'u', '\\\\u0173': 'u',\\n    '\\\\u0174': 'W',  '\\\\u0175': 'w',\\n    '\\\\u0176': 'Y',  '\\\\u0177': 'y', '\\\\u0178': 'Y',\\n    '\\\\u0179': 'Z',  '\\\\u017b': 'Z', '\\\\u017d': 'Z',\\n    '\\\\u017a': 'z',  '\\\\u017c': 'z', '\\\\u017e': 'z',\\n    '\\\\u0132': 'IJ', '\\\\u0133': 'ij',\\n    '\\\\u0152': 'Oe', '\\\\u0153': 'oe',\\n    '\\\\u0149': \\\"'n\\\", '\\\\u017f': 's'\\n  };\\n\\n  /** Used to map characters to HTML entities. */\\n  var htmlEscapes = {\\n    '&': '&amp;',\\n    '<': '&lt;',\\n    '>': '&gt;',\\n    '\\\"': '&quot;',\\n    \\\"'\\\": '&#39;'\\n  };\\n\\n  /** Used to map HTML entities to characters. */\\n  var htmlUnescapes = {\\n    '&amp;': '&',\\n    '&lt;': '<',\\n    '&gt;': '>',\\n    '&quot;': '\\\"',\\n    '&#39;': \\\"'\\\"\\n  };\\n\\n  /** Used to escape characters for inclusion in compiled string literals. */\\n  var stringEscapes = {\\n    '\\\\\\\\': '\\\\\\\\',\\n    \\\"'\\\": \\\"'\\\",\\n    '\\\\n': 'n',\\n    '\\\\r': 'r',\\n    '\\\\u2028': 'u2028',\\n    '\\\\u2029': 'u2029'\\n  };\\n\\n  /** Built-in method references without a dependency on `root`. */\\n  var freeParseFloat = parseFloat,\\n      freeParseInt = parseInt;\\n\\n  /** Detect free variable `global` from Node.js. */\\n  var freeGlobal = typeof global == 'object' && global && global.Object === Object && global;\\n\\n  /** Detect free variable `self`. */\\n  var freeSelf = typeof self == 'object' && self && self.Object === Object && self;\\n\\n  /** Used as a reference to the global object. */\\n  var root = freeGlobal || freeSelf || Function('return this')();\\n\\n  /** Detect free variable `exports`. */\\n  var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;\\n\\n  /** Detect free variable `module`. */\\n  var freeModule = freeExports && typeof module == 'object' && module && !module.nodeType && module;\\n\\n  /** Detect the popular CommonJS extension `module.exports`. */\\n  var moduleExports = freeModule && freeModule.exports === freeExports;\\n\\n  /** Detect free variable `process` from Node.js. */\\n  var freeProcess = moduleExports && freeGlobal.process;\\n\\n  /** Used to access faster Node.js helpers. */\\n  var nodeUtil = (function() {\\n    try {\\n      // Use `util.types` for Node.js 10+.\\n      var types = freeModule && freeModule.require && freeModule.require('util').types;\\n\\n      if (types) {\\n        return types;\\n      }\\n\\n      // Legacy `process.binding('util')` for Node.js < 10.\\n      return freeProcess && freeProcess.binding && freeProcess.binding('util');\\n    } catch (e) {}\\n  }());\\n\\n  /* Node.js helper references. */\\n  var nodeIsArrayBuffer = nodeUtil && nodeUtil.isArrayBuffer,\\n      nodeIsDate = nodeUtil && nodeUtil.isDate,\\n      nodeIsMap = nodeUtil && nodeUtil.isMap,\\n      nodeIsRegExp = nodeUtil && nodeUtil.isRegExp,\\n      nodeIsSet = nodeUtil && nodeUtil.isSet,\\n      nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;\\n\\n  /*--------------------------------------------------------------------------*/\\n\\n  /**\\n   * A faster alternative to `Function#apply`, this function invokes `func`\\n   * with the `this` binding of `thisArg` and the arguments of `args`.\\n   *\\n   * @private\\n   * @param {Function} func The function to invoke.\\n   * @param {*} thisArg The `this` binding of `func`.\\n   * @param {Array} args The arguments to invoke `func` with.\\n   * @returns {*} Returns the result of `func`.\\n   */\\n  function apply(func, thisArg, args) {\\n    switch (args.length) {\\n      case 0: return func.call(thisArg);\\n      case 1: return func.call(thisArg, args[0]);\\n      case 2: return func.call(thisArg, args[0], args[1]);\\n      case 3: return func.call(thisArg, args[0], args[1], args[2]);\\n    }\\n    return func.apply(thisArg, args);\\n  }\\n\\n  /**\\n   * A specialized version of `baseAggregator` for arrays.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} setter The function to set `accumulator` values.\\n   * @param {Function} iteratee The iteratee to transform keys.\\n   * @param {Object} accumulator The initial aggregated object.\\n   * @returns {Function} Returns `accumulator`.\\n   */\\n  function arrayAggregator(array, setter, iteratee, accumulator) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length;\\n\\n    while (++index < length) {\\n      var value = array[index];\\n      setter(accumulator, value, iteratee(value), array);\\n    }\\n    return accumulator;\\n  }\\n\\n  /**\\n   * A specialized version of `_.forEach` for arrays without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @returns {Array} Returns `array`.\\n   */\\n  function arrayEach(array, iteratee) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length;\\n\\n    while (++index < length) {\\n      if (iteratee(array[index], index, array) === false) {\\n        break;\\n      }\\n    }\\n    return array;\\n  }\\n\\n  /**\\n   * A specialized version of `_.forEachRight` for arrays without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @returns {Array} Returns `array`.\\n   */\\n  function arrayEachRight(array, iteratee) {\\n    var length = array == null ? 0 : array.length;\\n\\n    while (length--) {\\n      if (iteratee(array[length], length, array) === false) {\\n        break;\\n      }\\n    }\\n    return array;\\n  }\\n\\n  /**\\n   * A specialized version of `_.every` for arrays without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} predicate The function invoked per iteration.\\n   * @returns {boolean} Returns `true` if all elements pass the predicate check,\\n   *  else `false`.\\n   */\\n  function arrayEvery(array, predicate) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length;\\n\\n    while (++index < length) {\\n      if (!predicate(array[index], index, array)) {\\n        return false;\\n      }\\n    }\\n    return true;\\n  }\\n\\n  /**\\n   * A specialized version of `_.filter` for arrays without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} predicate The function invoked per iteration.\\n   * @returns {Array} Returns the new filtered array.\\n   */\\n  function arrayFilter(array, predicate) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length,\\n        resIndex = 0,\\n        result = [];\\n\\n    while (++index < length) {\\n      var value = array[index];\\n      if (predicate(value, index, array)) {\\n        result[resIndex++] = value;\\n      }\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * A specialized version of `_.includes` for arrays without support for\\n   * specifying an index to search from.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to inspect.\\n   * @param {*} target The value to search for.\\n   * @returns {boolean} Returns `true` if `target` is found, else `false`.\\n   */\\n  function arrayIncludes(array, value) {\\n    var length = array == null ? 0 : array.length;\\n    return !!length && baseIndexOf(array, value, 0) > -1;\\n  }\\n\\n  /**\\n   * This function is like `arrayIncludes` except that it accepts a comparator.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to inspect.\\n   * @param {*} target The value to search for.\\n   * @param {Function} comparator The comparator invoked per element.\\n   * @returns {boolean} Returns `true` if `target` is found, else `false`.\\n   */\\n  function arrayIncludesWith(array, value, comparator) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length;\\n\\n    while (++index < length) {\\n      if (comparator(value, array[index])) {\\n        return true;\\n      }\\n    }\\n    return false;\\n  }\\n\\n  /**\\n   * A specialized version of `_.map` for arrays without support for iteratee\\n   * shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @returns {Array} Returns the new mapped array.\\n   */\\n  function arrayMap(array, iteratee) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length,\\n        result = Array(length);\\n\\n    while (++index < length) {\\n      result[index] = iteratee(array[index], index, array);\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * Appends the elements of `values` to `array`.\\n   *\\n   * @private\\n   * @param {Array} array The array to modify.\\n   * @param {Array} values The values to append.\\n   * @returns {Array} Returns `array`.\\n   */\\n  function arrayPush(array, values) {\\n    var index = -1,\\n        length = values.length,\\n        offset = array.length;\\n\\n    while (++index < length) {\\n      array[offset + index] = values[index];\\n    }\\n    return array;\\n  }\\n\\n  /**\\n   * A specialized version of `_.reduce` for arrays without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @param {*} [accumulator] The initial value.\\n   * @param {boolean} [initAccum] Specify using the first element of `array` as\\n   *  the initial value.\\n   * @returns {*} Returns the accumulated value.\\n   */\\n  function arrayReduce(array, iteratee, accumulator, initAccum) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length;\\n\\n    if (initAccum && length) {\\n      accumulator = array[++index];\\n    }\\n    while (++index < length) {\\n      accumulator = iteratee(accumulator, array[index], index, array);\\n    }\\n    return accumulator;\\n  }\\n\\n  /**\\n   * A specialized version of `_.reduceRight` for arrays without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @param {*} [accumulator] The initial value.\\n   * @param {boolean} [initAccum] Specify using the last element of `array` as\\n   *  the initial value.\\n   * @returns {*} Returns the accumulated value.\\n   */\\n  function arrayReduceRight(array, iteratee, accumulator, initAccum) {\\n    var length = array == null ? 0 : array.length;\\n    if (initAccum && length) {\\n      accumulator = array[--length];\\n    }\\n    while (length--) {\\n      accumulator = iteratee(accumulator, array[length], length, array);\\n    }\\n    return accumulator;\\n  }\\n\\n  /**\\n   * A specialized version of `_.some` for arrays without support for iteratee\\n   * shorthands.\\n   *\\n   * @private\\n   * @param {Array} [array] The array to iterate over.\\n   * @param {Function} predicate The function invoked per iteration.\\n   * @returns {boolean} Returns `true` if any element passes the predicate check,\\n   *  else `false`.\\n   */\\n  function arraySome(array, predicate) {\\n    var index = -1,\\n        length = array == null ? 0 : array.length;\\n\\n    while (++index < length) {\\n      if (predicate(array[index], index, array)) {\\n        return true;\\n      }\\n    }\\n    return false;\\n  }\\n\\n  /**\\n   * Gets the size of an ASCII `string`.\\n   *\\n   * @private\\n   * @param {string} string The string inspect.\\n   * @returns {number} Returns the string size.\\n   */\\n  var asciiSize = baseProperty('length');\\n\\n  /**\\n   * Converts an ASCII `string` to an array.\\n   *\\n   * @private\\n   * @param {string} string The string to convert.\\n   * @returns {Array} Returns the converted array.\\n   */\\n  function asciiToArray(string) {\\n    return string.split('');\\n  }\\n\\n  /**\\n   * Splits an ASCII `string` into an array of its words.\\n   *\\n   * @private\\n   * @param {string} The string to inspect.\\n   * @returns {Array} Returns the words of `string`.\\n   */\\n  function asciiWords(string) {\\n    return string.match(reAsciiWord) || [];\\n  }\\n\\n  /**\\n   * The base implementation of methods like `_.findKey` and `_.findLastKey`,\\n   * without support for iteratee shorthands, which iterates over `collection`\\n   * using `eachFunc`.\\n   *\\n   * @private\\n   * @param {Array|Object} collection The collection to inspect.\\n   * @param {Function} predicate The function invoked per iteration.\\n   * @param {Function} eachFunc The function to iterate over `collection`.\\n   * @returns {*} Returns the found element or its key, else `undefined`.\\n   */\\n  function baseFindKey(collection, predicate, eachFunc) {\\n    var result;\\n    eachFunc(collection, function(value, key, collection) {\\n      if (predicate(value, key, collection)) {\\n        result = key;\\n        return false;\\n      }\\n    });\\n    return result;\\n  }\\n\\n  /**\\n   * The base implementation of `_.findIndex` and `_.findLastIndex` without\\n   * support for iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} array The array to inspect.\\n   * @param {Function} predicate The function invoked per iteration.\\n   * @param {number} fromIndex The index to search from.\\n   * @param {boolean} [fromRight] Specify iterating from right to left.\\n   * @returns {number} Returns the index of the matched value, else `-1`.\\n   */\\n  function baseFindIndex(array, predicate, fromIndex, fromRight) {\\n    var length = array.length,\\n        index = fromIndex + (fromRight ? 1 : -1);\\n\\n    while ((fromRight ? index-- : ++index < length)) {\\n      if (predicate(array[index], index, array)) {\\n        return index;\\n      }\\n    }\\n    return -1;\\n  }\\n\\n  /**\\n   * The base implementation of `_.indexOf` without `fromIndex` bounds checks.\\n   *\\n   * @private\\n   * @param {Array} array The array to inspect.\\n   * @param {*} value The value to search for.\\n   * @param {number} fromIndex The index to search from.\\n   * @returns {number} Returns the index of the matched value, else `-1`.\\n   */\\n  function baseIndexOf(array, value, fromIndex) {\\n    return value === value\\n      ? strictIndexOf(array, value, fromIndex)\\n      : baseFindIndex(array, baseIsNaN, fromIndex);\\n  }\\n\\n  /**\\n   * This function is like `baseIndexOf` except that it accepts a comparator.\\n   *\\n   * @private\\n   * @param {Array} array The array to inspect.\\n   * @param {*} value The value to search for.\\n   * @param {number} fromIndex The index to search from.\\n   * @param {Function} comparator The comparator invoked per element.\\n   * @returns {number} Returns the index of the matched value, else `-1`.\\n   */\\n  function baseIndexOfWith(array, value, fromIndex, comparator) {\\n    var index = fromIndex - 1,\\n        length = array.length;\\n\\n    while (++index < length) {\\n      if (comparator(array[index], value)) {\\n        return index;\\n      }\\n    }\\n    return -1;\\n  }\\n\\n  /**\\n   * The base implementation of `_.isNaN` without support for number objects.\\n   *\\n   * @private\\n   * @param {*} value The value to check.\\n   * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.\\n   */\\n  function baseIsNaN(value) {\\n    return value !== value;\\n  }\\n\\n  /**\\n   * The base implementation of `_.mean` and `_.meanBy` without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} array The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @returns {number} Returns the mean.\\n   */\\n  function baseMean(array, iteratee) {\\n    var length = array == null ? 0 : array.length;\\n    return length ? (baseSum(array, iteratee) / length) : NAN;\\n  }\\n\\n  /**\\n   * The base implementation of `_.property` without support for deep paths.\\n   *\\n   * @private\\n   * @param {string} key The key of the property to get.\\n   * @returns {Function} Returns the new accessor function.\\n   */\\n  function baseProperty(key) {\\n    return function(object) {\\n      return object == null ? undefined : object[key];\\n    };\\n  }\\n\\n  /**\\n   * The base implementation of `_.propertyOf` without support for deep paths.\\n   *\\n   * @private\\n   * @param {Object} object The object to query.\\n   * @returns {Function} Returns the new accessor function.\\n   */\\n  function basePropertyOf(object) {\\n    return function(key) {\\n      return object == null ? undefined : object[key];\\n    };\\n  }\\n\\n  /**\\n   * The base implementation of `_.reduce` and `_.reduceRight`, without support\\n   * for iteratee shorthands, which iterates over `collection` using `eachFunc`.\\n   *\\n   * @private\\n   * @param {Array|Object} collection The collection to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @param {*} accumulator The initial value.\\n   * @param {boolean} initAccum Specify using the first or last element of\\n   *  `collection` as the initial value.\\n   * @param {Function} eachFunc The function to iterate over `collection`.\\n   * @returns {*} Returns the accumulated value.\\n   */\\n  function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) {\\n    eachFunc(collection, function(value, index, collection) {\\n      accumulator = initAccum\\n        ? (initAccum = false, value)\\n        : iteratee(accumulator, value, index, collection);\\n    });\\n    return accumulator;\\n  }\\n\\n  /**\\n   * The base implementation of `_.sortBy` which uses `comparer` to define the\\n   * sort order of `array` and replaces criteria objects with their corresponding\\n   * values.\\n   *\\n   * @private\\n   * @param {Array} array The array to sort.\\n   * @param {Function} comparer The function to define sort order.\\n   * @returns {Array} Returns `array`.\\n   */\\n  function baseSortBy(array, comparer) {\\n    var length = array.length;\\n\\n    array.sort(comparer);\\n    while (length--) {\\n      array[length] = array[length].value;\\n    }\\n    return array;\\n  }\\n\\n  /**\\n   * The base implementation of `_.sum` and `_.sumBy` without support for\\n   * iteratee shorthands.\\n   *\\n   * @private\\n   * @param {Array} array The array to iterate over.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @returns {number} Returns the sum.\\n   */\\n  function baseSum(array, iteratee) {\\n    var result,\\n        index = -1,\\n        length = array.length;\\n\\n    while (++index < length) {\\n      var current = iteratee(array[index]);\\n      if (current !== undefined) {\\n        result = result === undefined ? current : (result + current);\\n      }\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * The base implementation of `_.times` without support for iteratee shorthands\\n   * or max array length checks.\\n   *\\n   * @private\\n   * @param {number} n The number of times to invoke `iteratee`.\\n   * @param {Function} iteratee The function invoked per iteration.\\n   * @returns {Array} Returns the array of results.\\n   */\\n  function baseTimes(n, iteratee) {\\n    var index = -1,\\n        result = Array(n);\\n\\n    while (++index < n) {\\n      result[index] = iteratee(index);\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * The base implementation of `_.toPairs` and `_.toPairsIn` which creates an array\\n   * of key-value pairs for `object` corresponding to the property names of `props`.\\n   *\\n   * @private\\n   * @param {Object} object The object to query.\\n   * @param {Array} props The property names to get values for.\\n   * @returns {Object} Returns the key-value pairs.\\n   */\\n  function baseToPairs(object, props) {\\n    return arrayMap(props, function(key) {\\n      return [key, object[key]];\\n    });\\n  }\\n\\n  /**\\n   * The base implementation of `_.unary` without support for storing metadata.\\n   *\\n   * @private\\n   * @param {Function} func The function to cap arguments for.\\n   * @returns {Function} Returns the new capped function.\\n   */\\n  function baseUnary(func) {\\n    return function(value) {\\n      return func(value);\\n    };\\n  }\\n\\n  /**\\n   * The base implementation of `_.values` and `_.valuesIn` which creates an\\n   * array of `object` property values corresponding to the property names\\n   * of `props`.\\n   *\\n   * @private\\n   * @param {Object} object The object to query.\\n   * @param {Array} props The property names to get values for.\\n   * @returns {Object} Returns the array of property values.\\n   */\\n  function baseValues(object, props) {\\n    return arrayMap(props, function(key) {\\n      return object[key];\\n    });\\n  }\\n\\n  /**\\n   * Checks if a `cache` value for `key` exists.\\n   *\\n   * @private\\n   * @param {Object} cache The cache to query.\\n   * @param {string} key The key of the entry to check.\\n   * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\\n   */\\n  function cacheHas(cache, key) {\\n    return cache.has(key);\\n  }\\n\\n  /**\\n   * Used by `_.trim` and `_.trimStart` to get the index of the first string symbol\\n   * that is not found in the character symbols.\\n   *\\n   * @private\\n   * @param {Array} strSymbols The string symbols to inspect.\\n   * @param {Array} chrSymbols The character symbols to find.\\n   * @returns {number} Returns the index of the first unmatched string symbol.\\n   */\\n  function charsStartIndex(strSymbols, chrSymbols) {\\n    var index = -1,\\n        length = strSymbols.length;\\n\\n    while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}\\n    return index;\\n  }\\n\\n  /**\\n   * Used by `_.trim` and `_.trimEnd` to get the index of the last string symbol\\n   * that is not found in the character symbols.\\n   *\\n   * @private\\n   * @param {Array} strSymbols The string symbols to inspect.\\n   * @param {Array} chrSymbols The character symbols to find.\\n   * @returns {number} Returns the index of the last unmatched string symbol.\\n   */\\n  function charsEndIndex(strSymbols, chrSymbols) {\\n    var index = strSymbols.length;\\n\\n    while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}\\n    return index;\\n  }\\n\\n  /**\\n   * Gets the number of `placeholder` occurrences in `array`.\\n   *\\n   * @private\\n   * @param {Array} array The array to inspect.\\n   * @param {*} placeholder The placeholder to search for.\\n   * @returns {number} Returns the placeholder count.\\n   */\\n  function countHolders(array, placeholder) {\\n    var length = array.length,\\n        result = 0;\\n\\n    while (length--) {\\n      if (array[length] === placeholder) {\\n        ++result;\\n      }\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * Used by `_.deburr` to convert Latin-1 Supplement and Latin Extended-A\\n   * letters to basic Latin letters.\\n   *\\n   * @private\\n   * @param {string} letter The matched letter to deburr.\\n   * @returns {string} Returns the deburred letter.\\n   */\\n  var deburrLetter = basePropertyOf(deburredLetters);\\n\\n  /**\\n   * Used by `_.escape` to convert characters to HTML entities.\\n   *\\n   * @private\\n   * @param {string} chr The matched character to escape.\\n   * @returns {string} Returns the escaped character.\\n   */\\n  var escapeHtmlChar = basePropertyOf(htmlEscapes);\\n\\n  /**\\n   * Used by `_.template` to escape characters for inclusion in compiled string literals.\\n   *\\n   * @private\\n   * @param {string} chr The matched character to escape.\\n   * @returns {string} Returns the escaped character.\\n   */\\n  function escapeStringChar(chr) {\\n    return '\\\\\\\\' + stringEscapes[chr];\\n  }\\n\\n  /**\\n   * Gets the value at `key` of `object`.\\n   *\\n   * @private\\n   * @param {Object} [object] The object to query.\\n   * @param {string} key The key of the property to get.\\n   * @returns {*} Returns the property value.\\n   */\\n  function getValue(object, key) {\\n    return object == null ? undefined : object[key];\\n  }\\n\\n  /**\\n   * Checks if `string` contains Unicode symbols.\\n   *\\n   * @private\\n   * @param {string} string The string to inspect.\\n   * @returns {boolean} Returns `true` if a symbol is found, else `false`.\\n   */\\n  function hasUnicode(string) {\\n    return reHasUnicode.test(string);\\n  }\\n\\n  /**\\n   * Checks if `string` contains a word composed of Unicode symbols.\\n   *\\n   * @private\\n   * @param {string} string The string to inspect.\\n   * @returns {boolean} Returns `true` if a word is found, else `false`.\\n   */\\n  function hasUnicodeWord(string) {\\n    return reHasUnicodeWord.test(string);\\n  }\\n\\n  /**\\n   * Converts `iterator` to an array.\\n   *\\n   * @private\\n   * @param {Object} iterator The iterator to convert.\\n   * @returns {Array} Returns the converted array.\\n   */\\n  function iteratorToArray(iterator) {\\n    var data,\\n        result = [];\\n\\n    while (!(data = iterator.next()).done) {\\n      result.push(data.value);\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * Converts `map` to its key-value pairs.\\n   *\\n   * @private\\n   * @param {Object} map The map to convert.\\n   * @returns {Array} Returns the key-value pairs.\\n   */\\n  function mapToArray(map) {\\n    var index = -1,\\n        result = Array(map.size);\\n\\n    map.forEach(function(value, key) {\\n      result[++index] = [key, value];\\n    });\\n    return result;\\n  }\\n\\n  /**\\n   * Creates a unary function that invokes `func` with its argument transformed.\\n   *\\n   * @private\\n   * @param {Function} func The function to wrap.\\n   * @param {Function} transform The argument transform.\\n   * @returns {Function} Returns the new function.\\n   */\\n  function overArg(func, transform) {\\n    return function(arg) {\\n      return func(transform(arg));\\n    };\\n  }\\n\\n  /**\\n   * Replaces all `placeholder` elements in `array` with an internal placeholder\\n   * and returns an array of their indexes.\\n   *\\n   * @private\\n   * @param {Array} array The array to modify.\\n   * @param {*} placeholder The placeholder to replace.\\n   * @returns {Array} Returns the new array of placeholder indexes.\\n   */\\n  function replaceHolders(array, placeholder) {\\n    var index = -1,\\n        length = array.length,\\n        resIndex = 0,\\n        result = [];\\n\\n    while (++index < length) {\\n      var value = array[index];\\n      if (value === placeholder || value === PLACEHOLDER) {\\n        array[index] = PLACEHOLDER;\\n        result[resIndex++] = index;\\n      }\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * Converts `set` to an array of its values.\\n   *\\n   * @private\\n   * @param {Object} set The set to convert.\\n   * @returns {Array} Returns the values.\\n   */\\n  function setToArray(set) {\\n    var index = -1,\\n        result = Array(set.size);\\n\\n    set.forEach(function(value) {\\n      result[++index] = value;\\n    });\\n    return result;\\n  }\\n\\n  /**\\n   * Converts `set` to its value-value pairs.\\n   *\\n   * @private\\n   * @param {Object} set The set to convert.\\n   * @returns {Array} Returns the value-value pairs.\\n   */\\n  function setToPairs(set) {\\n    var index = -1,\\n        result = Array(set.size);\\n\\n    set.forEach(function(value) {\\n      result[++index] = [value, value];\\n    });\\n    return result;\\n  }\\n\\n  /**\\n   * A specialized version of `_.indexOf` which performs strict equality\\n   * comparisons of values, i.e. `===`.\\n   *\\n   * @private\\n   * @param {Array} array The array to inspect.\\n   * @param {*} value The value to search for.\\n   * @param {number} fromIndex The index to search from.\\n   * @returns {number} Returns the index of the matched value, else `-1`.\\n   */\\n  function strictIndexOf(array, value, fromIndex) {\\n    var index = fromIndex - 1,\\n        length = array.length;\\n\\n    while (++index < length) {\\n      if (array[index] === value) {\\n        return index;\\n      }\\n    }\\n    return -1;\\n  }\\n\\n  /**\\n   * A specialized version of `_.lastIndexOf` which performs strict equality\\n   * comparisons of values, i.e. `===`.\\n   *\\n   * @private\\n   * @param {Array} array The array to inspect.\\n   * @param {*} value The value to search for.\\n   * @param {number} fromIndex The index to search from.\\n   * @returns {number} Returns the index of the matched value, else `-1`.\\n   */\\n  function strictLastIndexOf(array, value, fromIndex) {\\n    var index = fromIndex + 1;\\n    while (index--) {\\n      if (array[index] === value) {\\n        return index;\\n      }\\n    }\\n    return index;\\n  }\\n\\n  /**\\n   * Gets the number of symbols in `string`.\\n   *\\n   * @private\\n   * @param {string} string The string to inspect.\\n   * @returns {number} Returns the string size.\\n   */\\n  function stringSize(string) {\\n    return hasUnicode(string)\\n      ? unicodeSize(string)\\n      : asciiSize(string);\\n  }\\n\\n  /**\\n   * Converts `string` to an array.\\n   *\\n   * @private\\n   * @param {string} string The string to convert.\\n   * @returns {Array} Returns the converted array.\\n   */\\n  function stringToArray(string) {\\n    return hasUnicode(string)\\n      ? unicodeToArray(string)\\n      : asciiToArray(string);\\n  }\\n\\n  /**\\n   * Used by `_.unescape` to convert HTML entities to characters.\\n   *\\n   * @private\\n   * @param {string} chr The matched character to unescape.\\n   * @returns {string} Returns the unescaped character.\\n   */\\n  var unescapeHtmlChar = basePropertyOf(htmlUnescapes);\\n\\n  /**\\n   * Gets the size of a Unicode `string`.\\n   *\\n   * @private\\n   * @param {string} string The string inspect.\\n   * @returns {number} Returns the string size.\\n   */\\n  function unicodeSize(string) {\\n    var result = reUnicode.lastIndex = 0;\\n    while (reUnicode.test(string)) {\\n      ++result;\\n    }\\n    return result;\\n  }\\n\\n  /**\\n   * Converts a Unicode `string` to an array.\\n   *\\n   * @private\\n   * @param {string} string The string to convert.\\n   * @returns {Array} Returns the converted array.\\n   */\\n  function unicodeToArray(string) {\\n    return string.match(reUnicode) || [];\\n  }\\n\\n  /**\\n   * Splits a Unicode `string` into an array of its words.\\n   *\\n   * @private\\n   * @param {string} The string to inspect.\\n   * @returns {Array} Returns the words of `string`.\\n   */\\n  function unicodeWords(string) {\\n    return string.match(reUnicodeWord) || [];\\n  }\\n\\n  /*--------------------------------------------------------------------------*/\\n\\n  /**\\n   * Create a new pristine `lodash` function using the `context` object.\\n   *\\n   * @static\\n   * @memberOf _\\n   * @since 1.1.0\\n   * @category Util\\n   * @param {Object} [context=root] The context object.\\n   * @returns {Function} Returns a new `lodash` function.\\n   * @example\\n   *\\n   * _.mixin({ 'foo': _.constant('foo') });\\n   *\\n   * var lodash = _.runInContext();\\n   * lodash.mixin({ 'bar': lodash.constant('bar') });\\n   *\\n   * _.isFunction(_.foo);\\n   * // => true\\n   * _.isFunction(_.bar);\\n   * // => false\\n   *\\n   * lodash.isFunction(lodash.foo);\\n   * // => false\\n   * lodash.isFunction(lodash.bar);\\n   * // => true\\n   *\\n   * // Create a suped-up `defer` in Node.js.\\n   * var defer = _.runInContext({ 'setTimeout': setImmediate }).defer;\\n   */\\n  var runInContext = (function runInContext(context) {\\n    context = context == null ? root : _.defaults(root.Object(), context, _.pick(root, contextProps));\\n\\n    /** Built-in constructor references. */\\n    var Array = context.Array,\\n        Date = context.Date,\\n        Error = context.Error,\\n        Function = context.Function,\\n        Math = context.Math,\\n        Object = context.Object,\\n        RegExp = context.RegExp,\\n        String = context.String,\\n        TypeError = context.TypeError;\\n\\n    /** Used for built-in method references. */\\n    var arrayProto = Array.prototype,\\n        funcProto = Function.prototype,\\n        objectProto = Object.prototype;\\n\\n    /** Used to detect overreaching core-js shims. */\\n    var coreJsData = context['__core-js_shared__'];\\n\\n    /** Used to resolve the decompiled source of functions. */\\n    var funcToString = funcProto.toString;\\n\\n    /** Used to check objects for own properties. */\\n    var hasOwnProperty = objectProto.hasOwnProperty;\\n\\n    /** Used to generate unique IDs. */\\n    var idCounter = 0;\\n\\n    /** Used to detect methods masquerading as native. */\\n    var maskSrcKey = (function() {\\n      var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\\n      return uid ? ('Symbol(src)_1.' + uid) : '';\\n    }());\\n\\n    /**\\n     * Used to resolve the\\n     * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\\n     * of values.\\n     */\\n    var nativeObjectToString = objectProto.toString;\\n\\n    /** Used to infer the `Object` constructor. */\\n    var objectCtorString = funcToString.call(Object);\\n\\n    /** Used to restore the original `_` reference in `_.noConflict`. */\\n    var oldDash = root._;\\n\\n    /** Used to detect if a method is native. */\\n    var reIsNative = RegExp('^' +\\n      funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\\\\\$&')\\n      .replace(/hasOwnProperty|(function).*?(?=\\\\\\\\\\\\()| for .+?(?=\\\\\\\\\\\\])/g, '$1.*?') + '$'\\n    );\\n\\n    /** Built-in value references. */\\n    var Buffer = moduleExports ? context.Buffer : undefined,\\n        Symbol = context.Symbol,\\n        Uint8Array = context.Uint8Array,\\n        allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined,\\n        getPrototype = overArg(Object.getPrototypeOf, Object),\\n        objectCreate = Object.create,\\n        propertyIsEnumerable = objectProto.propertyIsEnumerable,\\n        splice = arrayProto.splice,\\n        spreadableSymbol = Symbol ? Symbol.isConcatSpreadable : undefined,\\n        symIterator = Symbol ? Symbol.iterator : undefined,\\n        symToStringTag = Symbol ? Symbol.toStringTag : undefined;\\n\\n    var defineProperty = (function() {\\n      try {\\n        var func = getNative(Object, 'defineProperty');\\n        func({}, '', {});\\n        return func;\\n      } catch (e) {}\\n    }());\\n\\n    /** Mocked built-ins. */\\n    var ctxClearTimeout = context.clearTimeout !== root.clearTimeout && context.clearTimeout,\\n        ctxNow = Date && Date.now !== root.Date.now && Date.now,\\n        ctxSetTimeout = context.setTimeout !== root.setTimeout && context.setTimeout;\\n\\n    /* Built-in method references for those with the same name as other `lodash` methods. */\\n    var nativeCeil = Math.ceil,\\n        nativeFloor = Math.floor,\\n        nativeGetSymbols = Object.getOwnPropertySymbols,\\n        nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined,\\n        nativeIsFinite = context.isFinite,\\n        nativeJoin = arrayProto.join,\\n        nativeKeys = overArg(Object.keys, Object),\\n        nativeMax = Math.max,\\n        nativeMin = Math.min,\\n        nativeNow = Date.now,\\n        nativeParseInt = context.parseInt,\\n        nativeRandom = Math.random,\\n        nativeReverse = arrayProto.reverse;\\n\\n    /* Built-in method references that are verified to be native. */\\n    var DataView = getNative(context, 'DataView'),\\n        Map = getNative(context, 'Map'),\\n        Promise = getNative(context, 'Promise'),\\n        Set = getNative(context, 'Set'),\\n        WeakMap = getNative(context, 'WeakMap'),\\n        nativeCreate = getNative(Object, 'create');\\n\\n    /** Used to store function metadata. */\\n    var metaMap = WeakMap && new WeakMap;\\n\\n    /** Used to lookup unminified function names. */\\n    var realNames = {};\\n\\n    /** Used to detect maps, sets, and weakmaps. */\\n    var dataViewCtorString = toSource(DataView),\\n        mapCtorString = toSource(Map),\\n        promiseCtorString = toSource(Promise),\\n        setCtorString = toSource(Set),\\n        weakMapCtorString = toSource(WeakMap);\\n\\n    /** Used to convert symbols to primitives and strings. */\\n    var symbolProto = Symbol ? Symbol.prototype : undefined,\\n        symbolValueOf = symbolProto ? symbolProto.valueOf : undefined,\\n        symbolToString = symbolProto ? symbolProto.toString : undefined;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates a `lodash` object which wraps `value` to enable implicit method\\n     * chain sequences. Methods that operate on and return arrays, collections,\\n     * and functions can be chained together. Methods that retrieve a single value\\n     * or may return a primitive value will automatically end the chain sequence\\n     * and return the unwrapped value. Otherwise, the value must be unwrapped\\n     * with `_#value`.\\n     *\\n     * Explicit chain sequences, which must be unwrapped with `_#value`, may be\\n     * enabled using `_.chain`.\\n     *\\n     * The execution of chained methods is lazy, that is, it's deferred until\\n     * `_#value` is implicitly or explicitly called.\\n     *\\n     * Lazy evaluation allows several methods to support shortcut fusion.\\n     * Shortcut fusion is an optimization to merge iteratee calls; this avoids\\n     * the creation of intermediate arrays and can greatly reduce the number of\\n     * iteratee executions. Sections of a chain sequence qualify for shortcut\\n     * fusion if the section is applied to an array and iteratees accept only\\n     * one argument. The heuristic for whether a section qualifies for shortcut\\n     * fusion is subject to change.\\n     *\\n     * Chaining is supported in custom builds as long as the `_#value` method is\\n     * directly or indirectly included in the build.\\n     *\\n     * In addition to lodash methods, wrappers have `Array` and `String` methods.\\n     *\\n     * The wrapper `Array` methods are:\\n     * `concat`, `join`, `pop`, `push`, `shift`, `sort`, `splice`, and `unshift`\\n     *\\n     * The wrapper `String` methods are:\\n     * `replace` and `split`\\n     *\\n     * The wrapper methods that support shortcut fusion are:\\n     * `at`, `compact`, `drop`, `dropRight`, `dropWhile`, `filter`, `find`,\\n     * `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`,\\n     * `tail`, `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `toArray`\\n     *\\n     * The chainable wrapper methods are:\\n     * `after`, `ary`, `assign`, `assignIn`, `assignInWith`, `assignWith`, `at`,\\n     * `before`, `bind`, `bindAll`, `bindKey`, `castArray`, `chain`, `chunk`,\\n     * `commit`, `compact`, `concat`, `conforms`, `constant`, `countBy`, `create`,\\n     * `curry`, `debounce`, `defaults`, `defaultsDeep`, `defer`, `delay`,\\n     * `difference`, `differenceBy`, `differenceWith`, `drop`, `dropRight`,\\n     * `dropRightWhile`, `dropWhile`, `extend`, `extendWith`, `fill`, `filter`,\\n     * `flatMap`, `flatMapDeep`, `flatMapDepth`, `flatten`, `flattenDeep`,\\n     * `flattenDepth`, `flip`, `flow`, `flowRight`, `fromPairs`, `functions`,\\n     * `functionsIn`, `groupBy`, `initial`, `intersection`, `intersectionBy`,\\n     * `intersectionWith`, `invert`, `invertBy`, `invokeMap`, `iteratee`, `keyBy`,\\n     * `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`,\\n     * `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`,\\n     * `nthArg`, `omit`, `omitBy`, `once`, `orderBy`, `over`, `overArgs`,\\n     * `overEvery`, `overSome`, `partial`, `partialRight`, `partition`, `pick`,\\n     * `pickBy`, `plant`, `property`, `propertyOf`, `pull`, `pullAll`, `pullAllBy`,\\n     * `pullAllWith`, `pullAt`, `push`, `range`, `rangeRight`, `rearg`, `reject`,\\n     * `remove`, `rest`, `reverse`, `sampleSize`, `set`, `setWith`, `shuffle`,\\n     * `slice`, `sort`, `sortBy`, `splice`, `spread`, `tail`, `take`, `takeRight`,\\n     * `takeRightWhile`, `takeWhile`, `tap`, `throttle`, `thru`, `toArray`,\\n     * `toPairs`, `toPairsIn`, `toPath`, `toPlainObject`, `transform`, `unary`,\\n     * `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`,\\n     * `unshift`, `unzip`, `unzipWith`, `update`, `updateWith`, `values`,\\n     * `valuesIn`, `without`, `wrap`, `xor`, `xorBy`, `xorWith`, `zip`,\\n     * `zipObject`, `zipObjectDeep`, and `zipWith`\\n     *\\n     * The wrapper methods that are **not** chainable by default are:\\n     * `add`, `attempt`, `camelCase`, `capitalize`, `ceil`, `clamp`, `clone`,\\n     * `cloneDeep`, `cloneDeepWith`, `cloneWith`, `conformsTo`, `deburr`,\\n     * `defaultTo`, `divide`, `each`, `eachRight`, `endsWith`, `eq`, `escape`,\\n     * `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`, `findLast`,\\n     * `findLastIndex`, `findLastKey`, `first`, `floor`, `forEach`, `forEachRight`,\\n     * `forIn`, `forInRight`, `forOwn`, `forOwnRight`, `get`, `gt`, `gte`, `has`,\\n     * `hasIn`, `head`, `identity`, `includes`, `indexOf`, `inRange`, `invoke`,\\n     * `isArguments`, `isArray`, `isArrayBuffer`, `isArrayLike`, `isArrayLikeObject`,\\n     * `isBoolean`, `isBuffer`, `isDate`, `isElement`, `isEmpty`, `isEqual`,\\n     * `isEqualWith`, `isError`, `isFinite`, `isFunction`, `isInteger`, `isLength`,\\n     * `isMap`, `isMatch`, `isMatchWith`, `isNaN`, `isNative`, `isNil`, `isNull`,\\n     * `isNumber`, `isObject`, `isObjectLike`, `isPlainObject`, `isRegExp`,\\n     * `isSafeInteger`, `isSet`, `isString`, `isUndefined`, `isTypedArray`,\\n     * `isWeakMap`, `isWeakSet`, `join`, `kebabCase`, `last`, `lastIndexOf`,\\n     * `lowerCase`, `lowerFirst`, `lt`, `lte`, `max`, `maxBy`, `mean`, `meanBy`,\\n     * `min`, `minBy`, `multiply`, `noConflict`, `noop`, `now`, `nth`, `pad`,\\n     * `padEnd`, `padStart`, `parseInt`, `pop`, `random`, `reduce`, `reduceRight`,\\n     * `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`,\\n     * `snakeCase`, `some`, `sortedIndex`, `sortedIndexBy`, `sortedLastIndex`,\\n     * `sortedLastIndexBy`, `startCase`, `startsWith`, `stubArray`, `stubFalse`,\\n     * `stubObject`, `stubString`, `stubTrue`, `subtract`, `sum`, `sumBy`,\\n     * `template`, `times`, `toFinite`, `toInteger`, `toJSON`, `toLength`,\\n     * `toLower`, `toNumber`, `toSafeInteger`, `toString`, `toUpper`, `trim`,\\n     * `trimEnd`, `trimStart`, `truncate`, `unescape`, `uniqueId`, `upperCase`,\\n     * `upperFirst`, `value`, and `words`\\n     *\\n     * @name _\\n     * @constructor\\n     * @category Seq\\n     * @param {*} value The value to wrap in a `lodash` instance.\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * function square(n) {\\n     *   return n * n;\\n     * }\\n     *\\n     * var wrapped = _([1, 2, 3]);\\n     *\\n     * // Returns an unwrapped value.\\n     * wrapped.reduce(_.add);\\n     * // => 6\\n     *\\n     * // Returns a wrapped value.\\n     * var squares = wrapped.map(square);\\n     *\\n     * _.isArray(squares);\\n     * // => false\\n     *\\n     * _.isArray(squares.value());\\n     * // => true\\n     */\\n    function lodash(value) {\\n      if (isObjectLike(value) && !isArray(value) && !(value instanceof LazyWrapper)) {\\n        if (value instanceof LodashWrapper) {\\n          return value;\\n        }\\n        if (hasOwnProperty.call(value, '__wrapped__')) {\\n          return wrapperClone(value);\\n        }\\n      }\\n      return new LodashWrapper(value);\\n    }\\n\\n    /**\\n     * The base implementation of `_.create` without support for assigning\\n     * properties to the created object.\\n     *\\n     * @private\\n     * @param {Object} proto The object to inherit from.\\n     * @returns {Object} Returns the new object.\\n     */\\n    var baseCreate = (function() {\\n      function object() {}\\n      return function(proto) {\\n        if (!isObject(proto)) {\\n          return {};\\n        }\\n        if (objectCreate) {\\n          return objectCreate(proto);\\n        }\\n        object.prototype = proto;\\n        var result = new object;\\n        object.prototype = undefined;\\n        return result;\\n      };\\n    }());\\n\\n    /**\\n     * The function whose prototype chain sequence wrappers inherit from.\\n     *\\n     * @private\\n     */\\n    function baseLodash() {\\n      // No operation performed.\\n    }\\n\\n    /**\\n     * The base constructor for creating `lodash` wrapper objects.\\n     *\\n     * @private\\n     * @param {*} value The value to wrap.\\n     * @param {boolean} [chainAll] Enable explicit method chain sequences.\\n     */\\n    function LodashWrapper(value, chainAll) {\\n      this.__wrapped__ = value;\\n      this.__actions__ = [];\\n      this.__chain__ = !!chainAll;\\n      this.__index__ = 0;\\n      this.__values__ = undefined;\\n    }\\n\\n    /**\\n     * By default, the template delimiters used by lodash are like those in\\n     * embedded Ruby (ERB) as well as ES2015 template strings. Change the\\n     * following template settings to use alternative delimiters.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @type {Object}\\n     */\\n    lodash.templateSettings = {\\n\\n      /**\\n       * Used to detect `data` property values to be HTML-escaped.\\n       *\\n       * @memberOf _.templateSettings\\n       * @type {RegExp}\\n       */\\n      'escape': reEscape,\\n\\n      /**\\n       * Used to detect code to be evaluated.\\n       *\\n       * @memberOf _.templateSettings\\n       * @type {RegExp}\\n       */\\n      'evaluate': reEvaluate,\\n\\n      /**\\n       * Used to detect `data` property values to inject.\\n       *\\n       * @memberOf _.templateSettings\\n       * @type {RegExp}\\n       */\\n      'interpolate': reInterpolate,\\n\\n      /**\\n       * Used to reference the data object in the template text.\\n       *\\n       * @memberOf _.templateSettings\\n       * @type {string}\\n       */\\n      'variable': '',\\n\\n      /**\\n       * Used to import variables into the compiled template.\\n       *\\n       * @memberOf _.templateSettings\\n       * @type {Object}\\n       */\\n      'imports': {\\n\\n        /**\\n         * A reference to the `lodash` function.\\n         *\\n         * @memberOf _.templateSettings.imports\\n         * @type {Function}\\n         */\\n        '_': lodash\\n      }\\n    };\\n\\n    // Ensure wrappers are instances of `baseLodash`.\\n    lodash.prototype = baseLodash.prototype;\\n    lodash.prototype.constructor = lodash;\\n\\n    LodashWrapper.prototype = baseCreate(baseLodash.prototype);\\n    LodashWrapper.prototype.constructor = LodashWrapper;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation.\\n     *\\n     * @private\\n     * @constructor\\n     * @param {*} value The value to wrap.\\n     */\\n    function LazyWrapper(value) {\\n      this.__wrapped__ = value;\\n      this.__actions__ = [];\\n      this.__dir__ = 1;\\n      this.__filtered__ = false;\\n      this.__iteratees__ = [];\\n      this.__takeCount__ = MAX_ARRAY_LENGTH;\\n      this.__views__ = [];\\n    }\\n\\n    /**\\n     * Creates a clone of the lazy wrapper object.\\n     *\\n     * @private\\n     * @name clone\\n     * @memberOf LazyWrapper\\n     * @returns {Object} Returns the cloned `LazyWrapper` object.\\n     */\\n    function lazyClone() {\\n      var result = new LazyWrapper(this.__wrapped__);\\n      result.__actions__ = copyArray(this.__actions__);\\n      result.__dir__ = this.__dir__;\\n      result.__filtered__ = this.__filtered__;\\n      result.__iteratees__ = copyArray(this.__iteratees__);\\n      result.__takeCount__ = this.__takeCount__;\\n      result.__views__ = copyArray(this.__views__);\\n      return result;\\n    }\\n\\n    /**\\n     * Reverses the direction of lazy iteration.\\n     *\\n     * @private\\n     * @name reverse\\n     * @memberOf LazyWrapper\\n     * @returns {Object} Returns the new reversed `LazyWrapper` object.\\n     */\\n    function lazyReverse() {\\n      if (this.__filtered__) {\\n        var result = new LazyWrapper(this);\\n        result.__dir__ = -1;\\n        result.__filtered__ = true;\\n      } else {\\n        result = this.clone();\\n        result.__dir__ *= -1;\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Extracts the unwrapped value from its lazy wrapper.\\n     *\\n     * @private\\n     * @name value\\n     * @memberOf LazyWrapper\\n     * @returns {*} Returns the unwrapped value.\\n     */\\n    function lazyValue() {\\n      var array = this.__wrapped__.value(),\\n          dir = this.__dir__,\\n          isArr = isArray(array),\\n          isRight = dir < 0,\\n          arrLength = isArr ? array.length : 0,\\n          view = getView(0, arrLength, this.__views__),\\n          start = view.start,\\n          end = view.end,\\n          length = end - start,\\n          index = isRight ? end : (start - 1),\\n          iteratees = this.__iteratees__,\\n          iterLength = iteratees.length,\\n          resIndex = 0,\\n          takeCount = nativeMin(length, this.__takeCount__);\\n\\n      if (!isArr || (!isRight && arrLength == length && takeCount == length)) {\\n        return baseWrapperValue(array, this.__actions__);\\n      }\\n      var result = [];\\n\\n      outer:\\n      while (length-- && resIndex < takeCount) {\\n        index += dir;\\n\\n        var iterIndex = -1,\\n            value = array[index];\\n\\n        while (++iterIndex < iterLength) {\\n          var data = iteratees[iterIndex],\\n              iteratee = data.iteratee,\\n              type = data.type,\\n              computed = iteratee(value);\\n\\n          if (type == LAZY_MAP_FLAG) {\\n            value = computed;\\n          } else if (!computed) {\\n            if (type == LAZY_FILTER_FLAG) {\\n              continue outer;\\n            } else {\\n              break outer;\\n            }\\n          }\\n        }\\n        result[resIndex++] = value;\\n      }\\n      return result;\\n    }\\n\\n    // Ensure `LazyWrapper` is an instance of `baseLodash`.\\n    LazyWrapper.prototype = baseCreate(baseLodash.prototype);\\n    LazyWrapper.prototype.constructor = LazyWrapper;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates a hash object.\\n     *\\n     * @private\\n     * @constructor\\n     * @param {Array} [entries] The key-value pairs to cache.\\n     */\\n    function Hash(entries) {\\n      var index = -1,\\n          length = entries == null ? 0 : entries.length;\\n\\n      this.clear();\\n      while (++index < length) {\\n        var entry = entries[index];\\n        this.set(entry[0], entry[1]);\\n      }\\n    }\\n\\n    /**\\n     * Removes all key-value entries from the hash.\\n     *\\n     * @private\\n     * @name clear\\n     * @memberOf Hash\\n     */\\n    function hashClear() {\\n      this.__data__ = nativeCreate ? nativeCreate(null) : {};\\n      this.size = 0;\\n    }\\n\\n    /**\\n     * Removes `key` and its value from the hash.\\n     *\\n     * @private\\n     * @name delete\\n     * @memberOf Hash\\n     * @param {Object} hash The hash to modify.\\n     * @param {string} key The key of the value to remove.\\n     * @returns {boolean} Returns `true` if the entry was removed, else `false`.\\n     */\\n    function hashDelete(key) {\\n      var result = this.has(key) && delete this.__data__[key];\\n      this.size -= result ? 1 : 0;\\n      return result;\\n    }\\n\\n    /**\\n     * Gets the hash value for `key`.\\n     *\\n     * @private\\n     * @name get\\n     * @memberOf Hash\\n     * @param {string} key The key of the value to get.\\n     * @returns {*} Returns the entry value.\\n     */\\n    function hashGet(key) {\\n      var data = this.__data__;\\n      if (nativeCreate) {\\n        var result = data[key];\\n        return result === HASH_UNDEFINED ? undefined : result;\\n      }\\n      return hasOwnProperty.call(data, key) ? data[key] : undefined;\\n    }\\n\\n    /**\\n     * Checks if a hash value for `key` exists.\\n     *\\n     * @private\\n     * @name has\\n     * @memberOf Hash\\n     * @param {string} key The key of the entry to check.\\n     * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\\n     */\\n    function hashHas(key) {\\n      var data = this.__data__;\\n      return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key);\\n    }\\n\\n    /**\\n     * Sets the hash `key` to `value`.\\n     *\\n     * @private\\n     * @name set\\n     * @memberOf Hash\\n     * @param {string} key The key of the value to set.\\n     * @param {*} value The value to set.\\n     * @returns {Object} Returns the hash instance.\\n     */\\n    function hashSet(key, value) {\\n      var data = this.__data__;\\n      this.size += this.has(key) ? 0 : 1;\\n      data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;\\n      return this;\\n    }\\n\\n    // Add methods to `Hash`.\\n    Hash.prototype.clear = hashClear;\\n    Hash.prototype['delete'] = hashDelete;\\n    Hash.prototype.get = hashGet;\\n    Hash.prototype.has = hashHas;\\n    Hash.prototype.set = hashSet;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates an list cache object.\\n     *\\n     * @private\\n     * @constructor\\n     * @param {Array} [entries] The key-value pairs to cache.\\n     */\\n    function ListCache(entries) {\\n      var index = -1,\\n          length = entries == null ? 0 : entries.length;\\n\\n      this.clear();\\n      while (++index < length) {\\n        var entry = entries[index];\\n        this.set(entry[0], entry[1]);\\n      }\\n    }\\n\\n    /**\\n     * Removes all key-value entries from the list cache.\\n     *\\n     * @private\\n     * @name clear\\n     * @memberOf ListCache\\n     */\\n    function listCacheClear() {\\n      this.__data__ = [];\\n      this.size = 0;\\n    }\\n\\n    /**\\n     * Removes `key` and its value from the list cache.\\n     *\\n     * @private\\n     * @name delete\\n     * @memberOf ListCache\\n     * @param {string} key The key of the value to remove.\\n     * @returns {boolean} Returns `true` if the entry was removed, else `false`.\\n     */\\n    function listCacheDelete(key) {\\n      var data = this.__data__,\\n          index = assocIndexOf(data, key);\\n\\n      if (index < 0) {\\n        return false;\\n      }\\n      var lastIndex = data.length - 1;\\n      if (index == lastIndex) {\\n        data.pop();\\n      } else {\\n        splice.call(data, index, 1);\\n      }\\n      --this.size;\\n      return true;\\n    }\\n\\n    /**\\n     * Gets the list cache value for `key`.\\n     *\\n     * @private\\n     * @name get\\n     * @memberOf ListCache\\n     * @param {string} key The key of the value to get.\\n     * @returns {*} Returns the entry value.\\n     */\\n    function listCacheGet(key) {\\n      var data = this.__data__,\\n          index = assocIndexOf(data, key);\\n\\n      return index < 0 ? undefined : data[index][1];\\n    }\\n\\n    /**\\n     * Checks if a list cache value for `key` exists.\\n     *\\n     * @private\\n     * @name has\\n     * @memberOf ListCache\\n     * @param {string} key The key of the entry to check.\\n     * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\\n     */\\n    function listCacheHas(key) {\\n      return assocIndexOf(this.__data__, key) > -1;\\n    }\\n\\n    /**\\n     * Sets the list cache `key` to `value`.\\n     *\\n     * @private\\n     * @name set\\n     * @memberOf ListCache\\n     * @param {string} key The key of the value to set.\\n     * @param {*} value The value to set.\\n     * @returns {Object} Returns the list cache instance.\\n     */\\n    function listCacheSet(key, value) {\\n      var data = this.__data__,\\n          index = assocIndexOf(data, key);\\n\\n      if (index < 0) {\\n        ++this.size;\\n        data.push([key, value]);\\n      } else {\\n        data[index][1] = value;\\n      }\\n      return this;\\n    }\\n\\n    // Add methods to `ListCache`.\\n    ListCache.prototype.clear = listCacheClear;\\n    ListCache.prototype['delete'] = listCacheDelete;\\n    ListCache.prototype.get = listCacheGet;\\n    ListCache.prototype.has = listCacheHas;\\n    ListCache.prototype.set = listCacheSet;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates a map cache object to store key-value pairs.\\n     *\\n     * @private\\n     * @constructor\\n     * @param {Array} [entries] The key-value pairs to cache.\\n     */\\n    function MapCache(entries) {\\n      var index = -1,\\n          length = entries == null ? 0 : entries.length;\\n\\n      this.clear();\\n      while (++index < length) {\\n        var entry = entries[index];\\n        this.set(entry[0], entry[1]);\\n      }\\n    }\\n\\n    /**\\n     * Removes all key-value entries from the map.\\n     *\\n     * @private\\n     * @name clear\\n     * @memberOf MapCache\\n     */\\n    function mapCacheClear() {\\n      this.size = 0;\\n      this.__data__ = {\\n        'hash': new Hash,\\n        'map': new (Map || ListCache),\\n        'string': new Hash\\n      };\\n    }\\n\\n    /**\\n     * Removes `key` and its value from the map.\\n     *\\n     * @private\\n     * @name delete\\n     * @memberOf MapCache\\n     * @param {string} key The key of the value to remove.\\n     * @returns {boolean} Returns `true` if the entry was removed, else `false`.\\n     */\\n    function mapCacheDelete(key) {\\n      var result = getMapData(this, key)['delete'](key);\\n      this.size -= result ? 1 : 0;\\n      return result;\\n    }\\n\\n    /**\\n     * Gets the map value for `key`.\\n     *\\n     * @private\\n     * @name get\\n     * @memberOf MapCache\\n     * @param {string} key The key of the value to get.\\n     * @returns {*} Returns the entry value.\\n     */\\n    function mapCacheGet(key) {\\n      return getMapData(this, key).get(key);\\n    }\\n\\n    /**\\n     * Checks if a map value for `key` exists.\\n     *\\n     * @private\\n     * @name has\\n     * @memberOf MapCache\\n     * @param {string} key The key of the entry to check.\\n     * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\\n     */\\n    function mapCacheHas(key) {\\n      return getMapData(this, key).has(key);\\n    }\\n\\n    /**\\n     * Sets the map `key` to `value`.\\n     *\\n     * @private\\n     * @name set\\n     * @memberOf MapCache\\n     * @param {string} key The key of the value to set.\\n     * @param {*} value The value to set.\\n     * @returns {Object} Returns the map cache instance.\\n     */\\n    function mapCacheSet(key, value) {\\n      var data = getMapData(this, key),\\n          size = data.size;\\n\\n      data.set(key, value);\\n      this.size += data.size == size ? 0 : 1;\\n      return this;\\n    }\\n\\n    // Add methods to `MapCache`.\\n    MapCache.prototype.clear = mapCacheClear;\\n    MapCache.prototype['delete'] = mapCacheDelete;\\n    MapCache.prototype.get = mapCacheGet;\\n    MapCache.prototype.has = mapCacheHas;\\n    MapCache.prototype.set = mapCacheSet;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     *\\n     * Creates an array cache object to store unique values.\\n     *\\n     * @private\\n     * @constructor\\n     * @param {Array} [values] The values to cache.\\n     */\\n    function SetCache(values) {\\n      var index = -1,\\n          length = values == null ? 0 : values.length;\\n\\n      this.__data__ = new MapCache;\\n      while (++index < length) {\\n        this.add(values[index]);\\n      }\\n    }\\n\\n    /**\\n     * Adds `value` to the array cache.\\n     *\\n     * @private\\n     * @name add\\n     * @memberOf SetCache\\n     * @alias push\\n     * @param {*} value The value to cache.\\n     * @returns {Object} Returns the cache instance.\\n     */\\n    function setCacheAdd(value) {\\n      this.__data__.set(value, HASH_UNDEFINED);\\n      return this;\\n    }\\n\\n    /**\\n     * Checks if `value` is in the array cache.\\n     *\\n     * @private\\n     * @name has\\n     * @memberOf SetCache\\n     * @param {*} value The value to search for.\\n     * @returns {number} Returns `true` if `value` is found, else `false`.\\n     */\\n    function setCacheHas(value) {\\n      return this.__data__.has(value);\\n    }\\n\\n    // Add methods to `SetCache`.\\n    SetCache.prototype.add = SetCache.prototype.push = setCacheAdd;\\n    SetCache.prototype.has = setCacheHas;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates a stack cache object to store key-value pairs.\\n     *\\n     * @private\\n     * @constructor\\n     * @param {Array} [entries] The key-value pairs to cache.\\n     */\\n    function Stack(entries) {\\n      var data = this.__data__ = new ListCache(entries);\\n      this.size = data.size;\\n    }\\n\\n    /**\\n     * Removes all key-value entries from the stack.\\n     *\\n     * @private\\n     * @name clear\\n     * @memberOf Stack\\n     */\\n    function stackClear() {\\n      this.__data__ = new ListCache;\\n      this.size = 0;\\n    }\\n\\n    /**\\n     * Removes `key` and its value from the stack.\\n     *\\n     * @private\\n     * @name delete\\n     * @memberOf Stack\\n     * @param {string} key The key of the value to remove.\\n     * @returns {boolean} Returns `true` if the entry was removed, else `false`.\\n     */\\n    function stackDelete(key) {\\n      var data = this.__data__,\\n          result = data['delete'](key);\\n\\n      this.size = data.size;\\n      return result;\\n    }\\n\\n    /**\\n     * Gets the stack value for `key`.\\n     *\\n     * @private\\n     * @name get\\n     * @memberOf Stack\\n     * @param {string} key The key of the value to get.\\n     * @returns {*} Returns the entry value.\\n     */\\n    function stackGet(key) {\\n      return this.__data__.get(key);\\n    }\\n\\n    /**\\n     * Checks if a stack value for `key` exists.\\n     *\\n     * @private\\n     * @name has\\n     * @memberOf Stack\\n     * @param {string} key The key of the entry to check.\\n     * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\\n     */\\n    function stackHas(key) {\\n      return this.__data__.has(key);\\n    }\\n\\n    /**\\n     * Sets the stack `key` to `value`.\\n     *\\n     * @private\\n     * @name set\\n     * @memberOf Stack\\n     * @param {string} key The key of the value to set.\\n     * @param {*} value The value to set.\\n     * @returns {Object} Returns the stack cache instance.\\n     */\\n    function stackSet(key, value) {\\n      var data = this.__data__;\\n      if (data instanceof ListCache) {\\n        var pairs = data.__data__;\\n        if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {\\n          pairs.push([key, value]);\\n          this.size = ++data.size;\\n          return this;\\n        }\\n        data = this.__data__ = new MapCache(pairs);\\n      }\\n      data.set(key, value);\\n      this.size = data.size;\\n      return this;\\n    }\\n\\n    // Add methods to `Stack`.\\n    Stack.prototype.clear = stackClear;\\n    Stack.prototype['delete'] = stackDelete;\\n    Stack.prototype.get = stackGet;\\n    Stack.prototype.has = stackHas;\\n    Stack.prototype.set = stackSet;\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates an array of the enumerable property names of the array-like `value`.\\n     *\\n     * @private\\n     * @param {*} value The value to query.\\n     * @param {boolean} inherited Specify returning inherited property names.\\n     * @returns {Array} Returns the array of property names.\\n     */\\n    function arrayLikeKeys(value, inherited) {\\n      var isArr = isArray(value),\\n          isArg = !isArr && isArguments(value),\\n          isBuff = !isArr && !isArg && isBuffer(value),\\n          isType = !isArr && !isArg && !isBuff && isTypedArray(value),\\n          skipIndexes = isArr || isArg || isBuff || isType,\\n          result = skipIndexes ? baseTimes(value.length, String) : [],\\n          length = result.length;\\n\\n      for (var key in value) {\\n        if ((inherited || hasOwnProperty.call(value, key)) &&\\n            !(skipIndexes && (\\n               // Safari 9 has enumerable `arguments.length` in strict mode.\\n               key == 'length' ||\\n               // Node.js 0.10 has enumerable non-index properties on buffers.\\n               (isBuff && (key == 'offset' || key == 'parent')) ||\\n               // PhantomJS 2 has enumerable non-index properties on typed arrays.\\n               (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||\\n               // Skip index properties.\\n               isIndex(key, length)\\n            ))) {\\n          result.push(key);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * A specialized version of `_.sample` for arrays.\\n     *\\n     * @private\\n     * @param {Array} array The array to sample.\\n     * @returns {*} Returns the random element.\\n     */\\n    function arraySample(array) {\\n      var length = array.length;\\n      return length ? array[baseRandom(0, length - 1)] : undefined;\\n    }\\n\\n    /**\\n     * A specialized version of `_.sampleSize` for arrays.\\n     *\\n     * @private\\n     * @param {Array} array The array to sample.\\n     * @param {number} n The number of elements to sample.\\n     * @returns {Array} Returns the random elements.\\n     */\\n    function arraySampleSize(array, n) {\\n      return shuffleSelf(copyArray(array), baseClamp(n, 0, array.length));\\n    }\\n\\n    /**\\n     * A specialized version of `_.shuffle` for arrays.\\n     *\\n     * @private\\n     * @param {Array} array The array to shuffle.\\n     * @returns {Array} Returns the new shuffled array.\\n     */\\n    function arrayShuffle(array) {\\n      return shuffleSelf(copyArray(array));\\n    }\\n\\n    /**\\n     * This function is like `assignValue` except that it doesn't assign\\n     * `undefined` values.\\n     *\\n     * @private\\n     * @param {Object} object The object to modify.\\n     * @param {string} key The key of the property to assign.\\n     * @param {*} value The value to assign.\\n     */\\n    function assignMergeValue(object, key, value) {\\n      if ((value !== undefined && !eq(object[key], value)) ||\\n          (value === undefined && !(key in object))) {\\n        baseAssignValue(object, key, value);\\n      }\\n    }\\n\\n    /**\\n     * Assigns `value` to `key` of `object` if the existing value is not equivalent\\n     * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons.\\n     *\\n     * @private\\n     * @param {Object} object The object to modify.\\n     * @param {string} key The key of the property to assign.\\n     * @param {*} value The value to assign.\\n     */\\n    function assignValue(object, key, value) {\\n      var objValue = object[key];\\n      if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||\\n          (value === undefined && !(key in object))) {\\n        baseAssignValue(object, key, value);\\n      }\\n    }\\n\\n    /**\\n     * Gets the index at which the `key` is found in `array` of key-value pairs.\\n     *\\n     * @private\\n     * @param {Array} array The array to inspect.\\n     * @param {*} key The key to search for.\\n     * @returns {number} Returns the index of the matched value, else `-1`.\\n     */\\n    function assocIndexOf(array, key) {\\n      var length = array.length;\\n      while (length--) {\\n        if (eq(array[length][0], key)) {\\n          return length;\\n        }\\n      }\\n      return -1;\\n    }\\n\\n    /**\\n     * Aggregates elements of `collection` on `accumulator` with keys transformed\\n     * by `iteratee` and values set by `setter`.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} setter The function to set `accumulator` values.\\n     * @param {Function} iteratee The iteratee to transform keys.\\n     * @param {Object} accumulator The initial aggregated object.\\n     * @returns {Function} Returns `accumulator`.\\n     */\\n    function baseAggregator(collection, setter, iteratee, accumulator) {\\n      baseEach(collection, function(value, key, collection) {\\n        setter(accumulator, value, iteratee(value), collection);\\n      });\\n      return accumulator;\\n    }\\n\\n    /**\\n     * The base implementation of `_.assign` without support for multiple sources\\n     * or `customizer` functions.\\n     *\\n     * @private\\n     * @param {Object} object The destination object.\\n     * @param {Object} source The source object.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function baseAssign(object, source) {\\n      return object && copyObject(source, keys(source), object);\\n    }\\n\\n    /**\\n     * The base implementation of `_.assignIn` without support for multiple sources\\n     * or `customizer` functions.\\n     *\\n     * @private\\n     * @param {Object} object The destination object.\\n     * @param {Object} source The source object.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function baseAssignIn(object, source) {\\n      return object && copyObject(source, keysIn(source), object);\\n    }\\n\\n    /**\\n     * The base implementation of `assignValue` and `assignMergeValue` without\\n     * value checks.\\n     *\\n     * @private\\n     * @param {Object} object The object to modify.\\n     * @param {string} key The key of the property to assign.\\n     * @param {*} value The value to assign.\\n     */\\n    function baseAssignValue(object, key, value) {\\n      if (key == '__proto__' && defineProperty) {\\n        defineProperty(object, key, {\\n          'configurable': true,\\n          'enumerable': true,\\n          'value': value,\\n          'writable': true\\n        });\\n      } else {\\n        object[key] = value;\\n      }\\n    }\\n\\n    /**\\n     * The base implementation of `_.at` without support for individual paths.\\n     *\\n     * @private\\n     * @param {Object} object The object to iterate over.\\n     * @param {string[]} paths The property paths to pick.\\n     * @returns {Array} Returns the picked elements.\\n     */\\n    function baseAt(object, paths) {\\n      var index = -1,\\n          length = paths.length,\\n          result = Array(length),\\n          skip = object == null;\\n\\n      while (++index < length) {\\n        result[index] = skip ? undefined : get(object, paths[index]);\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.clamp` which doesn't coerce arguments.\\n     *\\n     * @private\\n     * @param {number} number The number to clamp.\\n     * @param {number} [lower] The lower bound.\\n     * @param {number} upper The upper bound.\\n     * @returns {number} Returns the clamped number.\\n     */\\n    function baseClamp(number, lower, upper) {\\n      if (number === number) {\\n        if (upper !== undefined) {\\n          number = number <= upper ? number : upper;\\n        }\\n        if (lower !== undefined) {\\n          number = number >= lower ? number : lower;\\n        }\\n      }\\n      return number;\\n    }\\n\\n    /**\\n     * The base implementation of `_.clone` and `_.cloneDeep` which tracks\\n     * traversed objects.\\n     *\\n     * @private\\n     * @param {*} value The value to clone.\\n     * @param {boolean} bitmask The bitmask flags.\\n     *  1 - Deep clone\\n     *  2 - Flatten inherited properties\\n     *  4 - Clone symbols\\n     * @param {Function} [customizer] The function to customize cloning.\\n     * @param {string} [key] The key of `value`.\\n     * @param {Object} [object] The parent object of `value`.\\n     * @param {Object} [stack] Tracks traversed objects and their clone counterparts.\\n     * @returns {*} Returns the cloned value.\\n     */\\n    function baseClone(value, bitmask, customizer, key, object, stack) {\\n      var result,\\n          isDeep = bitmask & CLONE_DEEP_FLAG,\\n          isFlat = bitmask & CLONE_FLAT_FLAG,\\n          isFull = bitmask & CLONE_SYMBOLS_FLAG;\\n\\n      if (customizer) {\\n        result = object ? customizer(value, key, object, stack) : customizer(value);\\n      }\\n      if (result !== undefined) {\\n        return result;\\n      }\\n      if (!isObject(value)) {\\n        return value;\\n      }\\n      var isArr = isArray(value);\\n      if (isArr) {\\n        result = initCloneArray(value);\\n        if (!isDeep) {\\n          return copyArray(value, result);\\n        }\\n      } else {\\n        var tag = getTag(value),\\n            isFunc = tag == funcTag || tag == genTag;\\n\\n        if (isBuffer(value)) {\\n          return cloneBuffer(value, isDeep);\\n        }\\n        if (tag == objectTag || tag == argsTag || (isFunc && !object)) {\\n          result = (isFlat || isFunc) ? {} : initCloneObject(value);\\n          if (!isDeep) {\\n            return isFlat\\n              ? copySymbolsIn(value, baseAssignIn(result, value))\\n              : copySymbols(value, baseAssign(result, value));\\n          }\\n        } else {\\n          if (!cloneableTags[tag]) {\\n            return object ? value : {};\\n          }\\n          result = initCloneByTag(value, tag, isDeep);\\n        }\\n      }\\n      // Check for circular references and return its corresponding clone.\\n      stack || (stack = new Stack);\\n      var stacked = stack.get(value);\\n      if (stacked) {\\n        return stacked;\\n      }\\n      stack.set(value, result);\\n\\n      if (isSet(value)) {\\n        value.forEach(function(subValue) {\\n          result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack));\\n        });\\n      } else if (isMap(value)) {\\n        value.forEach(function(subValue, key) {\\n          result.set(key, baseClone(subValue, bitmask, customizer, key, value, stack));\\n        });\\n      }\\n\\n      var keysFunc = isFull\\n        ? (isFlat ? getAllKeysIn : getAllKeys)\\n        : (isFlat ? keysIn : keys);\\n\\n      var props = isArr ? undefined : keysFunc(value);\\n      arrayEach(props || value, function(subValue, key) {\\n        if (props) {\\n          key = subValue;\\n          subValue = value[key];\\n        }\\n        // Recursively populate clone (susceptible to call stack limits).\\n        assignValue(result, key, baseClone(subValue, bitmask, customizer, key, value, stack));\\n      });\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.conforms` which doesn't clone `source`.\\n     *\\n     * @private\\n     * @param {Object} source The object of property predicates to conform to.\\n     * @returns {Function} Returns the new spec function.\\n     */\\n    function baseConforms(source) {\\n      var props = keys(source);\\n      return function(object) {\\n        return baseConformsTo(object, source, props);\\n      };\\n    }\\n\\n    /**\\n     * The base implementation of `_.conformsTo` which accepts `props` to check.\\n     *\\n     * @private\\n     * @param {Object} object The object to inspect.\\n     * @param {Object} source The object of property predicates to conform to.\\n     * @returns {boolean} Returns `true` if `object` conforms, else `false`.\\n     */\\n    function baseConformsTo(object, source, props) {\\n      var length = props.length;\\n      if (object == null) {\\n        return !length;\\n      }\\n      object = Object(object);\\n      while (length--) {\\n        var key = props[length],\\n            predicate = source[key],\\n            value = object[key];\\n\\n        if ((value === undefined && !(key in object)) || !predicate(value)) {\\n          return false;\\n        }\\n      }\\n      return true;\\n    }\\n\\n    /**\\n     * The base implementation of `_.delay` and `_.defer` which accepts `args`\\n     * to provide to `func`.\\n     *\\n     * @private\\n     * @param {Function} func The function to delay.\\n     * @param {number} wait The number of milliseconds to delay invocation.\\n     * @param {Array} args The arguments to provide to `func`.\\n     * @returns {number|Object} Returns the timer id or timeout object.\\n     */\\n    function baseDelay(func, wait, args) {\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      return setTimeout(function() { func.apply(undefined, args); }, wait);\\n    }\\n\\n    /**\\n     * The base implementation of methods like `_.difference` without support\\n     * for excluding multiple arrays or iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array} array The array to inspect.\\n     * @param {Array} values The values to exclude.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of filtered values.\\n     */\\n    function baseDifference(array, values, iteratee, comparator) {\\n      var index = -1,\\n          includes = arrayIncludes,\\n          isCommon = true,\\n          length = array.length,\\n          result = [],\\n          valuesLength = values.length;\\n\\n      if (!length) {\\n        return result;\\n      }\\n      if (iteratee) {\\n        values = arrayMap(values, baseUnary(iteratee));\\n      }\\n      if (comparator) {\\n        includes = arrayIncludesWith;\\n        isCommon = false;\\n      }\\n      else if (values.length >= LARGE_ARRAY_SIZE) {\\n        includes = cacheHas;\\n        isCommon = false;\\n        values = new SetCache(values);\\n      }\\n      outer:\\n      while (++index < length) {\\n        var value = array[index],\\n            computed = iteratee == null ? value : iteratee(value);\\n\\n        value = (comparator || value !== 0) ? value : 0;\\n        if (isCommon && computed === computed) {\\n          var valuesIndex = valuesLength;\\n          while (valuesIndex--) {\\n            if (values[valuesIndex] === computed) {\\n              continue outer;\\n            }\\n          }\\n          result.push(value);\\n        }\\n        else if (!includes(values, computed, comparator)) {\\n          result.push(value);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.forEach` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @returns {Array|Object} Returns `collection`.\\n     */\\n    var baseEach = createBaseEach(baseForOwn);\\n\\n    /**\\n     * The base implementation of `_.forEachRight` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @returns {Array|Object} Returns `collection`.\\n     */\\n    var baseEachRight = createBaseEach(baseForOwnRight, true);\\n\\n    /**\\n     * The base implementation of `_.every` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} predicate The function invoked per iteration.\\n     * @returns {boolean} Returns `true` if all elements pass the predicate check,\\n     *  else `false`\\n     */\\n    function baseEvery(collection, predicate) {\\n      var result = true;\\n      baseEach(collection, function(value, index, collection) {\\n        result = !!predicate(value, index, collection);\\n        return result;\\n      });\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of methods like `_.max` and `_.min` which accepts a\\n     * `comparator` to determine the extremum value.\\n     *\\n     * @private\\n     * @param {Array} array The array to iterate over.\\n     * @param {Function} iteratee The iteratee invoked per iteration.\\n     * @param {Function} comparator The comparator used to compare values.\\n     * @returns {*} Returns the extremum value.\\n     */\\n    function baseExtremum(array, iteratee, comparator) {\\n      var index = -1,\\n          length = array.length;\\n\\n      while (++index < length) {\\n        var value = array[index],\\n            current = iteratee(value);\\n\\n        if (current != null && (computed === undefined\\n              ? (current === current && !isSymbol(current))\\n              : comparator(current, computed)\\n            )) {\\n          var computed = current,\\n              result = value;\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.fill` without an iteratee call guard.\\n     *\\n     * @private\\n     * @param {Array} array The array to fill.\\n     * @param {*} value The value to fill `array` with.\\n     * @param {number} [start=0] The start position.\\n     * @param {number} [end=array.length] The end position.\\n     * @returns {Array} Returns `array`.\\n     */\\n    function baseFill(array, value, start, end) {\\n      var length = array.length;\\n\\n      start = toInteger(start);\\n      if (start < 0) {\\n        start = -start > length ? 0 : (length + start);\\n      }\\n      end = (end === undefined || end > length) ? length : toInteger(end);\\n      if (end < 0) {\\n        end += length;\\n      }\\n      end = start > end ? 0 : toLength(end);\\n      while (start < end) {\\n        array[start++] = value;\\n      }\\n      return array;\\n    }\\n\\n    /**\\n     * The base implementation of `_.filter` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} predicate The function invoked per iteration.\\n     * @returns {Array} Returns the new filtered array.\\n     */\\n    function baseFilter(collection, predicate) {\\n      var result = [];\\n      baseEach(collection, function(value, index, collection) {\\n        if (predicate(value, index, collection)) {\\n          result.push(value);\\n        }\\n      });\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.flatten` with support for restricting flattening.\\n     *\\n     * @private\\n     * @param {Array} array The array to flatten.\\n     * @param {number} depth The maximum recursion depth.\\n     * @param {boolean} [predicate=isFlattenable] The function invoked per iteration.\\n     * @param {boolean} [isStrict] Restrict to values that pass `predicate` checks.\\n     * @param {Array} [result=[]] The initial result value.\\n     * @returns {Array} Returns the new flattened array.\\n     */\\n    function baseFlatten(array, depth, predicate, isStrict, result) {\\n      var index = -1,\\n          length = array.length;\\n\\n      predicate || (predicate = isFlattenable);\\n      result || (result = []);\\n\\n      while (++index < length) {\\n        var value = array[index];\\n        if (depth > 0 && predicate(value)) {\\n          if (depth > 1) {\\n            // Recursively flatten arrays (susceptible to call stack limits).\\n            baseFlatten(value, depth - 1, predicate, isStrict, result);\\n          } else {\\n            arrayPush(result, value);\\n          }\\n        } else if (!isStrict) {\\n          result[result.length] = value;\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `baseForOwn` which iterates over `object`\\n     * properties returned by `keysFunc` and invokes `iteratee` for each property.\\n     * Iteratee functions may exit iteration early by explicitly returning `false`.\\n     *\\n     * @private\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @param {Function} keysFunc The function to get the keys of `object`.\\n     * @returns {Object} Returns `object`.\\n     */\\n    var baseFor = createBaseFor();\\n\\n    /**\\n     * This function is like `baseFor` except that it iterates over properties\\n     * in the opposite order.\\n     *\\n     * @private\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @param {Function} keysFunc The function to get the keys of `object`.\\n     * @returns {Object} Returns `object`.\\n     */\\n    var baseForRight = createBaseFor(true);\\n\\n    /**\\n     * The base implementation of `_.forOwn` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function baseForOwn(object, iteratee) {\\n      return object && baseFor(object, iteratee, keys);\\n    }\\n\\n    /**\\n     * The base implementation of `_.forOwnRight` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function baseForOwnRight(object, iteratee) {\\n      return object && baseForRight(object, iteratee, keys);\\n    }\\n\\n    /**\\n     * The base implementation of `_.functions` which creates an array of\\n     * `object` function property names filtered from `props`.\\n     *\\n     * @private\\n     * @param {Object} object The object to inspect.\\n     * @param {Array} props The property names to filter.\\n     * @returns {Array} Returns the function names.\\n     */\\n    function baseFunctions(object, props) {\\n      return arrayFilter(props, function(key) {\\n        return isFunction(object[key]);\\n      });\\n    }\\n\\n    /**\\n     * The base implementation of `_.get` without support for default values.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path of the property to get.\\n     * @returns {*} Returns the resolved value.\\n     */\\n    function baseGet(object, path) {\\n      path = castPath(path, object);\\n\\n      var index = 0,\\n          length = path.length;\\n\\n      while (object != null && index < length) {\\n        object = object[toKey(path[index++])];\\n      }\\n      return (index && index == length) ? object : undefined;\\n    }\\n\\n    /**\\n     * The base implementation of `getAllKeys` and `getAllKeysIn` which uses\\n     * `keysFunc` and `symbolsFunc` to get the enumerable property names and\\n     * symbols of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {Function} keysFunc The function to get the keys of `object`.\\n     * @param {Function} symbolsFunc The function to get the symbols of `object`.\\n     * @returns {Array} Returns the array of property names and symbols.\\n     */\\n    function baseGetAllKeys(object, keysFunc, symbolsFunc) {\\n      var result = keysFunc(object);\\n      return isArray(object) ? result : arrayPush(result, symbolsFunc(object));\\n    }\\n\\n    /**\\n     * The base implementation of `getTag` without fallbacks for buggy environments.\\n     *\\n     * @private\\n     * @param {*} value The value to query.\\n     * @returns {string} Returns the `toStringTag`.\\n     */\\n    function baseGetTag(value) {\\n      if (value == null) {\\n        return value === undefined ? undefinedTag : nullTag;\\n      }\\n      return (symToStringTag && symToStringTag in Object(value))\\n        ? getRawTag(value)\\n        : objectToString(value);\\n    }\\n\\n    /**\\n     * The base implementation of `_.gt` which doesn't coerce arguments.\\n     *\\n     * @private\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if `value` is greater than `other`,\\n     *  else `false`.\\n     */\\n    function baseGt(value, other) {\\n      return value > other;\\n    }\\n\\n    /**\\n     * The base implementation of `_.has` without support for deep paths.\\n     *\\n     * @private\\n     * @param {Object} [object] The object to query.\\n     * @param {Array|string} key The key to check.\\n     * @returns {boolean} Returns `true` if `key` exists, else `false`.\\n     */\\n    function baseHas(object, key) {\\n      return object != null && hasOwnProperty.call(object, key);\\n    }\\n\\n    /**\\n     * The base implementation of `_.hasIn` without support for deep paths.\\n     *\\n     * @private\\n     * @param {Object} [object] The object to query.\\n     * @param {Array|string} key The key to check.\\n     * @returns {boolean} Returns `true` if `key` exists, else `false`.\\n     */\\n    function baseHasIn(object, key) {\\n      return object != null && key in Object(object);\\n    }\\n\\n    /**\\n     * The base implementation of `_.inRange` which doesn't coerce arguments.\\n     *\\n     * @private\\n     * @param {number} number The number to check.\\n     * @param {number} start The start of the range.\\n     * @param {number} end The end of the range.\\n     * @returns {boolean} Returns `true` if `number` is in the range, else `false`.\\n     */\\n    function baseInRange(number, start, end) {\\n      return number >= nativeMin(start, end) && number < nativeMax(start, end);\\n    }\\n\\n    /**\\n     * The base implementation of methods like `_.intersection`, without support\\n     * for iteratee shorthands, that accepts an array of arrays to inspect.\\n     *\\n     * @private\\n     * @param {Array} arrays The arrays to inspect.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of shared values.\\n     */\\n    function baseIntersection(arrays, iteratee, comparator) {\\n      var includes = comparator ? arrayIncludesWith : arrayIncludes,\\n          length = arrays[0].length,\\n          othLength = arrays.length,\\n          othIndex = othLength,\\n          caches = Array(othLength),\\n          maxLength = Infinity,\\n          result = [];\\n\\n      while (othIndex--) {\\n        var array = arrays[othIndex];\\n        if (othIndex && iteratee) {\\n          array = arrayMap(array, baseUnary(iteratee));\\n        }\\n        maxLength = nativeMin(array.length, maxLength);\\n        caches[othIndex] = !comparator && (iteratee || (length >= 120 && array.length >= 120))\\n          ? new SetCache(othIndex && array)\\n          : undefined;\\n      }\\n      array = arrays[0];\\n\\n      var index = -1,\\n          seen = caches[0];\\n\\n      outer:\\n      while (++index < length && result.length < maxLength) {\\n        var value = array[index],\\n            computed = iteratee ? iteratee(value) : value;\\n\\n        value = (comparator || value !== 0) ? value : 0;\\n        if (!(seen\\n              ? cacheHas(seen, computed)\\n              : includes(result, computed, comparator)\\n            )) {\\n          othIndex = othLength;\\n          while (--othIndex) {\\n            var cache = caches[othIndex];\\n            if (!(cache\\n                  ? cacheHas(cache, computed)\\n                  : includes(arrays[othIndex], computed, comparator))\\n                ) {\\n              continue outer;\\n            }\\n          }\\n          if (seen) {\\n            seen.push(computed);\\n          }\\n          result.push(value);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.invert` and `_.invertBy` which inverts\\n     * `object` with values transformed by `iteratee` and set by `setter`.\\n     *\\n     * @private\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} setter The function to set `accumulator` values.\\n     * @param {Function} iteratee The iteratee to transform values.\\n     * @param {Object} accumulator The initial inverted object.\\n     * @returns {Function} Returns `accumulator`.\\n     */\\n    function baseInverter(object, setter, iteratee, accumulator) {\\n      baseForOwn(object, function(value, key, object) {\\n        setter(accumulator, iteratee(value), key, object);\\n      });\\n      return accumulator;\\n    }\\n\\n    /**\\n     * The base implementation of `_.invoke` without support for individual\\n     * method arguments.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path of the method to invoke.\\n     * @param {Array} args The arguments to invoke the method with.\\n     * @returns {*} Returns the result of the invoked method.\\n     */\\n    function baseInvoke(object, path, args) {\\n      path = castPath(path, object);\\n      object = parent(object, path);\\n      var func = object == null ? object : object[toKey(last(path))];\\n      return func == null ? undefined : apply(func, object, args);\\n    }\\n\\n    /**\\n     * The base implementation of `_.isArguments`.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an `arguments` object,\\n     */\\n    function baseIsArguments(value) {\\n      return isObjectLike(value) && baseGetTag(value) == argsTag;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isArrayBuffer` without Node.js optimizations.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`.\\n     */\\n    function baseIsArrayBuffer(value) {\\n      return isObjectLike(value) && baseGetTag(value) == arrayBufferTag;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isDate` without Node.js optimizations.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a date object, else `false`.\\n     */\\n    function baseIsDate(value) {\\n      return isObjectLike(value) && baseGetTag(value) == dateTag;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isEqual` which supports partial comparisons\\n     * and tracks traversed objects.\\n     *\\n     * @private\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @param {boolean} bitmask The bitmask flags.\\n     *  1 - Unordered comparison\\n     *  2 - Partial comparison\\n     * @param {Function} [customizer] The function to customize comparisons.\\n     * @param {Object} [stack] Tracks traversed `value` and `other` objects.\\n     * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\\n     */\\n    function baseIsEqual(value, other, bitmask, customizer, stack) {\\n      if (value === other) {\\n        return true;\\n      }\\n      if (value == null || other == null || (!isObjectLike(value) && !isObjectLike(other))) {\\n        return value !== value && other !== other;\\n      }\\n      return baseIsEqualDeep(value, other, bitmask, customizer, baseIsEqual, stack);\\n    }\\n\\n    /**\\n     * A specialized version of `baseIsEqual` for arrays and objects which performs\\n     * deep comparisons and tracks traversed objects enabling objects with circular\\n     * references to be compared.\\n     *\\n     * @private\\n     * @param {Object} object The object to compare.\\n     * @param {Object} other The other object to compare.\\n     * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\\n     * @param {Function} customizer The function to customize comparisons.\\n     * @param {Function} equalFunc The function to determine equivalents of values.\\n     * @param {Object} [stack] Tracks traversed `object` and `other` objects.\\n     * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\\n     */\\n    function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {\\n      var objIsArr = isArray(object),\\n          othIsArr = isArray(other),\\n          objTag = objIsArr ? arrayTag : getTag(object),\\n          othTag = othIsArr ? arrayTag : getTag(other);\\n\\n      objTag = objTag == argsTag ? objectTag : objTag;\\n      othTag = othTag == argsTag ? objectTag : othTag;\\n\\n      var objIsObj = objTag == objectTag,\\n          othIsObj = othTag == objectTag,\\n          isSameTag = objTag == othTag;\\n\\n      if (isSameTag && isBuffer(object)) {\\n        if (!isBuffer(other)) {\\n          return false;\\n        }\\n        objIsArr = true;\\n        objIsObj = false;\\n      }\\n      if (isSameTag && !objIsObj) {\\n        stack || (stack = new Stack);\\n        return (objIsArr || isTypedArray(object))\\n          ? equalArrays(object, other, bitmask, customizer, equalFunc, stack)\\n          : equalByTag(object, other, objTag, bitmask, customizer, equalFunc, stack);\\n      }\\n      if (!(bitmask & COMPARE_PARTIAL_FLAG)) {\\n        var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),\\n            othIsWrapped = othIsObj && hasOwnProperty.call(other, '__wrapped__');\\n\\n        if (objIsWrapped || othIsWrapped) {\\n          var objUnwrapped = objIsWrapped ? object.value() : object,\\n              othUnwrapped = othIsWrapped ? other.value() : other;\\n\\n          stack || (stack = new Stack);\\n          return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack);\\n        }\\n      }\\n      if (!isSameTag) {\\n        return false;\\n      }\\n      stack || (stack = new Stack);\\n      return equalObjects(object, other, bitmask, customizer, equalFunc, stack);\\n    }\\n\\n    /**\\n     * The base implementation of `_.isMap` without Node.js optimizations.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a map, else `false`.\\n     */\\n    function baseIsMap(value) {\\n      return isObjectLike(value) && getTag(value) == mapTag;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isMatch` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Object} object The object to inspect.\\n     * @param {Object} source The object of property values to match.\\n     * @param {Array} matchData The property names, values, and compare flags to match.\\n     * @param {Function} [customizer] The function to customize comparisons.\\n     * @returns {boolean} Returns `true` if `object` is a match, else `false`.\\n     */\\n    function baseIsMatch(object, source, matchData, customizer) {\\n      var index = matchData.length,\\n          length = index,\\n          noCustomizer = !customizer;\\n\\n      if (object == null) {\\n        return !length;\\n      }\\n      object = Object(object);\\n      while (index--) {\\n        var data = matchData[index];\\n        if ((noCustomizer && data[2])\\n              ? data[1] !== object[data[0]]\\n              : !(data[0] in object)\\n            ) {\\n          return false;\\n        }\\n      }\\n      while (++index < length) {\\n        data = matchData[index];\\n        var key = data[0],\\n            objValue = object[key],\\n            srcValue = data[1];\\n\\n        if (noCustomizer && data[2]) {\\n          if (objValue === undefined && !(key in object)) {\\n            return false;\\n          }\\n        } else {\\n          var stack = new Stack;\\n          if (customizer) {\\n            var result = customizer(objValue, srcValue, key, object, source, stack);\\n          }\\n          if (!(result === undefined\\n                ? baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG, customizer, stack)\\n                : result\\n              )) {\\n            return false;\\n          }\\n        }\\n      }\\n      return true;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isNative` without bad shim checks.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a native function,\\n     *  else `false`.\\n     */\\n    function baseIsNative(value) {\\n      if (!isObject(value) || isMasked(value)) {\\n        return false;\\n      }\\n      var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\\n      return pattern.test(toSource(value));\\n    }\\n\\n    /**\\n     * The base implementation of `_.isRegExp` without Node.js optimizations.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a regexp, else `false`.\\n     */\\n    function baseIsRegExp(value) {\\n      return isObjectLike(value) && baseGetTag(value) == regexpTag;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isSet` without Node.js optimizations.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a set, else `false`.\\n     */\\n    function baseIsSet(value) {\\n      return isObjectLike(value) && getTag(value) == setTag;\\n    }\\n\\n    /**\\n     * The base implementation of `_.isTypedArray` without Node.js optimizations.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\\n     */\\n    function baseIsTypedArray(value) {\\n      return isObjectLike(value) &&\\n        isLength(value.length) && !!typedArrayTags[baseGetTag(value)];\\n    }\\n\\n    /**\\n     * The base implementation of `_.iteratee`.\\n     *\\n     * @private\\n     * @param {*} [value=_.identity] The value to convert to an iteratee.\\n     * @returns {Function} Returns the iteratee.\\n     */\\n    function baseIteratee(value) {\\n      // Don't store the `typeof` result in a variable to avoid a JIT bug in Safari 9.\\n      // See https://bugs.webkit.org/show_bug.cgi?id=156034 for more details.\\n      if (typeof value == 'function') {\\n        return value;\\n      }\\n      if (value == null) {\\n        return identity;\\n      }\\n      if (typeof value == 'object') {\\n        return isArray(value)\\n          ? baseMatchesProperty(value[0], value[1])\\n          : baseMatches(value);\\n      }\\n      return property(value);\\n    }\\n\\n    /**\\n     * The base implementation of `_.keys` which doesn't treat sparse arrays as dense.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names.\\n     */\\n    function baseKeys(object) {\\n      if (!isPrototype(object)) {\\n        return nativeKeys(object);\\n      }\\n      var result = [];\\n      for (var key in Object(object)) {\\n        if (hasOwnProperty.call(object, key) && key != 'constructor') {\\n          result.push(key);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names.\\n     */\\n    function baseKeysIn(object) {\\n      if (!isObject(object)) {\\n        return nativeKeysIn(object);\\n      }\\n      var isProto = isPrototype(object),\\n          result = [];\\n\\n      for (var key in object) {\\n        if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\\n          result.push(key);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.lt` which doesn't coerce arguments.\\n     *\\n     * @private\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if `value` is less than `other`,\\n     *  else `false`.\\n     */\\n    function baseLt(value, other) {\\n      return value < other;\\n    }\\n\\n    /**\\n     * The base implementation of `_.map` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} iteratee The function invoked per iteration.\\n     * @returns {Array} Returns the new mapped array.\\n     */\\n    function baseMap(collection, iteratee) {\\n      var index = -1,\\n          result = isArrayLike(collection) ? Array(collection.length) : [];\\n\\n      baseEach(collection, function(value, key, collection) {\\n        result[++index] = iteratee(value, key, collection);\\n      });\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.matches` which doesn't clone `source`.\\n     *\\n     * @private\\n     * @param {Object} source The object of property values to match.\\n     * @returns {Function} Returns the new spec function.\\n     */\\n    function baseMatches(source) {\\n      var matchData = getMatchData(source);\\n      if (matchData.length == 1 && matchData[0][2]) {\\n        return matchesStrictComparable(matchData[0][0], matchData[0][1]);\\n      }\\n      return function(object) {\\n        return object === source || baseIsMatch(object, source, matchData);\\n      };\\n    }\\n\\n    /**\\n     * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`.\\n     *\\n     * @private\\n     * @param {string} path The path of the property to get.\\n     * @param {*} srcValue The value to match.\\n     * @returns {Function} Returns the new spec function.\\n     */\\n    function baseMatchesProperty(path, srcValue) {\\n      if (isKey(path) && isStrictComparable(srcValue)) {\\n        return matchesStrictComparable(toKey(path), srcValue);\\n      }\\n      return function(object) {\\n        var objValue = get(object, path);\\n        return (objValue === undefined && objValue === srcValue)\\n          ? hasIn(object, path)\\n          : baseIsEqual(srcValue, objValue, COMPARE_PARTIAL_FLAG | COMPARE_UNORDERED_FLAG);\\n      };\\n    }\\n\\n    /**\\n     * The base implementation of `_.merge` without support for multiple sources.\\n     *\\n     * @private\\n     * @param {Object} object The destination object.\\n     * @param {Object} source The source object.\\n     * @param {number} srcIndex The index of `source`.\\n     * @param {Function} [customizer] The function to customize merged values.\\n     * @param {Object} [stack] Tracks traversed source values and their merged\\n     *  counterparts.\\n     */\\n    function baseMerge(object, source, srcIndex, customizer, stack) {\\n      if (object === source) {\\n        return;\\n      }\\n      baseFor(source, function(srcValue, key) {\\n        stack || (stack = new Stack);\\n        if (isObject(srcValue)) {\\n          baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);\\n        }\\n        else {\\n          var newValue = customizer\\n            ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack)\\n            : undefined;\\n\\n          if (newValue === undefined) {\\n            newValue = srcValue;\\n          }\\n          assignMergeValue(object, key, newValue);\\n        }\\n      }, keysIn);\\n    }\\n\\n    /**\\n     * A specialized version of `baseMerge` for arrays and objects which performs\\n     * deep merges and tracks traversed objects enabling objects with circular\\n     * references to be merged.\\n     *\\n     * @private\\n     * @param {Object} object The destination object.\\n     * @param {Object} source The source object.\\n     * @param {string} key The key of the value to merge.\\n     * @param {number} srcIndex The index of `source`.\\n     * @param {Function} mergeFunc The function to merge values.\\n     * @param {Function} [customizer] The function to customize assigned values.\\n     * @param {Object} [stack] Tracks traversed source values and their merged\\n     *  counterparts.\\n     */\\n    function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {\\n      var objValue = safeGet(object, key),\\n          srcValue = safeGet(source, key),\\n          stacked = stack.get(srcValue);\\n\\n      if (stacked) {\\n        assignMergeValue(object, key, stacked);\\n        return;\\n      }\\n      var newValue = customizer\\n        ? customizer(objValue, srcValue, (key + ''), object, source, stack)\\n        : undefined;\\n\\n      var isCommon = newValue === undefined;\\n\\n      if (isCommon) {\\n        var isArr = isArray(srcValue),\\n            isBuff = !isArr && isBuffer(srcValue),\\n            isTyped = !isArr && !isBuff && isTypedArray(srcValue);\\n\\n        newValue = srcValue;\\n        if (isArr || isBuff || isTyped) {\\n          if (isArray(objValue)) {\\n            newValue = objValue;\\n          }\\n          else if (isArrayLikeObject(objValue)) {\\n            newValue = copyArray(objValue);\\n          }\\n          else if (isBuff) {\\n            isCommon = false;\\n            newValue = cloneBuffer(srcValue, true);\\n          }\\n          else if (isTyped) {\\n            isCommon = false;\\n            newValue = cloneTypedArray(srcValue, true);\\n          }\\n          else {\\n            newValue = [];\\n          }\\n        }\\n        else if (isPlainObject(srcValue) || isArguments(srcValue)) {\\n          newValue = objValue;\\n          if (isArguments(objValue)) {\\n            newValue = toPlainObject(objValue);\\n          }\\n          else if (!isObject(objValue) || isFunction(objValue)) {\\n            newValue = initCloneObject(srcValue);\\n          }\\n        }\\n        else {\\n          isCommon = false;\\n        }\\n      }\\n      if (isCommon) {\\n        // Recursively merge objects and arrays (susceptible to call stack limits).\\n        stack.set(srcValue, newValue);\\n        mergeFunc(newValue, srcValue, srcIndex, customizer, stack);\\n        stack['delete'](srcValue);\\n      }\\n      assignMergeValue(object, key, newValue);\\n    }\\n\\n    /**\\n     * The base implementation of `_.nth` which doesn't coerce arguments.\\n     *\\n     * @private\\n     * @param {Array} array The array to query.\\n     * @param {number} n The index of the element to return.\\n     * @returns {*} Returns the nth element of `array`.\\n     */\\n    function baseNth(array, n) {\\n      var length = array.length;\\n      if (!length) {\\n        return;\\n      }\\n      n += n < 0 ? length : 0;\\n      return isIndex(n, length) ? array[n] : undefined;\\n    }\\n\\n    /**\\n     * The base implementation of `_.orderBy` without param guards.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function[]|Object[]|string[]} iteratees The iteratees to sort by.\\n     * @param {string[]} orders The sort orders of `iteratees`.\\n     * @returns {Array} Returns the new sorted array.\\n     */\\n    function baseOrderBy(collection, iteratees, orders) {\\n      if (iteratees.length) {\\n        iteratees = arrayMap(iteratees, function(iteratee) {\\n          if (isArray(iteratee)) {\\n            return function(value) {\\n              return baseGet(value, iteratee.length === 1 ? iteratee[0] : iteratee);\\n            }\\n          }\\n          return iteratee;\\n        });\\n      } else {\\n        iteratees = [identity];\\n      }\\n\\n      var index = -1;\\n      iteratees = arrayMap(iteratees, baseUnary(getIteratee()));\\n\\n      var result = baseMap(collection, function(value, key, collection) {\\n        var criteria = arrayMap(iteratees, function(iteratee) {\\n          return iteratee(value);\\n        });\\n        return { 'criteria': criteria, 'index': ++index, 'value': value };\\n      });\\n\\n      return baseSortBy(result, function(object, other) {\\n        return compareMultiple(object, other, orders);\\n      });\\n    }\\n\\n    /**\\n     * The base implementation of `_.pick` without support for individual\\n     * property identifiers.\\n     *\\n     * @private\\n     * @param {Object} object The source object.\\n     * @param {string[]} paths The property paths to pick.\\n     * @returns {Object} Returns the new object.\\n     */\\n    function basePick(object, paths) {\\n      return basePickBy(object, paths, function(value, path) {\\n        return hasIn(object, path);\\n      });\\n    }\\n\\n    /**\\n     * The base implementation of  `_.pickBy` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Object} object The source object.\\n     * @param {string[]} paths The property paths to pick.\\n     * @param {Function} predicate The function invoked per property.\\n     * @returns {Object} Returns the new object.\\n     */\\n    function basePickBy(object, paths, predicate) {\\n      var index = -1,\\n          length = paths.length,\\n          result = {};\\n\\n      while (++index < length) {\\n        var path = paths[index],\\n            value = baseGet(object, path);\\n\\n        if (predicate(value, path)) {\\n          baseSet(result, castPath(path, object), value);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * A specialized version of `baseProperty` which supports deep paths.\\n     *\\n     * @private\\n     * @param {Array|string} path The path of the property to get.\\n     * @returns {Function} Returns the new accessor function.\\n     */\\n    function basePropertyDeep(path) {\\n      return function(object) {\\n        return baseGet(object, path);\\n      };\\n    }\\n\\n    /**\\n     * The base implementation of `_.pullAllBy` without support for iteratee\\n     * shorthands.\\n     *\\n     * @private\\n     * @param {Array} array The array to modify.\\n     * @param {Array} values The values to remove.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns `array`.\\n     */\\n    function basePullAll(array, values, iteratee, comparator) {\\n      var indexOf = comparator ? baseIndexOfWith : baseIndexOf,\\n          index = -1,\\n          length = values.length,\\n          seen = array;\\n\\n      if (array === values) {\\n        values = copyArray(values);\\n      }\\n      if (iteratee) {\\n        seen = arrayMap(array, baseUnary(iteratee));\\n      }\\n      while (++index < length) {\\n        var fromIndex = 0,\\n            value = values[index],\\n            computed = iteratee ? iteratee(value) : value;\\n\\n        while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) {\\n          if (seen !== array) {\\n            splice.call(seen, fromIndex, 1);\\n          }\\n          splice.call(array, fromIndex, 1);\\n        }\\n      }\\n      return array;\\n    }\\n\\n    /**\\n     * The base implementation of `_.pullAt` without support for individual\\n     * indexes or capturing the removed elements.\\n     *\\n     * @private\\n     * @param {Array} array The array to modify.\\n     * @param {number[]} indexes The indexes of elements to remove.\\n     * @returns {Array} Returns `array`.\\n     */\\n    function basePullAt(array, indexes) {\\n      var length = array ? indexes.length : 0,\\n          lastIndex = length - 1;\\n\\n      while (length--) {\\n        var index = indexes[length];\\n        if (length == lastIndex || index !== previous) {\\n          var previous = index;\\n          if (isIndex(index)) {\\n            splice.call(array, index, 1);\\n          } else {\\n            baseUnset(array, index);\\n          }\\n        }\\n      }\\n      return array;\\n    }\\n\\n    /**\\n     * The base implementation of `_.random` without support for returning\\n     * floating-point numbers.\\n     *\\n     * @private\\n     * @param {number} lower The lower bound.\\n     * @param {number} upper The upper bound.\\n     * @returns {number} Returns the random number.\\n     */\\n    function baseRandom(lower, upper) {\\n      return lower + nativeFloor(nativeRandom() * (upper - lower + 1));\\n    }\\n\\n    /**\\n     * The base implementation of `_.range` and `_.rangeRight` which doesn't\\n     * coerce arguments.\\n     *\\n     * @private\\n     * @param {number} start The start of the range.\\n     * @param {number} end The end of the range.\\n     * @param {number} step The value to increment or decrement by.\\n     * @param {boolean} [fromRight] Specify iterating from right to left.\\n     * @returns {Array} Returns the range of numbers.\\n     */\\n    function baseRange(start, end, step, fromRight) {\\n      var index = -1,\\n          length = nativeMax(nativeCeil((end - start) / (step || 1)), 0),\\n          result = Array(length);\\n\\n      while (length--) {\\n        result[fromRight ? length : ++index] = start;\\n        start += step;\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.repeat` which doesn't coerce arguments.\\n     *\\n     * @private\\n     * @param {string} string The string to repeat.\\n     * @param {number} n The number of times to repeat the string.\\n     * @returns {string} Returns the repeated string.\\n     */\\n    function baseRepeat(string, n) {\\n      var result = '';\\n      if (!string || n < 1 || n > MAX_SAFE_INTEGER) {\\n        return result;\\n      }\\n      // Leverage the exponentiation by squaring algorithm for a faster repeat.\\n      // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details.\\n      do {\\n        if (n % 2) {\\n          result += string;\\n        }\\n        n = nativeFloor(n / 2);\\n        if (n) {\\n          string += string;\\n        }\\n      } while (n);\\n\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.rest` which doesn't validate or coerce arguments.\\n     *\\n     * @private\\n     * @param {Function} func The function to apply a rest parameter to.\\n     * @param {number} [start=func.length-1] The start position of the rest parameter.\\n     * @returns {Function} Returns the new function.\\n     */\\n    function baseRest(func, start) {\\n      return setToString(overRest(func, start, identity), func + '');\\n    }\\n\\n    /**\\n     * The base implementation of `_.sample`.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to sample.\\n     * @returns {*} Returns the random element.\\n     */\\n    function baseSample(collection) {\\n      return arraySample(values(collection));\\n    }\\n\\n    /**\\n     * The base implementation of `_.sampleSize` without param guards.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to sample.\\n     * @param {number} n The number of elements to sample.\\n     * @returns {Array} Returns the random elements.\\n     */\\n    function baseSampleSize(collection, n) {\\n      var array = values(collection);\\n      return shuffleSelf(array, baseClamp(n, 0, array.length));\\n    }\\n\\n    /**\\n     * The base implementation of `_.set`.\\n     *\\n     * @private\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to set.\\n     * @param {*} value The value to set.\\n     * @param {Function} [customizer] The function to customize path creation.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function baseSet(object, path, value, customizer) {\\n      if (!isObject(object)) {\\n        return object;\\n      }\\n      path = castPath(path, object);\\n\\n      var index = -1,\\n          length = path.length,\\n          lastIndex = length - 1,\\n          nested = object;\\n\\n      while (nested != null && ++index < length) {\\n        var key = toKey(path[index]),\\n            newValue = value;\\n\\n        if (key === '__proto__' || key === 'constructor' || key === 'prototype') {\\n          return object;\\n        }\\n\\n        if (index != lastIndex) {\\n          var objValue = nested[key];\\n          newValue = customizer ? customizer(objValue, key, nested) : undefined;\\n          if (newValue === undefined) {\\n            newValue = isObject(objValue)\\n              ? objValue\\n              : (isIndex(path[index + 1]) ? [] : {});\\n          }\\n        }\\n        assignValue(nested, key, newValue);\\n        nested = nested[key];\\n      }\\n      return object;\\n    }\\n\\n    /**\\n     * The base implementation of `setData` without support for hot loop shorting.\\n     *\\n     * @private\\n     * @param {Function} func The function to associate metadata with.\\n     * @param {*} data The metadata.\\n     * @returns {Function} Returns `func`.\\n     */\\n    var baseSetData = !metaMap ? identity : function(func, data) {\\n      metaMap.set(func, data);\\n      return func;\\n    };\\n\\n    /**\\n     * The base implementation of `setToString` without support for hot loop shorting.\\n     *\\n     * @private\\n     * @param {Function} func The function to modify.\\n     * @param {Function} string The `toString` result.\\n     * @returns {Function} Returns `func`.\\n     */\\n    var baseSetToString = !defineProperty ? identity : function(func, string) {\\n      return defineProperty(func, 'toString', {\\n        'configurable': true,\\n        'enumerable': false,\\n        'value': constant(string),\\n        'writable': true\\n      });\\n    };\\n\\n    /**\\n     * The base implementation of `_.shuffle`.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to shuffle.\\n     * @returns {Array} Returns the new shuffled array.\\n     */\\n    function baseShuffle(collection) {\\n      return shuffleSelf(values(collection));\\n    }\\n\\n    /**\\n     * The base implementation of `_.slice` without an iteratee call guard.\\n     *\\n     * @private\\n     * @param {Array} array The array to slice.\\n     * @param {number} [start=0] The start position.\\n     * @param {number} [end=array.length] The end position.\\n     * @returns {Array} Returns the slice of `array`.\\n     */\\n    function baseSlice(array, start, end) {\\n      var index = -1,\\n          length = array.length;\\n\\n      if (start < 0) {\\n        start = -start > length ? 0 : (length + start);\\n      }\\n      end = end > length ? length : end;\\n      if (end < 0) {\\n        end += length;\\n      }\\n      length = start > end ? 0 : ((end - start) >>> 0);\\n      start >>>= 0;\\n\\n      var result = Array(length);\\n      while (++index < length) {\\n        result[index] = array[index + start];\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.some` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} predicate The function invoked per iteration.\\n     * @returns {boolean} Returns `true` if any element passes the predicate check,\\n     *  else `false`.\\n     */\\n    function baseSome(collection, predicate) {\\n      var result;\\n\\n      baseEach(collection, function(value, index, collection) {\\n        result = predicate(value, index, collection);\\n        return !result;\\n      });\\n      return !!result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.sortedIndex` and `_.sortedLastIndex` which\\n     * performs a binary search of `array` to determine the index at which `value`\\n     * should be inserted into `array` in order to maintain its sort order.\\n     *\\n     * @private\\n     * @param {Array} array The sorted array to inspect.\\n     * @param {*} value The value to evaluate.\\n     * @param {boolean} [retHighest] Specify returning the highest qualified index.\\n     * @returns {number} Returns the index at which `value` should be inserted\\n     *  into `array`.\\n     */\\n    function baseSortedIndex(array, value, retHighest) {\\n      var low = 0,\\n          high = array == null ? low : array.length;\\n\\n      if (typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) {\\n        while (low < high) {\\n          var mid = (low + high) >>> 1,\\n              computed = array[mid];\\n\\n          if (computed !== null && !isSymbol(computed) &&\\n              (retHighest ? (computed <= value) : (computed < value))) {\\n            low = mid + 1;\\n          } else {\\n            high = mid;\\n          }\\n        }\\n        return high;\\n      }\\n      return baseSortedIndexBy(array, value, identity, retHighest);\\n    }\\n\\n    /**\\n     * The base implementation of `_.sortedIndexBy` and `_.sortedLastIndexBy`\\n     * which invokes `iteratee` for `value` and each element of `array` to compute\\n     * their sort ranking. The iteratee is invoked with one argument; (value).\\n     *\\n     * @private\\n     * @param {Array} array The sorted array to inspect.\\n     * @param {*} value The value to evaluate.\\n     * @param {Function} iteratee The iteratee invoked per element.\\n     * @param {boolean} [retHighest] Specify returning the highest qualified index.\\n     * @returns {number} Returns the index at which `value` should be inserted\\n     *  into `array`.\\n     */\\n    function baseSortedIndexBy(array, value, iteratee, retHighest) {\\n      var low = 0,\\n          high = array == null ? 0 : array.length;\\n      if (high === 0) {\\n        return 0;\\n      }\\n\\n      value = iteratee(value);\\n      var valIsNaN = value !== value,\\n          valIsNull = value === null,\\n          valIsSymbol = isSymbol(value),\\n          valIsUndefined = value === undefined;\\n\\n      while (low < high) {\\n        var mid = nativeFloor((low + high) / 2),\\n            computed = iteratee(array[mid]),\\n            othIsDefined = computed !== undefined,\\n            othIsNull = computed === null,\\n            othIsReflexive = computed === computed,\\n            othIsSymbol = isSymbol(computed);\\n\\n        if (valIsNaN) {\\n          var setLow = retHighest || othIsReflexive;\\n        } else if (valIsUndefined) {\\n          setLow = othIsReflexive && (retHighest || othIsDefined);\\n        } else if (valIsNull) {\\n          setLow = othIsReflexive && othIsDefined && (retHighest || !othIsNull);\\n        } else if (valIsSymbol) {\\n          setLow = othIsReflexive && othIsDefined && !othIsNull && (retHighest || !othIsSymbol);\\n        } else if (othIsNull || othIsSymbol) {\\n          setLow = false;\\n        } else {\\n          setLow = retHighest ? (computed <= value) : (computed < value);\\n        }\\n        if (setLow) {\\n          low = mid + 1;\\n        } else {\\n          high = mid;\\n        }\\n      }\\n      return nativeMin(high, MAX_ARRAY_INDEX);\\n    }\\n\\n    /**\\n     * The base implementation of `_.sortedUniq` and `_.sortedUniqBy` without\\n     * support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @returns {Array} Returns the new duplicate free array.\\n     */\\n    function baseSortedUniq(array, iteratee) {\\n      var index = -1,\\n          length = array.length,\\n          resIndex = 0,\\n          result = [];\\n\\n      while (++index < length) {\\n        var value = array[index],\\n            computed = iteratee ? iteratee(value) : value;\\n\\n        if (!index || !eq(computed, seen)) {\\n          var seen = computed;\\n          result[resIndex++] = value === 0 ? 0 : value;\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.toNumber` which doesn't ensure correct\\n     * conversions of binary, hexadecimal, or octal string values.\\n     *\\n     * @private\\n     * @param {*} value The value to process.\\n     * @returns {number} Returns the number.\\n     */\\n    function baseToNumber(value) {\\n      if (typeof value == 'number') {\\n        return value;\\n      }\\n      if (isSymbol(value)) {\\n        return NAN;\\n      }\\n      return +value;\\n    }\\n\\n    /**\\n     * The base implementation of `_.toString` which doesn't convert nullish\\n     * values to empty strings.\\n     *\\n     * @private\\n     * @param {*} value The value to process.\\n     * @returns {string} Returns the string.\\n     */\\n    function baseToString(value) {\\n      // Exit early for strings to avoid a performance hit in some environments.\\n      if (typeof value == 'string') {\\n        return value;\\n      }\\n      if (isArray(value)) {\\n        // Recursively convert values (susceptible to call stack limits).\\n        return arrayMap(value, baseToString) + '';\\n      }\\n      if (isSymbol(value)) {\\n        return symbolToString ? symbolToString.call(value) : '';\\n      }\\n      var result = (value + '');\\n      return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.uniqBy` without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new duplicate free array.\\n     */\\n    function baseUniq(array, iteratee, comparator) {\\n      var index = -1,\\n          includes = arrayIncludes,\\n          length = array.length,\\n          isCommon = true,\\n          result = [],\\n          seen = result;\\n\\n      if (comparator) {\\n        isCommon = false;\\n        includes = arrayIncludesWith;\\n      }\\n      else if (length >= LARGE_ARRAY_SIZE) {\\n        var set = iteratee ? null : createSet(array);\\n        if (set) {\\n          return setToArray(set);\\n        }\\n        isCommon = false;\\n        includes = cacheHas;\\n        seen = new SetCache;\\n      }\\n      else {\\n        seen = iteratee ? [] : result;\\n      }\\n      outer:\\n      while (++index < length) {\\n        var value = array[index],\\n            computed = iteratee ? iteratee(value) : value;\\n\\n        value = (comparator || value !== 0) ? value : 0;\\n        if (isCommon && computed === computed) {\\n          var seenIndex = seen.length;\\n          while (seenIndex--) {\\n            if (seen[seenIndex] === computed) {\\n              continue outer;\\n            }\\n          }\\n          if (iteratee) {\\n            seen.push(computed);\\n          }\\n          result.push(value);\\n        }\\n        else if (!includes(seen, computed, comparator)) {\\n          if (seen !== result) {\\n            seen.push(computed);\\n          }\\n          result.push(value);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * The base implementation of `_.unset`.\\n     *\\n     * @private\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The property path to unset.\\n     * @returns {boolean} Returns `true` if the property is deleted, else `false`.\\n     */\\n    function baseUnset(object, path) {\\n      path = castPath(path, object);\\n      object = parent(object, path);\\n      return object == null || delete object[toKey(last(path))];\\n    }\\n\\n    /**\\n     * The base implementation of `_.update`.\\n     *\\n     * @private\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to update.\\n     * @param {Function} updater The function to produce the updated value.\\n     * @param {Function} [customizer] The function to customize path creation.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function baseUpdate(object, path, updater, customizer) {\\n      return baseSet(object, path, updater(baseGet(object, path)), customizer);\\n    }\\n\\n    /**\\n     * The base implementation of methods like `_.dropWhile` and `_.takeWhile`\\n     * without support for iteratee shorthands.\\n     *\\n     * @private\\n     * @param {Array} array The array to query.\\n     * @param {Function} predicate The function invoked per iteration.\\n     * @param {boolean} [isDrop] Specify dropping elements instead of taking them.\\n     * @param {boolean} [fromRight] Specify iterating from right to left.\\n     * @returns {Array} Returns the slice of `array`.\\n     */\\n    function baseWhile(array, predicate, isDrop, fromRight) {\\n      var length = array.length,\\n          index = fromRight ? length : -1;\\n\\n      while ((fromRight ? index-- : ++index < length) &&\\n        predicate(array[index], index, array)) {}\\n\\n      return isDrop\\n        ? baseSlice(array, (fromRight ? 0 : index), (fromRight ? index + 1 : length))\\n        : baseSlice(array, (fromRight ? index + 1 : 0), (fromRight ? length : index));\\n    }\\n\\n    /**\\n     * The base implementation of `wrapperValue` which returns the result of\\n     * performing a sequence of actions on the unwrapped `value`, where each\\n     * successive action is supplied the return value of the previous.\\n     *\\n     * @private\\n     * @param {*} value The unwrapped value.\\n     * @param {Array} actions Actions to perform to resolve the unwrapped value.\\n     * @returns {*} Returns the resolved value.\\n     */\\n    function baseWrapperValue(value, actions) {\\n      var result = value;\\n      if (result instanceof LazyWrapper) {\\n        result = result.value();\\n      }\\n      return arrayReduce(actions, function(result, action) {\\n        return action.func.apply(action.thisArg, arrayPush([result], action.args));\\n      }, result);\\n    }\\n\\n    /**\\n     * The base implementation of methods like `_.xor`, without support for\\n     * iteratee shorthands, that accepts an array of arrays to inspect.\\n     *\\n     * @private\\n     * @param {Array} arrays The arrays to inspect.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of values.\\n     */\\n    function baseXor(arrays, iteratee, comparator) {\\n      var length = arrays.length;\\n      if (length < 2) {\\n        return length ? baseUniq(arrays[0]) : [];\\n      }\\n      var index = -1,\\n          result = Array(length);\\n\\n      while (++index < length) {\\n        var array = arrays[index],\\n            othIndex = -1;\\n\\n        while (++othIndex < length) {\\n          if (othIndex != index) {\\n            result[index] = baseDifference(result[index] || array, arrays[othIndex], iteratee, comparator);\\n          }\\n        }\\n      }\\n      return baseUniq(baseFlatten(result, 1), iteratee, comparator);\\n    }\\n\\n    /**\\n     * This base implementation of `_.zipObject` which assigns values using `assignFunc`.\\n     *\\n     * @private\\n     * @param {Array} props The property identifiers.\\n     * @param {Array} values The property values.\\n     * @param {Function} assignFunc The function to assign values.\\n     * @returns {Object} Returns the new object.\\n     */\\n    function baseZipObject(props, values, assignFunc) {\\n      var index = -1,\\n          length = props.length,\\n          valsLength = values.length,\\n          result = {};\\n\\n      while (++index < length) {\\n        var value = index < valsLength ? values[index] : undefined;\\n        assignFunc(result, props[index], value);\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Casts `value` to an empty array if it's not an array like object.\\n     *\\n     * @private\\n     * @param {*} value The value to inspect.\\n     * @returns {Array|Object} Returns the cast array-like object.\\n     */\\n    function castArrayLikeObject(value) {\\n      return isArrayLikeObject(value) ? value : [];\\n    }\\n\\n    /**\\n     * Casts `value` to `identity` if it's not a function.\\n     *\\n     * @private\\n     * @param {*} value The value to inspect.\\n     * @returns {Function} Returns cast function.\\n     */\\n    function castFunction(value) {\\n      return typeof value == 'function' ? value : identity;\\n    }\\n\\n    /**\\n     * Casts `value` to a path array if it's not one.\\n     *\\n     * @private\\n     * @param {*} value The value to inspect.\\n     * @param {Object} [object] The object to query keys on.\\n     * @returns {Array} Returns the cast property path array.\\n     */\\n    function castPath(value, object) {\\n      if (isArray(value)) {\\n        return value;\\n      }\\n      return isKey(value, object) ? [value] : stringToPath(toString(value));\\n    }\\n\\n    /**\\n     * A `baseRest` alias which can be replaced with `identity` by module\\n     * replacement plugins.\\n     *\\n     * @private\\n     * @type {Function}\\n     * @param {Function} func The function to apply a rest parameter to.\\n     * @returns {Function} Returns the new function.\\n     */\\n    var castRest = baseRest;\\n\\n    /**\\n     * Casts `array` to a slice if it's needed.\\n     *\\n     * @private\\n     * @param {Array} array The array to inspect.\\n     * @param {number} start The start position.\\n     * @param {number} [end=array.length] The end position.\\n     * @returns {Array} Returns the cast slice.\\n     */\\n    function castSlice(array, start, end) {\\n      var length = array.length;\\n      end = end === undefined ? length : end;\\n      return (!start && end >= length) ? array : baseSlice(array, start, end);\\n    }\\n\\n    /**\\n     * A simple wrapper around the global [`clearTimeout`](https://mdn.io/clearTimeout).\\n     *\\n     * @private\\n     * @param {number|Object} id The timer id or timeout object of the timer to clear.\\n     */\\n    var clearTimeout = ctxClearTimeout || function(id) {\\n      return root.clearTimeout(id);\\n    };\\n\\n    /**\\n     * Creates a clone of  `buffer`.\\n     *\\n     * @private\\n     * @param {Buffer} buffer The buffer to clone.\\n     * @param {boolean} [isDeep] Specify a deep clone.\\n     * @returns {Buffer} Returns the cloned buffer.\\n     */\\n    function cloneBuffer(buffer, isDeep) {\\n      if (isDeep) {\\n        return buffer.slice();\\n      }\\n      var length = buffer.length,\\n          result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);\\n\\n      buffer.copy(result);\\n      return result;\\n    }\\n\\n    /**\\n     * Creates a clone of `arrayBuffer`.\\n     *\\n     * @private\\n     * @param {ArrayBuffer} arrayBuffer The array buffer to clone.\\n     * @returns {ArrayBuffer} Returns the cloned array buffer.\\n     */\\n    function cloneArrayBuffer(arrayBuffer) {\\n      var result = new arrayBuffer.constructor(arrayBuffer.byteLength);\\n      new Uint8Array(result).set(new Uint8Array(arrayBuffer));\\n      return result;\\n    }\\n\\n    /**\\n     * Creates a clone of `dataView`.\\n     *\\n     * @private\\n     * @param {Object} dataView The data view to clone.\\n     * @param {boolean} [isDeep] Specify a deep clone.\\n     * @returns {Object} Returns the cloned data view.\\n     */\\n    function cloneDataView(dataView, isDeep) {\\n      var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer;\\n      return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);\\n    }\\n\\n    /**\\n     * Creates a clone of `regexp`.\\n     *\\n     * @private\\n     * @param {Object} regexp The regexp to clone.\\n     * @returns {Object} Returns the cloned regexp.\\n     */\\n    function cloneRegExp(regexp) {\\n      var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));\\n      result.lastIndex = regexp.lastIndex;\\n      return result;\\n    }\\n\\n    /**\\n     * Creates a clone of the `symbol` object.\\n     *\\n     * @private\\n     * @param {Object} symbol The symbol object to clone.\\n     * @returns {Object} Returns the cloned symbol object.\\n     */\\n    function cloneSymbol(symbol) {\\n      return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};\\n    }\\n\\n    /**\\n     * Creates a clone of `typedArray`.\\n     *\\n     * @private\\n     * @param {Object} typedArray The typed array to clone.\\n     * @param {boolean} [isDeep] Specify a deep clone.\\n     * @returns {Object} Returns the cloned typed array.\\n     */\\n    function cloneTypedArray(typedArray, isDeep) {\\n      var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;\\n      return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);\\n    }\\n\\n    /**\\n     * Compares values to sort them in ascending order.\\n     *\\n     * @private\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {number} Returns the sort order indicator for `value`.\\n     */\\n    function compareAscending(value, other) {\\n      if (value !== other) {\\n        var valIsDefined = value !== undefined,\\n            valIsNull = value === null,\\n            valIsReflexive = value === value,\\n            valIsSymbol = isSymbol(value);\\n\\n        var othIsDefined = other !== undefined,\\n            othIsNull = other === null,\\n            othIsReflexive = other === other,\\n            othIsSymbol = isSymbol(other);\\n\\n        if ((!othIsNull && !othIsSymbol && !valIsSymbol && value > other) ||\\n            (valIsSymbol && othIsDefined && othIsReflexive && !othIsNull && !othIsSymbol) ||\\n            (valIsNull && othIsDefined && othIsReflexive) ||\\n            (!valIsDefined && othIsReflexive) ||\\n            !valIsReflexive) {\\n          return 1;\\n        }\\n        if ((!valIsNull && !valIsSymbol && !othIsSymbol && value < other) ||\\n            (othIsSymbol && valIsDefined && valIsReflexive && !valIsNull && !valIsSymbol) ||\\n            (othIsNull && valIsDefined && valIsReflexive) ||\\n            (!othIsDefined && valIsReflexive) ||\\n            !othIsReflexive) {\\n          return -1;\\n        }\\n      }\\n      return 0;\\n    }\\n\\n    /**\\n     * Used by `_.orderBy` to compare multiple properties of a value to another\\n     * and stable sort them.\\n     *\\n     * If `orders` is unspecified, all values are sorted in ascending order. Otherwise,\\n     * specify an order of \\\"desc\\\" for descending or \\\"asc\\\" for ascending sort order\\n     * of corresponding values.\\n     *\\n     * @private\\n     * @param {Object} object The object to compare.\\n     * @param {Object} other The other object to compare.\\n     * @param {boolean[]|string[]} orders The order to sort by for each property.\\n     * @returns {number} Returns the sort order indicator for `object`.\\n     */\\n    function compareMultiple(object, other, orders) {\\n      var index = -1,\\n          objCriteria = object.criteria,\\n          othCriteria = other.criteria,\\n          length = objCriteria.length,\\n          ordersLength = orders.length;\\n\\n      while (++index < length) {\\n        var result = compareAscending(objCriteria[index], othCriteria[index]);\\n        if (result) {\\n          if (index >= ordersLength) {\\n            return result;\\n          }\\n          var order = orders[index];\\n          return result * (order == 'desc' ? -1 : 1);\\n        }\\n      }\\n      // Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications\\n      // that causes it, under certain circumstances, to provide the same value for\\n      // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247\\n      // for more details.\\n      //\\n      // This also ensures a stable sort in V8 and other engines.\\n      // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details.\\n      return object.index - other.index;\\n    }\\n\\n    /**\\n     * Creates an array that is the composition of partially applied arguments,\\n     * placeholders, and provided arguments into a single array of arguments.\\n     *\\n     * @private\\n     * @param {Array} args The provided arguments.\\n     * @param {Array} partials The arguments to prepend to those provided.\\n     * @param {Array} holders The `partials` placeholder indexes.\\n     * @params {boolean} [isCurried] Specify composing for a curried function.\\n     * @returns {Array} Returns the new array of composed arguments.\\n     */\\n    function composeArgs(args, partials, holders, isCurried) {\\n      var argsIndex = -1,\\n          argsLength = args.length,\\n          holdersLength = holders.length,\\n          leftIndex = -1,\\n          leftLength = partials.length,\\n          rangeLength = nativeMax(argsLength - holdersLength, 0),\\n          result = Array(leftLength + rangeLength),\\n          isUncurried = !isCurried;\\n\\n      while (++leftIndex < leftLength) {\\n        result[leftIndex] = partials[leftIndex];\\n      }\\n      while (++argsIndex < holdersLength) {\\n        if (isUncurried || argsIndex < argsLength) {\\n          result[holders[argsIndex]] = args[argsIndex];\\n        }\\n      }\\n      while (rangeLength--) {\\n        result[leftIndex++] = args[argsIndex++];\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * This function is like `composeArgs` except that the arguments composition\\n     * is tailored for `_.partialRight`.\\n     *\\n     * @private\\n     * @param {Array} args The provided arguments.\\n     * @param {Array} partials The arguments to append to those provided.\\n     * @param {Array} holders The `partials` placeholder indexes.\\n     * @params {boolean} [isCurried] Specify composing for a curried function.\\n     * @returns {Array} Returns the new array of composed arguments.\\n     */\\n    function composeArgsRight(args, partials, holders, isCurried) {\\n      var argsIndex = -1,\\n          argsLength = args.length,\\n          holdersIndex = -1,\\n          holdersLength = holders.length,\\n          rightIndex = -1,\\n          rightLength = partials.length,\\n          rangeLength = nativeMax(argsLength - holdersLength, 0),\\n          result = Array(rangeLength + rightLength),\\n          isUncurried = !isCurried;\\n\\n      while (++argsIndex < rangeLength) {\\n        result[argsIndex] = args[argsIndex];\\n      }\\n      var offset = argsIndex;\\n      while (++rightIndex < rightLength) {\\n        result[offset + rightIndex] = partials[rightIndex];\\n      }\\n      while (++holdersIndex < holdersLength) {\\n        if (isUncurried || argsIndex < argsLength) {\\n          result[offset + holders[holdersIndex]] = args[argsIndex++];\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Copies the values of `source` to `array`.\\n     *\\n     * @private\\n     * @param {Array} source The array to copy values from.\\n     * @param {Array} [array=[]] The array to copy values to.\\n     * @returns {Array} Returns `array`.\\n     */\\n    function copyArray(source, array) {\\n      var index = -1,\\n          length = source.length;\\n\\n      array || (array = Array(length));\\n      while (++index < length) {\\n        array[index] = source[index];\\n      }\\n      return array;\\n    }\\n\\n    /**\\n     * Copies properties of `source` to `object`.\\n     *\\n     * @private\\n     * @param {Object} source The object to copy properties from.\\n     * @param {Array} props The property identifiers to copy.\\n     * @param {Object} [object={}] The object to copy properties to.\\n     * @param {Function} [customizer] The function to customize copied values.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function copyObject(source, props, object, customizer) {\\n      var isNew = !object;\\n      object || (object = {});\\n\\n      var index = -1,\\n          length = props.length;\\n\\n      while (++index < length) {\\n        var key = props[index];\\n\\n        var newValue = customizer\\n          ? customizer(object[key], source[key], key, object, source)\\n          : undefined;\\n\\n        if (newValue === undefined) {\\n          newValue = source[key];\\n        }\\n        if (isNew) {\\n          baseAssignValue(object, key, newValue);\\n        } else {\\n          assignValue(object, key, newValue);\\n        }\\n      }\\n      return object;\\n    }\\n\\n    /**\\n     * Copies own symbols of `source` to `object`.\\n     *\\n     * @private\\n     * @param {Object} source The object to copy symbols from.\\n     * @param {Object} [object={}] The object to copy symbols to.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function copySymbols(source, object) {\\n      return copyObject(source, getSymbols(source), object);\\n    }\\n\\n    /**\\n     * Copies own and inherited symbols of `source` to `object`.\\n     *\\n     * @private\\n     * @param {Object} source The object to copy symbols from.\\n     * @param {Object} [object={}] The object to copy symbols to.\\n     * @returns {Object} Returns `object`.\\n     */\\n    function copySymbolsIn(source, object) {\\n      return copyObject(source, getSymbolsIn(source), object);\\n    }\\n\\n    /**\\n     * Creates a function like `_.groupBy`.\\n     *\\n     * @private\\n     * @param {Function} setter The function to set accumulator values.\\n     * @param {Function} [initializer] The accumulator object initializer.\\n     * @returns {Function} Returns the new aggregator function.\\n     */\\n    function createAggregator(setter, initializer) {\\n      return function(collection, iteratee) {\\n        var func = isArray(collection) ? arrayAggregator : baseAggregator,\\n            accumulator = initializer ? initializer() : {};\\n\\n        return func(collection, setter, getIteratee(iteratee, 2), accumulator);\\n      };\\n    }\\n\\n    /**\\n     * Creates a function like `_.assign`.\\n     *\\n     * @private\\n     * @param {Function} assigner The function to assign values.\\n     * @returns {Function} Returns the new assigner function.\\n     */\\n    function createAssigner(assigner) {\\n      return baseRest(function(object, sources) {\\n        var index = -1,\\n            length = sources.length,\\n            customizer = length > 1 ? sources[length - 1] : undefined,\\n            guard = length > 2 ? sources[2] : undefined;\\n\\n        customizer = (assigner.length > 3 && typeof customizer == 'function')\\n          ? (length--, customizer)\\n          : undefined;\\n\\n        if (guard && isIterateeCall(sources[0], sources[1], guard)) {\\n          customizer = length < 3 ? undefined : customizer;\\n          length = 1;\\n        }\\n        object = Object(object);\\n        while (++index < length) {\\n          var source = sources[index];\\n          if (source) {\\n            assigner(object, source, index, customizer);\\n          }\\n        }\\n        return object;\\n      });\\n    }\\n\\n    /**\\n     * Creates a `baseEach` or `baseEachRight` function.\\n     *\\n     * @private\\n     * @param {Function} eachFunc The function to iterate over a collection.\\n     * @param {boolean} [fromRight] Specify iterating from right to left.\\n     * @returns {Function} Returns the new base function.\\n     */\\n    function createBaseEach(eachFunc, fromRight) {\\n      return function(collection, iteratee) {\\n        if (collection == null) {\\n          return collection;\\n        }\\n        if (!isArrayLike(collection)) {\\n          return eachFunc(collection, iteratee);\\n        }\\n        var length = collection.length,\\n            index = fromRight ? length : -1,\\n            iterable = Object(collection);\\n\\n        while ((fromRight ? index-- : ++index < length)) {\\n          if (iteratee(iterable[index], index, iterable) === false) {\\n            break;\\n          }\\n        }\\n        return collection;\\n      };\\n    }\\n\\n    /**\\n     * Creates a base function for methods like `_.forIn` and `_.forOwn`.\\n     *\\n     * @private\\n     * @param {boolean} [fromRight] Specify iterating from right to left.\\n     * @returns {Function} Returns the new base function.\\n     */\\n    function createBaseFor(fromRight) {\\n      return function(object, iteratee, keysFunc) {\\n        var index = -1,\\n            iterable = Object(object),\\n            props = keysFunc(object),\\n            length = props.length;\\n\\n        while (length--) {\\n          var key = props[fromRight ? length : ++index];\\n          if (iteratee(iterable[key], key, iterable) === false) {\\n            break;\\n          }\\n        }\\n        return object;\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that wraps `func` to invoke it with the optional `this`\\n     * binding of `thisArg`.\\n     *\\n     * @private\\n     * @param {Function} func The function to wrap.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @param {*} [thisArg] The `this` binding of `func`.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createBind(func, bitmask, thisArg) {\\n      var isBind = bitmask & WRAP_BIND_FLAG,\\n          Ctor = createCtor(func);\\n\\n      function wrapper() {\\n        var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;\\n        return fn.apply(isBind ? thisArg : this, arguments);\\n      }\\n      return wrapper;\\n    }\\n\\n    /**\\n     * Creates a function like `_.lowerFirst`.\\n     *\\n     * @private\\n     * @param {string} methodName The name of the `String` case method to use.\\n     * @returns {Function} Returns the new case function.\\n     */\\n    function createCaseFirst(methodName) {\\n      return function(string) {\\n        string = toString(string);\\n\\n        var strSymbols = hasUnicode(string)\\n          ? stringToArray(string)\\n          : undefined;\\n\\n        var chr = strSymbols\\n          ? strSymbols[0]\\n          : string.charAt(0);\\n\\n        var trailing = strSymbols\\n          ? castSlice(strSymbols, 1).join('')\\n          : string.slice(1);\\n\\n        return chr[methodName]() + trailing;\\n      };\\n    }\\n\\n    /**\\n     * Creates a function like `_.camelCase`.\\n     *\\n     * @private\\n     * @param {Function} callback The function to combine each word.\\n     * @returns {Function} Returns the new compounder function.\\n     */\\n    function createCompounder(callback) {\\n      return function(string) {\\n        return arrayReduce(words(deburr(string).replace(reApos, '')), callback, '');\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that produces an instance of `Ctor` regardless of\\n     * whether it was invoked as part of a `new` expression or by `call` or `apply`.\\n     *\\n     * @private\\n     * @param {Function} Ctor The constructor to wrap.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createCtor(Ctor) {\\n      return function() {\\n        // Use a `switch` statement to work with class constructors. See\\n        // http://ecma-international.org/ecma-262/7.0/#sec-ecmascript-function-objects-call-thisargument-argumentslist\\n        // for more details.\\n        var args = arguments;\\n        switch (args.length) {\\n          case 0: return new Ctor;\\n          case 1: return new Ctor(args[0]);\\n          case 2: return new Ctor(args[0], args[1]);\\n          case 3: return new Ctor(args[0], args[1], args[2]);\\n          case 4: return new Ctor(args[0], args[1], args[2], args[3]);\\n          case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]);\\n          case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]);\\n          case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);\\n        }\\n        var thisBinding = baseCreate(Ctor.prototype),\\n            result = Ctor.apply(thisBinding, args);\\n\\n        // Mimic the constructor's `return` behavior.\\n        // See https://es5.github.io/#x13.2.2 for more details.\\n        return isObject(result) ? result : thisBinding;\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that wraps `func` to enable currying.\\n     *\\n     * @private\\n     * @param {Function} func The function to wrap.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @param {number} arity The arity of `func`.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createCurry(func, bitmask, arity) {\\n      var Ctor = createCtor(func);\\n\\n      function wrapper() {\\n        var length = arguments.length,\\n            args = Array(length),\\n            index = length,\\n            placeholder = getHolder(wrapper);\\n\\n        while (index--) {\\n          args[index] = arguments[index];\\n        }\\n        var holders = (length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder)\\n          ? []\\n          : replaceHolders(args, placeholder);\\n\\n        length -= holders.length;\\n        if (length < arity) {\\n          return createRecurry(\\n            func, bitmask, createHybrid, wrapper.placeholder, undefined,\\n            args, holders, undefined, undefined, arity - length);\\n        }\\n        var fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;\\n        return apply(fn, this, args);\\n      }\\n      return wrapper;\\n    }\\n\\n    /**\\n     * Creates a `_.find` or `_.findLast` function.\\n     *\\n     * @private\\n     * @param {Function} findIndexFunc The function to find the collection index.\\n     * @returns {Function} Returns the new find function.\\n     */\\n    function createFind(findIndexFunc) {\\n      return function(collection, predicate, fromIndex) {\\n        var iterable = Object(collection);\\n        if (!isArrayLike(collection)) {\\n          var iteratee = getIteratee(predicate, 3);\\n          collection = keys(collection);\\n          predicate = function(key) { return iteratee(iterable[key], key, iterable); };\\n        }\\n        var index = findIndexFunc(collection, predicate, fromIndex);\\n        return index > -1 ? iterable[iteratee ? collection[index] : index] : undefined;\\n      };\\n    }\\n\\n    /**\\n     * Creates a `_.flow` or `_.flowRight` function.\\n     *\\n     * @private\\n     * @param {boolean} [fromRight] Specify iterating from right to left.\\n     * @returns {Function} Returns the new flow function.\\n     */\\n    function createFlow(fromRight) {\\n      return flatRest(function(funcs) {\\n        var length = funcs.length,\\n            index = length,\\n            prereq = LodashWrapper.prototype.thru;\\n\\n        if (fromRight) {\\n          funcs.reverse();\\n        }\\n        while (index--) {\\n          var func = funcs[index];\\n          if (typeof func != 'function') {\\n            throw new TypeError(FUNC_ERROR_TEXT);\\n          }\\n          if (prereq && !wrapper && getFuncName(func) == 'wrapper') {\\n            var wrapper = new LodashWrapper([], true);\\n          }\\n        }\\n        index = wrapper ? index : length;\\n        while (++index < length) {\\n          func = funcs[index];\\n\\n          var funcName = getFuncName(func),\\n              data = funcName == 'wrapper' ? getData(func) : undefined;\\n\\n          if (data && isLaziable(data[0]) &&\\n                data[1] == (WRAP_ARY_FLAG | WRAP_CURRY_FLAG | WRAP_PARTIAL_FLAG | WRAP_REARG_FLAG) &&\\n                !data[4].length && data[9] == 1\\n              ) {\\n            wrapper = wrapper[getFuncName(data[0])].apply(wrapper, data[3]);\\n          } else {\\n            wrapper = (func.length == 1 && isLaziable(func))\\n              ? wrapper[funcName]()\\n              : wrapper.thru(func);\\n          }\\n        }\\n        return function() {\\n          var args = arguments,\\n              value = args[0];\\n\\n          if (wrapper && args.length == 1 && isArray(value)) {\\n            return wrapper.plant(value).value();\\n          }\\n          var index = 0,\\n              result = length ? funcs[index].apply(this, args) : value;\\n\\n          while (++index < length) {\\n            result = funcs[index].call(this, result);\\n          }\\n          return result;\\n        };\\n      });\\n    }\\n\\n    /**\\n     * Creates a function that wraps `func` to invoke it with optional `this`\\n     * binding of `thisArg`, partial application, and currying.\\n     *\\n     * @private\\n     * @param {Function|string} func The function or method name to wrap.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @param {*} [thisArg] The `this` binding of `func`.\\n     * @param {Array} [partials] The arguments to prepend to those provided to\\n     *  the new function.\\n     * @param {Array} [holders] The `partials` placeholder indexes.\\n     * @param {Array} [partialsRight] The arguments to append to those provided\\n     *  to the new function.\\n     * @param {Array} [holdersRight] The `partialsRight` placeholder indexes.\\n     * @param {Array} [argPos] The argument positions of the new function.\\n     * @param {number} [ary] The arity cap of `func`.\\n     * @param {number} [arity] The arity of `func`.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) {\\n      var isAry = bitmask & WRAP_ARY_FLAG,\\n          isBind = bitmask & WRAP_BIND_FLAG,\\n          isBindKey = bitmask & WRAP_BIND_KEY_FLAG,\\n          isCurried = bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG),\\n          isFlip = bitmask & WRAP_FLIP_FLAG,\\n          Ctor = isBindKey ? undefined : createCtor(func);\\n\\n      function wrapper() {\\n        var length = arguments.length,\\n            args = Array(length),\\n            index = length;\\n\\n        while (index--) {\\n          args[index] = arguments[index];\\n        }\\n        if (isCurried) {\\n          var placeholder = getHolder(wrapper),\\n              holdersCount = countHolders(args, placeholder);\\n        }\\n        if (partials) {\\n          args = composeArgs(args, partials, holders, isCurried);\\n        }\\n        if (partialsRight) {\\n          args = composeArgsRight(args, partialsRight, holdersRight, isCurried);\\n        }\\n        length -= holdersCount;\\n        if (isCurried && length < arity) {\\n          var newHolders = replaceHolders(args, placeholder);\\n          return createRecurry(\\n            func, bitmask, createHybrid, wrapper.placeholder, thisArg,\\n            args, newHolders, argPos, ary, arity - length\\n          );\\n        }\\n        var thisBinding = isBind ? thisArg : this,\\n            fn = isBindKey ? thisBinding[func] : func;\\n\\n        length = args.length;\\n        if (argPos) {\\n          args = reorder(args, argPos);\\n        } else if (isFlip && length > 1) {\\n          args.reverse();\\n        }\\n        if (isAry && ary < length) {\\n          args.length = ary;\\n        }\\n        if (this && this !== root && this instanceof wrapper) {\\n          fn = Ctor || createCtor(fn);\\n        }\\n        return fn.apply(thisBinding, args);\\n      }\\n      return wrapper;\\n    }\\n\\n    /**\\n     * Creates a function like `_.invertBy`.\\n     *\\n     * @private\\n     * @param {Function} setter The function to set accumulator values.\\n     * @param {Function} toIteratee The function to resolve iteratees.\\n     * @returns {Function} Returns the new inverter function.\\n     */\\n    function createInverter(setter, toIteratee) {\\n      return function(object, iteratee) {\\n        return baseInverter(object, setter, toIteratee(iteratee), {});\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that performs a mathematical operation on two values.\\n     *\\n     * @private\\n     * @param {Function} operator The function to perform the operation.\\n     * @param {number} [defaultValue] The value used for `undefined` arguments.\\n     * @returns {Function} Returns the new mathematical operation function.\\n     */\\n    function createMathOperation(operator, defaultValue) {\\n      return function(value, other) {\\n        var result;\\n        if (value === undefined && other === undefined) {\\n          return defaultValue;\\n        }\\n        if (value !== undefined) {\\n          result = value;\\n        }\\n        if (other !== undefined) {\\n          if (result === undefined) {\\n            return other;\\n          }\\n          if (typeof value == 'string' || typeof other == 'string') {\\n            value = baseToString(value);\\n            other = baseToString(other);\\n          } else {\\n            value = baseToNumber(value);\\n            other = baseToNumber(other);\\n          }\\n          result = operator(value, other);\\n        }\\n        return result;\\n      };\\n    }\\n\\n    /**\\n     * Creates a function like `_.over`.\\n     *\\n     * @private\\n     * @param {Function} arrayFunc The function to iterate over iteratees.\\n     * @returns {Function} Returns the new over function.\\n     */\\n    function createOver(arrayFunc) {\\n      return flatRest(function(iteratees) {\\n        iteratees = arrayMap(iteratees, baseUnary(getIteratee()));\\n        return baseRest(function(args) {\\n          var thisArg = this;\\n          return arrayFunc(iteratees, function(iteratee) {\\n            return apply(iteratee, thisArg, args);\\n          });\\n        });\\n      });\\n    }\\n\\n    /**\\n     * Creates the padding for `string` based on `length`. The `chars` string\\n     * is truncated if the number of characters exceeds `length`.\\n     *\\n     * @private\\n     * @param {number} length The padding length.\\n     * @param {string} [chars=' '] The string used as padding.\\n     * @returns {string} Returns the padding for `string`.\\n     */\\n    function createPadding(length, chars) {\\n      chars = chars === undefined ? ' ' : baseToString(chars);\\n\\n      var charsLength = chars.length;\\n      if (charsLength < 2) {\\n        return charsLength ? baseRepeat(chars, length) : chars;\\n      }\\n      var result = baseRepeat(chars, nativeCeil(length / stringSize(chars)));\\n      return hasUnicode(chars)\\n        ? castSlice(stringToArray(result), 0, length).join('')\\n        : result.slice(0, length);\\n    }\\n\\n    /**\\n     * Creates a function that wraps `func` to invoke it with the `this` binding\\n     * of `thisArg` and `partials` prepended to the arguments it receives.\\n     *\\n     * @private\\n     * @param {Function} func The function to wrap.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @param {*} thisArg The `this` binding of `func`.\\n     * @param {Array} partials The arguments to prepend to those provided to\\n     *  the new function.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createPartial(func, bitmask, thisArg, partials) {\\n      var isBind = bitmask & WRAP_BIND_FLAG,\\n          Ctor = createCtor(func);\\n\\n      function wrapper() {\\n        var argsIndex = -1,\\n            argsLength = arguments.length,\\n            leftIndex = -1,\\n            leftLength = partials.length,\\n            args = Array(leftLength + argsLength),\\n            fn = (this && this !== root && this instanceof wrapper) ? Ctor : func;\\n\\n        while (++leftIndex < leftLength) {\\n          args[leftIndex] = partials[leftIndex];\\n        }\\n        while (argsLength--) {\\n          args[leftIndex++] = arguments[++argsIndex];\\n        }\\n        return apply(fn, isBind ? thisArg : this, args);\\n      }\\n      return wrapper;\\n    }\\n\\n    /**\\n     * Creates a `_.range` or `_.rangeRight` function.\\n     *\\n     * @private\\n     * @param {boolean} [fromRight] Specify iterating from right to left.\\n     * @returns {Function} Returns the new range function.\\n     */\\n    function createRange(fromRight) {\\n      return function(start, end, step) {\\n        if (step && typeof step != 'number' && isIterateeCall(start, end, step)) {\\n          end = step = undefined;\\n        }\\n        // Ensure the sign of `-0` is preserved.\\n        start = toFinite(start);\\n        if (end === undefined) {\\n          end = start;\\n          start = 0;\\n        } else {\\n          end = toFinite(end);\\n        }\\n        step = step === undefined ? (start < end ? 1 : -1) : toFinite(step);\\n        return baseRange(start, end, step, fromRight);\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that performs a relational operation on two values.\\n     *\\n     * @private\\n     * @param {Function} operator The function to perform the operation.\\n     * @returns {Function} Returns the new relational operation function.\\n     */\\n    function createRelationalOperation(operator) {\\n      return function(value, other) {\\n        if (!(typeof value == 'string' && typeof other == 'string')) {\\n          value = toNumber(value);\\n          other = toNumber(other);\\n        }\\n        return operator(value, other);\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that wraps `func` to continue currying.\\n     *\\n     * @private\\n     * @param {Function} func The function to wrap.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @param {Function} wrapFunc The function to create the `func` wrapper.\\n     * @param {*} placeholder The placeholder value.\\n     * @param {*} [thisArg] The `this` binding of `func`.\\n     * @param {Array} [partials] The arguments to prepend to those provided to\\n     *  the new function.\\n     * @param {Array} [holders] The `partials` placeholder indexes.\\n     * @param {Array} [argPos] The argument positions of the new function.\\n     * @param {number} [ary] The arity cap of `func`.\\n     * @param {number} [arity] The arity of `func`.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) {\\n      var isCurry = bitmask & WRAP_CURRY_FLAG,\\n          newHolders = isCurry ? holders : undefined,\\n          newHoldersRight = isCurry ? undefined : holders,\\n          newPartials = isCurry ? partials : undefined,\\n          newPartialsRight = isCurry ? undefined : partials;\\n\\n      bitmask |= (isCurry ? WRAP_PARTIAL_FLAG : WRAP_PARTIAL_RIGHT_FLAG);\\n      bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG : WRAP_PARTIAL_FLAG);\\n\\n      if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) {\\n        bitmask &= ~(WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG);\\n      }\\n      var newData = [\\n        func, bitmask, thisArg, newPartials, newHolders, newPartialsRight,\\n        newHoldersRight, argPos, ary, arity\\n      ];\\n\\n      var result = wrapFunc.apply(undefined, newData);\\n      if (isLaziable(func)) {\\n        setData(result, newData);\\n      }\\n      result.placeholder = placeholder;\\n      return setWrapToString(result, func, bitmask);\\n    }\\n\\n    /**\\n     * Creates a function like `_.round`.\\n     *\\n     * @private\\n     * @param {string} methodName The name of the `Math` method to use when rounding.\\n     * @returns {Function} Returns the new round function.\\n     */\\n    function createRound(methodName) {\\n      var func = Math[methodName];\\n      return function(number, precision) {\\n        number = toNumber(number);\\n        precision = precision == null ? 0 : nativeMin(toInteger(precision), 292);\\n        if (precision && nativeIsFinite(number)) {\\n          // Shift with exponential notation to avoid floating-point issues.\\n          // See [MDN](https://mdn.io/round#Examples) for more details.\\n          var pair = (toString(number) + 'e').split('e'),\\n              value = func(pair[0] + 'e' + (+pair[1] + precision));\\n\\n          pair = (toString(value) + 'e').split('e');\\n          return +(pair[0] + 'e' + (+pair[1] - precision));\\n        }\\n        return func(number);\\n      };\\n    }\\n\\n    /**\\n     * Creates a set object of `values`.\\n     *\\n     * @private\\n     * @param {Array} values The values to add to the set.\\n     * @returns {Object} Returns the new set.\\n     */\\n    var createSet = !(Set && (1 / setToArray(new Set([,-0]))[1]) == INFINITY) ? noop : function(values) {\\n      return new Set(values);\\n    };\\n\\n    /**\\n     * Creates a `_.toPairs` or `_.toPairsIn` function.\\n     *\\n     * @private\\n     * @param {Function} keysFunc The function to get the keys of a given object.\\n     * @returns {Function} Returns the new pairs function.\\n     */\\n    function createToPairs(keysFunc) {\\n      return function(object) {\\n        var tag = getTag(object);\\n        if (tag == mapTag) {\\n          return mapToArray(object);\\n        }\\n        if (tag == setTag) {\\n          return setToPairs(object);\\n        }\\n        return baseToPairs(object, keysFunc(object));\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that either curries or invokes `func` with optional\\n     * `this` binding and partially applied arguments.\\n     *\\n     * @private\\n     * @param {Function|string} func The function or method name to wrap.\\n     * @param {number} bitmask The bitmask flags.\\n     *    1 - `_.bind`\\n     *    2 - `_.bindKey`\\n     *    4 - `_.curry` or `_.curryRight` of a bound function\\n     *    8 - `_.curry`\\n     *   16 - `_.curryRight`\\n     *   32 - `_.partial`\\n     *   64 - `_.partialRight`\\n     *  128 - `_.rearg`\\n     *  256 - `_.ary`\\n     *  512 - `_.flip`\\n     * @param {*} [thisArg] The `this` binding of `func`.\\n     * @param {Array} [partials] The arguments to be partially applied.\\n     * @param {Array} [holders] The `partials` placeholder indexes.\\n     * @param {Array} [argPos] The argument positions of the new function.\\n     * @param {number} [ary] The arity cap of `func`.\\n     * @param {number} [arity] The arity of `func`.\\n     * @returns {Function} Returns the new wrapped function.\\n     */\\n    function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) {\\n      var isBindKey = bitmask & WRAP_BIND_KEY_FLAG;\\n      if (!isBindKey && typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      var length = partials ? partials.length : 0;\\n      if (!length) {\\n        bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG);\\n        partials = holders = undefined;\\n      }\\n      ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0);\\n      arity = arity === undefined ? arity : toInteger(arity);\\n      length -= holders ? holders.length : 0;\\n\\n      if (bitmask & WRAP_PARTIAL_RIGHT_FLAG) {\\n        var partialsRight = partials,\\n            holdersRight = holders;\\n\\n        partials = holders = undefined;\\n      }\\n      var data = isBindKey ? undefined : getData(func);\\n\\n      var newData = [\\n        func, bitmask, thisArg, partials, holders, partialsRight, holdersRight,\\n        argPos, ary, arity\\n      ];\\n\\n      if (data) {\\n        mergeData(newData, data);\\n      }\\n      func = newData[0];\\n      bitmask = newData[1];\\n      thisArg = newData[2];\\n      partials = newData[3];\\n      holders = newData[4];\\n      arity = newData[9] = newData[9] === undefined\\n        ? (isBindKey ? 0 : func.length)\\n        : nativeMax(newData[9] - length, 0);\\n\\n      if (!arity && bitmask & (WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG)) {\\n        bitmask &= ~(WRAP_CURRY_FLAG | WRAP_CURRY_RIGHT_FLAG);\\n      }\\n      if (!bitmask || bitmask == WRAP_BIND_FLAG) {\\n        var result = createBind(func, bitmask, thisArg);\\n      } else if (bitmask == WRAP_CURRY_FLAG || bitmask == WRAP_CURRY_RIGHT_FLAG) {\\n        result = createCurry(func, bitmask, arity);\\n      } else if ((bitmask == WRAP_PARTIAL_FLAG || bitmask == (WRAP_BIND_FLAG | WRAP_PARTIAL_FLAG)) && !holders.length) {\\n        result = createPartial(func, bitmask, thisArg, partials);\\n      } else {\\n        result = createHybrid.apply(undefined, newData);\\n      }\\n      var setter = data ? baseSetData : setData;\\n      return setWrapToString(setter(result, newData), func, bitmask);\\n    }\\n\\n    /**\\n     * Used by `_.defaults` to customize its `_.assignIn` use to assign properties\\n     * of source objects to the destination object for all destination properties\\n     * that resolve to `undefined`.\\n     *\\n     * @private\\n     * @param {*} objValue The destination value.\\n     * @param {*} srcValue The source value.\\n     * @param {string} key The key of the property to assign.\\n     * @param {Object} object The parent object of `objValue`.\\n     * @returns {*} Returns the value to assign.\\n     */\\n    function customDefaultsAssignIn(objValue, srcValue, key, object) {\\n      if (objValue === undefined ||\\n          (eq(objValue, objectProto[key]) && !hasOwnProperty.call(object, key))) {\\n        return srcValue;\\n      }\\n      return objValue;\\n    }\\n\\n    /**\\n     * Used by `_.defaultsDeep` to customize its `_.merge` use to merge source\\n     * objects into destination objects that are passed thru.\\n     *\\n     * @private\\n     * @param {*} objValue The destination value.\\n     * @param {*} srcValue The source value.\\n     * @param {string} key The key of the property to merge.\\n     * @param {Object} object The parent object of `objValue`.\\n     * @param {Object} source The parent object of `srcValue`.\\n     * @param {Object} [stack] Tracks traversed source values and their merged\\n     *  counterparts.\\n     * @returns {*} Returns the value to assign.\\n     */\\n    function customDefaultsMerge(objValue, srcValue, key, object, source, stack) {\\n      if (isObject(objValue) && isObject(srcValue)) {\\n        // Recursively merge objects and arrays (susceptible to call stack limits).\\n        stack.set(srcValue, objValue);\\n        baseMerge(objValue, srcValue, undefined, customDefaultsMerge, stack);\\n        stack['delete'](srcValue);\\n      }\\n      return objValue;\\n    }\\n\\n    /**\\n     * Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain\\n     * objects.\\n     *\\n     * @private\\n     * @param {*} value The value to inspect.\\n     * @param {string} key The key of the property to inspect.\\n     * @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.\\n     */\\n    function customOmitClone(value) {\\n      return isPlainObject(value) ? undefined : value;\\n    }\\n\\n    /**\\n     * A specialized version of `baseIsEqualDeep` for arrays with support for\\n     * partial deep comparisons.\\n     *\\n     * @private\\n     * @param {Array} array The array to compare.\\n     * @param {Array} other The other array to compare.\\n     * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\\n     * @param {Function} customizer The function to customize comparisons.\\n     * @param {Function} equalFunc The function to determine equivalents of values.\\n     * @param {Object} stack Tracks traversed `array` and `other` objects.\\n     * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.\\n     */\\n    function equalArrays(array, other, bitmask, customizer, equalFunc, stack) {\\n      var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\\n          arrLength = array.length,\\n          othLength = other.length;\\n\\n      if (arrLength != othLength && !(isPartial && othLength > arrLength)) {\\n        return false;\\n      }\\n      // Check that cyclic values are equal.\\n      var arrStacked = stack.get(array);\\n      var othStacked = stack.get(other);\\n      if (arrStacked && othStacked) {\\n        return arrStacked == other && othStacked == array;\\n      }\\n      var index = -1,\\n          result = true,\\n          seen = (bitmask & COMPARE_UNORDERED_FLAG) ? new SetCache : undefined;\\n\\n      stack.set(array, other);\\n      stack.set(other, array);\\n\\n      // Ignore non-index properties.\\n      while (++index < arrLength) {\\n        var arrValue = array[index],\\n            othValue = other[index];\\n\\n        if (customizer) {\\n          var compared = isPartial\\n            ? customizer(othValue, arrValue, index, other, array, stack)\\n            : customizer(arrValue, othValue, index, array, other, stack);\\n        }\\n        if (compared !== undefined) {\\n          if (compared) {\\n            continue;\\n          }\\n          result = false;\\n          break;\\n        }\\n        // Recursively compare arrays (susceptible to call stack limits).\\n        if (seen) {\\n          if (!arraySome(other, function(othValue, othIndex) {\\n                if (!cacheHas(seen, othIndex) &&\\n                    (arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) {\\n                  return seen.push(othIndex);\\n                }\\n              })) {\\n            result = false;\\n            break;\\n          }\\n        } else if (!(\\n              arrValue === othValue ||\\n                equalFunc(arrValue, othValue, bitmask, customizer, stack)\\n            )) {\\n          result = false;\\n          break;\\n        }\\n      }\\n      stack['delete'](array);\\n      stack['delete'](other);\\n      return result;\\n    }\\n\\n    /**\\n     * A specialized version of `baseIsEqualDeep` for comparing objects of\\n     * the same `toStringTag`.\\n     *\\n     * **Note:** This function only supports comparing values with tags of\\n     * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.\\n     *\\n     * @private\\n     * @param {Object} object The object to compare.\\n     * @param {Object} other The other object to compare.\\n     * @param {string} tag The `toStringTag` of the objects to compare.\\n     * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\\n     * @param {Function} customizer The function to customize comparisons.\\n     * @param {Function} equalFunc The function to determine equivalents of values.\\n     * @param {Object} stack Tracks traversed `object` and `other` objects.\\n     * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\\n     */\\n    function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {\\n      switch (tag) {\\n        case dataViewTag:\\n          if ((object.byteLength != other.byteLength) ||\\n              (object.byteOffset != other.byteOffset)) {\\n            return false;\\n          }\\n          object = object.buffer;\\n          other = other.buffer;\\n\\n        case arrayBufferTag:\\n          if ((object.byteLength != other.byteLength) ||\\n              !equalFunc(new Uint8Array(object), new Uint8Array(other))) {\\n            return false;\\n          }\\n          return true;\\n\\n        case boolTag:\\n        case dateTag:\\n        case numberTag:\\n          // Coerce booleans to `1` or `0` and dates to milliseconds.\\n          // Invalid dates are coerced to `NaN`.\\n          return eq(+object, +other);\\n\\n        case errorTag:\\n          return object.name == other.name && object.message == other.message;\\n\\n        case regexpTag:\\n        case stringTag:\\n          // Coerce regexes to strings and treat strings, primitives and objects,\\n          // as equal. See http://www.ecma-international.org/ecma-262/7.0/#sec-regexp.prototype.tostring\\n          // for more details.\\n          return object == (other + '');\\n\\n        case mapTag:\\n          var convert = mapToArray;\\n\\n        case setTag:\\n          var isPartial = bitmask & COMPARE_PARTIAL_FLAG;\\n          convert || (convert = setToArray);\\n\\n          if (object.size != other.size && !isPartial) {\\n            return false;\\n          }\\n          // Assume cyclic values are equal.\\n          var stacked = stack.get(object);\\n          if (stacked) {\\n            return stacked == other;\\n          }\\n          bitmask |= COMPARE_UNORDERED_FLAG;\\n\\n          // Recursively compare objects (susceptible to call stack limits).\\n          stack.set(object, other);\\n          var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);\\n          stack['delete'](object);\\n          return result;\\n\\n        case symbolTag:\\n          if (symbolValueOf) {\\n            return symbolValueOf.call(object) == symbolValueOf.call(other);\\n          }\\n      }\\n      return false;\\n    }\\n\\n    /**\\n     * A specialized version of `baseIsEqualDeep` for objects with support for\\n     * partial deep comparisons.\\n     *\\n     * @private\\n     * @param {Object} object The object to compare.\\n     * @param {Object} other The other object to compare.\\n     * @param {number} bitmask The bitmask flags. See `baseIsEqual` for more details.\\n     * @param {Function} customizer The function to customize comparisons.\\n     * @param {Function} equalFunc The function to determine equivalents of values.\\n     * @param {Object} stack Tracks traversed `object` and `other` objects.\\n     * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.\\n     */\\n    function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {\\n      var isPartial = bitmask & COMPARE_PARTIAL_FLAG,\\n          objProps = getAllKeys(object),\\n          objLength = objProps.length,\\n          othProps = getAllKeys(other),\\n          othLength = othProps.length;\\n\\n      if (objLength != othLength && !isPartial) {\\n        return false;\\n      }\\n      var index = objLength;\\n      while (index--) {\\n        var key = objProps[index];\\n        if (!(isPartial ? key in other : hasOwnProperty.call(other, key))) {\\n          return false;\\n        }\\n      }\\n      // Check that cyclic values are equal.\\n      var objStacked = stack.get(object);\\n      var othStacked = stack.get(other);\\n      if (objStacked && othStacked) {\\n        return objStacked == other && othStacked == object;\\n      }\\n      var result = true;\\n      stack.set(object, other);\\n      stack.set(other, object);\\n\\n      var skipCtor = isPartial;\\n      while (++index < objLength) {\\n        key = objProps[index];\\n        var objValue = object[key],\\n            othValue = other[key];\\n\\n        if (customizer) {\\n          var compared = isPartial\\n            ? customizer(othValue, objValue, key, other, object, stack)\\n            : customizer(objValue, othValue, key, object, other, stack);\\n        }\\n        // Recursively compare objects (susceptible to call stack limits).\\n        if (!(compared === undefined\\n              ? (objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack))\\n              : compared\\n            )) {\\n          result = false;\\n          break;\\n        }\\n        skipCtor || (skipCtor = key == 'constructor');\\n      }\\n      if (result && !skipCtor) {\\n        var objCtor = object.constructor,\\n            othCtor = other.constructor;\\n\\n        // Non `Object` object instances with different constructors are not equal.\\n        if (objCtor != othCtor &&\\n            ('constructor' in object && 'constructor' in other) &&\\n            !(typeof objCtor == 'function' && objCtor instanceof objCtor &&\\n              typeof othCtor == 'function' && othCtor instanceof othCtor)) {\\n          result = false;\\n        }\\n      }\\n      stack['delete'](object);\\n      stack['delete'](other);\\n      return result;\\n    }\\n\\n    /**\\n     * A specialized version of `baseRest` which flattens the rest array.\\n     *\\n     * @private\\n     * @param {Function} func The function to apply a rest parameter to.\\n     * @returns {Function} Returns the new function.\\n     */\\n    function flatRest(func) {\\n      return setToString(overRest(func, undefined, flatten), func + '');\\n    }\\n\\n    /**\\n     * Creates an array of own enumerable property names and symbols of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names and symbols.\\n     */\\n    function getAllKeys(object) {\\n      return baseGetAllKeys(object, keys, getSymbols);\\n    }\\n\\n    /**\\n     * Creates an array of own and inherited enumerable property names and\\n     * symbols of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names and symbols.\\n     */\\n    function getAllKeysIn(object) {\\n      return baseGetAllKeys(object, keysIn, getSymbolsIn);\\n    }\\n\\n    /**\\n     * Gets metadata for `func`.\\n     *\\n     * @private\\n     * @param {Function} func The function to query.\\n     * @returns {*} Returns the metadata for `func`.\\n     */\\n    var getData = !metaMap ? noop : function(func) {\\n      return metaMap.get(func);\\n    };\\n\\n    /**\\n     * Gets the name of `func`.\\n     *\\n     * @private\\n     * @param {Function} func The function to query.\\n     * @returns {string} Returns the function name.\\n     */\\n    function getFuncName(func) {\\n      var result = (func.name + ''),\\n          array = realNames[result],\\n          length = hasOwnProperty.call(realNames, result) ? array.length : 0;\\n\\n      while (length--) {\\n        var data = array[length],\\n            otherFunc = data.func;\\n        if (otherFunc == null || otherFunc == func) {\\n          return data.name;\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Gets the argument placeholder value for `func`.\\n     *\\n     * @private\\n     * @param {Function} func The function to inspect.\\n     * @returns {*} Returns the placeholder value.\\n     */\\n    function getHolder(func) {\\n      var object = hasOwnProperty.call(lodash, 'placeholder') ? lodash : func;\\n      return object.placeholder;\\n    }\\n\\n    /**\\n     * Gets the appropriate \\\"iteratee\\\" function. If `_.iteratee` is customized,\\n     * this function returns the custom method, otherwise it returns `baseIteratee`.\\n     * If arguments are provided, the chosen function is invoked with them and\\n     * its result is returned.\\n     *\\n     * @private\\n     * @param {*} [value] The value to convert to an iteratee.\\n     * @param {number} [arity] The arity of the created iteratee.\\n     * @returns {Function} Returns the chosen function or its result.\\n     */\\n    function getIteratee() {\\n      var result = lodash.iteratee || iteratee;\\n      result = result === iteratee ? baseIteratee : result;\\n      return arguments.length ? result(arguments[0], arguments[1]) : result;\\n    }\\n\\n    /**\\n     * Gets the data for `map`.\\n     *\\n     * @private\\n     * @param {Object} map The map to query.\\n     * @param {string} key The reference key.\\n     * @returns {*} Returns the map data.\\n     */\\n    function getMapData(map, key) {\\n      var data = map.__data__;\\n      return isKeyable(key)\\n        ? data[typeof key == 'string' ? 'string' : 'hash']\\n        : data.map;\\n    }\\n\\n    /**\\n     * Gets the property names, values, and compare flags of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the match data of `object`.\\n     */\\n    function getMatchData(object) {\\n      var result = keys(object),\\n          length = result.length;\\n\\n      while (length--) {\\n        var key = result[length],\\n            value = object[key];\\n\\n        result[length] = [key, value, isStrictComparable(value)];\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Gets the native function at `key` of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {string} key The key of the method to get.\\n     * @returns {*} Returns the function if it's native, else `undefined`.\\n     */\\n    function getNative(object, key) {\\n      var value = getValue(object, key);\\n      return baseIsNative(value) ? value : undefined;\\n    }\\n\\n    /**\\n     * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\\n     *\\n     * @private\\n     * @param {*} value The value to query.\\n     * @returns {string} Returns the raw `toStringTag`.\\n     */\\n    function getRawTag(value) {\\n      var isOwn = hasOwnProperty.call(value, symToStringTag),\\n          tag = value[symToStringTag];\\n\\n      try {\\n        value[symToStringTag] = undefined;\\n        var unmasked = true;\\n      } catch (e) {}\\n\\n      var result = nativeObjectToString.call(value);\\n      if (unmasked) {\\n        if (isOwn) {\\n          value[symToStringTag] = tag;\\n        } else {\\n          delete value[symToStringTag];\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Creates an array of the own enumerable symbols of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of symbols.\\n     */\\n    var getSymbols = !nativeGetSymbols ? stubArray : function(object) {\\n      if (object == null) {\\n        return [];\\n      }\\n      object = Object(object);\\n      return arrayFilter(nativeGetSymbols(object), function(symbol) {\\n        return propertyIsEnumerable.call(object, symbol);\\n      });\\n    };\\n\\n    /**\\n     * Creates an array of the own and inherited enumerable symbols of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of symbols.\\n     */\\n    var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) {\\n      var result = [];\\n      while (object) {\\n        arrayPush(result, getSymbols(object));\\n        object = getPrototype(object);\\n      }\\n      return result;\\n    };\\n\\n    /**\\n     * Gets the `toStringTag` of `value`.\\n     *\\n     * @private\\n     * @param {*} value The value to query.\\n     * @returns {string} Returns the `toStringTag`.\\n     */\\n    var getTag = baseGetTag;\\n\\n    // Fallback for data views, maps, sets, and weak maps in IE 11 and promises in Node.js < 6.\\n    if ((DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag) ||\\n        (Map && getTag(new Map) != mapTag) ||\\n        (Promise && getTag(Promise.resolve()) != promiseTag) ||\\n        (Set && getTag(new Set) != setTag) ||\\n        (WeakMap && getTag(new WeakMap) != weakMapTag)) {\\n      getTag = function(value) {\\n        var result = baseGetTag(value),\\n            Ctor = result == objectTag ? value.constructor : undefined,\\n            ctorString = Ctor ? toSource(Ctor) : '';\\n\\n        if (ctorString) {\\n          switch (ctorString) {\\n            case dataViewCtorString: return dataViewTag;\\n            case mapCtorString: return mapTag;\\n            case promiseCtorString: return promiseTag;\\n            case setCtorString: return setTag;\\n            case weakMapCtorString: return weakMapTag;\\n          }\\n        }\\n        return result;\\n      };\\n    }\\n\\n    /**\\n     * Gets the view, applying any `transforms` to the `start` and `end` positions.\\n     *\\n     * @private\\n     * @param {number} start The start of the view.\\n     * @param {number} end The end of the view.\\n     * @param {Array} transforms The transformations to apply to the view.\\n     * @returns {Object} Returns an object containing the `start` and `end`\\n     *  positions of the view.\\n     */\\n    function getView(start, end, transforms) {\\n      var index = -1,\\n          length = transforms.length;\\n\\n      while (++index < length) {\\n        var data = transforms[index],\\n            size = data.size;\\n\\n        switch (data.type) {\\n          case 'drop':      start += size; break;\\n          case 'dropRight': end -= size; break;\\n          case 'take':      end = nativeMin(end, start + size); break;\\n          case 'takeRight': start = nativeMax(start, end - size); break;\\n        }\\n      }\\n      return { 'start': start, 'end': end };\\n    }\\n\\n    /**\\n     * Extracts wrapper details from the `source` body comment.\\n     *\\n     * @private\\n     * @param {string} source The source to inspect.\\n     * @returns {Array} Returns the wrapper details.\\n     */\\n    function getWrapDetails(source) {\\n      var match = source.match(reWrapDetails);\\n      return match ? match[1].split(reSplitDetails) : [];\\n    }\\n\\n    /**\\n     * Checks if `path` exists on `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path to check.\\n     * @param {Function} hasFunc The function to check properties.\\n     * @returns {boolean} Returns `true` if `path` exists, else `false`.\\n     */\\n    function hasPath(object, path, hasFunc) {\\n      path = castPath(path, object);\\n\\n      var index = -1,\\n          length = path.length,\\n          result = false;\\n\\n      while (++index < length) {\\n        var key = toKey(path[index]);\\n        if (!(result = object != null && hasFunc(object, key))) {\\n          break;\\n        }\\n        object = object[key];\\n      }\\n      if (result || ++index != length) {\\n        return result;\\n      }\\n      length = object == null ? 0 : object.length;\\n      return !!length && isLength(length) && isIndex(key, length) &&\\n        (isArray(object) || isArguments(object));\\n    }\\n\\n    /**\\n     * Initializes an array clone.\\n     *\\n     * @private\\n     * @param {Array} array The array to clone.\\n     * @returns {Array} Returns the initialized clone.\\n     */\\n    function initCloneArray(array) {\\n      var length = array.length,\\n          result = new array.constructor(length);\\n\\n      // Add properties assigned by `RegExp#exec`.\\n      if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) {\\n        result.index = array.index;\\n        result.input = array.input;\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Initializes an object clone.\\n     *\\n     * @private\\n     * @param {Object} object The object to clone.\\n     * @returns {Object} Returns the initialized clone.\\n     */\\n    function initCloneObject(object) {\\n      return (typeof object.constructor == 'function' && !isPrototype(object))\\n        ? baseCreate(getPrototype(object))\\n        : {};\\n    }\\n\\n    /**\\n     * Initializes an object clone based on its `toStringTag`.\\n     *\\n     * **Note:** This function only supports cloning values with tags of\\n     * `Boolean`, `Date`, `Error`, `Map`, `Number`, `RegExp`, `Set`, or `String`.\\n     *\\n     * @private\\n     * @param {Object} object The object to clone.\\n     * @param {string} tag The `toStringTag` of the object to clone.\\n     * @param {boolean} [isDeep] Specify a deep clone.\\n     * @returns {Object} Returns the initialized clone.\\n     */\\n    function initCloneByTag(object, tag, isDeep) {\\n      var Ctor = object.constructor;\\n      switch (tag) {\\n        case arrayBufferTag:\\n          return cloneArrayBuffer(object);\\n\\n        case boolTag:\\n        case dateTag:\\n          return new Ctor(+object);\\n\\n        case dataViewTag:\\n          return cloneDataView(object, isDeep);\\n\\n        case float32Tag: case float64Tag:\\n        case int8Tag: case int16Tag: case int32Tag:\\n        case uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag:\\n          return cloneTypedArray(object, isDeep);\\n\\n        case mapTag:\\n          return new Ctor;\\n\\n        case numberTag:\\n        case stringTag:\\n          return new Ctor(object);\\n\\n        case regexpTag:\\n          return cloneRegExp(object);\\n\\n        case setTag:\\n          return new Ctor;\\n\\n        case symbolTag:\\n          return cloneSymbol(object);\\n      }\\n    }\\n\\n    /**\\n     * Inserts wrapper `details` in a comment at the top of the `source` body.\\n     *\\n     * @private\\n     * @param {string} source The source to modify.\\n     * @returns {Array} details The details to insert.\\n     * @returns {string} Returns the modified source.\\n     */\\n    function insertWrapDetails(source, details) {\\n      var length = details.length;\\n      if (!length) {\\n        return source;\\n      }\\n      var lastIndex = length - 1;\\n      details[lastIndex] = (length > 1 ? '& ' : '') + details[lastIndex];\\n      details = details.join(length > 2 ? ', ' : ' ');\\n      return source.replace(reWrapComment, '{\\\\n/* [wrapped with ' + details + '] */\\\\n');\\n    }\\n\\n    /**\\n     * Checks if `value` is a flattenable `arguments` object or array.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is flattenable, else `false`.\\n     */\\n    function isFlattenable(value) {\\n      return isArray(value) || isArguments(value) ||\\n        !!(spreadableSymbol && value && value[spreadableSymbol]);\\n    }\\n\\n    /**\\n     * Checks if `value` is a valid array-like index.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\\n     * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\\n     */\\n    function isIndex(value, length) {\\n      var type = typeof value;\\n      length = length == null ? MAX_SAFE_INTEGER : length;\\n\\n      return !!length &&\\n        (type == 'number' ||\\n          (type != 'symbol' && reIsUint.test(value))) &&\\n            (value > -1 && value % 1 == 0 && value < length);\\n    }\\n\\n    /**\\n     * Checks if the given arguments are from an iteratee call.\\n     *\\n     * @private\\n     * @param {*} value The potential iteratee value argument.\\n     * @param {*} index The potential iteratee index or key argument.\\n     * @param {*} object The potential iteratee object argument.\\n     * @returns {boolean} Returns `true` if the arguments are from an iteratee call,\\n     *  else `false`.\\n     */\\n    function isIterateeCall(value, index, object) {\\n      if (!isObject(object)) {\\n        return false;\\n      }\\n      var type = typeof index;\\n      if (type == 'number'\\n            ? (isArrayLike(object) && isIndex(index, object.length))\\n            : (type == 'string' && index in object)\\n          ) {\\n        return eq(object[index], value);\\n      }\\n      return false;\\n    }\\n\\n    /**\\n     * Checks if `value` is a property name and not a property path.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @param {Object} [object] The object to query keys on.\\n     * @returns {boolean} Returns `true` if `value` is a property name, else `false`.\\n     */\\n    function isKey(value, object) {\\n      if (isArray(value)) {\\n        return false;\\n      }\\n      var type = typeof value;\\n      if (type == 'number' || type == 'symbol' || type == 'boolean' ||\\n          value == null || isSymbol(value)) {\\n        return true;\\n      }\\n      return reIsPlainProp.test(value) || !reIsDeepProp.test(value) ||\\n        (object != null && value in Object(object));\\n    }\\n\\n    /**\\n     * Checks if `value` is suitable for use as unique object key.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\\n     */\\n    function isKeyable(value) {\\n      var type = typeof value;\\n      return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')\\n        ? (value !== '__proto__')\\n        : (value === null);\\n    }\\n\\n    /**\\n     * Checks if `func` has a lazy counterpart.\\n     *\\n     * @private\\n     * @param {Function} func The function to check.\\n     * @returns {boolean} Returns `true` if `func` has a lazy counterpart,\\n     *  else `false`.\\n     */\\n    function isLaziable(func) {\\n      var funcName = getFuncName(func),\\n          other = lodash[funcName];\\n\\n      if (typeof other != 'function' || !(funcName in LazyWrapper.prototype)) {\\n        return false;\\n      }\\n      if (func === other) {\\n        return true;\\n      }\\n      var data = getData(other);\\n      return !!data && func === data[0];\\n    }\\n\\n    /**\\n     * Checks if `func` has its source masked.\\n     *\\n     * @private\\n     * @param {Function} func The function to check.\\n     * @returns {boolean} Returns `true` if `func` is masked, else `false`.\\n     */\\n    function isMasked(func) {\\n      return !!maskSrcKey && (maskSrcKey in func);\\n    }\\n\\n    /**\\n     * Checks if `func` is capable of being masked.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `func` is maskable, else `false`.\\n     */\\n    var isMaskable = coreJsData ? isFunction : stubFalse;\\n\\n    /**\\n     * Checks if `value` is likely a prototype object.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\\n     */\\n    function isPrototype(value) {\\n      var Ctor = value && value.constructor,\\n          proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto;\\n\\n      return value === proto;\\n    }\\n\\n    /**\\n     * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.\\n     *\\n     * @private\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` if suitable for strict\\n     *  equality comparisons, else `false`.\\n     */\\n    function isStrictComparable(value) {\\n      return value === value && !isObject(value);\\n    }\\n\\n    /**\\n     * A specialized version of `matchesProperty` for source values suitable\\n     * for strict equality comparisons, i.e. `===`.\\n     *\\n     * @private\\n     * @param {string} key The key of the property to get.\\n     * @param {*} srcValue The value to match.\\n     * @returns {Function} Returns the new spec function.\\n     */\\n    function matchesStrictComparable(key, srcValue) {\\n      return function(object) {\\n        if (object == null) {\\n          return false;\\n        }\\n        return object[key] === srcValue &&\\n          (srcValue !== undefined || (key in Object(object)));\\n      };\\n    }\\n\\n    /**\\n     * A specialized version of `_.memoize` which clears the memoized function's\\n     * cache when it exceeds `MAX_MEMOIZE_SIZE`.\\n     *\\n     * @private\\n     * @param {Function} func The function to have its output memoized.\\n     * @returns {Function} Returns the new memoized function.\\n     */\\n    function memoizeCapped(func) {\\n      var result = memoize(func, function(key) {\\n        if (cache.size === MAX_MEMOIZE_SIZE) {\\n          cache.clear();\\n        }\\n        return key;\\n      });\\n\\n      var cache = result.cache;\\n      return result;\\n    }\\n\\n    /**\\n     * Merges the function metadata of `source` into `data`.\\n     *\\n     * Merging metadata reduces the number of wrappers used to invoke a function.\\n     * This is possible because methods like `_.bind`, `_.curry`, and `_.partial`\\n     * may be applied regardless of execution order. Methods like `_.ary` and\\n     * `_.rearg` modify function arguments, making the order in which they are\\n     * executed important, preventing the merging of metadata. However, we make\\n     * an exception for a safe combined case where curried functions have `_.ary`\\n     * and or `_.rearg` applied.\\n     *\\n     * @private\\n     * @param {Array} data The destination metadata.\\n     * @param {Array} source The source metadata.\\n     * @returns {Array} Returns `data`.\\n     */\\n    function mergeData(data, source) {\\n      var bitmask = data[1],\\n          srcBitmask = source[1],\\n          newBitmask = bitmask | srcBitmask,\\n          isCommon = newBitmask < (WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG | WRAP_ARY_FLAG);\\n\\n      var isCombo =\\n        ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_CURRY_FLAG)) ||\\n        ((srcBitmask == WRAP_ARY_FLAG) && (bitmask == WRAP_REARG_FLAG) && (data[7].length <= source[8])) ||\\n        ((srcBitmask == (WRAP_ARY_FLAG | WRAP_REARG_FLAG)) && (source[7].length <= source[8]) && (bitmask == WRAP_CURRY_FLAG));\\n\\n      // Exit early if metadata can't be merged.\\n      if (!(isCommon || isCombo)) {\\n        return data;\\n      }\\n      // Use source `thisArg` if available.\\n      if (srcBitmask & WRAP_BIND_FLAG) {\\n        data[2] = source[2];\\n        // Set when currying a bound function.\\n        newBitmask |= bitmask & WRAP_BIND_FLAG ? 0 : WRAP_CURRY_BOUND_FLAG;\\n      }\\n      // Compose partial arguments.\\n      var value = source[3];\\n      if (value) {\\n        var partials = data[3];\\n        data[3] = partials ? composeArgs(partials, value, source[4]) : value;\\n        data[4] = partials ? replaceHolders(data[3], PLACEHOLDER) : source[4];\\n      }\\n      // Compose partial right arguments.\\n      value = source[5];\\n      if (value) {\\n        partials = data[5];\\n        data[5] = partials ? composeArgsRight(partials, value, source[6]) : value;\\n        data[6] = partials ? replaceHolders(data[5], PLACEHOLDER) : source[6];\\n      }\\n      // Use source `argPos` if available.\\n      value = source[7];\\n      if (value) {\\n        data[7] = value;\\n      }\\n      // Use source `ary` if it's smaller.\\n      if (srcBitmask & WRAP_ARY_FLAG) {\\n        data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]);\\n      }\\n      // Use source `arity` if one is not provided.\\n      if (data[9] == null) {\\n        data[9] = source[9];\\n      }\\n      // Use source `func` and merge bitmasks.\\n      data[0] = source[0];\\n      data[1] = newBitmask;\\n\\n      return data;\\n    }\\n\\n    /**\\n     * This function is like\\n     * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\\n     * except that it includes inherited enumerable properties.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names.\\n     */\\n    function nativeKeysIn(object) {\\n      var result = [];\\n      if (object != null) {\\n        for (var key in Object(object)) {\\n          result.push(key);\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Converts `value` to a string using `Object.prototype.toString`.\\n     *\\n     * @private\\n     * @param {*} value The value to convert.\\n     * @returns {string} Returns the converted string.\\n     */\\n    function objectToString(value) {\\n      return nativeObjectToString.call(value);\\n    }\\n\\n    /**\\n     * A specialized version of `baseRest` which transforms the rest array.\\n     *\\n     * @private\\n     * @param {Function} func The function to apply a rest parameter to.\\n     * @param {number} [start=func.length-1] The start position of the rest parameter.\\n     * @param {Function} transform The rest array transform.\\n     * @returns {Function} Returns the new function.\\n     */\\n    function overRest(func, start, transform) {\\n      start = nativeMax(start === undefined ? (func.length - 1) : start, 0);\\n      return function() {\\n        var args = arguments,\\n            index = -1,\\n            length = nativeMax(args.length - start, 0),\\n            array = Array(length);\\n\\n        while (++index < length) {\\n          array[index] = args[start + index];\\n        }\\n        index = -1;\\n        var otherArgs = Array(start + 1);\\n        while (++index < start) {\\n          otherArgs[index] = args[index];\\n        }\\n        otherArgs[start] = transform(array);\\n        return apply(func, this, otherArgs);\\n      };\\n    }\\n\\n    /**\\n     * Gets the parent value at `path` of `object`.\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {Array} path The path to get the parent value of.\\n     * @returns {*} Returns the parent value.\\n     */\\n    function parent(object, path) {\\n      return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1));\\n    }\\n\\n    /**\\n     * Reorder `array` according to the specified indexes where the element at\\n     * the first index is assigned as the first element, the element at\\n     * the second index is assigned as the second element, and so on.\\n     *\\n     * @private\\n     * @param {Array} array The array to reorder.\\n     * @param {Array} indexes The arranged array indexes.\\n     * @returns {Array} Returns `array`.\\n     */\\n    function reorder(array, indexes) {\\n      var arrLength = array.length,\\n          length = nativeMin(indexes.length, arrLength),\\n          oldArray = copyArray(array);\\n\\n      while (length--) {\\n        var index = indexes[length];\\n        array[length] = isIndex(index, arrLength) ? oldArray[index] : undefined;\\n      }\\n      return array;\\n    }\\n\\n    /**\\n     * Gets the value at `key`, unless `key` is \\\"__proto__\\\" or \\\"constructor\\\".\\n     *\\n     * @private\\n     * @param {Object} object The object to query.\\n     * @param {string} key The key of the property to get.\\n     * @returns {*} Returns the property value.\\n     */\\n    function safeGet(object, key) {\\n      if (key === 'constructor' && typeof object[key] === 'function') {\\n        return;\\n      }\\n\\n      if (key == '__proto__') {\\n        return;\\n      }\\n\\n      return object[key];\\n    }\\n\\n    /**\\n     * Sets metadata for `func`.\\n     *\\n     * **Note:** If this function becomes hot, i.e. is invoked a lot in a short\\n     * period of time, it will trip its breaker and transition to an identity\\n     * function to avoid garbage collection pauses in V8. See\\n     * [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070)\\n     * for more details.\\n     *\\n     * @private\\n     * @param {Function} func The function to associate metadata with.\\n     * @param {*} data The metadata.\\n     * @returns {Function} Returns `func`.\\n     */\\n    var setData = shortOut(baseSetData);\\n\\n    /**\\n     * A simple wrapper around the global [`setTimeout`](https://mdn.io/setTimeout).\\n     *\\n     * @private\\n     * @param {Function} func The function to delay.\\n     * @param {number} wait The number of milliseconds to delay invocation.\\n     * @returns {number|Object} Returns the timer id or timeout object.\\n     */\\n    var setTimeout = ctxSetTimeout || function(func, wait) {\\n      return root.setTimeout(func, wait);\\n    };\\n\\n    /**\\n     * Sets the `toString` method of `func` to return `string`.\\n     *\\n     * @private\\n     * @param {Function} func The function to modify.\\n     * @param {Function} string The `toString` result.\\n     * @returns {Function} Returns `func`.\\n     */\\n    var setToString = shortOut(baseSetToString);\\n\\n    /**\\n     * Sets the `toString` method of `wrapper` to mimic the source of `reference`\\n     * with wrapper details in a comment at the top of the source body.\\n     *\\n     * @private\\n     * @param {Function} wrapper The function to modify.\\n     * @param {Function} reference The reference function.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @returns {Function} Returns `wrapper`.\\n     */\\n    function setWrapToString(wrapper, reference, bitmask) {\\n      var source = (reference + '');\\n      return setToString(wrapper, insertWrapDetails(source, updateWrapDetails(getWrapDetails(source), bitmask)));\\n    }\\n\\n    /**\\n     * Creates a function that'll short out and invoke `identity` instead\\n     * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`\\n     * milliseconds.\\n     *\\n     * @private\\n     * @param {Function} func The function to restrict.\\n     * @returns {Function} Returns the new shortable function.\\n     */\\n    function shortOut(func) {\\n      var count = 0,\\n          lastCalled = 0;\\n\\n      return function() {\\n        var stamp = nativeNow(),\\n            remaining = HOT_SPAN - (stamp - lastCalled);\\n\\n        lastCalled = stamp;\\n        if (remaining > 0) {\\n          if (++count >= HOT_COUNT) {\\n            return arguments[0];\\n          }\\n        } else {\\n          count = 0;\\n        }\\n        return func.apply(undefined, arguments);\\n      };\\n    }\\n\\n    /**\\n     * A specialized version of `_.shuffle` which mutates and sets the size of `array`.\\n     *\\n     * @private\\n     * @param {Array} array The array to shuffle.\\n     * @param {number} [size=array.length] The size of `array`.\\n     * @returns {Array} Returns `array`.\\n     */\\n    function shuffleSelf(array, size) {\\n      var index = -1,\\n          length = array.length,\\n          lastIndex = length - 1;\\n\\n      size = size === undefined ? length : size;\\n      while (++index < size) {\\n        var rand = baseRandom(index, lastIndex),\\n            value = array[rand];\\n\\n        array[rand] = array[index];\\n        array[index] = value;\\n      }\\n      array.length = size;\\n      return array;\\n    }\\n\\n    /**\\n     * Converts `string` to a property path array.\\n     *\\n     * @private\\n     * @param {string} string The string to convert.\\n     * @returns {Array} Returns the property path array.\\n     */\\n    var stringToPath = memoizeCapped(function(string) {\\n      var result = [];\\n      if (string.charCodeAt(0) === 46 /* . */) {\\n        result.push('');\\n      }\\n      string.replace(rePropName, function(match, number, quote, subString) {\\n        result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match));\\n      });\\n      return result;\\n    });\\n\\n    /**\\n     * Converts `value` to a string key if it's not a string or symbol.\\n     *\\n     * @private\\n     * @param {*} value The value to inspect.\\n     * @returns {string|symbol} Returns the key.\\n     */\\n    function toKey(value) {\\n      if (typeof value == 'string' || isSymbol(value)) {\\n        return value;\\n      }\\n      var result = (value + '');\\n      return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\\n    }\\n\\n    /**\\n     * Converts `func` to its source code.\\n     *\\n     * @private\\n     * @param {Function} func The function to convert.\\n     * @returns {string} Returns the source code.\\n     */\\n    function toSource(func) {\\n      if (func != null) {\\n        try {\\n          return funcToString.call(func);\\n        } catch (e) {}\\n        try {\\n          return (func + '');\\n        } catch (e) {}\\n      }\\n      return '';\\n    }\\n\\n    /**\\n     * Updates wrapper `details` based on `bitmask` flags.\\n     *\\n     * @private\\n     * @returns {Array} details The details to modify.\\n     * @param {number} bitmask The bitmask flags. See `createWrap` for more details.\\n     * @returns {Array} Returns `details`.\\n     */\\n    function updateWrapDetails(details, bitmask) {\\n      arrayEach(wrapFlags, function(pair) {\\n        var value = '_.' + pair[0];\\n        if ((bitmask & pair[1]) && !arrayIncludes(details, value)) {\\n          details.push(value);\\n        }\\n      });\\n      return details.sort();\\n    }\\n\\n    /**\\n     * Creates a clone of `wrapper`.\\n     *\\n     * @private\\n     * @param {Object} wrapper The wrapper to clone.\\n     * @returns {Object} Returns the cloned wrapper.\\n     */\\n    function wrapperClone(wrapper) {\\n      if (wrapper instanceof LazyWrapper) {\\n        return wrapper.clone();\\n      }\\n      var result = new LodashWrapper(wrapper.__wrapped__, wrapper.__chain__);\\n      result.__actions__ = copyArray(wrapper.__actions__);\\n      result.__index__  = wrapper.__index__;\\n      result.__values__ = wrapper.__values__;\\n      return result;\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates an array of elements split into groups the length of `size`.\\n     * If `array` can't be split evenly, the final chunk will be the remaining\\n     * elements.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to process.\\n     * @param {number} [size=1] The length of each chunk\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the new array of chunks.\\n     * @example\\n     *\\n     * _.chunk(['a', 'b', 'c', 'd'], 2);\\n     * // => [['a', 'b'], ['c', 'd']]\\n     *\\n     * _.chunk(['a', 'b', 'c', 'd'], 3);\\n     * // => [['a', 'b', 'c'], ['d']]\\n     */\\n    function chunk(array, size, guard) {\\n      if ((guard ? isIterateeCall(array, size, guard) : size === undefined)) {\\n        size = 1;\\n      } else {\\n        size = nativeMax(toInteger(size), 0);\\n      }\\n      var length = array == null ? 0 : array.length;\\n      if (!length || size < 1) {\\n        return [];\\n      }\\n      var index = 0,\\n          resIndex = 0,\\n          result = Array(nativeCeil(length / size));\\n\\n      while (index < length) {\\n        result[resIndex++] = baseSlice(array, index, (index += size));\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Creates an array with all falsey values removed. The values `false`, `null`,\\n     * `0`, `\\\"\\\"`, `undefined`, and `NaN` are falsey.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to compact.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @example\\n     *\\n     * _.compact([0, 1, false, 2, '', 3]);\\n     * // => [1, 2, 3]\\n     */\\n    function compact(array) {\\n      var index = -1,\\n          length = array == null ? 0 : array.length,\\n          resIndex = 0,\\n          result = [];\\n\\n      while (++index < length) {\\n        var value = array[index];\\n        if (value) {\\n          result[resIndex++] = value;\\n        }\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Creates a new array concatenating `array` with any additional arrays\\n     * and/or values.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to concatenate.\\n     * @param {...*} [values] The values to concatenate.\\n     * @returns {Array} Returns the new concatenated array.\\n     * @example\\n     *\\n     * var array = [1];\\n     * var other = _.concat(array, 2, [3], [[4]]);\\n     *\\n     * console.log(other);\\n     * // => [1, 2, 3, [4]]\\n     *\\n     * console.log(array);\\n     * // => [1]\\n     */\\n    function concat() {\\n      var length = arguments.length;\\n      if (!length) {\\n        return [];\\n      }\\n      var args = Array(length - 1),\\n          array = arguments[0],\\n          index = length;\\n\\n      while (index--) {\\n        args[index - 1] = arguments[index];\\n      }\\n      return arrayPush(isArray(array) ? copyArray(array) : [array], baseFlatten(args, 1));\\n    }\\n\\n    /**\\n     * Creates an array of `array` values not included in the other given arrays\\n     * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons. The order and references of result values are\\n     * determined by the first array.\\n     *\\n     * **Note:** Unlike `_.pullAll`, this method returns a new array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {...Array} [values] The values to exclude.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @see _.without, _.xor\\n     * @example\\n     *\\n     * _.difference([2, 1], [2, 3]);\\n     * // => [1]\\n     */\\n    var difference = baseRest(function(array, values) {\\n      return isArrayLikeObject(array)\\n        ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true))\\n        : [];\\n    });\\n\\n    /**\\n     * This method is like `_.difference` except that it accepts `iteratee` which\\n     * is invoked for each element of `array` and `values` to generate the criterion\\n     * by which they're compared. The order and references of result values are\\n     * determined by the first array. The iteratee is invoked with one argument:\\n     * (value).\\n     *\\n     * **Note:** Unlike `_.pullAllBy`, this method returns a new array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {...Array} [values] The values to exclude.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @example\\n     *\\n     * _.differenceBy([2.1, 1.2], [2.3, 3.4], Math.floor);\\n     * // => [1.2]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.differenceBy([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], 'x');\\n     * // => [{ 'x': 2 }]\\n     */\\n    var differenceBy = baseRest(function(array, values) {\\n      var iteratee = last(values);\\n      if (isArrayLikeObject(iteratee)) {\\n        iteratee = undefined;\\n      }\\n      return isArrayLikeObject(array)\\n        ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), getIteratee(iteratee, 2))\\n        : [];\\n    });\\n\\n    /**\\n     * This method is like `_.difference` except that it accepts `comparator`\\n     * which is invoked to compare elements of `array` to `values`. The order and\\n     * references of result values are determined by the first array. The comparator\\n     * is invoked with two arguments: (arrVal, othVal).\\n     *\\n     * **Note:** Unlike `_.pullAllWith`, this method returns a new array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {...Array} [values] The values to exclude.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];\\n     *\\n     * _.differenceWith(objects, [{ 'x': 1, 'y': 2 }], _.isEqual);\\n     * // => [{ 'x': 2, 'y': 1 }]\\n     */\\n    var differenceWith = baseRest(function(array, values) {\\n      var comparator = last(values);\\n      if (isArrayLikeObject(comparator)) {\\n        comparator = undefined;\\n      }\\n      return isArrayLikeObject(array)\\n        ? baseDifference(array, baseFlatten(values, 1, isArrayLikeObject, true), undefined, comparator)\\n        : [];\\n    });\\n\\n    /**\\n     * Creates a slice of `array` with `n` elements dropped from the beginning.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.5.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {number} [n=1] The number of elements to drop.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * _.drop([1, 2, 3]);\\n     * // => [2, 3]\\n     *\\n     * _.drop([1, 2, 3], 2);\\n     * // => [3]\\n     *\\n     * _.drop([1, 2, 3], 5);\\n     * // => []\\n     *\\n     * _.drop([1, 2, 3], 0);\\n     * // => [1, 2, 3]\\n     */\\n    function drop(array, n, guard) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return [];\\n      }\\n      n = (guard || n === undefined) ? 1 : toInteger(n);\\n      return baseSlice(array, n < 0 ? 0 : n, length);\\n    }\\n\\n    /**\\n     * Creates a slice of `array` with `n` elements dropped from the end.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {number} [n=1] The number of elements to drop.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * _.dropRight([1, 2, 3]);\\n     * // => [1, 2]\\n     *\\n     * _.dropRight([1, 2, 3], 2);\\n     * // => [1]\\n     *\\n     * _.dropRight([1, 2, 3], 5);\\n     * // => []\\n     *\\n     * _.dropRight([1, 2, 3], 0);\\n     * // => [1, 2, 3]\\n     */\\n    function dropRight(array, n, guard) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return [];\\n      }\\n      n = (guard || n === undefined) ? 1 : toInteger(n);\\n      n = length - n;\\n      return baseSlice(array, 0, n < 0 ? 0 : n);\\n    }\\n\\n    /**\\n     * Creates a slice of `array` excluding elements dropped from the end.\\n     * Elements are dropped until `predicate` returns falsey. The predicate is\\n     * invoked with three arguments: (value, index, array).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'active': true },\\n     *   { 'user': 'fred',    'active': false },\\n     *   { 'user': 'pebbles', 'active': false }\\n     * ];\\n     *\\n     * _.dropRightWhile(users, function(o) { return !o.active; });\\n     * // => objects for ['barney']\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.dropRightWhile(users, { 'user': 'pebbles', 'active': false });\\n     * // => objects for ['barney', 'fred']\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.dropRightWhile(users, ['active', false]);\\n     * // => objects for ['barney']\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.dropRightWhile(users, 'active');\\n     * // => objects for ['barney', 'fred', 'pebbles']\\n     */\\n    function dropRightWhile(array, predicate) {\\n      return (array && array.length)\\n        ? baseWhile(array, getIteratee(predicate, 3), true, true)\\n        : [];\\n    }\\n\\n    /**\\n     * Creates a slice of `array` excluding elements dropped from the beginning.\\n     * Elements are dropped until `predicate` returns falsey. The predicate is\\n     * invoked with three arguments: (value, index, array).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'active': false },\\n     *   { 'user': 'fred',    'active': false },\\n     *   { 'user': 'pebbles', 'active': true }\\n     * ];\\n     *\\n     * _.dropWhile(users, function(o) { return !o.active; });\\n     * // => objects for ['pebbles']\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.dropWhile(users, { 'user': 'barney', 'active': false });\\n     * // => objects for ['fred', 'pebbles']\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.dropWhile(users, ['active', false]);\\n     * // => objects for ['pebbles']\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.dropWhile(users, 'active');\\n     * // => objects for ['barney', 'fred', 'pebbles']\\n     */\\n    function dropWhile(array, predicate) {\\n      return (array && array.length)\\n        ? baseWhile(array, getIteratee(predicate, 3), true)\\n        : [];\\n    }\\n\\n    /**\\n     * Fills elements of `array` with `value` from `start` up to, but not\\n     * including, `end`.\\n     *\\n     * **Note:** This method mutates `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.2.0\\n     * @category Array\\n     * @param {Array} array The array to fill.\\n     * @param {*} value The value to fill `array` with.\\n     * @param {number} [start=0] The start position.\\n     * @param {number} [end=array.length] The end position.\\n     * @returns {Array} Returns `array`.\\n     * @example\\n     *\\n     * var array = [1, 2, 3];\\n     *\\n     * _.fill(array, 'a');\\n     * console.log(array);\\n     * // => ['a', 'a', 'a']\\n     *\\n     * _.fill(Array(3), 2);\\n     * // => [2, 2, 2]\\n     *\\n     * _.fill([4, 6, 8, 10], '*', 1, 3);\\n     * // => [4, '*', '*', 10]\\n     */\\n    function fill(array, value, start, end) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return [];\\n      }\\n      if (start && typeof start != 'number' && isIterateeCall(array, value, start)) {\\n        start = 0;\\n        end = length;\\n      }\\n      return baseFill(array, value, start, end);\\n    }\\n\\n    /**\\n     * This method is like `_.find` except that it returns the index of the first\\n     * element `predicate` returns truthy for instead of the element itself.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.1.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @param {number} [fromIndex=0] The index to search from.\\n     * @returns {number} Returns the index of the found element, else `-1`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'active': false },\\n     *   { 'user': 'fred',    'active': false },\\n     *   { 'user': 'pebbles', 'active': true }\\n     * ];\\n     *\\n     * _.findIndex(users, function(o) { return o.user == 'barney'; });\\n     * // => 0\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.findIndex(users, { 'user': 'fred', 'active': false });\\n     * // => 1\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.findIndex(users, ['active', false]);\\n     * // => 0\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.findIndex(users, 'active');\\n     * // => 2\\n     */\\n    function findIndex(array, predicate, fromIndex) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return -1;\\n      }\\n      var index = fromIndex == null ? 0 : toInteger(fromIndex);\\n      if (index < 0) {\\n        index = nativeMax(length + index, 0);\\n      }\\n      return baseFindIndex(array, getIteratee(predicate, 3), index);\\n    }\\n\\n    /**\\n     * This method is like `_.findIndex` except that it iterates over elements\\n     * of `collection` from right to left.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @param {number} [fromIndex=array.length-1] The index to search from.\\n     * @returns {number} Returns the index of the found element, else `-1`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'active': true },\\n     *   { 'user': 'fred',    'active': false },\\n     *   { 'user': 'pebbles', 'active': false }\\n     * ];\\n     *\\n     * _.findLastIndex(users, function(o) { return o.user == 'pebbles'; });\\n     * // => 2\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.findLastIndex(users, { 'user': 'barney', 'active': true });\\n     * // => 0\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.findLastIndex(users, ['active', false]);\\n     * // => 2\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.findLastIndex(users, 'active');\\n     * // => 0\\n     */\\n    function findLastIndex(array, predicate, fromIndex) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return -1;\\n      }\\n      var index = length - 1;\\n      if (fromIndex !== undefined) {\\n        index = toInteger(fromIndex);\\n        index = fromIndex < 0\\n          ? nativeMax(length + index, 0)\\n          : nativeMin(index, length - 1);\\n      }\\n      return baseFindIndex(array, getIteratee(predicate, 3), index, true);\\n    }\\n\\n    /**\\n     * Flattens `array` a single level deep.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to flatten.\\n     * @returns {Array} Returns the new flattened array.\\n     * @example\\n     *\\n     * _.flatten([1, [2, [3, [4]], 5]]);\\n     * // => [1, 2, [3, [4]], 5]\\n     */\\n    function flatten(array) {\\n      var length = array == null ? 0 : array.length;\\n      return length ? baseFlatten(array, 1) : [];\\n    }\\n\\n    /**\\n     * Recursively flattens `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to flatten.\\n     * @returns {Array} Returns the new flattened array.\\n     * @example\\n     *\\n     * _.flattenDeep([1, [2, [3, [4]], 5]]);\\n     * // => [1, 2, 3, 4, 5]\\n     */\\n    function flattenDeep(array) {\\n      var length = array == null ? 0 : array.length;\\n      return length ? baseFlatten(array, INFINITY) : [];\\n    }\\n\\n    /**\\n     * Recursively flatten `array` up to `depth` times.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.4.0\\n     * @category Array\\n     * @param {Array} array The array to flatten.\\n     * @param {number} [depth=1] The maximum recursion depth.\\n     * @returns {Array} Returns the new flattened array.\\n     * @example\\n     *\\n     * var array = [1, [2, [3, [4]], 5]];\\n     *\\n     * _.flattenDepth(array, 1);\\n     * // => [1, 2, [3, [4]], 5]\\n     *\\n     * _.flattenDepth(array, 2);\\n     * // => [1, 2, 3, [4], 5]\\n     */\\n    function flattenDepth(array, depth) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return [];\\n      }\\n      depth = depth === undefined ? 1 : toInteger(depth);\\n      return baseFlatten(array, depth);\\n    }\\n\\n    /**\\n     * The inverse of `_.toPairs`; this method returns an object composed\\n     * from key-value `pairs`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} pairs The key-value pairs.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * _.fromPairs([['a', 1], ['b', 2]]);\\n     * // => { 'a': 1, 'b': 2 }\\n     */\\n    function fromPairs(pairs) {\\n      var index = -1,\\n          length = pairs == null ? 0 : pairs.length,\\n          result = {};\\n\\n      while (++index < length) {\\n        var pair = pairs[index];\\n        result[pair[0]] = pair[1];\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Gets the first element of `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @alias first\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @returns {*} Returns the first element of `array`.\\n     * @example\\n     *\\n     * _.head([1, 2, 3]);\\n     * // => 1\\n     *\\n     * _.head([]);\\n     * // => undefined\\n     */\\n    function head(array) {\\n      return (array && array.length) ? array[0] : undefined;\\n    }\\n\\n    /**\\n     * Gets the index at which the first occurrence of `value` is found in `array`\\n     * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons. If `fromIndex` is negative, it's used as the\\n     * offset from the end of `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {*} value The value to search for.\\n     * @param {number} [fromIndex=0] The index to search from.\\n     * @returns {number} Returns the index of the matched value, else `-1`.\\n     * @example\\n     *\\n     * _.indexOf([1, 2, 1, 2], 2);\\n     * // => 1\\n     *\\n     * // Search from the `fromIndex`.\\n     * _.indexOf([1, 2, 1, 2], 2, 2);\\n     * // => 3\\n     */\\n    function indexOf(array, value, fromIndex) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return -1;\\n      }\\n      var index = fromIndex == null ? 0 : toInteger(fromIndex);\\n      if (index < 0) {\\n        index = nativeMax(length + index, 0);\\n      }\\n      return baseIndexOf(array, value, index);\\n    }\\n\\n    /**\\n     * Gets all but the last element of `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * _.initial([1, 2, 3]);\\n     * // => [1, 2]\\n     */\\n    function initial(array) {\\n      var length = array == null ? 0 : array.length;\\n      return length ? baseSlice(array, 0, -1) : [];\\n    }\\n\\n    /**\\n     * Creates an array of unique values that are included in all given arrays\\n     * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons. The order and references of result values are\\n     * determined by the first array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @returns {Array} Returns the new array of intersecting values.\\n     * @example\\n     *\\n     * _.intersection([2, 1], [2, 3]);\\n     * // => [2]\\n     */\\n    var intersection = baseRest(function(arrays) {\\n      var mapped = arrayMap(arrays, castArrayLikeObject);\\n      return (mapped.length && mapped[0] === arrays[0])\\n        ? baseIntersection(mapped)\\n        : [];\\n    });\\n\\n    /**\\n     * This method is like `_.intersection` except that it accepts `iteratee`\\n     * which is invoked for each element of each `arrays` to generate the criterion\\n     * by which they're compared. The order and references of result values are\\n     * determined by the first array. The iteratee is invoked with one argument:\\n     * (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Array} Returns the new array of intersecting values.\\n     * @example\\n     *\\n     * _.intersectionBy([2.1, 1.2], [2.3, 3.4], Math.floor);\\n     * // => [2.1]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.intersectionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');\\n     * // => [{ 'x': 1 }]\\n     */\\n    var intersectionBy = baseRest(function(arrays) {\\n      var iteratee = last(arrays),\\n          mapped = arrayMap(arrays, castArrayLikeObject);\\n\\n      if (iteratee === last(mapped)) {\\n        iteratee = undefined;\\n      } else {\\n        mapped.pop();\\n      }\\n      return (mapped.length && mapped[0] === arrays[0])\\n        ? baseIntersection(mapped, getIteratee(iteratee, 2))\\n        : [];\\n    });\\n\\n    /**\\n     * This method is like `_.intersection` except that it accepts `comparator`\\n     * which is invoked to compare elements of `arrays`. The order and references\\n     * of result values are determined by the first array. The comparator is\\n     * invoked with two arguments: (arrVal, othVal).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of intersecting values.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];\\n     * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];\\n     *\\n     * _.intersectionWith(objects, others, _.isEqual);\\n     * // => [{ 'x': 1, 'y': 2 }]\\n     */\\n    var intersectionWith = baseRest(function(arrays) {\\n      var comparator = last(arrays),\\n          mapped = arrayMap(arrays, castArrayLikeObject);\\n\\n      comparator = typeof comparator == 'function' ? comparator : undefined;\\n      if (comparator) {\\n        mapped.pop();\\n      }\\n      return (mapped.length && mapped[0] === arrays[0])\\n        ? baseIntersection(mapped, undefined, comparator)\\n        : [];\\n    });\\n\\n    /**\\n     * Converts all elements in `array` into a string separated by `separator`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to convert.\\n     * @param {string} [separator=','] The element separator.\\n     * @returns {string} Returns the joined string.\\n     * @example\\n     *\\n     * _.join(['a', 'b', 'c'], '~');\\n     * // => 'a~b~c'\\n     */\\n    function join(array, separator) {\\n      return array == null ? '' : nativeJoin.call(array, separator);\\n    }\\n\\n    /**\\n     * Gets the last element of `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @returns {*} Returns the last element of `array`.\\n     * @example\\n     *\\n     * _.last([1, 2, 3]);\\n     * // => 3\\n     */\\n    function last(array) {\\n      var length = array == null ? 0 : array.length;\\n      return length ? array[length - 1] : undefined;\\n    }\\n\\n    /**\\n     * This method is like `_.indexOf` except that it iterates over elements of\\n     * `array` from right to left.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {*} value The value to search for.\\n     * @param {number} [fromIndex=array.length-1] The index to search from.\\n     * @returns {number} Returns the index of the matched value, else `-1`.\\n     * @example\\n     *\\n     * _.lastIndexOf([1, 2, 1, 2], 2);\\n     * // => 3\\n     *\\n     * // Search from the `fromIndex`.\\n     * _.lastIndexOf([1, 2, 1, 2], 2, 2);\\n     * // => 1\\n     */\\n    function lastIndexOf(array, value, fromIndex) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return -1;\\n      }\\n      var index = length;\\n      if (fromIndex !== undefined) {\\n        index = toInteger(fromIndex);\\n        index = index < 0 ? nativeMax(length + index, 0) : nativeMin(index, length - 1);\\n      }\\n      return value === value\\n        ? strictLastIndexOf(array, value, index)\\n        : baseFindIndex(array, baseIsNaN, index, true);\\n    }\\n\\n    /**\\n     * Gets the element at index `n` of `array`. If `n` is negative, the nth\\n     * element from the end is returned.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.11.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {number} [n=0] The index of the element to return.\\n     * @returns {*} Returns the nth element of `array`.\\n     * @example\\n     *\\n     * var array = ['a', 'b', 'c', 'd'];\\n     *\\n     * _.nth(array, 1);\\n     * // => 'b'\\n     *\\n     * _.nth(array, -2);\\n     * // => 'c';\\n     */\\n    function nth(array, n) {\\n      return (array && array.length) ? baseNth(array, toInteger(n)) : undefined;\\n    }\\n\\n    /**\\n     * Removes all given values from `array` using\\n     * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons.\\n     *\\n     * **Note:** Unlike `_.without`, this method mutates `array`. Use `_.remove`\\n     * to remove elements from an array by predicate.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @param {...*} [values] The values to remove.\\n     * @returns {Array} Returns `array`.\\n     * @example\\n     *\\n     * var array = ['a', 'b', 'c', 'a', 'b', 'c'];\\n     *\\n     * _.pull(array, 'a', 'c');\\n     * console.log(array);\\n     * // => ['b', 'b']\\n     */\\n    var pull = baseRest(pullAll);\\n\\n    /**\\n     * This method is like `_.pull` except that it accepts an array of values to remove.\\n     *\\n     * **Note:** Unlike `_.difference`, this method mutates `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @param {Array} values The values to remove.\\n     * @returns {Array} Returns `array`.\\n     * @example\\n     *\\n     * var array = ['a', 'b', 'c', 'a', 'b', 'c'];\\n     *\\n     * _.pullAll(array, ['a', 'c']);\\n     * console.log(array);\\n     * // => ['b', 'b']\\n     */\\n    function pullAll(array, values) {\\n      return (array && array.length && values && values.length)\\n        ? basePullAll(array, values)\\n        : array;\\n    }\\n\\n    /**\\n     * This method is like `_.pullAll` except that it accepts `iteratee` which is\\n     * invoked for each element of `array` and `values` to generate the criterion\\n     * by which they're compared. The iteratee is invoked with one argument: (value).\\n     *\\n     * **Note:** Unlike `_.differenceBy`, this method mutates `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @param {Array} values The values to remove.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Array} Returns `array`.\\n     * @example\\n     *\\n     * var array = [{ 'x': 1 }, { 'x': 2 }, { 'x': 3 }, { 'x': 1 }];\\n     *\\n     * _.pullAllBy(array, [{ 'x': 1 }, { 'x': 3 }], 'x');\\n     * console.log(array);\\n     * // => [{ 'x': 2 }]\\n     */\\n    function pullAllBy(array, values, iteratee) {\\n      return (array && array.length && values && values.length)\\n        ? basePullAll(array, values, getIteratee(iteratee, 2))\\n        : array;\\n    }\\n\\n    /**\\n     * This method is like `_.pullAll` except that it accepts `comparator` which\\n     * is invoked to compare elements of `array` to `values`. The comparator is\\n     * invoked with two arguments: (arrVal, othVal).\\n     *\\n     * **Note:** Unlike `_.differenceWith`, this method mutates `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.6.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @param {Array} values The values to remove.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns `array`.\\n     * @example\\n     *\\n     * var array = [{ 'x': 1, 'y': 2 }, { 'x': 3, 'y': 4 }, { 'x': 5, 'y': 6 }];\\n     *\\n     * _.pullAllWith(array, [{ 'x': 3, 'y': 4 }], _.isEqual);\\n     * console.log(array);\\n     * // => [{ 'x': 1, 'y': 2 }, { 'x': 5, 'y': 6 }]\\n     */\\n    function pullAllWith(array, values, comparator) {\\n      return (array && array.length && values && values.length)\\n        ? basePullAll(array, values, undefined, comparator)\\n        : array;\\n    }\\n\\n    /**\\n     * Removes elements from `array` corresponding to `indexes` and returns an\\n     * array of removed elements.\\n     *\\n     * **Note:** Unlike `_.at`, this method mutates `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @param {...(number|number[])} [indexes] The indexes of elements to remove.\\n     * @returns {Array} Returns the new array of removed elements.\\n     * @example\\n     *\\n     * var array = ['a', 'b', 'c', 'd'];\\n     * var pulled = _.pullAt(array, [1, 3]);\\n     *\\n     * console.log(array);\\n     * // => ['a', 'c']\\n     *\\n     * console.log(pulled);\\n     * // => ['b', 'd']\\n     */\\n    var pullAt = flatRest(function(array, indexes) {\\n      var length = array == null ? 0 : array.length,\\n          result = baseAt(array, indexes);\\n\\n      basePullAt(array, arrayMap(indexes, function(index) {\\n        return isIndex(index, length) ? +index : index;\\n      }).sort(compareAscending));\\n\\n      return result;\\n    });\\n\\n    /**\\n     * Removes all elements from `array` that `predicate` returns truthy for\\n     * and returns an array of the removed elements. The predicate is invoked\\n     * with three arguments: (value, index, array).\\n     *\\n     * **Note:** Unlike `_.filter`, this method mutates `array`. Use `_.pull`\\n     * to pull elements from an array by value.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the new array of removed elements.\\n     * @example\\n     *\\n     * var array = [1, 2, 3, 4];\\n     * var evens = _.remove(array, function(n) {\\n     *   return n % 2 == 0;\\n     * });\\n     *\\n     * console.log(array);\\n     * // => [1, 3]\\n     *\\n     * console.log(evens);\\n     * // => [2, 4]\\n     */\\n    function remove(array, predicate) {\\n      var result = [];\\n      if (!(array && array.length)) {\\n        return result;\\n      }\\n      var index = -1,\\n          indexes = [],\\n          length = array.length;\\n\\n      predicate = getIteratee(predicate, 3);\\n      while (++index < length) {\\n        var value = array[index];\\n        if (predicate(value, index, array)) {\\n          result.push(value);\\n          indexes.push(index);\\n        }\\n      }\\n      basePullAt(array, indexes);\\n      return result;\\n    }\\n\\n    /**\\n     * Reverses `array` so that the first element becomes the last, the second\\n     * element becomes the second to last, and so on.\\n     *\\n     * **Note:** This method mutates `array` and is based on\\n     * [`Array#reverse`](https://mdn.io/Array/reverse).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to modify.\\n     * @returns {Array} Returns `array`.\\n     * @example\\n     *\\n     * var array = [1, 2, 3];\\n     *\\n     * _.reverse(array);\\n     * // => [3, 2, 1]\\n     *\\n     * console.log(array);\\n     * // => [3, 2, 1]\\n     */\\n    function reverse(array) {\\n      return array == null ? array : nativeReverse.call(array);\\n    }\\n\\n    /**\\n     * Creates a slice of `array` from `start` up to, but not including, `end`.\\n     *\\n     * **Note:** This method is used instead of\\n     * [`Array#slice`](https://mdn.io/Array/slice) to ensure dense arrays are\\n     * returned.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to slice.\\n     * @param {number} [start=0] The start position.\\n     * @param {number} [end=array.length] The end position.\\n     * @returns {Array} Returns the slice of `array`.\\n     */\\n    function slice(array, start, end) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return [];\\n      }\\n      if (end && typeof end != 'number' && isIterateeCall(array, start, end)) {\\n        start = 0;\\n        end = length;\\n      }\\n      else {\\n        start = start == null ? 0 : toInteger(start);\\n        end = end === undefined ? length : toInteger(end);\\n      }\\n      return baseSlice(array, start, end);\\n    }\\n\\n    /**\\n     * Uses a binary search to determine the lowest index at which `value`\\n     * should be inserted into `array` in order to maintain its sort order.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The sorted array to inspect.\\n     * @param {*} value The value to evaluate.\\n     * @returns {number} Returns the index at which `value` should be inserted\\n     *  into `array`.\\n     * @example\\n     *\\n     * _.sortedIndex([30, 50], 40);\\n     * // => 1\\n     */\\n    function sortedIndex(array, value) {\\n      return baseSortedIndex(array, value);\\n    }\\n\\n    /**\\n     * This method is like `_.sortedIndex` except that it accepts `iteratee`\\n     * which is invoked for `value` and each element of `array` to compute their\\n     * sort ranking. The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The sorted array to inspect.\\n     * @param {*} value The value to evaluate.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {number} Returns the index at which `value` should be inserted\\n     *  into `array`.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 4 }, { 'x': 5 }];\\n     *\\n     * _.sortedIndexBy(objects, { 'x': 4 }, function(o) { return o.x; });\\n     * // => 0\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.sortedIndexBy(objects, { 'x': 4 }, 'x');\\n     * // => 0\\n     */\\n    function sortedIndexBy(array, value, iteratee) {\\n      return baseSortedIndexBy(array, value, getIteratee(iteratee, 2));\\n    }\\n\\n    /**\\n     * This method is like `_.indexOf` except that it performs a binary\\n     * search on a sorted `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {*} value The value to search for.\\n     * @returns {number} Returns the index of the matched value, else `-1`.\\n     * @example\\n     *\\n     * _.sortedIndexOf([4, 5, 5, 5, 6], 5);\\n     * // => 1\\n     */\\n    function sortedIndexOf(array, value) {\\n      var length = array == null ? 0 : array.length;\\n      if (length) {\\n        var index = baseSortedIndex(array, value);\\n        if (index < length && eq(array[index], value)) {\\n          return index;\\n        }\\n      }\\n      return -1;\\n    }\\n\\n    /**\\n     * This method is like `_.sortedIndex` except that it returns the highest\\n     * index at which `value` should be inserted into `array` in order to\\n     * maintain its sort order.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The sorted array to inspect.\\n     * @param {*} value The value to evaluate.\\n     * @returns {number} Returns the index at which `value` should be inserted\\n     *  into `array`.\\n     * @example\\n     *\\n     * _.sortedLastIndex([4, 5, 5, 5, 6], 5);\\n     * // => 4\\n     */\\n    function sortedLastIndex(array, value) {\\n      return baseSortedIndex(array, value, true);\\n    }\\n\\n    /**\\n     * This method is like `_.sortedLastIndex` except that it accepts `iteratee`\\n     * which is invoked for `value` and each element of `array` to compute their\\n     * sort ranking. The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The sorted array to inspect.\\n     * @param {*} value The value to evaluate.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {number} Returns the index at which `value` should be inserted\\n     *  into `array`.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 4 }, { 'x': 5 }];\\n     *\\n     * _.sortedLastIndexBy(objects, { 'x': 4 }, function(o) { return o.x; });\\n     * // => 1\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.sortedLastIndexBy(objects, { 'x': 4 }, 'x');\\n     * // => 1\\n     */\\n    function sortedLastIndexBy(array, value, iteratee) {\\n      return baseSortedIndexBy(array, value, getIteratee(iteratee, 2), true);\\n    }\\n\\n    /**\\n     * This method is like `_.lastIndexOf` except that it performs a binary\\n     * search on a sorted `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {*} value The value to search for.\\n     * @returns {number} Returns the index of the matched value, else `-1`.\\n     * @example\\n     *\\n     * _.sortedLastIndexOf([4, 5, 5, 5, 6], 5);\\n     * // => 3\\n     */\\n    function sortedLastIndexOf(array, value) {\\n      var length = array == null ? 0 : array.length;\\n      if (length) {\\n        var index = baseSortedIndex(array, value, true) - 1;\\n        if (eq(array[index], value)) {\\n          return index;\\n        }\\n      }\\n      return -1;\\n    }\\n\\n    /**\\n     * This method is like `_.uniq` except that it's designed and optimized\\n     * for sorted arrays.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @returns {Array} Returns the new duplicate free array.\\n     * @example\\n     *\\n     * _.sortedUniq([1, 1, 2]);\\n     * // => [1, 2]\\n     */\\n    function sortedUniq(array) {\\n      return (array && array.length)\\n        ? baseSortedUniq(array)\\n        : [];\\n    }\\n\\n    /**\\n     * This method is like `_.uniqBy` except that it's designed and optimized\\n     * for sorted arrays.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [iteratee] The iteratee invoked per element.\\n     * @returns {Array} Returns the new duplicate free array.\\n     * @example\\n     *\\n     * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor);\\n     * // => [1.1, 2.3]\\n     */\\n    function sortedUniqBy(array, iteratee) {\\n      return (array && array.length)\\n        ? baseSortedUniq(array, getIteratee(iteratee, 2))\\n        : [];\\n    }\\n\\n    /**\\n     * Gets all but the first element of `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * _.tail([1, 2, 3]);\\n     * // => [2, 3]\\n     */\\n    function tail(array) {\\n      var length = array == null ? 0 : array.length;\\n      return length ? baseSlice(array, 1, length) : [];\\n    }\\n\\n    /**\\n     * Creates a slice of `array` with `n` elements taken from the beginning.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {number} [n=1] The number of elements to take.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * _.take([1, 2, 3]);\\n     * // => [1]\\n     *\\n     * _.take([1, 2, 3], 2);\\n     * // => [1, 2]\\n     *\\n     * _.take([1, 2, 3], 5);\\n     * // => [1, 2, 3]\\n     *\\n     * _.take([1, 2, 3], 0);\\n     * // => []\\n     */\\n    function take(array, n, guard) {\\n      if (!(array && array.length)) {\\n        return [];\\n      }\\n      n = (guard || n === undefined) ? 1 : toInteger(n);\\n      return baseSlice(array, 0, n < 0 ? 0 : n);\\n    }\\n\\n    /**\\n     * Creates a slice of `array` with `n` elements taken from the end.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {number} [n=1] The number of elements to take.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * _.takeRight([1, 2, 3]);\\n     * // => [3]\\n     *\\n     * _.takeRight([1, 2, 3], 2);\\n     * // => [2, 3]\\n     *\\n     * _.takeRight([1, 2, 3], 5);\\n     * // => [1, 2, 3]\\n     *\\n     * _.takeRight([1, 2, 3], 0);\\n     * // => []\\n     */\\n    function takeRight(array, n, guard) {\\n      var length = array == null ? 0 : array.length;\\n      if (!length) {\\n        return [];\\n      }\\n      n = (guard || n === undefined) ? 1 : toInteger(n);\\n      n = length - n;\\n      return baseSlice(array, n < 0 ? 0 : n, length);\\n    }\\n\\n    /**\\n     * Creates a slice of `array` with elements taken from the end. Elements are\\n     * taken until `predicate` returns falsey. The predicate is invoked with\\n     * three arguments: (value, index, array).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'active': true },\\n     *   { 'user': 'fred',    'active': false },\\n     *   { 'user': 'pebbles', 'active': false }\\n     * ];\\n     *\\n     * _.takeRightWhile(users, function(o) { return !o.active; });\\n     * // => objects for ['fred', 'pebbles']\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.takeRightWhile(users, { 'user': 'pebbles', 'active': false });\\n     * // => objects for ['pebbles']\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.takeRightWhile(users, ['active', false]);\\n     * // => objects for ['fred', 'pebbles']\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.takeRightWhile(users, 'active');\\n     * // => []\\n     */\\n    function takeRightWhile(array, predicate) {\\n      return (array && array.length)\\n        ? baseWhile(array, getIteratee(predicate, 3), false, true)\\n        : [];\\n    }\\n\\n    /**\\n     * Creates a slice of `array` with elements taken from the beginning. Elements\\n     * are taken until `predicate` returns falsey. The predicate is invoked with\\n     * three arguments: (value, index, array).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Array\\n     * @param {Array} array The array to query.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the slice of `array`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'active': false },\\n     *   { 'user': 'fred',    'active': false },\\n     *   { 'user': 'pebbles', 'active': true }\\n     * ];\\n     *\\n     * _.takeWhile(users, function(o) { return !o.active; });\\n     * // => objects for ['barney', 'fred']\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.takeWhile(users, { 'user': 'barney', 'active': false });\\n     * // => objects for ['barney']\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.takeWhile(users, ['active', false]);\\n     * // => objects for ['barney', 'fred']\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.takeWhile(users, 'active');\\n     * // => []\\n     */\\n    function takeWhile(array, predicate) {\\n      return (array && array.length)\\n        ? baseWhile(array, getIteratee(predicate, 3))\\n        : [];\\n    }\\n\\n    /**\\n     * Creates an array of unique values, in order, from all given arrays using\\n     * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @returns {Array} Returns the new array of combined values.\\n     * @example\\n     *\\n     * _.union([2], [1, 2]);\\n     * // => [2, 1]\\n     */\\n    var union = baseRest(function(arrays) {\\n      return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true));\\n    });\\n\\n    /**\\n     * This method is like `_.union` except that it accepts `iteratee` which is\\n     * invoked for each element of each `arrays` to generate the criterion by\\n     * which uniqueness is computed. Result values are chosen from the first\\n     * array in which the value occurs. The iteratee is invoked with one argument:\\n     * (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Array} Returns the new array of combined values.\\n     * @example\\n     *\\n     * _.unionBy([2.1], [1.2, 2.3], Math.floor);\\n     * // => [2.1, 1.2]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.unionBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');\\n     * // => [{ 'x': 1 }, { 'x': 2 }]\\n     */\\n    var unionBy = baseRest(function(arrays) {\\n      var iteratee = last(arrays);\\n      if (isArrayLikeObject(iteratee)) {\\n        iteratee = undefined;\\n      }\\n      return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), getIteratee(iteratee, 2));\\n    });\\n\\n    /**\\n     * This method is like `_.union` except that it accepts `comparator` which\\n     * is invoked to compare elements of `arrays`. Result values are chosen from\\n     * the first array in which the value occurs. The comparator is invoked\\n     * with two arguments: (arrVal, othVal).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of combined values.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];\\n     * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];\\n     *\\n     * _.unionWith(objects, others, _.isEqual);\\n     * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }]\\n     */\\n    var unionWith = baseRest(function(arrays) {\\n      var comparator = last(arrays);\\n      comparator = typeof comparator == 'function' ? comparator : undefined;\\n      return baseUniq(baseFlatten(arrays, 1, isArrayLikeObject, true), undefined, comparator);\\n    });\\n\\n    /**\\n     * Creates a duplicate-free version of an array, using\\n     * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons, in which only the first occurrence of each element\\n     * is kept. The order of result values is determined by the order they occur\\n     * in the array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @returns {Array} Returns the new duplicate free array.\\n     * @example\\n     *\\n     * _.uniq([2, 1, 2]);\\n     * // => [2, 1]\\n     */\\n    function uniq(array) {\\n      return (array && array.length) ? baseUniq(array) : [];\\n    }\\n\\n    /**\\n     * This method is like `_.uniq` except that it accepts `iteratee` which is\\n     * invoked for each element in `array` to generate the criterion by which\\n     * uniqueness is computed. The order of result values is determined by the\\n     * order they occur in the array. The iteratee is invoked with one argument:\\n     * (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Array} Returns the new duplicate free array.\\n     * @example\\n     *\\n     * _.uniqBy([2.1, 1.2, 2.3], Math.floor);\\n     * // => [2.1, 1.2]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x');\\n     * // => [{ 'x': 1 }, { 'x': 2 }]\\n     */\\n    function uniqBy(array, iteratee) {\\n      return (array && array.length) ? baseUniq(array, getIteratee(iteratee, 2)) : [];\\n    }\\n\\n    /**\\n     * This method is like `_.uniq` except that it accepts `comparator` which\\n     * is invoked to compare elements of `array`. The order of result values is\\n     * determined by the order they occur in the array.The comparator is invoked\\n     * with two arguments: (arrVal, othVal).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new duplicate free array.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }];\\n     *\\n     * _.uniqWith(objects, _.isEqual);\\n     * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]\\n     */\\n    function uniqWith(array, comparator) {\\n      comparator = typeof comparator == 'function' ? comparator : undefined;\\n      return (array && array.length) ? baseUniq(array, undefined, comparator) : [];\\n    }\\n\\n    /**\\n     * This method is like `_.zip` except that it accepts an array of grouped\\n     * elements and creates an array regrouping the elements to their pre-zip\\n     * configuration.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.2.0\\n     * @category Array\\n     * @param {Array} array The array of grouped elements to process.\\n     * @returns {Array} Returns the new array of regrouped elements.\\n     * @example\\n     *\\n     * var zipped = _.zip(['a', 'b'], [1, 2], [true, false]);\\n     * // => [['a', 1, true], ['b', 2, false]]\\n     *\\n     * _.unzip(zipped);\\n     * // => [['a', 'b'], [1, 2], [true, false]]\\n     */\\n    function unzip(array) {\\n      if (!(array && array.length)) {\\n        return [];\\n      }\\n      var length = 0;\\n      array = arrayFilter(array, function(group) {\\n        if (isArrayLikeObject(group)) {\\n          length = nativeMax(group.length, length);\\n          return true;\\n        }\\n      });\\n      return baseTimes(length, function(index) {\\n        return arrayMap(array, baseProperty(index));\\n      });\\n    }\\n\\n    /**\\n     * This method is like `_.unzip` except that it accepts `iteratee` to specify\\n     * how regrouped values should be combined. The iteratee is invoked with the\\n     * elements of each group: (...group).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.8.0\\n     * @category Array\\n     * @param {Array} array The array of grouped elements to process.\\n     * @param {Function} [iteratee=_.identity] The function to combine\\n     *  regrouped values.\\n     * @returns {Array} Returns the new array of regrouped elements.\\n     * @example\\n     *\\n     * var zipped = _.zip([1, 2], [10, 20], [100, 200]);\\n     * // => [[1, 10, 100], [2, 20, 200]]\\n     *\\n     * _.unzipWith(zipped, _.add);\\n     * // => [3, 30, 300]\\n     */\\n    function unzipWith(array, iteratee) {\\n      if (!(array && array.length)) {\\n        return [];\\n      }\\n      var result = unzip(array);\\n      if (iteratee == null) {\\n        return result;\\n      }\\n      return arrayMap(result, function(group) {\\n        return apply(iteratee, undefined, group);\\n      });\\n    }\\n\\n    /**\\n     * Creates an array excluding all given values using\\n     * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * for equality comparisons.\\n     *\\n     * **Note:** Unlike `_.pull`, this method returns a new array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {Array} array The array to inspect.\\n     * @param {...*} [values] The values to exclude.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @see _.difference, _.xor\\n     * @example\\n     *\\n     * _.without([2, 1, 2, 3], 1, 2);\\n     * // => [3]\\n     */\\n    var without = baseRest(function(array, values) {\\n      return isArrayLikeObject(array)\\n        ? baseDifference(array, values)\\n        : [];\\n    });\\n\\n    /**\\n     * Creates an array of unique values that is the\\n     * [symmetric difference](https://en.wikipedia.org/wiki/Symmetric_difference)\\n     * of the given arrays. The order of result values is determined by the order\\n     * they occur in the arrays.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.4.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @see _.difference, _.without\\n     * @example\\n     *\\n     * _.xor([2, 1], [2, 3]);\\n     * // => [1, 3]\\n     */\\n    var xor = baseRest(function(arrays) {\\n      return baseXor(arrayFilter(arrays, isArrayLikeObject));\\n    });\\n\\n    /**\\n     * This method is like `_.xor` except that it accepts `iteratee` which is\\n     * invoked for each element of each `arrays` to generate the criterion by\\n     * which by which they're compared. The order of result values is determined\\n     * by the order they occur in the arrays. The iteratee is invoked with one\\n     * argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @example\\n     *\\n     * _.xorBy([2.1, 1.2], [2.3, 3.4], Math.floor);\\n     * // => [1.2, 3.4]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x');\\n     * // => [{ 'x': 2 }]\\n     */\\n    var xorBy = baseRest(function(arrays) {\\n      var iteratee = last(arrays);\\n      if (isArrayLikeObject(iteratee)) {\\n        iteratee = undefined;\\n      }\\n      return baseXor(arrayFilter(arrays, isArrayLikeObject), getIteratee(iteratee, 2));\\n    });\\n\\n    /**\\n     * This method is like `_.xor` except that it accepts `comparator` which is\\n     * invoked to compare elements of `arrays`. The order of result values is\\n     * determined by the order they occur in the arrays. The comparator is invoked\\n     * with two arguments: (arrVal, othVal).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to inspect.\\n     * @param {Function} [comparator] The comparator invoked per element.\\n     * @returns {Array} Returns the new array of filtered values.\\n     * @example\\n     *\\n     * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }];\\n     * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }];\\n     *\\n     * _.xorWith(objects, others, _.isEqual);\\n     * // => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }]\\n     */\\n    var xorWith = baseRest(function(arrays) {\\n      var comparator = last(arrays);\\n      comparator = typeof comparator == 'function' ? comparator : undefined;\\n      return baseXor(arrayFilter(arrays, isArrayLikeObject), undefined, comparator);\\n    });\\n\\n    /**\\n     * Creates an array of grouped elements, the first of which contains the\\n     * first elements of the given arrays, the second of which contains the\\n     * second elements of the given arrays, and so on.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to process.\\n     * @returns {Array} Returns the new array of grouped elements.\\n     * @example\\n     *\\n     * _.zip(['a', 'b'], [1, 2], [true, false]);\\n     * // => [['a', 1, true], ['b', 2, false]]\\n     */\\n    var zip = baseRest(unzip);\\n\\n    /**\\n     * This method is like `_.fromPairs` except that it accepts two arrays,\\n     * one of property identifiers and one of corresponding values.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.4.0\\n     * @category Array\\n     * @param {Array} [props=[]] The property identifiers.\\n     * @param {Array} [values=[]] The property values.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * _.zipObject(['a', 'b'], [1, 2]);\\n     * // => { 'a': 1, 'b': 2 }\\n     */\\n    function zipObject(props, values) {\\n      return baseZipObject(props || [], values || [], assignValue);\\n    }\\n\\n    /**\\n     * This method is like `_.zipObject` except that it supports property paths.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.1.0\\n     * @category Array\\n     * @param {Array} [props=[]] The property identifiers.\\n     * @param {Array} [values=[]] The property values.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * _.zipObjectDeep(['a.b[0].c', 'a.b[1].d'], [1, 2]);\\n     * // => { 'a': { 'b': [{ 'c': 1 }, { 'd': 2 }] } }\\n     */\\n    function zipObjectDeep(props, values) {\\n      return baseZipObject(props || [], values || [], baseSet);\\n    }\\n\\n    /**\\n     * This method is like `_.zip` except that it accepts `iteratee` to specify\\n     * how grouped values should be combined. The iteratee is invoked with the\\n     * elements of each group: (...group).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.8.0\\n     * @category Array\\n     * @param {...Array} [arrays] The arrays to process.\\n     * @param {Function} [iteratee=_.identity] The function to combine\\n     *  grouped values.\\n     * @returns {Array} Returns the new array of grouped elements.\\n     * @example\\n     *\\n     * _.zipWith([1, 2], [10, 20], [100, 200], function(a, b, c) {\\n     *   return a + b + c;\\n     * });\\n     * // => [111, 222]\\n     */\\n    var zipWith = baseRest(function(arrays) {\\n      var length = arrays.length,\\n          iteratee = length > 1 ? arrays[length - 1] : undefined;\\n\\n      iteratee = typeof iteratee == 'function' ? (arrays.pop(), iteratee) : undefined;\\n      return unzipWith(arrays, iteratee);\\n    });\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates a `lodash` wrapper instance that wraps `value` with explicit method\\n     * chain sequences enabled. The result of such sequences must be unwrapped\\n     * with `_#value`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.3.0\\n     * @category Seq\\n     * @param {*} value The value to wrap.\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'age': 36 },\\n     *   { 'user': 'fred',    'age': 40 },\\n     *   { 'user': 'pebbles', 'age': 1 }\\n     * ];\\n     *\\n     * var youngest = _\\n     *   .chain(users)\\n     *   .sortBy('age')\\n     *   .map(function(o) {\\n     *     return o.user + ' is ' + o.age;\\n     *   })\\n     *   .head()\\n     *   .value();\\n     * // => 'pebbles is 1'\\n     */\\n    function chain(value) {\\n      var result = lodash(value);\\n      result.__chain__ = true;\\n      return result;\\n    }\\n\\n    /**\\n     * This method invokes `interceptor` and returns `value`. The interceptor\\n     * is invoked with one argument; (value). The purpose of this method is to\\n     * \\\"tap into\\\" a method chain sequence in order to modify intermediate results.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Seq\\n     * @param {*} value The value to provide to `interceptor`.\\n     * @param {Function} interceptor The function to invoke.\\n     * @returns {*} Returns `value`.\\n     * @example\\n     *\\n     * _([1, 2, 3])\\n     *  .tap(function(array) {\\n     *    // Mutate input array.\\n     *    array.pop();\\n     *  })\\n     *  .reverse()\\n     *  .value();\\n     * // => [2, 1]\\n     */\\n    function tap(value, interceptor) {\\n      interceptor(value);\\n      return value;\\n    }\\n\\n    /**\\n     * This method is like `_.tap` except that it returns the result of `interceptor`.\\n     * The purpose of this method is to \\\"pass thru\\\" values replacing intermediate\\n     * results in a method chain sequence.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Seq\\n     * @param {*} value The value to provide to `interceptor`.\\n     * @param {Function} interceptor The function to invoke.\\n     * @returns {*} Returns the result of `interceptor`.\\n     * @example\\n     *\\n     * _('  abc  ')\\n     *  .chain()\\n     *  .trim()\\n     *  .thru(function(value) {\\n     *    return [value];\\n     *  })\\n     *  .value();\\n     * // => ['abc']\\n     */\\n    function thru(value, interceptor) {\\n      return interceptor(value);\\n    }\\n\\n    /**\\n     * This method is the wrapper version of `_.at`.\\n     *\\n     * @name at\\n     * @memberOf _\\n     * @since 1.0.0\\n     * @category Seq\\n     * @param {...(string|string[])} [paths] The property paths to pick.\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };\\n     *\\n     * _(object).at(['a[0].b.c', 'a[1]']).value();\\n     * // => [3, 4]\\n     */\\n    var wrapperAt = flatRest(function(paths) {\\n      var length = paths.length,\\n          start = length ? paths[0] : 0,\\n          value = this.__wrapped__,\\n          interceptor = function(object) { return baseAt(object, paths); };\\n\\n      if (length > 1 || this.__actions__.length ||\\n          !(value instanceof LazyWrapper) || !isIndex(start)) {\\n        return this.thru(interceptor);\\n      }\\n      value = value.slice(start, +start + (length ? 1 : 0));\\n      value.__actions__.push({\\n        'func': thru,\\n        'args': [interceptor],\\n        'thisArg': undefined\\n      });\\n      return new LodashWrapper(value, this.__chain__).thru(function(array) {\\n        if (length && !array.length) {\\n          array.push(undefined);\\n        }\\n        return array;\\n      });\\n    });\\n\\n    /**\\n     * Creates a `lodash` wrapper instance with explicit method chain sequences enabled.\\n     *\\n     * @name chain\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Seq\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney', 'age': 36 },\\n     *   { 'user': 'fred',   'age': 40 }\\n     * ];\\n     *\\n     * // A sequence without explicit chaining.\\n     * _(users).head();\\n     * // => { 'user': 'barney', 'age': 36 }\\n     *\\n     * // A sequence with explicit chaining.\\n     * _(users)\\n     *   .chain()\\n     *   .head()\\n     *   .pick('user')\\n     *   .value();\\n     * // => { 'user': 'barney' }\\n     */\\n    function wrapperChain() {\\n      return chain(this);\\n    }\\n\\n    /**\\n     * Executes the chain sequence and returns the wrapped result.\\n     *\\n     * @name commit\\n     * @memberOf _\\n     * @since 3.2.0\\n     * @category Seq\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * var array = [1, 2];\\n     * var wrapped = _(array).push(3);\\n     *\\n     * console.log(array);\\n     * // => [1, 2]\\n     *\\n     * wrapped = wrapped.commit();\\n     * console.log(array);\\n     * // => [1, 2, 3]\\n     *\\n     * wrapped.last();\\n     * // => 3\\n     *\\n     * console.log(array);\\n     * // => [1, 2, 3]\\n     */\\n    function wrapperCommit() {\\n      return new LodashWrapper(this.value(), this.__chain__);\\n    }\\n\\n    /**\\n     * Gets the next value on a wrapped object following the\\n     * [iterator protocol](https://mdn.io/iteration_protocols#iterator).\\n     *\\n     * @name next\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Seq\\n     * @returns {Object} Returns the next iterator value.\\n     * @example\\n     *\\n     * var wrapped = _([1, 2]);\\n     *\\n     * wrapped.next();\\n     * // => { 'done': false, 'value': 1 }\\n     *\\n     * wrapped.next();\\n     * // => { 'done': false, 'value': 2 }\\n     *\\n     * wrapped.next();\\n     * // => { 'done': true, 'value': undefined }\\n     */\\n    function wrapperNext() {\\n      if (this.__values__ === undefined) {\\n        this.__values__ = toArray(this.value());\\n      }\\n      var done = this.__index__ >= this.__values__.length,\\n          value = done ? undefined : this.__values__[this.__index__++];\\n\\n      return { 'done': done, 'value': value };\\n    }\\n\\n    /**\\n     * Enables the wrapper to be iterable.\\n     *\\n     * @name Symbol.iterator\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Seq\\n     * @returns {Object} Returns the wrapper object.\\n     * @example\\n     *\\n     * var wrapped = _([1, 2]);\\n     *\\n     * wrapped[Symbol.iterator]() === wrapped;\\n     * // => true\\n     *\\n     * Array.from(wrapped);\\n     * // => [1, 2]\\n     */\\n    function wrapperToIterator() {\\n      return this;\\n    }\\n\\n    /**\\n     * Creates a clone of the chain sequence planting `value` as the wrapped value.\\n     *\\n     * @name plant\\n     * @memberOf _\\n     * @since 3.2.0\\n     * @category Seq\\n     * @param {*} value The value to plant.\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * function square(n) {\\n     *   return n * n;\\n     * }\\n     *\\n     * var wrapped = _([1, 2]).map(square);\\n     * var other = wrapped.plant([3, 4]);\\n     *\\n     * other.value();\\n     * // => [9, 16]\\n     *\\n     * wrapped.value();\\n     * // => [1, 4]\\n     */\\n    function wrapperPlant(value) {\\n      var result,\\n          parent = this;\\n\\n      while (parent instanceof baseLodash) {\\n        var clone = wrapperClone(parent);\\n        clone.__index__ = 0;\\n        clone.__values__ = undefined;\\n        if (result) {\\n          previous.__wrapped__ = clone;\\n        } else {\\n          result = clone;\\n        }\\n        var previous = clone;\\n        parent = parent.__wrapped__;\\n      }\\n      previous.__wrapped__ = value;\\n      return result;\\n    }\\n\\n    /**\\n     * This method is the wrapper version of `_.reverse`.\\n     *\\n     * **Note:** This method mutates the wrapped array.\\n     *\\n     * @name reverse\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Seq\\n     * @returns {Object} Returns the new `lodash` wrapper instance.\\n     * @example\\n     *\\n     * var array = [1, 2, 3];\\n     *\\n     * _(array).reverse().value()\\n     * // => [3, 2, 1]\\n     *\\n     * console.log(array);\\n     * // => [3, 2, 1]\\n     */\\n    function wrapperReverse() {\\n      var value = this.__wrapped__;\\n      if (value instanceof LazyWrapper) {\\n        var wrapped = value;\\n        if (this.__actions__.length) {\\n          wrapped = new LazyWrapper(this);\\n        }\\n        wrapped = wrapped.reverse();\\n        wrapped.__actions__.push({\\n          'func': thru,\\n          'args': [reverse],\\n          'thisArg': undefined\\n        });\\n        return new LodashWrapper(wrapped, this.__chain__);\\n      }\\n      return this.thru(reverse);\\n    }\\n\\n    /**\\n     * Executes the chain sequence to resolve the unwrapped value.\\n     *\\n     * @name value\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @alias toJSON, valueOf\\n     * @category Seq\\n     * @returns {*} Returns the resolved unwrapped value.\\n     * @example\\n     *\\n     * _([1, 2, 3]).value();\\n     * // => [1, 2, 3]\\n     */\\n    function wrapperValue() {\\n      return baseWrapperValue(this.__wrapped__, this.__actions__);\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Creates an object composed of keys generated from the results of running\\n     * each element of `collection` thru `iteratee`. The corresponding value of\\n     * each key is the number of times the key was returned by `iteratee`. The\\n     * iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.5.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee to transform keys.\\n     * @returns {Object} Returns the composed aggregate object.\\n     * @example\\n     *\\n     * _.countBy([6.1, 4.2, 6.3], Math.floor);\\n     * // => { '4': 1, '6': 2 }\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.countBy(['one', 'two', 'three'], 'length');\\n     * // => { '3': 2, '5': 1 }\\n     */\\n    var countBy = createAggregator(function(result, value, key) {\\n      if (hasOwnProperty.call(result, key)) {\\n        ++result[key];\\n      } else {\\n        baseAssignValue(result, key, 1);\\n      }\\n    });\\n\\n    /**\\n     * Checks if `predicate` returns truthy for **all** elements of `collection`.\\n     * Iteration is stopped once `predicate` returns falsey. The predicate is\\n     * invoked with three arguments: (value, index|key, collection).\\n     *\\n     * **Note:** This method returns `true` for\\n     * [empty collections](https://en.wikipedia.org/wiki/Empty_set) because\\n     * [everything is true](https://en.wikipedia.org/wiki/Vacuous_truth) of\\n     * elements of empty collections.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {boolean} Returns `true` if all elements pass the predicate check,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.every([true, 1, null, 'yes'], Boolean);\\n     * // => false\\n     *\\n     * var users = [\\n     *   { 'user': 'barney', 'age': 36, 'active': false },\\n     *   { 'user': 'fred',   'age': 40, 'active': false }\\n     * ];\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.every(users, { 'user': 'barney', 'active': false });\\n     * // => false\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.every(users, ['active', false]);\\n     * // => true\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.every(users, 'active');\\n     * // => false\\n     */\\n    function every(collection, predicate, guard) {\\n      var func = isArray(collection) ? arrayEvery : baseEvery;\\n      if (guard && isIterateeCall(collection, predicate, guard)) {\\n        predicate = undefined;\\n      }\\n      return func(collection, getIteratee(predicate, 3));\\n    }\\n\\n    /**\\n     * Iterates over elements of `collection`, returning an array of all elements\\n     * `predicate` returns truthy for. The predicate is invoked with three\\n     * arguments: (value, index|key, collection).\\n     *\\n     * **Note:** Unlike `_.remove`, this method returns a new array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the new filtered array.\\n     * @see _.reject\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney', 'age': 36, 'active': true },\\n     *   { 'user': 'fred',   'age': 40, 'active': false }\\n     * ];\\n     *\\n     * _.filter(users, function(o) { return !o.active; });\\n     * // => objects for ['fred']\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.filter(users, { 'age': 36, 'active': true });\\n     * // => objects for ['barney']\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.filter(users, ['active', false]);\\n     * // => objects for ['fred']\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.filter(users, 'active');\\n     * // => objects for ['barney']\\n     *\\n     * // Combining several predicates using `_.overEvery` or `_.overSome`.\\n     * _.filter(users, _.overSome([{ 'age': 36 }, ['age', 40]]));\\n     * // => objects for ['fred', 'barney']\\n     */\\n    function filter(collection, predicate) {\\n      var func = isArray(collection) ? arrayFilter : baseFilter;\\n      return func(collection, getIteratee(predicate, 3));\\n    }\\n\\n    /**\\n     * Iterates over elements of `collection`, returning the first element\\n     * `predicate` returns truthy for. The predicate is invoked with three\\n     * arguments: (value, index|key, collection).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to inspect.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @param {number} [fromIndex=0] The index to search from.\\n     * @returns {*} Returns the matched element, else `undefined`.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'age': 36, 'active': true },\\n     *   { 'user': 'fred',    'age': 40, 'active': false },\\n     *   { 'user': 'pebbles', 'age': 1,  'active': true }\\n     * ];\\n     *\\n     * _.find(users, function(o) { return o.age < 40; });\\n     * // => object for 'barney'\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.find(users, { 'age': 1, 'active': true });\\n     * // => object for 'pebbles'\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.find(users, ['active', false]);\\n     * // => object for 'fred'\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.find(users, 'active');\\n     * // => object for 'barney'\\n     */\\n    var find = createFind(findIndex);\\n\\n    /**\\n     * This method is like `_.find` except that it iterates over elements of\\n     * `collection` from right to left.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to inspect.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @param {number} [fromIndex=collection.length-1] The index to search from.\\n     * @returns {*} Returns the matched element, else `undefined`.\\n     * @example\\n     *\\n     * _.findLast([1, 2, 3, 4], function(n) {\\n     *   return n % 2 == 1;\\n     * });\\n     * // => 3\\n     */\\n    var findLast = createFind(findLastIndex);\\n\\n    /**\\n     * Creates a flattened array of values by running each element in `collection`\\n     * thru `iteratee` and flattening the mapped results. The iteratee is invoked\\n     * with three arguments: (value, index|key, collection).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the new flattened array.\\n     * @example\\n     *\\n     * function duplicate(n) {\\n     *   return [n, n];\\n     * }\\n     *\\n     * _.flatMap([1, 2], duplicate);\\n     * // => [1, 1, 2, 2]\\n     */\\n    function flatMap(collection, iteratee) {\\n      return baseFlatten(map(collection, iteratee), 1);\\n    }\\n\\n    /**\\n     * This method is like `_.flatMap` except that it recursively flattens the\\n     * mapped results.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.7.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the new flattened array.\\n     * @example\\n     *\\n     * function duplicate(n) {\\n     *   return [[[n, n]]];\\n     * }\\n     *\\n     * _.flatMapDeep([1, 2], duplicate);\\n     * // => [1, 1, 2, 2]\\n     */\\n    function flatMapDeep(collection, iteratee) {\\n      return baseFlatten(map(collection, iteratee), INFINITY);\\n    }\\n\\n    /**\\n     * This method is like `_.flatMap` except that it recursively flattens the\\n     * mapped results up to `depth` times.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.7.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @param {number} [depth=1] The maximum recursion depth.\\n     * @returns {Array} Returns the new flattened array.\\n     * @example\\n     *\\n     * function duplicate(n) {\\n     *   return [[[n, n]]];\\n     * }\\n     *\\n     * _.flatMapDepth([1, 2], duplicate, 2);\\n     * // => [[1, 1], [2, 2]]\\n     */\\n    function flatMapDepth(collection, iteratee, depth) {\\n      depth = depth === undefined ? 1 : toInteger(depth);\\n      return baseFlatten(map(collection, iteratee), depth);\\n    }\\n\\n    /**\\n     * Iterates over elements of `collection` and invokes `iteratee` for each element.\\n     * The iteratee is invoked with three arguments: (value, index|key, collection).\\n     * Iteratee functions may exit iteration early by explicitly returning `false`.\\n     *\\n     * **Note:** As with other \\\"Collections\\\" methods, objects with a \\\"length\\\"\\n     * property are iterated like arrays. To avoid this behavior use `_.forIn`\\n     * or `_.forOwn` for object iteration.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @alias each\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Array|Object} Returns `collection`.\\n     * @see _.forEachRight\\n     * @example\\n     *\\n     * _.forEach([1, 2], function(value) {\\n     *   console.log(value);\\n     * });\\n     * // => Logs `1` then `2`.\\n     *\\n     * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) {\\n     *   console.log(key);\\n     * });\\n     * // => Logs 'a' then 'b' (iteration order is not guaranteed).\\n     */\\n    function forEach(collection, iteratee) {\\n      var func = isArray(collection) ? arrayEach : baseEach;\\n      return func(collection, getIteratee(iteratee, 3));\\n    }\\n\\n    /**\\n     * This method is like `_.forEach` except that it iterates over elements of\\n     * `collection` from right to left.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @alias eachRight\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Array|Object} Returns `collection`.\\n     * @see _.forEach\\n     * @example\\n     *\\n     * _.forEachRight([1, 2], function(value) {\\n     *   console.log(value);\\n     * });\\n     * // => Logs `2` then `1`.\\n     */\\n    function forEachRight(collection, iteratee) {\\n      var func = isArray(collection) ? arrayEachRight : baseEachRight;\\n      return func(collection, getIteratee(iteratee, 3));\\n    }\\n\\n    /**\\n     * Creates an object composed of keys generated from the results of running\\n     * each element of `collection` thru `iteratee`. The order of grouped values\\n     * is determined by the order they occur in `collection`. The corresponding\\n     * value of each key is an array of elements responsible for generating the\\n     * key. The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee to transform keys.\\n     * @returns {Object} Returns the composed aggregate object.\\n     * @example\\n     *\\n     * _.groupBy([6.1, 4.2, 6.3], Math.floor);\\n     * // => { '4': [4.2], '6': [6.1, 6.3] }\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.groupBy(['one', 'two', 'three'], 'length');\\n     * // => { '3': ['one', 'two'], '5': ['three'] }\\n     */\\n    var groupBy = createAggregator(function(result, value, key) {\\n      if (hasOwnProperty.call(result, key)) {\\n        result[key].push(value);\\n      } else {\\n        baseAssignValue(result, key, [value]);\\n      }\\n    });\\n\\n    /**\\n     * Checks if `value` is in `collection`. If `collection` is a string, it's\\n     * checked for a substring of `value`, otherwise\\n     * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * is used for equality comparisons. If `fromIndex` is negative, it's used as\\n     * the offset from the end of `collection`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object|string} collection The collection to inspect.\\n     * @param {*} value The value to search for.\\n     * @param {number} [fromIndex=0] The index to search from.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`.\\n     * @returns {boolean} Returns `true` if `value` is found, else `false`.\\n     * @example\\n     *\\n     * _.includes([1, 2, 3], 1);\\n     * // => true\\n     *\\n     * _.includes([1, 2, 3], 1, 2);\\n     * // => false\\n     *\\n     * _.includes({ 'a': 1, 'b': 2 }, 1);\\n     * // => true\\n     *\\n     * _.includes('abcd', 'bc');\\n     * // => true\\n     */\\n    function includes(collection, value, fromIndex, guard) {\\n      collection = isArrayLike(collection) ? collection : values(collection);\\n      fromIndex = (fromIndex && !guard) ? toInteger(fromIndex) : 0;\\n\\n      var length = collection.length;\\n      if (fromIndex < 0) {\\n        fromIndex = nativeMax(length + fromIndex, 0);\\n      }\\n      return isString(collection)\\n        ? (fromIndex <= length && collection.indexOf(value, fromIndex) > -1)\\n        : (!!length && baseIndexOf(collection, value, fromIndex) > -1);\\n    }\\n\\n    /**\\n     * Invokes the method at `path` of each element in `collection`, returning\\n     * an array of the results of each invoked method. Any additional arguments\\n     * are provided to each invoked method. If `path` is a function, it's invoked\\n     * for, and `this` bound to, each element in `collection`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Array|Function|string} path The path of the method to invoke or\\n     *  the function invoked per iteration.\\n     * @param {...*} [args] The arguments to invoke each method with.\\n     * @returns {Array} Returns the array of results.\\n     * @example\\n     *\\n     * _.invokeMap([[5, 1, 7], [3, 2, 1]], 'sort');\\n     * // => [[1, 5, 7], [1, 2, 3]]\\n     *\\n     * _.invokeMap([123, 456], String.prototype.split, '');\\n     * // => [['1', '2', '3'], ['4', '5', '6']]\\n     */\\n    var invokeMap = baseRest(function(collection, path, args) {\\n      var index = -1,\\n          isFunc = typeof path == 'function',\\n          result = isArrayLike(collection) ? Array(collection.length) : [];\\n\\n      baseEach(collection, function(value) {\\n        result[++index] = isFunc ? apply(path, value, args) : baseInvoke(value, path, args);\\n      });\\n      return result;\\n    });\\n\\n    /**\\n     * Creates an object composed of keys generated from the results of running\\n     * each element of `collection` thru `iteratee`. The corresponding value of\\n     * each key is the last element responsible for generating the key. The\\n     * iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee to transform keys.\\n     * @returns {Object} Returns the composed aggregate object.\\n     * @example\\n     *\\n     * var array = [\\n     *   { 'dir': 'left', 'code': 97 },\\n     *   { 'dir': 'right', 'code': 100 }\\n     * ];\\n     *\\n     * _.keyBy(array, function(o) {\\n     *   return String.fromCharCode(o.code);\\n     * });\\n     * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } }\\n     *\\n     * _.keyBy(array, 'dir');\\n     * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } }\\n     */\\n    var keyBy = createAggregator(function(result, value, key) {\\n      baseAssignValue(result, key, value);\\n    });\\n\\n    /**\\n     * Creates an array of values by running each element in `collection` thru\\n     * `iteratee`. The iteratee is invoked with three arguments:\\n     * (value, index|key, collection).\\n     *\\n     * Many lodash methods are guarded to work as iteratees for methods like\\n     * `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`.\\n     *\\n     * The guarded methods are:\\n     * `ary`, `chunk`, `curry`, `curryRight`, `drop`, `dropRight`, `every`,\\n     * `fill`, `invert`, `parseInt`, `random`, `range`, `rangeRight`, `repeat`,\\n     * `sampleSize`, `slice`, `some`, `sortBy`, `split`, `take`, `takeRight`,\\n     * `template`, `trim`, `trimEnd`, `trimStart`, and `words`\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the new mapped array.\\n     * @example\\n     *\\n     * function square(n) {\\n     *   return n * n;\\n     * }\\n     *\\n     * _.map([4, 8], square);\\n     * // => [16, 64]\\n     *\\n     * _.map({ 'a': 4, 'b': 8 }, square);\\n     * // => [16, 64] (iteration order is not guaranteed)\\n     *\\n     * var users = [\\n     *   { 'user': 'barney' },\\n     *   { 'user': 'fred' }\\n     * ];\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.map(users, 'user');\\n     * // => ['barney', 'fred']\\n     */\\n    function map(collection, iteratee) {\\n      var func = isArray(collection) ? arrayMap : baseMap;\\n      return func(collection, getIteratee(iteratee, 3));\\n    }\\n\\n    /**\\n     * This method is like `_.sortBy` except that it allows specifying the sort\\n     * orders of the iteratees to sort by. If `orders` is unspecified, all values\\n     * are sorted in ascending order. Otherwise, specify an order of \\\"desc\\\" for\\n     * descending or \\\"asc\\\" for ascending sort order of corresponding values.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Array[]|Function[]|Object[]|string[]} [iteratees=[_.identity]]\\n     *  The iteratees to sort by.\\n     * @param {string[]} [orders] The sort orders of `iteratees`.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.reduce`.\\n     * @returns {Array} Returns the new sorted array.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'fred',   'age': 48 },\\n     *   { 'user': 'barney', 'age': 34 },\\n     *   { 'user': 'fred',   'age': 40 },\\n     *   { 'user': 'barney', 'age': 36 }\\n     * ];\\n     *\\n     * // Sort by `user` in ascending order and by `age` in descending order.\\n     * _.orderBy(users, ['user', 'age'], ['asc', 'desc']);\\n     * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 40]]\\n     */\\n    function orderBy(collection, iteratees, orders, guard) {\\n      if (collection == null) {\\n        return [];\\n      }\\n      if (!isArray(iteratees)) {\\n        iteratees = iteratees == null ? [] : [iteratees];\\n      }\\n      orders = guard ? undefined : orders;\\n      if (!isArray(orders)) {\\n        orders = orders == null ? [] : [orders];\\n      }\\n      return baseOrderBy(collection, iteratees, orders);\\n    }\\n\\n    /**\\n     * Creates an array of elements split into two groups, the first of which\\n     * contains elements `predicate` returns truthy for, the second of which\\n     * contains elements `predicate` returns falsey for. The predicate is\\n     * invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the array of grouped elements.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney',  'age': 36, 'active': false },\\n     *   { 'user': 'fred',    'age': 40, 'active': true },\\n     *   { 'user': 'pebbles', 'age': 1,  'active': false }\\n     * ];\\n     *\\n     * _.partition(users, function(o) { return o.active; });\\n     * // => objects for [['fred'], ['barney', 'pebbles']]\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.partition(users, { 'age': 1, 'active': false });\\n     * // => objects for [['pebbles'], ['barney', 'fred']]\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.partition(users, ['active', false]);\\n     * // => objects for [['barney', 'pebbles'], ['fred']]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.partition(users, 'active');\\n     * // => objects for [['fred'], ['barney', 'pebbles']]\\n     */\\n    var partition = createAggregator(function(result, value, key) {\\n      result[key ? 0 : 1].push(value);\\n    }, function() { return [[], []]; });\\n\\n    /**\\n     * Reduces `collection` to a value which is the accumulated result of running\\n     * each element in `collection` thru `iteratee`, where each successive\\n     * invocation is supplied the return value of the previous. If `accumulator`\\n     * is not given, the first element of `collection` is used as the initial\\n     * value. The iteratee is invoked with four arguments:\\n     * (accumulator, value, index|key, collection).\\n     *\\n     * Many lodash methods are guarded to work as iteratees for methods like\\n     * `_.reduce`, `_.reduceRight`, and `_.transform`.\\n     *\\n     * The guarded methods are:\\n     * `assign`, `defaults`, `defaultsDeep`, `includes`, `merge`, `orderBy`,\\n     * and `sortBy`\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @param {*} [accumulator] The initial value.\\n     * @returns {*} Returns the accumulated value.\\n     * @see _.reduceRight\\n     * @example\\n     *\\n     * _.reduce([1, 2], function(sum, n) {\\n     *   return sum + n;\\n     * }, 0);\\n     * // => 3\\n     *\\n     * _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) {\\n     *   (result[value] || (result[value] = [])).push(key);\\n     *   return result;\\n     * }, {});\\n     * // => { '1': ['a', 'c'], '2': ['b'] } (iteration order is not guaranteed)\\n     */\\n    function reduce(collection, iteratee, accumulator) {\\n      var func = isArray(collection) ? arrayReduce : baseReduce,\\n          initAccum = arguments.length < 3;\\n\\n      return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEach);\\n    }\\n\\n    /**\\n     * This method is like `_.reduce` except that it iterates over elements of\\n     * `collection` from right to left.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @param {*} [accumulator] The initial value.\\n     * @returns {*} Returns the accumulated value.\\n     * @see _.reduce\\n     * @example\\n     *\\n     * var array = [[0, 1], [2, 3], [4, 5]];\\n     *\\n     * _.reduceRight(array, function(flattened, other) {\\n     *   return flattened.concat(other);\\n     * }, []);\\n     * // => [4, 5, 2, 3, 0, 1]\\n     */\\n    function reduceRight(collection, iteratee, accumulator) {\\n      var func = isArray(collection) ? arrayReduceRight : baseReduce,\\n          initAccum = arguments.length < 3;\\n\\n      return func(collection, getIteratee(iteratee, 4), accumulator, initAccum, baseEachRight);\\n    }\\n\\n    /**\\n     * The opposite of `_.filter`; this method returns the elements of `collection`\\n     * that `predicate` does **not** return truthy for.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the new filtered array.\\n     * @see _.filter\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney', 'age': 36, 'active': false },\\n     *   { 'user': 'fred',   'age': 40, 'active': true }\\n     * ];\\n     *\\n     * _.reject(users, function(o) { return !o.active; });\\n     * // => objects for ['fred']\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.reject(users, { 'age': 40, 'active': true });\\n     * // => objects for ['barney']\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.reject(users, ['active', false]);\\n     * // => objects for ['fred']\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.reject(users, 'active');\\n     * // => objects for ['barney']\\n     */\\n    function reject(collection, predicate) {\\n      var func = isArray(collection) ? arrayFilter : baseFilter;\\n      return func(collection, negate(getIteratee(predicate, 3)));\\n    }\\n\\n    /**\\n     * Gets a random element from `collection`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to sample.\\n     * @returns {*} Returns the random element.\\n     * @example\\n     *\\n     * _.sample([1, 2, 3, 4]);\\n     * // => 2\\n     */\\n    function sample(collection) {\\n      var func = isArray(collection) ? arraySample : baseSample;\\n      return func(collection);\\n    }\\n\\n    /**\\n     * Gets `n` random elements at unique keys from `collection` up to the\\n     * size of `collection`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to sample.\\n     * @param {number} [n=1] The number of elements to sample.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the random elements.\\n     * @example\\n     *\\n     * _.sampleSize([1, 2, 3], 2);\\n     * // => [3, 1]\\n     *\\n     * _.sampleSize([1, 2, 3], 4);\\n     * // => [2, 3, 1]\\n     */\\n    function sampleSize(collection, n, guard) {\\n      if ((guard ? isIterateeCall(collection, n, guard) : n === undefined)) {\\n        n = 1;\\n      } else {\\n        n = toInteger(n);\\n      }\\n      var func = isArray(collection) ? arraySampleSize : baseSampleSize;\\n      return func(collection, n);\\n    }\\n\\n    /**\\n     * Creates an array of shuffled values, using a version of the\\n     * [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to shuffle.\\n     * @returns {Array} Returns the new shuffled array.\\n     * @example\\n     *\\n     * _.shuffle([1, 2, 3, 4]);\\n     * // => [4, 1, 3, 2]\\n     */\\n    function shuffle(collection) {\\n      var func = isArray(collection) ? arrayShuffle : baseShuffle;\\n      return func(collection);\\n    }\\n\\n    /**\\n     * Gets the size of `collection` by returning its length for array-like\\n     * values or the number of own enumerable string keyed properties for objects.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object|string} collection The collection to inspect.\\n     * @returns {number} Returns the collection size.\\n     * @example\\n     *\\n     * _.size([1, 2, 3]);\\n     * // => 3\\n     *\\n     * _.size({ 'a': 1, 'b': 2 });\\n     * // => 2\\n     *\\n     * _.size('pebbles');\\n     * // => 7\\n     */\\n    function size(collection) {\\n      if (collection == null) {\\n        return 0;\\n      }\\n      if (isArrayLike(collection)) {\\n        return isString(collection) ? stringSize(collection) : collection.length;\\n      }\\n      var tag = getTag(collection);\\n      if (tag == mapTag || tag == setTag) {\\n        return collection.size;\\n      }\\n      return baseKeys(collection).length;\\n    }\\n\\n    /**\\n     * Checks if `predicate` returns truthy for **any** element of `collection`.\\n     * Iteration is stopped once `predicate` returns truthy. The predicate is\\n     * invoked with three arguments: (value, index|key, collection).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {boolean} Returns `true` if any element passes the predicate check,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.some([null, 0, 'yes', false], Boolean);\\n     * // => true\\n     *\\n     * var users = [\\n     *   { 'user': 'barney', 'active': true },\\n     *   { 'user': 'fred',   'active': false }\\n     * ];\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.some(users, { 'user': 'barney', 'active': false });\\n     * // => false\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.some(users, ['active', false]);\\n     * // => true\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.some(users, 'active');\\n     * // => true\\n     */\\n    function some(collection, predicate, guard) {\\n      var func = isArray(collection) ? arraySome : baseSome;\\n      if (guard && isIterateeCall(collection, predicate, guard)) {\\n        predicate = undefined;\\n      }\\n      return func(collection, getIteratee(predicate, 3));\\n    }\\n\\n    /**\\n     * Creates an array of elements, sorted in ascending order by the results of\\n     * running each element in a collection thru each iteratee. This method\\n     * performs a stable sort, that is, it preserves the original sort order of\\n     * equal elements. The iteratees are invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Collection\\n     * @param {Array|Object} collection The collection to iterate over.\\n     * @param {...(Function|Function[])} [iteratees=[_.identity]]\\n     *  The iteratees to sort by.\\n     * @returns {Array} Returns the new sorted array.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'fred',   'age': 48 },\\n     *   { 'user': 'barney', 'age': 36 },\\n     *   { 'user': 'fred',   'age': 30 },\\n     *   { 'user': 'barney', 'age': 34 }\\n     * ];\\n     *\\n     * _.sortBy(users, [function(o) { return o.user; }]);\\n     * // => objects for [['barney', 36], ['barney', 34], ['fred', 48], ['fred', 30]]\\n     *\\n     * _.sortBy(users, ['user', 'age']);\\n     * // => objects for [['barney', 34], ['barney', 36], ['fred', 30], ['fred', 48]]\\n     */\\n    var sortBy = baseRest(function(collection, iteratees) {\\n      if (collection == null) {\\n        return [];\\n      }\\n      var length = iteratees.length;\\n      if (length > 1 && isIterateeCall(collection, iteratees[0], iteratees[1])) {\\n        iteratees = [];\\n      } else if (length > 2 && isIterateeCall(iteratees[0], iteratees[1], iteratees[2])) {\\n        iteratees = [iteratees[0]];\\n      }\\n      return baseOrderBy(collection, baseFlatten(iteratees, 1), []);\\n    });\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Gets the timestamp of the number of milliseconds that have elapsed since\\n     * the Unix epoch (1 January 1970 00:00:00 UTC).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.4.0\\n     * @category Date\\n     * @returns {number} Returns the timestamp.\\n     * @example\\n     *\\n     * _.defer(function(stamp) {\\n     *   console.log(_.now() - stamp);\\n     * }, _.now());\\n     * // => Logs the number of milliseconds it took for the deferred invocation.\\n     */\\n    var now = ctxNow || function() {\\n      return root.Date.now();\\n    };\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * The opposite of `_.before`; this method creates a function that invokes\\n     * `func` once it's called `n` or more times.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {number} n The number of calls before `func` is invoked.\\n     * @param {Function} func The function to restrict.\\n     * @returns {Function} Returns the new restricted function.\\n     * @example\\n     *\\n     * var saves = ['profile', 'settings'];\\n     *\\n     * var done = _.after(saves.length, function() {\\n     *   console.log('done saving!');\\n     * });\\n     *\\n     * _.forEach(saves, function(type) {\\n     *   asyncSave({ 'type': type, 'complete': done });\\n     * });\\n     * // => Logs 'done saving!' after the two async saves have completed.\\n     */\\n    function after(n, func) {\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      n = toInteger(n);\\n      return function() {\\n        if (--n < 1) {\\n          return func.apply(this, arguments);\\n        }\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that invokes `func`, with up to `n` arguments,\\n     * ignoring any additional arguments.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Function\\n     * @param {Function} func The function to cap arguments for.\\n     * @param {number} [n=func.length] The arity cap.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Function} Returns the new capped function.\\n     * @example\\n     *\\n     * _.map(['6', '8', '10'], _.ary(parseInt, 1));\\n     * // => [6, 8, 10]\\n     */\\n    function ary(func, n, guard) {\\n      n = guard ? undefined : n;\\n      n = (func && n == null) ? func.length : n;\\n      return createWrap(func, WRAP_ARY_FLAG, undefined, undefined, undefined, undefined, n);\\n    }\\n\\n    /**\\n     * Creates a function that invokes `func`, with the `this` binding and arguments\\n     * of the created function, while it's called less than `n` times. Subsequent\\n     * calls to the created function return the result of the last `func` invocation.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Function\\n     * @param {number} n The number of calls at which `func` is no longer invoked.\\n     * @param {Function} func The function to restrict.\\n     * @returns {Function} Returns the new restricted function.\\n     * @example\\n     *\\n     * jQuery(element).on('click', _.before(5, addContactToList));\\n     * // => Allows adding up to 4 contacts to the list.\\n     */\\n    function before(n, func) {\\n      var result;\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      n = toInteger(n);\\n      return function() {\\n        if (--n > 0) {\\n          result = func.apply(this, arguments);\\n        }\\n        if (n <= 1) {\\n          func = undefined;\\n        }\\n        return result;\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that invokes `func` with the `this` binding of `thisArg`\\n     * and `partials` prepended to the arguments it receives.\\n     *\\n     * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds,\\n     * may be used as a placeholder for partially applied arguments.\\n     *\\n     * **Note:** Unlike native `Function#bind`, this method doesn't set the \\\"length\\\"\\n     * property of bound functions.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to bind.\\n     * @param {*} thisArg The `this` binding of `func`.\\n     * @param {...*} [partials] The arguments to be partially applied.\\n     * @returns {Function} Returns the new bound function.\\n     * @example\\n     *\\n     * function greet(greeting, punctuation) {\\n     *   return greeting + ' ' + this.user + punctuation;\\n     * }\\n     *\\n     * var object = { 'user': 'fred' };\\n     *\\n     * var bound = _.bind(greet, object, 'hi');\\n     * bound('!');\\n     * // => 'hi fred!'\\n     *\\n     * // Bound with placeholders.\\n     * var bound = _.bind(greet, object, _, '!');\\n     * bound('hi');\\n     * // => 'hi fred!'\\n     */\\n    var bind = baseRest(function(func, thisArg, partials) {\\n      var bitmask = WRAP_BIND_FLAG;\\n      if (partials.length) {\\n        var holders = replaceHolders(partials, getHolder(bind));\\n        bitmask |= WRAP_PARTIAL_FLAG;\\n      }\\n      return createWrap(func, bitmask, thisArg, partials, holders);\\n    });\\n\\n    /**\\n     * Creates a function that invokes the method at `object[key]` with `partials`\\n     * prepended to the arguments it receives.\\n     *\\n     * This method differs from `_.bind` by allowing bound functions to reference\\n     * methods that may be redefined or don't yet exist. See\\n     * [Peter Michaux's article](http://peter.michaux.ca/articles/lazy-function-definition-pattern)\\n     * for more details.\\n     *\\n     * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic\\n     * builds, may be used as a placeholder for partially applied arguments.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.10.0\\n     * @category Function\\n     * @param {Object} object The object to invoke the method on.\\n     * @param {string} key The key of the method.\\n     * @param {...*} [partials] The arguments to be partially applied.\\n     * @returns {Function} Returns the new bound function.\\n     * @example\\n     *\\n     * var object = {\\n     *   'user': 'fred',\\n     *   'greet': function(greeting, punctuation) {\\n     *     return greeting + ' ' + this.user + punctuation;\\n     *   }\\n     * };\\n     *\\n     * var bound = _.bindKey(object, 'greet', 'hi');\\n     * bound('!');\\n     * // => 'hi fred!'\\n     *\\n     * object.greet = function(greeting, punctuation) {\\n     *   return greeting + 'ya ' + this.user + punctuation;\\n     * };\\n     *\\n     * bound('!');\\n     * // => 'hiya fred!'\\n     *\\n     * // Bound with placeholders.\\n     * var bound = _.bindKey(object, 'greet', _, '!');\\n     * bound('hi');\\n     * // => 'hiya fred!'\\n     */\\n    var bindKey = baseRest(function(object, key, partials) {\\n      var bitmask = WRAP_BIND_FLAG | WRAP_BIND_KEY_FLAG;\\n      if (partials.length) {\\n        var holders = replaceHolders(partials, getHolder(bindKey));\\n        bitmask |= WRAP_PARTIAL_FLAG;\\n      }\\n      return createWrap(key, bitmask, object, partials, holders);\\n    });\\n\\n    /**\\n     * Creates a function that accepts arguments of `func` and either invokes\\n     * `func` returning its result, if at least `arity` number of arguments have\\n     * been provided, or returns a function that accepts the remaining `func`\\n     * arguments, and so on. The arity of `func` may be specified if `func.length`\\n     * is not sufficient.\\n     *\\n     * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds,\\n     * may be used as a placeholder for provided arguments.\\n     *\\n     * **Note:** This method doesn't set the \\\"length\\\" property of curried functions.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Function\\n     * @param {Function} func The function to curry.\\n     * @param {number} [arity=func.length] The arity of `func`.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Function} Returns the new curried function.\\n     * @example\\n     *\\n     * var abc = function(a, b, c) {\\n     *   return [a, b, c];\\n     * };\\n     *\\n     * var curried = _.curry(abc);\\n     *\\n     * curried(1)(2)(3);\\n     * // => [1, 2, 3]\\n     *\\n     * curried(1, 2)(3);\\n     * // => [1, 2, 3]\\n     *\\n     * curried(1, 2, 3);\\n     * // => [1, 2, 3]\\n     *\\n     * // Curried with placeholders.\\n     * curried(1)(_, 3)(2);\\n     * // => [1, 2, 3]\\n     */\\n    function curry(func, arity, guard) {\\n      arity = guard ? undefined : arity;\\n      var result = createWrap(func, WRAP_CURRY_FLAG, undefined, undefined, undefined, undefined, undefined, arity);\\n      result.placeholder = curry.placeholder;\\n      return result;\\n    }\\n\\n    /**\\n     * This method is like `_.curry` except that arguments are applied to `func`\\n     * in the manner of `_.partialRight` instead of `_.partial`.\\n     *\\n     * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic\\n     * builds, may be used as a placeholder for provided arguments.\\n     *\\n     * **Note:** This method doesn't set the \\\"length\\\" property of curried functions.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Function\\n     * @param {Function} func The function to curry.\\n     * @param {number} [arity=func.length] The arity of `func`.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Function} Returns the new curried function.\\n     * @example\\n     *\\n     * var abc = function(a, b, c) {\\n     *   return [a, b, c];\\n     * };\\n     *\\n     * var curried = _.curryRight(abc);\\n     *\\n     * curried(3)(2)(1);\\n     * // => [1, 2, 3]\\n     *\\n     * curried(2, 3)(1);\\n     * // => [1, 2, 3]\\n     *\\n     * curried(1, 2, 3);\\n     * // => [1, 2, 3]\\n     *\\n     * // Curried with placeholders.\\n     * curried(3)(1, _)(2);\\n     * // => [1, 2, 3]\\n     */\\n    function curryRight(func, arity, guard) {\\n      arity = guard ? undefined : arity;\\n      var result = createWrap(func, WRAP_CURRY_RIGHT_FLAG, undefined, undefined, undefined, undefined, undefined, arity);\\n      result.placeholder = curryRight.placeholder;\\n      return result;\\n    }\\n\\n    /**\\n     * Creates a debounced function that delays invoking `func` until after `wait`\\n     * milliseconds have elapsed since the last time the debounced function was\\n     * invoked. The debounced function comes with a `cancel` method to cancel\\n     * delayed `func` invocations and a `flush` method to immediately invoke them.\\n     * Provide `options` to indicate whether `func` should be invoked on the\\n     * leading and/or trailing edge of the `wait` timeout. The `func` is invoked\\n     * with the last arguments provided to the debounced function. Subsequent\\n     * calls to the debounced function return the result of the last `func`\\n     * invocation.\\n     *\\n     * **Note:** If `leading` and `trailing` options are `true`, `func` is\\n     * invoked on the trailing edge of the timeout only if the debounced function\\n     * is invoked more than once during the `wait` timeout.\\n     *\\n     * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\\n     * until to the next tick, similar to `setTimeout` with a timeout of `0`.\\n     *\\n     * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\\n     * for details over the differences between `_.debounce` and `_.throttle`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to debounce.\\n     * @param {number} [wait=0] The number of milliseconds to delay.\\n     * @param {Object} [options={}] The options object.\\n     * @param {boolean} [options.leading=false]\\n     *  Specify invoking on the leading edge of the timeout.\\n     * @param {number} [options.maxWait]\\n     *  The maximum time `func` is allowed to be delayed before it's invoked.\\n     * @param {boolean} [options.trailing=true]\\n     *  Specify invoking on the trailing edge of the timeout.\\n     * @returns {Function} Returns the new debounced function.\\n     * @example\\n     *\\n     * // Avoid costly calculations while the window size is in flux.\\n     * jQuery(window).on('resize', _.debounce(calculateLayout, 150));\\n     *\\n     * // Invoke `sendMail` when clicked, debouncing subsequent calls.\\n     * jQuery(element).on('click', _.debounce(sendMail, 300, {\\n     *   'leading': true,\\n     *   'trailing': false\\n     * }));\\n     *\\n     * // Ensure `batchLog` is invoked once after 1 second of debounced calls.\\n     * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 });\\n     * var source = new EventSource('/stream');\\n     * jQuery(source).on('message', debounced);\\n     *\\n     * // Cancel the trailing debounced invocation.\\n     * jQuery(window).on('popstate', debounced.cancel);\\n     */\\n    function debounce(func, wait, options) {\\n      var lastArgs,\\n          lastThis,\\n          maxWait,\\n          result,\\n          timerId,\\n          lastCallTime,\\n          lastInvokeTime = 0,\\n          leading = false,\\n          maxing = false,\\n          trailing = true;\\n\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      wait = toNumber(wait) || 0;\\n      if (isObject(options)) {\\n        leading = !!options.leading;\\n        maxing = 'maxWait' in options;\\n        maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;\\n        trailing = 'trailing' in options ? !!options.trailing : trailing;\\n      }\\n\\n      function invokeFunc(time) {\\n        var args = lastArgs,\\n            thisArg = lastThis;\\n\\n        lastArgs = lastThis = undefined;\\n        lastInvokeTime = time;\\n        result = func.apply(thisArg, args);\\n        return result;\\n      }\\n\\n      function leadingEdge(time) {\\n        // Reset any `maxWait` timer.\\n        lastInvokeTime = time;\\n        // Start the timer for the trailing edge.\\n        timerId = setTimeout(timerExpired, wait);\\n        // Invoke the leading edge.\\n        return leading ? invokeFunc(time) : result;\\n      }\\n\\n      function remainingWait(time) {\\n        var timeSinceLastCall = time - lastCallTime,\\n            timeSinceLastInvoke = time - lastInvokeTime,\\n            timeWaiting = wait - timeSinceLastCall;\\n\\n        return maxing\\n          ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke)\\n          : timeWaiting;\\n      }\\n\\n      function shouldInvoke(time) {\\n        var timeSinceLastCall = time - lastCallTime,\\n            timeSinceLastInvoke = time - lastInvokeTime;\\n\\n        // Either this is the first call, activity has stopped and we're at the\\n        // trailing edge, the system time has gone backwards and we're treating\\n        // it as the trailing edge, or we've hit the `maxWait` limit.\\n        return (lastCallTime === undefined || (timeSinceLastCall >= wait) ||\\n          (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait));\\n      }\\n\\n      function timerExpired() {\\n        var time = now();\\n        if (shouldInvoke(time)) {\\n          return trailingEdge(time);\\n        }\\n        // Restart the timer.\\n        timerId = setTimeout(timerExpired, remainingWait(time));\\n      }\\n\\n      function trailingEdge(time) {\\n        timerId = undefined;\\n\\n        // Only invoke if we have `lastArgs` which means `func` has been\\n        // debounced at least once.\\n        if (trailing && lastArgs) {\\n          return invokeFunc(time);\\n        }\\n        lastArgs = lastThis = undefined;\\n        return result;\\n      }\\n\\n      function cancel() {\\n        if (timerId !== undefined) {\\n          clearTimeout(timerId);\\n        }\\n        lastInvokeTime = 0;\\n        lastArgs = lastCallTime = lastThis = timerId = undefined;\\n      }\\n\\n      function flush() {\\n        return timerId === undefined ? result : trailingEdge(now());\\n      }\\n\\n      function debounced() {\\n        var time = now(),\\n            isInvoking = shouldInvoke(time);\\n\\n        lastArgs = arguments;\\n        lastThis = this;\\n        lastCallTime = time;\\n\\n        if (isInvoking) {\\n          if (timerId === undefined) {\\n            return leadingEdge(lastCallTime);\\n          }\\n          if (maxing) {\\n            // Handle invocations in a tight loop.\\n            clearTimeout(timerId);\\n            timerId = setTimeout(timerExpired, wait);\\n            return invokeFunc(lastCallTime);\\n          }\\n        }\\n        if (timerId === undefined) {\\n          timerId = setTimeout(timerExpired, wait);\\n        }\\n        return result;\\n      }\\n      debounced.cancel = cancel;\\n      debounced.flush = flush;\\n      return debounced;\\n    }\\n\\n    /**\\n     * Defers invoking the `func` until the current call stack has cleared. Any\\n     * additional arguments are provided to `func` when it's invoked.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to defer.\\n     * @param {...*} [args] The arguments to invoke `func` with.\\n     * @returns {number} Returns the timer id.\\n     * @example\\n     *\\n     * _.defer(function(text) {\\n     *   console.log(text);\\n     * }, 'deferred');\\n     * // => Logs 'deferred' after one millisecond.\\n     */\\n    var defer = baseRest(function(func, args) {\\n      return baseDelay(func, 1, args);\\n    });\\n\\n    /**\\n     * Invokes `func` after `wait` milliseconds. Any additional arguments are\\n     * provided to `func` when it's invoked.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to delay.\\n     * @param {number} wait The number of milliseconds to delay invocation.\\n     * @param {...*} [args] The arguments to invoke `func` with.\\n     * @returns {number} Returns the timer id.\\n     * @example\\n     *\\n     * _.delay(function(text) {\\n     *   console.log(text);\\n     * }, 1000, 'later');\\n     * // => Logs 'later' after one second.\\n     */\\n    var delay = baseRest(function(func, wait, args) {\\n      return baseDelay(func, toNumber(wait) || 0, args);\\n    });\\n\\n    /**\\n     * Creates a function that invokes `func` with arguments reversed.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Function\\n     * @param {Function} func The function to flip arguments for.\\n     * @returns {Function} Returns the new flipped function.\\n     * @example\\n     *\\n     * var flipped = _.flip(function() {\\n     *   return _.toArray(arguments);\\n     * });\\n     *\\n     * flipped('a', 'b', 'c', 'd');\\n     * // => ['d', 'c', 'b', 'a']\\n     */\\n    function flip(func) {\\n      return createWrap(func, WRAP_FLIP_FLAG);\\n    }\\n\\n    /**\\n     * Creates a function that memoizes the result of `func`. If `resolver` is\\n     * provided, it determines the cache key for storing the result based on the\\n     * arguments provided to the memoized function. By default, the first argument\\n     * provided to the memoized function is used as the map cache key. The `func`\\n     * is invoked with the `this` binding of the memoized function.\\n     *\\n     * **Note:** The cache is exposed as the `cache` property on the memoized\\n     * function. Its creation may be customized by replacing the `_.memoize.Cache`\\n     * constructor with one whose instances implement the\\n     * [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object)\\n     * method interface of `clear`, `delete`, `get`, `has`, and `set`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to have its output memoized.\\n     * @param {Function} [resolver] The function to resolve the cache key.\\n     * @returns {Function} Returns the new memoized function.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': 2 };\\n     * var other = { 'c': 3, 'd': 4 };\\n     *\\n     * var values = _.memoize(_.values);\\n     * values(object);\\n     * // => [1, 2]\\n     *\\n     * values(other);\\n     * // => [3, 4]\\n     *\\n     * object.a = 2;\\n     * values(object);\\n     * // => [1, 2]\\n     *\\n     * // Modify the result cache.\\n     * values.cache.set(object, ['a', 'b']);\\n     * values(object);\\n     * // => ['a', 'b']\\n     *\\n     * // Replace `_.memoize.Cache`.\\n     * _.memoize.Cache = WeakMap;\\n     */\\n    function memoize(func, resolver) {\\n      if (typeof func != 'function' || (resolver != null && typeof resolver != 'function')) {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      var memoized = function() {\\n        var args = arguments,\\n            key = resolver ? resolver.apply(this, args) : args[0],\\n            cache = memoized.cache;\\n\\n        if (cache.has(key)) {\\n          return cache.get(key);\\n        }\\n        var result = func.apply(this, args);\\n        memoized.cache = cache.set(key, result) || cache;\\n        return result;\\n      };\\n      memoized.cache = new (memoize.Cache || MapCache);\\n      return memoized;\\n    }\\n\\n    // Expose `MapCache`.\\n    memoize.Cache = MapCache;\\n\\n    /**\\n     * Creates a function that negates the result of the predicate `func`. The\\n     * `func` predicate is invoked with the `this` binding and arguments of the\\n     * created function.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Function\\n     * @param {Function} predicate The predicate to negate.\\n     * @returns {Function} Returns the new negated function.\\n     * @example\\n     *\\n     * function isEven(n) {\\n     *   return n % 2 == 0;\\n     * }\\n     *\\n     * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven));\\n     * // => [1, 3, 5]\\n     */\\n    function negate(predicate) {\\n      if (typeof predicate != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      return function() {\\n        var args = arguments;\\n        switch (args.length) {\\n          case 0: return !predicate.call(this);\\n          case 1: return !predicate.call(this, args[0]);\\n          case 2: return !predicate.call(this, args[0], args[1]);\\n          case 3: return !predicate.call(this, args[0], args[1], args[2]);\\n        }\\n        return !predicate.apply(this, args);\\n      };\\n    }\\n\\n    /**\\n     * Creates a function that is restricted to invoking `func` once. Repeat calls\\n     * to the function return the value of the first invocation. The `func` is\\n     * invoked with the `this` binding and arguments of the created function.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to restrict.\\n     * @returns {Function} Returns the new restricted function.\\n     * @example\\n     *\\n     * var initialize = _.once(createApplication);\\n     * initialize();\\n     * initialize();\\n     * // => `createApplication` is invoked once\\n     */\\n    function once(func) {\\n      return before(2, func);\\n    }\\n\\n    /**\\n     * Creates a function that invokes `func` with its arguments transformed.\\n     *\\n     * @static\\n     * @since 4.0.0\\n     * @memberOf _\\n     * @category Function\\n     * @param {Function} func The function to wrap.\\n     * @param {...(Function|Function[])} [transforms=[_.identity]]\\n     *  The argument transforms.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * function doubled(n) {\\n     *   return n * 2;\\n     * }\\n     *\\n     * function square(n) {\\n     *   return n * n;\\n     * }\\n     *\\n     * var func = _.overArgs(function(x, y) {\\n     *   return [x, y];\\n     * }, [square, doubled]);\\n     *\\n     * func(9, 3);\\n     * // => [81, 6]\\n     *\\n     * func(10, 5);\\n     * // => [100, 10]\\n     */\\n    var overArgs = castRest(function(func, transforms) {\\n      transforms = (transforms.length == 1 && isArray(transforms[0]))\\n        ? arrayMap(transforms[0], baseUnary(getIteratee()))\\n        : arrayMap(baseFlatten(transforms, 1), baseUnary(getIteratee()));\\n\\n      var funcsLength = transforms.length;\\n      return baseRest(function(args) {\\n        var index = -1,\\n            length = nativeMin(args.length, funcsLength);\\n\\n        while (++index < length) {\\n          args[index] = transforms[index].call(this, args[index]);\\n        }\\n        return apply(func, this, args);\\n      });\\n    });\\n\\n    /**\\n     * Creates a function that invokes `func` with `partials` prepended to the\\n     * arguments it receives. This method is like `_.bind` except it does **not**\\n     * alter the `this` binding.\\n     *\\n     * The `_.partial.placeholder` value, which defaults to `_` in monolithic\\n     * builds, may be used as a placeholder for partially applied arguments.\\n     *\\n     * **Note:** This method doesn't set the \\\"length\\\" property of partially\\n     * applied functions.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.2.0\\n     * @category Function\\n     * @param {Function} func The function to partially apply arguments to.\\n     * @param {...*} [partials] The arguments to be partially applied.\\n     * @returns {Function} Returns the new partially applied function.\\n     * @example\\n     *\\n     * function greet(greeting, name) {\\n     *   return greeting + ' ' + name;\\n     * }\\n     *\\n     * var sayHelloTo = _.partial(greet, 'hello');\\n     * sayHelloTo('fred');\\n     * // => 'hello fred'\\n     *\\n     * // Partially applied with placeholders.\\n     * var greetFred = _.partial(greet, _, 'fred');\\n     * greetFred('hi');\\n     * // => 'hi fred'\\n     */\\n    var partial = baseRest(function(func, partials) {\\n      var holders = replaceHolders(partials, getHolder(partial));\\n      return createWrap(func, WRAP_PARTIAL_FLAG, undefined, partials, holders);\\n    });\\n\\n    /**\\n     * This method is like `_.partial` except that partially applied arguments\\n     * are appended to the arguments it receives.\\n     *\\n     * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic\\n     * builds, may be used as a placeholder for partially applied arguments.\\n     *\\n     * **Note:** This method doesn't set the \\\"length\\\" property of partially\\n     * applied functions.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.0.0\\n     * @category Function\\n     * @param {Function} func The function to partially apply arguments to.\\n     * @param {...*} [partials] The arguments to be partially applied.\\n     * @returns {Function} Returns the new partially applied function.\\n     * @example\\n     *\\n     * function greet(greeting, name) {\\n     *   return greeting + ' ' + name;\\n     * }\\n     *\\n     * var greetFred = _.partialRight(greet, 'fred');\\n     * greetFred('hi');\\n     * // => 'hi fred'\\n     *\\n     * // Partially applied with placeholders.\\n     * var sayHelloTo = _.partialRight(greet, 'hello', _);\\n     * sayHelloTo('fred');\\n     * // => 'hello fred'\\n     */\\n    var partialRight = baseRest(function(func, partials) {\\n      var holders = replaceHolders(partials, getHolder(partialRight));\\n      return createWrap(func, WRAP_PARTIAL_RIGHT_FLAG, undefined, partials, holders);\\n    });\\n\\n    /**\\n     * Creates a function that invokes `func` with arguments arranged according\\n     * to the specified `indexes` where the argument value at the first index is\\n     * provided as the first argument, the argument value at the second index is\\n     * provided as the second argument, and so on.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Function\\n     * @param {Function} func The function to rearrange arguments for.\\n     * @param {...(number|number[])} indexes The arranged argument indexes.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var rearged = _.rearg(function(a, b, c) {\\n     *   return [a, b, c];\\n     * }, [2, 0, 1]);\\n     *\\n     * rearged('b', 'c', 'a')\\n     * // => ['a', 'b', 'c']\\n     */\\n    var rearg = flatRest(function(func, indexes) {\\n      return createWrap(func, WRAP_REARG_FLAG, undefined, undefined, undefined, indexes);\\n    });\\n\\n    /**\\n     * Creates a function that invokes `func` with the `this` binding of the\\n     * created function and arguments from `start` and beyond provided as\\n     * an array.\\n     *\\n     * **Note:** This method is based on the\\n     * [rest parameter](https://mdn.io/rest_parameters).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Function\\n     * @param {Function} func The function to apply a rest parameter to.\\n     * @param {number} [start=func.length-1] The start position of the rest parameter.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var say = _.rest(function(what, names) {\\n     *   return what + ' ' + _.initial(names).join(', ') +\\n     *     (_.size(names) > 1 ? ', & ' : '') + _.last(names);\\n     * });\\n     *\\n     * say('hello', 'fred', 'barney', 'pebbles');\\n     * // => 'hello fred, barney, & pebbles'\\n     */\\n    function rest(func, start) {\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      start = start === undefined ? start : toInteger(start);\\n      return baseRest(func, start);\\n    }\\n\\n    /**\\n     * Creates a function that invokes `func` with the `this` binding of the\\n     * create function and an array of arguments much like\\n     * [`Function#apply`](http://www.ecma-international.org/ecma-262/7.0/#sec-function.prototype.apply).\\n     *\\n     * **Note:** This method is based on the\\n     * [spread operator](https://mdn.io/spread_operator).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.2.0\\n     * @category Function\\n     * @param {Function} func The function to spread arguments over.\\n     * @param {number} [start=0] The start position of the spread.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var say = _.spread(function(who, what) {\\n     *   return who + ' says ' + what;\\n     * });\\n     *\\n     * say(['fred', 'hello']);\\n     * // => 'fred says hello'\\n     *\\n     * var numbers = Promise.all([\\n     *   Promise.resolve(40),\\n     *   Promise.resolve(36)\\n     * ]);\\n     *\\n     * numbers.then(_.spread(function(x, y) {\\n     *   return x + y;\\n     * }));\\n     * // => a Promise of 76\\n     */\\n    function spread(func, start) {\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      start = start == null ? 0 : nativeMax(toInteger(start), 0);\\n      return baseRest(function(args) {\\n        var array = args[start],\\n            otherArgs = castSlice(args, 0, start);\\n\\n        if (array) {\\n          arrayPush(otherArgs, array);\\n        }\\n        return apply(func, this, otherArgs);\\n      });\\n    }\\n\\n    /**\\n     * Creates a throttled function that only invokes `func` at most once per\\n     * every `wait` milliseconds. The throttled function comes with a `cancel`\\n     * method to cancel delayed `func` invocations and a `flush` method to\\n     * immediately invoke them. Provide `options` to indicate whether `func`\\n     * should be invoked on the leading and/or trailing edge of the `wait`\\n     * timeout. The `func` is invoked with the last arguments provided to the\\n     * throttled function. Subsequent calls to the throttled function return the\\n     * result of the last `func` invocation.\\n     *\\n     * **Note:** If `leading` and `trailing` options are `true`, `func` is\\n     * invoked on the trailing edge of the timeout only if the throttled function\\n     * is invoked more than once during the `wait` timeout.\\n     *\\n     * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\\n     * until to the next tick, similar to `setTimeout` with a timeout of `0`.\\n     *\\n     * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\\n     * for details over the differences between `_.throttle` and `_.debounce`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {Function} func The function to throttle.\\n     * @param {number} [wait=0] The number of milliseconds to throttle invocations to.\\n     * @param {Object} [options={}] The options object.\\n     * @param {boolean} [options.leading=true]\\n     *  Specify invoking on the leading edge of the timeout.\\n     * @param {boolean} [options.trailing=true]\\n     *  Specify invoking on the trailing edge of the timeout.\\n     * @returns {Function} Returns the new throttled function.\\n     * @example\\n     *\\n     * // Avoid excessively updating the position while scrolling.\\n     * jQuery(window).on('scroll', _.throttle(updatePosition, 100));\\n     *\\n     * // Invoke `renewToken` when the click event is fired, but not more than once every 5 minutes.\\n     * var throttled = _.throttle(renewToken, 300000, { 'trailing': false });\\n     * jQuery(element).on('click', throttled);\\n     *\\n     * // Cancel the trailing throttled invocation.\\n     * jQuery(window).on('popstate', throttled.cancel);\\n     */\\n    function throttle(func, wait, options) {\\n      var leading = true,\\n          trailing = true;\\n\\n      if (typeof func != 'function') {\\n        throw new TypeError(FUNC_ERROR_TEXT);\\n      }\\n      if (isObject(options)) {\\n        leading = 'leading' in options ? !!options.leading : leading;\\n        trailing = 'trailing' in options ? !!options.trailing : trailing;\\n      }\\n      return debounce(func, wait, {\\n        'leading': leading,\\n        'maxWait': wait,\\n        'trailing': trailing\\n      });\\n    }\\n\\n    /**\\n     * Creates a function that accepts up to one argument, ignoring any\\n     * additional arguments.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Function\\n     * @param {Function} func The function to cap arguments for.\\n     * @returns {Function} Returns the new capped function.\\n     * @example\\n     *\\n     * _.map(['6', '8', '10'], _.unary(parseInt));\\n     * // => [6, 8, 10]\\n     */\\n    function unary(func) {\\n      return ary(func, 1);\\n    }\\n\\n    /**\\n     * Creates a function that provides `value` to `wrapper` as its first\\n     * argument. Any additional arguments provided to the function are appended\\n     * to those provided to the `wrapper`. The wrapper is invoked with the `this`\\n     * binding of the created function.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Function\\n     * @param {*} value The value to wrap.\\n     * @param {Function} [wrapper=identity] The wrapper function.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var p = _.wrap(_.escape, function(func, text) {\\n     *   return '<p>' + func(text) + '</p>';\\n     * });\\n     *\\n     * p('fred, barney, & pebbles');\\n     * // => '<p>fred, barney, &amp; pebbles</p>'\\n     */\\n    function wrap(value, wrapper) {\\n      return partial(castFunction(wrapper), value);\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Casts `value` as an array if it's not one.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.4.0\\n     * @category Lang\\n     * @param {*} value The value to inspect.\\n     * @returns {Array} Returns the cast array.\\n     * @example\\n     *\\n     * _.castArray(1);\\n     * // => [1]\\n     *\\n     * _.castArray({ 'a': 1 });\\n     * // => [{ 'a': 1 }]\\n     *\\n     * _.castArray('abc');\\n     * // => ['abc']\\n     *\\n     * _.castArray(null);\\n     * // => [null]\\n     *\\n     * _.castArray(undefined);\\n     * // => [undefined]\\n     *\\n     * _.castArray();\\n     * // => []\\n     *\\n     * var array = [1, 2, 3];\\n     * console.log(_.castArray(array) === array);\\n     * // => true\\n     */\\n    function castArray() {\\n      if (!arguments.length) {\\n        return [];\\n      }\\n      var value = arguments[0];\\n      return isArray(value) ? value : [value];\\n    }\\n\\n    /**\\n     * Creates a shallow clone of `value`.\\n     *\\n     * **Note:** This method is loosely based on the\\n     * [structured clone algorithm](https://mdn.io/Structured_clone_algorithm)\\n     * and supports cloning arrays, array buffers, booleans, date objects, maps,\\n     * numbers, `Object` objects, regexes, sets, strings, symbols, and typed\\n     * arrays. The own enumerable properties of `arguments` objects are cloned\\n     * as plain objects. An empty object is returned for uncloneable values such\\n     * as error objects, functions, DOM nodes, and WeakMaps.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to clone.\\n     * @returns {*} Returns the cloned value.\\n     * @see _.cloneDeep\\n     * @example\\n     *\\n     * var objects = [{ 'a': 1 }, { 'b': 2 }];\\n     *\\n     * var shallow = _.clone(objects);\\n     * console.log(shallow[0] === objects[0]);\\n     * // => true\\n     */\\n    function clone(value) {\\n      return baseClone(value, CLONE_SYMBOLS_FLAG);\\n    }\\n\\n    /**\\n     * This method is like `_.clone` except that it accepts `customizer` which\\n     * is invoked to produce the cloned value. If `customizer` returns `undefined`,\\n     * cloning is handled by the method instead. The `customizer` is invoked with\\n     * up to four arguments; (value [, index|key, object, stack]).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to clone.\\n     * @param {Function} [customizer] The function to customize cloning.\\n     * @returns {*} Returns the cloned value.\\n     * @see _.cloneDeepWith\\n     * @example\\n     *\\n     * function customizer(value) {\\n     *   if (_.isElement(value)) {\\n     *     return value.cloneNode(false);\\n     *   }\\n     * }\\n     *\\n     * var el = _.cloneWith(document.body, customizer);\\n     *\\n     * console.log(el === document.body);\\n     * // => false\\n     * console.log(el.nodeName);\\n     * // => 'BODY'\\n     * console.log(el.childNodes.length);\\n     * // => 0\\n     */\\n    function cloneWith(value, customizer) {\\n      customizer = typeof customizer == 'function' ? customizer : undefined;\\n      return baseClone(value, CLONE_SYMBOLS_FLAG, customizer);\\n    }\\n\\n    /**\\n     * This method is like `_.clone` except that it recursively clones `value`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.0.0\\n     * @category Lang\\n     * @param {*} value The value to recursively clone.\\n     * @returns {*} Returns the deep cloned value.\\n     * @see _.clone\\n     * @example\\n     *\\n     * var objects = [{ 'a': 1 }, { 'b': 2 }];\\n     *\\n     * var deep = _.cloneDeep(objects);\\n     * console.log(deep[0] === objects[0]);\\n     * // => false\\n     */\\n    function cloneDeep(value) {\\n      return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG);\\n    }\\n\\n    /**\\n     * This method is like `_.cloneWith` except that it recursively clones `value`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to recursively clone.\\n     * @param {Function} [customizer] The function to customize cloning.\\n     * @returns {*} Returns the deep cloned value.\\n     * @see _.cloneWith\\n     * @example\\n     *\\n     * function customizer(value) {\\n     *   if (_.isElement(value)) {\\n     *     return value.cloneNode(true);\\n     *   }\\n     * }\\n     *\\n     * var el = _.cloneDeepWith(document.body, customizer);\\n     *\\n     * console.log(el === document.body);\\n     * // => false\\n     * console.log(el.nodeName);\\n     * // => 'BODY'\\n     * console.log(el.childNodes.length);\\n     * // => 20\\n     */\\n    function cloneDeepWith(value, customizer) {\\n      customizer = typeof customizer == 'function' ? customizer : undefined;\\n      return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG, customizer);\\n    }\\n\\n    /**\\n     * Checks if `object` conforms to `source` by invoking the predicate\\n     * properties of `source` with the corresponding property values of `object`.\\n     *\\n     * **Note:** This method is equivalent to `_.conforms` when `source` is\\n     * partially applied.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.14.0\\n     * @category Lang\\n     * @param {Object} object The object to inspect.\\n     * @param {Object} source The object of property predicates to conform to.\\n     * @returns {boolean} Returns `true` if `object` conforms, else `false`.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': 2 };\\n     *\\n     * _.conformsTo(object, { 'b': function(n) { return n > 1; } });\\n     * // => true\\n     *\\n     * _.conformsTo(object, { 'b': function(n) { return n > 2; } });\\n     * // => false\\n     */\\n    function conformsTo(object, source) {\\n      return source == null || baseConformsTo(object, source, keys(source));\\n    }\\n\\n    /**\\n     * Performs a\\n     * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\\n     * comparison between two values to determine if they are equivalent.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\\n     * @example\\n     *\\n     * var object = { 'a': 1 };\\n     * var other = { 'a': 1 };\\n     *\\n     * _.eq(object, object);\\n     * // => true\\n     *\\n     * _.eq(object, other);\\n     * // => false\\n     *\\n     * _.eq('a', 'a');\\n     * // => true\\n     *\\n     * _.eq('a', Object('a'));\\n     * // => false\\n     *\\n     * _.eq(NaN, NaN);\\n     * // => true\\n     */\\n    function eq(value, other) {\\n      return value === other || (value !== value && other !== other);\\n    }\\n\\n    /**\\n     * Checks if `value` is greater than `other`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.9.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if `value` is greater than `other`,\\n     *  else `false`.\\n     * @see _.lt\\n     * @example\\n     *\\n     * _.gt(3, 1);\\n     * // => true\\n     *\\n     * _.gt(3, 3);\\n     * // => false\\n     *\\n     * _.gt(1, 3);\\n     * // => false\\n     */\\n    var gt = createRelationalOperation(baseGt);\\n\\n    /**\\n     * Checks if `value` is greater than or equal to `other`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.9.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if `value` is greater than or equal to\\n     *  `other`, else `false`.\\n     * @see _.lte\\n     * @example\\n     *\\n     * _.gte(3, 1);\\n     * // => true\\n     *\\n     * _.gte(3, 3);\\n     * // => true\\n     *\\n     * _.gte(1, 3);\\n     * // => false\\n     */\\n    var gte = createRelationalOperation(function(value, other) {\\n      return value >= other;\\n    });\\n\\n    /**\\n     * Checks if `value` is likely an `arguments` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an `arguments` object,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.isArguments(function() { return arguments; }());\\n     * // => true\\n     *\\n     * _.isArguments([1, 2, 3]);\\n     * // => false\\n     */\\n    var isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {\\n      return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&\\n        !propertyIsEnumerable.call(value, 'callee');\\n    };\\n\\n    /**\\n     * Checks if `value` is classified as an `Array` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an array, else `false`.\\n     * @example\\n     *\\n     * _.isArray([1, 2, 3]);\\n     * // => true\\n     *\\n     * _.isArray(document.body.children);\\n     * // => false\\n     *\\n     * _.isArray('abc');\\n     * // => false\\n     *\\n     * _.isArray(_.noop);\\n     * // => false\\n     */\\n    var isArray = Array.isArray;\\n\\n    /**\\n     * Checks if `value` is classified as an `ArrayBuffer` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.3.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an array buffer, else `false`.\\n     * @example\\n     *\\n     * _.isArrayBuffer(new ArrayBuffer(2));\\n     * // => true\\n     *\\n     * _.isArrayBuffer(new Array(2));\\n     * // => false\\n     */\\n    var isArrayBuffer = nodeIsArrayBuffer ? baseUnary(nodeIsArrayBuffer) : baseIsArrayBuffer;\\n\\n    /**\\n     * Checks if `value` is array-like. A value is considered array-like if it's\\n     * not a function and has a `value.length` that's an integer greater than or\\n     * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\\n     * @example\\n     *\\n     * _.isArrayLike([1, 2, 3]);\\n     * // => true\\n     *\\n     * _.isArrayLike(document.body.children);\\n     * // => true\\n     *\\n     * _.isArrayLike('abc');\\n     * // => true\\n     *\\n     * _.isArrayLike(_.noop);\\n     * // => false\\n     */\\n    function isArrayLike(value) {\\n      return value != null && isLength(value.length) && !isFunction(value);\\n    }\\n\\n    /**\\n     * This method is like `_.isArrayLike` except that it also checks if `value`\\n     * is an object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an array-like object,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.isArrayLikeObject([1, 2, 3]);\\n     * // => true\\n     *\\n     * _.isArrayLikeObject(document.body.children);\\n     * // => true\\n     *\\n     * _.isArrayLikeObject('abc');\\n     * // => false\\n     *\\n     * _.isArrayLikeObject(_.noop);\\n     * // => false\\n     */\\n    function isArrayLikeObject(value) {\\n      return isObjectLike(value) && isArrayLike(value);\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a boolean primitive or object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a boolean, else `false`.\\n     * @example\\n     *\\n     * _.isBoolean(false);\\n     * // => true\\n     *\\n     * _.isBoolean(null);\\n     * // => false\\n     */\\n    function isBoolean(value) {\\n      return value === true || value === false ||\\n        (isObjectLike(value) && baseGetTag(value) == boolTag);\\n    }\\n\\n    /**\\n     * Checks if `value` is a buffer.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.3.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\\n     * @example\\n     *\\n     * _.isBuffer(new Buffer(2));\\n     * // => true\\n     *\\n     * _.isBuffer(new Uint8Array(2));\\n     * // => false\\n     */\\n    var isBuffer = nativeIsBuffer || stubFalse;\\n\\n    /**\\n     * Checks if `value` is classified as a `Date` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a date object, else `false`.\\n     * @example\\n     *\\n     * _.isDate(new Date);\\n     * // => true\\n     *\\n     * _.isDate('Mon April 23 2012');\\n     * // => false\\n     */\\n    var isDate = nodeIsDate ? baseUnary(nodeIsDate) : baseIsDate;\\n\\n    /**\\n     * Checks if `value` is likely a DOM element.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`.\\n     * @example\\n     *\\n     * _.isElement(document.body);\\n     * // => true\\n     *\\n     * _.isElement('<body>');\\n     * // => false\\n     */\\n    function isElement(value) {\\n      return isObjectLike(value) && value.nodeType === 1 && !isPlainObject(value);\\n    }\\n\\n    /**\\n     * Checks if `value` is an empty object, collection, map, or set.\\n     *\\n     * Objects are considered empty if they have no own enumerable string keyed\\n     * properties.\\n     *\\n     * Array-like values such as `arguments` objects, arrays, buffers, strings, or\\n     * jQuery-like collections are considered empty if they have a `length` of `0`.\\n     * Similarly, maps and sets are considered empty if they have a `size` of `0`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is empty, else `false`.\\n     * @example\\n     *\\n     * _.isEmpty(null);\\n     * // => true\\n     *\\n     * _.isEmpty(true);\\n     * // => true\\n     *\\n     * _.isEmpty(1);\\n     * // => true\\n     *\\n     * _.isEmpty([1, 2, 3]);\\n     * // => false\\n     *\\n     * _.isEmpty({ 'a': 1 });\\n     * // => false\\n     */\\n    function isEmpty(value) {\\n      if (value == null) {\\n        return true;\\n      }\\n      if (isArrayLike(value) &&\\n          (isArray(value) || typeof value == 'string' || typeof value.splice == 'function' ||\\n            isBuffer(value) || isTypedArray(value) || isArguments(value))) {\\n        return !value.length;\\n      }\\n      var tag = getTag(value);\\n      if (tag == mapTag || tag == setTag) {\\n        return !value.size;\\n      }\\n      if (isPrototype(value)) {\\n        return !baseKeys(value).length;\\n      }\\n      for (var key in value) {\\n        if (hasOwnProperty.call(value, key)) {\\n          return false;\\n        }\\n      }\\n      return true;\\n    }\\n\\n    /**\\n     * Performs a deep comparison between two values to determine if they are\\n     * equivalent.\\n     *\\n     * **Note:** This method supports comparing arrays, array buffers, booleans,\\n     * date objects, error objects, maps, numbers, `Object` objects, regexes,\\n     * sets, strings, symbols, and typed arrays. `Object` objects are compared\\n     * by their own, not inherited, enumerable properties. Functions and DOM\\n     * nodes are compared by strict equality, i.e. `===`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\\n     * @example\\n     *\\n     * var object = { 'a': 1 };\\n     * var other = { 'a': 1 };\\n     *\\n     * _.isEqual(object, other);\\n     * // => true\\n     *\\n     * object === other;\\n     * // => false\\n     */\\n    function isEqual(value, other) {\\n      return baseIsEqual(value, other);\\n    }\\n\\n    /**\\n     * This method is like `_.isEqual` except that it accepts `customizer` which\\n     * is invoked to compare values. If `customizer` returns `undefined`, comparisons\\n     * are handled by the method instead. The `customizer` is invoked with up to\\n     * six arguments: (objValue, othValue [, index|key, object, other, stack]).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @param {Function} [customizer] The function to customize comparisons.\\n     * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\\n     * @example\\n     *\\n     * function isGreeting(value) {\\n     *   return /^h(?:i|ello)$/.test(value);\\n     * }\\n     *\\n     * function customizer(objValue, othValue) {\\n     *   if (isGreeting(objValue) && isGreeting(othValue)) {\\n     *     return true;\\n     *   }\\n     * }\\n     *\\n     * var array = ['hello', 'goodbye'];\\n     * var other = ['hi', 'goodbye'];\\n     *\\n     * _.isEqualWith(array, other, customizer);\\n     * // => true\\n     */\\n    function isEqualWith(value, other, customizer) {\\n      customizer = typeof customizer == 'function' ? customizer : undefined;\\n      var result = customizer ? customizer(value, other) : undefined;\\n      return result === undefined ? baseIsEqual(value, other, undefined, customizer) : !!result;\\n    }\\n\\n    /**\\n     * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`,\\n     * `SyntaxError`, `TypeError`, or `URIError` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an error object, else `false`.\\n     * @example\\n     *\\n     * _.isError(new Error);\\n     * // => true\\n     *\\n     * _.isError(Error);\\n     * // => false\\n     */\\n    function isError(value) {\\n      if (!isObjectLike(value)) {\\n        return false;\\n      }\\n      var tag = baseGetTag(value);\\n      return tag == errorTag || tag == domExcTag ||\\n        (typeof value.message == 'string' && typeof value.name == 'string' && !isPlainObject(value));\\n    }\\n\\n    /**\\n     * Checks if `value` is a finite primitive number.\\n     *\\n     * **Note:** This method is based on\\n     * [`Number.isFinite`](https://mdn.io/Number/isFinite).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a finite number, else `false`.\\n     * @example\\n     *\\n     * _.isFinite(3);\\n     * // => true\\n     *\\n     * _.isFinite(Number.MIN_VALUE);\\n     * // => true\\n     *\\n     * _.isFinite(Infinity);\\n     * // => false\\n     *\\n     * _.isFinite('3');\\n     * // => false\\n     */\\n    function isFinite(value) {\\n      return typeof value == 'number' && nativeIsFinite(value);\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `Function` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a function, else `false`.\\n     * @example\\n     *\\n     * _.isFunction(_);\\n     * // => true\\n     *\\n     * _.isFunction(/abc/);\\n     * // => false\\n     */\\n    function isFunction(value) {\\n      if (!isObject(value)) {\\n        return false;\\n      }\\n      // The use of `Object#toString` avoids issues with the `typeof` operator\\n      // in Safari 9 which returns 'object' for typed arrays and other constructors.\\n      var tag = baseGetTag(value);\\n      return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;\\n    }\\n\\n    /**\\n     * Checks if `value` is an integer.\\n     *\\n     * **Note:** This method is based on\\n     * [`Number.isInteger`](https://mdn.io/Number/isInteger).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an integer, else `false`.\\n     * @example\\n     *\\n     * _.isInteger(3);\\n     * // => true\\n     *\\n     * _.isInteger(Number.MIN_VALUE);\\n     * // => false\\n     *\\n     * _.isInteger(Infinity);\\n     * // => false\\n     *\\n     * _.isInteger('3');\\n     * // => false\\n     */\\n    function isInteger(value) {\\n      return typeof value == 'number' && value == toInteger(value);\\n    }\\n\\n    /**\\n     * Checks if `value` is a valid array-like length.\\n     *\\n     * **Note:** This method is loosely based on\\n     * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\\n     * @example\\n     *\\n     * _.isLength(3);\\n     * // => true\\n     *\\n     * _.isLength(Number.MIN_VALUE);\\n     * // => false\\n     *\\n     * _.isLength(Infinity);\\n     * // => false\\n     *\\n     * _.isLength('3');\\n     * // => false\\n     */\\n    function isLength(value) {\\n      return typeof value == 'number' &&\\n        value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\\n    }\\n\\n    /**\\n     * Checks if `value` is the\\n     * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\\n     * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is an object, else `false`.\\n     * @example\\n     *\\n     * _.isObject({});\\n     * // => true\\n     *\\n     * _.isObject([1, 2, 3]);\\n     * // => true\\n     *\\n     * _.isObject(_.noop);\\n     * // => true\\n     *\\n     * _.isObject(null);\\n     * // => false\\n     */\\n    function isObject(value) {\\n      var type = typeof value;\\n      return value != null && (type == 'object' || type == 'function');\\n    }\\n\\n    /**\\n     * Checks if `value` is object-like. A value is object-like if it's not `null`\\n     * and has a `typeof` result of \\\"object\\\".\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\\n     * @example\\n     *\\n     * _.isObjectLike({});\\n     * // => true\\n     *\\n     * _.isObjectLike([1, 2, 3]);\\n     * // => true\\n     *\\n     * _.isObjectLike(_.noop);\\n     * // => false\\n     *\\n     * _.isObjectLike(null);\\n     * // => false\\n     */\\n    function isObjectLike(value) {\\n      return value != null && typeof value == 'object';\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `Map` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.3.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a map, else `false`.\\n     * @example\\n     *\\n     * _.isMap(new Map);\\n     * // => true\\n     *\\n     * _.isMap(new WeakMap);\\n     * // => false\\n     */\\n    var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap;\\n\\n    /**\\n     * Performs a partial deep comparison between `object` and `source` to\\n     * determine if `object` contains equivalent property values.\\n     *\\n     * **Note:** This method is equivalent to `_.matches` when `source` is\\n     * partially applied.\\n     *\\n     * Partial comparisons will match empty array and empty object `source`\\n     * values against any array or object value, respectively. See `_.isEqual`\\n     * for a list of supported value comparisons.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Lang\\n     * @param {Object} object The object to inspect.\\n     * @param {Object} source The object of property values to match.\\n     * @returns {boolean} Returns `true` if `object` is a match, else `false`.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': 2 };\\n     *\\n     * _.isMatch(object, { 'b': 2 });\\n     * // => true\\n     *\\n     * _.isMatch(object, { 'b': 1 });\\n     * // => false\\n     */\\n    function isMatch(object, source) {\\n      return object === source || baseIsMatch(object, source, getMatchData(source));\\n    }\\n\\n    /**\\n     * This method is like `_.isMatch` except that it accepts `customizer` which\\n     * is invoked to compare values. If `customizer` returns `undefined`, comparisons\\n     * are handled by the method instead. The `customizer` is invoked with five\\n     * arguments: (objValue, srcValue, index|key, object, source).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {Object} object The object to inspect.\\n     * @param {Object} source The object of property values to match.\\n     * @param {Function} [customizer] The function to customize comparisons.\\n     * @returns {boolean} Returns `true` if `object` is a match, else `false`.\\n     * @example\\n     *\\n     * function isGreeting(value) {\\n     *   return /^h(?:i|ello)$/.test(value);\\n     * }\\n     *\\n     * function customizer(objValue, srcValue) {\\n     *   if (isGreeting(objValue) && isGreeting(srcValue)) {\\n     *     return true;\\n     *   }\\n     * }\\n     *\\n     * var object = { 'greeting': 'hello' };\\n     * var source = { 'greeting': 'hi' };\\n     *\\n     * _.isMatchWith(object, source, customizer);\\n     * // => true\\n     */\\n    function isMatchWith(object, source, customizer) {\\n      customizer = typeof customizer == 'function' ? customizer : undefined;\\n      return baseIsMatch(object, source, getMatchData(source), customizer);\\n    }\\n\\n    /**\\n     * Checks if `value` is `NaN`.\\n     *\\n     * **Note:** This method is based on\\n     * [`Number.isNaN`](https://mdn.io/Number/isNaN) and is not the same as\\n     * global [`isNaN`](https://mdn.io/isNaN) which returns `true` for\\n     * `undefined` and other non-number values.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.\\n     * @example\\n     *\\n     * _.isNaN(NaN);\\n     * // => true\\n     *\\n     * _.isNaN(new Number(NaN));\\n     * // => true\\n     *\\n     * isNaN(undefined);\\n     * // => true\\n     *\\n     * _.isNaN(undefined);\\n     * // => false\\n     */\\n    function isNaN(value) {\\n      // An `NaN` primitive is the only value that is not equal to itself.\\n      // Perform the `toStringTag` check first to avoid errors with some\\n      // ActiveX objects in IE.\\n      return isNumber(value) && value != +value;\\n    }\\n\\n    /**\\n     * Checks if `value` is a pristine native function.\\n     *\\n     * **Note:** This method can't reliably detect native functions in the presence\\n     * of the core-js package because core-js circumvents this kind of detection.\\n     * Despite multiple requests, the core-js maintainer has made it clear: any\\n     * attempt to fix the detection will be obstructed. As a result, we're left\\n     * with little choice but to throw an error. Unfortunately, this also affects\\n     * packages, like [babel-polyfill](https://www.npmjs.com/package/babel-polyfill),\\n     * which rely on core-js.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a native function,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.isNative(Array.prototype.push);\\n     * // => true\\n     *\\n     * _.isNative(_);\\n     * // => false\\n     */\\n    function isNative(value) {\\n      if (isMaskable(value)) {\\n        throw new Error(CORE_ERROR_TEXT);\\n      }\\n      return baseIsNative(value);\\n    }\\n\\n    /**\\n     * Checks if `value` is `null`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is `null`, else `false`.\\n     * @example\\n     *\\n     * _.isNull(null);\\n     * // => true\\n     *\\n     * _.isNull(void 0);\\n     * // => false\\n     */\\n    function isNull(value) {\\n      return value === null;\\n    }\\n\\n    /**\\n     * Checks if `value` is `null` or `undefined`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is nullish, else `false`.\\n     * @example\\n     *\\n     * _.isNil(null);\\n     * // => true\\n     *\\n     * _.isNil(void 0);\\n     * // => true\\n     *\\n     * _.isNil(NaN);\\n     * // => false\\n     */\\n    function isNil(value) {\\n      return value == null;\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `Number` primitive or object.\\n     *\\n     * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are\\n     * classified as numbers, use the `_.isFinite` method.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a number, else `false`.\\n     * @example\\n     *\\n     * _.isNumber(3);\\n     * // => true\\n     *\\n     * _.isNumber(Number.MIN_VALUE);\\n     * // => true\\n     *\\n     * _.isNumber(Infinity);\\n     * // => true\\n     *\\n     * _.isNumber('3');\\n     * // => false\\n     */\\n    function isNumber(value) {\\n      return typeof value == 'number' ||\\n        (isObjectLike(value) && baseGetTag(value) == numberTag);\\n    }\\n\\n    /**\\n     * Checks if `value` is a plain object, that is, an object created by the\\n     * `Object` constructor or one with a `[[Prototype]]` of `null`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.8.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     * }\\n     *\\n     * _.isPlainObject(new Foo);\\n     * // => false\\n     *\\n     * _.isPlainObject([1, 2, 3]);\\n     * // => false\\n     *\\n     * _.isPlainObject({ 'x': 0, 'y': 0 });\\n     * // => true\\n     *\\n     * _.isPlainObject(Object.create(null));\\n     * // => true\\n     */\\n    function isPlainObject(value) {\\n      if (!isObjectLike(value) || baseGetTag(value) != objectTag) {\\n        return false;\\n      }\\n      var proto = getPrototype(value);\\n      if (proto === null) {\\n        return true;\\n      }\\n      var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;\\n      return typeof Ctor == 'function' && Ctor instanceof Ctor &&\\n        funcToString.call(Ctor) == objectCtorString;\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `RegExp` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.1.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a regexp, else `false`.\\n     * @example\\n     *\\n     * _.isRegExp(/abc/);\\n     * // => true\\n     *\\n     * _.isRegExp('/abc/');\\n     * // => false\\n     */\\n    var isRegExp = nodeIsRegExp ? baseUnary(nodeIsRegExp) : baseIsRegExp;\\n\\n    /**\\n     * Checks if `value` is a safe integer. An integer is safe if it's an IEEE-754\\n     * double precision number which isn't the result of a rounded unsafe integer.\\n     *\\n     * **Note:** This method is based on\\n     * [`Number.isSafeInteger`](https://mdn.io/Number/isSafeInteger).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a safe integer, else `false`.\\n     * @example\\n     *\\n     * _.isSafeInteger(3);\\n     * // => true\\n     *\\n     * _.isSafeInteger(Number.MIN_VALUE);\\n     * // => false\\n     *\\n     * _.isSafeInteger(Infinity);\\n     * // => false\\n     *\\n     * _.isSafeInteger('3');\\n     * // => false\\n     */\\n    function isSafeInteger(value) {\\n      return isInteger(value) && value >= -MAX_SAFE_INTEGER && value <= MAX_SAFE_INTEGER;\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `Set` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.3.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a set, else `false`.\\n     * @example\\n     *\\n     * _.isSet(new Set);\\n     * // => true\\n     *\\n     * _.isSet(new WeakSet);\\n     * // => false\\n     */\\n    var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet;\\n\\n    /**\\n     * Checks if `value` is classified as a `String` primitive or object.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a string, else `false`.\\n     * @example\\n     *\\n     * _.isString('abc');\\n     * // => true\\n     *\\n     * _.isString(1);\\n     * // => false\\n     */\\n    function isString(value) {\\n      return typeof value == 'string' ||\\n        (!isArray(value) && isObjectLike(value) && baseGetTag(value) == stringTag);\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `Symbol` primitive or object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.\\n     * @example\\n     *\\n     * _.isSymbol(Symbol.iterator);\\n     * // => true\\n     *\\n     * _.isSymbol('abc');\\n     * // => false\\n     */\\n    function isSymbol(value) {\\n      return typeof value == 'symbol' ||\\n        (isObjectLike(value) && baseGetTag(value) == symbolTag);\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a typed array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\\n     * @example\\n     *\\n     * _.isTypedArray(new Uint8Array);\\n     * // => true\\n     *\\n     * _.isTypedArray([]);\\n     * // => false\\n     */\\n    var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;\\n\\n    /**\\n     * Checks if `value` is `undefined`.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`.\\n     * @example\\n     *\\n     * _.isUndefined(void 0);\\n     * // => true\\n     *\\n     * _.isUndefined(null);\\n     * // => false\\n     */\\n    function isUndefined(value) {\\n      return value === undefined;\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `WeakMap` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.3.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a weak map, else `false`.\\n     * @example\\n     *\\n     * _.isWeakMap(new WeakMap);\\n     * // => true\\n     *\\n     * _.isWeakMap(new Map);\\n     * // => false\\n     */\\n    function isWeakMap(value) {\\n      return isObjectLike(value) && getTag(value) == weakMapTag;\\n    }\\n\\n    /**\\n     * Checks if `value` is classified as a `WeakSet` object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.3.0\\n     * @category Lang\\n     * @param {*} value The value to check.\\n     * @returns {boolean} Returns `true` if `value` is a weak set, else `false`.\\n     * @example\\n     *\\n     * _.isWeakSet(new WeakSet);\\n     * // => true\\n     *\\n     * _.isWeakSet(new Set);\\n     * // => false\\n     */\\n    function isWeakSet(value) {\\n      return isObjectLike(value) && baseGetTag(value) == weakSetTag;\\n    }\\n\\n    /**\\n     * Checks if `value` is less than `other`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.9.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if `value` is less than `other`,\\n     *  else `false`.\\n     * @see _.gt\\n     * @example\\n     *\\n     * _.lt(1, 3);\\n     * // => true\\n     *\\n     * _.lt(3, 3);\\n     * // => false\\n     *\\n     * _.lt(3, 1);\\n     * // => false\\n     */\\n    var lt = createRelationalOperation(baseLt);\\n\\n    /**\\n     * Checks if `value` is less than or equal to `other`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.9.0\\n     * @category Lang\\n     * @param {*} value The value to compare.\\n     * @param {*} other The other value to compare.\\n     * @returns {boolean} Returns `true` if `value` is less than or equal to\\n     *  `other`, else `false`.\\n     * @see _.gte\\n     * @example\\n     *\\n     * _.lte(1, 3);\\n     * // => true\\n     *\\n     * _.lte(3, 3);\\n     * // => true\\n     *\\n     * _.lte(3, 1);\\n     * // => false\\n     */\\n    var lte = createRelationalOperation(function(value, other) {\\n      return value <= other;\\n    });\\n\\n    /**\\n     * Converts `value` to an array.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {Array} Returns the converted array.\\n     * @example\\n     *\\n     * _.toArray({ 'a': 1, 'b': 2 });\\n     * // => [1, 2]\\n     *\\n     * _.toArray('abc');\\n     * // => ['a', 'b', 'c']\\n     *\\n     * _.toArray(1);\\n     * // => []\\n     *\\n     * _.toArray(null);\\n     * // => []\\n     */\\n    function toArray(value) {\\n      if (!value) {\\n        return [];\\n      }\\n      if (isArrayLike(value)) {\\n        return isString(value) ? stringToArray(value) : copyArray(value);\\n      }\\n      if (symIterator && value[symIterator]) {\\n        return iteratorToArray(value[symIterator]());\\n      }\\n      var tag = getTag(value),\\n          func = tag == mapTag ? mapToArray : (tag == setTag ? setToArray : values);\\n\\n      return func(value);\\n    }\\n\\n    /**\\n     * Converts `value` to a finite number.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.12.0\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {number} Returns the converted number.\\n     * @example\\n     *\\n     * _.toFinite(3.2);\\n     * // => 3.2\\n     *\\n     * _.toFinite(Number.MIN_VALUE);\\n     * // => 5e-324\\n     *\\n     * _.toFinite(Infinity);\\n     * // => 1.7976931348623157e+308\\n     *\\n     * _.toFinite('3.2');\\n     * // => 3.2\\n     */\\n    function toFinite(value) {\\n      if (!value) {\\n        return value === 0 ? value : 0;\\n      }\\n      value = toNumber(value);\\n      if (value === INFINITY || value === -INFINITY) {\\n        var sign = (value < 0 ? -1 : 1);\\n        return sign * MAX_INTEGER;\\n      }\\n      return value === value ? value : 0;\\n    }\\n\\n    /**\\n     * Converts `value` to an integer.\\n     *\\n     * **Note:** This method is loosely based on\\n     * [`ToInteger`](http://www.ecma-international.org/ecma-262/7.0/#sec-tointeger).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {number} Returns the converted integer.\\n     * @example\\n     *\\n     * _.toInteger(3.2);\\n     * // => 3\\n     *\\n     * _.toInteger(Number.MIN_VALUE);\\n     * // => 0\\n     *\\n     * _.toInteger(Infinity);\\n     * // => 1.7976931348623157e+308\\n     *\\n     * _.toInteger('3.2');\\n     * // => 3\\n     */\\n    function toInteger(value) {\\n      var result = toFinite(value),\\n          remainder = result % 1;\\n\\n      return result === result ? (remainder ? result - remainder : result) : 0;\\n    }\\n\\n    /**\\n     * Converts `value` to an integer suitable for use as the length of an\\n     * array-like object.\\n     *\\n     * **Note:** This method is based on\\n     * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {number} Returns the converted integer.\\n     * @example\\n     *\\n     * _.toLength(3.2);\\n     * // => 3\\n     *\\n     * _.toLength(Number.MIN_VALUE);\\n     * // => 0\\n     *\\n     * _.toLength(Infinity);\\n     * // => 4294967295\\n     *\\n     * _.toLength('3.2');\\n     * // => 3\\n     */\\n    function toLength(value) {\\n      return value ? baseClamp(toInteger(value), 0, MAX_ARRAY_LENGTH) : 0;\\n    }\\n\\n    /**\\n     * Converts `value` to a number.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to process.\\n     * @returns {number} Returns the number.\\n     * @example\\n     *\\n     * _.toNumber(3.2);\\n     * // => 3.2\\n     *\\n     * _.toNumber(Number.MIN_VALUE);\\n     * // => 5e-324\\n     *\\n     * _.toNumber(Infinity);\\n     * // => Infinity\\n     *\\n     * _.toNumber('3.2');\\n     * // => 3.2\\n     */\\n    function toNumber(value) {\\n      if (typeof value == 'number') {\\n        return value;\\n      }\\n      if (isSymbol(value)) {\\n        return NAN;\\n      }\\n      if (isObject(value)) {\\n        var other = typeof value.valueOf == 'function' ? value.valueOf() : value;\\n        value = isObject(other) ? (other + '') : other;\\n      }\\n      if (typeof value != 'string') {\\n        return value === 0 ? value : +value;\\n      }\\n      value = value.replace(reTrim, '');\\n      var isBinary = reIsBinary.test(value);\\n      return (isBinary || reIsOctal.test(value))\\n        ? freeParseInt(value.slice(2), isBinary ? 2 : 8)\\n        : (reIsBadHex.test(value) ? NAN : +value);\\n    }\\n\\n    /**\\n     * Converts `value` to a plain object flattening inherited enumerable string\\n     * keyed properties of `value` to own properties of the plain object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {Object} Returns the converted plain object.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.assign({ 'a': 1 }, new Foo);\\n     * // => { 'a': 1, 'b': 2 }\\n     *\\n     * _.assign({ 'a': 1 }, _.toPlainObject(new Foo));\\n     * // => { 'a': 1, 'b': 2, 'c': 3 }\\n     */\\n    function toPlainObject(value) {\\n      return copyObject(value, keysIn(value));\\n    }\\n\\n    /**\\n     * Converts `value` to a safe integer. A safe integer can be compared and\\n     * represented correctly.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {number} Returns the converted integer.\\n     * @example\\n     *\\n     * _.toSafeInteger(3.2);\\n     * // => 3\\n     *\\n     * _.toSafeInteger(Number.MIN_VALUE);\\n     * // => 0\\n     *\\n     * _.toSafeInteger(Infinity);\\n     * // => 9007199254740991\\n     *\\n     * _.toSafeInteger('3.2');\\n     * // => 3\\n     */\\n    function toSafeInteger(value) {\\n      return value\\n        ? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER)\\n        : (value === 0 ? value : 0);\\n    }\\n\\n    /**\\n     * Converts `value` to a string. An empty string is returned for `null`\\n     * and `undefined` values. The sign of `-0` is preserved.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Lang\\n     * @param {*} value The value to convert.\\n     * @returns {string} Returns the converted string.\\n     * @example\\n     *\\n     * _.toString(null);\\n     * // => ''\\n     *\\n     * _.toString(-0);\\n     * // => '-0'\\n     *\\n     * _.toString([1, 2, 3]);\\n     * // => '1,2,3'\\n     */\\n    function toString(value) {\\n      return value == null ? '' : baseToString(value);\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Assigns own enumerable string keyed properties of source objects to the\\n     * destination object. Source objects are applied from left to right.\\n     * Subsequent sources overwrite property assignments of previous sources.\\n     *\\n     * **Note:** This method mutates `object` and is loosely based on\\n     * [`Object.assign`](https://mdn.io/Object/assign).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.10.0\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} [sources] The source objects.\\n     * @returns {Object} Returns `object`.\\n     * @see _.assignIn\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     * }\\n     *\\n     * function Bar() {\\n     *   this.c = 3;\\n     * }\\n     *\\n     * Foo.prototype.b = 2;\\n     * Bar.prototype.d = 4;\\n     *\\n     * _.assign({ 'a': 0 }, new Foo, new Bar);\\n     * // => { 'a': 1, 'c': 3 }\\n     */\\n    var assign = createAssigner(function(object, source) {\\n      if (isPrototype(source) || isArrayLike(source)) {\\n        copyObject(source, keys(source), object);\\n        return;\\n      }\\n      for (var key in source) {\\n        if (hasOwnProperty.call(source, key)) {\\n          assignValue(object, key, source[key]);\\n        }\\n      }\\n    });\\n\\n    /**\\n     * This method is like `_.assign` except that it iterates over own and\\n     * inherited source properties.\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @alias extend\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} [sources] The source objects.\\n     * @returns {Object} Returns `object`.\\n     * @see _.assign\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     * }\\n     *\\n     * function Bar() {\\n     *   this.c = 3;\\n     * }\\n     *\\n     * Foo.prototype.b = 2;\\n     * Bar.prototype.d = 4;\\n     *\\n     * _.assignIn({ 'a': 0 }, new Foo, new Bar);\\n     * // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 }\\n     */\\n    var assignIn = createAssigner(function(object, source) {\\n      copyObject(source, keysIn(source), object);\\n    });\\n\\n    /**\\n     * This method is like `_.assignIn` except that it accepts `customizer`\\n     * which is invoked to produce the assigned values. If `customizer` returns\\n     * `undefined`, assignment is handled by the method instead. The `customizer`\\n     * is invoked with five arguments: (objValue, srcValue, key, object, source).\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @alias extendWith\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} sources The source objects.\\n     * @param {Function} [customizer] The function to customize assigned values.\\n     * @returns {Object} Returns `object`.\\n     * @see _.assignWith\\n     * @example\\n     *\\n     * function customizer(objValue, srcValue) {\\n     *   return _.isUndefined(objValue) ? srcValue : objValue;\\n     * }\\n     *\\n     * var defaults = _.partialRight(_.assignInWith, customizer);\\n     *\\n     * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\\n     * // => { 'a': 1, 'b': 2 }\\n     */\\n    var assignInWith = createAssigner(function(object, source, srcIndex, customizer) {\\n      copyObject(source, keysIn(source), object, customizer);\\n    });\\n\\n    /**\\n     * This method is like `_.assign` except that it accepts `customizer`\\n     * which is invoked to produce the assigned values. If `customizer` returns\\n     * `undefined`, assignment is handled by the method instead. The `customizer`\\n     * is invoked with five arguments: (objValue, srcValue, key, object, source).\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} sources The source objects.\\n     * @param {Function} [customizer] The function to customize assigned values.\\n     * @returns {Object} Returns `object`.\\n     * @see _.assignInWith\\n     * @example\\n     *\\n     * function customizer(objValue, srcValue) {\\n     *   return _.isUndefined(objValue) ? srcValue : objValue;\\n     * }\\n     *\\n     * var defaults = _.partialRight(_.assignWith, customizer);\\n     *\\n     * defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\\n     * // => { 'a': 1, 'b': 2 }\\n     */\\n    var assignWith = createAssigner(function(object, source, srcIndex, customizer) {\\n      copyObject(source, keys(source), object, customizer);\\n    });\\n\\n    /**\\n     * Creates an array of values corresponding to `paths` of `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.0.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {...(string|string[])} [paths] The property paths to pick.\\n     * @returns {Array} Returns the picked values.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': 3 } }, 4] };\\n     *\\n     * _.at(object, ['a[0].b.c', 'a[1]']);\\n     * // => [3, 4]\\n     */\\n    var at = flatRest(baseAt);\\n\\n    /**\\n     * Creates an object that inherits from the `prototype` object. If a\\n     * `properties` object is given, its own enumerable string keyed properties\\n     * are assigned to the created object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.3.0\\n     * @category Object\\n     * @param {Object} prototype The object to inherit from.\\n     * @param {Object} [properties] The properties to assign to the object.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * function Shape() {\\n     *   this.x = 0;\\n     *   this.y = 0;\\n     * }\\n     *\\n     * function Circle() {\\n     *   Shape.call(this);\\n     * }\\n     *\\n     * Circle.prototype = _.create(Shape.prototype, {\\n     *   'constructor': Circle\\n     * });\\n     *\\n     * var circle = new Circle;\\n     * circle instanceof Circle;\\n     * // => true\\n     *\\n     * circle instanceof Shape;\\n     * // => true\\n     */\\n    function create(prototype, properties) {\\n      var result = baseCreate(prototype);\\n      return properties == null ? result : baseAssign(result, properties);\\n    }\\n\\n    /**\\n     * Assigns own and inherited enumerable string keyed properties of source\\n     * objects to the destination object for all destination properties that\\n     * resolve to `undefined`. Source objects are applied from left to right.\\n     * Once a property is set, additional values of the same property are ignored.\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} [sources] The source objects.\\n     * @returns {Object} Returns `object`.\\n     * @see _.defaultsDeep\\n     * @example\\n     *\\n     * _.defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });\\n     * // => { 'a': 1, 'b': 2 }\\n     */\\n    var defaults = baseRest(function(object, sources) {\\n      object = Object(object);\\n\\n      var index = -1;\\n      var length = sources.length;\\n      var guard = length > 2 ? sources[2] : undefined;\\n\\n      if (guard && isIterateeCall(sources[0], sources[1], guard)) {\\n        length = 1;\\n      }\\n\\n      while (++index < length) {\\n        var source = sources[index];\\n        var props = keysIn(source);\\n        var propsIndex = -1;\\n        var propsLength = props.length;\\n\\n        while (++propsIndex < propsLength) {\\n          var key = props[propsIndex];\\n          var value = object[key];\\n\\n          if (value === undefined ||\\n              (eq(value, objectProto[key]) && !hasOwnProperty.call(object, key))) {\\n            object[key] = source[key];\\n          }\\n        }\\n      }\\n\\n      return object;\\n    });\\n\\n    /**\\n     * This method is like `_.defaults` except that it recursively assigns\\n     * default properties.\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.10.0\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} [sources] The source objects.\\n     * @returns {Object} Returns `object`.\\n     * @see _.defaults\\n     * @example\\n     *\\n     * _.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } });\\n     * // => { 'a': { 'b': 2, 'c': 3 } }\\n     */\\n    var defaultsDeep = baseRest(function(args) {\\n      args.push(undefined, customDefaultsMerge);\\n      return apply(mergeWith, undefined, args);\\n    });\\n\\n    /**\\n     * This method is like `_.find` except that it returns the key of the first\\n     * element `predicate` returns truthy for instead of the element itself.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.1.0\\n     * @category Object\\n     * @param {Object} object The object to inspect.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {string|undefined} Returns the key of the matched element,\\n     *  else `undefined`.\\n     * @example\\n     *\\n     * var users = {\\n     *   'barney':  { 'age': 36, 'active': true },\\n     *   'fred':    { 'age': 40, 'active': false },\\n     *   'pebbles': { 'age': 1,  'active': true }\\n     * };\\n     *\\n     * _.findKey(users, function(o) { return o.age < 40; });\\n     * // => 'barney' (iteration order is not guaranteed)\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.findKey(users, { 'age': 1, 'active': true });\\n     * // => 'pebbles'\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.findKey(users, ['active', false]);\\n     * // => 'fred'\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.findKey(users, 'active');\\n     * // => 'barney'\\n     */\\n    function findKey(object, predicate) {\\n      return baseFindKey(object, getIteratee(predicate, 3), baseForOwn);\\n    }\\n\\n    /**\\n     * This method is like `_.findKey` except that it iterates over elements of\\n     * a collection in the opposite order.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Object\\n     * @param {Object} object The object to inspect.\\n     * @param {Function} [predicate=_.identity] The function invoked per iteration.\\n     * @returns {string|undefined} Returns the key of the matched element,\\n     *  else `undefined`.\\n     * @example\\n     *\\n     * var users = {\\n     *   'barney':  { 'age': 36, 'active': true },\\n     *   'fred':    { 'age': 40, 'active': false },\\n     *   'pebbles': { 'age': 1,  'active': true }\\n     * };\\n     *\\n     * _.findLastKey(users, function(o) { return o.age < 40; });\\n     * // => returns 'pebbles' assuming `_.findKey` returns 'barney'\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.findLastKey(users, { 'age': 36, 'active': true });\\n     * // => 'barney'\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.findLastKey(users, ['active', false]);\\n     * // => 'fred'\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.findLastKey(users, 'active');\\n     * // => 'pebbles'\\n     */\\n    function findLastKey(object, predicate) {\\n      return baseFindKey(object, getIteratee(predicate, 3), baseForOwnRight);\\n    }\\n\\n    /**\\n     * Iterates over own and inherited enumerable string keyed properties of an\\n     * object and invokes `iteratee` for each property. The iteratee is invoked\\n     * with three arguments: (value, key, object). Iteratee functions may exit\\n     * iteration early by explicitly returning `false`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.3.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Object} Returns `object`.\\n     * @see _.forInRight\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.forIn(new Foo, function(value, key) {\\n     *   console.log(key);\\n     * });\\n     * // => Logs 'a', 'b', then 'c' (iteration order is not guaranteed).\\n     */\\n    function forIn(object, iteratee) {\\n      return object == null\\n        ? object\\n        : baseFor(object, getIteratee(iteratee, 3), keysIn);\\n    }\\n\\n    /**\\n     * This method is like `_.forIn` except that it iterates over properties of\\n     * `object` in the opposite order.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Object} Returns `object`.\\n     * @see _.forIn\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.forInRight(new Foo, function(value, key) {\\n     *   console.log(key);\\n     * });\\n     * // => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'.\\n     */\\n    function forInRight(object, iteratee) {\\n      return object == null\\n        ? object\\n        : baseForRight(object, getIteratee(iteratee, 3), keysIn);\\n    }\\n\\n    /**\\n     * Iterates over own enumerable string keyed properties of an object and\\n     * invokes `iteratee` for each property. The iteratee is invoked with three\\n     * arguments: (value, key, object). Iteratee functions may exit iteration\\n     * early by explicitly returning `false`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.3.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Object} Returns `object`.\\n     * @see _.forOwnRight\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.forOwn(new Foo, function(value, key) {\\n     *   console.log(key);\\n     * });\\n     * // => Logs 'a' then 'b' (iteration order is not guaranteed).\\n     */\\n    function forOwn(object, iteratee) {\\n      return object && baseForOwn(object, getIteratee(iteratee, 3));\\n    }\\n\\n    /**\\n     * This method is like `_.forOwn` except that it iterates over properties of\\n     * `object` in the opposite order.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.0.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Object} Returns `object`.\\n     * @see _.forOwn\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.forOwnRight(new Foo, function(value, key) {\\n     *   console.log(key);\\n     * });\\n     * // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'.\\n     */\\n    function forOwnRight(object, iteratee) {\\n      return object && baseForOwnRight(object, getIteratee(iteratee, 3));\\n    }\\n\\n    /**\\n     * Creates an array of function property names from own enumerable properties\\n     * of `object`.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The object to inspect.\\n     * @returns {Array} Returns the function names.\\n     * @see _.functionsIn\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = _.constant('a');\\n     *   this.b = _.constant('b');\\n     * }\\n     *\\n     * Foo.prototype.c = _.constant('c');\\n     *\\n     * _.functions(new Foo);\\n     * // => ['a', 'b']\\n     */\\n    function functions(object) {\\n      return object == null ? [] : baseFunctions(object, keys(object));\\n    }\\n\\n    /**\\n     * Creates an array of function property names from own and inherited\\n     * enumerable properties of `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The object to inspect.\\n     * @returns {Array} Returns the function names.\\n     * @see _.functions\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = _.constant('a');\\n     *   this.b = _.constant('b');\\n     * }\\n     *\\n     * Foo.prototype.c = _.constant('c');\\n     *\\n     * _.functionsIn(new Foo);\\n     * // => ['a', 'b', 'c']\\n     */\\n    function functionsIn(object) {\\n      return object == null ? [] : baseFunctions(object, keysIn(object));\\n    }\\n\\n    /**\\n     * Gets the value at `path` of `object`. If the resolved value is\\n     * `undefined`, the `defaultValue` is returned in its place.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.7.0\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path of the property to get.\\n     * @param {*} [defaultValue] The value returned for `undefined` resolved values.\\n     * @returns {*} Returns the resolved value.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': 3 } }] };\\n     *\\n     * _.get(object, 'a[0].b.c');\\n     * // => 3\\n     *\\n     * _.get(object, ['a', '0', 'b', 'c']);\\n     * // => 3\\n     *\\n     * _.get(object, 'a.b.c', 'default');\\n     * // => 'default'\\n     */\\n    function get(object, path, defaultValue) {\\n      var result = object == null ? undefined : baseGet(object, path);\\n      return result === undefined ? defaultValue : result;\\n    }\\n\\n    /**\\n     * Checks if `path` is a direct property of `object`.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path to check.\\n     * @returns {boolean} Returns `true` if `path` exists, else `false`.\\n     * @example\\n     *\\n     * var object = { 'a': { 'b': 2 } };\\n     * var other = _.create({ 'a': _.create({ 'b': 2 }) });\\n     *\\n     * _.has(object, 'a');\\n     * // => true\\n     *\\n     * _.has(object, 'a.b');\\n     * // => true\\n     *\\n     * _.has(object, ['a', 'b']);\\n     * // => true\\n     *\\n     * _.has(other, 'a');\\n     * // => false\\n     */\\n    function has(object, path) {\\n      return object != null && hasPath(object, path, baseHas);\\n    }\\n\\n    /**\\n     * Checks if `path` is a direct or inherited property of `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path to check.\\n     * @returns {boolean} Returns `true` if `path` exists, else `false`.\\n     * @example\\n     *\\n     * var object = _.create({ 'a': _.create({ 'b': 2 }) });\\n     *\\n     * _.hasIn(object, 'a');\\n     * // => true\\n     *\\n     * _.hasIn(object, 'a.b');\\n     * // => true\\n     *\\n     * _.hasIn(object, ['a', 'b']);\\n     * // => true\\n     *\\n     * _.hasIn(object, 'b');\\n     * // => false\\n     */\\n    function hasIn(object, path) {\\n      return object != null && hasPath(object, path, baseHasIn);\\n    }\\n\\n    /**\\n     * Creates an object composed of the inverted keys and values of `object`.\\n     * If `object` contains duplicate values, subsequent values overwrite\\n     * property assignments of previous values.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.7.0\\n     * @category Object\\n     * @param {Object} object The object to invert.\\n     * @returns {Object} Returns the new inverted object.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': 2, 'c': 1 };\\n     *\\n     * _.invert(object);\\n     * // => { '1': 'c', '2': 'b' }\\n     */\\n    var invert = createInverter(function(result, value, key) {\\n      if (value != null &&\\n          typeof value.toString != 'function') {\\n        value = nativeObjectToString.call(value);\\n      }\\n\\n      result[value] = key;\\n    }, constant(identity));\\n\\n    /**\\n     * This method is like `_.invert` except that the inverted object is generated\\n     * from the results of running each element of `object` thru `iteratee`. The\\n     * corresponding inverted value of each inverted key is an array of keys\\n     * responsible for generating the inverted value. The iteratee is invoked\\n     * with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.1.0\\n     * @category Object\\n     * @param {Object} object The object to invert.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {Object} Returns the new inverted object.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': 2, 'c': 1 };\\n     *\\n     * _.invertBy(object);\\n     * // => { '1': ['a', 'c'], '2': ['b'] }\\n     *\\n     * _.invertBy(object, function(value) {\\n     *   return 'group' + value;\\n     * });\\n     * // => { 'group1': ['a', 'c'], 'group2': ['b'] }\\n     */\\n    var invertBy = createInverter(function(result, value, key) {\\n      if (value != null &&\\n          typeof value.toString != 'function') {\\n        value = nativeObjectToString.call(value);\\n      }\\n\\n      if (hasOwnProperty.call(result, value)) {\\n        result[value].push(key);\\n      } else {\\n        result[value] = [key];\\n      }\\n    }, getIteratee);\\n\\n    /**\\n     * Invokes the method at `path` of `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path of the method to invoke.\\n     * @param {...*} [args] The arguments to invoke the method with.\\n     * @returns {*} Returns the result of the invoked method.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': [1, 2, 3, 4] } }] };\\n     *\\n     * _.invoke(object, 'a[0].b.c.slice', 1, 3);\\n     * // => [2, 3]\\n     */\\n    var invoke = baseRest(baseInvoke);\\n\\n    /**\\n     * Creates an array of the own enumerable property names of `object`.\\n     *\\n     * **Note:** Non-object values are coerced to objects. See the\\n     * [ES spec](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\\n     * for more details.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.keys(new Foo);\\n     * // => ['a', 'b'] (iteration order is not guaranteed)\\n     *\\n     * _.keys('hi');\\n     * // => ['0', '1']\\n     */\\n    function keys(object) {\\n      return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);\\n    }\\n\\n    /**\\n     * Creates an array of the own and inherited enumerable property names of `object`.\\n     *\\n     * **Note:** Non-object values are coerced to objects.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property names.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.keysIn(new Foo);\\n     * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\\n     */\\n    function keysIn(object) {\\n      return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);\\n    }\\n\\n    /**\\n     * The opposite of `_.mapValues`; this method creates an object with the\\n     * same values as `object` and keys generated by running each own enumerable\\n     * string keyed property of `object` thru `iteratee`. The iteratee is invoked\\n     * with three arguments: (value, key, object).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.8.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Object} Returns the new mapped object.\\n     * @see _.mapValues\\n     * @example\\n     *\\n     * _.mapKeys({ 'a': 1, 'b': 2 }, function(value, key) {\\n     *   return key + value;\\n     * });\\n     * // => { 'a1': 1, 'b2': 2 }\\n     */\\n    function mapKeys(object, iteratee) {\\n      var result = {};\\n      iteratee = getIteratee(iteratee, 3);\\n\\n      baseForOwn(object, function(value, key, object) {\\n        baseAssignValue(result, iteratee(value, key, object), value);\\n      });\\n      return result;\\n    }\\n\\n    /**\\n     * Creates an object with the same keys as `object` and values generated\\n     * by running each own enumerable string keyed property of `object` thru\\n     * `iteratee`. The iteratee is invoked with three arguments:\\n     * (value, key, object).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.4.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Object} Returns the new mapped object.\\n     * @see _.mapKeys\\n     * @example\\n     *\\n     * var users = {\\n     *   'fred':    { 'user': 'fred',    'age': 40 },\\n     *   'pebbles': { 'user': 'pebbles', 'age': 1 }\\n     * };\\n     *\\n     * _.mapValues(users, function(o) { return o.age; });\\n     * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.mapValues(users, 'age');\\n     * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)\\n     */\\n    function mapValues(object, iteratee) {\\n      var result = {};\\n      iteratee = getIteratee(iteratee, 3);\\n\\n      baseForOwn(object, function(value, key, object) {\\n        baseAssignValue(result, key, iteratee(value, key, object));\\n      });\\n      return result;\\n    }\\n\\n    /**\\n     * This method is like `_.assign` except that it recursively merges own and\\n     * inherited enumerable string keyed properties of source objects into the\\n     * destination object. Source properties that resolve to `undefined` are\\n     * skipped if a destination value exists. Array and plain object properties\\n     * are merged recursively. Other objects and value types are overridden by\\n     * assignment. Source objects are applied from left to right. Subsequent\\n     * sources overwrite property assignments of previous sources.\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.5.0\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} [sources] The source objects.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * var object = {\\n     *   'a': [{ 'b': 2 }, { 'd': 4 }]\\n     * };\\n     *\\n     * var other = {\\n     *   'a': [{ 'c': 3 }, { 'e': 5 }]\\n     * };\\n     *\\n     * _.merge(object, other);\\n     * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] }\\n     */\\n    var merge = createAssigner(function(object, source, srcIndex) {\\n      baseMerge(object, source, srcIndex);\\n    });\\n\\n    /**\\n     * This method is like `_.merge` except that it accepts `customizer` which\\n     * is invoked to produce the merged values of the destination and source\\n     * properties. If `customizer` returns `undefined`, merging is handled by the\\n     * method instead. The `customizer` is invoked with six arguments:\\n     * (objValue, srcValue, key, object, source, stack).\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The destination object.\\n     * @param {...Object} sources The source objects.\\n     * @param {Function} customizer The function to customize assigned values.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * function customizer(objValue, srcValue) {\\n     *   if (_.isArray(objValue)) {\\n     *     return objValue.concat(srcValue);\\n     *   }\\n     * }\\n     *\\n     * var object = { 'a': [1], 'b': [2] };\\n     * var other = { 'a': [3], 'b': [4] };\\n     *\\n     * _.mergeWith(object, other, customizer);\\n     * // => { 'a': [1, 3], 'b': [2, 4] }\\n     */\\n    var mergeWith = createAssigner(function(object, source, srcIndex, customizer) {\\n      baseMerge(object, source, srcIndex, customizer);\\n    });\\n\\n    /**\\n     * The opposite of `_.pick`; this method creates an object composed of the\\n     * own and inherited enumerable property paths of `object` that are not omitted.\\n     *\\n     * **Note:** This method is considerably slower than `_.pick`.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The source object.\\n     * @param {...(string|string[])} [paths] The property paths to omit.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': '2', 'c': 3 };\\n     *\\n     * _.omit(object, ['a', 'c']);\\n     * // => { 'b': '2' }\\n     */\\n    var omit = flatRest(function(object, paths) {\\n      var result = {};\\n      if (object == null) {\\n        return result;\\n      }\\n      var isDeep = false;\\n      paths = arrayMap(paths, function(path) {\\n        path = castPath(path, object);\\n        isDeep || (isDeep = path.length > 1);\\n        return path;\\n      });\\n      copyObject(object, getAllKeysIn(object), result);\\n      if (isDeep) {\\n        result = baseClone(result, CLONE_DEEP_FLAG | CLONE_FLAT_FLAG | CLONE_SYMBOLS_FLAG, customOmitClone);\\n      }\\n      var length = paths.length;\\n      while (length--) {\\n        baseUnset(result, paths[length]);\\n      }\\n      return result;\\n    });\\n\\n    /**\\n     * The opposite of `_.pickBy`; this method creates an object composed of\\n     * the own and inherited enumerable string keyed properties of `object` that\\n     * `predicate` doesn't return truthy for. The predicate is invoked with two\\n     * arguments: (value, key).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The source object.\\n     * @param {Function} [predicate=_.identity] The function invoked per property.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': '2', 'c': 3 };\\n     *\\n     * _.omitBy(object, _.isNumber);\\n     * // => { 'b': '2' }\\n     */\\n    function omitBy(object, predicate) {\\n      return pickBy(object, negate(getIteratee(predicate)));\\n    }\\n\\n    /**\\n     * Creates an object composed of the picked `object` properties.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The source object.\\n     * @param {...(string|string[])} [paths] The property paths to pick.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': '2', 'c': 3 };\\n     *\\n     * _.pick(object, ['a', 'c']);\\n     * // => { 'a': 1, 'c': 3 }\\n     */\\n    var pick = flatRest(function(object, paths) {\\n      return object == null ? {} : basePick(object, paths);\\n    });\\n\\n    /**\\n     * Creates an object composed of the `object` properties `predicate` returns\\n     * truthy for. The predicate is invoked with two arguments: (value, key).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The source object.\\n     * @param {Function} [predicate=_.identity] The function invoked per property.\\n     * @returns {Object} Returns the new object.\\n     * @example\\n     *\\n     * var object = { 'a': 1, 'b': '2', 'c': 3 };\\n     *\\n     * _.pickBy(object, _.isNumber);\\n     * // => { 'a': 1, 'c': 3 }\\n     */\\n    function pickBy(object, predicate) {\\n      if (object == null) {\\n        return {};\\n      }\\n      var props = arrayMap(getAllKeysIn(object), function(prop) {\\n        return [prop];\\n      });\\n      predicate = getIteratee(predicate);\\n      return basePickBy(object, props, function(value, path) {\\n        return predicate(value, path[0]);\\n      });\\n    }\\n\\n    /**\\n     * This method is like `_.get` except that if the resolved value is a\\n     * function it's invoked with the `this` binding of its parent object and\\n     * its result is returned.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @param {Array|string} path The path of the property to resolve.\\n     * @param {*} [defaultValue] The value returned for `undefined` resolved values.\\n     * @returns {*} Returns the resolved value.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c1': 3, 'c2': _.constant(4) } }] };\\n     *\\n     * _.result(object, 'a[0].b.c1');\\n     * // => 3\\n     *\\n     * _.result(object, 'a[0].b.c2');\\n     * // => 4\\n     *\\n     * _.result(object, 'a[0].b.c3', 'default');\\n     * // => 'default'\\n     *\\n     * _.result(object, 'a[0].b.c3', _.constant('default'));\\n     * // => 'default'\\n     */\\n    function result(object, path, defaultValue) {\\n      path = castPath(path, object);\\n\\n      var index = -1,\\n          length = path.length;\\n\\n      // Ensure the loop is entered when path is empty.\\n      if (!length) {\\n        length = 1;\\n        object = undefined;\\n      }\\n      while (++index < length) {\\n        var value = object == null ? undefined : object[toKey(path[index])];\\n        if (value === undefined) {\\n          index = length;\\n          value = defaultValue;\\n        }\\n        object = isFunction(value) ? value.call(object) : value;\\n      }\\n      return object;\\n    }\\n\\n    /**\\n     * Sets the value at `path` of `object`. If a portion of `path` doesn't exist,\\n     * it's created. Arrays are created for missing index properties while objects\\n     * are created for all other missing properties. Use `_.setWith` to customize\\n     * `path` creation.\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.7.0\\n     * @category Object\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to set.\\n     * @param {*} value The value to set.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': 3 } }] };\\n     *\\n     * _.set(object, 'a[0].b.c', 4);\\n     * console.log(object.a[0].b.c);\\n     * // => 4\\n     *\\n     * _.set(object, ['x', '0', 'y', 'z'], 5);\\n     * console.log(object.x[0].y.z);\\n     * // => 5\\n     */\\n    function set(object, path, value) {\\n      return object == null ? object : baseSet(object, path, value);\\n    }\\n\\n    /**\\n     * This method is like `_.set` except that it accepts `customizer` which is\\n     * invoked to produce the objects of `path`.  If `customizer` returns `undefined`\\n     * path creation is handled by the method instead. The `customizer` is invoked\\n     * with three arguments: (nsValue, key, nsObject).\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to set.\\n     * @param {*} value The value to set.\\n     * @param {Function} [customizer] The function to customize assigned values.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * var object = {};\\n     *\\n     * _.setWith(object, '[0][1]', 'a', Object);\\n     * // => { '0': { '1': 'a' } }\\n     */\\n    function setWith(object, path, value, customizer) {\\n      customizer = typeof customizer == 'function' ? customizer : undefined;\\n      return object == null ? object : baseSet(object, path, value, customizer);\\n    }\\n\\n    /**\\n     * Creates an array of own enumerable string keyed-value pairs for `object`\\n     * which can be consumed by `_.fromPairs`. If `object` is a map or set, its\\n     * entries are returned.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @alias entries\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the key-value pairs.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.toPairs(new Foo);\\n     * // => [['a', 1], ['b', 2]] (iteration order is not guaranteed)\\n     */\\n    var toPairs = createToPairs(keys);\\n\\n    /**\\n     * Creates an array of own and inherited enumerable string keyed-value pairs\\n     * for `object` which can be consumed by `_.fromPairs`. If `object` is a map\\n     * or set, its entries are returned.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @alias entriesIn\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the key-value pairs.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.toPairsIn(new Foo);\\n     * // => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed)\\n     */\\n    var toPairsIn = createToPairs(keysIn);\\n\\n    /**\\n     * An alternative to `_.reduce`; this method transforms `object` to a new\\n     * `accumulator` object which is the result of running each of its own\\n     * enumerable string keyed properties thru `iteratee`, with each invocation\\n     * potentially mutating the `accumulator` object. If `accumulator` is not\\n     * provided, a new object with the same `[[Prototype]]` will be used. The\\n     * iteratee is invoked with four arguments: (accumulator, value, key, object).\\n     * Iteratee functions may exit iteration early by explicitly returning `false`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.3.0\\n     * @category Object\\n     * @param {Object} object The object to iterate over.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @param {*} [accumulator] The custom accumulator value.\\n     * @returns {*} Returns the accumulated value.\\n     * @example\\n     *\\n     * _.transform([2, 3, 4], function(result, n) {\\n     *   result.push(n *= n);\\n     *   return n % 2 == 0;\\n     * }, []);\\n     * // => [4, 9]\\n     *\\n     * _.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) {\\n     *   (result[value] || (result[value] = [])).push(key);\\n     * }, {});\\n     * // => { '1': ['a', 'c'], '2': ['b'] }\\n     */\\n    function transform(object, iteratee, accumulator) {\\n      var isArr = isArray(object),\\n          isArrLike = isArr || isBuffer(object) || isTypedArray(object);\\n\\n      iteratee = getIteratee(iteratee, 4);\\n      if (accumulator == null) {\\n        var Ctor = object && object.constructor;\\n        if (isArrLike) {\\n          accumulator = isArr ? new Ctor : [];\\n        }\\n        else if (isObject(object)) {\\n          accumulator = isFunction(Ctor) ? baseCreate(getPrototype(object)) : {};\\n        }\\n        else {\\n          accumulator = {};\\n        }\\n      }\\n      (isArrLike ? arrayEach : baseForOwn)(object, function(value, index, object) {\\n        return iteratee(accumulator, value, index, object);\\n      });\\n      return accumulator;\\n    }\\n\\n    /**\\n     * Removes the property at `path` of `object`.\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Object\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to unset.\\n     * @returns {boolean} Returns `true` if the property is deleted, else `false`.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': 7 } }] };\\n     * _.unset(object, 'a[0].b.c');\\n     * // => true\\n     *\\n     * console.log(object);\\n     * // => { 'a': [{ 'b': {} }] };\\n     *\\n     * _.unset(object, ['a', '0', 'b', 'c']);\\n     * // => true\\n     *\\n     * console.log(object);\\n     * // => { 'a': [{ 'b': {} }] };\\n     */\\n    function unset(object, path) {\\n      return object == null ? true : baseUnset(object, path);\\n    }\\n\\n    /**\\n     * This method is like `_.set` except that accepts `updater` to produce the\\n     * value to set. Use `_.updateWith` to customize `path` creation. The `updater`\\n     * is invoked with one argument: (value).\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.6.0\\n     * @category Object\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to set.\\n     * @param {Function} updater The function to produce the updated value.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * var object = { 'a': [{ 'b': { 'c': 3 } }] };\\n     *\\n     * _.update(object, 'a[0].b.c', function(n) { return n * n; });\\n     * console.log(object.a[0].b.c);\\n     * // => 9\\n     *\\n     * _.update(object, 'x[0].y.z', function(n) { return n ? n + 1 : 0; });\\n     * console.log(object.x[0].y.z);\\n     * // => 0\\n     */\\n    function update(object, path, updater) {\\n      return object == null ? object : baseUpdate(object, path, castFunction(updater));\\n    }\\n\\n    /**\\n     * This method is like `_.update` except that it accepts `customizer` which is\\n     * invoked to produce the objects of `path`.  If `customizer` returns `undefined`\\n     * path creation is handled by the method instead. The `customizer` is invoked\\n     * with three arguments: (nsValue, key, nsObject).\\n     *\\n     * **Note:** This method mutates `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.6.0\\n     * @category Object\\n     * @param {Object} object The object to modify.\\n     * @param {Array|string} path The path of the property to set.\\n     * @param {Function} updater The function to produce the updated value.\\n     * @param {Function} [customizer] The function to customize assigned values.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * var object = {};\\n     *\\n     * _.updateWith(object, '[0][1]', _.constant('a'), Object);\\n     * // => { '0': { '1': 'a' } }\\n     */\\n    function updateWith(object, path, updater, customizer) {\\n      customizer = typeof customizer == 'function' ? customizer : undefined;\\n      return object == null ? object : baseUpdate(object, path, castFunction(updater), customizer);\\n    }\\n\\n    /**\\n     * Creates an array of the own enumerable string keyed property values of `object`.\\n     *\\n     * **Note:** Non-object values are coerced to objects.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property values.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.values(new Foo);\\n     * // => [1, 2] (iteration order is not guaranteed)\\n     *\\n     * _.values('hi');\\n     * // => ['h', 'i']\\n     */\\n    function values(object) {\\n      return object == null ? [] : baseValues(object, keys(object));\\n    }\\n\\n    /**\\n     * Creates an array of the own and inherited enumerable string keyed property\\n     * values of `object`.\\n     *\\n     * **Note:** Non-object values are coerced to objects.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Object\\n     * @param {Object} object The object to query.\\n     * @returns {Array} Returns the array of property values.\\n     * @example\\n     *\\n     * function Foo() {\\n     *   this.a = 1;\\n     *   this.b = 2;\\n     * }\\n     *\\n     * Foo.prototype.c = 3;\\n     *\\n     * _.valuesIn(new Foo);\\n     * // => [1, 2, 3] (iteration order is not guaranteed)\\n     */\\n    function valuesIn(object) {\\n      return object == null ? [] : baseValues(object, keysIn(object));\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Clamps `number` within the inclusive `lower` and `upper` bounds.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Number\\n     * @param {number} number The number to clamp.\\n     * @param {number} [lower] The lower bound.\\n     * @param {number} upper The upper bound.\\n     * @returns {number} Returns the clamped number.\\n     * @example\\n     *\\n     * _.clamp(-10, -5, 5);\\n     * // => -5\\n     *\\n     * _.clamp(10, -5, 5);\\n     * // => 5\\n     */\\n    function clamp(number, lower, upper) {\\n      if (upper === undefined) {\\n        upper = lower;\\n        lower = undefined;\\n      }\\n      if (upper !== undefined) {\\n        upper = toNumber(upper);\\n        upper = upper === upper ? upper : 0;\\n      }\\n      if (lower !== undefined) {\\n        lower = toNumber(lower);\\n        lower = lower === lower ? lower : 0;\\n      }\\n      return baseClamp(toNumber(number), lower, upper);\\n    }\\n\\n    /**\\n     * Checks if `n` is between `start` and up to, but not including, `end`. If\\n     * `end` is not specified, it's set to `start` with `start` then set to `0`.\\n     * If `start` is greater than `end` the params are swapped to support\\n     * negative ranges.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.3.0\\n     * @category Number\\n     * @param {number} number The number to check.\\n     * @param {number} [start=0] The start of the range.\\n     * @param {number} end The end of the range.\\n     * @returns {boolean} Returns `true` if `number` is in the range, else `false`.\\n     * @see _.range, _.rangeRight\\n     * @example\\n     *\\n     * _.inRange(3, 2, 4);\\n     * // => true\\n     *\\n     * _.inRange(4, 8);\\n     * // => true\\n     *\\n     * _.inRange(4, 2);\\n     * // => false\\n     *\\n     * _.inRange(2, 2);\\n     * // => false\\n     *\\n     * _.inRange(1.2, 2);\\n     * // => true\\n     *\\n     * _.inRange(5.2, 4);\\n     * // => false\\n     *\\n     * _.inRange(-3, -2, -6);\\n     * // => true\\n     */\\n    function inRange(number, start, end) {\\n      start = toFinite(start);\\n      if (end === undefined) {\\n        end = start;\\n        start = 0;\\n      } else {\\n        end = toFinite(end);\\n      }\\n      number = toNumber(number);\\n      return baseInRange(number, start, end);\\n    }\\n\\n    /**\\n     * Produces a random number between the inclusive `lower` and `upper` bounds.\\n     * If only one argument is provided a number between `0` and the given number\\n     * is returned. If `floating` is `true`, or either `lower` or `upper` are\\n     * floats, a floating-point number is returned instead of an integer.\\n     *\\n     * **Note:** JavaScript follows the IEEE-754 standard for resolving\\n     * floating-point values which can produce unexpected results.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.7.0\\n     * @category Number\\n     * @param {number} [lower=0] The lower bound.\\n     * @param {number} [upper=1] The upper bound.\\n     * @param {boolean} [floating] Specify returning a floating-point number.\\n     * @returns {number} Returns the random number.\\n     * @example\\n     *\\n     * _.random(0, 5);\\n     * // => an integer between 0 and 5\\n     *\\n     * _.random(5);\\n     * // => also an integer between 0 and 5\\n     *\\n     * _.random(5, true);\\n     * // => a floating-point number between 0 and 5\\n     *\\n     * _.random(1.2, 5.2);\\n     * // => a floating-point number between 1.2 and 5.2\\n     */\\n    function random(lower, upper, floating) {\\n      if (floating && typeof floating != 'boolean' && isIterateeCall(lower, upper, floating)) {\\n        upper = floating = undefined;\\n      }\\n      if (floating === undefined) {\\n        if (typeof upper == 'boolean') {\\n          floating = upper;\\n          upper = undefined;\\n        }\\n        else if (typeof lower == 'boolean') {\\n          floating = lower;\\n          lower = undefined;\\n        }\\n      }\\n      if (lower === undefined && upper === undefined) {\\n        lower = 0;\\n        upper = 1;\\n      }\\n      else {\\n        lower = toFinite(lower);\\n        if (upper === undefined) {\\n          upper = lower;\\n          lower = 0;\\n        } else {\\n          upper = toFinite(upper);\\n        }\\n      }\\n      if (lower > upper) {\\n        var temp = lower;\\n        lower = upper;\\n        upper = temp;\\n      }\\n      if (floating || lower % 1 || upper % 1) {\\n        var rand = nativeRandom();\\n        return nativeMin(lower + (rand * (upper - lower + freeParseFloat('1e-' + ((rand + '').length - 1)))), upper);\\n      }\\n      return baseRandom(lower, upper);\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the camel cased string.\\n     * @example\\n     *\\n     * _.camelCase('Foo Bar');\\n     * // => 'fooBar'\\n     *\\n     * _.camelCase('--foo-bar--');\\n     * // => 'fooBar'\\n     *\\n     * _.camelCase('__FOO_BAR__');\\n     * // => 'fooBar'\\n     */\\n    var camelCase = createCompounder(function(result, word, index) {\\n      word = word.toLowerCase();\\n      return result + (index ? capitalize(word) : word);\\n    });\\n\\n    /**\\n     * Converts the first character of `string` to upper case and the remaining\\n     * to lower case.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to capitalize.\\n     * @returns {string} Returns the capitalized string.\\n     * @example\\n     *\\n     * _.capitalize('FRED');\\n     * // => 'Fred'\\n     */\\n    function capitalize(string) {\\n      return upperFirst(toString(string).toLowerCase());\\n    }\\n\\n    /**\\n     * Deburrs `string` by converting\\n     * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table)\\n     * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A)\\n     * letters to basic Latin letters and removing\\n     * [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to deburr.\\n     * @returns {string} Returns the deburred string.\\n     * @example\\n     *\\n     * _.deburr('déjà vu');\\n     * // => 'deja vu'\\n     */\\n    function deburr(string) {\\n      string = toString(string);\\n      return string && string.replace(reLatin, deburrLetter).replace(reComboMark, '');\\n    }\\n\\n    /**\\n     * Checks if `string` ends with the given target string.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to inspect.\\n     * @param {string} [target] The string to search for.\\n     * @param {number} [position=string.length] The position to search up to.\\n     * @returns {boolean} Returns `true` if `string` ends with `target`,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.endsWith('abc', 'c');\\n     * // => true\\n     *\\n     * _.endsWith('abc', 'b');\\n     * // => false\\n     *\\n     * _.endsWith('abc', 'b', 2);\\n     * // => true\\n     */\\n    function endsWith(string, target, position) {\\n      string = toString(string);\\n      target = baseToString(target);\\n\\n      var length = string.length;\\n      position = position === undefined\\n        ? length\\n        : baseClamp(toInteger(position), 0, length);\\n\\n      var end = position;\\n      position -= target.length;\\n      return position >= 0 && string.slice(position, end) == target;\\n    }\\n\\n    /**\\n     * Converts the characters \\\"&\\\", \\\"<\\\", \\\">\\\", '\\\"', and \\\"'\\\" in `string` to their\\n     * corresponding HTML entities.\\n     *\\n     * **Note:** No other characters are escaped. To escape additional\\n     * characters use a third-party library like [_he_](https://mths.be/he).\\n     *\\n     * Though the \\\">\\\" character is escaped for symmetry, characters like\\n     * \\\">\\\" and \\\"/\\\" don't need escaping in HTML and have no special meaning\\n     * unless they're part of a tag or unquoted attribute value. See\\n     * [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands)\\n     * (under \\\"semi-related fun fact\\\") for more details.\\n     *\\n     * When working with HTML you should always\\n     * [quote attribute values](http://wonko.com/post/html-escaping) to reduce\\n     * XSS vectors.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category String\\n     * @param {string} [string=''] The string to escape.\\n     * @returns {string} Returns the escaped string.\\n     * @example\\n     *\\n     * _.escape('fred, barney, & pebbles');\\n     * // => 'fred, barney, &amp; pebbles'\\n     */\\n    function escape(string) {\\n      string = toString(string);\\n      return (string && reHasUnescapedHtml.test(string))\\n        ? string.replace(reUnescapedHtml, escapeHtmlChar)\\n        : string;\\n    }\\n\\n    /**\\n     * Escapes the `RegExp` special characters \\\"^\\\", \\\"$\\\", \\\"\\\\\\\", \\\".\\\", \\\"*\\\", \\\"+\\\",\\n     * \\\"?\\\", \\\"(\\\", \\\")\\\", \\\"[\\\", \\\"]\\\", \\\"{\\\", \\\"}\\\", and \\\"|\\\" in `string`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to escape.\\n     * @returns {string} Returns the escaped string.\\n     * @example\\n     *\\n     * _.escapeRegExp('[lodash](https://lodash.com/)');\\n     * // => '\\\\[lodash\\\\]\\\\(https://lodash\\\\.com/\\\\)'\\n     */\\n    function escapeRegExp(string) {\\n      string = toString(string);\\n      return (string && reHasRegExpChar.test(string))\\n        ? string.replace(reRegExpChar, '\\\\\\\\$&')\\n        : string;\\n    }\\n\\n    /**\\n     * Converts `string` to\\n     * [kebab case](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the kebab cased string.\\n     * @example\\n     *\\n     * _.kebabCase('Foo Bar');\\n     * // => 'foo-bar'\\n     *\\n     * _.kebabCase('fooBar');\\n     * // => 'foo-bar'\\n     *\\n     * _.kebabCase('__FOO_BAR__');\\n     * // => 'foo-bar'\\n     */\\n    var kebabCase = createCompounder(function(result, word, index) {\\n      return result + (index ? '-' : '') + word.toLowerCase();\\n    });\\n\\n    /**\\n     * Converts `string`, as space separated words, to lower case.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the lower cased string.\\n     * @example\\n     *\\n     * _.lowerCase('--Foo-Bar--');\\n     * // => 'foo bar'\\n     *\\n     * _.lowerCase('fooBar');\\n     * // => 'foo bar'\\n     *\\n     * _.lowerCase('__FOO_BAR__');\\n     * // => 'foo bar'\\n     */\\n    var lowerCase = createCompounder(function(result, word, index) {\\n      return result + (index ? ' ' : '') + word.toLowerCase();\\n    });\\n\\n    /**\\n     * Converts the first character of `string` to lower case.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the converted string.\\n     * @example\\n     *\\n     * _.lowerFirst('Fred');\\n     * // => 'fred'\\n     *\\n     * _.lowerFirst('FRED');\\n     * // => 'fRED'\\n     */\\n    var lowerFirst = createCaseFirst('toLowerCase');\\n\\n    /**\\n     * Pads `string` on the left and right sides if it's shorter than `length`.\\n     * Padding characters are truncated if they can't be evenly divided by `length`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to pad.\\n     * @param {number} [length=0] The padding length.\\n     * @param {string} [chars=' '] The string used as padding.\\n     * @returns {string} Returns the padded string.\\n     * @example\\n     *\\n     * _.pad('abc', 8);\\n     * // => '  abc   '\\n     *\\n     * _.pad('abc', 8, '_-');\\n     * // => '_-abc_-_'\\n     *\\n     * _.pad('abc', 3);\\n     * // => 'abc'\\n     */\\n    function pad(string, length, chars) {\\n      string = toString(string);\\n      length = toInteger(length);\\n\\n      var strLength = length ? stringSize(string) : 0;\\n      if (!length || strLength >= length) {\\n        return string;\\n      }\\n      var mid = (length - strLength) / 2;\\n      return (\\n        createPadding(nativeFloor(mid), chars) +\\n        string +\\n        createPadding(nativeCeil(mid), chars)\\n      );\\n    }\\n\\n    /**\\n     * Pads `string` on the right side if it's shorter than `length`. Padding\\n     * characters are truncated if they exceed `length`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to pad.\\n     * @param {number} [length=0] The padding length.\\n     * @param {string} [chars=' '] The string used as padding.\\n     * @returns {string} Returns the padded string.\\n     * @example\\n     *\\n     * _.padEnd('abc', 6);\\n     * // => 'abc   '\\n     *\\n     * _.padEnd('abc', 6, '_-');\\n     * // => 'abc_-_'\\n     *\\n     * _.padEnd('abc', 3);\\n     * // => 'abc'\\n     */\\n    function padEnd(string, length, chars) {\\n      string = toString(string);\\n      length = toInteger(length);\\n\\n      var strLength = length ? stringSize(string) : 0;\\n      return (length && strLength < length)\\n        ? (string + createPadding(length - strLength, chars))\\n        : string;\\n    }\\n\\n    /**\\n     * Pads `string` on the left side if it's shorter than `length`. Padding\\n     * characters are truncated if they exceed `length`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to pad.\\n     * @param {number} [length=0] The padding length.\\n     * @param {string} [chars=' '] The string used as padding.\\n     * @returns {string} Returns the padded string.\\n     * @example\\n     *\\n     * _.padStart('abc', 6);\\n     * // => '   abc'\\n     *\\n     * _.padStart('abc', 6, '_-');\\n     * // => '_-_abc'\\n     *\\n     * _.padStart('abc', 3);\\n     * // => 'abc'\\n     */\\n    function padStart(string, length, chars) {\\n      string = toString(string);\\n      length = toInteger(length);\\n\\n      var strLength = length ? stringSize(string) : 0;\\n      return (length && strLength < length)\\n        ? (createPadding(length - strLength, chars) + string)\\n        : string;\\n    }\\n\\n    /**\\n     * Converts `string` to an integer of the specified radix. If `radix` is\\n     * `undefined` or `0`, a `radix` of `10` is used unless `value` is a\\n     * hexadecimal, in which case a `radix` of `16` is used.\\n     *\\n     * **Note:** This method aligns with the\\n     * [ES5 implementation](https://es5.github.io/#x15.1.2.2) of `parseInt`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 1.1.0\\n     * @category String\\n     * @param {string} string The string to convert.\\n     * @param {number} [radix=10] The radix to interpret `value` by.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {number} Returns the converted integer.\\n     * @example\\n     *\\n     * _.parseInt('08');\\n     * // => 8\\n     *\\n     * _.map(['6', '08', '10'], _.parseInt);\\n     * // => [6, 8, 10]\\n     */\\n    function parseInt(string, radix, guard) {\\n      if (guard || radix == null) {\\n        radix = 0;\\n      } else if (radix) {\\n        radix = +radix;\\n      }\\n      return nativeParseInt(toString(string).replace(reTrimStart, ''), radix || 0);\\n    }\\n\\n    /**\\n     * Repeats the given string `n` times.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to repeat.\\n     * @param {number} [n=1] The number of times to repeat the string.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {string} Returns the repeated string.\\n     * @example\\n     *\\n     * _.repeat('*', 3);\\n     * // => '***'\\n     *\\n     * _.repeat('abc', 2);\\n     * // => 'abcabc'\\n     *\\n     * _.repeat('abc', 0);\\n     * // => ''\\n     */\\n    function repeat(string, n, guard) {\\n      if ((guard ? isIterateeCall(string, n, guard) : n === undefined)) {\\n        n = 1;\\n      } else {\\n        n = toInteger(n);\\n      }\\n      return baseRepeat(toString(string), n);\\n    }\\n\\n    /**\\n     * Replaces matches for `pattern` in `string` with `replacement`.\\n     *\\n     * **Note:** This method is based on\\n     * [`String#replace`](https://mdn.io/String/replace).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to modify.\\n     * @param {RegExp|string} pattern The pattern to replace.\\n     * @param {Function|string} replacement The match replacement.\\n     * @returns {string} Returns the modified string.\\n     * @example\\n     *\\n     * _.replace('Hi Fred', 'Fred', 'Barney');\\n     * // => 'Hi Barney'\\n     */\\n    function replace() {\\n      var args = arguments,\\n          string = toString(args[0]);\\n\\n      return args.length < 3 ? string : string.replace(args[1], args[2]);\\n    }\\n\\n    /**\\n     * Converts `string` to\\n     * [snake case](https://en.wikipedia.org/wiki/Snake_case).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the snake cased string.\\n     * @example\\n     *\\n     * _.snakeCase('Foo Bar');\\n     * // => 'foo_bar'\\n     *\\n     * _.snakeCase('fooBar');\\n     * // => 'foo_bar'\\n     *\\n     * _.snakeCase('--FOO-BAR--');\\n     * // => 'foo_bar'\\n     */\\n    var snakeCase = createCompounder(function(result, word, index) {\\n      return result + (index ? '_' : '') + word.toLowerCase();\\n    });\\n\\n    /**\\n     * Splits `string` by `separator`.\\n     *\\n     * **Note:** This method is based on\\n     * [`String#split`](https://mdn.io/String/split).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to split.\\n     * @param {RegExp|string} separator The separator pattern to split by.\\n     * @param {number} [limit] The length to truncate results to.\\n     * @returns {Array} Returns the string segments.\\n     * @example\\n     *\\n     * _.split('a-b-c', '-', 2);\\n     * // => ['a', 'b']\\n     */\\n    function split(string, separator, limit) {\\n      if (limit && typeof limit != 'number' && isIterateeCall(string, separator, limit)) {\\n        separator = limit = undefined;\\n      }\\n      limit = limit === undefined ? MAX_ARRAY_LENGTH : limit >>> 0;\\n      if (!limit) {\\n        return [];\\n      }\\n      string = toString(string);\\n      if (string && (\\n            typeof separator == 'string' ||\\n            (separator != null && !isRegExp(separator))\\n          )) {\\n        separator = baseToString(separator);\\n        if (!separator && hasUnicode(string)) {\\n          return castSlice(stringToArray(string), 0, limit);\\n        }\\n      }\\n      return string.split(separator, limit);\\n    }\\n\\n    /**\\n     * Converts `string` to\\n     * [start case](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.1.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the start cased string.\\n     * @example\\n     *\\n     * _.startCase('--foo-bar--');\\n     * // => 'Foo Bar'\\n     *\\n     * _.startCase('fooBar');\\n     * // => 'Foo Bar'\\n     *\\n     * _.startCase('__FOO_BAR__');\\n     * // => 'FOO BAR'\\n     */\\n    var startCase = createCompounder(function(result, word, index) {\\n      return result + (index ? ' ' : '') + upperFirst(word);\\n    });\\n\\n    /**\\n     * Checks if `string` starts with the given target string.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to inspect.\\n     * @param {string} [target] The string to search for.\\n     * @param {number} [position=0] The position to search from.\\n     * @returns {boolean} Returns `true` if `string` starts with `target`,\\n     *  else `false`.\\n     * @example\\n     *\\n     * _.startsWith('abc', 'a');\\n     * // => true\\n     *\\n     * _.startsWith('abc', 'b');\\n     * // => false\\n     *\\n     * _.startsWith('abc', 'b', 1);\\n     * // => true\\n     */\\n    function startsWith(string, target, position) {\\n      string = toString(string);\\n      position = position == null\\n        ? 0\\n        : baseClamp(toInteger(position), 0, string.length);\\n\\n      target = baseToString(target);\\n      return string.slice(position, position + target.length) == target;\\n    }\\n\\n    /**\\n     * Creates a compiled template function that can interpolate data properties\\n     * in \\\"interpolate\\\" delimiters, HTML-escape interpolated data properties in\\n     * \\\"escape\\\" delimiters, and execute JavaScript in \\\"evaluate\\\" delimiters. Data\\n     * properties may be accessed as free variables in the template. If a setting\\n     * object is given, it takes precedence over `_.templateSettings` values.\\n     *\\n     * **Note:** In the development build `_.template` utilizes\\n     * [sourceURLs](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl)\\n     * for easier debugging.\\n     *\\n     * For more information on precompiling templates see\\n     * [lodash's custom builds documentation](https://lodash.com/custom-builds).\\n     *\\n     * For more information on Chrome extension sandboxes see\\n     * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval).\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category String\\n     * @param {string} [string=''] The template string.\\n     * @param {Object} [options={}] The options object.\\n     * @param {RegExp} [options.escape=_.templateSettings.escape]\\n     *  The HTML \\\"escape\\\" delimiter.\\n     * @param {RegExp} [options.evaluate=_.templateSettings.evaluate]\\n     *  The \\\"evaluate\\\" delimiter.\\n     * @param {Object} [options.imports=_.templateSettings.imports]\\n     *  An object to import into the template as free variables.\\n     * @param {RegExp} [options.interpolate=_.templateSettings.interpolate]\\n     *  The \\\"interpolate\\\" delimiter.\\n     * @param {string} [options.sourceURL='lodash.templateSources[n]']\\n     *  The sourceURL of the compiled template.\\n     * @param {string} [options.variable='obj']\\n     *  The data object variable name.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Function} Returns the compiled template function.\\n     * @example\\n     *\\n     * // Use the \\\"interpolate\\\" delimiter to create a compiled template.\\n     * var compiled = _.template('hello <%= user %>!');\\n     * compiled({ 'user': 'fred' });\\n     * // => 'hello fred!'\\n     *\\n     * // Use the HTML \\\"escape\\\" delimiter to escape data property values.\\n     * var compiled = _.template('<b><%- value %></b>');\\n     * compiled({ 'value': '<script>' });\\n     * // => '<b>&lt;script&gt;</b>'\\n     *\\n     * // Use the \\\"evaluate\\\" delimiter to execute JavaScript and generate HTML.\\n     * var compiled = _.template('<% _.forEach(users, function(user) { %><li><%- user %></li><% }); %>');\\n     * compiled({ 'users': ['fred', 'barney'] });\\n     * // => '<li>fred</li><li>barney</li>'\\n     *\\n     * // Use the internal `print` function in \\\"evaluate\\\" delimiters.\\n     * var compiled = _.template('<% print(\\\"hello \\\" + user); %>!');\\n     * compiled({ 'user': 'barney' });\\n     * // => 'hello barney!'\\n     *\\n     * // Use the ES template literal delimiter as an \\\"interpolate\\\" delimiter.\\n     * // Disable support by replacing the \\\"interpolate\\\" delimiter.\\n     * var compiled = _.template('hello ${ user }!');\\n     * compiled({ 'user': 'pebbles' });\\n     * // => 'hello pebbles!'\\n     *\\n     * // Use backslashes to treat delimiters as plain text.\\n     * var compiled = _.template('<%= \\\"\\\\\\\\<%- value %\\\\\\\\>\\\" %>');\\n     * compiled({ 'value': 'ignored' });\\n     * // => '<%- value %>'\\n     *\\n     * // Use the `imports` option to import `jQuery` as `jq`.\\n     * var text = '<% jq.each(users, function(user) { %><li><%- user %></li><% }); %>';\\n     * var compiled = _.template(text, { 'imports': { 'jq': jQuery } });\\n     * compiled({ 'users': ['fred', 'barney'] });\\n     * // => '<li>fred</li><li>barney</li>'\\n     *\\n     * // Use the `sourceURL` option to specify a custom sourceURL for the template.\\n     * var compiled = _.template('hello <%= user %>!', { 'sourceURL': '/basic/greeting.jst' });\\n     * compiled(data);\\n     * // => Find the source of \\\"greeting.jst\\\" under the Sources tab or Resources panel of the web inspector.\\n     *\\n     * // Use the `variable` option to ensure a with-statement isn't used in the compiled template.\\n     * var compiled = _.template('hi <%= data.user %>!', { 'variable': 'data' });\\n     * compiled.source;\\n     * // => function(data) {\\n     * //   var __t, __p = '';\\n     * //   __p += 'hi ' + ((__t = ( data.user )) == null ? '' : __t) + '!';\\n     * //   return __p;\\n     * // }\\n     *\\n     * // Use custom template delimiters.\\n     * _.templateSettings.interpolate = /{{([\\\\s\\\\S]+?)}}/g;\\n     * var compiled = _.template('hello {{ user }}!');\\n     * compiled({ 'user': 'mustache' });\\n     * // => 'hello mustache!'\\n     *\\n     * // Use the `source` property to inline compiled templates for meaningful\\n     * // line numbers in error messages and stack traces.\\n     * fs.writeFileSync(path.join(process.cwd(), 'jst.js'), '\\\\\\n     *   var JST = {\\\\\\n     *     \\\"main\\\": ' + _.template(mainText).source + '\\\\\\n     *   };\\\\\\n     * ');\\n     */\\n    function template(string, options, guard) {\\n      // Based on John Resig's `tmpl` implementation\\n      // (http://ejohn.org/blog/javascript-micro-templating/)\\n      // and Laura Doktorova's doT.js (https://github.com/olado/doT).\\n      var settings = lodash.templateSettings;\\n\\n      if (guard && isIterateeCall(string, options, guard)) {\\n        options = undefined;\\n      }\\n      string = toString(string);\\n      options = assignInWith({}, options, settings, customDefaultsAssignIn);\\n\\n      var imports = assignInWith({}, options.imports, settings.imports, customDefaultsAssignIn),\\n          importsKeys = keys(imports),\\n          importsValues = baseValues(imports, importsKeys);\\n\\n      var isEscaping,\\n          isEvaluating,\\n          index = 0,\\n          interpolate = options.interpolate || reNoMatch,\\n          source = \\\"__p += '\\\";\\n\\n      // Compile the regexp to match each delimiter.\\n      var reDelimiters = RegExp(\\n        (options.escape || reNoMatch).source + '|' +\\n        interpolate.source + '|' +\\n        (interpolate === reInterpolate ? reEsTemplate : reNoMatch).source + '|' +\\n        (options.evaluate || reNoMatch).source + '|$'\\n      , 'g');\\n\\n      // Use a sourceURL for easier debugging.\\n      // The sourceURL gets injected into the source that's eval-ed, so be careful\\n      // to normalize all kinds of whitespace, so e.g. newlines (and unicode versions of it) can't sneak in\\n      // and escape the comment, thus injecting code that gets evaled.\\n      var sourceURL = '//# sourceURL=' +\\n        (hasOwnProperty.call(options, 'sourceURL')\\n          ? (options.sourceURL + '').replace(/\\\\s/g, ' ')\\n          : ('lodash.templateSources[' + (++templateCounter) + ']')\\n        ) + '\\\\n';\\n\\n      string.replace(reDelimiters, function(match, escapeValue, interpolateValue, esTemplateValue, evaluateValue, offset) {\\n        interpolateValue || (interpolateValue = esTemplateValue);\\n\\n        // Escape characters that can't be included in string literals.\\n        source += string.slice(index, offset).replace(reUnescapedString, escapeStringChar);\\n\\n        // Replace delimiters with snippets.\\n        if (escapeValue) {\\n          isEscaping = true;\\n          source += \\\"' +\\\\n__e(\\\" + escapeValue + \\\") +\\\\n'\\\";\\n        }\\n        if (evaluateValue) {\\n          isEvaluating = true;\\n          source += \\\"';\\\\n\\\" + evaluateValue + \\\";\\\\n__p += '\\\";\\n        }\\n        if (interpolateValue) {\\n          source += \\\"' +\\\\n((__t = (\\\" + interpolateValue + \\\")) == null ? '' : __t) +\\\\n'\\\";\\n        }\\n        index = offset + match.length;\\n\\n        // The JS engine embedded in Adobe products needs `match` returned in\\n        // order to produce the correct `offset` value.\\n        return match;\\n      });\\n\\n      source += \\\"';\\\\n\\\";\\n\\n      // If `variable` is not specified wrap a with-statement around the generated\\n      // code to add the data object to the top of the scope chain.\\n      var variable = hasOwnProperty.call(options, 'variable') && options.variable;\\n      if (!variable) {\\n        source = 'with (obj) {\\\\n' + source + '\\\\n}\\\\n';\\n      }\\n      // Cleanup code by stripping empty strings.\\n      source = (isEvaluating ? source.replace(reEmptyStringLeading, '') : source)\\n        .replace(reEmptyStringMiddle, '$1')\\n        .replace(reEmptyStringTrailing, '$1;');\\n\\n      // Frame code as the function body.\\n      source = 'function(' + (variable || 'obj') + ') {\\\\n' +\\n        (variable\\n          ? ''\\n          : 'obj || (obj = {});\\\\n'\\n        ) +\\n        \\\"var __t, __p = ''\\\" +\\n        (isEscaping\\n           ? ', __e = _.escape'\\n           : ''\\n        ) +\\n        (isEvaluating\\n          ? ', __j = Array.prototype.join;\\\\n' +\\n            \\\"function print() { __p += __j.call(arguments, '') }\\\\n\\\"\\n          : ';\\\\n'\\n        ) +\\n        source +\\n        'return __p\\\\n}';\\n\\n      var result = attempt(function() {\\n        return Function(importsKeys, sourceURL + 'return ' + source)\\n          .apply(undefined, importsValues);\\n      });\\n\\n      // Provide the compiled function's source by its `toString` method or\\n      // the `source` property as a convenience for inlining compiled templates.\\n      result.source = source;\\n      if (isError(result)) {\\n        throw result;\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Converts `string`, as a whole, to lower case just like\\n     * [String#toLowerCase](https://mdn.io/toLowerCase).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the lower cased string.\\n     * @example\\n     *\\n     * _.toLower('--Foo-Bar--');\\n     * // => '--foo-bar--'\\n     *\\n     * _.toLower('fooBar');\\n     * // => 'foobar'\\n     *\\n     * _.toLower('__FOO_BAR__');\\n     * // => '__foo_bar__'\\n     */\\n    function toLower(value) {\\n      return toString(value).toLowerCase();\\n    }\\n\\n    /**\\n     * Converts `string`, as a whole, to upper case just like\\n     * [String#toUpperCase](https://mdn.io/toUpperCase).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the upper cased string.\\n     * @example\\n     *\\n     * _.toUpper('--foo-bar--');\\n     * // => '--FOO-BAR--'\\n     *\\n     * _.toUpper('fooBar');\\n     * // => 'FOOBAR'\\n     *\\n     * _.toUpper('__foo_bar__');\\n     * // => '__FOO_BAR__'\\n     */\\n    function toUpper(value) {\\n      return toString(value).toUpperCase();\\n    }\\n\\n    /**\\n     * Removes leading and trailing whitespace or specified characters from `string`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to trim.\\n     * @param {string} [chars=whitespace] The characters to trim.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {string} Returns the trimmed string.\\n     * @example\\n     *\\n     * _.trim('  abc  ');\\n     * // => 'abc'\\n     *\\n     * _.trim('-_-abc-_-', '_-');\\n     * // => 'abc'\\n     *\\n     * _.map(['  foo  ', '  bar  '], _.trim);\\n     * // => ['foo', 'bar']\\n     */\\n    function trim(string, chars, guard) {\\n      string = toString(string);\\n      if (string && (guard || chars === undefined)) {\\n        return string.replace(reTrim, '');\\n      }\\n      if (!string || !(chars = baseToString(chars))) {\\n        return string;\\n      }\\n      var strSymbols = stringToArray(string),\\n          chrSymbols = stringToArray(chars),\\n          start = charsStartIndex(strSymbols, chrSymbols),\\n          end = charsEndIndex(strSymbols, chrSymbols) + 1;\\n\\n      return castSlice(strSymbols, start, end).join('');\\n    }\\n\\n    /**\\n     * Removes trailing whitespace or specified characters from `string`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to trim.\\n     * @param {string} [chars=whitespace] The characters to trim.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {string} Returns the trimmed string.\\n     * @example\\n     *\\n     * _.trimEnd('  abc  ');\\n     * // => '  abc'\\n     *\\n     * _.trimEnd('-_-abc-_-', '_-');\\n     * // => '-_-abc'\\n     */\\n    function trimEnd(string, chars, guard) {\\n      string = toString(string);\\n      if (string && (guard || chars === undefined)) {\\n        return string.replace(reTrimEnd, '');\\n      }\\n      if (!string || !(chars = baseToString(chars))) {\\n        return string;\\n      }\\n      var strSymbols = stringToArray(string),\\n          end = charsEndIndex(strSymbols, stringToArray(chars)) + 1;\\n\\n      return castSlice(strSymbols, 0, end).join('');\\n    }\\n\\n    /**\\n     * Removes leading whitespace or specified characters from `string`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to trim.\\n     * @param {string} [chars=whitespace] The characters to trim.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {string} Returns the trimmed string.\\n     * @example\\n     *\\n     * _.trimStart('  abc  ');\\n     * // => 'abc  '\\n     *\\n     * _.trimStart('-_-abc-_-', '_-');\\n     * // => 'abc-_-'\\n     */\\n    function trimStart(string, chars, guard) {\\n      string = toString(string);\\n      if (string && (guard || chars === undefined)) {\\n        return string.replace(reTrimStart, '');\\n      }\\n      if (!string || !(chars = baseToString(chars))) {\\n        return string;\\n      }\\n      var strSymbols = stringToArray(string),\\n          start = charsStartIndex(strSymbols, stringToArray(chars));\\n\\n      return castSlice(strSymbols, start).join('');\\n    }\\n\\n    /**\\n     * Truncates `string` if it's longer than the given maximum string length.\\n     * The last characters of the truncated string are replaced with the omission\\n     * string which defaults to \\\"...\\\".\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to truncate.\\n     * @param {Object} [options={}] The options object.\\n     * @param {number} [options.length=30] The maximum string length.\\n     * @param {string} [options.omission='...'] The string to indicate text is omitted.\\n     * @param {RegExp|string} [options.separator] The separator pattern to truncate to.\\n     * @returns {string} Returns the truncated string.\\n     * @example\\n     *\\n     * _.truncate('hi-diddly-ho there, neighborino');\\n     * // => 'hi-diddly-ho there, neighbo...'\\n     *\\n     * _.truncate('hi-diddly-ho there, neighborino', {\\n     *   'length': 24,\\n     *   'separator': ' '\\n     * });\\n     * // => 'hi-diddly-ho there,...'\\n     *\\n     * _.truncate('hi-diddly-ho there, neighborino', {\\n     *   'length': 24,\\n     *   'separator': /,? +/\\n     * });\\n     * // => 'hi-diddly-ho there...'\\n     *\\n     * _.truncate('hi-diddly-ho there, neighborino', {\\n     *   'omission': ' [...]'\\n     * });\\n     * // => 'hi-diddly-ho there, neig [...]'\\n     */\\n    function truncate(string, options) {\\n      var length = DEFAULT_TRUNC_LENGTH,\\n          omission = DEFAULT_TRUNC_OMISSION;\\n\\n      if (isObject(options)) {\\n        var separator = 'separator' in options ? options.separator : separator;\\n        length = 'length' in options ? toInteger(options.length) : length;\\n        omission = 'omission' in options ? baseToString(options.omission) : omission;\\n      }\\n      string = toString(string);\\n\\n      var strLength = string.length;\\n      if (hasUnicode(string)) {\\n        var strSymbols = stringToArray(string);\\n        strLength = strSymbols.length;\\n      }\\n      if (length >= strLength) {\\n        return string;\\n      }\\n      var end = length - stringSize(omission);\\n      if (end < 1) {\\n        return omission;\\n      }\\n      var result = strSymbols\\n        ? castSlice(strSymbols, 0, end).join('')\\n        : string.slice(0, end);\\n\\n      if (separator === undefined) {\\n        return result + omission;\\n      }\\n      if (strSymbols) {\\n        end += (result.length - end);\\n      }\\n      if (isRegExp(separator)) {\\n        if (string.slice(end).search(separator)) {\\n          var match,\\n              substring = result;\\n\\n          if (!separator.global) {\\n            separator = RegExp(separator.source, toString(reFlags.exec(separator)) + 'g');\\n          }\\n          separator.lastIndex = 0;\\n          while ((match = separator.exec(substring))) {\\n            var newEnd = match.index;\\n          }\\n          result = result.slice(0, newEnd === undefined ? end : newEnd);\\n        }\\n      } else if (string.indexOf(baseToString(separator), end) != end) {\\n        var index = result.lastIndexOf(separator);\\n        if (index > -1) {\\n          result = result.slice(0, index);\\n        }\\n      }\\n      return result + omission;\\n    }\\n\\n    /**\\n     * The inverse of `_.escape`; this method converts the HTML entities\\n     * `&amp;`, `&lt;`, `&gt;`, `&quot;`, and `&#39;` in `string` to\\n     * their corresponding characters.\\n     *\\n     * **Note:** No other HTML entities are unescaped. To unescape additional\\n     * HTML entities use a third-party library like [_he_](https://mths.be/he).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 0.6.0\\n     * @category String\\n     * @param {string} [string=''] The string to unescape.\\n     * @returns {string} Returns the unescaped string.\\n     * @example\\n     *\\n     * _.unescape('fred, barney, &amp; pebbles');\\n     * // => 'fred, barney, & pebbles'\\n     */\\n    function unescape(string) {\\n      string = toString(string);\\n      return (string && reHasEscapedHtml.test(string))\\n        ? string.replace(reEscapedHtml, unescapeHtmlChar)\\n        : string;\\n    }\\n\\n    /**\\n     * Converts `string`, as space separated words, to upper case.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the upper cased string.\\n     * @example\\n     *\\n     * _.upperCase('--foo-bar');\\n     * // => 'FOO BAR'\\n     *\\n     * _.upperCase('fooBar');\\n     * // => 'FOO BAR'\\n     *\\n     * _.upperCase('__foo_bar__');\\n     * // => 'FOO BAR'\\n     */\\n    var upperCase = createCompounder(function(result, word, index) {\\n      return result + (index ? ' ' : '') + word.toUpperCase();\\n    });\\n\\n    /**\\n     * Converts the first character of `string` to upper case.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to convert.\\n     * @returns {string} Returns the converted string.\\n     * @example\\n     *\\n     * _.upperFirst('fred');\\n     * // => 'Fred'\\n     *\\n     * _.upperFirst('FRED');\\n     * // => 'FRED'\\n     */\\n    var upperFirst = createCaseFirst('toUpperCase');\\n\\n    /**\\n     * Splits `string` into an array of its words.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category String\\n     * @param {string} [string=''] The string to inspect.\\n     * @param {RegExp|string} [pattern] The pattern to match words.\\n     * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.\\n     * @returns {Array} Returns the words of `string`.\\n     * @example\\n     *\\n     * _.words('fred, barney, & pebbles');\\n     * // => ['fred', 'barney', 'pebbles']\\n     *\\n     * _.words('fred, barney, & pebbles', /[^, ]+/g);\\n     * // => ['fred', 'barney', '&', 'pebbles']\\n     */\\n    function words(string, pattern, guard) {\\n      string = toString(string);\\n      pattern = guard ? undefined : pattern;\\n\\n      if (pattern === undefined) {\\n        return hasUnicodeWord(string) ? unicodeWords(string) : asciiWords(string);\\n      }\\n      return string.match(pattern) || [];\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Attempts to invoke `func`, returning either the result or the caught error\\n     * object. Any additional arguments are provided to `func` when it's invoked.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Util\\n     * @param {Function} func The function to attempt.\\n     * @param {...*} [args] The arguments to invoke `func` with.\\n     * @returns {*} Returns the `func` result or error object.\\n     * @example\\n     *\\n     * // Avoid throwing errors for invalid selectors.\\n     * var elements = _.attempt(function(selector) {\\n     *   return document.querySelectorAll(selector);\\n     * }, '>_>');\\n     *\\n     * if (_.isError(elements)) {\\n     *   elements = [];\\n     * }\\n     */\\n    var attempt = baseRest(function(func, args) {\\n      try {\\n        return apply(func, undefined, args);\\n      } catch (e) {\\n        return isError(e) ? e : new Error(e);\\n      }\\n    });\\n\\n    /**\\n     * Binds methods of an object to the object itself, overwriting the existing\\n     * method.\\n     *\\n     * **Note:** This method doesn't set the \\\"length\\\" property of bound functions.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {Object} object The object to bind and assign the bound methods to.\\n     * @param {...(string|string[])} methodNames The object method names to bind.\\n     * @returns {Object} Returns `object`.\\n     * @example\\n     *\\n     * var view = {\\n     *   'label': 'docs',\\n     *   'click': function() {\\n     *     console.log('clicked ' + this.label);\\n     *   }\\n     * };\\n     *\\n     * _.bindAll(view, ['click']);\\n     * jQuery(element).on('click', view.click);\\n     * // => Logs 'clicked docs' when clicked.\\n     */\\n    var bindAll = flatRest(function(object, methodNames) {\\n      arrayEach(methodNames, function(key) {\\n        key = toKey(key);\\n        baseAssignValue(object, key, bind(object[key], object));\\n      });\\n      return object;\\n    });\\n\\n    /**\\n     * Creates a function that iterates over `pairs` and invokes the corresponding\\n     * function of the first predicate to return truthy. The predicate-function\\n     * pairs are invoked with the `this` binding and arguments of the created\\n     * function.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {Array} pairs The predicate-function pairs.\\n     * @returns {Function} Returns the new composite function.\\n     * @example\\n     *\\n     * var func = _.cond([\\n     *   [_.matches({ 'a': 1 }),           _.constant('matches A')],\\n     *   [_.conforms({ 'b': _.isNumber }), _.constant('matches B')],\\n     *   [_.stubTrue,                      _.constant('no match')]\\n     * ]);\\n     *\\n     * func({ 'a': 1, 'b': 2 });\\n     * // => 'matches A'\\n     *\\n     * func({ 'a': 0, 'b': 1 });\\n     * // => 'matches B'\\n     *\\n     * func({ 'a': '1', 'b': '2' });\\n     * // => 'no match'\\n     */\\n    function cond(pairs) {\\n      var length = pairs == null ? 0 : pairs.length,\\n          toIteratee = getIteratee();\\n\\n      pairs = !length ? [] : arrayMap(pairs, function(pair) {\\n        if (typeof pair[1] != 'function') {\\n          throw new TypeError(FUNC_ERROR_TEXT);\\n        }\\n        return [toIteratee(pair[0]), pair[1]];\\n      });\\n\\n      return baseRest(function(args) {\\n        var index = -1;\\n        while (++index < length) {\\n          var pair = pairs[index];\\n          if (apply(pair[0], this, args)) {\\n            return apply(pair[1], this, args);\\n          }\\n        }\\n      });\\n    }\\n\\n    /**\\n     * Creates a function that invokes the predicate properties of `source` with\\n     * the corresponding property values of a given object, returning `true` if\\n     * all predicates return truthy, else `false`.\\n     *\\n     * **Note:** The created function is equivalent to `_.conformsTo` with\\n     * `source` partially applied.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {Object} source The object of property predicates to conform to.\\n     * @returns {Function} Returns the new spec function.\\n     * @example\\n     *\\n     * var objects = [\\n     *   { 'a': 2, 'b': 1 },\\n     *   { 'a': 1, 'b': 2 }\\n     * ];\\n     *\\n     * _.filter(objects, _.conforms({ 'b': function(n) { return n > 1; } }));\\n     * // => [{ 'a': 1, 'b': 2 }]\\n     */\\n    function conforms(source) {\\n      return baseConforms(baseClone(source, CLONE_DEEP_FLAG));\\n    }\\n\\n    /**\\n     * Creates a function that returns `value`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.4.0\\n     * @category Util\\n     * @param {*} value The value to return from the new function.\\n     * @returns {Function} Returns the new constant function.\\n     * @example\\n     *\\n     * var objects = _.times(2, _.constant({ 'a': 1 }));\\n     *\\n     * console.log(objects);\\n     * // => [{ 'a': 1 }, { 'a': 1 }]\\n     *\\n     * console.log(objects[0] === objects[1]);\\n     * // => true\\n     */\\n    function constant(value) {\\n      return function() {\\n        return value;\\n      };\\n    }\\n\\n    /**\\n     * Checks `value` to determine whether a default value should be returned in\\n     * its place. The `defaultValue` is returned if `value` is `NaN`, `null`,\\n     * or `undefined`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.14.0\\n     * @category Util\\n     * @param {*} value The value to check.\\n     * @param {*} defaultValue The default value.\\n     * @returns {*} Returns the resolved value.\\n     * @example\\n     *\\n     * _.defaultTo(1, 10);\\n     * // => 1\\n     *\\n     * _.defaultTo(undefined, 10);\\n     * // => 10\\n     */\\n    function defaultTo(value, defaultValue) {\\n      return (value == null || value !== value) ? defaultValue : value;\\n    }\\n\\n    /**\\n     * Creates a function that returns the result of invoking the given functions\\n     * with the `this` binding of the created function, where each successive\\n     * invocation is supplied the return value of the previous.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Util\\n     * @param {...(Function|Function[])} [funcs] The functions to invoke.\\n     * @returns {Function} Returns the new composite function.\\n     * @see _.flowRight\\n     * @example\\n     *\\n     * function square(n) {\\n     *   return n * n;\\n     * }\\n     *\\n     * var addSquare = _.flow([_.add, square]);\\n     * addSquare(1, 2);\\n     * // => 9\\n     */\\n    var flow = createFlow();\\n\\n    /**\\n     * This method is like `_.flow` except that it creates a function that\\n     * invokes the given functions from right to left.\\n     *\\n     * @static\\n     * @since 3.0.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {...(Function|Function[])} [funcs] The functions to invoke.\\n     * @returns {Function} Returns the new composite function.\\n     * @see _.flow\\n     * @example\\n     *\\n     * function square(n) {\\n     *   return n * n;\\n     * }\\n     *\\n     * var addSquare = _.flowRight([square, _.add]);\\n     * addSquare(1, 2);\\n     * // => 9\\n     */\\n    var flowRight = createFlow(true);\\n\\n    /**\\n     * This method returns the first argument it receives.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {*} value Any value.\\n     * @returns {*} Returns `value`.\\n     * @example\\n     *\\n     * var object = { 'a': 1 };\\n     *\\n     * console.log(_.identity(object) === object);\\n     * // => true\\n     */\\n    function identity(value) {\\n      return value;\\n    }\\n\\n    /**\\n     * Creates a function that invokes `func` with the arguments of the created\\n     * function. If `func` is a property name, the created function returns the\\n     * property value for a given element. If `func` is an array or object, the\\n     * created function returns `true` for elements that contain the equivalent\\n     * source properties, otherwise it returns `false`.\\n     *\\n     * @static\\n     * @since 4.0.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {*} [func=_.identity] The value to convert to a callback.\\n     * @returns {Function} Returns the callback.\\n     * @example\\n     *\\n     * var users = [\\n     *   { 'user': 'barney', 'age': 36, 'active': true },\\n     *   { 'user': 'fred',   'age': 40, 'active': false }\\n     * ];\\n     *\\n     * // The `_.matches` iteratee shorthand.\\n     * _.filter(users, _.iteratee({ 'user': 'barney', 'active': true }));\\n     * // => [{ 'user': 'barney', 'age': 36, 'active': true }]\\n     *\\n     * // The `_.matchesProperty` iteratee shorthand.\\n     * _.filter(users, _.iteratee(['user', 'fred']));\\n     * // => [{ 'user': 'fred', 'age': 40 }]\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.map(users, _.iteratee('user'));\\n     * // => ['barney', 'fred']\\n     *\\n     * // Create custom iteratee shorthands.\\n     * _.iteratee = _.wrap(_.iteratee, function(iteratee, func) {\\n     *   return !_.isRegExp(func) ? iteratee(func) : function(string) {\\n     *     return func.test(string);\\n     *   };\\n     * });\\n     *\\n     * _.filter(['abc', 'def'], /ef/);\\n     * // => ['def']\\n     */\\n    function iteratee(func) {\\n      return baseIteratee(typeof func == 'function' ? func : baseClone(func, CLONE_DEEP_FLAG));\\n    }\\n\\n    /**\\n     * Creates a function that performs a partial deep comparison between a given\\n     * object and `source`, returning `true` if the given object has equivalent\\n     * property values, else `false`.\\n     *\\n     * **Note:** The created function is equivalent to `_.isMatch` with `source`\\n     * partially applied.\\n     *\\n     * Partial comparisons will match empty array and empty object `source`\\n     * values against any array or object value, respectively. See `_.isEqual`\\n     * for a list of supported value comparisons.\\n     *\\n     * **Note:** Multiple values can be checked by combining several matchers\\n     * using `_.overSome`\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Util\\n     * @param {Object} source The object of property values to match.\\n     * @returns {Function} Returns the new spec function.\\n     * @example\\n     *\\n     * var objects = [\\n     *   { 'a': 1, 'b': 2, 'c': 3 },\\n     *   { 'a': 4, 'b': 5, 'c': 6 }\\n     * ];\\n     *\\n     * _.filter(objects, _.matches({ 'a': 4, 'c': 6 }));\\n     * // => [{ 'a': 4, 'b': 5, 'c': 6 }]\\n     *\\n     * // Checking for several possible values\\n     * _.filter(objects, _.overSome([_.matches({ 'a': 1 }), _.matches({ 'a': 4 })]));\\n     * // => [{ 'a': 1, 'b': 2, 'c': 3 }, { 'a': 4, 'b': 5, 'c': 6 }]\\n     */\\n    function matches(source) {\\n      return baseMatches(baseClone(source, CLONE_DEEP_FLAG));\\n    }\\n\\n    /**\\n     * Creates a function that performs a partial deep comparison between the\\n     * value at `path` of a given object to `srcValue`, returning `true` if the\\n     * object value is equivalent, else `false`.\\n     *\\n     * **Note:** Partial comparisons will match empty array and empty object\\n     * `srcValue` values against any array or object value, respectively. See\\n     * `_.isEqual` for a list of supported value comparisons.\\n     *\\n     * **Note:** Multiple values can be checked by combining several matchers\\n     * using `_.overSome`\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.2.0\\n     * @category Util\\n     * @param {Array|string} path The path of the property to get.\\n     * @param {*} srcValue The value to match.\\n     * @returns {Function} Returns the new spec function.\\n     * @example\\n     *\\n     * var objects = [\\n     *   { 'a': 1, 'b': 2, 'c': 3 },\\n     *   { 'a': 4, 'b': 5, 'c': 6 }\\n     * ];\\n     *\\n     * _.find(objects, _.matchesProperty('a', 4));\\n     * // => { 'a': 4, 'b': 5, 'c': 6 }\\n     *\\n     * // Checking for several possible values\\n     * _.filter(objects, _.overSome([_.matchesProperty('a', 1), _.matchesProperty('a', 4)]));\\n     * // => [{ 'a': 1, 'b': 2, 'c': 3 }, { 'a': 4, 'b': 5, 'c': 6 }]\\n     */\\n    function matchesProperty(path, srcValue) {\\n      return baseMatchesProperty(path, baseClone(srcValue, CLONE_DEEP_FLAG));\\n    }\\n\\n    /**\\n     * Creates a function that invokes the method at `path` of a given object.\\n     * Any additional arguments are provided to the invoked method.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.7.0\\n     * @category Util\\n     * @param {Array|string} path The path of the method to invoke.\\n     * @param {...*} [args] The arguments to invoke the method with.\\n     * @returns {Function} Returns the new invoker function.\\n     * @example\\n     *\\n     * var objects = [\\n     *   { 'a': { 'b': _.constant(2) } },\\n     *   { 'a': { 'b': _.constant(1) } }\\n     * ];\\n     *\\n     * _.map(objects, _.method('a.b'));\\n     * // => [2, 1]\\n     *\\n     * _.map(objects, _.method(['a', 'b']));\\n     * // => [2, 1]\\n     */\\n    var method = baseRest(function(path, args) {\\n      return function(object) {\\n        return baseInvoke(object, path, args);\\n      };\\n    });\\n\\n    /**\\n     * The opposite of `_.method`; this method creates a function that invokes\\n     * the method at a given path of `object`. Any additional arguments are\\n     * provided to the invoked method.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.7.0\\n     * @category Util\\n     * @param {Object} object The object to query.\\n     * @param {...*} [args] The arguments to invoke the method with.\\n     * @returns {Function} Returns the new invoker function.\\n     * @example\\n     *\\n     * var array = _.times(3, _.constant),\\n     *     object = { 'a': array, 'b': array, 'c': array };\\n     *\\n     * _.map(['a[2]', 'c[0]'], _.methodOf(object));\\n     * // => [2, 0]\\n     *\\n     * _.map([['a', '2'], ['c', '0']], _.methodOf(object));\\n     * // => [2, 0]\\n     */\\n    var methodOf = baseRest(function(object, args) {\\n      return function(path) {\\n        return baseInvoke(object, path, args);\\n      };\\n    });\\n\\n    /**\\n     * Adds all own enumerable string keyed function properties of a source\\n     * object to the destination object. If `object` is a function, then methods\\n     * are added to its prototype as well.\\n     *\\n     * **Note:** Use `_.runInContext` to create a pristine `lodash` function to\\n     * avoid conflicts caused by modifying the original.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {Function|Object} [object=lodash] The destination object.\\n     * @param {Object} source The object of functions to add.\\n     * @param {Object} [options={}] The options object.\\n     * @param {boolean} [options.chain=true] Specify whether mixins are chainable.\\n     * @returns {Function|Object} Returns `object`.\\n     * @example\\n     *\\n     * function vowels(string) {\\n     *   return _.filter(string, function(v) {\\n     *     return /[aeiou]/i.test(v);\\n     *   });\\n     * }\\n     *\\n     * _.mixin({ 'vowels': vowels });\\n     * _.vowels('fred');\\n     * // => ['e']\\n     *\\n     * _('fred').vowels().value();\\n     * // => ['e']\\n     *\\n     * _.mixin({ 'vowels': vowels }, { 'chain': false });\\n     * _('fred').vowels();\\n     * // => ['e']\\n     */\\n    function mixin(object, source, options) {\\n      var props = keys(source),\\n          methodNames = baseFunctions(source, props);\\n\\n      if (options == null &&\\n          !(isObject(source) && (methodNames.length || !props.length))) {\\n        options = source;\\n        source = object;\\n        object = this;\\n        methodNames = baseFunctions(source, keys(source));\\n      }\\n      var chain = !(isObject(options) && 'chain' in options) || !!options.chain,\\n          isFunc = isFunction(object);\\n\\n      arrayEach(methodNames, function(methodName) {\\n        var func = source[methodName];\\n        object[methodName] = func;\\n        if (isFunc) {\\n          object.prototype[methodName] = function() {\\n            var chainAll = this.__chain__;\\n            if (chain || chainAll) {\\n              var result = object(this.__wrapped__),\\n                  actions = result.__actions__ = copyArray(this.__actions__);\\n\\n              actions.push({ 'func': func, 'args': arguments, 'thisArg': object });\\n              result.__chain__ = chainAll;\\n              return result;\\n            }\\n            return func.apply(object, arrayPush([this.value()], arguments));\\n          };\\n        }\\n      });\\n\\n      return object;\\n    }\\n\\n    /**\\n     * Reverts the `_` variable to its previous value and returns a reference to\\n     * the `lodash` function.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @returns {Function} Returns the `lodash` function.\\n     * @example\\n     *\\n     * var lodash = _.noConflict();\\n     */\\n    function noConflict() {\\n      if (root._ === this) {\\n        root._ = oldDash;\\n      }\\n      return this;\\n    }\\n\\n    /**\\n     * This method returns `undefined`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.3.0\\n     * @category Util\\n     * @example\\n     *\\n     * _.times(2, _.noop);\\n     * // => [undefined, undefined]\\n     */\\n    function noop() {\\n      // No operation performed.\\n    }\\n\\n    /**\\n     * Creates a function that gets the argument at index `n`. If `n` is negative,\\n     * the nth argument from the end is returned.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {number} [n=0] The index of the argument to return.\\n     * @returns {Function} Returns the new pass-thru function.\\n     * @example\\n     *\\n     * var func = _.nthArg(1);\\n     * func('a', 'b', 'c', 'd');\\n     * // => 'b'\\n     *\\n     * var func = _.nthArg(-2);\\n     * func('a', 'b', 'c', 'd');\\n     * // => 'c'\\n     */\\n    function nthArg(n) {\\n      n = toInteger(n);\\n      return baseRest(function(args) {\\n        return baseNth(args, n);\\n      });\\n    }\\n\\n    /**\\n     * Creates a function that invokes `iteratees` with the arguments it receives\\n     * and returns their results.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {...(Function|Function[])} [iteratees=[_.identity]]\\n     *  The iteratees to invoke.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var func = _.over([Math.max, Math.min]);\\n     *\\n     * func(1, 2, 3, 4);\\n     * // => [4, 1]\\n     */\\n    var over = createOver(arrayMap);\\n\\n    /**\\n     * Creates a function that checks if **all** of the `predicates` return\\n     * truthy when invoked with the arguments it receives.\\n     *\\n     * Following shorthands are possible for providing predicates.\\n     * Pass an `Object` and it will be used as an parameter for `_.matches` to create the predicate.\\n     * Pass an `Array` of parameters for `_.matchesProperty` and the predicate will be created using them.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {...(Function|Function[])} [predicates=[_.identity]]\\n     *  The predicates to check.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var func = _.overEvery([Boolean, isFinite]);\\n     *\\n     * func('1');\\n     * // => true\\n     *\\n     * func(null);\\n     * // => false\\n     *\\n     * func(NaN);\\n     * // => false\\n     */\\n    var overEvery = createOver(arrayEvery);\\n\\n    /**\\n     * Creates a function that checks if **any** of the `predicates` return\\n     * truthy when invoked with the arguments it receives.\\n     *\\n     * Following shorthands are possible for providing predicates.\\n     * Pass an `Object` and it will be used as an parameter for `_.matches` to create the predicate.\\n     * Pass an `Array` of parameters for `_.matchesProperty` and the predicate will be created using them.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {...(Function|Function[])} [predicates=[_.identity]]\\n     *  The predicates to check.\\n     * @returns {Function} Returns the new function.\\n     * @example\\n     *\\n     * var func = _.overSome([Boolean, isFinite]);\\n     *\\n     * func('1');\\n     * // => true\\n     *\\n     * func(null);\\n     * // => true\\n     *\\n     * func(NaN);\\n     * // => false\\n     *\\n     * var matchesFunc = _.overSome([{ 'a': 1 }, { 'a': 2 }])\\n     * var matchesPropertyFunc = _.overSome([['a', 1], ['a', 2]])\\n     */\\n    var overSome = createOver(arraySome);\\n\\n    /**\\n     * Creates a function that returns the value at `path` of a given object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 2.4.0\\n     * @category Util\\n     * @param {Array|string} path The path of the property to get.\\n     * @returns {Function} Returns the new accessor function.\\n     * @example\\n     *\\n     * var objects = [\\n     *   { 'a': { 'b': 2 } },\\n     *   { 'a': { 'b': 1 } }\\n     * ];\\n     *\\n     * _.map(objects, _.property('a.b'));\\n     * // => [2, 1]\\n     *\\n     * _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b');\\n     * // => [1, 2]\\n     */\\n    function property(path) {\\n      return isKey(path) ? baseProperty(toKey(path)) : basePropertyDeep(path);\\n    }\\n\\n    /**\\n     * The opposite of `_.property`; this method creates a function that returns\\n     * the value at a given path of `object`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.0.0\\n     * @category Util\\n     * @param {Object} object The object to query.\\n     * @returns {Function} Returns the new accessor function.\\n     * @example\\n     *\\n     * var array = [0, 1, 2],\\n     *     object = { 'a': array, 'b': array, 'c': array };\\n     *\\n     * _.map(['a[2]', 'c[0]'], _.propertyOf(object));\\n     * // => [2, 0]\\n     *\\n     * _.map([['a', '2'], ['c', '0']], _.propertyOf(object));\\n     * // => [2, 0]\\n     */\\n    function propertyOf(object) {\\n      return function(path) {\\n        return object == null ? undefined : baseGet(object, path);\\n      };\\n    }\\n\\n    /**\\n     * Creates an array of numbers (positive and/or negative) progressing from\\n     * `start` up to, but not including, `end`. A step of `-1` is used if a negative\\n     * `start` is specified without an `end` or `step`. If `end` is not specified,\\n     * it's set to `start` with `start` then set to `0`.\\n     *\\n     * **Note:** JavaScript follows the IEEE-754 standard for resolving\\n     * floating-point values which can produce unexpected results.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {number} [start=0] The start of the range.\\n     * @param {number} end The end of the range.\\n     * @param {number} [step=1] The value to increment or decrement by.\\n     * @returns {Array} Returns the range of numbers.\\n     * @see _.inRange, _.rangeRight\\n     * @example\\n     *\\n     * _.range(4);\\n     * // => [0, 1, 2, 3]\\n     *\\n     * _.range(-4);\\n     * // => [0, -1, -2, -3]\\n     *\\n     * _.range(1, 5);\\n     * // => [1, 2, 3, 4]\\n     *\\n     * _.range(0, 20, 5);\\n     * // => [0, 5, 10, 15]\\n     *\\n     * _.range(0, -4, -1);\\n     * // => [0, -1, -2, -3]\\n     *\\n     * _.range(1, 4, 0);\\n     * // => [1, 1, 1]\\n     *\\n     * _.range(0);\\n     * // => []\\n     */\\n    var range = createRange();\\n\\n    /**\\n     * This method is like `_.range` except that it populates values in\\n     * descending order.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {number} [start=0] The start of the range.\\n     * @param {number} end The end of the range.\\n     * @param {number} [step=1] The value to increment or decrement by.\\n     * @returns {Array} Returns the range of numbers.\\n     * @see _.inRange, _.range\\n     * @example\\n     *\\n     * _.rangeRight(4);\\n     * // => [3, 2, 1, 0]\\n     *\\n     * _.rangeRight(-4);\\n     * // => [-3, -2, -1, 0]\\n     *\\n     * _.rangeRight(1, 5);\\n     * // => [4, 3, 2, 1]\\n     *\\n     * _.rangeRight(0, 20, 5);\\n     * // => [15, 10, 5, 0]\\n     *\\n     * _.rangeRight(0, -4, -1);\\n     * // => [-3, -2, -1, 0]\\n     *\\n     * _.rangeRight(1, 4, 0);\\n     * // => [1, 1, 1]\\n     *\\n     * _.rangeRight(0);\\n     * // => []\\n     */\\n    var rangeRight = createRange(true);\\n\\n    /**\\n     * This method returns a new empty array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.13.0\\n     * @category Util\\n     * @returns {Array} Returns the new empty array.\\n     * @example\\n     *\\n     * var arrays = _.times(2, _.stubArray);\\n     *\\n     * console.log(arrays);\\n     * // => [[], []]\\n     *\\n     * console.log(arrays[0] === arrays[1]);\\n     * // => false\\n     */\\n    function stubArray() {\\n      return [];\\n    }\\n\\n    /**\\n     * This method returns `false`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.13.0\\n     * @category Util\\n     * @returns {boolean} Returns `false`.\\n     * @example\\n     *\\n     * _.times(2, _.stubFalse);\\n     * // => [false, false]\\n     */\\n    function stubFalse() {\\n      return false;\\n    }\\n\\n    /**\\n     * This method returns a new empty object.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.13.0\\n     * @category Util\\n     * @returns {Object} Returns the new empty object.\\n     * @example\\n     *\\n     * var objects = _.times(2, _.stubObject);\\n     *\\n     * console.log(objects);\\n     * // => [{}, {}]\\n     *\\n     * console.log(objects[0] === objects[1]);\\n     * // => false\\n     */\\n    function stubObject() {\\n      return {};\\n    }\\n\\n    /**\\n     * This method returns an empty string.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.13.0\\n     * @category Util\\n     * @returns {string} Returns the empty string.\\n     * @example\\n     *\\n     * _.times(2, _.stubString);\\n     * // => ['', '']\\n     */\\n    function stubString() {\\n      return '';\\n    }\\n\\n    /**\\n     * This method returns `true`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.13.0\\n     * @category Util\\n     * @returns {boolean} Returns `true`.\\n     * @example\\n     *\\n     * _.times(2, _.stubTrue);\\n     * // => [true, true]\\n     */\\n    function stubTrue() {\\n      return true;\\n    }\\n\\n    /**\\n     * Invokes the iteratee `n` times, returning an array of the results of\\n     * each invocation. The iteratee is invoked with one argument; (index).\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {number} n The number of times to invoke `iteratee`.\\n     * @param {Function} [iteratee=_.identity] The function invoked per iteration.\\n     * @returns {Array} Returns the array of results.\\n     * @example\\n     *\\n     * _.times(3, String);\\n     * // => ['0', '1', '2']\\n     *\\n     *  _.times(4, _.constant(0));\\n     * // => [0, 0, 0, 0]\\n     */\\n    function times(n, iteratee) {\\n      n = toInteger(n);\\n      if (n < 1 || n > MAX_SAFE_INTEGER) {\\n        return [];\\n      }\\n      var index = MAX_ARRAY_LENGTH,\\n          length = nativeMin(n, MAX_ARRAY_LENGTH);\\n\\n      iteratee = getIteratee(iteratee);\\n      n -= MAX_ARRAY_LENGTH;\\n\\n      var result = baseTimes(length, iteratee);\\n      while (++index < n) {\\n        iteratee(index);\\n      }\\n      return result;\\n    }\\n\\n    /**\\n     * Converts `value` to a property path array.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Util\\n     * @param {*} value The value to convert.\\n     * @returns {Array} Returns the new property path array.\\n     * @example\\n     *\\n     * _.toPath('a.b.c');\\n     * // => ['a', 'b', 'c']\\n     *\\n     * _.toPath('a[0].b.c');\\n     * // => ['a', '0', 'b', 'c']\\n     */\\n    function toPath(value) {\\n      if (isArray(value)) {\\n        return arrayMap(value, toKey);\\n      }\\n      return isSymbol(value) ? [value] : copyArray(stringToPath(toString(value)));\\n    }\\n\\n    /**\\n     * Generates a unique ID. If `prefix` is given, the ID is appended to it.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Util\\n     * @param {string} [prefix=''] The value to prefix the ID with.\\n     * @returns {string} Returns the unique ID.\\n     * @example\\n     *\\n     * _.uniqueId('contact_');\\n     * // => 'contact_104'\\n     *\\n     * _.uniqueId();\\n     * // => '105'\\n     */\\n    function uniqueId(prefix) {\\n      var id = ++idCounter;\\n      return toString(prefix) + id;\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * Adds two numbers.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.4.0\\n     * @category Math\\n     * @param {number} augend The first number in an addition.\\n     * @param {number} addend The second number in an addition.\\n     * @returns {number} Returns the total.\\n     * @example\\n     *\\n     * _.add(6, 4);\\n     * // => 10\\n     */\\n    var add = createMathOperation(function(augend, addend) {\\n      return augend + addend;\\n    }, 0);\\n\\n    /**\\n     * Computes `number` rounded up to `precision`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.10.0\\n     * @category Math\\n     * @param {number} number The number to round up.\\n     * @param {number} [precision=0] The precision to round up to.\\n     * @returns {number} Returns the rounded up number.\\n     * @example\\n     *\\n     * _.ceil(4.006);\\n     * // => 5\\n     *\\n     * _.ceil(6.004, 2);\\n     * // => 6.01\\n     *\\n     * _.ceil(6040, -2);\\n     * // => 6100\\n     */\\n    var ceil = createRound('ceil');\\n\\n    /**\\n     * Divide two numbers.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.7.0\\n     * @category Math\\n     * @param {number} dividend The first number in a division.\\n     * @param {number} divisor The second number in a division.\\n     * @returns {number} Returns the quotient.\\n     * @example\\n     *\\n     * _.divide(6, 4);\\n     * // => 1.5\\n     */\\n    var divide = createMathOperation(function(dividend, divisor) {\\n      return dividend / divisor;\\n    }, 1);\\n\\n    /**\\n     * Computes `number` rounded down to `precision`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.10.0\\n     * @category Math\\n     * @param {number} number The number to round down.\\n     * @param {number} [precision=0] The precision to round down to.\\n     * @returns {number} Returns the rounded down number.\\n     * @example\\n     *\\n     * _.floor(4.006);\\n     * // => 4\\n     *\\n     * _.floor(0.046, 2);\\n     * // => 0.04\\n     *\\n     * _.floor(4060, -2);\\n     * // => 4000\\n     */\\n    var floor = createRound('floor');\\n\\n    /**\\n     * Computes the maximum value of `array`. If `array` is empty or falsey,\\n     * `undefined` is returned.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @returns {*} Returns the maximum value.\\n     * @example\\n     *\\n     * _.max([4, 2, 8, 6]);\\n     * // => 8\\n     *\\n     * _.max([]);\\n     * // => undefined\\n     */\\n    function max(array) {\\n      return (array && array.length)\\n        ? baseExtremum(array, identity, baseGt)\\n        : undefined;\\n    }\\n\\n    /**\\n     * This method is like `_.max` except that it accepts `iteratee` which is\\n     * invoked for each element in `array` to generate the criterion by which\\n     * the value is ranked. The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {*} Returns the maximum value.\\n     * @example\\n     *\\n     * var objects = [{ 'n': 1 }, { 'n': 2 }];\\n     *\\n     * _.maxBy(objects, function(o) { return o.n; });\\n     * // => { 'n': 2 }\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.maxBy(objects, 'n');\\n     * // => { 'n': 2 }\\n     */\\n    function maxBy(array, iteratee) {\\n      return (array && array.length)\\n        ? baseExtremum(array, getIteratee(iteratee, 2), baseGt)\\n        : undefined;\\n    }\\n\\n    /**\\n     * Computes the mean of the values in `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @returns {number} Returns the mean.\\n     * @example\\n     *\\n     * _.mean([4, 2, 8, 6]);\\n     * // => 5\\n     */\\n    function mean(array) {\\n      return baseMean(array, identity);\\n    }\\n\\n    /**\\n     * This method is like `_.mean` except that it accepts `iteratee` which is\\n     * invoked for each element in `array` to generate the value to be averaged.\\n     * The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.7.0\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {number} Returns the mean.\\n     * @example\\n     *\\n     * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }];\\n     *\\n     * _.meanBy(objects, function(o) { return o.n; });\\n     * // => 5\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.meanBy(objects, 'n');\\n     * // => 5\\n     */\\n    function meanBy(array, iteratee) {\\n      return baseMean(array, getIteratee(iteratee, 2));\\n    }\\n\\n    /**\\n     * Computes the minimum value of `array`. If `array` is empty or falsey,\\n     * `undefined` is returned.\\n     *\\n     * @static\\n     * @since 0.1.0\\n     * @memberOf _\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @returns {*} Returns the minimum value.\\n     * @example\\n     *\\n     * _.min([4, 2, 8, 6]);\\n     * // => 2\\n     *\\n     * _.min([]);\\n     * // => undefined\\n     */\\n    function min(array) {\\n      return (array && array.length)\\n        ? baseExtremum(array, identity, baseLt)\\n        : undefined;\\n    }\\n\\n    /**\\n     * This method is like `_.min` except that it accepts `iteratee` which is\\n     * invoked for each element in `array` to generate the criterion by which\\n     * the value is ranked. The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {*} Returns the minimum value.\\n     * @example\\n     *\\n     * var objects = [{ 'n': 1 }, { 'n': 2 }];\\n     *\\n     * _.minBy(objects, function(o) { return o.n; });\\n     * // => { 'n': 1 }\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.minBy(objects, 'n');\\n     * // => { 'n': 1 }\\n     */\\n    function minBy(array, iteratee) {\\n      return (array && array.length)\\n        ? baseExtremum(array, getIteratee(iteratee, 2), baseLt)\\n        : undefined;\\n    }\\n\\n    /**\\n     * Multiply two numbers.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.7.0\\n     * @category Math\\n     * @param {number} multiplier The first number in a multiplication.\\n     * @param {number} multiplicand The second number in a multiplication.\\n     * @returns {number} Returns the product.\\n     * @example\\n     *\\n     * _.multiply(6, 4);\\n     * // => 24\\n     */\\n    var multiply = createMathOperation(function(multiplier, multiplicand) {\\n      return multiplier * multiplicand;\\n    }, 1);\\n\\n    /**\\n     * Computes `number` rounded to `precision`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.10.0\\n     * @category Math\\n     * @param {number} number The number to round.\\n     * @param {number} [precision=0] The precision to round to.\\n     * @returns {number} Returns the rounded number.\\n     * @example\\n     *\\n     * _.round(4.006);\\n     * // => 4\\n     *\\n     * _.round(4.006, 2);\\n     * // => 4.01\\n     *\\n     * _.round(4060, -2);\\n     * // => 4100\\n     */\\n    var round = createRound('round');\\n\\n    /**\\n     * Subtract two numbers.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Math\\n     * @param {number} minuend The first number in a subtraction.\\n     * @param {number} subtrahend The second number in a subtraction.\\n     * @returns {number} Returns the difference.\\n     * @example\\n     *\\n     * _.subtract(6, 4);\\n     * // => 2\\n     */\\n    var subtract = createMathOperation(function(minuend, subtrahend) {\\n      return minuend - subtrahend;\\n    }, 0);\\n\\n    /**\\n     * Computes the sum of the values in `array`.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 3.4.0\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @returns {number} Returns the sum.\\n     * @example\\n     *\\n     * _.sum([4, 2, 8, 6]);\\n     * // => 20\\n     */\\n    function sum(array) {\\n      return (array && array.length)\\n        ? baseSum(array, identity)\\n        : 0;\\n    }\\n\\n    /**\\n     * This method is like `_.sum` except that it accepts `iteratee` which is\\n     * invoked for each element in `array` to generate the value to be summed.\\n     * The iteratee is invoked with one argument: (value).\\n     *\\n     * @static\\n     * @memberOf _\\n     * @since 4.0.0\\n     * @category Math\\n     * @param {Array} array The array to iterate over.\\n     * @param {Function} [iteratee=_.identity] The iteratee invoked per element.\\n     * @returns {number} Returns the sum.\\n     * @example\\n     *\\n     * var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }];\\n     *\\n     * _.sumBy(objects, function(o) { return o.n; });\\n     * // => 20\\n     *\\n     * // The `_.property` iteratee shorthand.\\n     * _.sumBy(objects, 'n');\\n     * // => 20\\n     */\\n    function sumBy(array, iteratee) {\\n      return (array && array.length)\\n        ? baseSum(array, getIteratee(iteratee, 2))\\n        : 0;\\n    }\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    // Add methods that return wrapped values in chain sequences.\\n    lodash.after = after;\\n    lodash.ary = ary;\\n    lodash.assign = assign;\\n    lodash.assignIn = assignIn;\\n    lodash.assignInWith = assignInWith;\\n    lodash.assignWith = assignWith;\\n    lodash.at = at;\\n    lodash.before = before;\\n    lodash.bind = bind;\\n    lodash.bindAll = bindAll;\\n    lodash.bindKey = bindKey;\\n    lodash.castArray = castArray;\\n    lodash.chain = chain;\\n    lodash.chunk = chunk;\\n    lodash.compact = compact;\\n    lodash.concat = concat;\\n    lodash.cond = cond;\\n    lodash.conforms = conforms;\\n    lodash.constant = constant;\\n    lodash.countBy = countBy;\\n    lodash.create = create;\\n    lodash.curry = curry;\\n    lodash.curryRight = curryRight;\\n    lodash.debounce = debounce;\\n    lodash.defaults = defaults;\\n    lodash.defaultsDeep = defaultsDeep;\\n    lodash.defer = defer;\\n    lodash.delay = delay;\\n    lodash.difference = difference;\\n    lodash.differenceBy = differenceBy;\\n    lodash.differenceWith = differenceWith;\\n    lodash.drop = drop;\\n    lodash.dropRight = dropRight;\\n    lodash.dropRightWhile = dropRightWhile;\\n    lodash.dropWhile = dropWhile;\\n    lodash.fill = fill;\\n    lodash.filter = filter;\\n    lodash.flatMap = flatMap;\\n    lodash.flatMapDeep = flatMapDeep;\\n    lodash.flatMapDepth = flatMapDepth;\\n    lodash.flatten = flatten;\\n    lodash.flattenDeep = flattenDeep;\\n    lodash.flattenDepth = flattenDepth;\\n    lodash.flip = flip;\\n    lodash.flow = flow;\\n    lodash.flowRight = flowRight;\\n    lodash.fromPairs = fromPairs;\\n    lodash.functions = functions;\\n    lodash.functionsIn = functionsIn;\\n    lodash.groupBy = groupBy;\\n    lodash.initial = initial;\\n    lodash.intersection = intersection;\\n    lodash.intersectionBy = intersectionBy;\\n    lodash.intersectionWith = intersectionWith;\\n    lodash.invert = invert;\\n    lodash.invertBy = invertBy;\\n    lodash.invokeMap = invokeMap;\\n    lodash.iteratee = iteratee;\\n    lodash.keyBy = keyBy;\\n    lodash.keys = keys;\\n    lodash.keysIn = keysIn;\\n    lodash.map = map;\\n    lodash.mapKeys = mapKeys;\\n    lodash.mapValues = mapValues;\\n    lodash.matches = matches;\\n    lodash.matchesProperty = matchesProperty;\\n    lodash.memoize = memoize;\\n    lodash.merge = merge;\\n    lodash.mergeWith = mergeWith;\\n    lodash.method = method;\\n    lodash.methodOf = methodOf;\\n    lodash.mixin = mixin;\\n    lodash.negate = negate;\\n    lodash.nthArg = nthArg;\\n    lodash.omit = omit;\\n    lodash.omitBy = omitBy;\\n    lodash.once = once;\\n    lodash.orderBy = orderBy;\\n    lodash.over = over;\\n    lodash.overArgs = overArgs;\\n    lodash.overEvery = overEvery;\\n    lodash.overSome = overSome;\\n    lodash.partial = partial;\\n    lodash.partialRight = partialRight;\\n    lodash.partition = partition;\\n    lodash.pick = pick;\\n    lodash.pickBy = pickBy;\\n    lodash.property = property;\\n    lodash.propertyOf = propertyOf;\\n    lodash.pull = pull;\\n    lodash.pullAll = pullAll;\\n    lodash.pullAllBy = pullAllBy;\\n    lodash.pullAllWith = pullAllWith;\\n    lodash.pullAt = pullAt;\\n    lodash.range = range;\\n    lodash.rangeRight = rangeRight;\\n    lodash.rearg = rearg;\\n    lodash.reject = reject;\\n    lodash.remove = remove;\\n    lodash.rest = rest;\\n    lodash.reverse = reverse;\\n    lodash.sampleSize = sampleSize;\\n    lodash.set = set;\\n    lodash.setWith = setWith;\\n    lodash.shuffle = shuffle;\\n    lodash.slice = slice;\\n    lodash.sortBy = sortBy;\\n    lodash.sortedUniq = sortedUniq;\\n    lodash.sortedUniqBy = sortedUniqBy;\\n    lodash.split = split;\\n    lodash.spread = spread;\\n    lodash.tail = tail;\\n    lodash.take = take;\\n    lodash.takeRight = takeRight;\\n    lodash.takeRightWhile = takeRightWhile;\\n    lodash.takeWhile = takeWhile;\\n    lodash.tap = tap;\\n    lodash.throttle = throttle;\\n    lodash.thru = thru;\\n    lodash.toArray = toArray;\\n    lodash.toPairs = toPairs;\\n    lodash.toPairsIn = toPairsIn;\\n    lodash.toPath = toPath;\\n    lodash.toPlainObject = toPlainObject;\\n    lodash.transform = transform;\\n    lodash.unary = unary;\\n    lodash.union = union;\\n    lodash.unionBy = unionBy;\\n    lodash.unionWith = unionWith;\\n    lodash.uniq = uniq;\\n    lodash.uniqBy = uniqBy;\\n    lodash.uniqWith = uniqWith;\\n    lodash.unset = unset;\\n    lodash.unzip = unzip;\\n    lodash.unzipWith = unzipWith;\\n    lodash.update = update;\\n    lodash.updateWith = updateWith;\\n    lodash.values = values;\\n    lodash.valuesIn = valuesIn;\\n    lodash.without = without;\\n    lodash.words = words;\\n    lodash.wrap = wrap;\\n    lodash.xor = xor;\\n    lodash.xorBy = xorBy;\\n    lodash.xorWith = xorWith;\\n    lodash.zip = zip;\\n    lodash.zipObject = zipObject;\\n    lodash.zipObjectDeep = zipObjectDeep;\\n    lodash.zipWith = zipWith;\\n\\n    // Add aliases.\\n    lodash.entries = toPairs;\\n    lodash.entriesIn = toPairsIn;\\n    lodash.extend = assignIn;\\n    lodash.extendWith = assignInWith;\\n\\n    // Add methods to `lodash.prototype`.\\n    mixin(lodash, lodash);\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    // Add methods that return unwrapped values in chain sequences.\\n    lodash.add = add;\\n    lodash.attempt = attempt;\\n    lodash.camelCase = camelCase;\\n    lodash.capitalize = capitalize;\\n    lodash.ceil = ceil;\\n    lodash.clamp = clamp;\\n    lodash.clone = clone;\\n    lodash.cloneDeep = cloneDeep;\\n    lodash.cloneDeepWith = cloneDeepWith;\\n    lodash.cloneWith = cloneWith;\\n    lodash.conformsTo = conformsTo;\\n    lodash.deburr = deburr;\\n    lodash.defaultTo = defaultTo;\\n    lodash.divide = divide;\\n    lodash.endsWith = endsWith;\\n    lodash.eq = eq;\\n    lodash.escape = escape;\\n    lodash.escapeRegExp = escapeRegExp;\\n    lodash.every = every;\\n    lodash.find = find;\\n    lodash.findIndex = findIndex;\\n    lodash.findKey = findKey;\\n    lodash.findLast = findLast;\\n    lodash.findLastIndex = findLastIndex;\\n    lodash.findLastKey = findLastKey;\\n    lodash.floor = floor;\\n    lodash.forEach = forEach;\\n    lodash.forEachRight = forEachRight;\\n    lodash.forIn = forIn;\\n    lodash.forInRight = forInRight;\\n    lodash.forOwn = forOwn;\\n    lodash.forOwnRight = forOwnRight;\\n    lodash.get = get;\\n    lodash.gt = gt;\\n    lodash.gte = gte;\\n    lodash.has = has;\\n    lodash.hasIn = hasIn;\\n    lodash.head = head;\\n    lodash.identity = identity;\\n    lodash.includes = includes;\\n    lodash.indexOf = indexOf;\\n    lodash.inRange = inRange;\\n    lodash.invoke = invoke;\\n    lodash.isArguments = isArguments;\\n    lodash.isArray = isArray;\\n    lodash.isArrayBuffer = isArrayBuffer;\\n    lodash.isArrayLike = isArrayLike;\\n    lodash.isArrayLikeObject = isArrayLikeObject;\\n    lodash.isBoolean = isBoolean;\\n    lodash.isBuffer = isBuffer;\\n    lodash.isDate = isDate;\\n    lodash.isElement = isElement;\\n    lodash.isEmpty = isEmpty;\\n    lodash.isEqual = isEqual;\\n    lodash.isEqualWith = isEqualWith;\\n    lodash.isError = isError;\\n    lodash.isFinite = isFinite;\\n    lodash.isFunction = isFunction;\\n    lodash.isInteger = isInteger;\\n    lodash.isLength = isLength;\\n    lodash.isMap = isMap;\\n    lodash.isMatch = isMatch;\\n    lodash.isMatchWith = isMatchWith;\\n    lodash.isNaN = isNaN;\\n    lodash.isNative = isNative;\\n    lodash.isNil = isNil;\\n    lodash.isNull = isNull;\\n    lodash.isNumber = isNumber;\\n    lodash.isObject = isObject;\\n    lodash.isObjectLike = isObjectLike;\\n    lodash.isPlainObject = isPlainObject;\\n    lodash.isRegExp = isRegExp;\\n    lodash.isSafeInteger = isSafeInteger;\\n    lodash.isSet = isSet;\\n    lodash.isString = isString;\\n    lodash.isSymbol = isSymbol;\\n    lodash.isTypedArray = isTypedArray;\\n    lodash.isUndefined = isUndefined;\\n    lodash.isWeakMap = isWeakMap;\\n    lodash.isWeakSet = isWeakSet;\\n    lodash.join = join;\\n    lodash.kebabCase = kebabCase;\\n    lodash.last = last;\\n    lodash.lastIndexOf = lastIndexOf;\\n    lodash.lowerCase = lowerCase;\\n    lodash.lowerFirst = lowerFirst;\\n    lodash.lt = lt;\\n    lodash.lte = lte;\\n    lodash.max = max;\\n    lodash.maxBy = maxBy;\\n    lodash.mean = mean;\\n    lodash.meanBy = meanBy;\\n    lodash.min = min;\\n    lodash.minBy = minBy;\\n    lodash.stubArray = stubArray;\\n    lodash.stubFalse = stubFalse;\\n    lodash.stubObject = stubObject;\\n    lodash.stubString = stubString;\\n    lodash.stubTrue = stubTrue;\\n    lodash.multiply = multiply;\\n    lodash.nth = nth;\\n    lodash.noConflict = noConflict;\\n    lodash.noop = noop;\\n    lodash.now = now;\\n    lodash.pad = pad;\\n    lodash.padEnd = padEnd;\\n    lodash.padStart = padStart;\\n    lodash.parseInt = parseInt;\\n    lodash.random = random;\\n    lodash.reduce = reduce;\\n    lodash.reduceRight = reduceRight;\\n    lodash.repeat = repeat;\\n    lodash.replace = replace;\\n    lodash.result = result;\\n    lodash.round = round;\\n    lodash.runInContext = runInContext;\\n    lodash.sample = sample;\\n    lodash.size = size;\\n    lodash.snakeCase = snakeCase;\\n    lodash.some = some;\\n    lodash.sortedIndex = sortedIndex;\\n    lodash.sortedIndexBy = sortedIndexBy;\\n    lodash.sortedIndexOf = sortedIndexOf;\\n    lodash.sortedLastIndex = sortedLastIndex;\\n    lodash.sortedLastIndexBy = sortedLastIndexBy;\\n    lodash.sortedLastIndexOf = sortedLastIndexOf;\\n    lodash.startCase = startCase;\\n    lodash.startsWith = startsWith;\\n    lodash.subtract = subtract;\\n    lodash.sum = sum;\\n    lodash.sumBy = sumBy;\\n    lodash.template = template;\\n    lodash.times = times;\\n    lodash.toFinite = toFinite;\\n    lodash.toInteger = toInteger;\\n    lodash.toLength = toLength;\\n    lodash.toLower = toLower;\\n    lodash.toNumber = toNumber;\\n    lodash.toSafeInteger = toSafeInteger;\\n    lodash.toString = toString;\\n    lodash.toUpper = toUpper;\\n    lodash.trim = trim;\\n    lodash.trimEnd = trimEnd;\\n    lodash.trimStart = trimStart;\\n    lodash.truncate = truncate;\\n    lodash.unescape = unescape;\\n    lodash.uniqueId = uniqueId;\\n    lodash.upperCase = upperCase;\\n    lodash.upperFirst = upperFirst;\\n\\n    // Add aliases.\\n    lodash.each = forEach;\\n    lodash.eachRight = forEachRight;\\n    lodash.first = head;\\n\\n    mixin(lodash, (function() {\\n      var source = {};\\n      baseForOwn(lodash, function(func, methodName) {\\n        if (!hasOwnProperty.call(lodash.prototype, methodName)) {\\n          source[methodName] = func;\\n        }\\n      });\\n      return source;\\n    }()), { 'chain': false });\\n\\n    /*------------------------------------------------------------------------*/\\n\\n    /**\\n     * The semantic version number.\\n     *\\n     * @static\\n     * @memberOf _\\n     * @type {string}\\n     */\\n    lodash.VERSION = VERSION;\\n\\n    // Assign default placeholders.\\n    arrayEach(['bind', 'bindKey', 'curry', 'curryRight', 'partial', 'partialRight'], function(methodName) {\\n      lodash[methodName].placeholder = lodash;\\n    });\\n\\n    // Add `LazyWrapper` methods for `_.drop` and `_.take` variants.\\n    arrayEach(['drop', 'take'], function(methodName, index) {\\n      LazyWrapper.prototype[methodName] = function(n) {\\n        n = n === undefined ? 1 : nativeMax(toInteger(n), 0);\\n\\n        var result = (this.__filtered__ && !index)\\n          ? new LazyWrapper(this)\\n          : this.clone();\\n\\n        if (result.__filtered__) {\\n          result.__takeCount__ = nativeMin(n, result.__takeCount__);\\n        } else {\\n          result.__views__.push({\\n            'size': nativeMin(n, MAX_ARRAY_LENGTH),\\n            'type': methodName + (result.__dir__ < 0 ? 'Right' : '')\\n          });\\n        }\\n        return result;\\n      };\\n\\n      LazyWrapper.prototype[methodName + 'Right'] = function(n) {\\n        return this.reverse()[methodName](n).reverse();\\n      };\\n    });\\n\\n    // Add `LazyWrapper` methods that accept an `iteratee` value.\\n    arrayEach(['filter', 'map', 'takeWhile'], function(methodName, index) {\\n      var type = index + 1,\\n          isFilter = type == LAZY_FILTER_FLAG || type == LAZY_WHILE_FLAG;\\n\\n      LazyWrapper.prototype[methodName] = function(iteratee) {\\n        var result = this.clone();\\n        result.__iteratees__.push({\\n          'iteratee': getIteratee(iteratee, 3),\\n          'type': type\\n        });\\n        result.__filtered__ = result.__filtered__ || isFilter;\\n        return result;\\n      };\\n    });\\n\\n    // Add `LazyWrapper` methods for `_.head` and `_.last`.\\n    arrayEach(['head', 'last'], function(methodName, index) {\\n      var takeName = 'take' + (index ? 'Right' : '');\\n\\n      LazyWrapper.prototype[methodName] = function() {\\n        return this[takeName](1).value()[0];\\n      };\\n    });\\n\\n    // Add `LazyWrapper` methods for `_.initial` and `_.tail`.\\n    arrayEach(['initial', 'tail'], function(methodName, index) {\\n      var dropName = 'drop' + (index ? '' : 'Right');\\n\\n      LazyWrapper.prototype[methodName] = function() {\\n        return this.__filtered__ ? new LazyWrapper(this) : this[dropName](1);\\n      };\\n    });\\n\\n    LazyWrapper.prototype.compact = function() {\\n      return this.filter(identity);\\n    };\\n\\n    LazyWrapper.prototype.find = function(predicate) {\\n      return this.filter(predicate).head();\\n    };\\n\\n    LazyWrapper.prototype.findLast = function(predicate) {\\n      return this.reverse().find(predicate);\\n    };\\n\\n    LazyWrapper.prototype.invokeMap = baseRest(function(path, args) {\\n      if (typeof path == 'function') {\\n        return new LazyWrapper(this);\\n      }\\n      return this.map(function(value) {\\n        return baseInvoke(value, path, args);\\n      });\\n    });\\n\\n    LazyWrapper.prototype.reject = function(predicate) {\\n      return this.filter(negate(getIteratee(predicate)));\\n    };\\n\\n    LazyWrapper.prototype.slice = function(start, end) {\\n      start = toInteger(start);\\n\\n      var result = this;\\n      if (result.__filtered__ && (start > 0 || end < 0)) {\\n        return new LazyWrapper(result);\\n      }\\n      if (start < 0) {\\n        result = result.takeRight(-start);\\n      } else if (start) {\\n        result = result.drop(start);\\n      }\\n      if (end !== undefined) {\\n        end = toInteger(end);\\n        result = end < 0 ? result.dropRight(-end) : result.take(end - start);\\n      }\\n      return result;\\n    };\\n\\n    LazyWrapper.prototype.takeRightWhile = function(predicate) {\\n      return this.reverse().takeWhile(predicate).reverse();\\n    };\\n\\n    LazyWrapper.prototype.toArray = function() {\\n      return this.take(MAX_ARRAY_LENGTH);\\n    };\\n\\n    // Add `LazyWrapper` methods to `lodash.prototype`.\\n    baseForOwn(LazyWrapper.prototype, function(func, methodName) {\\n      var checkIteratee = /^(?:filter|find|map|reject)|While$/.test(methodName),\\n          isTaker = /^(?:head|last)$/.test(methodName),\\n          lodashFunc = lodash[isTaker ? ('take' + (methodName == 'last' ? 'Right' : '')) : methodName],\\n          retUnwrapped = isTaker || /^find/.test(methodName);\\n\\n      if (!lodashFunc) {\\n        return;\\n      }\\n      lodash.prototype[methodName] = function() {\\n        var value = this.__wrapped__,\\n            args = isTaker ? [1] : arguments,\\n            isLazy = value instanceof LazyWrapper,\\n            iteratee = args[0],\\n            useLazy = isLazy || isArray(value);\\n\\n        var interceptor = function(value) {\\n          var result = lodashFunc.apply(lodash, arrayPush([value], args));\\n          return (isTaker && chainAll) ? result[0] : result;\\n        };\\n\\n        if (useLazy && checkIteratee && typeof iteratee == 'function' && iteratee.length != 1) {\\n          // Avoid lazy use if the iteratee has a \\\"length\\\" value other than `1`.\\n          isLazy = useLazy = false;\\n        }\\n        var chainAll = this.__chain__,\\n            isHybrid = !!this.__actions__.length,\\n            isUnwrapped = retUnwrapped && !chainAll,\\n            onlyLazy = isLazy && !isHybrid;\\n\\n        if (!retUnwrapped && useLazy) {\\n          value = onlyLazy ? value : new LazyWrapper(this);\\n          var result = func.apply(value, args);\\n          result.__actions__.push({ 'func': thru, 'args': [interceptor], 'thisArg': undefined });\\n          return new LodashWrapper(result, chainAll);\\n        }\\n        if (isUnwrapped && onlyLazy) {\\n          return func.apply(this, args);\\n        }\\n        result = this.thru(interceptor);\\n        return isUnwrapped ? (isTaker ? result.value()[0] : result.value()) : result;\\n      };\\n    });\\n\\n    // Add `Array` methods to `lodash.prototype`.\\n    arrayEach(['pop', 'push', 'shift', 'sort', 'splice', 'unshift'], function(methodName) {\\n      var func = arrayProto[methodName],\\n          chainName = /^(?:push|sort|unshift)$/.test(methodName) ? 'tap' : 'thru',\\n          retUnwrapped = /^(?:pop|shift)$/.test(methodName);\\n\\n      lodash.prototype[methodName] = function() {\\n        var args = arguments;\\n        if (retUnwrapped && !this.__chain__) {\\n          var value = this.value();\\n          return func.apply(isArray(value) ? value : [], args);\\n        }\\n        return this[chainName](function(value) {\\n          return func.apply(isArray(value) ? value : [], args);\\n        });\\n      };\\n    });\\n\\n    // Map minified method names to their real names.\\n    baseForOwn(LazyWrapper.prototype, function(func, methodName) {\\n      var lodashFunc = lodash[methodName];\\n      if (lodashFunc) {\\n        var key = lodashFunc.name + '';\\n        if (!hasOwnProperty.call(realNames, key)) {\\n          realNames[key] = [];\\n        }\\n        realNames[key].push({ 'name': methodName, 'func': lodashFunc });\\n      }\\n    });\\n\\n    realNames[createHybrid(undefined, WRAP_BIND_KEY_FLAG).name] = [{\\n      'name': 'wrapper',\\n      'func': undefined\\n    }];\\n\\n    // Add methods to `LazyWrapper`.\\n    LazyWrapper.prototype.clone = lazyClone;\\n    LazyWrapper.prototype.reverse = lazyReverse;\\n    LazyWrapper.prototype.value = lazyValue;\\n\\n    // Add chain sequence methods to the `lodash` wrapper.\\n    lodash.prototype.at = wrapperAt;\\n    lodash.prototype.chain = wrapperChain;\\n    lodash.prototype.commit = wrapperCommit;\\n    lodash.prototype.next = wrapperNext;\\n    lodash.prototype.plant = wrapperPlant;\\n    lodash.prototype.reverse = wrapperReverse;\\n    lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue;\\n\\n    // Add lazy aliases.\\n    lodash.prototype.first = lodash.prototype.head;\\n\\n    if (symIterator) {\\n      lodash.prototype[symIterator] = wrapperToIterator;\\n    }\\n    return lodash;\\n  });\\n\\n  /*--------------------------------------------------------------------------*/\\n\\n  // Export lodash.\\n  var _ = runInContext();\\n\\n  // Some AMD build optimizers, like r.js, check for condition patterns like:\\n  if (typeof define == 'function' && typeof define.amd == 'object' && define.amd) {\\n    // Expose Lodash on the global object to prevent errors when Lodash is\\n    // loaded by a script tag in the presence of an AMD loader.\\n    // See http://requirejs.org/docs/errors.html#mismatch for more details.\\n    // Use `_.noConflict` to remove Lodash from the global object.\\n    root._ = _;\\n\\n    // Define as an anonymous module so, through path mapping, it can be\\n    // referenced as the \\\"underscore\\\" module.\\n    define(function() {\\n      return _;\\n    });\\n  }\\n  // Check for `exports` after `define` in case a build optimizer adds it.\\n  else if (freeModule) {\\n    // Export for Node.js.\\n    (freeModule.exports = _)._ = _;\\n    // Export for CommonJS support.\\n    freeExports._ = _;\\n  }\\n  else {\\n    // Export to the global object.\\n    root._ = _;\\n  }\\n}.call(this));\\n\"\n          },\n          {\n            \"id\": 3,\n            \"identifier\": \"D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n            \"name\": \"./src/timeout.worker.js\",\n            \"index\": 0,\n            \"index2\": 3,\n            \"size\": 682,\n            \"cacheable\": true,\n            \"built\": true,\n            \"optional\": false,\n            \"prefetched\": false,\n            \"chunks\": [\n              0\n            ],\n            \"assets\": [\n            ],\n            \"issuer\": null,\n            \"issuerId\": null,\n            \"issuerName\": null,\n            \"issuerPath\": null,\n            \"failed\": false,\n            \"errors\": 0,\n            \"warnings\": 0,\n            \"reasons\": [\n              {\n                \"moduleId\": null,\n                \"moduleIdentifier\": null,\n                \"module\": null,\n                \"moduleName\": null,\n                \"type\": \"single entry\",\n                \"userRequest\": \"!!D:\\\\Repos\\\\worker-loader-example\\\\src\\\\timeout.worker.js\",\n                \"loc\": \"timeout.worker\"\n              }\n            ],\n            \"usedExports\": true,\n            \"providedExports\": null,\n            \"optimizationBailout\": [\n              \"ModuleConcatenation bailout: Module is not an ECMAScript module\"\n            ],\n            \"depth\": 0,\n            \"source\": \"const _ = require(\\\"lodash\\\");\\r\\nvar timers = new Map();\\r\\n\\r\\nfunction fireTimeout(id) {\\r\\n    self.postMessage({ id: id });\\r\\n    timers.delete(id);\\r\\n}\\r\\n\\r\\nself.onmessage = (evt) => {\\r\\n    var data = evt.data;\\r\\n\\r\\n    switch (data.command) {\\r\\n        case \\\"setTimeout\\\":\\r\\n            var time = _.toInteger(data.timeout),\\r\\n                timer = setTimeout(fireTimeout.bind(null, data.id), time);\\r\\n            timers.set(data.id, timer);\\r\\n            break;\\r\\n        case \\\"clearTimeout\\\":\\r\\n            var timer = timers.get(data.id);\\r\\n            if (!_.isNil(timer)) {\\r\\n                clearTimeout(timer);\\r\\n            }\\r\\n            timers.delete(data.id);\\r\\n            break;\\r\\n    }\\r\\n};\"\n          }\n        ],\n        \"filteredModules\": 0,\n        \"children\": [\n        ],\n        \"name\": \"worker-loader src/timeout.worker.js\"\n      }\n    ]\n  }"
  },
  {
    "path": "test/stats/with-worker-loader-dynamic-import/1.bundle.js",
    "content": "(window.webpackJsonp=window.webpackJsonp||[]).push([[1],[,function(n,e,o){\"use strict\";o.r(e),e.default=function(){return new Worker(o.p+\"bundle.worker.js\")}}]]);"
  },
  {
    "path": "test/stats/with-worker-loader-dynamic-import/1.bundle.worker.js",
    "content": "self.webpackChunk([1],[,function(n,t,c){\"use strict\";c.r(t),c.d(t,\"foo\",(function(){return o}));const o=42}]);"
  },
  {
    "path": "test/stats/with-worker-loader-dynamic-import/bundle.js",
    "content": "!function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,\"a\",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p=\"\",r(r.s=0)}([function(e,t,r){\"use strict\";r.r(t)}]);"
  },
  {
    "path": "test/stats/with-worker-loader-dynamic-import/bundle.worker.js",
    "content": "!function(e){self.webpackChunk=function(r,n){for(var o in n)e[o]=n[o];for(;r.length;)t[r.pop()]=1};var r={},t={0:1};function n(t){if(r[t])return r[t].exports;var o=r[t]={i:t,l:!1,exports:{}};return e[t].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.e=function(e){var r=[];return r.push(Promise.resolve().then((function(){t[e]||importScripts(n.p+\"\"+e+\".bundle.worker.js\")}))),Promise.all(r)},n.m=e,n.c=r,n.d=function(e,r,t){n.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},n.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},n.t=function(e,r){if(1&r&&(e=n(e)),8&r)return e;if(4&r&&\"object\"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(n.r(t),Object.defineProperty(t,\"default\",{enumerable:!0,value:e}),2&r&&\"string\"!=typeof e)for(var o in e)n.d(t,o,function(r){return e[r]}.bind(null,o));return t},n.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(r,\"a\",r),r},n.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},n.p=\"\",n(n.s=0)}([function(e,r,t){\"use strict\";t.r(r),t.e(1).then(t.bind(null,1)),r.default={}}]);"
  },
  {
    "path": "test/stats/with-worker-loader-dynamic-import/stats.json",
    "content": "{\n  \"errors\": [\n  ],\n  \"warnings\": [\n  ],\n  \"version\": \"4.44.1\",\n  \"hash\": \"6a922406d27e1f958522\",\n  \"time\": 108,\n  \"builtAt\": 1599686616770,\n  \"publicPath\": \"\",\n  \"outputPath\": \"/Users/devinabbott/Projects/wba-test/dist\",\n  \"assetsByChunkName\": {\n    \"main\": \"bundle.js\"\n  },\n  \"assets\": [\n    {\n      \"name\": \"1.bundle.worker.js\",\n      \"size\": 110,\n      \"chunks\": [\n      ],\n      \"chunkNames\": [\n      ],\n      \"info\": {\n      },\n      \"emitted\": true\n    },\n    {\n      \"name\": \"bundle.js\",\n      \"size\": 951,\n      \"chunks\": [\n        0\n      ],\n      \"chunkNames\": [\n        \"main\"\n      ],\n      \"info\": {\n      },\n      \"emitted\": true\n    },\n    {\n      \"name\": \"bundle.worker.js\",\n      \"size\": 1230,\n      \"chunks\": [\n      ],\n      \"chunkNames\": [\n      ],\n      \"info\": {\n      },\n      \"emitted\": true\n    }\n  ],\n  \"filteredAssets\": 0,\n  \"entrypoints\": {\n    \"main\": {\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [\n        \"bundle.js\"\n      ],\n      \"children\": {\n      },\n      \"childAssets\": {\n      }\n    }\n  },\n  \"namedChunkGroups\": {\n    \"main\": {\n      \"chunks\": [\n        0\n      ],\n      \"assets\": [\n        \"bundle.js\"\n      ],\n      \"children\": {\n      },\n      \"childAssets\": {\n      }\n    }\n  },\n  \"chunks\": [\n    {\n      \"id\": 0,\n      \"rendered\": true,\n      \"initial\": true,\n      \"entry\": true,\n      \"size\": 128,\n      \"names\": [\n        \"main\"\n      ],\n      \"files\": [\n        \"bundle.js\"\n      ],\n      \"hash\": \"198ac11aa4df509d7a86\",\n      \"siblings\": [\n      ],\n      \"parents\": [\n      ],\n      \"children\": [\n      ],\n      \"childrenByOrder\": {\n      },\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"/Users/devinabbott/Projects/wba-test/index.js d7f0419a44af2953980a1e234962b7cb\",\n          \"name\": \"./index.js + 1 modules\",\n          \"index\": 0,\n          \"index2\": 1,\n          \"size\": 128,\n          \"cacheable\": false,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            0\n          ],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./index.js\",\n              \"loc\": \"main\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": 0,\n          \"modules\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/Users/devinabbott/Projects/wba-test/index.js\",\n              \"name\": \"./index.js\",\n              \"index\": 0,\n              \"index2\": 1,\n              \"size\": 31,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [\n              ],\n              \"issuer\": null,\n              \"issuerId\": null,\n              \"issuerName\": null,\n              \"issuerPath\": null,\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [\n              ],\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": null,\n                  \"module\": null,\n                  \"moduleName\": null,\n                  \"type\": \"single entry\",\n                  \"userRequest\": \"./index.js\",\n                  \"loc\": \"main\"\n                }\n              ],\n              \"usedExports\": true,\n              \"providedExports\": [\n              ],\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is an entry point\"\n              ],\n              \"depth\": 0,\n              \"source\": \"import worker from \\\"./worker\\\";\\n\"\n            },\n            {\n              \"id\": null,\n              \"identifier\": \"/Users/devinabbott/Projects/wba-test/node_modules/worker-loader/dist/cjs.js!/Users/devinabbott/Projects/wba-test/worker.js\",\n              \"name\": \"./worker.js\",\n              \"index\": 1,\n              \"index2\": 0,\n              \"size\": 97,\n              \"cacheable\": false,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [\n              ],\n              \"issuer\": \"/Users/devinabbott/Projects/wba-test/index.js\",\n              \"issuerId\": null,\n              \"issuerName\": \"./index.js\",\n              \"issuerPath\": [\n                {\n                  \"id\": null,\n                  \"identifier\": \"/Users/devinabbott/Projects/wba-test/index.js\",\n                  \"name\": \"./index.js\"\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [\n              ],\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": \"/Users/devinabbott/Projects/wba-test/index.js\",\n                  \"module\": \"./index.js\",\n                  \"moduleName\": \"./index.js\",\n                  \"type\": \"harmony side effect evaluation\",\n                  \"userRequest\": \"./worker\",\n                  \"loc\": \"1:0-30\"\n                }\n              ],\n              \"usedExports\": false,\n              \"providedExports\": [\n                \"default\"\n              ],\n              \"optimizationBailout\": [\n              ],\n              \"depth\": 1,\n              \"source\": \"export default function() {\\n  return new Worker(__webpack_public_path__ + \\\"bundle.worker.js\\\");\\n}\\n\"\n            }\n          ],\n          \"filteredModules\": 0\n        }\n      ],\n      \"filteredModules\": 0,\n      \"origins\": [\n        {\n          \"module\": \"\",\n          \"moduleIdentifier\": \"\",\n          \"moduleName\": \"\",\n          \"loc\": \"main\",\n          \"request\": \"./index.js\",\n          \"reasons\": [\n          ]\n        }\n      ]\n    }\n  ],\n  \"modules\": [\n    {\n      \"id\": 0,\n      \"identifier\": \"/Users/devinabbott/Projects/wba-test/index.js d7f0419a44af2953980a1e234962b7cb\",\n      \"name\": \"./index.js + 1 modules\",\n      \"index\": 0,\n      \"index2\": 1,\n      \"size\": 128,\n      \"cacheable\": false,\n      \"built\": true,\n      \"optional\": false,\n      \"prefetched\": false,\n      \"chunks\": [\n        0\n      ],\n      \"issuer\": null,\n      \"issuerId\": null,\n      \"issuerName\": null,\n      \"issuerPath\": null,\n      \"failed\": false,\n      \"errors\": 0,\n      \"warnings\": 0,\n      \"assets\": [\n      ],\n      \"reasons\": [\n        {\n          \"moduleId\": null,\n          \"moduleIdentifier\": null,\n          \"module\": null,\n          \"moduleName\": null,\n          \"type\": \"single entry\",\n          \"userRequest\": \"./index.js\",\n          \"loc\": \"main\"\n        }\n      ],\n      \"usedExports\": true,\n      \"providedExports\": [\n      ],\n      \"optimizationBailout\": [\n      ],\n      \"depth\": 0,\n      \"modules\": [\n        {\n          \"id\": null,\n          \"identifier\": \"/Users/devinabbott/Projects/wba-test/index.js\",\n          \"name\": \"./index.js\",\n          \"index\": 0,\n          \"index2\": 1,\n          \"size\": 31,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n          ],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"./index.js\",\n              \"loc\": \"main\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [\n          ],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is an entry point\"\n          ],\n          \"depth\": 0,\n          \"source\": \"import worker from \\\"./worker\\\";\\n\"\n        },\n        {\n          \"id\": null,\n          \"identifier\": \"/Users/devinabbott/Projects/wba-test/node_modules/worker-loader/dist/cjs.js!/Users/devinabbott/Projects/wba-test/worker.js\",\n          \"name\": \"./worker.js\",\n          \"index\": 1,\n          \"index2\": 0,\n          \"size\": 97,\n          \"cacheable\": false,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n          ],\n          \"issuer\": \"/Users/devinabbott/Projects/wba-test/index.js\",\n          \"issuerId\": null,\n          \"issuerName\": \"./index.js\",\n          \"issuerPath\": [\n            {\n              \"id\": null,\n              \"identifier\": \"/Users/devinabbott/Projects/wba-test/index.js\",\n              \"name\": \"./index.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": \"/Users/devinabbott/Projects/wba-test/index.js\",\n              \"module\": \"./index.js\",\n              \"moduleName\": \"./index.js\",\n              \"type\": \"harmony side effect evaluation\",\n              \"userRequest\": \"./worker\",\n              \"loc\": \"1:0-30\"\n            }\n          ],\n          \"usedExports\": false,\n          \"providedExports\": [\n            \"default\"\n          ],\n          \"optimizationBailout\": [\n          ],\n          \"depth\": 1,\n          \"source\": \"export default function() {\\n  return new Worker(__webpack_public_path__ + \\\"bundle.worker.js\\\");\\n}\\n\"\n        }\n      ],\n      \"filteredModules\": 0\n    }\n  ],\n  \"filteredModules\": 0,\n  \"logging\": {\n    \"webpack.buildChunkGraph.visitModules\": {\n      \"entries\": [\n      ],\n      \"filteredEntries\": 2,\n      \"debug\": false\n    }\n  },\n  \"children\": [\n    {\n      \"errors\": [\n      ],\n      \"warnings\": [\n      ],\n      \"publicPath\": \"\",\n      \"outputPath\": \"/Users/devinabbott/Projects/wba-test/dist\",\n      \"assetsByChunkName\": {\n        \"worker\": \"bundle.worker.js\"\n      },\n      \"assets\": [\n        {\n          \"name\": \"1.bundle.worker.js\",\n          \"size\": 110,\n          \"chunks\": [\n            1\n          ],\n          \"chunkNames\": [\n          ],\n          \"info\": {\n          },\n          \"emitted\": true\n        },\n        {\n          \"name\": \"bundle.worker.js\",\n          \"size\": 1230,\n          \"chunks\": [\n            0\n          ],\n          \"chunkNames\": [\n            \"worker\"\n          ],\n          \"info\": {\n          },\n          \"emitted\": true\n        }\n      ],\n      \"filteredAssets\": 0,\n      \"entrypoints\": {\n        \"worker\": {\n          \"chunks\": [\n            0\n          ],\n          \"assets\": [\n            \"bundle.worker.js\"\n          ],\n          \"children\": {\n          },\n          \"childAssets\": {\n          }\n        }\n      },\n      \"namedChunkGroups\": {\n        \"worker\": {\n          \"chunks\": [\n            0\n          ],\n          \"assets\": [\n            \"bundle.worker.js\"\n          ],\n          \"children\": {\n          },\n          \"childAssets\": {\n          }\n        }\n      },\n      \"chunks\": [\n        {\n          \"id\": 0,\n          \"rendered\": true,\n          \"initial\": true,\n          \"entry\": true,\n          \"size\": 44,\n          \"names\": [\n            \"worker\"\n          ],\n          \"files\": [\n            \"bundle.worker.js\"\n          ],\n          \"hash\": \"b4762f21c1a5d6d1a430\",\n          \"siblings\": [\n          ],\n          \"parents\": [\n          ],\n          \"children\": [\n            1\n          ],\n          \"childrenByOrder\": {\n          },\n          \"modules\": [\n            {\n              \"id\": 0,\n              \"identifier\": \"/Users/devinabbott/Projects/wba-test/worker.js\",\n              \"name\": \"./worker.js\",\n              \"index\": 0,\n              \"index2\": 0,\n              \"size\": 44,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [\n                0\n              ],\n              \"issuer\": null,\n              \"issuerId\": null,\n              \"issuerName\": null,\n              \"issuerPath\": null,\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [\n              ],\n              \"reasons\": [\n                {\n                  \"moduleId\": null,\n                  \"moduleIdentifier\": null,\n                  \"module\": null,\n                  \"moduleName\": null,\n                  \"type\": \"single entry\",\n                  \"userRequest\": \"!!/Users/devinabbott/Projects/wba-test/worker.js\",\n                  \"loc\": \"worker\"\n                }\n              ],\n              \"usedExports\": true,\n              \"providedExports\": [\n                \"default\"\n              ],\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is an entry point\"\n              ],\n              \"depth\": 0,\n              \"source\": \"import(\\\"./worker-dep\\\");\\n\\nexport default {};\\n\"\n            }\n          ],\n          \"filteredModules\": 0,\n          \"origins\": [\n            {\n              \"module\": \"\",\n              \"moduleIdentifier\": \"\",\n              \"moduleName\": \"\",\n              \"loc\": \"worker\",\n              \"request\": \"!!/Users/devinabbott/Projects/wba-test/worker.js\",\n              \"reasons\": [\n              ]\n            }\n          ]\n        },\n        {\n          \"id\": 1,\n          \"rendered\": true,\n          \"initial\": false,\n          \"entry\": false,\n          \"size\": 23,\n          \"names\": [\n          ],\n          \"files\": [\n            \"1.bundle.worker.js\"\n          ],\n          \"hash\": \"72bd0d9c0a92a4a4dbf3\",\n          \"siblings\": [\n          ],\n          \"parents\": [\n            0\n          ],\n          \"children\": [\n          ],\n          \"childrenByOrder\": {\n          },\n          \"modules\": [\n            {\n              \"id\": 1,\n              \"identifier\": \"/Users/devinabbott/Projects/wba-test/worker-dep.js\",\n              \"name\": \"./worker-dep.js\",\n              \"index\": 1,\n              \"index2\": 1,\n              \"size\": 23,\n              \"cacheable\": true,\n              \"built\": true,\n              \"optional\": false,\n              \"prefetched\": false,\n              \"chunks\": [\n                1\n              ],\n              \"issuer\": \"/Users/devinabbott/Projects/wba-test/worker.js\",\n              \"issuerId\": 0,\n              \"issuerName\": \"./worker.js\",\n              \"issuerPath\": [\n                {\n                  \"id\": 0,\n                  \"identifier\": \"/Users/devinabbott/Projects/wba-test/worker.js\",\n                  \"name\": \"./worker.js\"\n                }\n              ],\n              \"failed\": false,\n              \"errors\": 0,\n              \"warnings\": 0,\n              \"assets\": [\n              ],\n              \"reasons\": [\n                {\n                  \"moduleId\": 0,\n                  \"moduleIdentifier\": \"/Users/devinabbott/Projects/wba-test/worker.js\",\n                  \"module\": \"./worker.js\",\n                  \"moduleName\": \"./worker.js\",\n                  \"type\": \"import()\",\n                  \"userRequest\": \"./worker-dep\",\n                  \"loc\": \"1:0-22\"\n                }\n              ],\n              \"usedExports\": true,\n              \"providedExports\": [\n                \"foo\"\n              ],\n              \"optimizationBailout\": [\n                \"ModuleConcatenation bailout: Module is referenced from these modules with unsupported syntax: ./worker.js (referenced with import())\"\n              ],\n              \"depth\": 1,\n              \"source\": \"export const foo = 42;\\n\"\n            }\n          ],\n          \"filteredModules\": 0,\n          \"origins\": [\n            {\n              \"moduleId\": 0,\n              \"module\": \"/Users/devinabbott/Projects/wba-test/worker.js\",\n              \"moduleIdentifier\": \"/Users/devinabbott/Projects/wba-test/worker.js\",\n              \"moduleName\": \"./worker.js\",\n              \"loc\": \"1:0-22\",\n              \"request\": \"./worker-dep\",\n              \"reasons\": [\n              ]\n            }\n          ]\n        }\n      ],\n      \"modules\": [\n        {\n          \"id\": 0,\n          \"identifier\": \"/Users/devinabbott/Projects/wba-test/worker.js\",\n          \"name\": \"./worker.js\",\n          \"index\": 0,\n          \"index2\": 0,\n          \"size\": 44,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            0\n          ],\n          \"issuer\": null,\n          \"issuerId\": null,\n          \"issuerName\": null,\n          \"issuerPath\": null,\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleId\": null,\n              \"moduleIdentifier\": null,\n              \"module\": null,\n              \"moduleName\": null,\n              \"type\": \"single entry\",\n              \"userRequest\": \"!!/Users/devinabbott/Projects/wba-test/worker.js\",\n              \"loc\": \"worker\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [\n            \"default\"\n          ],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is an entry point\"\n          ],\n          \"depth\": 0,\n          \"source\": \"import(\\\"./worker-dep\\\");\\n\\nexport default {};\\n\"\n        },\n        {\n          \"id\": 1,\n          \"identifier\": \"/Users/devinabbott/Projects/wba-test/worker-dep.js\",\n          \"name\": \"./worker-dep.js\",\n          \"index\": 1,\n          \"index2\": 1,\n          \"size\": 23,\n          \"cacheable\": true,\n          \"built\": true,\n          \"optional\": false,\n          \"prefetched\": false,\n          \"chunks\": [\n            1\n          ],\n          \"issuer\": \"/Users/devinabbott/Projects/wba-test/worker.js\",\n          \"issuerId\": 0,\n          \"issuerName\": \"./worker.js\",\n          \"issuerPath\": [\n            {\n              \"id\": 0,\n              \"identifier\": \"/Users/devinabbott/Projects/wba-test/worker.js\",\n              \"name\": \"./worker.js\"\n            }\n          ],\n          \"failed\": false,\n          \"errors\": 0,\n          \"warnings\": 0,\n          \"assets\": [\n          ],\n          \"reasons\": [\n            {\n              \"moduleId\": 0,\n              \"moduleIdentifier\": \"/Users/devinabbott/Projects/wba-test/worker.js\",\n              \"module\": \"./worker.js\",\n              \"moduleName\": \"./worker.js\",\n              \"type\": \"import()\",\n              \"userRequest\": \"./worker-dep\",\n              \"loc\": \"1:0-22\"\n            }\n          ],\n          \"usedExports\": true,\n          \"providedExports\": [\n            \"foo\"\n          ],\n          \"optimizationBailout\": [\n            \"ModuleConcatenation bailout: Module is referenced from these modules with unsupported syntax: ./worker.js (referenced with import())\"\n          ],\n          \"depth\": 1,\n          \"source\": \"export const foo = 42;\\n\"\n        }\n      ],\n      \"filteredModules\": 0,\n      \"logging\": {\n        \"webpack.buildChunkGraph.visitModules\": {\n          \"entries\": [\n          ],\n          \"filteredEntries\": 5,\n          \"debug\": false\n        }\n      },\n      \"children\": [\n      ],\n      \"name\": \"worker-loader worker.js\"\n    }\n  ]\n}"
  },
  {
    "path": "test/statsUtils.js",
    "content": "const { readFileSync } = require(\"node:fs\");\nconst path = require(\"node:path\");\nconst { globSync } = require(\"tinyglobby\");\nconst { StatsSerializeStream, writeStats } = require(\"../src/statsUtils\");\n\nasync function stringify(json) {\n  return new Promise((resolve, reject) => {\n    let result = \"\";\n\n    new StatsSerializeStream(json)\n      .on(\"data\", (chunk) => (result += chunk))\n      .on(\"end\", () => resolve(result))\n      .on(\"error\", reject);\n  });\n}\n\nasync function expectProperJson(json) {\n  expect(await stringify(json)).toBe(JSON.stringify(json, null, 2));\n}\n\ndescribe(\"StatsSerializeStream\", () => {\n  it(\"should properly stringify primitives\", () => {\n    expectProperJson(0);\n    expectProperJson(1);\n    expectProperJson(-1);\n    expectProperJson(42.42);\n    expectProperJson(-42.42);\n    expectProperJson(false);\n    expectProperJson(true);\n    expectProperJson(null);\n    expectProperJson(null);\n    expectProperJson(\"\");\n    expectProperJson('\"');\n    expectProperJson(\"foo bar\");\n    expectProperJson('\"foo bar\"');\n    expectProperJson(\"Вива Лас-Вегас!\");\n  });\n\n  it(\"should properly stringify simple arrays\", () => {\n    expectProperJson([]);\n    expectProperJson([1, undefined, 2]);\n    // eslint-disable-next-line no-sparse-arrays\n    expectProperJson([1, , 2]);\n    expectProperJson([false, \"f'o\\\"o\", -1, 42.42]);\n  });\n\n  it(\"should properly stringify objects\", () => {\n    expectProperJson({});\n    expectProperJson({\n      a: 1,\n      \"foo-bar\": null,\n      undef: undefined,\n      '\"Гусь!\"': true,\n    });\n  });\n\n  it(\"should properly stringify complex structures\", () => {\n    expectProperJson({\n      foo: [],\n      bar: {\n        baz: [\n          1,\n          { a: 1, b: [\"foo\", \"bar\"], c: [] },\n          \"foo\",\n          { a: 1, b: undefined, c: [{ d: true }] },\n          null,\n          undefined,\n        ],\n      },\n    });\n  });\n\n  for (const filepath of globSync(\"stats/**/*.json\", { cwd: __dirname })) {\n    it(`should properly stringify JSON from \"${filepath}\"`, () => {\n      const content = readFileSync(path.resolve(__dirname, filepath), \"utf8\");\n      const json = JSON.parse(content);\n      expectProperJson(json);\n    });\n  }\n});\n\ndescribe(\"writeStats\", () => {\n  it(\"should fail gracefully if writing to a non-existent directory\", async () => {\n    const nonExistentPath = path.join(\n      __dirname,\n      \"non-existent-dir\",\n      \"stats.json\",\n    );\n    await expect(\n      writeStats({ foo: \"bar\" }, nonExistentPath),\n    ).rejects.toMatchObject({ code: \"ENOENT\" });\n  });\n});\n"
  },
  {
    "path": "test/utils.js",
    "content": "const { createAssetsFilter } = require(\"../src/utils\");\n\ndescribe(\"createAssetsFilter\", () => {\n  it(\"should create a noop filter if pattern is not set\", () => {\n    for (const pattern of [undefined, null, []]) {\n      const filter = createAssetsFilter(pattern);\n      expect(filter(\"foo\")).toBe(true);\n    }\n  });\n\n  it(\"should allow a string as a pattern\", () => {\n    const filter = createAssetsFilter(\"^foo\");\n    expect(filter(\"foo\")).toBe(false);\n    expect(filter(\"foo-bar\")).toBe(false);\n    expect(filter(\"bar\")).toBe(true);\n    expect(filter(\"bar-foo\")).toBe(true);\n  });\n\n  it(\"should allow a RegExp as a pattern\", () => {\n    const filter = createAssetsFilter(/^foo/iu);\n    expect(filter(\"foo\")).toBe(false);\n    expect(filter(\"FOO\")).toBe(false);\n    expect(filter(\"foo-bar\")).toBe(false);\n    expect(filter(\"bar\")).toBe(true);\n    expect(filter(\"bar-foo\")).toBe(true);\n  });\n\n  it(\"should allow a filter function as a pattern\", () => {\n    const filter = createAssetsFilter((asset) => asset.startsWith(\"foo\"));\n    expect(filter(\"foo\")).toBe(false);\n    expect(filter(\"foo-bar\")).toBe(false);\n    expect(filter(\"bar\")).toBe(true);\n    expect(filter(\"bar-foo\")).toBe(true);\n  });\n\n  it(\"should throw on invalid pattern types\", () => {\n    expect(() => createAssetsFilter(5)).toThrow('but \"5\" got');\n    expect(() => createAssetsFilter({ a: 1 })).toThrow('but \"{ a: 1 }\" got');\n    expect(() => createAssetsFilter([true])).toThrow('but \"true\" got');\n  });\n\n  it(\"should allow an array of patterns\", () => {\n    const filter = createAssetsFilter([\n      \"^foo\",\n      /bar$/iu,\n      (asset) => asset.includes(\"baz\"),\n    ]);\n    expect(filter(\"foo\")).toBe(false);\n    expect(filter(\"bar\")).toBe(false);\n    expect(filter(\"fooBar\")).toBe(false);\n    expect(filter(\"fooBARbaz\")).toBe(false);\n    expect(filter(\"bar-foo\")).toBe(true);\n  });\n});\n"
  },
  {
    "path": "test/viewer.js",
    "content": "const crypto = require(\"node:crypto\");\nconst net = require(\"node:net\");\n\nconst Logger = require(\"../src/Logger\");\nconst { getEntrypoints, startServer } = require(\"../src/viewer\");\n\ndescribe(\"WebSocket server\", () => {\n  it(\"should not crash when an error is emitted on the websocket\", (done) => {\n    const bundleStats = {\n      assets: [{ name: \"bundle.js\", chunks: [0] }],\n    };\n\n    const options = {\n      openBrowser: false,\n      logger: new Logger(\"silent\"),\n      port: 0,\n      analyzerUrl: () => \"\",\n    };\n\n    startServer(bundleStats, options)\n      .then(({ http: server }) => {\n        // The GUID constant defined in WebSocket protocol\n        // https://tools.ietf.org/html/rfc6455#section-1.3\n        const GUID = \"258EAFA5-E914-47DA-95CA-C5AB0DC85B11\";\n\n        // The client-generated \"Sec-WebSocket-Key\" header field value.\n        const key = crypto.randomBytes(16).toString(\"base64\");\n\n        // The server-generated \"Sec-WebSocket-Accept\" header field value.\n        const accept = crypto\n          .createHash(\"sha1\")\n          .update(key + GUID)\n          .digest(\"base64\");\n\n        const socket = net.createConnection(server.address().port, () => {\n          socket.write(\n            [\n              \"GET / HTTP/1.1\",\n              \"Host: localhost\",\n              \"Upgrade: websocket\",\n              \"Connection: Upgrade\",\n              `Sec-WebSocket-Key: ${key}`,\n              \"Sec-WebSocket-Version: 13\",\n              \"\",\n              \"\",\n            ].join(\"\\r\\n\"),\n          );\n        });\n\n        socket.on(\"close\", () => {\n          server.close(done);\n        });\n\n        let count = 0;\n        socket.on(\"data\", (chunk) => {\n          ++count;\n          const expected = Buffer.from(\n            [\n              \"HTTP/1.1 101 Switching Protocols\",\n              \"Upgrade: websocket\",\n              \"Connection: Upgrade\",\n              `Sec-WebSocket-Accept: ${accept}`,\n              \"\",\n              \"\",\n            ].join(\"\\r\\n\"),\n          );\n\n          // Because data may be received in multiple chunks, only check the first one\n          if (count === 1) {\n            expect(chunk.equals(expected)).toBe(true);\n          }\n\n          // Send a WebSocket frame with a reserved opcode (5) to trigger an error\n          // to be emitted on the server.\n          socket.write(Buffer.from([0x85, 0x00]));\n        });\n      })\n      .catch(done);\n  });\n});\n\ndescribe(\"getEntrypoints\", () => {\n  it(\"should get all entrypoints\", () => {\n    const bundleStats = {\n      entrypoints: {\n        A: {\n          name: \"A\",\n          assets: [\n            {\n              name: \"chunkA.js\",\n            },\n          ],\n        },\n        B: {\n          name: \"B\",\n          assets: [\n            {\n              name: \"chunkA.js\",\n            },\n            {\n              name: \"chunkB.js\",\n            },\n          ],\n        },\n      },\n    };\n    expect(JSON.stringify(getEntrypoints(bundleStats))).toBe(\n      JSON.stringify([\"A\", \"B\"]),\n    );\n  });\n\n  it(\"should handle when bundlestats is null or undefined\", () => {\n    expect(JSON.stringify(getEntrypoints(null))).toBe(JSON.stringify([]));\n    expect(JSON.stringify(getEntrypoints(undefined))).toBe(JSON.stringify([]));\n  });\n\n  it(\"should handle when bundlestats is empty\", () => {\n    const bundleStatsWithoutEntryPoints = {};\n    expect(JSON.stringify(getEntrypoints(bundleStatsWithoutEntryPoints))).toBe(\n      JSON.stringify([]),\n    );\n  });\n\n  it(\"should handle when entrypoints is empty\", () => {\n    const bundleStatsEmptyEntryPoint = { entrypoints: {} };\n    expect(JSON.stringify(getEntrypoints(bundleStatsEmptyEntryPoint))).toBe(\n      JSON.stringify([]),\n    );\n  });\n});\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"target\": \"esnext\",\n    \"moduleResolution\": \"node\",\n    \"allowJs\": true,\n    \"checkJs\": true,\n    \"strict\": true,\n    \"types\": [\"node\"],\n    \"resolveJsonModule\": true,\n    \"allowSyntheticDefaultImports\": true\n  },\n  \"include\": [\"./src/**/*\"]\n}\n"
  },
  {
    "path": "webpack.config.js",
    "content": "\"use strict\";\n\nconst path = require(\"node:path\");\nconst TerserPlugin = require(\"terser-webpack-plugin\");\nconst webpack = require(\"webpack\");\nconst BundleAnalyzePlugin = require(\"./lib/BundleAnalyzerPlugin\");\n\nconst isDev = (process.env.NODE_ENV || \"production\") === \"development\";\nconst needAnalyze = process.env.ANALYZE || false;\n\nmodule.exports = {\n  mode: process.env.NODE_ENV || \"production\",\n  context: __dirname,\n  entry: isDev\n    ? [\"preact/debug\", \"./client/viewer.jsx\"]\n    : \"./client/viewer.jsx\",\n  output: {\n    path: path.resolve(__dirname, \"./public\"),\n    filename: \"viewer.js\",\n    publicPath: \"/\",\n  },\n  resolve: {\n    alias: {\n      react: \"preact/compat\",\n      \"react-dom/test-utils\": \"preact/test-utils\",\n      \"react-dom\": \"preact/compat\",\n    },\n  },\n  devtool: isDev ? \"eval\" : \"source-map\",\n  performance: {\n    hints: false,\n  },\n  optimization: {\n    minimize: !isDev,\n    minimizer: [\n      new TerserPlugin({\n        terserOptions: {\n          output: {\n            comments: /copyright/iu,\n          },\n          safari10: true,\n        },\n      }),\n    ],\n  },\n  module: {\n    rules: [\n      {\n        test: /\\.jsx?$/u,\n        exclude: /node_modules/u,\n        loader: \"babel-loader\",\n        options: {\n          babelrc: false,\n          presets: [\n            [\n              \"@babel/preset-env\",\n              {\n                // Target browsers are specified in .browserslistrc\n                modules: false,\n                useBuiltIns: \"usage\",\n                corejs: require(\"./package.json\").devDependencies[\"core-js\"],\n                debug: true,\n              },\n            ],\n            [\n              \"@babel/preset-react\",\n              {\n                runtime: \"automatic\",\n                importSource: \"preact\",\n              },\n            ],\n          ],\n          plugins: [\n            [\"@babel/plugin-transform-class-properties\", { loose: true }],\n            [\n              \"@babel/plugin-transform-runtime\",\n              {\n                useESModules: true,\n              },\n            ],\n          ],\n        },\n      },\n      {\n        test: /\\.css$/u,\n        use: [\n          \"style-loader\",\n          {\n            loader: \"css-loader\",\n            options: {\n              modules: {\n                localIdentName: \"[name]__[local]\",\n              },\n              importLoaders: 1,\n            },\n          },\n          {\n            loader: \"postcss-loader\",\n            options: {\n              postcssOptions: {\n                plugins: [\n                  require(\"autoprefixer\"),\n                  ...(!isDev ? [require(\"cssnano\")()] : []),\n                ],\n              },\n            },\n          },\n        ],\n      },\n      {\n        test: /\\.(png|jpg|gif|svg|eot|ttf|woff|woff2)$/u,\n        type: \"asset/inline\",\n      },\n    ],\n  },\n  plugins: ((plugins) => {\n    if (needAnalyze) {\n      plugins.push(\n        new BundleAnalyzePlugin({\n          generateStatsFile: true,\n        }),\n      );\n    }\n\n    if (!isDev) {\n      plugins.push(\n        new webpack.DefinePlugin({\n          process: JSON.stringify({\n            env: {\n              NODE_ENV: \"production\",\n            },\n          }),\n          // Fixes \"ModuleConcatenation bailout\" for some modules (e.g. Preact and MobX)\n          global: \"undefined\",\n        }),\n      );\n    }\n\n    return plugins;\n  })([]),\n};\n"
  }
]