From 7764f1488ceee38d8c66922d39d8eb917fb861ab Mon Sep 17 00:00:00 2001 From: rdksl Date: Mon, 28 Aug 2017 05:26:44 +0200 Subject: [PATCH] Initial public commit --- .babelrc | 4 + .eslintrc.json | 35 + .gitignore | 6 + LICENSE | 19 + PUBLISH.md | 95 + README.md | 252 + build/background.png | Bin 0 -> 32640 bytes build/icon.icns | Bin 0 -> 592858 bytes dev-app-update.yml | 3 + iconTemplate@2x.png | Bin 0 -> 311 bytes package.json | 81 + resources/component-app@2x.png | Bin 0 -> 397 bytes resources/component-database@2x.png | Bin 0 -> 1931 bytes resources/component-server@2x.png | Bin 0 -> 773 bytes resources/design-features@2x.png | Bin 0 -> 54531 bytes resources/download-button@2x.png | Bin 0 -> 7329 bytes resources/feature-community@2x.png | Bin 0 -> 232397 bytes resources/feature-discover.png | Bin 0 -> 369538 bytes resources/feature-install.png | Bin 0 -> 51677 bytes resources/feature-save.png | Bin 0 -> 253967 bytes resources/framer-modules-app.sketch | Bin 0 -> 9900681 bytes resources/framer-modules-icon.png | Bin 0 -> 9172 bytes resources/modules-hosting@2x.png | Bin 0 -> 83462 bytes resources/publish-button@2x.png | Bin 0 -> 8045 bytes resources/server-button@2x.png | Bin 0 -> 762 bytes resources/system-architecture@2x.png | Bin 0 -> 147248 bytes src/core/Actions.js | 161 + src/core/Response.js | 8 + src/core/ServerRequest.js | 41 + src/core/app.js | 215 + src/core/findOpen.js | 41 + src/core/handlePresets.js | 61 + src/core/parseGitHubURL.js | 21 + src/core/prototype-actions/installRemove.js | 244 + .../prototype-actions/recognizeInstalled.js | 35 + .../prototype-actions/updateRequireCommand.js | 83 + src/core/storage.js | 32 + src/core/update.js | 26 + src/interface/Action.js | 122 + src/interface/App.js | 452 ++ src/interface/components/ActionButton.js | 25 + .../components/ActionInlineButton.js | 23 + src/interface/components/Error.js | 26 + src/interface/components/Header.js | 81 + src/interface/components/HeaderNav.js | 57 + .../components/InstalledModulesList.js | 51 + src/interface/components/ListEnd.js | 20 + src/interface/components/LoadingIndicator.js | 20 + src/interface/components/ModalWindow.js | 144 + src/interface/components/ModalWindowItem.js | 37 + src/interface/components/Module.js | 74 + src/interface/components/ModuleUnmanaged.js | 21 + src/interface/components/ModulesList.js | 42 + src/interface/components/Notification.js | 22 + src/interface/components/Preset.js | 50 + src/interface/components/PresetsList.js | 40 + src/interface/components/Publish.js | 19 + src/interface/components/PublishContent.js | 62 + src/interface/components/Splash.js | 100 + src/interface/components/SplashItem.js | 32 + src/interface/createButtonActions.js | 20 + src/interface/filter.js | 40 + src/interface/index.html | 13 + src/interface/sass/App.sass | 64 + src/interface/sass/_ActionButton.sass | 45 + src/interface/sass/_ActionInlineButton.sass | 29 + src/interface/sass/_Error.sass | 25 + src/interface/sass/_Header.sass | 35 + src/interface/sass/_HeaderNav.sass | 112 + src/interface/sass/_ListEnd.sass | 20 + src/interface/sass/_LoadingIndicator.sass | 41 + src/interface/sass/_ModalWindow.sass | 68 + src/interface/sass/_Module.sass | 99 + src/interface/sass/_ModuleUnmanaged.sass | 33 + src/interface/sass/_Notification.sass | 20 + src/interface/sass/_Preset.sass | 71 + src/interface/sass/_Publish.sass | 44 + src/interface/sass/_Splash.sass | 33 + src/interface/sass/_assets.sass | 30 + src/interface/textLimit.js | 7 + src/static/ICON_GITHUB.svg | 8 + src/static/ICON_INSTALL.svg | 8 + src/static/ICON_PRESET.svg | 8 + src/static/ICON_PUBLISH.svg | 8 + src/static/ICON_PUBLISH_ACTIVE.svg | 8 + src/static/ICON_REMOVE.svg | 10 + src/static/ICON_SNIPPET.svg | 8 + src/static/INCLUDES_BADGE.svg | 9 + src/static/INCLUDES_BADGE_ACTIVE.svg | 9 + src/static/INSTALLED_BADGE.svg | 9 + src/static/LISTEND_DOT.svg | 8 + src/static/PROTOTYPE_CLOSE.svg | 8 + src/static/PROTOTYPE_ICON.svg | 33 + src/static/PUBLISH_DENY.svg | 8 + src/static/PUBLISH_FETCH_DUPL_OK.svg | 8 + src/static/PUBLISH_FETCH_OK.svg | 8 + src/static/PUBLISH_SUCCESS.svg | 8 + src/static/README.md | 4 + src/static/SEARCH_ICON.svg | 8 + src/static/THUMB.svg | 10 + src/static/UNMANAGED_BADGE.svg | 9 + webpack.config.js | 29 + yarn.lock | 5685 +++++++++++++++++ 103 files changed, 9743 insertions(+) create mode 100644 .babelrc create mode 100644 .eslintrc.json create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 PUBLISH.md create mode 100644 README.md create mode 100644 build/background.png create mode 100644 build/icon.icns create mode 100644 dev-app-update.yml create mode 100644 iconTemplate@2x.png create mode 100644 package.json create mode 100644 resources/component-app@2x.png create mode 100644 resources/component-database@2x.png create mode 100644 resources/component-server@2x.png create mode 100644 resources/design-features@2x.png create mode 100644 resources/download-button@2x.png create mode 100644 resources/feature-community@2x.png create mode 100644 resources/feature-discover.png create mode 100644 resources/feature-install.png create mode 100644 resources/feature-save.png create mode 100644 resources/framer-modules-app.sketch create mode 100644 resources/framer-modules-icon.png create mode 100644 resources/modules-hosting@2x.png create mode 100644 resources/publish-button@2x.png create mode 100644 resources/server-button@2x.png create mode 100644 resources/system-architecture@2x.png create mode 100644 src/core/Actions.js create mode 100644 src/core/Response.js create mode 100644 src/core/ServerRequest.js create mode 100644 src/core/app.js create mode 100644 src/core/findOpen.js create mode 100644 src/core/handlePresets.js create mode 100644 src/core/parseGitHubURL.js create mode 100644 src/core/prototype-actions/installRemove.js create mode 100644 src/core/prototype-actions/recognizeInstalled.js create mode 100644 src/core/prototype-actions/updateRequireCommand.js create mode 100644 src/core/storage.js create mode 100644 src/core/update.js create mode 100644 src/interface/Action.js create mode 100644 src/interface/App.js create mode 100644 src/interface/components/ActionButton.js create mode 100644 src/interface/components/ActionInlineButton.js create mode 100644 src/interface/components/Error.js create mode 100644 src/interface/components/Header.js create mode 100644 src/interface/components/HeaderNav.js create mode 100644 src/interface/components/InstalledModulesList.js create mode 100644 src/interface/components/ListEnd.js create mode 100644 src/interface/components/LoadingIndicator.js create mode 100644 src/interface/components/ModalWindow.js create mode 100644 src/interface/components/ModalWindowItem.js create mode 100644 src/interface/components/Module.js create mode 100644 src/interface/components/ModuleUnmanaged.js create mode 100644 src/interface/components/ModulesList.js create mode 100644 src/interface/components/Notification.js create mode 100644 src/interface/components/Preset.js create mode 100644 src/interface/components/PresetsList.js create mode 100644 src/interface/components/Publish.js create mode 100644 src/interface/components/PublishContent.js create mode 100644 src/interface/components/Splash.js create mode 100644 src/interface/components/SplashItem.js create mode 100644 src/interface/createButtonActions.js create mode 100644 src/interface/filter.js create mode 100644 src/interface/index.html create mode 100644 src/interface/sass/App.sass create mode 100644 src/interface/sass/_ActionButton.sass create mode 100644 src/interface/sass/_ActionInlineButton.sass create mode 100644 src/interface/sass/_Error.sass create mode 100644 src/interface/sass/_Header.sass create mode 100644 src/interface/sass/_HeaderNav.sass create mode 100644 src/interface/sass/_ListEnd.sass create mode 100644 src/interface/sass/_LoadingIndicator.sass create mode 100644 src/interface/sass/_ModalWindow.sass create mode 100644 src/interface/sass/_Module.sass create mode 100644 src/interface/sass/_ModuleUnmanaged.sass create mode 100644 src/interface/sass/_Notification.sass create mode 100644 src/interface/sass/_Preset.sass create mode 100644 src/interface/sass/_Publish.sass create mode 100644 src/interface/sass/_Splash.sass create mode 100644 src/interface/sass/_assets.sass create mode 100644 src/interface/textLimit.js create mode 100644 src/static/ICON_GITHUB.svg create mode 100644 src/static/ICON_INSTALL.svg create mode 100644 src/static/ICON_PRESET.svg create mode 100644 src/static/ICON_PUBLISH.svg create mode 100644 src/static/ICON_PUBLISH_ACTIVE.svg create mode 100644 src/static/ICON_REMOVE.svg create mode 100644 src/static/ICON_SNIPPET.svg create mode 100644 src/static/INCLUDES_BADGE.svg create mode 100644 src/static/INCLUDES_BADGE_ACTIVE.svg create mode 100644 src/static/INSTALLED_BADGE.svg create mode 100644 src/static/LISTEND_DOT.svg create mode 100644 src/static/PROTOTYPE_CLOSE.svg create mode 100644 src/static/PROTOTYPE_ICON.svg create mode 100644 src/static/PUBLISH_DENY.svg create mode 100644 src/static/PUBLISH_FETCH_DUPL_OK.svg create mode 100644 src/static/PUBLISH_FETCH_OK.svg create mode 100644 src/static/PUBLISH_SUCCESS.svg create mode 100644 src/static/README.md create mode 100644 src/static/SEARCH_ICON.svg create mode 100644 src/static/THUMB.svg create mode 100644 src/static/UNMANAGED_BADGE.svg create mode 100644 webpack.config.js create mode 100644 yarn.lock diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000..4aa11a5 --- /dev/null +++ b/.babelrc @@ -0,0 +1,4 @@ +{ + "presets": ["react", "es2015"], + "plugins": ["transform-class-properties"] +} diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..66dd0a1 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,35 @@ +{ + "env": { + "browser": true, + "es6": true, + "node": true + }, + "extends": ["eslint:recommended"], + "parserOptions": { + "ecmaFeatures": { + "experimentalObjectRestSpread": true, + "jsx": true + }, + "sourceType": "module", + "allowImportExportEverywhere": false, + "codeFrame": false + }, + "rules": { + "indent": [ + "error", + 4 + ], + "linebreak-style": [ + "error", + "unix" + ], + "quotes": [ + "error", + "single" + ], + "semi": [ + "error", + "never" + ] + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86dc2cb --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.DS_Store +node_modules +app +dist +yarn-error.log +dump.md diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..a6d75f0 --- /dev/null +++ b/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2017 Radek Kyselý + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/PUBLISH.md b/PUBLISH.md new file mode 100644 index 0000000..8c5ac04 --- /dev/null +++ b/PUBLISH.md @@ -0,0 +1,95 @@ +# Publish Your Module + +## 1. Create an example code (snippet) +People who will use your module need to know how it works. For these purposes, +*create a code snippet* that shows how to use your module and save it +in a `.coffee` file. + +Please don't include `require()` statement in your example. + +## 2. Create `module.json` +Module.json holds all important metadata about your module. + +| key | type | description | +| ---------------|:-----------------:|---------------------------------------| +| `name` | *String* | Human readable name of your module that is seen in the app.

*Do know that a `unique_name` **will be automatically created** from the `name` and used as the main identificator for the directory name, dependency link, etc.

[Check for name availability and `unique_name` before publishing](https://checkname.framermodules.com)* +| `description` | *String* | Brief description of what your module does *(recommended 100 characters).*

*Keep in mind including keywords in description greatly increases chances of being found via the app search.* +| `author` | *String* | Your name, right? +| `require` | *String* | A `require()` statement that will load your module to the prototype.

*Please avoid using path to the module file that includes `.framer`. Framer won't be able to recognize the module.* +| `install` | *String or Array* | Path to the file(s) you'd like to be downloaded and installed to the prototype. Please note it's only possible to define exact files, not full directories. +| `example` | *String* | Path to the file with the snippet created in step 1. +| `thumb` *(optional)* | *String* | Path to the thumbnail. Thumbnails are shown at `80×80px` (@2x is recommended).
Please use a thumbnail with opaque background (`#1D1D1F` is recommended). Allowed filetypes are `mp4` `mov` `png` `jpg` `gif`. +| `dependencies` *(optional)* | *Array* | Array of dependencies' *unique names*. Please note each dependency will be installed inside a subdirectory named after their `unique_name`. + +### Example `module.json` +Taken from [this module](https://github.com/kysely/framer-bidirectional-cycle). +```javascript +{ + "name": "Bidirectional Cycle", + "description": "Extension that will make Utils.cycle() iterate in both directions", + "author": "Radek Kysely", + + "require": "Utilscycle = require 'Utilscycle'", + "install": "Utilscycle.coffee", + "example": "example.coffee", + + "thumb": "bidirectional-cycle-thumb.mov" +} +``` + +### Note +To maintain clean prototype directories hierarchy, modules will be installed to +a subdirectory in `modules` folder named after their `unique_name`. If you need +to reach parent directories from your code, please use one more set of `../`. + +Please note the `require()` command *will be automatically updated* to reach +module's actual directory. + +*Example: A module named `iOS Status Bar` will get a unique name `ios-status-bar` +and will be installed to `/modules/ios-status-bar/`. +All paths inside your repository will be preserved under the modules's directory.* + +## 3. Push to GitHub +And keep it there. Your module will always be installed from its GitHub repository. + +### Add the badge to your README +*If you want to* that show your module can be discovered and installed +via Framer Modules, you can include the following badge to your `README.md`. +Clicking the badge will also automatically open the app and redirect the +user to your module! + +Install with Framer Modules + +Just copy one of the snippets and replace `` with yours as defined in `name` key. + +HTML **(recommended, will use @2x)** +```html + + Install with Framer Modules + +``` + +Markdown (will use @1x) +```md +[![Install with Framer Modules](https://www.framermodules.com/assets/badge.png)](https://open.framermodules.com/) +``` + +## 4. Publish to Framer Modules +Open Framer Modules, click Publish button in the top right corner, +enter your GitHub repository link and follow the instructions on the screen. + +## Okay, how do I update? +Just push the changes to GitHub. If you make some changes to `module.json`, +please re-publish in Framer Modules as described in step #4. + +--- +## Questions? +[Open an issue](https://github.com/kysely/framer-modules/issues) | +[Send me an e-mail](mailto:kyselyradek@gmail.com) | +[Reach me on Messenger](https://m.me/kysely) + +--- + +### [← Return to the main page](https://github.com/kysely/framer-modules) diff --git a/README.md b/README.md new file mode 100644 index 0000000..4190345 --- /dev/null +++ b/README.md @@ -0,0 +1,252 @@ +

+ Framer Modules Icon +

+ +

Framer Modules

+

Discover, install and save your favorite modules at one place

+ +

+ + Download Framer Modules + +

+

+ + Download Framer Modules + +

+ +
+ +## :sparkles: Discover +Looking for the right module used to be time-consuming and annoying—you didn't know if +a module for the job exists, you weren't sure where to look for it and you had to +manually download and move the files just to try things out. + +Not anymore. Search for what you need and discover new useful modules without +disrupting your workflow during prototyping. Not sure what's available? Try **'all'** + +![Screenshot of listing the whole registry](./resources/feature-discover.png) + +
+ +## :zap: Install +Tired of downloading and copying modules to the prototype on your own? +We all are. That's why installing modules is now so easy even your grandma +can do it. Seriously, it's just “press Enter”. + +All modules ship with example code snippets. When you're not yet familiar with +how a module works, press Cmd C and paste the code in Framer. + + +Found out you don't need the module anymore? Press Cmd Backspace +and say bye *(the latter is optional)*. + +###### Please make sure your prototype is saved before installing a module. + +![Screenshot of 'Installed' tab](./resources/feature-install.png) + +
+ +## :heart: Save +Yes, it's true. You can now save your favorite or regularly used modules in presets +and install them to the prototype in batch with one button. Making wireframe prototype? +Install these. Doing VR? Install those. Anything you need. + +Just press Cmd S on a selected module, add it to a preset +or create new one and save even more time! + +![Screenshot of adding module to a preset](./resources/feature-save.png) + +
+ +### All the shortcuts you'll ever need + +| Action | Shortcut | +| ------------------------------------------|-------------------------------------| +| **Open Framer Modules window** | Cmd ; | +| Switch between individual tabs | Tab | +| Close the window | Esc | +| **Selected module** | | +| Install selected module | return | +| Copy the code snippet for selected module | Cmd C | +| Save the module to a preset | Cmd S | +| Go to module's GitHub repository | Cmd G | +| Remove module | Cmd Backspace | +| **Selected preset** | | +| Install modules from preset | return | +| Delete preset | Cmd Backspace | +| Edit preset modules | Cmd E | + +![It's what we make it. So let's make it great!](./resources/feature-community@2x.png) + +The “community-driven” part in the description is not just an empty phrase. +This app is developed by the same people who are using it. If you are +one of them (actually... us) and want to make our modules registry/manager even +better, **you're more than welcome to contribute**. + +This part of the docs will hopefully acquaint you with the inner workings of +the whole system. + +## Architecture + +### Hosting the modules and `module.json` +Due to this project's open-source nature, the modules' management was designed +to be as easy as possible and seamlessly integrated with other technologies +available. + +That's why there is **no own** server **hosting** the actual modules files. +Instead, **modules are hosted on GitHub** and recognized by their **`module.json`** +metadata file. Upon the installation, module files are pulled from the GitHub +repository as specified in *module.json* and installed to the prototype. + +That is why we don't need our own fileserver and why the **Framer Modules registry +is basically just a database holding modules' `module.json` files**. + +![Modules Hosting Scheme](./resources/modules-hosting@2x.png) + +Hosting on GitHub also provides us the perks of **not needing user accounts**. +When the module is published to the registry, it carries the information +about the author in its repository link. This is enough to recognize the author +and give them the permissions to update and overwrite. Publishing or updating +a module with the same name from a different GitHub user is automatically rejected. + +### System Components & Technology stack +You can say the whole system consists of 3 major parts: + +- **[Framer Modules app](#framer-modules-app)** — The main app for the designer + that handles the prototype management +- **[Server](#server)** — Small server for communication with the modules registry +- **[Modules Registry](#modules-registry-database)** — Collection of modules + metadata in database + +

+ Framer Modules Icon + Framer Modules App +

+ +Is built on [**`Electron`**](https://electron.atom.io) and handles all actions +related to prototype management. The app is split into two parts that communicate +with each other using `ipcMain` and `ipcRenderer` modules from Electron. + +#### Core +The `main` Electron process that is responsible for all 3 main types of actions being taken. + +First is communication with the renderer process via `ipc`. Literally all methods for this +are defined in self-titled `Actions.js`. Some methods also preprocess the responses +before sending them back to renderer process, but otherwise they're pretty straightforward. + +Second type of actions is HTTP requests. Although the requests are being used throughout +the whole core and aren't defined at one place, they all use +[**`request`**](https://www.npmjs.com/package/request) package to make the calls. +However, methods for making the requests to the Framer Modules server share many properties +and thus are defined in `ServerRequest.js`. + +And last but not least, the actions that actually handle the prototype are to be found +in `prototype-actions` subdirectory. The functions are fed `module.json` +(or an array of those) and prototype's path. Using `request`, they then **pull the files** +from the corresponding GitHub repository as defined in the JSON and **pipe them** to +the module-specific subfolder in prototype's `modules` directory. + +If the un/installation is successful, the core will update prototype's +`app.coffee` (by adding/removing `require()` statement) and +`framer/config.json` (by recalculating folded code ranges). If any error occurs during +the installation, the whole module gets removed. + +Installed modules are also recognized by directory name and `module.json` inside. +Any loose files or directories without `module.json` will result in “unmanaged” modules. + +#### Interface +Interface is written with [**`React`**](https://facebook.github.io/react/) and +although we are *not* using any “single source of truth” state container, +**the state** for the most of the app **is stored within a single**, highest-level, +component. There are two components that have their own state, `Splash` and +`ModalWindow`, and the reasons for those are pretty obvious in use. + +Please note that because I couldn't get `webpack` to bundle `ipcRenderer` module +from Electron, the methods for communication between the two processes are defined +in the separate `Action.js` file loaded to the page via ` + + + diff --git a/src/interface/sass/App.sass b/src/interface/sass/App.sass new file mode 100644 index 0000000..dfa0446 --- /dev/null +++ b/src/interface/sass/App.sass @@ -0,0 +1,64 @@ +@import assets + +// TEXT CONFIG +$fontFamilyDisplay: -apple-system, 'SF UI Display', 'Roboto', Helvetica, sans-serif +$fontFamilyText: -apple-system, 'SF UI Text', 'Roboto', Helvetica, sans-serif + +$fontWeightRegular: 300 +$fontWeightMedium: 400 + +// COLORS +$colorWhite: rgb(255, 255, 255) +$colorSelectedBlue: rgba(20, 91, 255, 0.81) +$colorSelectedBlueOp: rgba(20, 91, 255, 1) +$colorFocus: rgba(255, 255, 255, 0.06) + +$blueTint: rgba(173, 180, 255, 0.04) + +$colorLightGrey: rgb(225, 229, 239) + +// OTHER CONFIGS +$windowWidth: 680px +$windowHeight: 480px +$actionButtonSize: 23px +$contentHeight: 385px + +html + user-select: none + background-color: $blueTint + // background: rgb(29,29,31) + +body + margin: 0 + padding: 0 + color: $colorWhite + text-rendering: optimizeLegibility !important + overflow: hidden + +ul + margin: 0 + padding: 0 + +li + list-style-type: none + +main + margin: 95px 0 0 0 + width: 100% + height: $contentHeight + overflow: auto + +@import HeaderNav +@import Header +@import Module +@import ModuleUnmanaged +@import Preset +@import ActionButton +@import ActionInlineButton +@import ListEnd +@import Error +@import Notification +@import ModalWindow +@import LoadingIndicator +@import Publish +@import Splash diff --git a/src/interface/sass/_ActionButton.sass b/src/interface/sass/_ActionButton.sass new file mode 100644 index 0000000..6bc409d --- /dev/null +++ b/src/interface/sass/_ActionButton.sass @@ -0,0 +1,45 @@ +$actionButtonWidth: 40px +$actionButtonHeight: 60px +$actionButtonBackground: rgba(255, 255, 255, 0.1) + +$fontSizeButtonLabel: 11px #{'/'} 13px + +$fontColorButtonLabel: rgb(255, 255, 255) +$fontColorButtonShort: rgb(198, 215, 255) + +$icons: ('INSTALL', 'SNIPPET', 'PRESET', 'GITHUB', 'REMOVE') +@each $icon in $icons + .icon.#{$icon} + background-image: url(nth($ICONS_LIST, index($icons, $icon))) + background-repeat: no-repeat + +button.actionButton + padding: 0 + width: $actionButtonWidth + height: $actionButtonHeight + border-radius: 3px + border: none + outline: none + background: none + overflow: hidden + + div.icon + margin: 0 auto 7px auto + width: $actionButtonSize + height: $actionButtonSize + border-radius: $actionButtonSize/2 + background-color: $actionButtonBackground + + span.label + margin: 0 0 4px 0 + display: block + font: $fontWeightRegular $fontSizeButtonLabel $fontFamilyText + color: $fontColorButtonLabel + + span.short + display: block + font: italic $fontWeightRegular $fontSizeButtonLabel $fontFamilyText + color: $fontColorButtonShort + +button.actionButton:focus + background-color: $colorFocus diff --git a/src/interface/sass/_ActionInlineButton.sass b/src/interface/sass/_ActionInlineButton.sass new file mode 100644 index 0000000..4c06f59 --- /dev/null +++ b/src/interface/sass/_ActionInlineButton.sass @@ -0,0 +1,29 @@ +$actionInlineButtonHeight: 23px +$actionButtonBackground: rgba(255, 255, 255, 0.1) + +$fontSizeInlineButton: 11px #{'/'} 23px + +button.actionInlineButton + padding: 0 0 0 5px + height: $actionInlineButtonHeight + border-radius: 3px + border: none + outline: none + background: none + overflow: hidden + + div.icon + float: right + display: inline-block + margin: 0 + width: $actionButtonSize + height: $actionButtonSize + + span.short + float: left + display: inline-block + font: italic $fontWeightRegular $fontSizeInlineButton $fontFamilyText + color: $fontColorButtonLabel + +button.actionInlineButton:focus + background-color: $colorFocus diff --git a/src/interface/sass/_Error.sass b/src/interface/sass/_Error.sass new file mode 100644 index 0000000..9680095 --- /dev/null +++ b/src/interface/sass/_Error.sass @@ -0,0 +1,25 @@ +$errorHeight: 50px +$errorBackground: rgb(214, 43, 76) + +$fontColorError: rgb(255, 246, 247) + +aside.error + position: fixed + bottom: 0 + z-index: 1001 + width: 100% + height: $errorHeight + background-color: $errorBackground + overflow: hidden + box-sizing: border-box + text-align: center + box-shadow: 0 2px 30px 0 rgba(0,0,0,0.50) + + button + float: left + margin: 13px -30px 0 7px + + p + margin: 15px 0 0 0 + font: $fontWeightRegular $fontSizeModuleDesc $fontFamilyText + color: $fontColorError diff --git a/src/interface/sass/_Header.sass b/src/interface/sass/_Header.sass new file mode 100644 index 0000000..93eb95b --- /dev/null +++ b/src/interface/sass/_Header.sass @@ -0,0 +1,35 @@ +$headerHeight: 95px + +$fontColorSearch: rgba(243, 246, 255, 0.82) +$fontColorSearchPlaceholder: rgb(133, 138, 149) +$fontSizeSearch: 24px + +header + position: fixed + top: 0 + z-index: 1000 + width: 100% + height: $headerHeight + border-bottom: 1px solid $headerSeparator + background: url($SEARCH_ICON) 0 $headerNavHeight no-repeat + overflow: hidden + box-sizing: border-box + + input + padding: 0 + margin: 0 0 0 50px + width: 100% + height: $headerHeight - $headerNavHeight + font: $fontWeightRegular $fontSizeSearch $fontFamilyDisplay + color: $fontColorSearch + letter-spacing: 0.2px + background: none + border: none + outline: none + + input:focus + margin-top: 0 + padding: 0 + + input::placeholder + color: $fontColorSearchPlaceholder diff --git a/src/interface/sass/_HeaderNav.sass b/src/interface/sass/_HeaderNav.sass new file mode 100644 index 0000000..c877f0e --- /dev/null +++ b/src/interface/sass/_HeaderNav.sass @@ -0,0 +1,112 @@ +$tabsHeight: 22px +$tabsItemWidth: 87px +$tabsBackground: rgba(216, 216, 216, 0.06) +$tabsItemSeparator: rgba(192, 215, 255, 0.07) + +$fontSizeTabs: 10px +$fontColorTabs: rgb(198, 215, 255) + +$headerNavHeight: 40px +$headerNavBackground: rgba(19, 19, 19, 0.15) +$headerSeparator: rgba(255, 255, 255, 0.06) + +$fontSizePrototypeName: 13px #{'/'} $headerNavHeight +$fontColorPrototypeName: rgba(213, 215, 223, 0.66) + +section.headerNav + -webkit-app-region: drag + width: 100% + height: $headerNavHeight + background-color: $headerNavBackground + border-bottom: 1px solid $headerSeparator + overflow: hidden + box-sizing: border-box + + h1 + padding: 0 0 0 50px + margin: 0 + float: left + display: inline-block + width: 160px + background: url($PROTOTYPE_ICON) top left no-repeat + color: $fontColorPrototypeName + font: $fontWeightRegular $fontSizePrototypeName $fontFamilyText + + button + display: none + margin: 0 0 0 3px + height: 20px + width: 9px + background: url($PROTOTYPE_CLOSE) top center no-repeat + border-radius: 3px + border: none + outline: none + + span + visibility: hidden + + button:focus + background-color: $tabsBackground + + h1:hover + button + display: inline-block + + aside + float: right + + button + margin: 8px 11px 0 0 + width: $actionButtonSize + height: $actionButtonSize + border-radius: $actionButtonSize/2 + background: url($ICON_PUBLISH) + border: none + outline: none + + span + visibility: hidden + + button:focus + background-color: $tabsBackground + + button.active + background: $colorSelectedBlue url($ICON_PUBLISH_ACTIVE) + + + nav + clear: both + display: inline-block + margin: 8px auto + width: $tabsItemWidth * 3 + height: $tabsHeight + background-color: $tabsBackground + border-radius: 3px + overflow: hidden + + button + margin: 0 + padding: 0 + width: $tabsItemWidth + height: $tabsHeight + color: $fontColorTabs + font: $fontWeightRegular $fontSizeTabs $fontFamilyText + text-transform: uppercase + letter-spacing: 0.2px + box-sizing: border-box + background: none + border: none + outline: none + border-left: 1px solid $tabsItemSeparator + transition: 0.1s all + + button:first-child + border-left: none + + button:focus + background-color: $colorFocus + + button.active + background-color: $colorSelectedBlue + color: $colorWhite + transition: 0.1s all diff --git a/src/interface/sass/_ListEnd.sass b/src/interface/sass/_ListEnd.sass new file mode 100644 index 0000000..eb18339 --- /dev/null +++ b/src/interface/sass/_ListEnd.sass @@ -0,0 +1,20 @@ +$listEndHeight: 55px +$moduleThumbSize: 80px +$moduleSeparator: rgba(223, 229, 235, 0.06) +$moduleThumbBorder: rgb(51, 51, 51) +$moduleThumbBorderActive: rgb(90, 200, 250) + +$fontSizeListEnd: 14px #{'/'} 21px + +li.listEnd + width: 100% + height: $listEndHeight + background: url($LISTEND_DOT) center 12px no-repeat + overflow: hidden + text-align: center + + p + margin: 27px 0 0 0 + font: $fontWeightRegular $fontSizeListEnd $fontFamilyText + color: $fontColorModuleDesc + letter-spacing: 0.2px diff --git a/src/interface/sass/_LoadingIndicator.sass b/src/interface/sass/_LoadingIndicator.sass new file mode 100644 index 0000000..bcccf77 --- /dev/null +++ b/src/interface/sass/_LoadingIndicator.sass @@ -0,0 +1,41 @@ +$loadingIndicatorHeight: 1px +$loadingPieceWidth: 100px + +@keyframes loadingAnimation + 0% + left: 0px + 50% + left: $windowWidth - $loadingPieceWidth + 100% + left: 0px + +@keyframes blinkLoaded + 0% + background-color: rgba(20, 91, 255, 0) + 50% + background-color: rgba(20, 91, 255, 1) + 100% + background-color: rgba(20, 91, 255, 0) + +div.loadingIndicator + position: absolute + top: 38px + left: 0 + width: 100% + height: $loadingIndicatorHeight + overflow: hidden + + div.loadingPiece + display: none + position: relative + width: $loadingPieceWidth + height: $loadingIndicatorHeight + background-color: $colorSelectedBlue + animation: loadingAnimation 1s infinite + +div.loadingIndicator.false + animation: blinkLoaded 300ms 1 + +div.loadingIndicator.true + div.loadingPiece + display: block diff --git a/src/interface/sass/_ModalWindow.sass b/src/interface/sass/_ModalWindow.sass new file mode 100644 index 0000000..ed70108 --- /dev/null +++ b/src/interface/sass/_ModalWindow.sass @@ -0,0 +1,68 @@ +$modalWindowWidth: 300px +$modalWindowHeight: 250px +$modalItemHeight: 40px +$modalListSeparator: rgba(192, 215, 255, 0.1) +$modalWindowBackground: rgb(32, 36, 44) +$modalInputBackground: rgba(191, 210, 255, 0.10) + +$fontSizeModalInput: 14px #{'/'} 40px +$fontColorModalInput: rgb(192, 215, 255) +$fontColorModalInputPlaceholder: rgb(145, 158, 186) + +div.modalOverlay + position: fixed + top: 0 + left: 0 + z-index: 1002 + width: 100% + height: 100% + background-color: rgba(0, 0, 0, 0.4) + +div#modalWindow + margin: 115px auto + padding: 0 + width: $modalWindowWidth + height: $modalWindowHeight + border-radius: 6px + overflow: auto + outline: none + background-color: $modalWindowBackground + box-shadow: 0 2px 30px 0 rgba(0,0,0,0.50) + z-index: 1003 + + input + margin: 10px + padding: 0 10px + width: calc(100% - 20px) + height: 30px + background: $modalInputBackground + font: $fontWeightRegular $fontSizeModalInput $fontFamilyText + color: $fontColorModalInput + border-radius: 3px + box-sizing: border-box + border: none + outline: none + + input::placeholder + color: $fontColorModalInputPlaceholder + + li.modalItem + height: $modalItemHeight + border-bottom: 1px solid $modalListSeparator + box-sizing: border-box + + span.itemLabel + margin: 0 0 0 20px + font: $fontWeightRegular $fontSizeModalInput $fontFamilyText + color: $colorWhite + + button + display: none + float: right + margin: 9px 20px 0 0 + + li.modalItem.selected + background-color: $colorSelectedBlue + + button + display: block diff --git a/src/interface/sass/_Module.sass b/src/interface/sass/_Module.sass new file mode 100644 index 0000000..159adc2 --- /dev/null +++ b/src/interface/sass/_Module.sass @@ -0,0 +1,99 @@ +$moduleHeight: 110px +$moduleThumbSize: 80px +$moduleSeparator: rgba(223, 229, 235, 0.06) +$moduleThumbBorder: rgb(51, 51, 51) +$moduleThumbBorderActive: rgb(90, 200, 250) + +$fontSizeModuleName: 20px #{'/'} 24px +$fontSizeModuleDesc: 14px #{'/'} 21px +$fontSizeModuleAuthor: 13px + +$fontColorModuleName: rgb(225, 229, 235) +$fontColorModuleDesc: rgb(180, 183, 192) + +li.module + position: relative + width: 100% + height: $moduleHeight + border-bottom: 1px solid $moduleSeparator + overflow: hidden + box-sizing: border-box + + div.moduleThumbnail + margin: 13px 18px 0 15px + float: left + width: $moduleThumbSize + height: $moduleThumbSize + background-image: url($THUMB) + border-radius: 5px + border: 2px solid $moduleThumbBorder + overflow: hidden + + video, img + margin: 0 + width: $moduleThumbSize + height: $moduleThumbSize + + div.moduleDetails + float: left + + h2 + width: 540px + height: 24px + overflow: hidden + margin: 18px 0 10px 0 + font: $fontWeightRegular $fontSizeModuleName $fontFamilyDisplay + color: $fontColorModuleName + letter-spacing: 0.2px + + span + margin: 0 0 0 5px + font: $fontWeightRegular $fontSizeModuleAuthor $fontFamilyText + color: $fontColorModuleDesc + + p + margin: 0 + width: 300px + height: 42px + overflow: hidden + font: $fontWeightRegular $fontSizeModuleDesc $fontFamilyText + color: $fontColorModuleDesc + + div.installedBadge + position: absolute + top: 17px + right: 30px + width: 70px + height: 17px + background-image: url($INSTALLED_BADGE) + + div.moduleActions + display: none + float: right + margin: 28px 30px 0 0 + overflow: hidden + + button + margin-right: 15px + + button:last-child + margin-right: 0 + +li.module.selected + background-color: $colorSelectedBlue + + div.moduleThumbnail + border-color: $moduleThumbBorderActive + + div.moduleDetails + h2, p, span + color: $colorWhite + + h2 + width: 320px + + div.installedBadge + display: none + + div.moduleActions + display: block diff --git a/src/interface/sass/_ModuleUnmanaged.sass b/src/interface/sass/_ModuleUnmanaged.sass new file mode 100644 index 0000000..492b33b --- /dev/null +++ b/src/interface/sass/_ModuleUnmanaged.sass @@ -0,0 +1,33 @@ +$moduleHeight: 110px +$moduleThumbSize: 80px +$moduleSeparator: rgba(223, 229, 235, 0.06) +$moduleThumbBorder: rgb(51, 51, 51) +$moduleThumbBorderActive: rgb(90, 200, 250) + +$fontSizeModuleName: 20px #{'/'} 24px +$fontSizeModuleDesc: 14px #{'/'} 21px +$fontSizeModuleAuthor: 13px + +$fontColorModuleName: rgb(225, 229, 235) +$fontColorModuleDesc: rgb(180, 183, 192) + +li.moduleUnmanaged + position: relative + width: 100% + height: $moduleHeight/2 + border-bottom: 1px solid $moduleSeparator + overflow: hidden + box-sizing: border-box + + div.unmanagedBadge + float: left + margin: 20px 20px 0 17px + width: 80px + height: 17px + background-image: url($UNMANAGED_BADGE) + + h2 + margin: 16px 0 10px 0 + font: $fontWeightRegular $fontSizeModuleName $fontFamilyDisplay + color: $fontColorModuleName + letter-spacing: 0.2px diff --git a/src/interface/sass/_Notification.sass b/src/interface/sass/_Notification.sass new file mode 100644 index 0000000..0242ad5 --- /dev/null +++ b/src/interface/sass/_Notification.sass @@ -0,0 +1,20 @@ +$fontColorError: rgb(255, 246, 247) + +@keyframes fadeNotif + 0% + opacity: 0 + 10% + opacity: 1 + 90% + opacity: 1 + 100% + opacity: 0 + +aside.notification + @extend aside.error + background-color: $colorSelectedBlueOp + z-index: 1002 + opacity: 0 + animation-name: fadeNotif + animation-duration: 2s + animation-iteration-count: 1 diff --git a/src/interface/sass/_Preset.sass b/src/interface/sass/_Preset.sass new file mode 100644 index 0000000..ecfbfa7 --- /dev/null +++ b/src/interface/sass/_Preset.sass @@ -0,0 +1,71 @@ +$moduleHeight: 110px +$moduleThumbSize: 80px +$moduleSeparator: rgba(223, 229, 235, 0.06) +$moduleThumbBorder: rgb(51, 51, 51) +$moduleThumbBorderActive: rgb(90, 200, 250) + +$fontSizeModuleName: 20px #{'/'} 24px +$fontSizeModuleDesc: 14px #{'/'} 21px +$fontSizeModuleAuthor: 13px + +$fontColorModuleName: rgb(225, 229, 235) +$fontColorModuleDesc: rgb(180, 183, 192) + +li.preset + width: 100% + height: $moduleHeight + border-bottom: 1px solid $moduleSeparator + overflow: hidden + box-sizing: border-box + + div.presetDetails + float: left + margin: 0 0 0 50px + + h2 + margin: 18px 0 10px 0 + font: $fontWeightRegular $fontSizeModuleName $fontFamilyDisplay + color: $fontColorModuleName + letter-spacing: 0.2px + + p + margin: 0 0 0 83px + width: 340px + height: 42px + overflow: hidden + font: $fontWeightRegular $fontSizeModuleDesc $fontFamilyText + color: $fontColorModuleDesc + + div.includesBadge + float: left + margin: 2px 0 0 0 + width: 70px + height: 17px + background-image: url($INCLUDES_BADGE) + + div.moduleActions + display: none + float: right + margin: 28px 30px 0 0 + overflow: hidden + + button + margin-right: 15px + + button:last-child + margin-right: 0 + + + +li.preset.selected + background-color: $colorSelectedBlue + + div.presetDetails + h2, p, span + color: $colorWhite + + div.includesBadge + background-image: url($INCLUDES_BADGE_ACTIVE) + + div.moduleActions + display: block diff --git a/src/interface/sass/_Publish.sass b/src/interface/sass/_Publish.sass new file mode 100644 index 0000000..7b269dd --- /dev/null +++ b/src/interface/sass/_Publish.sass @@ -0,0 +1,44 @@ +$publishButtonSize: 138px + +$fontSizeFirstTime: 24px #{'/'} 35px + +div#firstTimePublishing + width: 100% + height: $contentHeight + text-align: center + overflow: hidden + box-sizing: border-box + + h2, a + margin: 125px 0 0 0 + font: $fontWeightRegular $fontSizeFirstTime $fontFamilyText + color: $colorLightGrey + +div.fetched + width: 100% + height: $contentHeight + text-align: center + overflow: hidden + box-sizing: border-box + + button + margin: 60px 0 0 0 + width: $publishButtonSize + height: $publishButtonSize + background: none + border: none + outline: none + + span + visibility: hidden + + h2 + margin: 30px 0 0 0 + font: $fontWeightRegular $fontSizeFirstTime $fontFamilyText + color: $colorLightGrey + +$publishIcons: ('SUCCESS', 'DENY', 'FETCH_OK', 'FETCH_DUPL_OK') +@each $publishIcon in $publishIcons + div.fetched.#{$publishIcon} button + background-image: url(nth($PUBLISH, index($publishIcons, $publishIcon))) + background-repeat: no-repeat diff --git a/src/interface/sass/_Splash.sass b/src/interface/sass/_Splash.sass new file mode 100644 index 0000000..1a9a2c7 --- /dev/null +++ b/src/interface/sass/_Splash.sass @@ -0,0 +1,33 @@ +$splashItemHeight: 60px + +div#splashScreen + width: 100% + height: $windowHeight + outline: none + box-sizing: border-box + overflow: hidden + + h2 + margin: 180px 0 0 0 + font: $fontWeightRegular $fontSizeFirstTime $fontFamilyText + color: $colorLightGrey + text-align: center + + li.splashItem + display: block + padding: 17px 0 0 30px + width: 100% + height: $splashItemHeight + font: $fontWeightRegular $fontSizeModuleName $fontFamilyDisplay + color: $colorWhite + letter-spacing: 0.2px + box-sizing: border-box + border-bottom: 1px solid $moduleSeparator + + span + margin: 0 30px 0 0 + float: right + color: rgba(225, 229, 239, 0.39) + + li.splashItem.selected + background-color: $colorSelectedBlue diff --git a/src/interface/sass/_assets.sass b/src/interface/sass/_assets.sass new file mode 100644 index 0000000..172e387 --- /dev/null +++ b/src/interface/sass/_assets.sass @@ -0,0 +1,30 @@ +// data:image/svg+xml;base64, + +$PROTOTYPE_ICON: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjUwcHgiIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAwIDUwIDQwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxkZWZzPg0KICAgICAgICA8cG9seWdvbiBpZD0icGF0aC0xIiBwb2ludHM9IjAgMCAzLjkyNTA0MTE4IDAgMy45MjUwNDExOCAzLjkyNTA0MTE4Ij48L3BvbHlnb24+DQogICAgICAgIDxwYXRoIGQ9Ik0wLDAgTDMuOTI1MDQxMTgsMCBMMy45MjUwNDExOCwzLjkyNTA0MTE4IEwwLDMuOTI1MDQxMTggTDAsMCBaIE0zLjkyNTA0MTE4LDAgTDcuODUwMDgyMzYsMy45MjUwNDExOCBMMy45MjUwNDExOCwzLjkyNTA0MTE4IEwzLjkyNTA0MTE4LDAgWiIgaWQ9InBhdGgtMyI+PC9wYXRoPg0KICAgICAgICA8cGF0aCBkPSJNMy45MjUwNDExOCwwIEw3Ljg1MDA4MjM2LDAgTDcuODUwMDgyMzYsMy45MjUwNDExOCBMMy45MjUwNDExOCwzLjkyNTA0MTE4IEwzLjkyNTA0MTE4LDAgWiBNMCwwIEwzLjkyNTA0MTE4LDAgTDMuOTI1MDQxMTgsMy45MjUwNDExOCBMMCwwIFoiIGlkPSJwYXRoLTUiPjwvcGF0aD4NCiAgICA8L2RlZnM+DQogICAgPGcgaWQ9IkFzc2V0cyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+DQogICAgICAgIDxnIGlkPSJQUk9UT1RZUEVfSUNPTiI+DQogICAgICAgICAgICA8ZyBpZD0iR3JvdXAtMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjEuMTEyNzUxLCAyMi4wNTg5NTUpIj4NCiAgICAgICAgICAgICAgICA8bWFzayBpZD0ibWFzay0yIiBmaWxsPSJ3aGl0ZSI+DQogICAgICAgICAgICAgICAgICAgIDx1c2UgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+DQogICAgICAgICAgICAgICAgPC9tYXNrPg0KICAgICAgICAgICAgICAgIDxnIGlkPSJDbGlwLTIiPjwvZz4NCiAgICAgICAgICAgICAgICA8cG9seWdvbiBpZD0iRmlsbC0xIiBmaWxsPSIjMDA2OUYyIiBtYXNrPSJ1cmwoI21hc2stMikiIHBvaW50cz0iLTAuMjA0NDI5MjI4IDQuMTI5NDcwNDEgNC4xMjk0NzA0MSA0LjEyOTQ3MDQxIDQuMTI5NDcwNDEgLTAuMjA0NDI5MjI4IC0wLjIwNDQyOTIyOCAtMC4yMDQ0MjkyMjgiPjwvcG9seWdvbj4NCiAgICAgICAgICAgIDwvZz4NCiAgICAgICAgICAgIDxnIGlkPSJHcm91cC02IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMS4xMTI3NTEsIDE4LjEzMzkxNCkiPg0KICAgICAgICAgICAgICAgIDxtYXNrIGlkPSJtYXNrLTQiIGZpbGw9IndoaXRlIj4NCiAgICAgICAgICAgICAgICAgICAgPHVzZSB4bGluazpocmVmPSIjcGF0aC0zIj48L3VzZT4NCiAgICAgICAgICAgICAgICA8L21hc2s+DQogICAgICAgICAgICAgICAgPGcgaWQ9IkNsaXAtNSI+PC9nPg0KICAgICAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJGaWxsLTQiIGZpbGw9IiMxQkFFRkYiIG1hc2s9InVybCgjbWFzay00KSIgcG9pbnRzPSItMC4yMDQ0MjkyMjggNC4xMjk0NzA0MSA4LjA1NDUxMTU5IDQuMTI5NDcwNDEgOC4wNTQ1MTE1OSAtMC4yMDQ0MjkyMjggLTAuMjA0NDI5MjI4IC0wLjIwNDQyOTIyOCI+PC9wb2x5Z29uPg0KICAgICAgICAgICAgPC9nPg0KICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIxLjExMjc1MSwgMTQuMjA4ODczKSI+DQogICAgICAgICAgICAgICAgPG1hc2sgaWQ9Im1hc2stNiIgZmlsbD0id2hpdGUiPg0KICAgICAgICAgICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTUiPjwvdXNlPg0KICAgICAgICAgICAgICAgIDwvbWFzaz4NCiAgICAgICAgICAgICAgICA8ZyBpZD0iQ2xpcC04Ij48L2c+DQogICAgICAgICAgICAgICAgPHBvbHlnb24gaWQ9IkZpbGwtNyIgZmlsbD0iIzk3RTVGRiIgbWFzaz0idXJsKCNtYXNrLTYpIiBwb2ludHM9Ii0wLjIwNDQyOTIyOCA0LjEyOTQ3MDQxIDguMDU0NTExNTkgNC4xMjk0NzA0MSA4LjA1NDUxMTU5IC0wLjIwNDQyOTIyOCAtMC4yMDQ0MjkyMjggLTAuMjA0NDI5MjI4Ij48L3BvbHlnb24+DQogICAgICAgICAgICA8L2c+DQogICAgICAgIDwvZz4NCiAgICA8L2c+DQo8L3N2Zz4NCg==' + +$PROTOTYPE_CLOSE: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjlweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgOSAyMCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4NCiAgICA8ZyBpZD0iQXNzZXRzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4NCiAgICAgICAgPGcgaWQ9IlBST1RPVFlQRV9DTE9TRSIgZmlsbC1ydWxlPSJub256ZXJvIiBmaWxsPSIjOTk5QkEwIj4NCiAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJDb21iaW5lZC1TaGFwZSIgcG9pbnRzPSIzLjUyNjI0Njg1IDguMjMzMzUzNjMgMSAxMC43NTk2MDA1IDEuNzA3MTA2NzggMTEuNDY2NzA3MyA0LjIzMzM1MzYzIDguOTQwNDYwNDEgNi43NTk2MDA0OCAxMS40NjY3MDczIDcuNDY2NzA3MjYgMTAuNzU5NjAwNSA0Ljk0MDQ2MDQxIDguMjMzMzUzNjMgNy40NjY3MDcyNiA1LjcwNzEwNjc4IDYuNzU5NjAwNDggNSA0LjIzMzM1MzYzIDcuNTI2MjQ2ODUgMS43MDcxMDY3OCA1IDEgNS43MDcxMDY3OCAzLjUyNjI0Njg1IDguMjMzMzUzNjMiPjwvcG9seWdvbj4NCiAgICAgICAgPC9nPg0KICAgIDwvZz4NCjwvc3ZnPg0K' + +$ICON_PUBLISH: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjIzcHgiIGhlaWdodD0iMjNweCIgdmlld0JveD0iMCAwIDIzIDIzIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGZpbGwtb3BhY2l0eT0iMC42NiI+DQogICAgICAgIDxnIGlkPSJJQ09OX1BVQkxJU0giIGZpbGwtcnVsZT0ibm9uemVybyIgZmlsbD0iI0Q1RDdERiI+DQogICAgICAgICAgICA8cGF0aCBkPSJNMTEuNSw1IEMxNS4wODk4NTA5LDUgMTgsNy45MTAxNDkxMyAxOCwxMS41IEMxOCwxNS4wODk4NTA5IDE1LjA4OTg1MDksMTggMTEuNSwxOCBDNy45MTAxNDkxMywxOCA1LDE1LjA4OTg1MDkgNSwxMS41IEM1LDcuOTEwMTQ5MTMgNy45MTAxNDkxMyw1IDExLjUsNSBaIE0xMS41LDYgQzguNDYyNDMzODgsNiA2LDguNDYyNDMzODggNiwxMS41IEM2LDE0LjUzNzU2NjEgOC40NjI0MzM4OCwxNyAxMS41LDE3IEMxNC41Mzc1NjYxLDE3IDE3LDE0LjUzNzU2NjEgMTcsMTEuNSBDMTcsOC40NjI0MzM4OCAxNC41Mzc1NjYxLDYgMTEuNSw2IFogTTEyLDEwLjcwNzEwNjggTDEyLDE0IEwxMSwxNCBMMTEsMTAuNzA3MTA2OCBMOS4zMDQwNDM2MywxMi40MDMwNjMxIEw4LjU5NjkzNjg1LDExLjY5NTk1NjQgTDExLDkuMjkyODkzMjIgTDExLDkuMjg4MTMxNzEgTDExLjExMTgzMzYsOS4xODEwNTk1OSBMMTEuMTQ2NDQ2Niw5LjE0NjQ0NjYxIEwxMS4xNDcxOTk1LDkuMTQ3MTk5NDkgTDExLjUxMTE0MjYsOC43OTg3NTE4NyBMMTIsOS4yODgxMzE3MSBMMTIsOS4yOTI4OTMyMiBMMTQuNDAzMDYzMSwxMS42OTU5NTY0IEwxMy42OTU5NTY0LDEyLjQwMzA2MzEgTDEyLDEwLjcwNzEwNjggWiIgaWQ9IlBVQkxJU0giPjwvcGF0aD4NCiAgICAgICAgPC9nPg0KICAgIDwvZz4NCjwvc3ZnPg0K' + +$ICON_PUBLISH_ACTIVE: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjIzcHgiIGhlaWdodD0iMjNweCIgdmlld0JveD0iMCAwIDIzIDIzIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iSUNPTl9QVUJMSVNIX0FDVElWRSIgZmlsbC1ydWxlPSJub256ZXJvIiBmaWxsPSIjRkZGRkZGIj4NCiAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMS41LDUgQzE1LjA4OTg1MDksNSAxOCw3LjkxMDE0OTEzIDE4LDExLjUgQzE4LDE1LjA4OTg1MDkgMTUuMDg5ODUwOSwxOCAxMS41LDE4IEM3LjkxMDE0OTEzLDE4IDUsMTUuMDg5ODUwOSA1LDExLjUgQzUsNy45MTAxNDkxMyA3LjkxMDE0OTEzLDUgMTEuNSw1IFogTTExLjUsNiBDOC40NjI0MzM4OCw2IDYsOC40NjI0MzM4OCA2LDExLjUgQzYsMTQuNTM3NTY2MSA4LjQ2MjQzMzg4LDE3IDExLjUsMTcgQzE0LjUzNzU2NjEsMTcgMTcsMTQuNTM3NTY2MSAxNywxMS41IEMxNyw4LjQ2MjQzMzg4IDE0LjUzNzU2NjEsNiAxMS41LDYgWiBNMTIsMTAuNzA3MTA2OCBMMTIsMTQgTDExLDE0IEwxMSwxMC43MDcxMDY4IEw5LjMwNDA0MzYzLDEyLjQwMzA2MzEgTDguNTk2OTM2ODUsMTEuNjk1OTU2NCBMMTEsOS4yOTI4OTMyMiBMMTEsOS4yODgxMzE3MSBMMTEuMTExODMzNiw5LjE4MTA1OTU5IEwxMS4xNDY0NDY2LDkuMTQ2NDQ2NjEgTDExLjE0NzE5OTUsOS4xNDcxOTk0OSBMMTEuNTExMTQyNiw4Ljc5ODc1MTg3IEwxMiw5LjI4ODEzMTcxIEwxMiw5LjI5Mjg5MzIyIEwxNC40MDMwNjMxLDExLjY5NTk1NjQgTDEzLjY5NTk1NjQsMTIuNDAzMDYzMSBMMTIsMTAuNzA3MTA2OCBaIiBpZD0iUFVCTElTSCI+PC9wYXRoPg0KICAgICAgICA8L2c+DQogICAgPC9nPg0KPC9zdmc+DQo=' + +$SEARCH_ICON: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjUwcHgiIGhlaWdodD0iNTVweCIgdmlld0JveD0iMCAwIDUwIDU1IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iSUNPTl9TRUFSQ0giIGZpbGwtcnVsZT0ibm9uemVybyIgZmlsbD0iI0Q3RERFQiI+DQogICAgICAgICAgICA8cGF0aCBkPSJNMjkuODkwNzQ3OSwyOC40NzY1MzQ0IEwzNC45MTQyMTM2LDMzLjUgTDMzLjUsMzQuOTE0MjEzNiBMMjguNDc2NTM0NCwyOS44OTA3NDc5IEMyNy40OTU3MTU1LDMwLjU4OTIwOSAyNi4yOTU4MzA0LDMxIDI1LDMxIEMyMS42ODYyOTE1LDMxIDE5LDI4LjMxMzcwODUgMTksMjUgQzE5LDIxLjY4NjI5MTUgMjEuNjg2MjkxNSwxOSAyNSwxOSBDMjguMzEzNzA4NSwxOSAzMSwyMS42ODYyOTE1IDMxLDI1IEMzMSwyNi4yOTU4MzA0IDMwLjU4OTIwOSwyNy40OTU3MTU1IDI5Ljg5MDc0NzksMjguNDc2NTM0NCBaIE0yNSwzMCBDMjcuNzYxNDIzNywzMCAzMCwyNy43NjE0MjM3IDMwLDI1IEMzMCwyMi4yMzg1NzYzIDI3Ljc2MTQyMzcsMjAgMjUsMjAgQzIyLjIzODU3NjMsMjAgMjAsMjIuMjM4NTc2MyAyMCwyNSBDMjAsMjcuNzYxNDIzNyAyMi4yMzg1NzYzLDMwIDI1LDMwIFoiIGlkPSJTRUFSQ0hfSUNPTiI+PC9wYXRoPg0KICAgICAgICA8L2c+DQogICAgPC9nPg0KPC9zdmc+DQo=' + +$INSTALLED_BADGE: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjcwcHgiIGhlaWdodD0iMTdweCIgdmlld0JveD0iMCAwIDcwIDE3IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iSU5TVEFMTEVEX0JBREdFIj4NCiAgICAgICAgICAgIDxwYXRoIGQ9Ik04LjUsMSBDNC4zNTc4NjQzOCwxIDEsNC4zNTc4NjQzOCAxLDguNSBDMSwxMi42NDIxMzU2IDQuMzU3ODY0MzgsMTYgOC41LDE2IEw2MS41LDE2IEM2NS42NDIxMzU2LDE2IDY5LDEyLjY0MjEzNTYgNjksOC41IEM2OSw0LjM1Nzg2NDM4IDY1LjY0MjEzNTYsMSA2MS41LDEgTDguNSwxIFogTTguNSwwIEw2MS41LDAgQzY2LjE5NDQyMDQsMi4wNzM1OTM0NmUtMTUgNzAsMy44MDU1Nzk2MyA3MCw4LjUgQzcwLDEzLjE5NDQyMDQgNjYuMTk0NDIwNCwxNyA2MS41LDE3IEw4LjUsMTcgQzMuODA1NTc5NjMsMTcgNS43NDkwMDY4OGUtMTYsMTMuMTk0NDIwNCAwLDguNSBDLTUuNzQ5MDA2ODhlLTE2LDMuODA1NTc5NjMgMy44MDU1Nzk2Myw4LjYyMzUxMDMzZS0xNiA4LjUsMCBaIiBpZD0iQk9SREVSIiBmaWxsPSIjN0Y4ODlCIiBmaWxsLXJ1bGU9Im5vbnplcm8iPjwvcGF0aD4NCiAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMC45Nzc1MzkxLDEyIEwxMC45Nzc1MzkxLDQuOTU0MTAxNTYgTDkuODgzNzg5MDYsNC45NTQxMDE1NiBMOS44ODM3ODkwNiwxMiBMMTAuOTc3NTM5MSwxMiBaIE0xMy42NTA4NDEzLDEyIEwxMy42NTA4NDEzLDYuOTk1MTE3MTkgTDEzLjcyODk2NjMsNi45OTUxMTcxOSBMMTcuMzQ3MTMwNCwxMiBMMTguMzMzNDU4NSwxMiBMMTguMzMzNDU4NSw0Ljk1NDEwMTU2IEwxNy4yNjkwMDU0LDQuOTU0MTAxNTYgTDE3LjI2OTAwNTQsOS45NTg5ODQzOCBMMTcuMTkwODgwNCw5Ljk1ODk4NDM4IEwxMy41NzI3MTYzLDQuOTU0MTAxNTYgTDEyLjU4NjM4ODIsNC45NTQxMDE1NiBMMTIuNTg2Mzg4MiwxMiBMMTMuNjUwODQxMywxMiBaIE0xOS42MTUxNTkyLDEwLjEwNTQ2ODggQzE5LjY5MzI4NDIsMTEuMzY1MjM0NCAyMC43NDMwODg5LDEyLjE3MDg5ODQgMjIuMzA1NTg4OSwxMi4xNzA4OTg0IEMyMy45NzU1MTA4LDEyLjE3MDg5ODQgMjUuMDIwNDMyNywxMS4zMjYxNzE5IDI1LjAyMDQzMjcsOS45Nzg1MTU2MiBDMjUuMDIwNDMyNyw4LjkxODk0NTMxIDI0LjQyNDcyOTYsOC4zMzMwMDc4MSAyMi45Nzk0MTcxLDcuOTk2MDkzNzUgTDIyLjIwMzA0OTksNy44MDU2NjQwNiBDMjEuMjg1MDgxMSw3LjU5MDgyMDMxIDIwLjkxMzk4NzQsNy4zMDI3MzQzOCAyMC45MTM5ODc0LDYuNzk5ODA0NjkgQzIwLjkxMzk4NzQsNi4xNjUwMzkwNiAyMS40OTAxNTkyLDUuNzUgMjIuMzU0NDE3MSw1Ljc1IEMyMy4xNzQ3Mjk2LDUuNzUgMjMuNzQxMTM1OCw2LjE1NTI3MzQ0IDIzLjg0MzY3NDksNi44MDQ2ODc1IEwyNC45MDgxMjgsNi44MDQ2ODc1IEMyNC44NDQ2NTE0LDUuNjE4MTY0MDYgMjMuNzk5NzI5Niw0Ljc4MzIwMzEyIDIyLjM2OTA2NTUsNC43ODMyMDMxMiBDMjAuODMwOTc5Niw0Ljc4MzIwMzEyIDE5LjgwNTU4ODksNS42MTgxNjQwNiAxOS44MDU1ODg5LDYuODczMDQ2ODggQzE5LjgwNTU4ODksNy45MDgyMDMxMiAyMC4zODY2NDM2LDguNTIzNDM3NSAyMS42NjEwNTc3LDguODIxMjg5MDYgTDIyLjU2OTI2MDgsOS4wNDEwMTU2MiBDMjMuNTAxODc4LDkuMjYwNzQyMTkgMjMuOTEyMDM0Miw5LjU4MzAwNzgxIDIzLjkxMjAzNDIsMTAuMTIwMTE3MiBDMjMuOTEyMDM0MiwxMC43NDUxMTcyIDIzLjI2NzUwMywxMS4xOTkyMTg4IDIyLjM4ODU5NjcsMTEuMTk5MjE4OCBDMjEuNDQ2MjEzOSwxMS4xOTkyMTg4IDIwLjc5MTkxNzEsMTAuNzc0NDE0MSAyMC42OTkxNDM2LDEwLjEwNTQ2ODggTDE5LjYxNTE1OTIsMTAuMTA1NDY4OCBaIE0yOS4xODI5OTI4LDEyIEwyOC4wODkyNDI4LDEyIEwyOC4wODkyNDI4LDUuOTUwMTk1MzEgTDI1Ljg3MjQ0NTksNS45NTAxOTUzMSBMMjUuODcyNDQ1OSw0Ljk1NDEwMTU2IEwzMS4zOTQ5MDY4LDQuOTU0MTAxNTYgTDMxLjM5NDkwNjgsNS45NTAxOTUzMSBMMjkuMTgyOTkyOCw1Ljk1MDE5NTMxIEwyOS4xODI5OTI4LDEyIFogTTM2LjMzMzgzNDEsMTIgTDM1LjY4OTMwMjksMTAuMTI5ODgyOCBMMzMuMDAzNzU2LDEwLjEyOTg4MjggTDMyLjM1NDM0MTksMTIgTDMxLjIzMTI5NSwxMiBMMzMuNzc1MjQwNCw0Ljk1NDEwMTU2IEwzNC45NTE5OTgyLDQuOTU0MTAxNTYgTDM3LjQ5NTk0MzUsMTIgTDM2LjMzMzgzNDEsMTIgWiBNMzQuMzA3NDY2OSw2LjIzMzM5ODQ0IEwzMy4yODIwNzYzLDkuMjExOTE0MDYgTDM1LjQxMDk4MjUsOS4yMTE5MTQwNiBMMzQuMzkwNDc0Nyw2LjIzMzM5ODQ0IEwzNC4zMDc0NjY5LDYuMjMzMzk4NDQgWiBNNDIuOTYyMjE0NSwxMC45OTQxNDA2IEwzOS42NjE0MzMzLDEwLjk5NDE0MDYgTDM5LjY2MTQzMzMsNC45NTQxMDE1NiBMMzguNTY3NjgzMyw0Ljk1NDEwMTU2IEwzOC41Njc2ODMzLDEyIEw0Mi45NjIyMTQ1LDEyIEw0Mi45NjIyMTQ1LDEwLjk5NDE0MDYgWiBNNDguNTg0NzM1NSwxMC45OTQxNDA2IEw0NS4yODM5NTQzLDEwLjk5NDE0MDYgTDQ1LjI4Mzk1NDMsNC45NTQxMDE1NiBMNDQuMTkwMjA0Myw0Ljk1NDEwMTU2IEw0NC4xOTAyMDQzLDEyIEw0OC41ODQ3MzU1LDEyIEw0OC41ODQ3MzU1LDEwLjk5NDE0MDYgWiBNNTQuMjg1MzgxNiwxMS4wMDM5MDYyIEw1MC45MDY0NzUzLDExLjAwMzkwNjIgTDUwLjkwNjQ3NTMsOC44ODk2NDg0NCBMNTQuMTA0NzE3NSw4Ljg4OTY0ODQ0IEw1NC4xMDQ3MTc1LDcuOTQyMzgyODEgTDUwLjkwNjQ3NTMsNy45NDIzODI4MSBMNTAuOTA2NDc1Myw1Ljk1MDE5NTMxIEw1NC4yODUzODE2LDUuOTUwMTk1MzEgTDU0LjI4NTM4MTYsNC45NTQxMDE1NiBMNDkuODEyNzI1Myw0Ljk1NDEwMTU2IEw0OS44MTI3MjUzLDEyIEw1NC4yODUzODE2LDEyIEw1NC4yODUzODE2LDExLjAwMzkwNjIgWiBNNTUuNzA4NjgzOCw0Ljk1NDEwMTU2IEw1OC4yNTI2MjkyLDQuOTU0MTAxNTYgQzYwLjM0MjQ3MjksNC45NTQxMDE1NiA2MS41NjgwNTg4LDYuMjM4MjgxMjUgNjEuNTY4MDU4OCw4LjQ1NTA3ODEyIEM2MS41NjgwNTg4LDEwLjcwNjA1NDcgNjAuMzUyMjM4NSwxMiA1OC4yNTI2MjkyLDEyIEw1NS43MDg2ODM4LDEyIEw1NS43MDg2ODM4LDQuOTU0MTAxNTYgWiBNNTYuODAyNDMzOCw1Ljk1MDE5NTMxIEw1Ni44MDI0MzM4LDExLjAwMzkwNjIgTDU4LjEzMDU1ODgsMTEuMDAzOTA2MiBDNTkuNjA1MTY4MiwxMS4wMDM5MDYyIDYwLjQ1NDc3NzYsMTAuMDg1OTM3NSA2MC40NTQ3Nzc2LDguNDY5NzI2NTYgQzYwLjQ1NDc3NzYsNi44Nzc5Mjk2OSA1OS41OTA1MTk4LDUuOTUwMTk1MzEgNTguMTMwNTU4OCw1Ljk1MDE5NTMxIEw1Ni44MDI0MzM4LDUuOTUwMTk1MzEgWiIgaWQ9Ikluc3RhbGxlZCIgZmlsbD0iIzgxOEE5RSI+PC9wYXRoPg0KICAgICAgICA8L2c+DQogICAgPC9nPg0KPC9zdmc+' + +$UNMANAGED_BADGE: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjgwcHgiIGhlaWdodD0iMTdweCIgdmlld0JveD0iMCAwIDgwIDE3IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iVU5NQU5BR0VEX0JBREdFIj4NCiAgICAgICAgICAgIDxwYXRoIGQ9Ik04LjUsMSBDNC4zNTc4NjQzOCwxIDEsNC4zNTc4NjQzOCAxLDguNSBDMSwxMi42NDIxMzU2IDQuMzU3ODY0MzgsMTYgOC41LDE2IEw3MS41LDE2IEM3NS42NDIxMzU2LDE2IDc5LDEyLjY0MjEzNTYgNzksOC41IEM3OSw0LjM1Nzg2NDM4IDc1LjY0MjEzNTYsMSA3MS41LDEgTDguNSwxIFogTTguNSwwIEw3MS41LDAgQzc2LjE5NDQyMDQsLTguNjIzNTEwMzNlLTE2IDgwLDMuODA1NTc5NjMgODAsOC41IEM4MCwxMy4xOTQ0MjA0IDc2LjE5NDQyMDQsMTcgNzEuNSwxNyBMOC41LDE3IEMzLjgwNTU3OTYzLDE3IDUuNzQ5MDA2ODhlLTE2LDEzLjE5NDQyMDQgMCw4LjUgQy01Ljc0OTAwNjg4ZS0xNiwzLjgwNTU3OTYzIDMuODA1NTc5NjMsOC42MjM1MTAzM2UtMTYgOC41LDAgWiIgaWQ9IkJPUkRFUiIgZmlsbD0iIzdGODg5QiIgZmlsbC1ydWxlPSJub256ZXJvIj48L3BhdGg+DQogICAgICAgICAgICA8cGF0aCBkPSJNMTAuMDI1ODczNiw0Ljk1NDEwMTU2IEw4LjkzMjEyMzU3LDQuOTU0MTAxNTYgTDguOTMyMTIzNTcsOS41NzMyNDIxOSBDOC45MzIxMjM1NywxMS4xMDE1NjI1IDEwLjAxNjEwNzksMTIuMTcwODk4NCAxMS43ODM2ODYxLDEyLjE3MDg5ODQgQzEzLjU1MTI2NDIsMTIuMTcwODk4NCAxNC42NDAxMzE0LDExLjEwMTU2MjUgMTQuNjQwMTMxNCw5LjU3MzI0MjE5IEwxNC42NDAxMzE0LDQuOTU0MTAxNTYgTDEzLjU0NjM4MTQsNC45NTQxMDE1NiBMMTMuNTQ2MzgxNCw5LjQ3NTU4NTk0IEMxMy41NDYzODE0LDEwLjQ2MTkxNDEgMTIuOTA2NzMyOSwxMS4xNDU1MDc4IDExLjc4MzY4NjEsMTEuMTQ1NTA3OCBDMTAuNjY1NTIyLDExLjE0NTUwNzggMTAuMDI1ODczNiwxMC40NjE5MTQxIDEwLjAyNTg3MzYsOS40NzU1ODU5NCBMMTAuMDI1ODczNiw0Ljk1NDEwMTU2IFogTTE3LjMzMjk2NDksMTIgTDE3LjMzMjk2NDksNi45OTUxMTcxOSBMMTcuNDExMDg5OSw2Ljk5NTExNzE5IEwyMS4wMjkyNTQsMTIgTDIyLjAxNTU4MjEsMTIgTDIyLjAxNTU4MjEsNC45NTQxMDE1NiBMMjAuOTUxMTI5LDQuOTU0MTAxNTYgTDIwLjk1MTEyOSw5Ljk1ODk4NDM4IEwyMC44NzMwMDQsOS45NTg5ODQzOCBMMTcuMjU0ODM5OSw0Ljk1NDEwMTU2IEwxNi4yNjg1MTE4LDQuOTU0MTAxNTYgTDE2LjI2ODUxMTgsMTIgTDE3LjMzMjk2NDksMTIgWiBNMzAuNzU4MjIwMywxMiBMMzAuNzU4MjIwMyw0Ljk1NDEwMTU2IEwyOS40Nzg5MjM0LDQuOTU0MTAxNTYgTDI3LjIzMjgyOTcsMTAuMzA1NjY0MSBMMjcuMTQ5ODIxOSwxMC4zMDU2NjQxIEwyNC45MDg2MTA5LDQuOTU0MTAxNTYgTDIzLjYyOTMxNDEsNC45NTQxMDE1NiBMMjMuNjI5MzE0MSwxMiBMMjQuNjQ0OTM5MSwxMiBMMjQuNjQ0OTM5MSw2LjkxMjEwOTM4IEwyNC43MTMyOTg0LDYuOTEyMTA5MzggTDI2Ljc3ODcyODEsMTEuNzk0OTIxOSBMMjcuNjA4ODA2MiwxMS43OTQ5MjE5IEwyOS42NzQyMzU5LDYuOTEyMTA5MzggTDI5Ljc0MjU5NTMsNi45MTIxMDkzOCBMMjkuNzQyNTk1MywxMiBMMzAuNzU4MjIwMywxMiBaIE0zNi45MzI0OTkyLDEyIEwzNi4yODc5Njc5LDEwLjEyOTg4MjggTDMzLjYwMjQyMSwxMC4xMjk4ODI4IEwzMi45NTMwMDcsMTIgTDMxLjgyOTk2MDEsMTIgTDM0LjM3MzkwNTQsNC45NTQxMDE1NiBMMzUuNTUwNjYzMiw0Ljk1NDEwMTU2IEwzOC4wOTQ2MDg1LDEyIEwzNi45MzI0OTkyLDEyIFogTTM0LjkwNjEzMiw2LjIzMzM5ODQ0IEwzMy44ODA3NDEzLDkuMjExOTE0MDYgTDM2LjAwOTY0NzYsOS4yMTE5MTQwNiBMMzQuOTg5MTM5OCw2LjIzMzM5ODQ0IEwzNC45MDYxMzIsNi4yMzMzOTg0NCBaIE00MC4yMzA4MDE0LDEyIEw0MC4yMzA4MDE0LDYuOTk1MTE3MTkgTDQwLjMwODkyNjQsNi45OTUxMTcxOSBMNDMuOTI3MDkwNSwxMiBMNDQuOTEzNDE4NiwxMiBMNDQuOTEzNDE4Niw0Ljk1NDEwMTU2IEw0My44NDg5NjU1LDQuOTU0MTAxNTYgTDQzLjg0ODk2NTUsOS45NTg5ODQzOCBMNDMuNzcwODQwNSw5Ljk1ODk4NDM4IEw0MC4xNTI2NzY0LDQuOTU0MTAxNTYgTDM5LjE2NjM0ODMsNC45NTQxMDE1NiBMMzkuMTY2MzQ4MywxMiBMNDAuMjMwODAxNCwxMiBaIE01MS4wODc2OTc1LDEyIEw1MC40NDMxNjYyLDEwLjEyOTg4MjggTDQ3Ljc1NzYxOTMsMTAuMTI5ODgyOCBMNDcuMTA4MjA1MywxMiBMNDUuOTg1MTU4NCwxMiBMNDguNTI5MTAzNyw0Ljk1NDEwMTU2IEw0OS43MDU4NjE1LDQuOTU0MTAxNTYgTDUyLjI0OTgwNjgsMTIgTDUxLjA4NzY5NzUsMTIgWiBNNDkuMDYxMzMwMyw2LjIzMzM5ODQ0IEw0OC4wMzU5Mzk2LDkuMjExOTE0MDYgTDUwLjE2NDg0NTksOS4yMTE5MTQwNiBMNDkuMTQ0MzM4MSw2LjIzMzM5ODQ0IEw0OS4wNjEzMzAzLDYuMjMzMzk4NDQgWiBNNTkuMDAwMjU3NSw5LjIxMTkxNDA2IEw1OS4wMDAyNTc1LDguMzMzMDA3ODEgTDU2LjEwOTYzMjUsOC4zMzMwMDc4MSBMNTYuMTA5NjMyNSw5LjI1MDk3NjU2IEw1Ny45MjYwMzg4LDkuMjUwOTc2NTYgTDU3LjkyNjAzODgsOS40MDIzNDM3NSBDNTcuOTE2MjczMiwxMC40NDcyNjU2IDU3LjEyNTI1NzUsMTEuMTUwMzkwNiA1NS45NzI5MTM4LDExLjE1MDM5MDYgQzU0LjY0OTY3MTYsMTEuMTUwMzkwNiA1My44MTk1OTM1LDEwLjEyNSA1My44MTk1OTM1LDguNDY0ODQzNzUgQzUzLjgxOTU5MzUsNi44MzM5ODQzOCA1NC42NDQ3ODg4LDUuODAzNzEwOTQgNTUuOTQ4NDk5Nyw1LjgwMzcxMDk0IEM1Ni45MTA0MTM4LDUuODAzNzEwOTQgNTcuNTc5MzU5MSw2LjI2NzU3ODEyIDU3Ljg1Mjc5NjYsNy4xMTcxODc1IEw1OC45NTE0Mjk0LDcuMTE3MTg3NSBDNTguNzEyMTcxNiw1LjY5MTQwNjI1IDU3LjU1MDA2MjIsNC43ODMyMDMxMiA1NS45NDg0OTk3LDQuNzgzMjAzMTIgQzUzLjk3NTg0MzUsNC43ODMyMDMxMiA1Mi43MDE0Mjk0LDYuMjI4NTE1NjIgNTIuNzAxNDI5NCw4LjQ3NDYwOTM4IEM1Mi43MDE0Mjk0LDEwLjc1IDUzLjk2MTE5NSwxMi4xNzA4OTg0IDU1Ljk1ODI2NTQsMTIuMTcwODk4NCBDNTcuODAzOTY4NSwxMi4xNzA4OTg0IDU5LjAwMDI1NzUsMTEuMDEzNjcxOSA1OS4wMDAyNTc1LDkuMjExOTE0MDYgWiBNNjQuODIyOTczOSwxMS4wMDM5MDYyIEw2MS40NDQwNjc2LDExLjAwMzkwNjIgTDYxLjQ0NDA2NzYsOC44ODk2NDg0NCBMNjQuNjQyMzA5OCw4Ljg4OTY0ODQ0IEw2NC42NDIzMDk4LDcuOTQyMzgyODEgTDYxLjQ0NDA2NzYsNy45NDIzODI4MSBMNjEuNDQ0MDY3Niw1Ljk1MDE5NTMxIEw2NC44MjI5NzM5LDUuOTUwMTk1MzEgTDY0LjgyMjk3MzksNC45NTQxMDE1NiBMNjAuMzUwMzE3Niw0Ljk1NDEwMTU2IEw2MC4zNTAzMTc2LDEyIEw2NC44MjI5NzM5LDEyIEw2NC44MjI5NzM5LDExLjAwMzkwNjIgWiBNNjYuMjQ2Mjc2Miw0Ljk1NDEwMTU2IEw2OC43OTAyMjE1LDQuOTU0MTAxNTYgQzcwLjg4MDA2NTIsNC45NTQxMDE1NiA3Mi4xMDU2NTEyLDYuMjM4MjgxMjUgNzIuMTA1NjUxMiw4LjQ1NTA3ODEyIEM3Mi4xMDU2NTEyLDEwLjcwNjA1NDcgNzAuODg5ODMwOSwxMiA2OC43OTAyMjE1LDEyIEw2Ni4yNDYyNzYyLDEyIEw2Ni4yNDYyNzYyLDQuOTU0MTAxNTYgWiBNNjcuMzQwMDI2Miw1Ljk1MDE5NTMxIEw2Ny4zNDAwMjYyLDExLjAwMzkwNjIgTDY4LjY2ODE1MTIsMTEuMDAzOTA2MiBDNzAuMTQyNzYwNSwxMS4wMDM5MDYyIDcwLjk5MjM2OTksMTAuMDg1OTM3NSA3MC45OTIzNjk5LDguNDY5NzI2NTYgQzcwLjk5MjM2OTksNi44Nzc5Mjk2OSA3MC4xMjgxMTIxLDUuOTUwMTk1MzEgNjguNjY4MTUxMiw1Ljk1MDE5NTMxIEw2Ny4zNDAwMjYyLDUuOTUwMTk1MzEgWiIgaWQ9IlVubWFuYWdlZCIgZmlsbD0iIzgxOEE5RSI+PC9wYXRoPg0KICAgICAgICA8L2c+DQogICAgPC9nPg0KPC9zdmc+DQo=' + +$INCLUDES_BADGE: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjcwcHgiIGhlaWdodD0iMTdweCIgdmlld0JveD0iMCAwIDcwIDE3IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iSU5DTFVERVNfQkFER0UiPg0KICAgICAgICAgICAgPHBhdGggZD0iTTguNSwxIEM0LjM1Nzg2NDM4LDEgMSw0LjM1Nzg2NDM4IDEsOC41IEMxLDEyLjY0MjEzNTYgNC4zNTc4NjQzOCwxNiA4LjUsMTYgTDYxLjUsMTYgQzY1LjY0MjEzNTYsMTYgNjksMTIuNjQyMTM1NiA2OSw4LjUgQzY5LDQuMzU3ODY0MzggNjUuNjQyMTM1NiwxIDYxLjUsMSBMOC41LDEgWiBNOC41LDAgTDYxLjUsMCBDNjYuMTk0NDIwNCwyLjA3MzU5MzQ2ZS0xNSA3MCwzLjgwNTU3OTYzIDcwLDguNSBDNzAsMTMuMTk0NDIwNCA2Ni4xOTQ0MjA0LDE3IDYxLjUsMTcgTDguNSwxNyBDMy44MDU1Nzk2MywxNyA1Ljc0OTAwNjg4ZS0xNiwxMy4xOTQ0MjA0IDAsOC41IEMtNS43NDkwMDY4OGUtMTYsMy44MDU1Nzk2MyAzLjgwNTU3OTYzLDguNjIzNTEwMzNlLTE2IDguNSwwIFoiIGlkPSJCT1JERVIiIGZpbGw9IiM3Rjg4OUIiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9wYXRoPg0KICAgICAgICAgICAgPHBhdGggZD0iTTEzLjI5MjYzMDcsMTIgTDEzLjI5MjYzMDcsNC45NTQxMDE1NiBMMTIuMTk4ODgwNyw0Ljk1NDEwMTU2IEwxMi4xOTg4ODA3LDEyIEwxMy4yOTI2MzA3LDEyIFogTTE1Ljk2NTkzMywxMiBMMTUuOTY1OTMzLDYuOTk1MTE3MTkgTDE2LjA0NDA1OCw2Ljk5NTExNzE5IEwxOS42NjIyMjIxLDEyIEwyMC42NDg1NTAyLDEyIEwyMC42NDg1NTAyLDQuOTU0MTAxNTYgTDE5LjU4NDA5NzEsNC45NTQxMDE1NiBMMTkuNTg0MDk3MSw5Ljk1ODk4NDM4IEwxOS41MDU5NzIxLDkuOTU4OTg0MzggTDE1Ljg4NzgwOCw0Ljk1NDEwMTU2IEwxNC45MDE0Nzk5LDQuOTU0MTAxNTYgTDE0LjkwMTQ3OTksMTIgTDE1Ljk2NTkzMywxMiBaIE0yNS4xNTI5MDcyLDEyLjE3MDg5ODQgQzI2LjcyNTE3MjgsMTIuMTcwODk4NCAyNy44ODIzOTk0LDExLjI0MzE2NDEgMjguMDc3NzExOSw5Ljg1MTU2MjUgTDI2Ljk4ODg0NDcsOS44NTE1NjI1IEMyNi43OTM1MzIyLDEwLjY0NzQ2MDkgMjYuMDg1NTI0NCwxMS4xNTAzOTA2IDI1LjE1MjkwNzIsMTEuMTUwMzkwNiBDMjMuODgzMzc1OSwxMS4xNTAzOTA2IDIzLjA5MjM2MDMsMTAuMTIwMTE3MiAyMy4wOTIzNjAzLDguNDc5NDkyMTkgQzIzLjA5MjM2MDMsNi44MzM5ODQzOCAyMy44ODMzNzU5LDUuODAzNzEwOTQgMjUuMTQ4MDI0NCw1LjgwMzcxMDk0IEMyNi4wNzU3NTg3LDUuODAzNzEwOTQgMjYuNzgzNzY2NSw2LjM2MDM1MTU2IDI2Ljk4ODg0NDcsNy4yMjQ2MDkzOCBMMjguMDc3NzExOSw3LjIyNDYwOTM4IEMyNy45MDE5MzA2LDUuNzg5MDYyNSAyNi43MDA3NTg3LDQuNzgzMjAzMTIgMjUuMTQ4MDI0NCw0Ljc4MzIwMzEyIEMyMy4xOTAwMTY1LDQuNzgzMjAzMTIgMjEuOTc0MTk2Miw2LjE5NDMzNTk0IDIxLjk3NDE5NjIsOC40Nzk0OTIxOSBDMjEuOTc0MTk2MiwxMC43NTk3NjU2IDIzLjE5NDg5OTQsMTIuMTcwODk4NCAyNS4xNTI5MDcyLDEyLjE3MDg5ODQgWiBNMzMuNzUzOTQzOCwxMC45OTQxNDA2IEwzMC40NTMxNjI2LDEwLjk5NDE0MDYgTDMwLjQ1MzE2MjYsNC45NTQxMDE1NiBMMjkuMzU5NDEyNiw0Ljk1NDEwMTU2IEwyOS4zNTk0MTI2LDEyIEwzMy43NTM5NDM4LDEyIEwzMy43NTM5NDM4LDEwLjk5NDE0MDYgWiBNMzUuODk1MDE5NSw0Ljk1NDEwMTU2IEwzNC44MDEyNjk1LDQuOTU0MTAxNTYgTDM0LjgwMTI2OTUsOS41NzMyNDIxOSBDMzQuODAxMjY5NSwxMS4xMDE1NjI1IDM1Ljg4NTI1MzksMTIuMTcwODk4NCAzNy42NTI4MzIsMTIuMTcwODk4NCBDMzkuNDIwNDEwMiwxMi4xNzA4OTg0IDQwLjUwOTI3NzMsMTEuMTAxNTYyNSA0MC41MDkyNzczLDkuNTczMjQyMTkgTDQwLjUwOTI3NzMsNC45NTQxMDE1NiBMMzkuNDE1NTI3Myw0Ljk1NDEwMTU2IEwzOS40MTU1MjczLDkuNDc1NTg1OTQgQzM5LjQxNTUyNzMsMTAuNDYxOTE0MSAzOC43NzU4Nzg5LDExLjE0NTUwNzggMzcuNjUyODMyLDExLjE0NTUwNzggQzM2LjUzNDY2OCwxMS4xNDU1MDc4IDM1Ljg5NTAxOTUsMTAuNDYxOTE0MSAzNS44OTUwMTk1LDkuNDc1NTg1OTQgTDM1Ljg5NTAxOTUsNC45NTQxMDE1NiBaIE00Mi4xMzc2NTc3LDQuOTU0MTAxNTYgTDQ0LjY4MTYwMzEsNC45NTQxMDE1NiBDNDYuNzcxNDQ2OCw0Ljk1NDEwMTU2IDQ3Ljk5NzAzMjcsNi4yMzgyODEyNSA0Ny45OTcwMzI3LDguNDU1MDc4MTIgQzQ3Ljk5NzAzMjcsMTAuNzA2MDU0NyA0Ni43ODEyMTI0LDEyIDQ0LjY4MTYwMzEsMTIgTDQyLjEzNzY1NzcsMTIgTDQyLjEzNzY1NzcsNC45NTQxMDE1NiBaIE00My4yMzE0MDc3LDUuOTUwMTk1MzEgTDQzLjIzMTQwNzcsMTEuMDAzOTA2MiBMNDQuNTU5NTMyNywxMS4wMDM5MDYyIEM0Ni4wMzQxNDIxLDExLjAwMzkwNjIgNDYuODgzNzUxNSwxMC4wODU5Mzc1IDQ2Ljg4Mzc1MTUsOC40Njk3MjY1NiBDNDYuODgzNzUxNSw2Ljg3NzkyOTY5IDQ2LjAxOTQ5MzcsNS45NTAxOTUzMSA0NC41NTk1MzI3LDUuOTUwMTk1MzEgTDQzLjIzMTQwNzcsNS45NTAxOTUzMSBaIE01My43OTA0NTIyLDExLjAwMzkwNjIgTDUwLjQxMTU0NiwxMS4wMDM5MDYyIEw1MC40MTE1NDYsOC44ODk2NDg0NCBMNTMuNjA5Nzg4MSw4Ljg4OTY0ODQ0IEw1My42MDk3ODgxLDcuOTQyMzgyODEgTDUwLjQxMTU0Niw3Ljk0MjM4MjgxIEw1MC40MTE1NDYsNS45NTAxOTUzMSBMNTMuNzkwNDUyMiw1Ljk1MDE5NTMxIEw1My43OTA0NTIyLDQuOTU0MTAxNTYgTDQ5LjMxNzc5Niw0Ljk1NDEwMTU2IEw0OS4zMTc3OTYsMTIgTDUzLjc5MDQ1MjIsMTIgTDUzLjc5MDQ1MjIsMTEuMDAzOTA2MiBaIE01NC44ODE3MjMyLDEwLjEwNTQ2ODggQzU0Ljk1OTg0ODIsMTEuMzY1MjM0NCA1Ni4wMDk2NTI5LDEyLjE3MDg5ODQgNTcuNTcyMTUyOSwxMi4xNzA4OTg0IEM1OS4yNDIwNzQ4LDEyLjE3MDg5ODQgNjAuMjg2OTk2NywxMS4zMjYxNzE5IDYwLjI4Njk5NjcsOS45Nzg1MTU2MiBDNjAuMjg2OTk2Nyw4LjkxODk0NTMxIDU5LjY5MTI5MzYsOC4zMzMwMDc4MSA1OC4yNDU5ODExLDcuOTk2MDkzNzUgTDU3LjQ2OTYxMzksNy44MDU2NjQwNiBDNTYuNTUxNjQ1MSw3LjU5MDgyMDMxIDU2LjE4MDU1MTQsNy4zMDI3MzQzOCA1Ni4xODA1NTE0LDYuNzk5ODA0NjkgQzU2LjE4MDU1MTQsNi4xNjUwMzkwNiA1Ni43NTY3MjMyLDUuNzUgNTcuNjIwOTgxMSw1Ljc1IEM1OC40NDEyOTM2LDUuNzUgNTkuMDA3Njk5OCw2LjE1NTI3MzQ0IDU5LjExMDIzODksNi44MDQ2ODc1IEw2MC4xNzQ2OTIsNi44MDQ2ODc1IEM2MC4xMTEyMTU0LDUuNjE4MTY0MDYgNTkuMDY2MjkzNiw0Ljc4MzIwMzEyIDU3LjYzNTYyOTUsNC43ODMyMDMxMiBDNTYuMDk3NTQzNiw0Ljc4MzIwMzEyIDU1LjA3MjE1MjksNS42MTgxNjQwNiA1NS4wNzIxNTI5LDYuODczMDQ2ODggQzU1LjA3MjE1MjksNy45MDgyMDMxMiA1NS42NTMyMDc2LDguNTIzNDM3NSA1Ni45Mjc2MjE3LDguODIxMjg5MDYgTDU3LjgzNTgyNDgsOS4wNDEwMTU2MiBDNTguNzY4NDQyLDkuMjYwNzQyMTkgNTkuMTc4NTk4Miw5LjU4MzAwNzgxIDU5LjE3ODU5ODIsMTAuMTIwMTE3MiBDNTkuMTc4NTk4MiwxMC43NDUxMTcyIDU4LjUzNDA2NywxMS4xOTkyMTg4IDU3LjY1NTE2MDcsMTEuMTk5MjE4OCBDNTYuNzEyNzc3OSwxMS4xOTkyMTg4IDU2LjA1ODQ4MTEsMTAuNzc0NDE0MSA1NS45NjU3MDc2LDEwLjEwNTQ2ODggTDU0Ljg4MTcyMzIsMTAuMTA1NDY4OCBaIiBpZD0iaW5jbHVkZXMiIGZpbGw9IiM4MThBOUUiPjwvcGF0aD4NCiAgICAgICAgPC9nPg0KICAgIDwvZz4NCjwvc3ZnPg0K' + +$INCLUDES_BADGE_ACTIVE: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjcwcHgiIGhlaWdodD0iMTdweCIgdmlld0JveD0iMCAwIDcwIDE3IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iSU5DTFVERVNfQkFER0VfQUNUSVZFIiBmaWxsPSIjRkZGRkZGIj4NCiAgICAgICAgICAgIDxwYXRoIGQ9Ik04LjUsMSBDNC4zNTc4NjQzOCwxIDEsNC4zNTc4NjQzOCAxLDguNSBDMSwxMi42NDIxMzU2IDQuMzU3ODY0MzgsMTYgOC41LDE2IEw2MS41LDE2IEM2NS42NDIxMzU2LDE2IDY5LDEyLjY0MjEzNTYgNjksOC41IEM2OSw0LjM1Nzg2NDM4IDY1LjY0MjEzNTYsMSA2MS41LDEgTDguNSwxIFogTTguNSwwIEw2MS41LDAgQzY2LjE5NDQyMDQsMi4wNzM1OTM0NmUtMTUgNzAsMy44MDU1Nzk2MyA3MCw4LjUgQzcwLDEzLjE5NDQyMDQgNjYuMTk0NDIwNCwxNyA2MS41LDE3IEw4LjUsMTcgQzMuODA1NTc5NjMsMTcgNS43NDkwMDY4OGUtMTYsMTMuMTk0NDIwNCAwLDguNSBDLTUuNzQ5MDA2ODhlLTE2LDMuODA1NTc5NjMgMy44MDU1Nzk2Myw4LjYyMzUxMDMzZS0xNiA4LjUsMCBaIiBpZD0iQk9SREVSIiBmaWxsLXJ1bGU9Im5vbnplcm8iPjwvcGF0aD4NCiAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMy4yOTI2MzA3LDEyIEwxMy4yOTI2MzA3LDQuOTU0MTAxNTYgTDEyLjE5ODg4MDcsNC45NTQxMDE1NiBMMTIuMTk4ODgwNywxMiBMMTMuMjkyNjMwNywxMiBaIE0xNS45NjU5MzMsMTIgTDE1Ljk2NTkzMyw2Ljk5NTExNzE5IEwxNi4wNDQwNTgsNi45OTUxMTcxOSBMMTkuNjYyMjIyMSwxMiBMMjAuNjQ4NTUwMiwxMiBMMjAuNjQ4NTUwMiw0Ljk1NDEwMTU2IEwxOS41ODQwOTcxLDQuOTU0MTAxNTYgTDE5LjU4NDA5NzEsOS45NTg5ODQzOCBMMTkuNTA1OTcyMSw5Ljk1ODk4NDM4IEwxNS44ODc4MDgsNC45NTQxMDE1NiBMMTQuOTAxNDc5OSw0Ljk1NDEwMTU2IEwxNC45MDE0Nzk5LDEyIEwxNS45NjU5MzMsMTIgWiBNMjUuMTUyOTA3MiwxMi4xNzA4OTg0IEMyNi43MjUxNzI4LDEyLjE3MDg5ODQgMjcuODgyMzk5NCwxMS4yNDMxNjQxIDI4LjA3NzcxMTksOS44NTE1NjI1IEwyNi45ODg4NDQ3LDkuODUxNTYyNSBDMjYuNzkzNTMyMiwxMC42NDc0NjA5IDI2LjA4NTUyNDQsMTEuMTUwMzkwNiAyNS4xNTI5MDcyLDExLjE1MDM5MDYgQzIzLjg4MzM3NTksMTEuMTUwMzkwNiAyMy4wOTIzNjAzLDEwLjEyMDExNzIgMjMuMDkyMzYwMyw4LjQ3OTQ5MjE5IEMyMy4wOTIzNjAzLDYuODMzOTg0MzggMjMuODgzMzc1OSw1LjgwMzcxMDk0IDI1LjE0ODAyNDQsNS44MDM3MTA5NCBDMjYuMDc1NzU4Nyw1LjgwMzcxMDk0IDI2Ljc4Mzc2NjUsNi4zNjAzNTE1NiAyNi45ODg4NDQ3LDcuMjI0NjA5MzggTDI4LjA3NzcxMTksNy4yMjQ2MDkzOCBDMjcuOTAxOTMwNiw1Ljc4OTA2MjUgMjYuNzAwNzU4Nyw0Ljc4MzIwMzEyIDI1LjE0ODAyNDQsNC43ODMyMDMxMiBDMjMuMTkwMDE2NSw0Ljc4MzIwMzEyIDIxLjk3NDE5NjIsNi4xOTQzMzU5NCAyMS45NzQxOTYyLDguNDc5NDkyMTkgQzIxLjk3NDE5NjIsMTAuNzU5NzY1NiAyMy4xOTQ4OTk0LDEyLjE3MDg5ODQgMjUuMTUyOTA3MiwxMi4xNzA4OTg0IFogTTMzLjc1Mzk0MzgsMTAuOTk0MTQwNiBMMzAuNDUzMTYyNiwxMC45OTQxNDA2IEwzMC40NTMxNjI2LDQuOTU0MTAxNTYgTDI5LjM1OTQxMjYsNC45NTQxMDE1NiBMMjkuMzU5NDEyNiwxMiBMMzMuNzUzOTQzOCwxMiBMMzMuNzUzOTQzOCwxMC45OTQxNDA2IFogTTM1Ljg5NTAxOTUsNC45NTQxMDE1NiBMMzQuODAxMjY5NSw0Ljk1NDEwMTU2IEwzNC44MDEyNjk1LDkuNTczMjQyMTkgQzM0LjgwMTI2OTUsMTEuMTAxNTYyNSAzNS44ODUyNTM5LDEyLjE3MDg5ODQgMzcuNjUyODMyLDEyLjE3MDg5ODQgQzM5LjQyMDQxMDIsMTIuMTcwODk4NCA0MC41MDkyNzczLDExLjEwMTU2MjUgNDAuNTA5Mjc3Myw5LjU3MzI0MjE5IEw0MC41MDkyNzczLDQuOTU0MTAxNTYgTDM5LjQxNTUyNzMsNC45NTQxMDE1NiBMMzkuNDE1NTI3Myw5LjQ3NTU4NTk0IEMzOS40MTU1MjczLDEwLjQ2MTkxNDEgMzguNzc1ODc4OSwxMS4xNDU1MDc4IDM3LjY1MjgzMiwxMS4xNDU1MDc4IEMzNi41MzQ2NjgsMTEuMTQ1NTA3OCAzNS44OTUwMTk1LDEwLjQ2MTkxNDEgMzUuODk1MDE5NSw5LjQ3NTU4NTk0IEwzNS44OTUwMTk1LDQuOTU0MTAxNTYgWiBNNDIuMTM3NjU3Nyw0Ljk1NDEwMTU2IEw0NC42ODE2MDMxLDQuOTU0MTAxNTYgQzQ2Ljc3MTQ0NjgsNC45NTQxMDE1NiA0Ny45OTcwMzI3LDYuMjM4MjgxMjUgNDcuOTk3MDMyNyw4LjQ1NTA3ODEyIEM0Ny45OTcwMzI3LDEwLjcwNjA1NDcgNDYuNzgxMjEyNCwxMiA0NC42ODE2MDMxLDEyIEw0Mi4xMzc2NTc3LDEyIEw0Mi4xMzc2NTc3LDQuOTU0MTAxNTYgWiBNNDMuMjMxNDA3Nyw1Ljk1MDE5NTMxIEw0My4yMzE0MDc3LDExLjAwMzkwNjIgTDQ0LjU1OTUzMjcsMTEuMDAzOTA2MiBDNDYuMDM0MTQyMSwxMS4wMDM5MDYyIDQ2Ljg4Mzc1MTUsMTAuMDg1OTM3NSA0Ni44ODM3NTE1LDguNDY5NzI2NTYgQzQ2Ljg4Mzc1MTUsNi44Nzc5Mjk2OSA0Ni4wMTk0OTM3LDUuOTUwMTk1MzEgNDQuNTU5NTMyNyw1Ljk1MDE5NTMxIEw0My4yMzE0MDc3LDUuOTUwMTk1MzEgWiBNNTMuNzkwNDUyMiwxMS4wMDM5MDYyIEw1MC40MTE1NDYsMTEuMDAzOTA2MiBMNTAuNDExNTQ2LDguODg5NjQ4NDQgTDUzLjYwOTc4ODEsOC44ODk2NDg0NCBMNTMuNjA5Nzg4MSw3Ljk0MjM4MjgxIEw1MC40MTE1NDYsNy45NDIzODI4MSBMNTAuNDExNTQ2LDUuOTUwMTk1MzEgTDUzLjc5MDQ1MjIsNS45NTAxOTUzMSBMNTMuNzkwNDUyMiw0Ljk1NDEwMTU2IEw0OS4zMTc3OTYsNC45NTQxMDE1NiBMNDkuMzE3Nzk2LDEyIEw1My43OTA0NTIyLDEyIEw1My43OTA0NTIyLDExLjAwMzkwNjIgWiBNNTQuODgxNzIzMiwxMC4xMDU0Njg4IEM1NC45NTk4NDgyLDExLjM2NTIzNDQgNTYuMDA5NjUyOSwxMi4xNzA4OTg0IDU3LjU3MjE1MjksMTIuMTcwODk4NCBDNTkuMjQyMDc0OCwxMi4xNzA4OTg0IDYwLjI4Njk5NjcsMTEuMzI2MTcxOSA2MC4yODY5OTY3LDkuOTc4NTE1NjIgQzYwLjI4Njk5NjcsOC45MTg5NDUzMSA1OS42OTEyOTM2LDguMzMzMDA3ODEgNTguMjQ1OTgxMSw3Ljk5NjA5Mzc1IEw1Ny40Njk2MTM5LDcuODA1NjY0MDYgQzU2LjU1MTY0NTEsNy41OTA4MjAzMSA1Ni4xODA1NTE0LDcuMzAyNzM0MzggNTYuMTgwNTUxNCw2Ljc5OTgwNDY5IEM1Ni4xODA1NTE0LDYuMTY1MDM5MDYgNTYuNzU2NzIzMiw1Ljc1IDU3LjYyMDk4MTEsNS43NSBDNTguNDQxMjkzNiw1Ljc1IDU5LjAwNzY5OTgsNi4xNTUyNzM0NCA1OS4xMTAyMzg5LDYuODA0Njg3NSBMNjAuMTc0NjkyLDYuODA0Njg3NSBDNjAuMTExMjE1NCw1LjYxODE2NDA2IDU5LjA2NjI5MzYsNC43ODMyMDMxMiA1Ny42MzU2Mjk1LDQuNzgzMjAzMTIgQzU2LjA5NzU0MzYsNC43ODMyMDMxMiA1NS4wNzIxNTI5LDUuNjE4MTY0MDYgNTUuMDcyMTUyOSw2Ljg3MzA0Njg4IEM1NS4wNzIxNTI5LDcuOTA4MjAzMTIgNTUuNjUzMjA3Niw4LjUyMzQzNzUgNTYuOTI3NjIxNyw4LjgyMTI4OTA2IEw1Ny44MzU4MjQ4LDkuMDQxMDE1NjIgQzU4Ljc2ODQ0Miw5LjI2MDc0MjE5IDU5LjE3ODU5ODIsOS41ODMwMDc4MSA1OS4xNzg1OTgyLDEwLjEyMDExNzIgQzU5LjE3ODU5ODIsMTAuNzQ1MTE3MiA1OC41MzQwNjcsMTEuMTk5MjE4OCA1Ny42NTUxNjA3LDExLjE5OTIxODggQzU2LjcxMjc3NzksMTEuMTk5MjE4OCA1Ni4wNTg0ODExLDEwLjc3NDQxNDEgNTUuOTY1NzA3NiwxMC4xMDU0Njg4IEw1NC44ODE3MjMyLDEwLjEwNTQ2ODggWiIgaWQ9ImluY2x1ZGVzIj48L3BhdGg+DQogICAgICAgIDwvZz4NCiAgICA8L2c+DQo8L3N2Zz4NCg==' + +$LISTEND_DOT: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjEwcHgiIGhlaWdodD0iMTBweCIgdmlld0JveD0iMCAwIDEwIDEwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iTElTVEVORF9ET1QiIGZpbGw9IiMxNDVCRkYiPg0KICAgICAgICAgICAgPGNpcmNsZSBpZD0iRE9UIiBjeD0iNSIgY3k9IjUiIHI9IjUiPjwvY2lyY2xlPg0KICAgICAgICA8L2c+DQogICAgPC9nPg0KPC9zdmc+DQo=' + +$THUMB: 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjgwcHgiIGhlaWdodD0iODBweCIgdmlld0JveD0iMCAwIDgwIDgwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iVEhVTUIiPg0KICAgICAgICAgICAgPHJlY3QgZmlsbC1vcGFjaXR5PSIwLjI1MzQ4MTY1OCIgZmlsbD0iIzAwMDAwMCIgeD0iMCIgeT0iMCIgd2lkdGg9IjgwIiBoZWlnaHQ9IjgwIiByeD0iMyI+PC9yZWN0Pg0KICAgICAgICAgICAgPHBvbHlnb24gaWQ9Ik1hbmFnZXIiIGZpbGwtb3BhY2l0eT0iMC4xMDAwMDAwMDEiIGZpbGw9IiNDNkQ3RkYiIHBvaW50cz0iNTggMjIgNDAgNDAgNTggNTgiPjwvcG9seWdvbj4NCiAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJNb2R1bGUiIGZpbGwtb3BhY2l0eT0iMC4xNTAwMDAwMDYiIGZpbGw9IiNDNkQ3RkYiIHBvaW50cz0iMjIgMjIgNTggNTggMjIgNTgiPjwvcG9seWdvbj4NCiAgICAgICAgPC9nPg0KICAgIDwvZz4NCjwvc3ZnPg0K' + +// ('SUCCESS', 'DENY', 'FETCH_OK', 'FETCH_DUPL_OK') +$PUBLISH: ('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjEzOHB4IiBoZWlnaHQ9IjEzOHB4IiB2aWV3Qm94PSIwIDAgMTM4IDEzOCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4NCiAgICA8ZyBpZD0iQXNzZXRzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4NCiAgICAgICAgPGcgaWQ9IlBVQkxJU0hfU1VDQ0VTUyIgZmlsbC1ydWxlPSJub256ZXJvIiBmaWxsPSIjNENEOTY0Ij4NCiAgICAgICAgICAgIDxwYXRoIGQ9Ik02OSwxMzggQzMwLjg5MjM1MjMsMTM4IDAsMTA3LjEwNzY0OCAwLDY5IEMwLDMwLjg5MjM1MjMgMzAuODkyMzUyMywwIDY5LDAgQzEwNy4xMDc2NDgsMCAxMzgsMzAuODkyMzUyMyAxMzgsNjkgQzEzOCwxMDcuMTA3NjQ4IDEwNy4xMDc2NDgsMTM4IDY5LDEzOCBaIE02OSwxMzUgQzEwNS40NTA3OTMsMTM1IDEzNSwxMDUuNDUwNzkzIDEzNSw2OSBDMTM1LDMyLjU0OTIwNjUgMTA1LjQ1MDc5MywzIDY5LDMgQzMyLjU0OTIwNjUsMyAzLDMyLjU0OTIwNjUgMyw2OSBDMywxMDUuNDUwNzkzIDMyLjU0OTIwNjUsMTM1IDY5LDEzNSBaIE0zOS42NzI0NTk3LDcyLjM5NzAzNzYgTDYxLjQwMDgwMjcsOTIuNDI0MDI2NSBMMTAxLjIyNDE0OCw0OC4yMDE3NzQ5IEwxMDMuNDUzNDQ2LDUwLjIwOTMxODUgTDYxLjU5OTE5NzMsOTYuNjg2ODA4IEwzNy42MzkyNjEzLDc0LjYwMjk2MjQgTDM5LjY3MjQ1OTcsNzIuMzk3MDM3NiBaIiBpZD0iQ0hFQ0siPjwvcGF0aD4NCiAgICAgICAgPC9nPg0KICAgIDwvZz4NCjwvc3ZnPg0K', 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjEzOHB4IiBoZWlnaHQ9IjEzOHB4IiB2aWV3Qm94PSIwIDAgMTM4IDEzOCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4NCiAgICA8ZyBpZD0iQXNzZXRzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4NCiAgICAgICAgPGcgaWQ9IlBVQkxJU0hfREVOWSIgZmlsbC1ydWxlPSJub256ZXJvIiBmaWxsPSIjRDYyQjRDIj4NCiAgICAgICAgICAgIDxwYXRoIGQ9Ik02OSwxMzggQzMwLjg5MjM1MjMsMTM4IDAsMTA3LjEwNzY0OCAwLDY5IEMwLDMwLjg5MjM1MjMgMzAuODkyMzUyMywwIDY5LDAgQzEwNy4xMDc2NDgsMCAxMzgsMzAuODkyMzUyMyAxMzgsNjkgQzEzOCwxMDcuMTA3NjQ4IDEwNy4xMDc2NDgsMTM4IDY5LDEzOCBaIE02OSwxMzUgQzEwNS40NTA3OTMsMTM1IDEzNSwxMDUuNDUwNzkzIDEzNSw2OSBDMTM1LDMyLjU0OTIwNjUgMTA1LjQ1MDc5MywzIDY5LDMgQzMyLjU0OTIwNjUsMyAzLDMyLjU0OTIwNjUgMyw2OSBDMywxMDUuNDUwNzkzIDMyLjU0OTIwNjUsMTM1IDY5LDEzNSBaIE0zMy4wMjY1ODgyLDk5LjA2MDU4NDYgTDMwLjk3MzQxMTgsOTYuODczMjQyMiBDMzguMzgyMTY1NSw4OS45MTg5MjI2IDQ1LjQ1MDc1MTMsODYuOTMyMTcxNyA1Mi43ODE5NTE3LDg3LjEzMTk3NTkgQzU4LjMwMDM1Miw4Ny4yODIzNzQxIDYyLjUxMjQ1MzQsODguNzI2MDA3MSA3MS4xMzU5NDM4LDkyLjcwNzM5MzYgQzcyLjk4NTQxNzQsOTMuNTYxMjc4NiA3My41MDUxMjQzLDkzLjc5OTY1MDEgNzQuMzg0MjM5OCw5NC4xOTI3MTI4IEM4MC44NTIyODg0LDk3LjA4NDY1MjQgODUuMTQ3MjEwNyw5OC4yNjkzMzMzIDg5LjY1NTUwMzMsOTcuOTc1NTcyNyBDOTUuMjYwNTQzMiw5Ny42MTAzNDc5IDEwMC43MjUxNjksOTQuNzI3NjE4IDEwNi41NzUzOTcsODguNTU4NjYyNCBMMTA4Ljc1MjIwNSw5MC42MjMwMDMzIEMxMDIuNDExOTAyLDk3LjMwODczNDQgOTYuMjY1MjY2MywxMDAuNTUxMjQyIDg5Ljg1MDU2OTgsMTAwLjk2OTIyNCBDODQuNzM1Nzc3NiwxMDEuMzAyNTA0IDgwLjAzNzUxOSwxMDAuMDA2NTcgNzMuMTU5NzI3Nyw5Ni45MzE0Mjk3IEM3Mi4yNjUxNDc0LDk2LjUzMTQ1MjUgNzEuNzQwMjIzMiw5Ni4yOTA2ODggNjkuODc4NDI3MSw5NS40MzExMTM4IEM2MS42MjAwMTk3LDkxLjYxODI4MjcgNTcuNjc1ODE0MSw5MC4yNjY0NjcgNTIuNzAwMjIwMiw5MC4xMzA4NjI0IEM0Ni4yMDI0MzI0LDg5Ljk1Mzc3MiAzOS44ODQ0NTUzLDkyLjYyMzM2MTYgMzMuMDI2NTg4Miw5OS4wNjA1ODQ2IFogTTQ1LjUsNjYuNSBDMzguODcyNTgzLDY2LjUgMzMuNSw2MS4xMjc0MTcgMzMuNSw1NC41IEMzMy41LDQ3Ljg3MjU4MyAzOC44NzI1ODMsNDIuNSA0NS41LDQyLjUgQzUyLjEyNzQxNyw0Mi41IDU3LjUsNDcuODcyNTgzIDU3LjUsNTQuNSBDNTcuNSw2MS4xMjc0MTcgNTIuMTI3NDE3LDY2LjUgNDUuNSw2Ni41IFogTTQ1LjUsNjMuNSBDNTAuNDcwNTYyNyw2My41IDU0LjUsNTkuNDcwNTYyNyA1NC41LDU0LjUgQzU0LjUsNDkuNTI5NDM3MyA1MC40NzA1NjI3LDQ1LjUgNDUuNSw0NS41IEM0MC41Mjk0MzczLDQ1LjUgMzYuNSw0OS41Mjk0MzczIDM2LjUsNTQuNSBDMzYuNSw1OS40NzA1NjI3IDQwLjUyOTQzNzMsNjMuNSA0NS41LDYzLjUgWiBNOTIuNSw2Ni41IEM4NS44NzI1ODMsNjYuNSA4MC41LDYxLjEyNzQxNyA4MC41LDU0LjUgQzgwLjUsNDcuODcyNTgzIDg1Ljg3MjU4Myw0Mi41IDkyLjUsNDIuNSBDOTkuMTI3NDE3LDQyLjUgMTA0LjUsNDcuODcyNTgzIDEwNC41LDU0LjUgQzEwNC41LDYxLjEyNzQxNyA5OS4xMjc0MTcsNjYuNSA5Mi41LDY2LjUgWiBNOTIuNSw2My41IEM5Ny40NzA1NjI3LDYzLjUgMTAxLjUsNTkuNDcwNTYyNyAxMDEuNSw1NC41IEMxMDEuNSw0OS41Mjk0MzczIDk3LjQ3MDU2MjcsNDUuNSA5Mi41LDQ1LjUgQzg3LjUyOTQzNzMsNDUuNSA4My41LDQ5LjUyOTQzNzMgODMuNSw1NC41IEM4My41LDU5LjQ3MDU2MjcgODcuNTI5NDM3Myw2My41IDkyLjUsNjMuNSBaIiBpZD0iREVOWSI+PC9wYXRoPg0KICAgICAgICA8L2c+DQogICAgPC9nPg0KPC9zdmc+DQo=', 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjEzOHB4IiBoZWlnaHQ9IjEzOHB4IiB2aWV3Qm94PSIwIDAgMTM4IDEzOCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4NCiAgICA8ZyBpZD0iQXNzZXRzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4NCiAgICAgICAgPGcgaWQ9IlBVQkxJU0hfRkVUQ0hfT0siIGZpbGwtcnVsZT0ibm9uemVybyIgZmlsbD0iIzRDRDk2NCI+DQogICAgICAgICAgICA8cGF0aCBkPSJNNjksMTM4IEMzMC44OTIzNTIzLDEzOCAwLDEwNy4xMDc2NDggMCw2OSBDMCwzMC44OTIzNTIzIDMwLjg5MjM1MjMsMCA2OSwwIEMxMDcuMTA3NjQ4LDAgMTM4LDMwLjg5MjM1MjMgMTM4LDY5IEMxMzgsMTA3LjEwNzY0OCAxMDcuMTA3NjQ4LDEzOCA2OSwxMzggWiBNMjEuOTM1NTk1Nyw1OC42NTc3MTQ4IEwyMS45MzU1OTU3LDgwLjUgTDI1LjMyNjIyMDcsODAuNSBMMjUuMzI2MjIwNyw3My4wMzc1OTc3IEwzMC4wMTg2MDM1LDczLjAzNzU5NzcgQzM0LjMwMjI5NDksNzMuMDM3NTk3NyAzNy4zMTQ1MDE5LDcwLjEwMTA3NDIgMzcuMzE0NTAxOSw2NS44MzI1MTk1IEMzNy4zMTQ1MDE5LDYxLjU3OTEwMTYgMzQuMzYyODQxOCw1OC42NTc3MTQ4IDMwLjEyNDU2MDUsNTguNjU3NzE0OCBMMjEuOTM1NTk1Nyw1OC42NTc3MTQ4IFogTTI1LjMyNjIyMDcsNjEuNTE4NTU0NyBMMjkuMjMxNDk0MSw2MS41MTg1NTQ3IEMzMi4xNjgwMTc2LDYxLjUxODU1NDcgMzMuODQ4MTkzNCw2My4wOTI3NzM0IDMzLjg0ODE5MzQsNjUuODQ3NjU2MiBDMzMuODQ4MTkzNCw2OC42MDI1MzkxIDMyLjE2ODAxNzYsNzAuMTkxODk0NSAyOS4yMTYzNTc0LDcwLjE5MTg5NDUgTDI1LjMyNjIyMDcsNzAuMTkxODk0NSBMMjUuMzI2MjIwNyw2MS41MTg1NTQ3IFogTTUzLjY0MTA2NDUsNjQuNTc2MTcxOSBMNTAuMzcxNTMzMiw2NC41NzYxNzE5IEw1MC4zNzE1MzMyLDczLjc0OTAyMzQgQzUwLjM3MTUzMzIsNzYuMjMxNDQ1MyA0OC45NDg2ODE2LDc3Ljg2NjIxMDkgNDYuNTg3MzUzNSw3Ny44NjYyMTA5IEM0NC4zMzE5ODI0LDc3Ljg2NjIxMDkgNDMuMTgxNTkxOCw3Ni41Nzk1ODk4IDQzLjE4MTU5MTgsNzQuMTU3NzE0OCBMNDMuMTgxNTkxOCw2NC41NzYxNzE5IEwzOS45MTIwNjA1LDY0LjU3NjE3MTkgTDM5LjkxMjA2MDUsNzQuNzkzNDU3IEMzOS45MTIwNjA1LDc4LjQ0MTQwNjIgNDIuMDMxMjAxMiw4MC42ODE2NDA2IDQ1LjQ5NzUwOTgsODAuNjgxNjQwNiBDNDcuOTM0NTIxNSw4MC42ODE2NDA2IDQ5LjUyMzg3Nyw3OS42Njc0ODA1IDUwLjQzMjA4MDEsNzcuNzYwMjUzOSBMNTAuNTA3NzYzNyw3Ny43NjAyNTM5IEw1MC41MDc3NjM3LDgwLjUgTDUzLjY0MTA2NDUsODAuNSBMNTMuNjQxMDY0NSw2NC41NzYxNzE5IFogTTY1LjQ0MTc0OCw4MC42NjY1MDM5IEM2OS40NjgxMTUyLDgwLjY2NjUwMzkgNzIuMDg2NzY3Niw3Ny40ODc3OTMgNzIuMDg2NzY3Niw3Mi41MzgwODU5IEM3Mi4wODY3Njc2LDY3LjYwMzUxNTYgNjkuNDY4MTE1Miw2NC40MDk2NjggNjUuNDU2ODg0OCw2NC40MDk2NjggQzYzLjIwMTUxMzcsNjQuNDA5NjY4IDYxLjM4NTEwNzQsNjUuNDM4OTY0OCA2MC40MzE0OTQxLDY3LjIyNTA5NzcgTDYwLjM1NTgxMDUsNjcuMjI1MDk3NyBMNjAuMzU1ODEwNSw1OC42NTc3MTQ4IEw1Ny4wODYyNzkzLDU4LjY1NzcxNDggTDU3LjA4NjI3OTMsODAuNSBMNjAuMjY0OTkwMiw4MC41IEw2MC4yNjQ5OTAyLDc3Ljc5MDUyNzMgTDYwLjMyNTUzNzEsNzcuNzkwNTI3MyBDNjEuMzA5NDIzOCw3OS42MzcyMDcgNjMuMTEwNjkzNCw4MC42NjY1MDM5IDY1LjQ0MTc0OCw4MC42NjY1MDM5IFogTTY0LjU2MzgxODQsNjcuMTk0ODI0MiBDNjcuMDc2NTEzNyw2Ny4xOTQ4MjQyIDY4LjcyNjQxNiw2OS4yOTg4MjgxIDY4LjcyNjQxNiw3Mi41MzgwODU5IEM2OC43MjY0MTYsNzUuODA3NjE3MiA2Ny4wNzY1MTM3LDc3Ljg5NjQ4NDQgNjQuNTYzODE4NCw3Ny44OTY0ODQ0IEM2Mi4wMzU5ODYzLDc3Ljg5NjQ4NDQgNjAuMzQwNjczOCw3NS43NDcwNzAzIDYwLjM0MDY3MzgsNzIuNTM4MDg1OSBDNjAuMzQwNjczOCw2OS4zNTkzNzUgNjIuMDUxMTIzLDY3LjE5NDgyNDIgNjQuNTYzODE4NCw2Ny4xOTQ4MjQyIFogTTc0Ljg1MDgzMDEsODAuNSBMNzguMTIwMzYxMyw4MC41IEw3OC4xMjAzNjEzLDU4LjY1NzcxNDggTDc0Ljg1MDgzMDEsNTguNjU3NzE0OCBMNzQuODUwODMwMSw4MC41IFogTTgxLjY4NjY2OTksODAuNSBMODQuOTU2MjAxMiw4MC41IEw4NC45NTYyMDEyLDY0LjU3NjE3MTkgTDgxLjY4NjY2OTksNjQuNTc2MTcxOSBMODEuNjg2NjY5OSw4MC41IFogTTgzLjMyMTQzNTUsNjIuMjQ1MTE3MiBDODQuMzgxMDA1OSw2Mi4yNDUxMTcyIDg1LjIyODY2MjEsNjEuNDEyNTk3NyA4NS4yMjg2NjIxLDYwLjM4MzMwMDggQzg1LjIyODY2MjEsNTkuMzIzNzMwNSA4NC4zODEwMDU5LDU4LjUwNjM0NzcgODMuMzIxNDM1NSw1OC41MDYzNDc3IEM4Mi4yNzcwMDIsNTguNTA2MzQ3NyA4MS40MjkzNDU3LDU5LjMyMzczMDUgODEuNDI5MzQ1Nyw2MC4zODMzMDA4IEM4MS40MjkzNDU3LDYxLjQxMjU5NzcgODIuMjc3MDAyLDYyLjI0NTExNzIgODMuMzIxNDM1NSw2Mi4yNDUxMTcyIFogTTg4LjExMzgxODQsNjkuMTMyMzI0MiBDODguMTEzODE4NCw3MS4zNDIyODUyIDg5LjU2Njk0MzQsNzIuODEwNTQ2OSA5Mi40NDI5MTk5LDczLjUwNjgzNTkgTDk1LjI4ODYyMyw3NC4yMDMxMjUgQzk2Ljk1MzY2MjEsNzQuNjI2OTUzMSA5Ny41NTkxMzA5LDc1LjE1NjczODMgOTcuNTU5MTMwOSw3Ni4xNDA2MjUgQzk3LjU1OTEzMDksNzcuNDEyMTA5NCA5Ni4zMzMwNTY2LDc4LjIxNDM1NTUgOTQuMzgwNDE5OSw3OC4yMTQzNTU1IEM5Mi4zOTc1MDk4LDc4LjIxNDM1NTUgOTEuMTcxNDM1NSw3Ny4zOTY5NzI3IDkwLjk0NDM4NDgsNzUuODY4MTY0MSBMODcuNzA1MTI3LDc1Ljg2ODE2NDEgQzg3Ljk0NzMxNDUsNzguNzc0NDE0MSA5MC40NzUxNDY1LDgwLjY5Njc3NzMgOTQuMjI5MDUyNyw4MC42OTY3NzczIEM5OC4xMTkxODk1LDgwLjY5Njc3NzMgMTAwLjg0Mzc5OSw3OC43MjkwMDM5IDEwMC44NDM3OTksNzUuODUzMDI3MyBDMTAwLjg0Mzc5OSw3My41MjE5NzI3IDk5LjYzMjg2MTMsNzIuMzQxMzA4NiA5Ni40MjM4NzcsNzEuNTY5MzM1OSBMOTMuNzQ0Njc3Nyw3MC45NDg3MzA1IEM5Mi4wOTQ3NzU0LDcwLjU0MDAzOTEgOTEuMzA3NjY2LDY5LjkwNDI5NjkgOTEuMzA3NjY2LDY4Ljk1MDY4MzYgQzkxLjMwNzY2Niw2Ny43MDk0NzI3IDkyLjQ4ODMzMDEsNjYuODkyMDg5OCA5NC4yNTkzMjYyLDY2Ljg5MjA4OTggQzk2LjA3NTczMjQsNjYuODkyMDg5OCA5Ny4yNzE1MzMyLDY3Ljc1NDg4MjggOTcuNDA3NzYzNyw2OS4xNjI1OTc3IEwxMDAuNDgwNTE4LDY5LjE2MjU5NzcgQzEwMC40MDQ4MzQsNjYuMzQ3MTY4IDk3Ljg3NzAwMiw2NC4zOTQ1MzEyIDk0LjM1MDE0NjUsNjQuMzk0NTMxMiBDOTAuNjQxNjUwNCw2NC4zOTQ1MzEyIDg4LjExMzgxODQsNjYuMzE2ODk0NSA4OC4xMTM4MTg0LDY5LjEzMjMyNDIgWiBNMTAzLjYwNzg2MSw4MC41IEwxMDYuODc3MzkzLDgwLjUgTDEwNi44NzczOTMsNzEuNDAyODMyIEMxMDYuODc3MzkzLDY4Ljg3NSAxMDguMzYwNzkxLDY3LjIwOTk2MDkgMTEwLjc4MjY2Niw2Ny4yMDk5NjA5IEMxMTMuMDgzNDQ3LDY3LjIwOTk2MDkgMTE0LjI2NDExMSw2OC42MzI4MTI1IDExNC4yNjQxMTEsNzAuOTc5MDAzOSBMMTE0LjI2NDExMSw4MC41IEwxMTcuNTQ4Nzc5LDgwLjUgTDExNy41NDg3NzksNzAuMzI4MTI1IEMxMTcuNTQ4Nzc5LDY2LjcyNTU4NTkgMTE1LjQ1OTkxMiw2NC4zOTQ1MzEyIDExMS45NjMzMyw2NC4zOTQ1MzEyIEMxMDkuNTI2MzE4LDY0LjM5NDUzMTIgMTA3Ljg3NjQxNiw2NS4zNzg0MTggMTA2LjkyMjgwMyw2Ny4yODU2NDQ1IEwxMDYuODQ3MTE5LDY3LjI4NTY0NDUgTDEwNi44NDcxMTksNTguNjU3NzE0OCBMMTAzLjYwNzg2MSw1OC42NTc3MTQ4IEwxMDMuNjA3ODYxLDgwLjUgWiIgaWQ9IkZFVENIX09LIj48L3BhdGg+DQogICAgICAgIDwvZz4NCiAgICA8L2c+DQo8L3N2Zz4NCg==', 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjEzOHB4IiBoZWlnaHQ9IjEzOHB4IiB2aWV3Qm94PSIwIDAgMTM4IDEzOCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4NCiAgICA8ZyBpZD0iQXNzZXRzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4NCiAgICAgICAgPGcgaWQ9IlBVQkxJU0hfRkVUQ0hfRFVQTF9PSyIgZmlsbC1ydWxlPSJub256ZXJvIiBmaWxsPSIjMDA3QUZGIj4NCiAgICAgICAgICAgIDxwYXRoIGQ9Ik02OSwxMzggQzMwLjg5MjM1MjMsMTM4IDAsMTA3LjEwNzY0OCAwLDY5IEMwLDMwLjg5MjM1MjMgMzAuODkyMzUyMywwIDY5LDAgQzEwNy4xMDc2NDgsMCAxMzgsMzAuODkyMzUyMyAxMzgsNjkgQzEzOCwxMDcuMTA3NjQ4IDEwNy4xMDc2NDgsMTM4IDY5LDEzOCBaIE0yNC42ODI0MjE5LDU4LjE1NzcxNDggTDIxLjI5MTc5NjksNTguMTU3NzE0OCBMMjEuMjkxNzk2OSw3Mi4zMjU2ODM2IEMyMS4yOTE3OTY5LDc3LjAzMzIwMzEgMjQuNjUyMTQ4NCw4MC4zNjMyODEyIDMwLjEzMTY0MDYsODAuMzYzMjgxMiBDMzUuNjExMTMyOCw4MC4zNjMyODEyIDM4Ljk3MTQ4NDQsNzcuMDMzMjAzMSAzOC45NzE0ODQ0LDcyLjMyNTY4MzYgTDM4Ljk3MTQ4NDQsNTguMTU3NzE0OCBMMzUuNTk1OTk2MSw1OC4xNTc3MTQ4IEwzNS41OTU5OTYxLDcyLjAzODA4NTkgQzM1LjU5NTk5NjEsNzUuMTU2MjUgMzMuNjEzMDg1OSw3Ny4zNTEwNzQyIDMwLjEzMTY0MDYsNzcuMzUxMDc0MiBDMjYuNjUwMTk1Myw3Ny4zNTEwNzQyIDI0LjY4MjQyMTksNzUuMTU2MjUgMjQuNjgyNDIxOSw3Mi4wMzgwODU5IEwyNC42ODI0MjE5LDU4LjE1NzcxNDggWiBNNTAuOTk5MjE4Nyw2My45MDk2NjggQzQ4Ljc3NDEyMTEsNjMuOTA5NjY4IDQ2LjgzNjYyMTEsNjUuMDE0NjQ4NCA0NS45Mjg0MTgsNjYuNzI1MDk3NyBMNDUuODY3ODcxMSw2Ni43MjUwOTc3IEw0NS44Njc4NzExLDY0LjA3NjE3MTkgTDQyLjcwNDI5NjksNjQuMDc2MTcxOSBMNDIuNzA0Mjk2OSw4NS4yNjc1NzgxIEw0NS45NzM4MjgxLDg1LjI2NzU3ODEgTDQ1Ljk3MzgyODEsNzcuMzgxMzQ3NyBMNDYuMDQ5NTExNyw3Ny4zODEzNDc3IEM0Ni45ODc5ODgzLDc5LjE1MjM0MzggNDguNzg5MjU3OCw4MC4xNjY1MDM5IDUxLjA1OTc2NTYsODAuMTY2NTAzOSBDNTUuMDU1ODU5NCw4MC4xNjY1MDM5IDU3LjcwNDc4NTIsNzYuOTg3NzkzIDU3LjcwNDc4NTIsNzIuMDM4MDg1OSBDNTcuNzA0Nzg1Miw2Ny4xMDM1MTU2IDU1LjA0MDcyMjcsNjMuOTA5NjY4IDUwLjk5OTIxODcsNjMuOTA5NjY4IFogTTUwLjEzNjQyNTgsNzcuMzk2NDg0NCBDNDcuNjM4ODY3Miw3Ny4zOTY0ODQ0IDQ1Ljk1ODY5MTQsNzUuMjQ3MDcwMyA0NS45NTg2OTE0LDcyLjAzODA4NTkgQzQ1Ljk1ODY5MTQsNjguODU5Mzc1IDQ3LjYzODg2NzIsNjYuNjk0ODI0MiA1MC4xMzY0MjU4LDY2LjY5NDgyNDIgQzUyLjY3OTM5NDUsNjYuNjk0ODI0MiA1NC4zNDQ0MzM2LDY4LjgxMzk2NDggNTQuMzQ0NDMzNiw3Mi4wMzgwODU5IEM1NC4zNDQ0MzM2LDc1LjI5MjQ4MDUgNTIuNjc5Mzk0NSw3Ny4zOTY0ODQ0IDUwLjEzNjQyNTgsNzcuMzk2NDg0NCBaIE02Ni4yOTY0ODQ0LDgwLjE2NjUwMzkgQzY4LjYxMjQwMjMsODAuMTY2NTAzOSA3MC40Mjg4MDg2LDc5LjEwNjkzMzYgNzEuMzY3Mjg1Miw3Ny4yOTA1MjczIEw3MS40Mjc4MzIsNzcuMjkwNTI3MyBMNzEuNDI3ODMyLDgwIEw3NC42MDY1NDMsODAgTDc0LjYwNjU0Myw1OC4xNTc3MTQ4IEw3MS4zMjE4NzUsNTguMTU3NzE0OCBMNzEuMzIxODc1LDY2LjcyNTA5NzcgTDcxLjI2MTMyODEsNjYuNzI1MDk3NyBDNzAuMzUzMTI1LDY0Ljk2OTIzODMgNjguNTUxODU1NSw2My45MDk2NjggNjYuMjY2MjEwOSw2My45MDk2NjggQzYyLjMxNTUyNzMsNjMuOTA5NjY4IDU5LjYwNjA1NDcsNjcuMTE4NjUyMyA1OS42MDYwNTQ3LDcyLjAzODA4NTkgQzU5LjYwNjA1NDcsNzYuOTU3NTE5NSA2Mi4zMTU1MjczLDgwLjE2NjUwMzkgNjYuMjk2NDg0NCw4MC4xNjY1MDM5IFogTTY3LjE1OTI3NzMsNjYuNjk0ODI0MiBDNjkuNjcxOTcyNyw2Ni42OTQ4MjQyIDcxLjM1MjE0ODQsNjguODI5MTAxNiA3MS4zNTIxNDg0LDcyLjAzODA4NTkgQzcxLjM1MjE0ODQsNzUuMjc3MzQzOCA2OS42NzE5NzI3LDc3LjM5NjQ4NDQgNjcuMTU5Mjc3Myw3Ny4zOTY0ODQ0IEM2NC42MTYzMDg2LDc3LjM5NjQ4NDQgNjIuOTUxMjY5NSw3NS4zMDc2MTcyIDYyLjk1MTI2OTUsNzIuMDM4MDg1OSBDNjIuOTUxMjY5NSw2OC43OTg4MjgxIDY0LjYxNjMwODYsNjYuNjk0ODI0MiA2Ny4xNTkyNzczLDY2LjY5NDgyNDIgWiBNODIuNzEzODY3Miw4MC4yMjcwNTA4IEM4NC44NjMyODEyLDgwLjIyNzA1MDggODYuODQ2MTkxNCw3OS4wOTE3OTY5IDg3LjczOTI1NzgsNzcuMzgxMzQ3NyBMODcuODE0OTQxNCw3Ny4zODEzNDc3IEw4Ny44MTQ5NDE0LDgwIEw5MC45NDgyNDIyLDgwIEw5MC45NDgyNDIyLDY5LjA4NjQyNTggQzkwLjk0ODI0MjIsNjUuOTIyODUxNiA4OC40MjA0MTAyLDYzLjg3OTM5NDUgODQuNTE1MTM2Nyw2My44NzkzOTQ1IEM4MC44OTc0NjA5LDYzLjg3OTM5NDUgNzguMjMzMzk4NCw2NS45NTMxMjUgNzguMTQyNTc4MSw2OC43OTg4MjgxIEw4MS4yMDAxOTUzLDY4Ljc5ODgyODEgQzgxLjQ1NzUxOTUsNjcuNDM2NTIzNCA4Mi43MTM4NjcyLDY2LjU1ODU5MzggODQuNDI0MzE2NCw2Ni41NTg1OTM4IEM4Ni40OTgwNDY5LDY2LjU1ODU5MzggODcuNjkzODQ3Nyw2Ny41MjczNDM4IDg3LjY5Mzg0NzcsNjkuMzI4NjEzMyBMODcuNjkzODQ3Nyw3MC41Mzk1NTA4IEw4My40NTU1NjY0LDcwLjc4MTczODMgQzc5LjQ4OTc0NjEsNzEuMDIzOTI1OCA3Ny4zNTU0Njg4LDcyLjY1ODY5MTQgNzcuMzU1NDY4OCw3NS40NDM4NDc3IEM3Ny4zNTU0Njg4LDc4LjI3NDQxNDEgNzkuNTUwMjkzLDgwLjIyNzA1MDggODIuNzEzODY3Miw4MC4yMjcwNTA4IFogTTgzLjYyMjA3MDMsNzcuNjM4NjcxOSBDODEuODA1NjY0MSw3Ny42Mzg2NzE5IDgwLjY0MDEzNjcsNzYuNzAwMTk1MyA4MC42NDAxMzY3LDc1LjM2ODE2NDEgQzgwLjY0MDEzNjcsNzMuOTkwNzIyNyA4MS43NjAyNTM5LDczLjE3MzMzOTggODMuODc5Mzk0NSw3My4wNTIyNDYxIEw4Ny42OTM4NDc3LDcyLjgxMDA1ODYgTDg3LjY5Mzg0NzcsNzQuMDM2MTMyOCBDODcuNjkzODQ3Nyw3Ni4wOTQ3MjY2IDg1LjkzNzk4ODMsNzcuNjM4NjcxOSA4My42MjIwNzAzLDc3LjYzODY3MTkgWiBNOTUuMTY1NDI5Nyw2MC4zMDcxMjg5IEw5NS4xNjU0Mjk3LDY0LjA3NjE3MTkgTDkyLjg0OTUxMTcsNjQuMDc2MTcxOSBMOTIuODQ5NTExNyw2Ni42NjQ1NTA4IEw5NS4xNjU0Mjk3LDY2LjY2NDU1MDggTDk1LjE2NTQyOTcsNzUuNzkxOTkyMiBDOTUuMTY1NDI5Nyw3OC44Nzk4ODI4IDk2LjQyMTc3NzMsODAuMDkwODIwMyA5OS42NDU4OTg0LDgwLjA5MDgyMDMgQzEwMC4zNzI0NjEsODAuMDkwODIwMyAxMDEuMDk5MDIzLDgwLjAzMDI3MzQgMTAxLjQ2MjMwNSw3OS45Mzk0NTMxIEwxMDEuNDYyMzA1LDc3LjM2NjIxMDkgQzEwMS4yNTAzOTEsNzcuMzk2NDg0NCAxMDAuNzIwNjA1LDc3LjQ0MTg5NDUgMTAwLjM4NzU5OCw3Ny40NDE4OTQ1IEM5OS4wNTU1NjY0LDc3LjQ0MTg5NDUgOTguNDUwMDk3Nyw3Ni44MDYxNTIzIDk4LjQ1MDA5NzcsNzUuNDQzODQ3NyBMOTguNDUwMDk3Nyw2Ni42NjQ1NTA4IEwxMDEuNDc3NDQxLDY2LjY2NDU1MDggTDEwMS40Nzc0NDEsNjQuMDc2MTcxOSBMOTguNDUwMDk3Nyw2NC4wNzYxNzE5IEw5OC40NTAwOTc3LDYwLjMwNzEyODkgTDk1LjE2NTQyOTcsNjAuMzA3MTI4OSBaIE0xMTQuNDI4NTE2LDc1LjMyMjc1MzkgQzExMy45ODk1NTEsNzYuNzAwMTk1MyAxMTIuNTY2Njk5LDc3LjU2Mjk4ODMgMTEwLjc1MDI5Myw3Ny41NjI5ODgzIEMxMDguMTc3MDUxLDc3LjU2Mjk4ODMgMTA2LjQ2NjYwMiw3NS43NzY4NTU1IDEwNi40NjY2MDIsNzMuMDUyMjQ2MSBMMTA2LjQ2NjYwMiw3Mi44NTU0Njg4IEwxMTcuNzEzMTg0LDcyLjg1NTQ2ODggTDExNy43MTMxODQsNzEuNzM1MzUxNiBDMTE3LjcxMzE4NCw2Ni45MDY3MzgzIDExNC45NDMxNjQsNjMuODc5Mzk0NSAxMTAuNTM4Mzc5LDYzLjg3OTM5NDUgQzEwNi4wNTc5MSw2My44NzkzOTQ1IDEwMy4xNjY3OTcsNjcuMTE4NjUyMyAxMDMuMTY2Nzk3LDcyLjExMzc2OTUgQzEwMy4xNjY3OTcsNzcuMDkzNzUgMTA2LjA0Mjc3Myw4MC4xOTY3NzczIDExMC42NzQ2MDksODAuMTk2Nzc3MyBDMTE0LjI3NzE0OCw4MC4xOTY3NzczIDExNy4wOTI1NzgsNzguMjEzODY3MiAxMTcuNTMxNTQzLDc1LjMyMjc1MzkgTDExNC40Mjg1MTYsNzUuMzIyNzUzOSBaIE0xMTAuNTM4Mzc5LDY2LjUyODMyMDMgQzExMi44MDg4ODcsNjYuNTI4MzIwMyAxMTQuMzY3OTY5LDY4LjEzMjgxMjUgMTE0LjQ0MzY1Miw3MC41Njk4MjQyIEwxMDYuNDgxNzM4LDcwLjU2OTgyNDIgQzEwNi42NDgyNDIsNjguMTYzMDg1OSAxMDguMjgzMDA4LDY2LjUyODMyMDMgMTEwLjUzODM3OSw2Ni41MjgzMjAzIFoiIGlkPSJGRVRDSF9EVVBMIj48L3BhdGg+DQogICAgICAgIDwvZz4NCiAgICA8L2c+DQo8L3N2Zz4NCg==') + + +// ('INSTALL', 'SNIPPET', 'PRESET', 'GITHUB', 'REMOVE') +$ICONS_LIST: ('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjIzcHgiIGhlaWdodD0iMjNweCIgdmlld0JveD0iMCAwIDIzIDIzIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iSUNPTl9JTlNUQUxMIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGZpbGw9IiNGRkZGRkYiPg0KICAgICAgICAgICAgPHBhdGggZD0iTTExLjUsMTggQzcuOTEwMTQ5MTMsMTggNSwxNS4wODk4NTA5IDUsMTEuNSBDNSw3LjkxMDE0OTEzIDcuOTEwMTQ5MTMsNSAxMS41LDUgQzE1LjA4OTg1MDksNSAxOCw3LjkxMDE0OTEzIDE4LDExLjUgQzE4LDE1LjA4OTg1MDkgMTUuMDg5ODUwOSwxOCAxMS41LDE4IFogTTExLjUsMTcgQzE0LjUzNzU2NjEsMTcgMTcsMTQuNTM3NTY2MSAxNywxMS41IEMxNyw4LjQ2MjQzMzg4IDE0LjUzNzU2NjEsNiAxMS41LDYgQzguNDYyNDMzODgsNiA2LDguNDYyNDMzODggNiwxMS41IEM2LDE0LjUzNzU2NjEgOC40NjI0MzM4OCwxNyAxMS41LDE3IFogTTExLDEyLjI5Mjg5MzIgTDExLDkgTDEyLDkgTDEyLDEyLjI5Mjg5MzIgTDEzLjY5NTk1NjQsMTAuNTk2OTM2OSBMMTQuNDAzMDYzMSwxMS4zMDQwNDM2IEwxMiwxMy43MDcxMDY4IEwxMiwxMy43MTE4NjgzIEwxMS44ODgxNjY0LDEzLjgxODk0MDQgTDExLjg1MzU1MzQsMTMuODUzNTUzNCBMMTEuODUyODAwNSwxMy44NTI4MDA1IEwxMS40ODg4NTc0LDE0LjIwMTI0ODEgTDExLDEzLjcxMTg2ODMgTDExLDEzLjcwNzEwNjggTDguNTk2OTM2ODUsMTEuMzA0MDQzNiBMOS4zMDQwNDM2MywxMC41OTY5MzY5IEwxMSwxMi4yOTI4OTMyIFoiIGlkPSJJTlNUQUxMIj48L3BhdGg+DQogICAgICAgIDwvZz4NCiAgICA8L2c+DQo8L3N2Zz4NCg==','data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjIzcHgiIGhlaWdodD0iMjNweCIgdmlld0JveD0iMCAwIDIzIDIzIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iSUNPTl9TTklQUEVUIiBmaWxsPSIjRkZGRkZGIj4NCiAgICAgICAgICAgIDxwYXRoIGQ9Ik02LDcgTDE4LDcgTDE4LDggTDYsOCBMNiw3IFogTTYsMTEgTDE4LDExIEwxOCwxMiBMNiwxMiBMNiwxMSBaIE02LDE1IEwxMywxNSBMMTMsMTYgTDYsMTYgTDYsMTUgWiIgaWQ9IlNOSVBQRVQiPjwvcGF0aD4NCiAgICAgICAgPC9nPg0KICAgIDwvZz4NCjwvc3ZnPg0K','data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjIzcHgiIGhlaWdodD0iMjNweCIgdmlld0JveD0iMCAwIDIzIDIzIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iSUNPTl9QUkVTRVQiIGZpbGwtcnVsZT0ibm9uemVybyIgZmlsbD0iI0ZGRkZGRiI+DQogICAgICAgICAgICA8cGF0aCBkPSJNNiw4IEw2LDcgTDEzLDcgTDEzLDggTDYsOCBaIE0xNSw3IEwxOCw3IEwxOCw4IEwxNSw4IEwxNSw5IEwxNCw5IEwxNCw2IEwxNSw2IEwxNSw3IFogTTEwLDExIEwxOCwxMSBMMTgsMTIgTDEwLDEyIEwxMCwxMyBMOSwxMyBMOSwxMCBMMTAsMTAgTDEwLDExIFogTTYsMTIgTDYsMTEgTDgsMTEgTDgsMTIgTDYsMTIgWiBNMTMsMTUgTDE4LDE1IEwxOCwxNiBMMTMsMTYgTDEzLDE3IEwxMiwxNyBMMTIsMTQgTDEzLDE0IEwxMywxNSBaIE02LDE2IEw2LDE1IEwxMSwxNSBMMTEsMTYgTDYsMTYgWiIgaWQ9IlBSRVNFVCI+PC9wYXRoPg0KICAgICAgICA8L2c+DQogICAgPC9nPg0KPC9zdmc+DQo=','data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjIzcHgiIGhlaWdodD0iMjNweCIgdmlld0JveD0iMCAwIDIzIDIzIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iSUNPTl9HSVRIVUIiIGZpbGw9IiNGRkZGRkUiPg0KICAgICAgICAgICAgPHBhdGggZD0iTTExLjY2Mzg4MzIsNSBDNy45ODQxODI0NSw1IDUsNy45ODM3NzMzMyA1LDExLjY2NDcwMTQgQzUsMTQuNjA5MTk4NCA2LjkwOTQwMjE4LDE3LjEwNjkyNzIgOS41NTc2OTAyMywxNy45ODgxODk4IEM5Ljg5MTEyOTg2LDE4LjA0OTU1OSAxMC4wMTI2NDEsMTcuODQzNzY3NCAxMC4wMTI2NDEsMTcuNjY3MDI0IEMxMC4wMTI2NDEsMTcuNTA4NjkxMyAxMC4wMDY5MTMyLDE3LjA4OTc0MzggMTAuMDAzNjQwMiwxNi41MzM3Mzg0IEM4LjE0OTg3OTQ1LDE2LjkzNjMyMDcgNy43NTg3NTI3MSwxNS42NDAyMDIgNy43NTg3NTI3MSwxNS42NDAyMDIgQzcuNDU1NTg4NTgsMTQuODcwMjIyMyA3LjAxODYzOTQ2LDE0LjY2NTI0OSA3LjAxODYzOTQ2LDE0LjY2NTI0OSBDNi40MTM1Mzg1OCwxNC4yNTIwMjkzIDcuMDY0NDYxODQsMTQuMjYwMjExOSA3LjA2NDQ2MTg0LDE0LjI2MDIxMTkgQzcuNzMzMzg2NzUsMTQuMzA3MjYxNyA4LjA4NTIzNzE3LDE0Ljk0NzEzODUgOC4wODUyMzcxNywxNC45NDcxMzg1IEM4LjY3OTcwMDcxLDE1Ljk2NTQ1OSA5LjY0NTI0MzcsMTUuNjcxMjk1NyAxMC4wMjQ5MTQ4LDE1LjUwMDY4OTIgQzEwLjA4NTQ2NTgsMTUuMDcwMjg2MSAxMC4yNTc3MDg5LDE0Ljc3NjUzMTkgMTAuNDQ3OTUzNiwxNC42MTAwMTY3IEM4Ljk2ODEzNjIyLDE0LjQ0MTg2NDkgNy40MTIyMjA5NywxMy44Njk5MDM0IDcuNDEyMjIwOTcsMTEuMzE2MTI0IEM3LjQxMjIyMDk3LDEwLjU4ODY5MzggNy42NzIwMTc0OSw5Ljk5MzQxMTk2IDguMDk4MzI5MjcsOS41Mjc4MjM4NiBDOC4wMjk1OTU3LDkuMzU5MjYyOTYgNy44MDA4OTI5NCw4LjY4MTMzNzIyIDguMTYzNzg5ODIsNy43NjQwNzEzOCBDOC4xNjM3ODk4Miw3Ljc2NDA3MTM4IDguNzIzMDY4MzIsNy41ODQ4NzMxNSA5Ljk5NjI3NTg2LDguNDQ3MzE1NzkgQzEwLjUyNzczMzYsOC4yOTkyMTEzMSAxMS4wOTgwNTg2LDguMjI1NTY4MiAxMS42NjQ3MDE0LDguMjIyNzA0MyBDMTIuMjMwOTM1MSw4LjIyNTU2ODIgMTIuODAwODUxLDguMjk5MjExMzEgMTMuMzMzMTI3LDguNDQ3MzE1NzkgQzE0LjYwNTUxNjMsNy41ODQ4NzMxNSAxNS4xNjM5NzY1LDcuNzY0MDcxMzggMTUuMTYzOTc2NSw3Ljc2NDA3MTM4IEMxNS41Mjc2OTE3LDguNjgxMzM3MjIgMTUuMjk4OTg4OSw5LjM1OTI2Mjk2IDE1LjIzMDY2NDQsOS41Mjc4MjM4NiBDMTUuNjU3Nzk0NSw5Ljk5MzQxMTk2IDE1LjkxNTU0NTQsMTAuNTg4NjkzOCAxNS45MTU1NDU0LDExLjMxNjEyNCBDMTUuOTE1NTQ1NCwxMy44NzY0NDk1IDE0LjM1NzE3NTMsMTQuNDM5ODE5MyAxMi44NzI4NTc1LDE0LjYwNDY5OCBDMTMuMTExNzg4NSwxNC44MTA0ODk2IDEzLjMyNDk0NDQsMTUuMjE3MTYzMiAxMy4zMjQ5NDQ0LDE1LjgzODYyOTIgQzEzLjMyNDk0NDQsMTYuNzI5NzEwOSAxMy4zMTY3NjE4LDE3LjQ0ODU0OTQgMTMuMzE2NzYxOCwxNy42NjcwMjQgQzEzLjMxNjc2MTgsMTcuODQ1NDA0IDEzLjQzNzA0NTYsMTguMDUyODMyMSAxMy43NzQ5ODU2LDE3Ljk4Nzc4MDYgQzE2LjQyMTIyOCwxNy4xMDQ0NzI1IDE4LjMyODk5MzcsMTQuNjA4MzgwMiAxOC4zMjg5OTM3LDExLjY2NDcwMTQgQzE4LjMyODk5MzcsNy45ODM3NzMzMyAxNS4zNDQ4MTEzLDUgMTEuNjYzODgzMiw1IiBpZD0iR0lUSFVCIj48L3BhdGg+DQogICAgICAgIDwvZz4NCiAgICA8L2c+DQo8L3N2Zz4NCg==','data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxzdmcgd2lkdGg9IjIzcHgiIGhlaWdodD0iMjNweCIgdmlld0JveD0iMCAwIDIzIDIzIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPg0KICAgIDxnIGlkPSJBc3NldHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPg0KICAgICAgICA8ZyBpZD0iSUNPTl9SRU1PVkUiPg0KICAgICAgICAgICAgPHBhdGggZD0iTTExLjUsMTggQzcuOTEwMTQ5MTMsMTggNSwxNS4wODk4NTA5IDUsMTEuNSBDNSw3LjkxMDE0OTEzIDcuOTEwMTQ5MTMsNSAxMS41LDUgQzE1LjA4OTg1MDksNSAxOCw3LjkxMDE0OTEzIDE4LDExLjUgQzE4LDE1LjA4OTg1MDkgMTUuMDg5ODUwOSwxOCAxMS41LDE4IFogTTExLjUsMTcgQzE0LjUzNzU2NjEsMTcgMTcsMTQuNTM3NTY2MSAxNywxMS41IEMxNyw4LjQ2MjQzMzg4IDE0LjUzNzU2NjEsNiAxMS41LDYgQzguNDYyNDMzODgsNiA2LDguNDYyNDMzODggNiwxMS41IEM2LDE0LjUzNzU2NjEgOC40NjI0MzM4OCwxNyAxMS41LDE3IFoiIGlkPSJSRU1PVkUiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+PC9wYXRoPg0KICAgICAgICAgICAgPHBhdGggZD0iTTguOTc1MTk4ODcsMTQuMDI0ODAxMSBMMTQuMDI3NjkyNiw4Ljk3MjMwNzQzIiBpZD0iTGluZSIgc3Ryb2tlPSIjRkFGQkZFIiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIj48L3BhdGg+DQogICAgICAgICAgICA8cGF0aCBkPSJNOC45NzUxOTg4NywxNC4wMjQ4MDExIEwxNC4wMjc2OTI2LDguOTcyMzA3NDMiIGlkPSJMaW5lIiBzdHJva2U9IiNGQUZCRkUiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDExLjUwMDAwMCwgMTEuNTAwMDAwKSBzY2FsZSgtMSwgMSkgdHJhbnNsYXRlKC0xMS41MDAwMDAsIC0xMS41MDAwMDApICI+PC9wYXRoPg0KICAgICAgICA8L2c+DQogICAgPC9nPg0KPC9zdmc+DQo=') diff --git a/src/interface/textLimit.js b/src/interface/textLimit.js new file mode 100644 index 0000000..57b46f5 --- /dev/null +++ b/src/interface/textLimit.js @@ -0,0 +1,7 @@ +const textLimit = (text, limit) => { + if (text.length <= limit) return text + + return `${text.slice(0, limit)}…` +} + +export default textLimit diff --git a/src/static/ICON_GITHUB.svg b/src/static/ICON_GITHUB.svg new file mode 100644 index 0000000..09969bd --- /dev/null +++ b/src/static/ICON_GITHUB.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/ICON_INSTALL.svg b/src/static/ICON_INSTALL.svg new file mode 100644 index 0000000..f953b5f --- /dev/null +++ b/src/static/ICON_INSTALL.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/ICON_PRESET.svg b/src/static/ICON_PRESET.svg new file mode 100644 index 0000000..44a87ee --- /dev/null +++ b/src/static/ICON_PRESET.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/ICON_PUBLISH.svg b/src/static/ICON_PUBLISH.svg new file mode 100644 index 0000000..b12a7d3 --- /dev/null +++ b/src/static/ICON_PUBLISH.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/ICON_PUBLISH_ACTIVE.svg b/src/static/ICON_PUBLISH_ACTIVE.svg new file mode 100644 index 0000000..eed3013 --- /dev/null +++ b/src/static/ICON_PUBLISH_ACTIVE.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/ICON_REMOVE.svg b/src/static/ICON_REMOVE.svg new file mode 100644 index 0000000..b502be5 --- /dev/null +++ b/src/static/ICON_REMOVE.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/static/ICON_SNIPPET.svg b/src/static/ICON_SNIPPET.svg new file mode 100644 index 0000000..e827410 --- /dev/null +++ b/src/static/ICON_SNIPPET.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/INCLUDES_BADGE.svg b/src/static/INCLUDES_BADGE.svg new file mode 100644 index 0000000..1008083 --- /dev/null +++ b/src/static/INCLUDES_BADGE.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/static/INCLUDES_BADGE_ACTIVE.svg b/src/static/INCLUDES_BADGE_ACTIVE.svg new file mode 100644 index 0000000..10f255d --- /dev/null +++ b/src/static/INCLUDES_BADGE_ACTIVE.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/static/INSTALLED_BADGE.svg b/src/static/INSTALLED_BADGE.svg new file mode 100644 index 0000000..1e38713 --- /dev/null +++ b/src/static/INSTALLED_BADGE.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/static/LISTEND_DOT.svg b/src/static/LISTEND_DOT.svg new file mode 100644 index 0000000..5395a95 --- /dev/null +++ b/src/static/LISTEND_DOT.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/PROTOTYPE_CLOSE.svg b/src/static/PROTOTYPE_CLOSE.svg new file mode 100644 index 0000000..90df956 --- /dev/null +++ b/src/static/PROTOTYPE_CLOSE.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/PROTOTYPE_ICON.svg b/src/static/PROTOTYPE_ICON.svg new file mode 100644 index 0000000..c041241 --- /dev/null +++ b/src/static/PROTOTYPE_ICON.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/static/PUBLISH_DENY.svg b/src/static/PUBLISH_DENY.svg new file mode 100644 index 0000000..065fb24 --- /dev/null +++ b/src/static/PUBLISH_DENY.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/PUBLISH_FETCH_DUPL_OK.svg b/src/static/PUBLISH_FETCH_DUPL_OK.svg new file mode 100644 index 0000000..ab9da92 --- /dev/null +++ b/src/static/PUBLISH_FETCH_DUPL_OK.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/PUBLISH_FETCH_OK.svg b/src/static/PUBLISH_FETCH_OK.svg new file mode 100644 index 0000000..c82bc48 --- /dev/null +++ b/src/static/PUBLISH_FETCH_OK.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/PUBLISH_SUCCESS.svg b/src/static/PUBLISH_SUCCESS.svg new file mode 100644 index 0000000..0147097 --- /dev/null +++ b/src/static/PUBLISH_SUCCESS.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/README.md b/src/static/README.md new file mode 100644 index 0000000..46f824c --- /dev/null +++ b/src/static/README.md @@ -0,0 +1,4 @@ +All static assets for UI (SVG graphics) are encoded to Base64 +and loaded inline from `_assets.sass`. + +[Encode SVGs here](https://www.base64encode.org) diff --git a/src/static/SEARCH_ICON.svg b/src/static/SEARCH_ICON.svg new file mode 100644 index 0000000..07e83f7 --- /dev/null +++ b/src/static/SEARCH_ICON.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/static/THUMB.svg b/src/static/THUMB.svg new file mode 100644 index 0000000..5475f96 --- /dev/null +++ b/src/static/THUMB.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/static/UNMANAGED_BADGE.svg b/src/static/UNMANAGED_BADGE.svg new file mode 100644 index 0000000..aa908fc --- /dev/null +++ b/src/static/UNMANAGED_BADGE.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/webpack.config.js b/webpack.config.js new file mode 100644 index 0000000..ecc5179 --- /dev/null +++ b/webpack.config.js @@ -0,0 +1,29 @@ +const path = require('path') + +module.exports = { + entry: './src/interface/App.js', + + output: { + path: path.resolve('app', 'interface'), + publicPath: "/app/interface/", + filename: 'interface.bundle.js' + }, + + module: { + loaders: [ + { + test: /\.js$/, + exclude: /node_modules/, + loaders: ['react-hot-loader', 'babel-loader'] + }, + { + test: /\.sass$/, + use: [ + { loader: "style-loader" }, + { loader: "css-loader" }, + { loader: "sass-loader" } + ] + } + ] + } +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..e47562a --- /dev/null +++ b/yarn.lock @@ -0,0 +1,5685 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"7zip-bin-linux@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/7zip-bin-linux/-/7zip-bin-linux-1.1.0.tgz#2ca309fd6a2102e18bd81e3a5d91b39db9adab71" + +"7zip-bin-mac@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/7zip-bin-mac/-/7zip-bin-mac-1.0.1.tgz#3e68778bbf0926adc68159427074505d47555c02" + +"7zip-bin-win@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/7zip-bin-win/-/7zip-bin-win-2.1.0.tgz#ce632da797ec282c5d2a8d07b60e8df7ca7f164d" + +"7zip-bin@^2.1.0": + version "2.1.0" + resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-2.1.0.tgz#d728d3f950895cfcfee1a166fe93afc07dfe35a9" + optionalDependencies: + "7zip-bin-linux" "^1.1.0" + "7zip-bin-mac" "^1.0.1" + "7zip-bin-win" "^2.1.0" + +"@types/node@^7.0.18": + version "7.0.39" + resolved "https://registry.yarnpkg.com/@types/node/-/node-7.0.39.tgz#8aced4196387038113f6f9aa4014ab4c51edab3c" + +abbrev@1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.0.tgz#d0554c2256636e2f56e7c2e5ad183f859428d81f" + +accepts@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca" + dependencies: + mime-types "~2.1.11" + negotiator "0.6.1" + +acorn-dynamic-import@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4" + dependencies: + acorn "^4.0.3" + +acorn-jsx@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" + dependencies: + acorn "^3.0.4" + +acorn@^3.0.4: + version "3.3.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" + +acorn@^4.0.3: + version "4.0.13" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" + +acorn@^5.0.0, acorn@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.1.1.tgz#53fe161111f912ab999ee887a90a0bc52822fd75" + +ajv-keywords@^1.0.0, ajv-keywords@^1.1.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" + +ajv-keywords@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.0.tgz#a296e17f7bfae7c1ce4f7e0de53d29cb32162df0" + +ajv@^4.7.0, ajv@^4.9.1: + version "4.11.8" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" + dependencies: + co "^4.6.0" + json-stable-stringify "^1.0.1" + +ajv@^5.0.0, ajv@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.2.2.tgz#47c68d69e86f5d953103b0074a9430dc63da5e39" + dependencies: + co "^4.6.0" + fast-deep-equal "^1.0.0" + json-schema-traverse "^0.3.0" + json-stable-stringify "^1.0.1" + +align-text@^0.1.1, align-text@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" + dependencies: + kind-of "^3.0.2" + longest "^1.0.1" + repeat-string "^1.5.2" + +alphanum-sort@^1.0.1, alphanum-sort@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" + +amdefine@>=0.0.4: + version "1.0.1" + resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + +ansi-align@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" + dependencies: + string-width "^2.0.0" + +ansi-escapes@^1.1.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" + +ansi-html@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + +ansi-styles@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" + dependencies: + color-convert "^1.9.0" + +anymatch@^1.3.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" + dependencies: + micromatch "^2.1.5" + normalize-path "^2.0.0" + +aproba@^1.0.3: + version "1.1.2" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.1.2.tgz#45c6629094de4e96f693ef7eab74ae079c240fc1" + +are-we-there-yet@~1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +argparse@^1.0.7: + version "1.0.9" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" + dependencies: + sprintf-js "~1.0.2" + +arr-diff@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" + dependencies: + arr-flatten "^1.0.1" + +arr-flatten@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + +array-find-index@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + +array-flatten@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296" + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + dependencies: + array-uniq "^1.0.1" + +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + +array-unique@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" + +arrify@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + +asap@~2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + +asar-integrity@0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/asar-integrity/-/asar-integrity-0.1.1.tgz#1a709dd78443707fc260f7ce363d9569983caf76" + dependencies: + bluebird-lst "^1.0.2" + fs-extra-p "^4.3.0" + +asn1.js@^4.0.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.9.1.tgz#48ba240b45a9280e94748990ba597d216617fd40" + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +asn1@~0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + +assert-plus@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234" + +assert@^1.1.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" + dependencies: + util "0.10.3" + +async-each@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" + +async-foreach@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" + +async@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" + +async@^2.1.2, async@^2.1.5: + version "2.5.0" + resolved "https://registry.yarnpkg.com/async/-/async-2.5.0.tgz#843190fd6b7357a0b9e1c956edddd5ec8462b54d" + dependencies: + lodash "^4.14.0" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + +autoprefixer@^6.3.1: + version "6.7.7" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" + dependencies: + browserslist "^1.7.6" + caniuse-db "^1.0.30000634" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + postcss "^5.2.16" + postcss-value-parser "^3.2.3" + +aws-sign2@~0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f" + +aws4@^1.2.1: + version "1.6.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" + +babel-cli@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.24.1.tgz#207cd705bba61489b2ea41b5312341cf6aca2283" + dependencies: + babel-core "^6.24.1" + babel-polyfill "^6.23.0" + babel-register "^6.24.1" + babel-runtime "^6.22.0" + commander "^2.8.1" + convert-source-map "^1.1.0" + fs-readdir-recursive "^1.0.0" + glob "^7.0.0" + lodash "^4.2.0" + output-file-sync "^1.1.0" + path-is-absolute "^1.0.0" + slash "^1.0.0" + source-map "^0.5.0" + v8flags "^2.0.10" + optionalDependencies: + chokidar "^1.6.1" + +babel-code-frame@^6.11.0, babel-code-frame@^6.16.0, babel-code-frame@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.22.0.tgz#027620bee567a88c32561574e7fd0801d33118e4" + dependencies: + chalk "^1.1.0" + esutils "^2.0.2" + js-tokens "^3.0.0" + +babel-core@^6.24.1, babel-core@^6.25.0: + version "6.25.0" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.25.0.tgz#7dd42b0463c742e9d5296deb3ec67a9322dad729" + dependencies: + babel-code-frame "^6.22.0" + babel-generator "^6.25.0" + babel-helpers "^6.24.1" + babel-messages "^6.23.0" + babel-register "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.25.0" + babel-traverse "^6.25.0" + babel-types "^6.25.0" + babylon "^6.17.2" + convert-source-map "^1.1.0" + debug "^2.1.1" + json5 "^0.5.0" + lodash "^4.2.0" + minimatch "^3.0.2" + path-is-absolute "^1.0.0" + private "^0.1.6" + slash "^1.0.0" + source-map "^0.5.0" + +babel-generator@^6.25.0: + version "6.25.0" + resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.25.0.tgz#33a1af70d5f2890aeb465a4a7793c1df6a9ea9fc" + dependencies: + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-types "^6.25.0" + detect-indent "^4.0.0" + jsesc "^1.3.0" + lodash "^4.2.0" + source-map "^0.5.0" + trim-right "^1.0.1" + +babel-helper-builder-react-jsx@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz#0ad7917e33c8d751e646daca4e77cc19377d2cbc" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + esutils "^2.0.0" + +babel-helper-call-delegate@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-define-map@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz#7a9747f258d8947d32d515f6aa1c7bd02204a080" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + lodash "^4.2.0" + +babel-helper-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" + dependencies: + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-get-function-arity@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-hoist-variables@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-optimise-call-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-regex@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz#d36e22fab1008d79d88648e32116868128456ce8" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + lodash "^4.2.0" + +babel-helper-replace-supers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" + dependencies: + babel-helper-optimise-call-expression "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helpers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-loader@^7.0.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.1.tgz#b87134c8b12e3e4c2a94e0546085bc680a2b8488" + dependencies: + find-cache-dir "^1.0.0" + loader-utils "^1.0.2" + mkdirp "^0.5.1" + +babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-check-es2015-constants@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-syntax-class-properties@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de" + +babel-plugin-syntax-flow@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d" + +babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" + +babel-plugin-transform-class-properties@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac" + dependencies: + babel-helper-function-name "^6.24.1" + babel-plugin-syntax-class-properties "^6.8.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-arrow-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoping@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz#76c295dc3a4741b1665adfd3167215dcff32a576" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + lodash "^4.2.0" + +babel-plugin-transform-es2015-classes@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" + dependencies: + babel-helper-define-map "^6.24.1" + babel-helper-function-name "^6.24.1" + babel-helper-optimise-call-expression "^6.24.1" + babel-helper-replace-supers "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-computed-properties@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-destructuring@^6.22.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-duplicate-keys@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-for-of@^6.22.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-modules-amd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" + dependencies: + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-commonjs@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz#d3e310b40ef664a36622200097c6d440298f2bfe" + dependencies: + babel-plugin-transform-strict-mode "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-modules-systemjs@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-umd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" + dependencies: + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-object-super@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" + dependencies: + babel-helper-replace-supers "^6.24.1" + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-parameters@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" + dependencies: + babel-helper-call-delegate "^6.24.1" + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-shorthand-properties@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-spread@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-sticky-regex@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-template-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-typeof-symbol@^6.22.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-unicode-regex@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + regexpu-core "^2.0.0" + +babel-plugin-transform-flow-strip-types@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf" + dependencies: + babel-plugin-syntax-flow "^6.18.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-display-name@^6.23.0: + version "6.25.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1" + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx-self@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e" + dependencies: + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx-source@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6" + dependencies: + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-react-jsx@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3" + dependencies: + babel-helper-builder-react-jsx "^6.24.1" + babel-plugin-syntax-jsx "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-regenerator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz#b8da305ad43c3c99b4848e4fe4037b770d23c418" + dependencies: + regenerator-transform "0.9.11" + +babel-plugin-transform-strict-mode@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-polyfill@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.23.0.tgz#8364ca62df8eafb830499f699177466c3b03499d" + dependencies: + babel-runtime "^6.22.0" + core-js "^2.4.0" + regenerator-runtime "^0.10.0" + +babel-preset-es2015@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939" + dependencies: + babel-plugin-check-es2015-constants "^6.22.0" + babel-plugin-transform-es2015-arrow-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoping "^6.24.1" + babel-plugin-transform-es2015-classes "^6.24.1" + babel-plugin-transform-es2015-computed-properties "^6.24.1" + babel-plugin-transform-es2015-destructuring "^6.22.0" + babel-plugin-transform-es2015-duplicate-keys "^6.24.1" + babel-plugin-transform-es2015-for-of "^6.22.0" + babel-plugin-transform-es2015-function-name "^6.24.1" + babel-plugin-transform-es2015-literals "^6.22.0" + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-plugin-transform-es2015-modules-systemjs "^6.24.1" + babel-plugin-transform-es2015-modules-umd "^6.24.1" + babel-plugin-transform-es2015-object-super "^6.24.1" + babel-plugin-transform-es2015-parameters "^6.24.1" + babel-plugin-transform-es2015-shorthand-properties "^6.24.1" + babel-plugin-transform-es2015-spread "^6.22.0" + babel-plugin-transform-es2015-sticky-regex "^6.24.1" + babel-plugin-transform-es2015-template-literals "^6.22.0" + babel-plugin-transform-es2015-typeof-symbol "^6.22.0" + babel-plugin-transform-es2015-unicode-regex "^6.24.1" + babel-plugin-transform-regenerator "^6.24.1" + +babel-preset-flow@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz#e71218887085ae9a24b5be4169affb599816c49d" + dependencies: + babel-plugin-transform-flow-strip-types "^6.22.0" + +babel-preset-react@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-preset-react/-/babel-preset-react-6.24.1.tgz#ba69dfaea45fc3ec639b6a4ecea6e17702c91380" + dependencies: + babel-plugin-syntax-jsx "^6.3.13" + babel-plugin-transform-react-display-name "^6.23.0" + babel-plugin-transform-react-jsx "^6.24.1" + babel-plugin-transform-react-jsx-self "^6.22.0" + babel-plugin-transform-react-jsx-source "^6.22.0" + babel-preset-flow "^6.23.0" + +babel-register@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.24.1.tgz#7e10e13a2f71065bdfad5a1787ba45bca6ded75f" + dependencies: + babel-core "^6.24.1" + babel-runtime "^6.22.0" + core-js "^2.4.0" + home-or-tmp "^2.0.0" + lodash "^4.2.0" + mkdirp "^0.5.1" + source-map-support "^0.4.2" + +babel-runtime@^6.18.0, babel-runtime@^6.22.0: + version "6.25.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.25.0.tgz#33b98eaa5d482bb01a8d1aa6b437ad2b01aec41c" + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.10.0" + +babel-template@^6.24.1, babel-template@^6.25.0: + version "6.25.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.25.0.tgz#665241166b7c2aa4c619d71e192969552b10c071" + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.25.0" + babel-types "^6.25.0" + babylon "^6.17.2" + lodash "^4.2.0" + +babel-traverse@^6.24.1, babel-traverse@^6.25.0: + version "6.25.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.25.0.tgz#2257497e2fcd19b89edc13c4c91381f9512496f1" + dependencies: + babel-code-frame "^6.22.0" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-types "^6.25.0" + babylon "^6.17.2" + debug "^2.2.0" + globals "^9.0.0" + invariant "^2.2.0" + lodash "^4.2.0" + +babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.25.0: + version "6.25.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.25.0.tgz#70afb248d5660e5d18f811d91c8303b54134a18e" + dependencies: + babel-runtime "^6.22.0" + esutils "^2.0.2" + lodash "^4.2.0" + to-fast-properties "^1.0.1" + +babylon@^6.17.2: + version "6.17.4" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.17.4.tgz#3e8b7402b88d22c3423e137a1577883b15ff869a" + +balanced-match@^0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + +base64-js@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.0.tgz#a39992d723584811982be5e290bb6a53d86700f1" + +base64-js@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.1.tgz#a91947da1f4a516ea38e5b4ec0ec3773675e0886" + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + +bcrypt-pbkdf@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" + dependencies: + tweetnacl "^0.14.3" + +big.js@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.1.3.tgz#4cada2193652eb3ca9ec8e55c9015669c9806978" + +binary-extensions@^1.0.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.9.0.tgz#66506c16ce6f4d6928a5b3cd6a33ca41e941e37b" + +block-stream@*: + version "0.0.9" + resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + dependencies: + inherits "~2.0.0" + +bluebird-lst@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bluebird-lst/-/bluebird-lst-1.0.2.tgz#c7b26176b6c8fa458be703deb0644a28f64a475b" + dependencies: + bluebird "^3.5.0" + +bluebird@^3.4.7, bluebird@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: + version "4.11.7" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.7.tgz#ddb048e50d9482790094c13eb3fcfc833ce7ab46" + +bonjour@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5" + dependencies: + array-flatten "^2.1.0" + deep-equal "^1.0.1" + dns-equal "^1.0.0" + dns-txt "^2.0.2" + multicast-dns "^6.0.1" + multicast-dns-service-types "^1.1.0" + +boom@2.x.x: + version "2.10.1" + resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f" + dependencies: + hoek "2.x.x" + +boxen@^1.0.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.2.1.tgz#0f11e7fe344edb9397977fc13ede7f64d956481d" + dependencies: + ansi-align "^2.0.0" + camelcase "^4.0.0" + chalk "^2.0.1" + cli-boxes "^1.0.0" + string-width "^2.0.0" + term-size "^1.2.0" + widest-line "^1.0.0" + +brace-expansion@^1.1.7: + version "1.1.8" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^1.8.2: + version "1.8.5" + resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" + dependencies: + expand-range "^1.8.1" + preserve "^0.2.0" + repeat-element "^1.1.2" + +brorand@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.0.6.tgz#5e7725dbdef1fd5930d4ebab48567ce451c48a0a" + dependencies: + buffer-xor "^1.0.2" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + inherits "^2.0.1" + +browserify-cipher@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.0.tgz#9988244874bf5ed4e28da95666dcd66ac8fc363a" + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.0.tgz#daa277717470922ed2fe18594118a175439721dd" + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + +browserify-rsa@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + dependencies: + bn.js "^4.1.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" + dependencies: + bn.js "^4.1.1" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.2" + elliptic "^6.0.0" + inherits "^2.0.1" + parse-asn1 "^5.0.0" + +browserify-zlib@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d" + dependencies: + pako "~0.2.0" + +browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6: + version "1.7.7" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" + dependencies: + caniuse-db "^1.0.30000639" + electron-to-chromium "^1.2.7" + +buffer-indexof@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.0.tgz#f54f647c4f4e25228baa656a2e57e43d5f270982" + +buffer-xor@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + +buffer@^4.3.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +builtin-modules@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + +bytes@2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-2.5.0.tgz#4c9423ea2d252c270c41b2bdefeff9bb6b62c06a" + +caller-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" + dependencies: + callsites "^0.2.0" + +callsites@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" + +camelcase-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" + dependencies: + camelcase "^2.0.0" + map-obj "^1.0.0" + +camelcase@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" + +camelcase@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + +camelcase@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" + +camelcase@^4.0.0, camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + +caniuse-api@^1.5.2: + version "1.6.1" + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c" + dependencies: + browserslist "^1.3.6" + caniuse-db "^1.0.30000529" + lodash.memoize "^4.1.2" + lodash.uniq "^4.5.0" + +caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: + version "1.0.30000709" + resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000709.tgz#0b600072b7cdbbf6336a8758b71b9ad03268ede2" + +capture-stack-trace@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz#4a6fa07399c26bba47f0b2496b4d0fb408c5550d" + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + +center-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" + dependencies: + align-text "^0.1.3" + lazy-cache "^1.0.3" + +chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.0.1.tgz#dbec49436d2ae15f536114e76d14656cdbc0f44d" + dependencies: + ansi-styles "^3.1.0" + escape-string-regexp "^1.0.5" + supports-color "^4.0.0" + +chokidar@^1.6.0, chokidar@^1.6.1, chokidar@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" + dependencies: + anymatch "^1.3.0" + async-each "^1.0.0" + glob-parent "^2.0.0" + inherits "^2.0.1" + is-binary-path "^1.0.0" + is-glob "^2.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.0.0" + optionalDependencies: + fsevents "^1.0.0" + +chromium-pickle-js@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz#04a106672c18b085ab774d983dfa3ea138f22205" + +ci-info@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.0.0.tgz#dc5285f2b4e251821683681c381c3388f46ec534" + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +circular-json@^0.3.1: + version "0.3.3" + resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" + +clap@^1.0.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/clap/-/clap-1.2.0.tgz#59c90fe3e137104746ff19469a27a634ff68c857" + dependencies: + chalk "^1.1.3" + +cli-boxes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" + +cli-cursor@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" + dependencies: + restore-cursor "^1.0.1" + +cli-width@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.1.0.tgz#b234ca209b29ef66fc518d9b98d5847b00edf00a" + +cliui@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" + dependencies: + center-align "^0.1.1" + right-align "^0.1.1" + wordwrap "0.0.2" + +cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + +clone-deep@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.3.0.tgz#348c61ae9cdbe0edfe053d91ff4cc521d790ede8" + dependencies: + for-own "^1.0.0" + is-plain-object "^2.0.1" + kind-of "^3.2.2" + shallow-clone "^0.1.2" + +clone@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.2.tgz#260b7a99ebb1edfe247538175f783243cb19d149" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + +coa@~1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd" + dependencies: + q "^1.1.2" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + +color-convert@^1.3.0, color-convert@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" + dependencies: + color-name "^1.1.1" + +color-convert@~0.5.0: + version "0.5.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-0.5.3.tgz#bdb6c69ce660fadffe0b0007cc447e1b9f7282bd" + +color-name@^1.0.0, color-name@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + +color-string@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991" + dependencies: + color-name "^1.0.0" + +color@^0.11.0: + version "0.11.4" + resolved "https://registry.yarnpkg.com/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764" + dependencies: + clone "^1.0.2" + color-convert "^1.3.0" + color-string "^0.3.0" + +colormin@^1.0.5: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133" + dependencies: + color "^0.11.0" + css-color-names "0.0.4" + has "^1.0.1" + +colors@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" + +combined-stream@^1.0.5, combined-stream@~1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" + dependencies: + delayed-stream "~1.0.0" + +commander@^2.8.1: + version "2.11.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + +compare-version@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/compare-version/-/compare-version-0.1.2.tgz#0162ec2d9351f5ddd59a9202cba935366a725080" + +compressible@~2.0.10: + version "2.0.11" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.11.tgz#16718a75de283ed8e604041625a2064586797d8a" + dependencies: + mime-db ">= 1.29.0 < 2" + +compression@^1.5.2: + version "1.7.0" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.0.tgz#030c9f198f1643a057d776a738e922da4373012d" + dependencies: + accepts "~1.3.3" + bytes "2.5.0" + compressible "~2.0.10" + debug "2.6.8" + on-headers "~1.0.1" + safe-buffer "5.1.1" + vary "~1.1.1" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + +concat-stream@1.6.0, concat-stream@^1.5.2: + version "1.6.0" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" + dependencies: + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +conf@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/conf/-/conf-1.1.2.tgz#a164003022dd1643cd5abd9653071bd3b0a19f50" + dependencies: + dot-prop "^4.1.0" + env-paths "^1.0.0" + make-dir "^1.0.0" + pkg-up "^2.0.0" + +configstore@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.1.tgz#094ee662ab83fad9917678de114faaea8fcdca90" + dependencies: + dot-prop "^4.1.0" + graceful-fs "^4.1.2" + make-dir "^1.0.0" + unique-string "^1.0.0" + write-file-atomic "^2.0.0" + xdg-basedir "^3.0.0" + +connect-history-api-fallback@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz#e51d17f8f0ef0db90a64fdb47de3051556e9f169" + +console-browserify@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + dependencies: + date-now "^0.1.4" + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + +content-disposition@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4" + +content-type@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.2.tgz#b7d113aee7a8dd27bd21133c4dc2529df1721eed" + +convert-source-map@^1.1.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5" + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + +cookie@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + +core-js@^1.0.0: + version "1.2.7" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" + +core-js@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" + +core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + +create-ecdh@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.0.tgz#888c723596cdf7612f6498233eebd7a35301737d" + dependencies: + bn.js "^4.1.0" + elliptic "^6.0.0" + +create-error-class@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" + dependencies: + capture-stack-trace "^1.0.0" + +create-hash@^1.1.0, create-hash@^1.1.1, create-hash@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.1.3.tgz#606042ac8b9262750f483caddab0f5819172d8fd" + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + ripemd160 "^2.0.0" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: + version "1.1.6" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.6.tgz#acb9e221a4e17bdb076e90657c42b93e3726cf06" + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +create-react-class@^15.6.0: + version "15.6.0" + resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.0.tgz#ab448497c26566e1e29413e883207d57cfe7bed4" + dependencies: + fbjs "^0.8.9" + loose-envify "^1.3.1" + object-assign "^4.1.1" + +cross-spawn@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" + dependencies: + lru-cache "^4.0.1" + which "^1.2.9" + +cross-spawn@^5.0.1: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +cryptiles@2.x.x: + version "2.0.5" + resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-2.0.5.tgz#3bdfecdc608147c1c67202fa291e7dca59eaa3b8" + dependencies: + boom "2.x.x" + +crypto-browserify@^3.11.0: + version "3.11.1" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.11.1.tgz#948945efc6757a400d6e5e5af47194d10064279f" + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + +crypto-random-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" + +css-color-names@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" + +css-loader@^0.28.4: + version "0.28.4" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.4.tgz#6cf3579192ce355e8b38d5f42dd7a1f2ec898d0f" + dependencies: + babel-code-frame "^6.11.0" + css-selector-tokenizer "^0.7.0" + cssnano ">=2.6.1 <4" + icss-utils "^2.1.0" + loader-utils "^1.0.2" + lodash.camelcase "^4.3.0" + object-assign "^4.0.1" + postcss "^5.0.6" + postcss-modules-extract-imports "^1.0.0" + postcss-modules-local-by-default "^1.0.1" + postcss-modules-scope "^1.0.0" + postcss-modules-values "^1.1.0" + postcss-value-parser "^3.3.0" + source-list-map "^0.1.7" + +css-selector-tokenizer@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86" + dependencies: + cssesc "^0.1.0" + fastparse "^1.1.1" + regexpu-core "^1.0.0" + +cssesc@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" + +"cssnano@>=2.6.1 <4": + version "3.10.0" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38" + dependencies: + autoprefixer "^6.3.1" + decamelize "^1.1.2" + defined "^1.0.0" + has "^1.0.1" + object-assign "^4.0.1" + postcss "^5.0.14" + postcss-calc "^5.2.0" + postcss-colormin "^2.1.8" + postcss-convert-values "^2.3.4" + postcss-discard-comments "^2.0.4" + postcss-discard-duplicates "^2.0.1" + postcss-discard-empty "^2.0.1" + postcss-discard-overridden "^0.1.1" + postcss-discard-unused "^2.2.1" + postcss-filter-plugins "^2.0.0" + postcss-merge-idents "^2.1.5" + postcss-merge-longhand "^2.0.1" + postcss-merge-rules "^2.0.3" + postcss-minify-font-values "^1.0.2" + postcss-minify-gradients "^1.0.1" + postcss-minify-params "^1.0.4" + postcss-minify-selectors "^2.0.4" + postcss-normalize-charset "^1.1.0" + postcss-normalize-url "^3.0.7" + postcss-ordered-values "^2.1.0" + postcss-reduce-idents "^2.2.2" + postcss-reduce-initial "^1.0.0" + postcss-reduce-transforms "^1.0.3" + postcss-svgo "^2.1.1" + postcss-unique-selectors "^2.0.2" + postcss-value-parser "^3.2.3" + postcss-zindex "^2.0.1" + +csso@~2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85" + dependencies: + clap "^1.0.9" + source-map "^0.5.3" + +cuint@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/cuint/-/cuint-0.2.2.tgz#408086d409550c2631155619e9fa7bcadc3b991b" + +currently-unhandled@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + dependencies: + array-find-index "^1.0.1" + +d@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" + dependencies: + es5-ext "^0.10.9" + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + dependencies: + assert-plus "^1.0.0" + +date-now@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + +debug@2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da" + dependencies: + ms "0.7.1" + +debug@2.6.7: + version "2.6.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.7.tgz#92bad1f6d05bbb6bba22cca88bcd0ec894c2861e" + dependencies: + ms "2.0.0" + +debug@2.6.8, debug@^2.1.1, debug@^2.1.3, debug@^2.2.0, debug@^2.6.1, debug@^2.6.6, debug@^2.6.8: + version "2.6.8" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.8.tgz#e731531ca2ede27d188222427da17821d68ff4fc" + dependencies: + ms "2.0.0" + +decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + +deep-equal@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" + +deep-extend@~0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.4.2.tgz#48b699c27e334bf89f10892be432f6e4c7d34a7f" + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + +defined@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" + +del@^2.0.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/del/-/del-2.2.2.tgz#c12c981d067846c84bcaf862cff930d907ffd1a8" + dependencies: + globby "^5.0.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + rimraf "^2.2.8" + +del@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" + dependencies: + globby "^6.1.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + p-map "^1.1.1" + pify "^3.0.0" + rimraf "^2.2.8" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + +depd@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.0.tgz#e1bd82c6aab6ced965b97b88b17ed3e528ca18c3" + +depd@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359" + +des.js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + +detect-indent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" + dependencies: + repeating "^2.0.0" + +detect-node@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.3.tgz#a2033c09cc8e158d37748fbde7507832bd6ce127" + +diffie-hellman@^5.0.0: + version "5.0.2" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.2.tgz#b5835739270cfe26acf632099fded2a07f209e5e" + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +dns-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" + +dns-packet@^1.0.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.1.1.tgz#2369d45038af045f3898e6fa56862aed3f40296c" + dependencies: + ip "^1.1.0" + safe-buffer "^5.0.1" + +dns-txt@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" + dependencies: + buffer-indexof "^1.0.0" + +doctrine@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +dom-walk@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.1.tgz#672226dc74c8f799ad35307df936aba11acd6018" + +domain-browser@^1.1.1: + version "1.1.7" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.1.7.tgz#867aa4b093faa05f1de08c06f4d7b21fdf8698bc" + +dot-prop@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" + dependencies: + is-obj "^1.0.0" + +duplexer3@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" + +ecc-jsbn@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" + dependencies: + jsbn "~0.1.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + +electron-builder-http@19.19.0, electron-builder-http@~19.19.0: + version "19.19.0" + resolved "https://registry.yarnpkg.com/electron-builder-http/-/electron-builder-http-19.19.0.tgz#20f908fcd1bbe202fd44a9623abd9e4d7bc98825" + dependencies: + bluebird-lst "^1.0.2" + debug "^2.6.8" + fs-extra-p "^4.4.0" + +electron-builder-util@19.19.0, electron-builder-util@~19.19.0: + version "19.19.0" + resolved "https://registry.yarnpkg.com/electron-builder-util/-/electron-builder-util-19.19.0.tgz#96082aff13bfda8f40a62739f10718c9c42f6d4c" + dependencies: + "7zip-bin" "^2.1.0" + bluebird-lst "^1.0.2" + chalk "^2.0.1" + debug "^2.6.8" + electron-builder-http "~19.19.0" + fcopy-pre-bundled "0.3.4" + fs-extra-p "^4.4.0" + ini "^1.3.4" + is-ci "^1.0.10" + node-emoji "^1.8.1" + semver "^5.4.1" + source-map-support "^0.4.15" + stat-mode "^0.2.2" + tunnel-agent "^0.6.0" + +electron-builder@^19.19.1: + version "19.19.1" + resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-19.19.1.tgz#213ccda0afc1d1c75ba0fc1aa355ea7023d35769" + dependencies: + "7zip-bin" "^2.1.0" + ajv "^5.2.2" + ajv-keywords "^2.1.0" + asar-integrity "0.1.1" + bluebird-lst "^1.0.2" + chalk "^2.0.1" + chromium-pickle-js "^0.2.0" + cuint "^0.2.2" + debug "^2.6.8" + electron-builder-http "19.19.0" + electron-builder-util "19.19.0" + electron-download-tf "4.3.1" + electron-osx-sign "0.4.6" + electron-publish "19.19.1" + fs-extra-p "^4.4.0" + hosted-git-info "^2.5.0" + is-ci "^1.0.10" + isbinaryfile "^3.0.2" + js-yaml "^3.9.1" + minimatch "^3.0.4" + normalize-package-data "^2.4.0" + parse-color "^1.0.0" + plist "^2.1.0" + read-config-file "^0.1.3" + sanitize-filename "^1.6.1" + semver "^5.4.1" + update-notifier "^2.2.0" + uuid-1345 "^0.99.6" + yargs "^8.0.2" + +electron-download-tf@4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/electron-download-tf/-/electron-download-tf-4.3.1.tgz#7930f24a08e3669eaad38a5f7f288a10461caf72" + dependencies: + debug "^2.6.6" + env-paths "^1.0.0" + fs-extra "^3.0.1" + minimist "^1.2.0" + nugget "^2.0.1" + path-exists "^3.0.0" + rc "^1.2.1" + semver "^5.3.0" + sumchecker "^2.0.2" + +electron-download@^3.0.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/electron-download/-/electron-download-3.3.0.tgz#2cfd54d6966c019c4d49ad65fbe65cc9cdef68c8" + dependencies: + debug "^2.2.0" + fs-extra "^0.30.0" + home-path "^1.0.1" + minimist "^1.2.0" + nugget "^2.0.0" + path-exists "^2.1.0" + rc "^1.1.2" + semver "^5.3.0" + sumchecker "^1.2.0" + +electron-is-dev@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/electron-is-dev/-/electron-is-dev-0.3.0.tgz#14e6fda5c68e9e4ecbeff9ccf037cbd7c05c5afe" + +electron-osx-sign@0.4.6: + version "0.4.6" + resolved "https://registry.yarnpkg.com/electron-osx-sign/-/electron-osx-sign-0.4.6.tgz#2398e2d7cab5c1d8c3eeabb1cd490376528ec39a" + dependencies: + bluebird "^3.4.7" + compare-version "^0.1.2" + debug "^2.6.1" + isbinaryfile "^3.0.2" + minimist "^1.2.0" + plist "^2.0.1" + tempfile "^1.1.1" + +electron-publish@19.19.1: + version "19.19.1" + resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-19.19.1.tgz#ae53ccf9a90f77184c2add3d74b8b60850378b76" + dependencies: + bluebird-lst "^1.0.2" + chalk "^2.0.1" + electron-builder-http "~19.19.0" + electron-builder-util "~19.19.0" + fs-extra-p "^4.4.0" + mime "^1.3.6" + +electron-react-devtools@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/electron-react-devtools/-/electron-react-devtools-0.4.0.tgz#06bd04d8e232b20703d059f5560a6f2a838bc163" + +electron-store@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/electron-store/-/electron-store-1.2.0.tgz#96f708f0188c7708907e9f9b7cba790bed6b989f" + dependencies: + conf "^1.0.0" + +electron-to-chromium@^1.2.7: + version "1.3.16" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.16.tgz#d0e026735754770901ae301a21664cba45d92f7d" + +electron-updater@^2.8.2: + version "2.8.2" + resolved "https://registry.yarnpkg.com/electron-updater/-/electron-updater-2.8.2.tgz#a6f3b8264150040e9dedf14c894355f773c990ce" + dependencies: + bluebird-lst "^1.0.2" + debug "^2.6.8" + electron-builder-http "~19.19.0" + electron-is-dev "^0.3.0" + fs-extra-p "^4.4.0" + js-yaml "^3.9.1" + lodash.isequal "^4.5.0" + semver "^5.4.1" + source-map-support "^0.4.15" + uuid-1345 "^0.99.6" + xelement "^1.0.16" + +electron@^1.6.6: + version "1.7.5" + resolved "https://registry.yarnpkg.com/electron/-/electron-1.7.5.tgz#065a3102bf8b87102df50c50985fefe6c569045b" + dependencies: + "@types/node" "^7.0.18" + electron-download "^3.0.1" + extract-zip "^1.0.3" + +elliptic@^6.0.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.0.tgz#cac9af8762c85836187003c8dfe193e5e2eae5df" + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + hmac-drbg "^1.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.0" + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + +encodeurl@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.1.tgz#79e3d58655346909fe6f0f45a5de68103b294d20" + +encoding@^0.1.11: + version "0.1.12" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" + dependencies: + iconv-lite "~0.4.13" + +enhanced-resolve@^3.3.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.4.0" + object-assign "^4.0.1" + tapable "^0.2.7" + +env-paths@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-1.0.0.tgz#4168133b42bb05c38a35b1ae4397c8298ab369e0" + +errno@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.4.tgz#b896e23a9e5e8ba33871fc996abd3635fc9a1c7d" + dependencies: + prr "~0.0.0" + +error-ex@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" + dependencies: + is-arrayish "^0.2.1" + +es5-ext@^0.10.14, es5-ext@^0.10.9, es5-ext@~0.10.14: + version "0.10.26" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.26.tgz#51b2128a531b70c4f6764093a73cbebb82186372" + dependencies: + es6-iterator "2" + es6-symbol "~3.1" + +es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.1.tgz#8e319c9f0453bf575d374940a655920e59ca5512" + dependencies: + d "1" + es5-ext "^0.10.14" + es6-symbol "^3.1" + +es6-map@^0.1.3: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-map/-/es6-map-0.1.5.tgz#9136e0503dcc06a301690f0bb14ff4e364e949f0" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-set "~0.1.5" + es6-symbol "~3.1.1" + event-emitter "~0.3.5" + +es6-promise@^4.0.5: + version "4.1.1" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.1.1.tgz#8811e90915d9a0dba36274f0b242dbda78f9c92a" + +es6-set@~0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/es6-set/-/es6-set-0.1.5.tgz#d2b3ec5d4d800ced818db538d28974db0a73ccb1" + dependencies: + d "1" + es5-ext "~0.10.14" + es6-iterator "~2.0.1" + es6-symbol "3.1.1" + event-emitter "~0.3.5" + +es6-symbol@3.1.1, es6-symbol@^3.1, es6-symbol@^3.1.1, es6-symbol@~3.1, es6-symbol@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" + dependencies: + d "1" + es5-ext "~0.10.14" + +es6-weak-map@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" + dependencies: + d "1" + es5-ext "^0.10.14" + es6-iterator "^2.0.1" + es6-symbol "^3.1.1" + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + +escope@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/escope/-/escope-3.6.0.tgz#e01975e812781a163a6dadfdd80398dc64c889c3" + dependencies: + es6-map "^0.1.3" + es6-weak-map "^2.0.1" + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint@3.x: + version "3.19.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.19.0.tgz#c8fc6201c7f40dd08941b87c085767386a679acc" + dependencies: + babel-code-frame "^6.16.0" + chalk "^1.1.3" + concat-stream "^1.5.2" + debug "^2.1.1" + doctrine "^2.0.0" + escope "^3.6.0" + espree "^3.4.0" + esquery "^1.0.0" + estraverse "^4.2.0" + esutils "^2.0.2" + file-entry-cache "^2.0.0" + glob "^7.0.3" + globals "^9.14.0" + ignore "^3.2.0" + imurmurhash "^0.1.4" + inquirer "^0.12.0" + is-my-json-valid "^2.10.0" + is-resolvable "^1.0.0" + js-yaml "^3.5.1" + json-stable-stringify "^1.0.0" + levn "^0.3.0" + lodash "^4.0.0" + mkdirp "^0.5.0" + natural-compare "^1.4.0" + optionator "^0.8.2" + path-is-inside "^1.0.1" + pluralize "^1.2.1" + progress "^1.1.8" + require-uncached "^1.0.2" + shelljs "^0.7.5" + strip-bom "^3.0.0" + strip-json-comments "~2.0.1" + table "^3.7.8" + text-table "~0.2.0" + user-home "^2.0.0" + +espree@^3.4.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.0.tgz#98358625bdd055861ea27e2867ea729faf463d8d" + dependencies: + acorn "^5.1.1" + acorn-jsx "^3.0.0" + +esprima@^2.6.0: + version "2.7.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" + +esprima@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" + +esquery@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" + dependencies: + estraverse "^4.0.0" + +esrecurse@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163" + dependencies: + estraverse "^4.1.0" + object-assign "^4.0.1" + +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + +esutils@^2.0.0, esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + +etag@~1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.0.tgz#6f631aef336d6c46362b51764044ce216be3c051" + +event-emitter@~0.3.5: + version "0.3.5" + resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" + dependencies: + d "1" + es5-ext "~0.10.14" + +eventemitter3@1.x.x: + version "1.2.0" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-1.2.0.tgz#1c86991d816ad1e504750e73874224ecf3bec508" + +events@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" + +eventsource@0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-0.1.6.tgz#0acede849ed7dd1ccc32c811bb11b944d4f29232" + dependencies: + original ">=0.0.5" + +evp_bytestokey@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz#497b66ad9fef65cd7c08a6180824ba1476b66e53" + dependencies: + create-hash "^1.1.1" + +execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +exit-hook@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" + +expand-brackets@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" + dependencies: + is-posix-bracket "^0.1.0" + +expand-range@^1.8.1: + version "1.8.2" + resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" + dependencies: + fill-range "^2.1.0" + +express@^4.13.3: + version "4.15.3" + resolved "https://registry.yarnpkg.com/express/-/express-4.15.3.tgz#bab65d0f03aa80c358408972fc700f916944b662" + dependencies: + accepts "~1.3.3" + array-flatten "1.1.1" + content-disposition "0.5.2" + content-type "~1.0.2" + cookie "0.3.1" + cookie-signature "1.0.6" + debug "2.6.7" + depd "~1.1.0" + encodeurl "~1.0.1" + escape-html "~1.0.3" + etag "~1.8.0" + finalhandler "~1.0.3" + fresh "0.5.0" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.1" + path-to-regexp "0.1.7" + proxy-addr "~1.1.4" + qs "6.4.0" + range-parser "~1.2.0" + send "0.15.3" + serve-static "1.12.3" + setprototypeof "1.0.3" + statuses "~1.3.1" + type-is "~1.6.15" + utils-merge "1.0.0" + vary "~1.1.1" + +extend@~3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" + +extglob@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" + dependencies: + is-extglob "^1.0.0" + +extract-zip@^1.0.3: + version "1.6.5" + resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.5.tgz#99a06735b6ea20ea9b705d779acffcc87cff0440" + dependencies: + concat-stream "1.6.0" + debug "2.2.0" + mkdirp "0.5.0" + yauzl "2.4.1" + +extsprintf@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.0.2.tgz#e1080e0658e300b06294990cc70e1502235fd550" + +fast-deep-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" + +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + +fastparse@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8" + +faye-websocket@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" + dependencies: + websocket-driver ">=0.5.1" + +faye-websocket@~0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.1.tgz#f0efe18c4f56e4f40afc7e06c719fd5ee6188f38" + dependencies: + websocket-driver ">=0.5.1" + +fbjs@^0.8.9: + version "0.8.14" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.14.tgz#d1dbe2be254c35a91e09f31f9cd50a40b2a0ed1c" + dependencies: + core-js "^1.0.0" + isomorphic-fetch "^2.1.1" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.9" + +fcopy-pre-bundled@0.3.4: + version "0.3.4" + resolved "https://registry.yarnpkg.com/fcopy-pre-bundled/-/fcopy-pre-bundled-0.3.4.tgz#7ff1a1c339e877baa86b0856bebb33621cd5620b" + +fd-slicer@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" + dependencies: + pend "~1.2.0" + +figures@^1.3.5: + version "1.7.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" + dependencies: + escape-string-regexp "^1.0.5" + object-assign "^4.1.0" + +file-entry-cache@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" + dependencies: + flat-cache "^1.2.1" + object-assign "^4.0.1" + +filename-regex@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" + +fill-range@^2.1.0: + version "2.2.3" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" + dependencies: + is-number "^2.1.0" + isobject "^2.0.0" + randomatic "^1.1.3" + repeat-element "^1.1.2" + repeat-string "^1.5.2" + +finalhandler@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.0.3.tgz#ef47e77950e999780e86022a560e3217e0d0cc89" + dependencies: + debug "2.6.7" + encodeurl "~1.0.1" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.1" + statuses "~1.3.1" + unpipe "~1.0.0" + +find-cache-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" + dependencies: + commondir "^1.0.1" + make-dir "^1.0.0" + pkg-dir "^2.0.0" + +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +find-up@^2.0.0, find-up@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + dependencies: + locate-path "^2.0.0" + +flat-cache@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.2.2.tgz#fa86714e72c21db88601761ecf2f555d1abc6b96" + dependencies: + circular-json "^0.3.1" + del "^2.0.2" + graceful-fs "^4.1.2" + write "^0.2.1" + +flatten@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" + +for-in@^0.1.3: + version "0.1.8" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" + +for-in@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + +for-own@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + dependencies: + for-in "^1.0.1" + +for-own@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" + dependencies: + for-in "^1.0.1" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + +form-data@~2.1.1: + version "2.1.4" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.12" + +forwarded@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.0.tgz#19ef9874c4ae1c297bcf078fde63a09b66a84363" + +fresh@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.0.tgz#f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e" + +fs-extra-p@^4.3.0, fs-extra-p@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/fs-extra-p/-/fs-extra-p-4.4.0.tgz#729c601c4f4c701328921adc7cfe9b236f100660" + dependencies: + bluebird-lst "^1.0.2" + fs-extra "^4.0.0" + +fs-extra@^0.30.0: + version "0.30.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + path-is-absolute "^1.0.0" + rimraf "^2.2.8" + +fs-extra@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-3.0.1.tgz#3794f378c58b342ea7dbbb23095109c4b3b62291" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^3.0.0" + universalify "^0.1.0" + +fs-extra@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.1.tgz#7fc0c6c8957f983f57f306a24e5b9ddd8d0dd880" + dependencies: + graceful-fs "^4.1.2" + jsonfile "^3.0.0" + universalify "^0.1.0" + +fs-readdir-recursive@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.0.0.tgz#8cd1745c8b4f8a29c8caec392476921ba195f560" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + +fsevents@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" + dependencies: + nan "^2.3.0" + node-pre-gyp "^0.6.36" + +fstream-ignore@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/fstream-ignore/-/fstream-ignore-1.0.5.tgz#9c31dae34767018fe1d249b24dada67d092da105" + dependencies: + fstream "^1.0.0" + inherits "2" + minimatch "^3.0.0" + +fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2: + version "1.0.11" + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" + dependencies: + graceful-fs "^4.1.2" + inherits "~2.0.0" + mkdirp ">=0.5 0" + rimraf "2" + +function-bind@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +gaze@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.2.tgz#847224677adb8870d679257ed3388fdb61e40105" + dependencies: + globule "^1.0.0" + +generate-function@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.0.0.tgz#6858fe7c0969b7d4e9093337647ac79f60dfbe74" + +generate-object-property@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/generate-object-property/-/generate-object-property-1.2.0.tgz#9c0e1c40308ce804f4783618b937fa88f99d50d0" + dependencies: + is-property "^1.0.0" + +get-caller-file@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" + +get-stdin@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" + +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + dependencies: + assert-plus "^1.0.0" + +glob-base@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" + dependencies: + glob-parent "^2.0.0" + is-glob "^2.0.0" + +glob-parent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" + dependencies: + is-glob "^2.0.0" + +glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@~7.1.1: + version "7.1.2" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global@^4.3.2: + version "4.3.2" + resolved "https://registry.yarnpkg.com/global/-/global-4.3.2.tgz#e76989268a6c74c38908b1305b10fc0e394e9d0f" + dependencies: + min-document "^2.19.0" + process "~0.5.1" + +globals@^9.0.0, globals@^9.14.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + +globby@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" + dependencies: + array-union "^1.0.1" + arrify "^1.0.0" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +globby@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + dependencies: + array-union "^1.0.1" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +globule@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/globule/-/globule-1.2.0.tgz#1dc49c6822dd9e8a2fa00ba2a295006e8664bd09" + dependencies: + glob "~7.1.1" + lodash "~4.17.4" + minimatch "~3.0.2" + +got@^6.7.1: + version "6.7.1" + resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" + dependencies: + create-error-class "^3.0.0" + duplexer3 "^0.1.4" + get-stream "^3.0.0" + is-redirect "^1.0.0" + is-retry-allowed "^1.0.0" + is-stream "^1.0.0" + lowercase-keys "^1.0.0" + safe-buffer "^5.0.1" + timed-out "^4.0.0" + unzip-response "^2.0.1" + url-parse-lax "^1.0.0" + +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: + version "4.1.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" + +handle-thing@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-1.2.5.tgz#fd7aad726bf1a5fd16dfc29b2f7a6601d27139c4" + +har-schema@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-1.0.5.tgz#d263135f43307c02c602afc8fe95970c0151369e" + +har-validator@~4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-4.2.1.tgz#33481d0f1bbff600dd203d75812a6a5fba002e2a" + dependencies: + ajv "^4.9.1" + har-schema "^1.0.5" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + dependencies: + ansi-regex "^2.0.0" + +has-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa" + +has-flag@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + +has@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.1.tgz#8461733f538b0837c9361e39a9ab9e9704dc2f28" + dependencies: + function-bind "^1.0.2" + +hash-base@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-2.0.2.tgz#66ea1d856db4e8a5470cadf6fce23ae5244ef2e1" + dependencies: + inherits "^2.0.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.3.tgz#340dedbe6290187151c1ea1d777a3448935df846" + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.0" + +hawk@~3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" + dependencies: + boom "2.x.x" + cryptiles "2.x.x" + hoek "2.x.x" + sntp "1.x.x" + +history@^4.5.1, history@^4.6.0: + version "4.6.3" + resolved "https://registry.yarnpkg.com/history/-/history-4.6.3.tgz#6d723a8712c581d6bef37e8c26f4aedc6eb86967" + dependencies: + invariant "^2.2.1" + loose-envify "^1.2.0" + resolve-pathname "^2.0.0" + value-equal "^0.2.0" + warning "^3.0.0" + +hmac-drbg@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hoek@2.x.x: + version "2.16.3" + resolved "https://registry.yarnpkg.com/hoek/-/hoek-2.16.3.tgz#20bb7403d3cea398e91dc4710a8ff1b8274a25ed" + +hoist-non-react-statics@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb" + +home-or-tmp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.1" + +home-path@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/home-path/-/home-path-1.0.5.tgz#788b29815b12d53bacf575648476e6f9041d133f" + +hosted-git-info@^2.1.4, hosted-git-info@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" + +hpack.js@^2.1.6: + version "2.1.6" + resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" + dependencies: + inherits "^2.0.1" + obuf "^1.0.0" + readable-stream "^2.0.1" + wbuf "^1.1.0" + +html-comment-regex@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e" + +html-entities@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" + +http-deceiver@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" + +http-errors@~1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.1.tgz#5f8b8ed98aca545656bf572997387f904a722257" + dependencies: + depd "1.1.0" + inherits "2.0.3" + setprototypeof "1.0.3" + statuses ">= 1.3.1 < 2" + +http-proxy-middleware@~0.17.4: + version "0.17.4" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz#642e8848851d66f09d4f124912846dbaeb41b833" + dependencies: + http-proxy "^1.16.2" + is-glob "^3.1.0" + lodash "^4.17.2" + micromatch "^2.3.11" + +http-proxy@^1.16.2: + version "1.16.2" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.16.2.tgz#06dff292952bf64dbe8471fa9df73066d4f37742" + dependencies: + eventemitter3 "1.x.x" + requires-port "1.x.x" + +http-signature@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.1.1.tgz#df72e267066cd0ac67fb76adf8e134a8fbcf91bf" + dependencies: + assert-plus "^0.2.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-browserify@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" + +iconv-lite@~0.4.13: + version "0.4.18" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.18.tgz#23d8656b16aae6742ac29732ea8f0336a4789cf2" + +icss-replace-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" + +icss-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" + dependencies: + postcss "^6.0.1" + +ieee754@^1.1.4: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" + +ignore@^3.2.0: + version "3.3.3" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.3.tgz#432352e57accd87ab3110e82d3fea0e47812156d" + +import-lazy@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + +in-publish@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.0.tgz#e20ff5e3a2afc2690320b6dc552682a9c7fadf51" + +indent-string@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + dependencies: + repeating "^2.0.0" + +indexes-of@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + +indexof@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + +ini@^1.3.4, ini@~1.3.0: + version "1.3.4" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" + +inquirer@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-0.12.0.tgz#1ef2bfd63504df0bc75785fff8c2c41df12f077e" + dependencies: + ansi-escapes "^1.1.0" + ansi-regex "^2.0.0" + chalk "^1.0.0" + cli-cursor "^1.0.1" + cli-width "^2.0.0" + figures "^1.3.5" + lodash "^4.3.0" + readline2 "^1.0.1" + run-async "^0.1.0" + rx-lite "^3.1.2" + string-width "^1.0.1" + strip-ansi "^3.0.0" + through "^2.3.6" + +internal-ip@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-1.2.0.tgz#ae9fbf93b984878785d50a8de1b356956058cf5c" + dependencies: + meow "^3.3.0" + +interpret@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.3.tgz#cbc35c62eeee73f19ab7b10a801511401afc0f90" + +invariant@^2.2.0, invariant@^2.2.1, invariant@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.2.tgz#9e1f56ac0acdb6bf303306f338be3b204ae60360" + dependencies: + loose-envify "^1.0.0" + +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + +ip@^1.1.0: + version "1.1.5" + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" + +ipaddr.js@1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.4.0.tgz#296aca878a821816e5b85d0a285a99bcff4582f0" + +is-absolute-url@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + dependencies: + binary-extensions "^1.0.0" + +is-buffer@^1.0.2, is-buffer@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" + +is-builtin-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" + dependencies: + builtin-modules "^1.0.0" + +is-ci@^1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" + dependencies: + ci-info "^1.0.0" + +is-dotfile@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" + +is-equal-shallow@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" + dependencies: + is-primitive "^2.0.0" + +is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + +is-extglob@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" + +is-extglob@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + +is-finite@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + +is-glob@^2.0.0, is-glob@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" + dependencies: + is-extglob "^1.0.0" + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + dependencies: + is-extglob "^2.1.0" + +is-my-json-valid@^2.10.0: + version "2.16.0" + resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz#f079dd9bfdae65ee2038aae8acbc86ab109e3693" + dependencies: + generate-function "^2.0.0" + generate-object-property "^1.1.0" + jsonpointer "^4.0.0" + xtend "^4.0.0" + +is-npm@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" + +is-number@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" + dependencies: + kind-of "^3.0.2" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + dependencies: + kind-of "^3.0.2" + +is-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + +is-path-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" + +is-path-in-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz#6477582b8214d602346094567003be8a9eac04dc" + dependencies: + is-path-inside "^1.0.0" + +is-path-inside@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.0.tgz#fc06e5a1683fbda13de667aff717bbc10a48f37f" + dependencies: + path-is-inside "^1.0.1" + +is-plain-obj@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + +is-plain-object@^2.0.1: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + dependencies: + isobject "^3.0.1" + +is-posix-bracket@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" + +is-primitive@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" + +is-property@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" + +is-redirect@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" + +is-resolvable@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" + dependencies: + tryit "^1.0.1" + +is-retry-allowed@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" + +is-stream@^1.0.0, is-stream@^1.0.1, is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + +is-svg@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9" + dependencies: + html-comment-regex "^1.1.0" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + +isbinaryfile@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-3.0.2.tgz#4a3e974ec0cba9004d3fc6cde7209ea69368a621" + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + dependencies: + isarray "1.0.0" + +isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + +isomorphic-fetch@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" + dependencies: + node-fetch "^1.0.1" + whatwg-fetch ">=0.10.0" + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + +js-base64@^2.1.8, js-base64@^2.1.9: + version "2.1.9" + resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" + +js-tokens@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + +js-yaml@^3.5.1, js-yaml@^3.9.0, js-yaml@^3.9.1: + version "3.9.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.9.1.tgz#08775cebdfdd359209f0d2acd383c8f86a6904a0" + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +js-yaml@~3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80" + dependencies: + argparse "^1.0.7" + esprima "^2.6.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + +jsesc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + +json-loader@^0.5.4: + version "0.5.7" + resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" + +json-schema-traverse@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + +json-stable-stringify@^1.0.0, json-stable-stringify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + dependencies: + jsonify "~0.0.0" + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + +json3@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1" + +json5@^0.5.0, json5@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" + +jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-3.0.1.tgz#a5ecc6f65f53f662c4415c7675a0331d0992ec66" + optionalDependencies: + graceful-fs "^4.1.6" + +jsonify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + +jsonpointer@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9" + +jsprim@^1.2.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.0.tgz#a3b87e40298d8c380552d8cc7628a0bb95a22918" + dependencies: + assert-plus "1.0.0" + extsprintf "1.0.2" + json-schema "0.2.3" + verror "1.3.6" + +kind-of@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5" + dependencies: + is-buffer "^1.0.2" + +kind-of@^3.0.2, kind-of@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + dependencies: + is-buffer "^1.1.5" + +klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + optionalDependencies: + graceful-fs "^4.1.9" + +latest-version@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" + dependencies: + package-json "^4.0.0" + +lazy-cache@^0.2.3: + version "0.2.7" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" + +lazy-cache@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + dependencies: + invert-kv "^1.0.0" + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +load-json-file@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + pinkie-promise "^2.0.0" + strip-bom "^2.0.0" + +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + +loader-runner@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.3.0.tgz#f482aea82d543e07921700d5a46ef26fdac6b8a2" + +loader-utils@^0.2.16: + version "0.2.17" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" + dependencies: + big.js "^3.1.3" + emojis-list "^2.0.0" + json5 "^0.5.0" + object-assign "^4.0.1" + +loader-utils@^1.0.1, loader-utils@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.1.0.tgz#c98aef488bcceda2ffb5e2de646d6a754429f5cd" + dependencies: + big.js "^3.1.3" + emojis-list "^2.0.0" + json5 "^0.5.0" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +lodash.assign@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" + +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + +lodash.clonedeep@^4.3.2: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + +lodash.isequal@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + +lodash.memoize@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + +lodash.mergewith@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55" + +lodash.tail@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.tail/-/lodash.tail-4.1.1.tgz#d2333a36d9e7717c8ad2f7cacafec7c32b444664" + +lodash.toarray@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" + +lodash.uniq@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + +lodash@^4.0.0, lodash@^4.14.0, lodash@^4.17.2, lodash@^4.2.0, lodash@^4.3.0, lodash@~4.17.4: + version "4.17.4" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" + +loglevel@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.4.1.tgz#95b383f91a3c2756fd4ab093667e4309161f2bcd" + +longest@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" + +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848" + dependencies: + js-tokens "^3.0.0" + +loud-rejection@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + dependencies: + currently-unhandled "^0.4.1" + signal-exit "^3.0.0" + +lowercase-keys@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" + +lru-cache@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +macaddress@^0.2.7, macaddress@^0.2.8: + version "0.2.8" + resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" + +make-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.0.0.tgz#97a011751e91dd87cfadef58832ebb04936de978" + dependencies: + pify "^2.3.0" + +map-obj@^1.0.0, map-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + +math-expression-evaluator@^1.2.14: + version "1.2.17" + resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + +mem@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" + dependencies: + mimic-fn "^1.0.0" + +memory-fs@^0.4.0, memory-fs@~0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +meow@^3.1.0, meow@^3.3.0, meow@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" + dependencies: + camelcase-keys "^2.0.0" + decamelize "^1.1.2" + loud-rejection "^1.0.0" + map-obj "^1.0.1" + minimist "^1.1.3" + normalize-package-data "^2.3.4" + object-assign "^4.0.1" + read-pkg-up "^1.0.1" + redent "^1.0.0" + trim-newlines "^1.0.0" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + +micromatch@^2.1.5, micromatch@^2.3.11: + version "2.3.11" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" + dependencies: + arr-diff "^2.0.0" + array-unique "^0.2.1" + braces "^1.8.2" + expand-brackets "^0.1.4" + extglob "^0.3.1" + filename-regex "^2.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.1" + kind-of "^3.0.2" + normalize-path "^2.0.1" + object.omit "^2.0.0" + parse-glob "^3.0.4" + regex-cache "^0.4.2" + +miller-rabin@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.0.tgz#4a62fb1d42933c05583982f4c716f6fb9e6c6d3d" + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +"mime-db@>= 1.29.0 < 2", mime-db@~1.29.0: + version "1.29.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" + +mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.7: + version "2.1.16" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" + dependencies: + mime-db "~1.29.0" + +mime@1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" + +mime@^1.3.4, mime@^1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.6.tgz#591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0" + +mimic-fn@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" + +min-document@^2.19.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.0.tgz#7bd282e3f5842ed295bb748cdd9f1ffa2c824685" + dependencies: + dom-walk "^0.1.0" + +minimalistic-assert@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz#702be2dda6b37f4836bcb3f5db56641b64a1d3d3" + +minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + +minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.2: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + dependencies: + brace-expansion "^1.1.7" + +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + +minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + +mixin-object@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" + dependencies: + for-in "^0.1.3" + is-extendable "^0.1.1" + +mkdirp@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.0.tgz#1d73076a6df986cd9344e15e71fcc05a4c9abf12" + dependencies: + minimist "0.0.8" + +mkdirp@0.5.x, "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + dependencies: + minimist "0.0.8" + +ms@0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + +multicast-dns-service-types@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901" + +multicast-dns@^6.0.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.1.1.tgz#6e7de86a570872ab17058adea7160bbeca814dde" + dependencies: + dns-packet "^1.0.1" + thunky "^0.1.0" + +mute-stream@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.5.tgz#8fbfabb0a98a253d3184331f9e8deb7372fac6c0" + +nan@^2.3.0, nan@^2.3.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.6.2.tgz#e4ff34e6c95fdfb5aecc08de6596f43605a7db45" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + +negotiator@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" + +node-emoji@^1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.8.1.tgz#6eec6bfb07421e2148c75c6bba72421f8530a826" + dependencies: + lodash.toarray "^4.4.0" + +node-fetch@^1.0.1: + version "1.7.1" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.1.tgz#899cb3d0a3c92f952c47f1b876f4c8aeabd400d5" + dependencies: + encoding "^0.1.11" + is-stream "^1.0.1" + +node-forge@0.6.33: + version "0.6.33" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.6.33.tgz#463811879f573d45155ad6a9f43dc296e8e85ebc" + +node-gyp@^3.3.1: + version "3.6.2" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.6.2.tgz#9bfbe54562286284838e750eac05295853fa1c60" + dependencies: + fstream "^1.0.0" + glob "^7.0.3" + graceful-fs "^4.1.2" + minimatch "^3.0.2" + mkdirp "^0.5.0" + nopt "2 || 3" + npmlog "0 || 1 || 2 || 3 || 4" + osenv "0" + request "2" + rimraf "2" + semver "~5.3.0" + tar "^2.0.0" + which "1" + +node-libs-browser@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.0.0.tgz#a3a59ec97024985b46e958379646f96c4b616646" + dependencies: + assert "^1.1.1" + browserify-zlib "^0.1.4" + buffer "^4.3.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "^3.11.0" + domain-browser "^1.1.1" + events "^1.0.0" + https-browserify "0.0.1" + os-browserify "^0.2.0" + path-browserify "0.0.0" + process "^0.11.0" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.0.5" + stream-browserify "^2.0.1" + stream-http "^2.3.1" + string_decoder "^0.10.25" + timers-browserify "^2.0.2" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.10.3" + vm-browserify "0.0.4" + +node-pre-gyp@^0.6.36: + version "0.6.36" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz#db604112cb74e0d477554e9b505b17abddfab786" + dependencies: + mkdirp "^0.5.1" + nopt "^4.0.1" + npmlog "^4.0.2" + rc "^1.1.7" + request "^2.81.0" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^2.2.1" + tar-pack "^3.4.0" + +node-sass@^4.5.3: + version "4.5.3" + resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.5.3.tgz#d09c9d1179641239d1b97ffc6231fdcec53e1568" + dependencies: + async-foreach "^0.1.3" + chalk "^1.1.1" + cross-spawn "^3.0.0" + gaze "^1.0.0" + get-stdin "^4.0.1" + glob "^7.0.3" + in-publish "^2.0.0" + lodash.assign "^4.2.0" + lodash.clonedeep "^4.3.2" + lodash.mergewith "^4.6.0" + meow "^3.7.0" + mkdirp "^0.5.1" + nan "^2.3.2" + node-gyp "^3.3.1" + npmlog "^4.0.0" + request "^2.79.0" + sass-graph "^2.1.1" + stdout-stream "^1.4.0" + +"nopt@2 || 3": + version "3.0.6" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" + dependencies: + abbrev "1" + +nopt@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + dependencies: + abbrev "1" + osenv "^0.1.4" + +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" + dependencies: + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^2.0.0, normalize-path@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + +normalize-url@^1.4.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" + dependencies: + object-assign "^4.0.1" + prepend-http "^1.0.0" + query-string "^4.1.0" + sort-keys "^1.0.0" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + dependencies: + path-key "^2.0.0" + +"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +nugget@^2.0.0, nugget@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/nugget/-/nugget-2.0.1.tgz#201095a487e1ad36081b3432fa3cada4f8d071b0" + dependencies: + debug "^2.1.3" + minimist "^1.1.0" + pretty-bytes "^1.0.2" + progress-stream "^1.1.0" + request "^2.45.0" + single-line-log "^1.1.2" + throttleit "0.0.2" + +num2fraction@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + +oauth-sign@~0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" + +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + +object-keys@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-0.4.0.tgz#28a6aae7428dd2c3a92f3d95f21335dd204e0336" + +object.omit@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" + dependencies: + for-own "^0.1.4" + is-extendable "^0.1.1" + +obuf@^1.0.0, obuf@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.1.tgz#104124b6c602c6796881a042541d36db43a5264e" + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7" + +once@^1.3.0, once@^1.3.3: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + dependencies: + wrappy "1" + +onetime@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" + +opn@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/opn/-/opn-4.0.2.tgz#7abc22e644dff63b0a96d5ab7f2790c0f01abc95" + dependencies: + object-assign "^4.0.1" + pinkie-promise "^2.0.0" + +optionator@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + +original@>=0.0.5: + version "1.0.0" + resolved "https://registry.yarnpkg.com/original/-/original-1.0.0.tgz#9147f93fa1696d04be61e01bd50baeaca656bd3b" + dependencies: + url-parse "1.0.x" + +os-browserify@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.2.1.tgz#63fc4ccee5d2d7763d26bbf8601078e6c2e0044f" + +os-homedir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + +os-locale@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + dependencies: + lcid "^1.0.0" + +os-locale@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" + dependencies: + execa "^0.7.0" + lcid "^1.0.0" + mem "^1.1.0" + +os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + +osenv@0, osenv@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.4.tgz#42fe6d5953df06c8064be6f176c3d05aaaa34644" + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +output-file-sync@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" + dependencies: + graceful-fs "^4.1.4" + mkdirp "^0.5.1" + object-assign "^4.1.0" + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + +p-limit@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + dependencies: + p-limit "^1.1.0" + +p-map@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.1.1.tgz#05f5e4ae97a068371bc2a5cc86bfbdbc19c4ae7a" + +package-json@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" + dependencies: + got "^6.7.1" + registry-auth-token "^3.0.1" + registry-url "^3.0.3" + semver "^5.1.0" + +pako@~0.2.0: + version "0.2.9" + resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" + +parse-asn1@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.0.tgz#37c4f9b7ed3ab65c74817b5f2480937fbf97c712" + dependencies: + asn1.js "^4.0.0" + browserify-aes "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + +parse-color@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/parse-color/-/parse-color-1.0.0.tgz#7b748b95a83f03f16a94f535e52d7f3d94658619" + dependencies: + color-convert "~0.5.0" + +parse-glob@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" + dependencies: + glob-base "^0.3.0" + is-dotfile "^1.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.0" + +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + dependencies: + error-ex "^1.2.0" + +parseurl@~1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.1.tgz#c8ab8c9223ba34888aa64a297b28853bec18da56" + +path-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" + +path-exists@^2.0.0, path-exists@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + dependencies: + pinkie-promise "^2.0.0" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + +path-is-inside@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + +path-key@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + +path-parse@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + +path-to-regexp@^1.5.3: + version "1.7.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" + dependencies: + isarray "0.0.1" + +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + dependencies: + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + dependencies: + pify "^2.0.0" + +pbkdf2@^3.0.3: + version "3.0.12" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.12.tgz#be36785c5067ea48d806ff923288c5f750b6b8a2" + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +pend@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" + +performance-now@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-0.2.0.tgz#33ef30c5c77d4ea21c5a53869d91b56d8f2555e5" + +pify@^2.0.0, pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + +pkg-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" + dependencies: + find-up "^2.1.0" + +pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" + dependencies: + find-up "^2.1.0" + +plist@^2.0.1, plist@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/plist/-/plist-2.1.0.tgz#57ccdb7a0821df21831217a3cad54e3e146a1025" + dependencies: + base64-js "1.2.0" + xmlbuilder "8.2.2" + xmldom "0.1.x" + +pluralize@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45" + +portfinder@^1.0.9: + version "1.0.13" + resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" + dependencies: + async "^1.5.2" + debug "^2.2.0" + mkdirp "0.5.x" + +postcss-calc@^5.2.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e" + dependencies: + postcss "^5.0.2" + postcss-message-helpers "^2.0.0" + reduce-css-calc "^1.2.6" + +postcss-colormin@^2.1.8: + version "2.2.2" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b" + dependencies: + colormin "^1.0.5" + postcss "^5.0.13" + postcss-value-parser "^3.2.3" + +postcss-convert-values@^2.3.4: + version "2.6.1" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d" + dependencies: + postcss "^5.0.11" + postcss-value-parser "^3.1.2" + +postcss-discard-comments@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d" + dependencies: + postcss "^5.0.14" + +postcss-discard-duplicates@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932" + dependencies: + postcss "^5.0.4" + +postcss-discard-empty@^2.0.1: + version "2.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5" + dependencies: + postcss "^5.0.14" + +postcss-discard-overridden@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58" + dependencies: + postcss "^5.0.16" + +postcss-discard-unused@^2.2.1: + version "2.2.3" + resolved "https://registry.yarnpkg.com/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433" + dependencies: + postcss "^5.0.14" + uniqs "^2.0.0" + +postcss-filter-plugins@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz#6d85862534d735ac420e4a85806e1f5d4286d84c" + dependencies: + postcss "^5.0.4" + uniqid "^4.0.0" + +postcss-merge-idents@^2.1.5: + version "2.1.7" + resolved "https://registry.yarnpkg.com/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270" + dependencies: + has "^1.0.1" + postcss "^5.0.10" + postcss-value-parser "^3.1.1" + +postcss-merge-longhand@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658" + dependencies: + postcss "^5.0.4" + +postcss-merge-rules@^2.0.3: + version "2.1.2" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721" + dependencies: + browserslist "^1.5.2" + caniuse-api "^1.5.2" + postcss "^5.0.4" + postcss-selector-parser "^2.2.2" + vendors "^1.0.0" + +postcss-message-helpers@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e" + +postcss-minify-font-values@^1.0.2: + version "1.0.5" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69" + dependencies: + object-assign "^4.0.1" + postcss "^5.0.4" + postcss-value-parser "^3.0.2" + +postcss-minify-gradients@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1" + dependencies: + postcss "^5.0.12" + postcss-value-parser "^3.3.0" + +postcss-minify-params@^1.0.4: + version "1.2.2" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3" + dependencies: + alphanum-sort "^1.0.1" + postcss "^5.0.2" + postcss-value-parser "^3.0.2" + uniqs "^2.0.0" + +postcss-minify-selectors@^2.0.4: + version "2.1.1" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf" + dependencies: + alphanum-sort "^1.0.2" + has "^1.0.1" + postcss "^5.0.14" + postcss-selector-parser "^2.0.0" + +postcss-modules-extract-imports@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.0.tgz#66140ecece38ef06bf0d3e355d69bf59d141ea85" + dependencies: + postcss "^6.0.1" + +postcss-modules-local-by-default@^1.0.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" + dependencies: + css-selector-tokenizer "^0.7.0" + postcss "^6.0.1" + +postcss-modules-scope@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" + dependencies: + css-selector-tokenizer "^0.7.0" + postcss "^6.0.1" + +postcss-modules-values@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" + dependencies: + icss-replace-symbols "^1.1.0" + postcss "^6.0.1" + +postcss-normalize-charset@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1" + dependencies: + postcss "^5.0.5" + +postcss-normalize-url@^3.0.7: + version "3.0.8" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222" + dependencies: + is-absolute-url "^2.0.0" + normalize-url "^1.4.0" + postcss "^5.0.14" + postcss-value-parser "^3.2.3" + +postcss-ordered-values@^2.1.0: + version "2.2.3" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d" + dependencies: + postcss "^5.0.4" + postcss-value-parser "^3.0.1" + +postcss-reduce-idents@^2.2.2: + version "2.4.0" + resolved "https://registry.yarnpkg.com/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3" + dependencies: + postcss "^5.0.4" + postcss-value-parser "^3.0.2" + +postcss-reduce-initial@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea" + dependencies: + postcss "^5.0.4" + +postcss-reduce-transforms@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1" + dependencies: + has "^1.0.1" + postcss "^5.0.8" + postcss-value-parser "^3.0.1" + +postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" + dependencies: + flatten "^1.0.2" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-svgo@^2.1.1: + version "2.1.6" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d" + dependencies: + is-svg "^2.0.0" + postcss "^5.0.14" + postcss-value-parser "^3.2.3" + svgo "^0.7.0" + +postcss-unique-selectors@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d" + dependencies: + alphanum-sort "^1.0.1" + postcss "^5.0.4" + uniqs "^2.0.0" + +postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15" + +postcss-zindex@^2.0.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22" + dependencies: + has "^1.0.1" + postcss "^5.0.4" + uniqs "^2.0.0" + +postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16: + version "5.2.17" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.17.tgz#cf4f597b864d65c8a492b2eabe9d706c879c388b" + dependencies: + chalk "^1.1.3" + js-base64 "^2.1.9" + source-map "^0.5.6" + supports-color "^3.2.3" + +postcss@^6.0.1: + version "6.0.8" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.8.tgz#89067a9ce8b11f8a84cbc5117efc30419a0857b3" + dependencies: + chalk "^2.0.1" + source-map "^0.5.6" + supports-color "^4.2.0" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + +prepend-http@^1.0.0, prepend-http@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + +preserve@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" + +pretty-bytes@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-1.0.4.tgz#0a22e8210609ad35542f8c8d5d2159aff0751c84" + dependencies: + get-stdin "^4.0.1" + meow "^3.1.0" + +private@^0.1.6: + version "0.1.7" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.7.tgz#68ce5e8a1ef0a23bb570cc28537b5332aba63ef1" + +process-nextick-args@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" + +process@^0.11.0: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + +process@~0.5.1: + version "0.5.2" + resolved "https://registry.yarnpkg.com/process/-/process-0.5.2.tgz#1638d8a8e34c2f440a91db95ab9aeb677fc185cf" + +progress-stream@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/progress-stream/-/progress-stream-1.2.0.tgz#2cd3cfea33ba3a89c9c121ec3347abe9ab125f77" + dependencies: + speedometer "~0.1.2" + through2 "~0.2.3" + +progress@^1.1.8: + version "1.1.8" + resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" + +promise@^7.1.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + dependencies: + asap "~2.0.3" + +prop-types@^15.5.10, prop-types@^15.5.4: + version "15.5.10" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.10.tgz#2797dfc3126182e3a95e3dfbb2e893ddd7456154" + dependencies: + fbjs "^0.8.9" + loose-envify "^1.3.1" + +proxy-addr@~1.1.4: + version "1.1.5" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.5.tgz#71c0ee3b102de3f202f3b64f608d173fcba1a918" + dependencies: + forwarded "~0.1.0" + ipaddr.js "1.4.0" + +prr@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/prr/-/prr-0.0.0.tgz#1a84b85908325501411853d0081ee3fa86e2926a" + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + +public-encrypt@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.0.tgz#39f699f3a46560dd5ebacbca693caf7c65c18cc6" + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + +punycode@^1.2.4, punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + +q@^1.1.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" + +qs@6.4.0, qs@~6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.4.0.tgz#13e26d28ad6b0ffaa91312cd3bf708ed351e7233" + +query-string@^4.1.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" + dependencies: + object-assign "^4.1.0" + strict-uri-encode "^1.0.0" + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + +querystringify@0.0.x: + version "0.0.4" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-0.0.4.tgz#0cf7f84f9463ff0ae51c4c4b142d95be37724d9c" + +querystringify@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-1.0.0.tgz#6286242112c5b712fa654e526652bf6a13ff05cb" + +randomatic@^1.1.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +randombytes@^2.0.0, randombytes@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.0.5.tgz#dc009a246b8d09a177b4b7a0ae77bc570f4b1b79" + dependencies: + safe-buffer "^5.1.0" + +range-parser@^1.0.3, range-parser@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e" + +rc@^1.0.1, rc@^1.1.2, rc@^1.1.6, rc@^1.1.7, rc@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.1.tgz#2e03e8e42ee450b8cb3dce65be1bf8974e1dfd95" + dependencies: + deep-extend "~0.4.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +react-dom@^15.6.0: + version "15.6.1" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-15.6.1.tgz#2cb0ed4191038e53c209eb3a79a23e2a4cf99470" + dependencies: + fbjs "^0.8.9" + loose-envify "^1.1.0" + object-assign "^4.1.0" + prop-types "^15.5.10" + +react-hot-api@^0.4.5: + version "0.4.7" + resolved "https://registry.yarnpkg.com/react-hot-api/-/react-hot-api-0.4.7.tgz#a7e22a56d252e11abd9366b61264cf4492c58171" + +react-hot-loader@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/react-hot-loader/-/react-hot-loader-1.3.1.tgz#c95647ae78b73dfceff6ec71ffcb04182ff6daf9" + dependencies: + react-hot-api "^0.4.5" + source-map "^0.4.4" + +react-router-dom@^4.1.1: + version "4.1.2" + resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-4.1.2.tgz#7f8a7ca868d32acadd19ca09543b40d26df8ec37" + dependencies: + history "^4.5.1" + loose-envify "^1.3.1" + prop-types "^15.5.4" + react-router "^4.1.1" + +react-router@^4.1.1: + version "4.1.2" + resolved "https://registry.yarnpkg.com/react-router/-/react-router-4.1.2.tgz#7ae027341abc42eb08ad9f7a8cac08d0563672ce" + dependencies: + history "^4.6.0" + hoist-non-react-statics "^1.2.0" + invariant "^2.2.2" + loose-envify "^1.3.1" + path-to-regexp "^1.5.3" + prop-types "^15.5.4" + warning "^3.0.0" + +react@^15.6.0: + version "15.6.1" + resolved "https://registry.yarnpkg.com/react/-/react-15.6.1.tgz#baa8434ec6780bde997cdc380b79cd33b96393df" + dependencies: + create-react-class "^15.6.0" + fbjs "^0.8.9" + loose-envify "^1.1.0" + object-assign "^4.1.0" + prop-types "^15.5.10" + +read-config-file@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/read-config-file/-/read-config-file-0.1.3.tgz#10f72ad95159864c78def8c749b226f80c998b61" + dependencies: + bluebird-lst "^1.0.2" + fs-extra-p "^4.4.0" + js-yaml "^3.9.0" + json5 "^0.5.1" + +read-pkg-up@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" + dependencies: + find-up "^1.0.0" + read-pkg "^1.0.0" + +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + +read-pkg@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + dependencies: + load-json-file "^1.0.0" + normalize-package-data "^2.3.2" + path-type "^1.0.0" + +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.4, readable-stream@^2.2.2, readable-stream@^2.2.6, readable-stream@^2.2.9: + version "2.3.3" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + safe-buffer "~5.1.1" + string_decoder "~1.0.3" + util-deprecate "~1.0.1" + +readable-stream@~1.1.9: + version "1.1.14" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readdirp@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78" + dependencies: + graceful-fs "^4.1.2" + minimatch "^3.0.2" + readable-stream "^2.0.2" + set-immediate-shim "^1.0.1" + +readline2@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/readline2/-/readline2-1.0.1.tgz#41059608ffc154757b715d9989d199ffbf372e35" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + mute-stream "0.0.5" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + dependencies: + resolve "^1.1.6" + +redent@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" + dependencies: + indent-string "^2.1.0" + strip-indent "^1.0.1" + +reduce-css-calc@^1.2.6: + version "1.3.0" + resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716" + dependencies: + balanced-match "^0.4.2" + math-expression-evaluator "^1.2.14" + reduce-function-call "^1.0.1" + +reduce-function-call@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99" + dependencies: + balanced-match "^0.4.2" + +regenerate@^1.2.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.3.2.tgz#d1941c67bad437e1be76433add5b385f95b19260" + +regenerator-runtime@^0.10.0: + version "0.10.5" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" + +regenerator-transform@0.9.11: + version "0.9.11" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.9.11.tgz#3a7d067520cb7b7176769eb5ff868691befe1283" + dependencies: + babel-runtime "^6.18.0" + babel-types "^6.19.0" + private "^0.1.6" + +regex-cache@^0.4.2: + version "0.4.3" + resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.3.tgz#9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145" + dependencies: + is-equal-shallow "^0.1.3" + is-primitive "^2.0.0" + +regexpu-core@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +regexpu-core@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +registry-auth-token@^3.0.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.1.tgz#fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006" + dependencies: + rc "^1.1.6" + safe-buffer "^5.0.1" + +registry-url@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" + dependencies: + rc "^1.0.1" + +regjsgen@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" + +regjsparser@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" + dependencies: + jsesc "~0.5.0" + +remove-trailing-separator@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz#69b062d978727ad14dc6b56ba4ab772fd8d70511" + +repeat-element@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" + +repeat-string@^1.5.2: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + dependencies: + is-finite "^1.0.0" + +request@2, request@^2.45.0, request@^2.79.0, request@^2.81.0: + version "2.81.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.81.0.tgz#c6928946a0e06c5f8d6f8a9333469ffda46298a0" + dependencies: + aws-sign2 "~0.6.0" + aws4 "^1.2.1" + caseless "~0.12.0" + combined-stream "~1.0.5" + extend "~3.0.0" + forever-agent "~0.6.1" + form-data "~2.1.1" + har-validator "~4.2.1" + hawk "~3.1.3" + http-signature "~1.1.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.7" + oauth-sign "~0.8.1" + performance-now "^0.2.0" + qs "~6.4.0" + safe-buffer "^5.0.1" + stringstream "~0.0.4" + tough-cookie "~2.3.0" + tunnel-agent "^0.6.0" + uuid "^3.0.0" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + +require-uncached@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" + dependencies: + caller-path "^0.1.0" + resolve-from "^1.0.0" + +requires-port@1.0.x, requires-port@1.x.x: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + +resolve-from@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" + +resolve-pathname@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-2.1.0.tgz#e8358801b86b83b17560d4e3c382d7aef2100944" + +resolve@^1.1.6: + version "1.4.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" + dependencies: + path-parse "^1.0.5" + +restore-cursor@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" + dependencies: + exit-hook "^1.0.0" + onetime "^1.0.0" + +right-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" + dependencies: + align-text "^0.1.1" + +rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.1.tgz#c2338ec643df7a1b7fe5c54fa86f57428a55f33d" + dependencies: + glob "^7.0.5" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.1.tgz#0f4584295c53a3628af7e6d79aca21ce57d1c6e7" + dependencies: + hash-base "^2.0.0" + inherits "^2.0.1" + +run-async@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-0.1.0.tgz#c8ad4a5e110661e402a7d21b530e009f25f8e389" + dependencies: + once "^1.3.0" + +rx-lite@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" + +safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" + +sanitize-filename@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/sanitize-filename/-/sanitize-filename-1.6.1.tgz#612da1c96473fa02dccda92dcd5b4ab164a6772a" + dependencies: + truncate-utf8-bytes "^1.0.0" + +sass-graph@^2.1.1: + version "2.2.4" + resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.4.tgz#13fbd63cd1caf0908b9fd93476ad43a51d1e0b49" + dependencies: + glob "^7.0.0" + lodash "^4.0.0" + scss-tokenizer "^0.2.3" + yargs "^7.0.0" + +sass-loader@^6.0.6: + version "6.0.6" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-6.0.6.tgz#e9d5e6c1f155faa32a4b26d7a9b7107c225e40f9" + dependencies: + async "^2.1.5" + clone-deep "^0.3.0" + loader-utils "^1.0.1" + lodash.tail "^4.1.1" + pify "^3.0.0" + +sax@^1.2.1, sax@~1.2.1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + +schema-utils@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.3.0.tgz#f5877222ce3e931edae039f17eb3716e7137f8cf" + dependencies: + ajv "^5.0.0" + +scss-tokenizer@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" + dependencies: + js-base64 "^2.1.8" + source-map "^0.4.2" + +select-hose@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" + +selfsigned@^1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.9.1.tgz#cdda4492d70d486570f87c65546023558e1dfa5a" + dependencies: + node-forge "0.6.33" + +semver-diff@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" + dependencies: + semver "^5.0.3" + +"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: + version "5.4.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" + +semver@~5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" + +send@0.15.3: + version "0.15.3" + resolved "https://registry.yarnpkg.com/send/-/send-0.15.3.tgz#5013f9f99023df50d1bd9892c19e3defd1d53309" + dependencies: + debug "2.6.7" + depd "~1.1.0" + destroy "~1.0.4" + encodeurl "~1.0.1" + escape-html "~1.0.3" + etag "~1.8.0" + fresh "0.5.0" + http-errors "~1.6.1" + mime "1.3.4" + ms "2.0.0" + on-finished "~2.3.0" + range-parser "~1.2.0" + statuses "~1.3.1" + +serve-index@^1.7.2: + version "1.9.0" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.0.tgz#d2b280fc560d616ee81b48bf0fa82abed2485ce7" + dependencies: + accepts "~1.3.3" + batch "0.6.1" + debug "2.6.8" + escape-html "~1.0.3" + http-errors "~1.6.1" + mime-types "~2.1.15" + parseurl "~1.3.1" + +serve-static@1.12.3: + version "1.12.3" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.12.3.tgz#9f4ba19e2f3030c547f8af99107838ec38d5b1e2" + dependencies: + encodeurl "~1.0.1" + escape-html "~1.0.3" + parseurl "~1.3.1" + send "0.15.3" + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + +set-immediate-shim@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61" + +setimmediate@^1.0.4, setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + +setprototypeof@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04" + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.8" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.8.tgz#37068c2c476b6baf402d14a49c67f597921f634f" + dependencies: + inherits "^2.0.1" + +shallow-clone@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060" + dependencies: + is-extendable "^0.1.1" + kind-of "^2.0.1" + lazy-cache "^0.2.3" + mixin-object "^2.0.1" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + +shelljs@^0.7.5: + version "0.7.8" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.8.tgz#decbcf874b0d1e5fb72e14b164a9683048e9acb3" + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + +signal-exit@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + +single-line-log@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/single-line-log/-/single-line-log-1.1.2.tgz#c2f83f273a3e1a16edb0995661da0ed5ef033364" + dependencies: + string-width "^1.0.1" + +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + +slice-ansi@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + +slide@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" + +sntp@1.x.x: + version "1.0.9" + resolved "https://registry.yarnpkg.com/sntp/-/sntp-1.0.9.tgz#6541184cc90aeea6c6e7b35e2659082443c66198" + dependencies: + hoek "2.x.x" + +sockjs-client@1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.1.4.tgz#5babe386b775e4cf14e7520911452654016c8b12" + dependencies: + debug "^2.6.6" + eventsource "0.1.6" + faye-websocket "~0.11.0" + inherits "^2.0.1" + json3 "^3.3.2" + url-parse "^1.1.8" + +sockjs@0.3.18: + version "0.3.18" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.18.tgz#d9b289316ca7df77595ef299e075f0f937eb4207" + dependencies: + faye-websocket "^0.10.0" + uuid "^2.0.2" + +sort-keys@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" + dependencies: + is-plain-obj "^1.0.0" + +source-list-map@^0.1.7: + version "0.1.8" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" + +source-list-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.0.tgz#aaa47403f7b245a92fbc97ea08f250d6087ed085" + +source-map-support@^0.4.15, source-map-support@^0.4.2: + version "0.4.15" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.15.tgz#03202df65c06d2bd8c7ec2362a193056fef8d3b1" + dependencies: + source-map "^0.5.6" + +source-map@^0.4.2, source-map@^0.4.4: + version "0.4.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" + dependencies: + amdefine ">=0.0.4" + +source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@~0.5.1, source-map@~0.5.3: + version "0.5.6" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" + +spdx-correct@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" + dependencies: + spdx-license-ids "^1.0.2" + +spdx-expression-parse@~1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" + +spdx-license-ids@^1.0.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" + +spdy-transport@^2.0.18: + version "2.0.20" + resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-2.0.20.tgz#735e72054c486b2354fe89e702256004a39ace4d" + dependencies: + debug "^2.6.8" + detect-node "^2.0.3" + hpack.js "^2.1.6" + obuf "^1.1.1" + readable-stream "^2.2.9" + safe-buffer "^5.0.1" + wbuf "^1.7.2" + +spdy@^3.4.1: + version "3.4.7" + resolved "https://registry.yarnpkg.com/spdy/-/spdy-3.4.7.tgz#42ff41ece5cc0f99a3a6c28aabb73f5c3b03acbc" + dependencies: + debug "^2.6.8" + handle-thing "^1.2.5" + http-deceiver "^1.2.7" + safe-buffer "^5.0.1" + select-hose "^2.0.0" + spdy-transport "^2.0.18" + +speedometer@~0.1.2: + version "0.1.4" + resolved "https://registry.yarnpkg.com/speedometer/-/speedometer-0.1.4.tgz#9876dbd2a169d3115402d48e6ea6329c8816a50d" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + +sshpk@^1.7.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + dashdash "^1.12.0" + getpass "^0.1.1" + optionalDependencies: + bcrypt-pbkdf "^1.0.0" + ecc-jsbn "~0.1.1" + jsbn "~0.1.0" + tweetnacl "~0.14.0" + +stat-mode@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/stat-mode/-/stat-mode-0.2.2.tgz#e6c80b623123d7d80cf132ce538f346289072502" + +"statuses@>= 1.3.1 < 2", statuses@~1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.3.1.tgz#faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e" + +stdout-stream@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.0.tgz#a2c7c8587e54d9427ea9edb3ac3f2cd522df378b" + dependencies: + readable-stream "^2.0.1" + +stream-browserify@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.1.tgz#66266ee5f9bdb9940a4e4514cafb43bb71e5c9db" + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-http@^2.3.1: + version "2.7.2" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.7.2.tgz#40a050ec8dc3b53b33d9909415c02c0bf1abfbad" + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.2.6" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +strict-uri-encode@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" + +string-width@^1.0.1, string-width@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +string-width@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string_decoder@^0.10.25, string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + +string_decoder@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" + dependencies: + safe-buffer "~5.1.0" + +stringstream@~0.0.4: + version "0.0.5" + resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + dependencies: + ansi-regex "^3.0.0" + +strip-bom@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + dependencies: + is-utf8 "^0.2.0" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + +strip-indent@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" + dependencies: + get-stdin "^4.0.1" + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + +style-loader@^0.18.2: + version "0.18.2" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.18.2.tgz#cc31459afbcd6d80b7220ee54b291a9fd66ff5eb" + dependencies: + loader-utils "^1.0.2" + schema-utils "^0.3.0" + +sumchecker@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-1.3.1.tgz#79bb3b4456dd04f18ebdbc0d703a1d1daec5105d" + dependencies: + debug "^2.2.0" + es6-promise "^4.0.5" + +sumchecker@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/sumchecker/-/sumchecker-2.0.2.tgz#0f42c10e5d05da5d42eea3e56c3399a37d6c5b3e" + dependencies: + debug "^2.2.0" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + +supports-color@^3.1.0, supports-color@^3.1.1, supports-color@^3.2.3: + version "3.2.3" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6" + dependencies: + has-flag "^1.0.0" + +supports-color@^4.0.0, supports-color@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.1.tgz#65a4bb2631e90e02420dba5554c375a4754bb836" + dependencies: + has-flag "^2.0.0" + +svgo@^0.7.0: + version "0.7.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5" + dependencies: + coa "~1.0.1" + colors "~1.1.2" + csso "~2.3.1" + js-yaml "~3.7.0" + mkdirp "~0.5.1" + sax "~1.2.1" + whet.extend "~0.9.9" + +table@^3.7.8: + version "3.8.3" + resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" + dependencies: + ajv "^4.7.0" + ajv-keywords "^1.0.0" + chalk "^1.1.1" + lodash "^4.0.0" + slice-ansi "0.0.4" + string-width "^2.0.0" + +tapable@^0.2.7, tapable@~0.2.5: + version "0.2.7" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.7.tgz#e46c0daacbb2b8a98b9b0cea0f4052105817ed5c" + +tar-pack@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/tar-pack/-/tar-pack-3.4.0.tgz#23be2d7f671a8339376cbdb0b8fe3fdebf317984" + dependencies: + debug "^2.2.0" + fstream "^1.0.10" + fstream-ignore "^1.0.5" + once "^1.3.3" + readable-stream "^2.1.4" + rimraf "^2.5.1" + tar "^2.2.1" + uid-number "^0.0.6" + +tar@^2.0.0, tar@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.1.tgz#8e4d2a256c0e2185c6b18ad694aec968b83cb1d1" + dependencies: + block-stream "*" + fstream "^1.0.2" + inherits "2" + +tempfile@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/tempfile/-/tempfile-1.1.1.tgz#5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2" + dependencies: + os-tmpdir "^1.0.0" + uuid "^2.0.1" + +term-size@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" + dependencies: + execa "^0.7.0" + +text-table@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + +throttleit@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-0.0.2.tgz#cfedf88e60c00dd9697b61fdd2a8343a9b680eaf" + +through2@~0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/through2/-/through2-0.2.3.tgz#eb3284da4ea311b6cc8ace3653748a52abf25a3f" + dependencies: + readable-stream "~1.1.9" + xtend "~2.1.1" + +through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + +thunky@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/thunky/-/thunky-0.1.0.tgz#bf30146824e2b6e67b0f2d7a4ac8beb26908684e" + +time-stamp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-2.0.0.tgz#95c6a44530e15ba8d6f4a3ecb8c3a3fac46da357" + +timed-out@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" + +timers-browserify@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.3.tgz#41fd0bdc926a5feedc33a17a8e1f7d491925f7fc" + dependencies: + global "^4.3.2" + setimmediate "^1.0.4" + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + +to-fast-properties@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + +tough-cookie@~2.3.0: + version "2.3.2" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" + dependencies: + punycode "^1.4.1" + +trim-newlines@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" + +trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + +truncate-utf8-bytes@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz#405923909592d56f78a5818434b0b78489ca5f2b" + dependencies: + utf8-byte-length "^1.0.1" + +tryit@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + dependencies: + prelude-ls "~1.1.2" + +type-is@~1.6.15: + version "1.6.15" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.15.tgz#cab10fb4909e441c82842eafe1ad646c81804410" + dependencies: + media-typer "0.3.0" + mime-types "~2.1.15" + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + +ua-parser-js@^0.7.9: + version "0.7.14" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.14.tgz#110d53fa4c3f326c121292bbeac904d2e03387ca" + +uglify-js@^2.8.27: + version "2.8.29" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" + dependencies: + source-map "~0.5.1" + yargs "~3.10.0" + optionalDependencies: + uglify-to-browserify "~1.0.0" + +uglify-to-browserify@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" + +uid-number@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/uid-number/-/uid-number-0.0.6.tgz#0ea10e8035e8eb5b8e4449f06da1c730663baa81" + +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + +uniqid@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/uniqid/-/uniqid-4.1.1.tgz#89220ddf6b751ae52b5f72484863528596bb84c1" + dependencies: + macaddress "^0.2.8" + +uniqs@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" + +unique-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" + dependencies: + crypto-random-string "^1.0.0" + +universalify@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" + +unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + +unzip-response@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" + +update-notifier@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.2.0.tgz#1b5837cf90c0736d88627732b661c138f86de72f" + dependencies: + boxen "^1.0.0" + chalk "^1.0.0" + configstore "^3.0.0" + import-lazy "^2.1.0" + is-npm "^1.0.0" + latest-version "^3.0.0" + semver-diff "^2.0.0" + xdg-basedir "^3.0.0" + +url-parse-lax@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" + dependencies: + prepend-http "^1.0.1" + +url-parse@1.0.x: + version "1.0.5" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.0.5.tgz#0854860422afdcfefeb6c965c662d4800169927b" + dependencies: + querystringify "0.0.x" + requires-port "1.0.x" + +url-parse@^1.1.8: + version "1.1.9" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.1.9.tgz#c67f1d775d51f0a18911dd7b3ffad27bb9e5bd19" + dependencies: + querystringify "~1.0.0" + requires-port "1.0.x" + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +user-home@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" + +user-home@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/user-home/-/user-home-2.0.0.tgz#9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f" + dependencies: + os-homedir "^1.0.0" + +utf8-byte-length@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/utf8-byte-length/-/utf8-byte-length-1.0.4.tgz#f45f150c4c66eee968186505ab93fcbb8ad6bf61" + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + +util@0.10.3, util@^0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + dependencies: + inherits "2.0.1" + +utils-merge@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.0.tgz#0294fb922bb9375153541c4f7096231f287c8af8" + +uuid-1345@^0.99.6: + version "0.99.6" + resolved "https://registry.yarnpkg.com/uuid-1345/-/uuid-1345-0.99.6.tgz#b1270ae015a7721c7adec6c46ec169c6098aed40" + dependencies: + macaddress "^0.2.7" + +uuid@^2.0.1, uuid@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-2.0.3.tgz#67e2e863797215530dff318e5bf9dcebfd47b21a" + +uuid@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" + +v8flags@^2.0.10: + version "2.1.1" + resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" + dependencies: + user-home "^1.1.1" + +validate-npm-package-license@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" + dependencies: + spdx-correct "~1.0.0" + spdx-expression-parse "~1.0.0" + +value-equal@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-0.2.1.tgz#c220a304361fce6994dbbedaa3c7e1a1b895871d" + +vary@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.1.tgz#67535ebb694c1d52257457984665323f587e8d37" + +vendors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.1.tgz#37ad73c8ee417fb3d580e785312307d274847f22" + +verror@1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.3.6.tgz#cff5df12946d297d2baaefaa2689e25be01c005c" + dependencies: + extsprintf "1.0.2" + +vm-browserify@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" + dependencies: + indexof "0.0.1" + +warning@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c" + dependencies: + loose-envify "^1.0.0" + +watchpack@^1.3.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.4.0.tgz#4a1472bcbb952bd0a9bb4036801f954dfb39faac" + dependencies: + async "^2.1.2" + chokidar "^1.7.0" + graceful-fs "^4.1.2" + +wbuf@^1.1.0, wbuf@^1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.2.tgz#d697b99f1f59512df2751be42769c1580b5801fe" + dependencies: + minimalistic-assert "^1.0.0" + +webpack-dev-middleware@^1.11.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-1.12.0.tgz#d34efefb2edda7e1d3b5dbe07289513219651709" + dependencies: + memory-fs "~0.4.1" + mime "^1.3.4" + path-is-absolute "^1.0.0" + range-parser "^1.0.3" + time-stamp "^2.0.0" + +webpack-dev-server@^2.4.5: + version "2.6.1" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-2.6.1.tgz#0b292a9da96daf80a65988f69f87b4166e5defe7" + dependencies: + ansi-html "0.0.7" + bonjour "^3.5.0" + chokidar "^1.6.0" + compression "^1.5.2" + connect-history-api-fallback "^1.3.0" + del "^3.0.0" + express "^4.13.3" + html-entities "^1.2.0" + http-proxy-middleware "~0.17.4" + internal-ip "^1.2.0" + loglevel "^1.4.1" + opn "4.0.2" + portfinder "^1.0.9" + selfsigned "^1.9.1" + serve-index "^1.7.2" + sockjs "0.3.18" + sockjs-client "1.1.4" + spdy "^3.4.1" + strip-ansi "^3.0.0" + supports-color "^3.1.1" + webpack-dev-middleware "^1.11.0" + yargs "^6.0.0" + +webpack-sources@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.0.1.tgz#c7356436a4d13123be2e2426a05d1dad9cbe65cf" + dependencies: + source-list-map "^2.0.0" + source-map "~0.5.3" + +webpack@^2.6.1: + version "2.7.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-2.7.0.tgz#b2a1226804373ffd3d03ea9c6bd525067034f6b1" + dependencies: + acorn "^5.0.0" + acorn-dynamic-import "^2.0.0" + ajv "^4.7.0" + ajv-keywords "^1.1.1" + async "^2.1.2" + enhanced-resolve "^3.3.0" + interpret "^1.0.0" + json-loader "^0.5.4" + json5 "^0.5.1" + loader-runner "^2.3.0" + loader-utils "^0.2.16" + memory-fs "~0.4.1" + mkdirp "~0.5.0" + node-libs-browser "^2.0.0" + source-map "^0.5.3" + supports-color "^3.1.0" + tapable "~0.2.5" + uglify-js "^2.8.27" + watchpack "^1.3.1" + webpack-sources "^1.0.1" + yargs "^6.0.0" + +websocket-driver@>=0.5.1: + version "0.6.5" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" + dependencies: + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.1.tgz#76899499c184b6ef754377c2dbb0cd6cb55d29e7" + +whatwg-fetch@>=0.10.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" + +whet.extend@~0.9.9: + version "0.9.9" + resolved "https://registry.yarnpkg.com/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1" + +which-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + +which@1, which@^1.2.9: + version "1.3.0" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.2.tgz#571e0f1b0604636ebc0dfc21b0339bbe31341710" + dependencies: + string-width "^1.0.2" + +widest-line@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-1.0.0.tgz#0c09c85c2a94683d0d7eaf8ee097d564bf0e105c" + dependencies: + string-width "^1.0.1" + +window-size@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" + +wordwrap@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" + +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + +write-file-atomic@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.1.0.tgz#1769f4b551eedce419f0505deae2e26763542d37" + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + slide "^1.1.5" + +write@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" + dependencies: + mkdirp "^0.5.1" + +xdg-basedir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" + +xelement@^1.0.16: + version "1.0.16" + resolved "https://registry.yarnpkg.com/xelement/-/xelement-1.0.16.tgz#900bb46c20fc2dffadff778a9d2dc36699d0ff7e" + dependencies: + sax "^1.2.1" + +xmlbuilder@8.2.2: + version "8.2.2" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-8.2.2.tgz#69248673410b4ba42e1a6136551d2922335aa773" + +xmldom@0.1.x: + version "0.1.27" + resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" + +xtend@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + +xtend@~2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-2.1.2.tgz#6efecc2a4dad8e6962c4901b337ce7ba87b5d28b" + dependencies: + object-keys "~0.4.0" + +y18n@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + +yargs-parser@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-4.2.1.tgz#29cceac0dc4f03c6c87b4a9f217dd18c9f74871c" + dependencies: + camelcase "^3.0.0" + +yargs-parser@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" + dependencies: + camelcase "^3.0.0" + +yargs-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" + dependencies: + camelcase "^4.1.0" + +yargs@^6.0.0: + version "6.6.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-6.6.0.tgz#782ec21ef403345f830a808ca3d513af56065208" + dependencies: + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^4.2.0" + +yargs@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" + dependencies: + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^5.0.0" + +yargs@^8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" + dependencies: + camelcase "^4.1.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^2.0.0" + read-pkg-up "^2.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1" + yargs-parser "^7.0.0" + +yargs@~3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" + dependencies: + camelcase "^1.0.2" + cliui "^2.1.0" + decamelize "^1.0.0" + window-size "0.1.0" + +yauzl@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" + dependencies: + fd-slicer "~1.0.1"