Merge commit '35febb2e2a3780c3338a2665fddea7dda28a17f4'
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 15 Jul 2019 21:50:56 +0000 (23:50 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 15 Jul 2019 21:50:56 +0000 (23:50 +0200)
42 files changed:
1  2 
docs/content/en/content-management/authors.md
docs/content/en/content-management/comments.md
docs/content/en/content-management/multilingual.md
docs/content/en/content-management/organization/index.md
docs/content/en/content-management/related.md
docs/content/en/content-management/syntax-highlighting.md
docs/content/en/contribute/themes.md
docs/content/en/functions/format.md
docs/content/en/functions/readfile.md
docs/content/en/functions/templates.Exists.md
docs/content/en/functions/title.md
docs/content/en/getting-started/configuration.md
docs/content/en/getting-started/directory-structure.md
docs/content/en/getting-started/installing.md
docs/content/en/getting-started/quick-start.md
docs/content/en/hosting-and-deployment/hosting-on-github.md
docs/content/en/hosting-and-deployment/hosting-on-render.md
docs/content/en/hugo-pipes/fingerprint.md
docs/content/en/news/0.14-relnotes/index.md
docs/content/en/news/0.52-relnotes/index.md
docs/content/en/showcase/arolla-cocoon/index.md
docs/content/en/showcase/bypasscensorship/bio.md
docs/content/en/showcase/bypasscensorship/featured.png
docs/content/en/showcase/bypasscensorship/index.md
docs/content/en/showcase/pharmaseal/bio.md
docs/content/en/templates/404.md
docs/content/en/templates/internal.md
docs/content/en/templates/introduction.md
docs/content/en/templates/lists.md
docs/content/en/templates/menu-templates.md
docs/content/en/templates/output-formats.md
docs/content/en/templates/rss.md
docs/content/en/templates/sitemap-template.md
docs/content/en/variables/hugo.md
docs/content/en/variables/menus.md
docs/content/en/variables/page.md
docs/layouts/shortcodes/imgproc.html
docs/resources/_gen/images/showcase/bypasscensorship/featured_hu3be69425780460f51f7c2367ed0f80c1_180903_1024x512_fill_catmullrom_top_2.png
docs/resources/_gen/images/showcase/bypasscensorship/featured_hu3be69425780460f51f7c2367ed0f80c1_180903_640x0_resize_catmullrom_2.png
docs/resources/_gen/images/showcase/bypasscensorship/featured_hu3be69425780460f51f7c2367ed0f80c1_180903_d94e4c803eac4491bc295665908df904.png
docs/themes/gohugoioTheme/layouts/_default/baseof.html
docs/themes/gohugoioTheme/package-lock.json

index 6584a1b1ccf1d18b364645a11c3872c988b2bd8a,0000000000000000000000000000000000000000..4cec5281ad38efdf3fd16eda020eb9e36aae85fa
mode 100644,000000..100644
--- /dev/null
@@@ -1,184 -1,0 +1,184 @@@
- This is can be done with the `.Social.URL` function. Its only parameter is the name of the social network as they are defined in the profile (e.g. `facebook`). Custom variables like `website` remain as they are.
 +---
 +title: Authors
 +linktitle: Authors
 +description:
 +date: 2016-08-22
 +publishdate: 2017-03-12
 +lastmod: 2017-03-12
 +keywords: [authors]
 +categories: ["content management"]
 +menu:
 +  docs:
 +    parent: "content-management"
 +    weight: 55
 +weight: 55    #rem
 +draft: true
 +aliases: [/content/archetypes/]
 +toc: true
 +comments: Before this page is published, need to also update both site- and page-level variables documentation.
 +---
 +
 +
 +
 +Larger sites often have multiple content authors. Hugo provides standardized author profiles to organize relationships between content and content creators for sites operating under a distributed authorship model.
 +
 +## Author Profiles
 +
 +You can create a profile containing metadata for each author on your website. These profiles have to be saved under `data/_authors/`. The filename of the profile will later be used as an identifier. This way Hugo can associate content with one or multiple authors. An author's profile can be defined in the JSON, YAML, or TOML format.
 +
 +### Example: Author Profile
 +
 +Let's suppose Alice Allison is a blogger. A simple unique identifier would be `alice`. Now, we have to create a file called `alice.toml` in the `data/_authors/` directory. The following example is the standardized template written in TOML:
 +
 +{{< code  file="data/_authors/alice.toml" >}}
 +givenName      = "Alice"   # or firstName as alias
 +familyName     = "Allison" # or lastName as alias
 +displayName    = "Alice Allison"
 +thumbnail      = "static/authors/alice-thumb.jpg"
 +image          = "static/authors/alice-full.jpg"
 +shortBio       = "My name is Alice and I'm a blogger."
 +bio            = "My name is Alice and I'm a blogger... some other stuff"
 +email          = "alice.allison@email.com"
 +weight         = 10
 +
 +[social]
 +    facebook   = "alice.allison"
 +    twitter    = "alice"
 +    website    = "www.example.com"
 +
 +[params]
 +    random     = "whatever you want"
 +{{< /code >}}
 +
 +All variables are optional but it's advised to fill all important ones (e.g. names and biography) because themes can vary in their usage.
 +
 +You can store files for the `thumbnail` and `image` attributes in the `static` folder. Then add the path to the photos relative to `static`; e.g., `/static/path/to/thumbnail.jpg`.
 +
 +`weight` allows you to define the order of an author in an `.Authors` list and can be accessed on list or via the `.Site.Authors` variable.
 +
 +The `social` section contains all the links to the social network accounts of an author. Hugo is able to generate the account links for the most popular social networks automatically. This way, you only have to enter your username. You can find a list of all supported social networks [here](#linking-social-network-accounts-automatically). All other variables, like `website` in the example above remain untouched.
 +
 +The `params` section can contain arbitrary data much like the same-named section in the config file. What it contains is up to you.
 +
 +## Associate Content Through Identifiers
 +
 +Earlier it was mentioned that content can be associated with an author through their corresponding identifier. In our case, blogger Alice has the identifier `alice`. In the front matter of a content file, you can create a list of identifiers and assign it to the `authors` variable. Here are examples for `alice` using YAML and TOML, respectively.
 +
 +```
 +---
 +title: Why Hugo is so Awesome
 +date: 2016-08-22T14:27:502:00
 +authors: ["alice"]
 +---
 +
 +Nothing to read here. Move along...
 +```
 +
 +```
 ++++
 +title = Why Hugo is so Awesome
 +date = "2016-08-22T14:27:502:00"
 +authors: ["alice"]
 ++++
 +
 +Nothing to read here. Move along...
 +```
 +
 +Future authors who might work on this blog post can append their identifiers to the `authors` array in the front matter as well.
 +
 +## Work with Templates
 +
 +After a successful setup it's time to give some credit to the authors by showing them on the website. Within the templates Hugo provides a list of the author's profiles if they are listed in the `authors` variable within the front matter.
 +
 +The list is accessible via the `.Authors` template variable. Printing all authors of a the blog post is straight forward:
 +
 +```
 +{{ range .Authors }}
 +    {{ .DisplayName }}
 +{{ end }}
 +=> Alice Allison
 +```
 +
 +Even if there are co-authors you may only want to show the main author. For this case you can use the `.Author` template variable **(note the singular form)**. The template variable contains the profile of the author that is first listed with his identifier in the front matter.
 +
 +{{% note %}}
 +You can find a list of all template variables to access the profile information in [Author Variables](/variables/authors/).
 +{{% /note %}}
 +
 +### Link Social Network Accounts
 +
 +As aforementioned, Hugo is able to generate links to profiles of the most popular social networks. The following social networks with their corrersponding identifiers are supported:  `github`, `facebook`, `twitter`, `pinterest`, `instagram`, `youtube` and `linkedin`.
 +
++This is can be done with the `.Social.URL` function. Its only parameter is the name of the social network as they are defined in the profile (e.g. `facebook`, `twitter`). Custom variables like `website` remain as they are.
 +
 +Most articles feature a small section with information about the author at the end. Let's create one containing the author's name, a thumbnail, a (summarized) biography and links to all social networks:
 +
 +{{< code file="layouts/partials/author-info.html" download="author-info.html" >}}
 +{{ with .Author }}
 +    <h3>{{ .DisplayName }}</h3>
 +    <img src="{{ .Thumbnail | absURL }}" alt="{{ .DisplayName }}">
 +    <p>{{ .ShortBio }}</p>
 +    <ul>
 +    {{ range $network, $username := .Social }}
 +        <li><a href="{{ $.Author.Social.URL $network }}">{{ $network }}</a></li>
 +    {{ end }}
 +    </ul>
 +{{ end }}
 +{{< /code >}}
 +
 +## Who Published What?
 +
 +That question can be answered with a list of all authors and another list containing all articles that they each have written. Now we have to translate this idea into templates. The [taxonomy][] feature allows us to logically group content based on information that they have in common; e.g. a tag or a category. Well, many articles share the same author, so this should sound familiar, right?
 +
 +In order to let Hugo know that we want to group content based on their author, we have to create a new taxonomy called `author` (the name corresponds to the variable in the front matter). Here is the snippet in a `config.yaml` and `config.toml`, respectively:
 +
 +```
 +taxonomies:
 +    author: authors
 +```
 +
 +```
 +[taxonomies]
 +    author = "authors"
 +```
 +
 +
 +### List All Authors
 +
 +In the next step we can create a template to list all authors of your website. Later, the list can be accessed at `www.example.com/authors/`. Create a new template in the `layouts/taxonomy/` directory called `authors.term.html`. This template will be exclusively used for this taxonomy.
 +
 +{{< code file="layouts/taxonomy/author.term.html" download="author.term.html" >}}
 +<ul>
 +{{ range $author, $v := .Data.Terms }}
 +    {{ $profile := $.Authors.Get $author }}
 +    <li>
 +        <a href="{{ printf "%s/%s/" $.Data.Plural $author | absURL }}">
 +            {{ $profile.DisplayName }} - {{ $profile.ShortBio }}
 +        </a>
 +    </li>
 +{{ end }}
 +</ul>
 +{{< /code >}}
 +
 +`.Data.Terms` contains the identifiers of all authors and we can range over it to create a list with all author names. The `$profile` variable gives us access to the profile of the current author. This allows you to generate a nice info box with a thumbnail, a biography and social media links, like at the [end of a blog post](#linking-social-network-accounts-automatically).
 +
 +### List Each Author's Publications
 +
 +Last but not least, we have to create the second list that contains all publications of an author. Each list will be shown in its own page and can be accessed at `www.example.com/authors/<IDENTIFIER>`. Replace `<IDENTIFIER>` with a valid author identifier like `alice`.
 +
 +The layout for this page can be defined in the template `layouts/taxonomy/author.html`.
 +
 +{{< code file="layouts/taxonomy/author.html" download="author.html" >}}
 +{{ range .Pages }}
 +    <h2><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
 +    <span>written by {{ .Author.DisplayName }}</span>
 +    {{ .Summary }}
 +{{ end }}
 +{{< /code >}}
 +
 +The example above generates a simple list of all posts written by a single author. Inside the loop you've access to the complete set of [page variables][pagevars]. Therefore, you can add additional information about the current posts like the publishing date or the tags.
 +
 +With a lot of content this list can quickly become very long. Consider to use the [pagination][] feature. It splits the list into smaller chunks and spreads them over multiple pages.
 +
 +[pagevars]: /variables/page/
 +[pagination]: /templates/pagination/
index dad5d0786d2822a6373ff8db75f6281a556f6fe6,0000000000000000000000000000000000000000..0034309f55d5a7d495b42e16e15adc49b4b63926
mode 100644,000000..100644
--- /dev/null
@@@ -1,86 -1,0 +1,87 @@@
 +---
 +title: Comments
 +linktitle: Comments
 +description: Hugo ships with an internal Disqus template, but this isn't the only commenting system that will work with your new Hugo website.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-03-09
 +keywords: [sections,content,organization]
 +categories: [project organization, fundamentals]
 +menu:
 +  docs:
 +    parent: "content-management"
 +    weight: 140
 +weight: 140   #rem
 +draft: false
 +aliases: [/extras/comments/]
 +toc: true
 +---
 +
 +Hugo ships with support for [Disqus](https://disqus.com/), a third-party service that provides comment and community capabilities to websites via JavaScript.
 +
 +Your theme may already support Disqus, but if not, it is easy to add to your templates via [Hugo's built-in Disqus partial][disquspartial].
 +
 +## Add Disqus
 +
 +Hugo comes with all the code you need to load Disqus into your templates. Before adding Disqus to your site, you'll need to [set up an account][disqussetup].
 +
 +### Configure Disqus
 +
 +Disqus comments require you set a single value in your [site's configuration file][configuration] like so:
 +
 +{{< code-toggle copy="false" >}}
 +disqusShortname = "yourdiscussshortname"
 +{{</ code-toggle >}}
 +
 +For many websites, this is enough configuration. However, you also have the option to set the following in the [front matter][] of a single content file:
 +
 +* `disqus_identifier`
 +* `disqus_title`
 +* `disqus_url`
 +
 +### Render Hugo's Built-in Disqus Partial Template
 +
 +Disqus has its own [internal template](https://gohugo.io/templates/internal/#disqus) available, to render it add the following code where you want comments to appear:
 +
 +```
 +{{ template "_internal/disqus.html" . }}
 +```
 +
 +## Comments Alternatives
 +
 +There are a few alternatives to commenting on static sites for those who do not want to use Disqus:
 +
 +* [Static Man](https://staticman.net/)
 +* [Talkyard](https://www.talkyard.io/blog-comments) (Open source, & serverless hosting)
 +* [txtpen](https://txtpen.github.io/hn/)
 +* [IntenseDebate](http://intensedebate.com/)
 +* [Graph Comment][]
 +* [Muut](http://muut.com/)
 +* [isso](http://posativ.org/isso/) (Self-hosted, Python)
 +    * [Tutorial on Implementing Isso with Hugo][issotutorial]
 +* [Utterances](https://utteranc.es/) (Open source, Github comments widget built on Github issues)
 +* [Remark](https://github.com/umputun/remark) (Open source, Golang, Easy to run docker)
++* [Commento](https://commento.io/) (Open Source, available as a service, local install, or docker image)
 +
 +<!-- I don't think this is worth including in the documentation since it seems that Steve is no longer supporting or developing this project. rdwatters - 2017-02-29.-->
 +<!-- * [Kaiju](https://github.com/spf13/kaiju) -->
 +
 +<!-- ## Kaiju
 +
 +[Kaiju](https://github.com/spf13/kaiju) is an open-source project started by [spf13](http://spf13.com/) (Hugo’s author) to bring easy and fast real time discussions to the web.
 +
 +Written using Go, Socket.io, and [MongoDB][], Kaiju is very fast and easy to deploy.
 +
 +It is in early development but shows promise. If you have interest, please help by contributing via pull request, [opening an issue in the Kaiju GitHub repository][kaijuissue], or [Tweeting about it][tweet]. Every bit helps. -->
 +
 +[configuration]: /getting-started/configuration/
 +[disquspartial]: /templates/partials/#disqus
 +[disqussetup]: https://disqus.com/profile/signup/
 +[forum]: https://discourse.gohugo.io
 +[front matter]: /content-management/front-matter/
 +[Graph Comment]: https://graphcomment.com/
 +[kaijuissue]: https://github.com/spf13/kaiju/issues/new
 +[issotutorial]: https://stiobhart.net/2017-02-24-isso-comments/
 +[partials]: /templates/partials/
 +[MongoDB]: https://www.mongodb.com/
 +[tweet]: https://twitter.com/spf13
index bd9bd97d789c70446d7e0002454212e63220b61b,0000000000000000000000000000000000000000..49565d948b1a44abba1582ac308e4519b5ac2870
mode 100644,000000..100644
--- /dev/null
@@@ -1,463 -1,0 +1,460 @@@
- Anything not defined in a `[languages]` block will fall back to the global value for that key (e.g., `copyright` for the English [`en`] language). This also works for `params`, as demonstrated with `help` above: you will get the value `Aide` in French and `Help` in all the languages without this parameter set.
 +---
 +title: Multilingual Mode
 +linktitle: Multilingual and i18n
 +description: Hugo supports the creation of websites with multiple languages side by side.
 +date: 2017-01-10
 +publishdate: 2017-01-10
 +lastmod: 2017-01-10
 +categories: [content management]
 +keywords: [multilingual,i18n, internationalization]
 +menu:
 +  docs:
 +    parent: "content-management"
 +    weight: 150
 +weight: 150   #rem
 +draft: false
 +aliases: [/content/multilingual/,/tutorials/create-a-multilingual-site/]
 +toc: true
 +---
 +
 +You should define the available languages in a `languages` section in your site configuration.
 +
 +> Also See [Hugo Multilingual Part 1: Content translation](https://regisphilibert.com/blog/2018/08/hugo-multilingual-part-1-managing-content-translation/)
 +
 +## Configure Languages
 +
 +The following is an example of a site configuration for a multilingual Hugo project:
 +
 +{{< code-toggle file="config" >}}
 +DefaultContentLanguage = "en"
 +copyright = "Everything is mine"
 +
 +[params]
 +[params.navigation]
 +help  = "Help"
 +
 +[languages]
 +[languages.en]
 +title = "My blog"
 +weight = 1
 +[languages.en.params]
 +linkedin = "https://linkedin.com/whoever"
 +
 +[languages.fr]
 +title = "Mon blogue"
 +weight = 2
 +[languages.fr.params]
 +linkedin = "https://linkedin.com/fr/whoever"
 +[languages.fr.params.navigation]
 +help  = "Aide"
 +{{< /code-toggle >}}
 +
- There are two ways to manage your content translation, both ensures each page is assigned a language and linked to its translations.
++Anything not defined in a `languages` block will fall back to the global value for that key (e.g., `copyright` for the English `en` language). This also works for `params`, as demonstrated witgh `help` above: You will get the value `Aide` in French and `Help` in all the languages without this parameter set.
 +
 +With the configuration above, all content, sitemap, RSS feeds, paginations,
 +and taxonomy pages will be rendered below `/` in English (your default content language) and then below `/fr` in French.
 +
 +When working with front matter `Params` in [single page templates][singles], omit the `params` in the key for the translation.
 +
 +`defaultContentLanguage` sets the project's default language. If not set, the default language will be `en`.
 +
 +If the default language needs to be rendererd below its own language code (`/en`) like the others, set `defaultContentLanguageInSubdir: true`.
 +
 +Only the obvious non-global options can be overridden per language. Examples of global options are `baseURL`, `buildDrafts`, etc.
 +
 +### Disable a Language
 +
 +You can disable one or more languages. This can be useful when working on a new translation.
 +
 +```toml
 +disableLanguages = ["fr", "ja"]
 +```
 +
 +Note that you cannot disable the default content language.
 +
 +We kept this as a standalone setting to make it easier to set via [OS environment](/getting-started/configuration/#configure-with-environment-variables):
 +
 +```bash
 +HUGO_DISABLELANGUAGES="fr ja" hugo
 +```
 +If you have already a list of disabled languages in `config.toml`, you can enable them in development like this:
 +
 +```bash
 +HUGO_DISABLELANGUAGES=" " hugo server
 +```
 +
 +
 +### Configure Multilingual Multihost
 +
 +From **Hugo 0.31** we support multiple languages in a multihost configuration. See [this issue](https://github.com/gohugoio/hugo/issues/4027) for details.
 +
 +This means that you can now configure a `baseURL` per `language`:
 +
 +
 +> If a `baseURL` is set on the `language` level, then all languages must have one and they must all be different.
 +
 +Example:
 +
 +{{< code-toggle file="config" >}}
 +[languages]
 +[languages.fr]
 +baseURL = "https://example.fr"
 +languageName = "Français"
 +weight = 1
 +title = "En Français"
 +
 +[languages.en]
 +baseURL = "https://example.com"
 +languageName = "English"
 +weight = 2
 +title = "In English"
 +{{</ code-toggle >}}
 +
 +With the above, the two sites will be generated into `public` with their own root:
 +
 +```bash
 +public
 +├── en
 +└── fr
 +```
 +
 +**All URLs (i.e `.Permalink` etc.) will be generated from that root. So the English home page above will have its `.Permalink` set to `https://example.com/`.**
 +
 +When you run `hugo server` we will start multiple HTTP servers. You will typlically see something like this in the console:
 +
 +```bash
 +Web Server is available at 127.0.0.1:1313 (bind address 127.0.0.1)
 +Web Server is available at 127.0.0.1:1314 (bind address 127.0.0.1)
 +Press Ctrl+C to stop
 +```
 +
 +Live reload and `--navigateToChanged` between the servers work as expected.
 +
 +### Taxonomies and Blackfriday
 +
 +Taxonomies and [Blackfriday configuration][config] can also be set per language:
 +
 +
 +{{< code-toggle file="config" >}}
 +[Taxonomies]
 +tag = "tags"
 +
 +[blackfriday]
 +angledQuotes = true
 +hrefTargetBlank = true
 +
 +[languages]
 +[languages.en]
 +weight = 1
 +title = "English"
 +[languages.en.blackfriday]
 +angledQuotes = false
 +
 +[languages.fr]
 +weight = 2
 +title = "Français"
 +[languages.fr.Taxonomies]
 +plaque = "plaques"
 +{{</ code-toggle >}}
 +
 +## Translate Your Content
 +
- The first file is assigned the english language and linked to the second.
- The second file is assigned the french language and linked to the first.
++There are two ways to manage your content translations. Both ensure each page is assigned a language and is linked to its counterpart translations.
 +
 +### Translation by filename
 +
 +Considering the following example:
 +
 +1. `/content/about.en.md`
 +2. `/content/about.fr.md`
 +
- Their language is __assigned__ according to the language code added as __suffix to the filename__. 
++The first file is assigned the English language and is linked to the second.
++The second file is assigned the French language and is linked to the first.
 +
- {{< note >}}
- If a file is missing any language code, it will be assigned the default language.
++Their language is __assigned__ according to the language code added as a __suffix to the filename__. 
 +
 +By having the same **path and base filename**, the content pieces are __linked__ together as translated pages.
-   nn:
 +
++{{< note >}}
++If a file has no language code, it will be assigned the default language.
 +{{</ note >}}
++
 +### Translation by content directory
 +
 +This system uses different content directories for each of the languages. Each language's content directory is set using the `contentDir` param.
 +
 +{{< code-toggle file="config" >}}
 +
 +languages:
 +  en:
 +    weight: 10
 +    languageName: "English"
 +    contentDir: "content/english"
- The value of `contentDir` can be any valid path, even absolute path references. The only restriction is that the content directories cannot overlap.
++  fr:
 +    weight: 20
 +    languageName: "Français"
 +    contentDir: "content/french"
 +
 +{{< /code-toggle >}}
 +
- The first file is assigned the english language and is linked to the second.
- <br>The second file is assigned the french language and is linked to the first.
++The value of `contentDir` can be any valid path -- even absolute path references. The only restriction is that the content directories cannot overlap.
 +
 +Considering the following example in conjunction with the configuration above: 
 +
 +1. `/content/english/about.md`
 +2. `/content/french/about.md`
 +
- Any pages sharing the same `translationKey`  set in front matter will be linked as translated pages regardless of basename or location.
++The first file is assigned the English language and is linked to the second.
++The second file is assigned the French language and is linked to the first.
 +
 +Their language is __assigned__ according to the content directory they are __placed__ in.
 +
 +By having the same **path and basename** (relative to their language content directory), the content pieces are __linked__ together as translated pages.
 +
 +### Bypassing default linking.
 +
- Because paths and filenames are used to handle linking, all translated pages, except for the language part, will be sharing the same url.
++Any pages sharing the same `translationKey` set in front matter will be linked as translated pages regardless of basename or location.
 +
 +Considering the following example:
 +
 +1. `/content/about-us.en.md`
 +2. `/content/om.nn.md`
 +3. `/content/presentation/a-propos.fr.md`
 +
 +```yaml
 +# set in all three pages
 +translationKey: "about"
 +```
 +
 +By setting the `translationKey` front matter param to `about` in all three pages, they will be __linked__ as translated pages.
 +
 +
 +### Localizing permalinks
 +
- For example, a french translation (`content/about.fr.md`) can have its own localized slug.
++Because paths and filenames are used to handle linking, all translated pages will share the same URL (apart from the language subdirectory).
 +
 +To localize the URLs, the [`slug`]({{< ref "/content-management/organization/index.md#slug" >}}) or [`url`]({{< ref "/content-management/organization/index.md#url" >}}) front matter param can be set in any of the non-default language file. 
 +
- At render, Hugo will build both `/about/` and `fr/a-propos/` while maintaning their translation linking.
++For example, a French translation (`content/about.fr.md`) can have its own localized slug.
 +
 +{{< code-toggle >}}
 +Title: A Propos
 +slug: "a-propos"
 +{{< /code-toggle >}}
 +
 +
- If using `url`, remember to include the language part as well: `fr/compagnie/a-propos/`.
++At render, Hugo will build both `/about/` and `/fr/a-propos/` while maintaining their translation linking.
++
 +{{% note %}}
- If, across the linked bundles, two or more files share the same basenname, only one will be included and chosen as follows:
++If using `url`, remember to include the language part as well: `/fr/compagnie/a-propos/`.
 +{{%/ note %}}
 +
 +### Page Bundles
 +
 +To avoid the burden of having to duplicate files, each Page Bundle inherits the resources of its linked translated pages' bundles except for the content files (markdown files, html files etc...).
 +
 +Therefore, from within a template, the page will have access to the files from all linked pages' bundles.
 +
- * File from current language Bundle, if present.
++If, across the linked bundles, two or more files share the same basename, only one will be included and chosen as follows:
 +
- Page Bundle's resources follow the same language assignement logic as content files, be it by filename (`image.jpg`, `image.fr.jpg`) or by directory (`english/about/header.jpg`, `french/about/header.jpg`).
++* File from current language bundle, if present.
 +* First file found across bundles by order of language `Weight`.
 +
 +{{% note %}}
-     {{ end}}
++Page Bundle resources follow the same language assignment logic as content files, both by filename (`image.jpg`, `image.fr.jpg`) and by directory (`english/about/header.jpg`, `french/about/header.jpg`).
 +{{%/ note %}}
 +
 +## Reference the Translated Content
 +
 +To create a list of links to translated content, use a template similar to the following:
 +
 +{{< code file="layouts/partials/i18nlist.html" >}}
 +{{ if .IsTranslated }}
 +<h4>{{ i18n "translations" }}</h4>
 +<ul>
 +    {{ range .Translations }}
 +    <li>
 +        <a href="{{ .Permalink }}">{{ .Lang }}: {{ .Title }}{{ if .IsPage }} ({{ i18n "wordCount" . }}){{ end }}</a>
 +    </li>
- The above can be put in a `partial` (i.e., inside `layouts/partials/`) and included in any template, be it for a [single content page][contenttemplate] or the [homepage][]. It will not print anything if there are no translations for a given page.
++    {{ end }}
 +</ul>
 +{{ end }}
 +{{< /code >}}
 +
- `.AllTranslations` on a `Page` can be used to list all translations, including itself. Called on the home page it can be used to build a language navigator:
++The above can be put in a `partial` (i.e., inside `layouts/partials/`) and included in any template, whether a [single content page][contenttemplate] or the [homepage][]. It will not print anything if there are no translations for a given page.
 +
 +The above also uses the [`i18n` function][i18func] described in the next section.
 +
 +### List All Available Languages
 +
- From **Hugo 0.31** you no longer need to use a valid language code. It _can be_ anything.
++`.AllTranslations` on a `Page` can be used to list all translations, including the page itself. On the home page it can be used to build a language navigator:
 +
 +
 +{{< code file="layouts/partials/allLanguages.html" >}}
 +<ul>
 +{{ range $.Site.Home.AllTranslations }}
 +<li><a href="{{ .Permalink }}">{{ .Language.LanguageName }}</a></li>
 +{{ end }}
 +</ul>
 +{{< /code >}}
 +
 +## Translation of Strings
 +
 +Hugo uses [go-i18n][] to support string translations. [See the project's source repository][go-i18n-source] to find tools that will help you manage your translation workflows.
 +
 +Translations are collected from the `themes/<THEME>/i18n/` folder (built into the theme), as well as translations present in `i18n/` at the root of your project. In the `i18n`, the translations will be merged and take precedence over what is in the theme folder. Language files should be named according to [RFC 5646][] with names such as `en-US.toml`, `fr.toml`, etc.
 +
 +{{% note %}}
- one = "One minute read"
- other = "{{.Count}} minutes read"
++From **Hugo 0.31** you no longer need to use a valid language code. It can be anything.
 +
 +See https://github.com/gohugoio/hugo/issues/3564
 +
 +{{% /note %}}
 +
 +From within your templates, use the `i18n` function like this:
 +
 +```
 +{{ i18n "home" }}
 +```
 +
 +This uses a definition like this one in `i18n/en-US.toml`:
 +
 +```
 +[home]
 +other = "Home"
 +```
 +
 +Often you will want to use to the page variables in the translations strings. To do that, pass on the "." context when calling `i18n`:
 +
 +```
 +{{ i18n "wordCount" . }}
 +```
 +
 +This uses a definition like this one in `i18n/en-US.toml`:
 +
 +```
 +[wordCount]
 +other = "This article has {{ .WordCount }} words."
 +```
 +An example of singular and plural form:
 +
 +```
 +[readingTime]
- At the time of this writing, Go does not yet have support for internationalized locales, but if you do some work, you can simulate it. For example, if you want to use French month names, you can add a data file like ``data/mois.yaml`` with this content:
++one = "One minute to read"
++other = "{{.Count}} minutes to read"
 +```
 +And then in the template:
 +
 +```
 +{{ i18n "readingTime" .ReadingTime }}
 +```
 +
 +## Customize Dates
 +
- ... then index the non-English date names in your templates like so:
++At the time of this writing, Go does not yet have support for internationalized locales for dates, but if you do some work, you can simulate it. For example, if you want to use French month names, you can add a data file like ``data/mois.yaml`` with this content:
 +
 +~~~yaml
 +1: "janvier"
 +2: "février"
 +3: "mars"
 +4: "avril"
 +5: "mai"
 +6: "juin"
 +7: "juillet"
 +8: "août"
 +9: "septembre"
 +10: "octobre"
 +11: "novembre"
 +12: "décembre"
 +~~~
 +
- <time class="post-date" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHTML }}">
++...then index the non-English date names in your templates like so:
 +
 +~~~html
- You can define your menus for each language independently. The [creation of a menu][menus] works analogous to earlier versions of Hugo, except that they have to be defined in their language-specific block in the configuration file:
++<time class="post-date" datetime="{{ .Date.Format '2006-01-02T15:04:05Z07:00' | safeHTML }}">
 +  Article publié le {{ .Date.Day }} {{ index $.Site.Data.mois (printf "%d" .Date.Month) }} {{ .Date.Year }} (dernière modification le {{ .Lastmod.Day }} {{ index $.Site.Data.mois (printf "%d" .Lastmod.Month) }} {{ .Lastmod.Year }})
 +</time>
 +~~~
 +
 +This technique extracts the day, month and year by specifying ``.Date.Day``, ``.Date.Month``, and ``.Date.Year``, and uses the month number as a key, when indexing the month name data file.
 +
 +## Menus
 +
- The rendering of the main navigation works as usual. `.Site.Menus` will just contain the menu of the current language. Pay attention to the generation of the menu links. `absLangURL` takes care that you link to the correct locale of your website. Otherwise, both menu entries would link to the English version as the default content language that resides in the root directory.
++You can define your menus for each language independently. Creating multilingual menus works just like [creating regular menus][menus], except they're defined in language-specific blocks in the configuration file:
 +
 +```
 +defaultContentLanguage = "en"
 +
 +[languages.en]
 +weight = 0
 +languageName = "English"
 +
 +[[languages.en.menu.main]]
 +url    = "/"
 +name   = "Home"
 +weight = 0
 +
 +
 +[languages.de]
 +weight = 10
 +languageName = "Deutsch"
 +
 +[[languages.de.menu.main]]
 +url    = "/"
 +name   = "Startseite"
 +weight = 0
 +```
 +
- Hugo will generate your website with these missing translation placeholders. It might not be suited for production environments.
++The rendering of the main navigation works as usual. `.Site.Menus` will just contain the menu in the current language. Note that `absLangURL` below will link to the correct locale of your website. Without it, menu entries in all languages would link to the English version, since it's the default content language that resides in the root directory.
 +
 +```
 +<ul>
 +    {{- $currentPage := . -}}
 +    {{ range .Site.Menus.main -}}
 +    <li class="{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}">
 +        <a href="{{ .URL | absLangURL }}">{{ .Name }}</a>
 +    </li>
 +    {{- end }}
 +</ul>
 +
 +```
 +
 +## Missing Translations
 +
 +If a string does not have a translation for the current language, Hugo will use the value from the default language. If no default value is set, an empty string will be shown.
 +
 +While translating a Hugo website, it can be handy to have a visual indicator of missing translations. The [`enableMissingTranslationPlaceholders` configuration option][config] will flag all untranslated strings with the placeholder `[i18n] identifier`, where `identifier` is the id of the missing translation.
 +
 +{{% note %}}
- * Be constructed with
-     * The [`relLangURL` template function][rellangurl] or the [`absLangURL` template function][abslangurl] **OR**
-     * Prefixed with `{{ .LanguagePrefix }}`
++Hugo will generate your website with these missing translation placeholders. It might not be suitable for production environments.
 +{{% /note %}}
 +
 +For merging of content from other languages (i.e. missing content translations), see [lang.Merge](/functions/lang.merge/).
 +
 +To track down missing translation strings, run Hugo with the `--i18n-warnings` flag:
 +
 +```
 + hugo --i18n-warnings | grep i18n
 +i18n|MISSING_TRANSLATION|en|wordCount
 +```
 +
 +## Multilingual Themes support
 +
 +To support Multilingual mode in your themes, some considerations must be taken for the URLs in the templates. If there is more than one language, URLs must meet the following criteria:
 +
 +* Come from the built-in `.Permalink` or `.RelPermalink`
- If there is more than one language defined, the `LanguagePrefix` variable will equal `/en` (or whatever your `CurrentLanguage` is). If not enabled, it will be an empty string and is therefore harmless for single-language Hugo websites.
++* Be constructed with the [`relLangURL` template function][rellangurl] or the [`absLangURL` template function][abslangurl] **OR** be prefixed with `{{ .LanguagePrefix }}`
 +
++If there is more than one language defined, the `LanguagePrefix` variable will equal `/en` (or whatever your `CurrentLanguage` is). If not enabled, it will be an empty string (and is therefore harmless for single-language Hugo websites).
 +
 +[abslangurl]: /functions/abslangurl
 +[config]: /getting-started/configuration/
 +[contenttemplate]: /templates/single-page-templates/
 +[go-i18n-source]: https://github.com/nicksnyder/go-i18n
 +[go-i18n]: https://github.com/nicksnyder/go-i18n
 +[homepage]: /templates/homepage/
 +[i18func]: /functions/i18n/
 +[menus]: /content-management/menus/
 +[rellangurl]: /functions/rellangurl
 +[RFC 5646]: https://tools.ietf.org/html/rfc5646
 +[singles]: /templates/single-page-templates/
index e9ae91b57642d41ee26792516e2d111210547249,0000000000000000000000000000000000000000..c12e07c261ed6add521058d2f3c5a58958cd78cd
mode 100644,000000..100644
--- /dev/null
@@@ -1,240 -1,0 +1,240 @@@
- The following demonstrates the relationships between your content organization and the output URL structure for your Hugo website when it renders. These examples assume you are [using pretty URLs][pretty], which is the default behavior for Hugo. The examples also assume a key-value of `baseurl = "https://example.com"` in your [site's configuration file][config].
 +---
 +title: Content Organization
 +linktitle: Organization
 +description: Hugo assumes that the same structure that works to organize your source content is used to organize the rendered site.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-01
 +categories: [content management,fundamentals]
 +keywords: [sections,content,organization,bundle,resources]
 +menu:
 +  docs:
 +    parent: "content-management"
 +    weight: 10
 +weight: 10    #rem
 +draft: false
 +aliases: [/content/sections/]
 +toc: true
 +---
 +
 +## Page Bundles
 +
 +Hugo `0.32` announced page-relative images and other resources packaged into `Page Bundles`.
 +
 +These terms are connected, and you also need to read about [Page Resources]({{< relref "/content-management/page-resources" >}}) and [Image Processing]({{< relref "/content-management/image-processing" >}}) to get the full picture.
 +
 +{{% imgproc 1-featured Resize "300x" %}}
 +The illustration shows 3 bundles. Note that the home page bundle cannot contain other content pages, but other files (images etc.) are fine.
 +{{% /imgproc %}}
 +
 +
 +{{% note %}}
 +The bundle documentation is **work in progress**. We will publish more comprehensive docs about this soon.
 +{{% /note %}}
 +
 +
 +# Organization of Content Source
 +
 +
 +In Hugo, your content should be organized in a manner that reflects the rendered website.
 +
 +While Hugo supports content nested at any level, the top levels (i.e. `content/<DIRECTORIES>`) are special in Hugo and are considered the content type used to determine layouts etc. To read more about sections, including how to nest them, see [sections][].
 +
 +Without any additional configuration, the following will just work:
 +
 +```
 +.
 +└── content
 +    └── about
 +    |   └── _index.md  // <- https://example.com/about/
 +    ├── posts
 +    |   ├── firstpost.md   // <- https://example.com/posts/firstpost/
 +    |   ├── happy
 +    |   |   └── ness.md  // <- https://example.com/posts/happy/ness/
 +    |   └── secondpost.md  // <- https://example.com/posts/secondpost/
 +    └── quote
 +        ├── first.md       // <- https://example.com/quote/first/
 +        └── second.md      // <- https://example.com/quote/second/
 +```
 +
 +## Path Breakdown in Hugo
 +
 +
++The following demonstrates the relationships between your content organization and the output URL structure for your Hugo website when it renders. These examples assume you are [using pretty URLs][pretty], which is the default behavior for Hugo. The examples also assume a key-value of `baseURL = "https://example.com"` in your [site's configuration file][config].
 +
 +### Index Pages: `_index.md`
 +
 +`_index.md` has a special role in Hugo. It allows you to add front matter and content to your [list templates][lists]. These templates include those for [section templates][], [taxonomy templates][], [taxonomy terms templates][], and your [homepage template][].
 +
 +{{% note %}}
 +**Tip:** You can get a reference to the content and metadata in `_index.md` using the [`.Site.GetPage` function](/functions/getpage/).
 +{{% /note %}}
 +
 +You can keep one `_index.md` for your homepage and one in each of your content sections, taxonomies, and taxonomy terms. The following shows typical placement of an `_index.md` that would contain content and front matter for a `posts` section list page on a Hugo website:
 +
 +
 +```
 +.         url
 +.       ⊢--^-⊣
 +.        path    slug
 +.       ⊢--^-⊣⊢---^---⊣
 +.           filepath
 +.       ⊢------^------⊣
 +content/posts/_index.md
 +```
 +
 +At build, this will output to the following destination with the associated values:
 +
 +```
 +
 +                     url ("/posts/")
 +                    ⊢-^-⊣
 +       baseurl      section ("posts")
 +⊢--------^---------⊣⊢-^-⊣
 +        permalink
 +⊢----------^-------------⊣
 +https://example.com/posts/index.html
 +```
 +
 +The [sections][] can be nested as deeply as you need. The important part to understand is, that to make the section tree fully navigational, at least the lower-most section needs a content file. (i.e. `_index.md`).
 +
 +
 +### Single Pages in Sections
 +
 +Single content files in each of your sections are going to be rendered as [single page templates][singles]. Here is an example of a single `post` within `posts`:
 +
 +
 +```
 +                   path ("posts/my-first-hugo-post.md")
 +.       ⊢-----------^------------⊣
 +.      section        slug
 +.       ⊢-^-⊣⊢--------^----------⊣
 +content/posts/my-first-hugo-post.md
 +```
 +
 +At the time Hugo builds your site, the content will be output to the following destination:
 +
 +```
 +
 +                               url ("/posts/my-first-hugo-post/")
 +                   ⊢------------^----------⊣
 +       baseurl     section     slug
 +⊢--------^--------⊣⊢-^--⊣⊢-------^---------⊣
 +                 permalink
 +⊢--------------------^---------------------⊣
 +https://example.com/posts/my-first-hugo-post/index.html
 +```
 +
 +
 +## Paths Explained
 +
 +The following concepts will provide more insight into the relationship between your project's organization and the default behaviors of Hugo when building the output website.
 +
 +### `section`
 +
 +A default content type is determined by a piece of content's section. `section` is determined by the location within the project's `content` directory. `section` *cannot* be specified or overridden in front matter.
 +
 +### `slug`
 +
 +A content's `slug` is either `name.extension` or `name/`. The value for `slug` is determined by
 +
 +* the name of the content file (e.g., `lollapalooza.md`) OR
 +* front matter overrides
 +
 +### `path`
 +
 +A content's `path` is determined by the section's path to the file. The file `path`
 +
 +* is based on the path to the content's location AND
 +* does not include the slug
 +
 +### `url`
 +
 +The `url` is the relative URL for the piece of content. The `url`
 +
 +* is based on the content's location within the directory structure OR
 +* is defined in front matter and *overrides all the above*
 +
 +## Override Destination Paths via Front Matter
 +
 +Hugo believes that you organize your content with a purpose. The same structure that works to organize your source content is used to organize the rendered site. As displayed above, the organization of the source content will be mirrored in the destination.
 +
 +There are times where you may need more control over your content. In these cases, there are fields that can be specified in the front matter to determine the destination of a specific piece of content.
 +
 +The following items are defined in this order for a specific reason: items explained further down in the list will override earlier items, and not all of these items can be defined in front matter:
 +
 +### `filename`
 +
 +This isn't in the front matter, but is the actual name of the file minus the extension. This will be the name of the file in the destination (e.g., `content/posts/my-post.md` becomes `example.com/posts/my-post/`).
 +
 +### `slug`
 +
 +When defined in the front matter, the `slug` can take the place of the filename for the destination.
 +
 +{{< code file="content/posts/old-post.md" >}}
 +---
 +title: New Post
 +slug: "new-post"
 +---
 +{{< /code >}}
 +
 +This will render to the following destination according to Hugo's default behavior:
 +
 +```
 +example.com/posts/new-post/
 +```
 +
 +### `section`
 +
 +`section` is determined by a content's location on disk and *cannot* be specified in the front matter. See [sections][] for more information.
 +
 +### `type`
 +
 +A content's `type` is also determined by its location on disk but, unlike `section`, it *can* be specified in the front matter. See [types][]. This can come in especially handy when you want a piece of content to render using a different layout. In the following example, you can create a layout at `layouts/new/mylayout.html` that Hugo will use to render this piece of content, even in the midst of many other posts.
 +
 +{{< code file="content/posts/my-post.md" >}}
 +---
 +title: My Post
 +type: new
 +layout: mylayout
 +---
 +{{< /code >}}
 +<!-- See https://discourse.gohugo.io/t/path-not-works/6387 -->
 +<!-- ### `path`-->
 +
 +<!--`path` can be provided in the front matter. This will replace the actual path to the file on disk. Destination will create the destination with the same path, including the section. -->
 +
 +### `url`
 +
 +A complete URL can be provided. This will override all the above as it pertains to the end destination. This must be the path from the baseURL (starting with a `/`). `url` will be used exactly as it provided in the front matter and will ignore the `--uglyURLs` setting in your site configuration:
 +
 +{{< code file="content/posts/old-url.md" >}}
 +---
 +title: Old URL
 +url: /blog/new-url/
 +---
 +{{< /code >}}
 +
 +Assuming your `baseURL` is [configured][config] to `https://example.com`, the addition of `url` to the front matter will make `old-url.md` render to the following destination:
 +
 +```
 +https://example.com/blog/new-url/
 +```
 +
 +You can see more information on how to control output paths in [URL Management][urls].
 +
 +[config]: /getting-started/configuration/
 +[formats]: /content-management/formats/
 +[front matter]: /content-management/front-matter/
 +[getpage]: /functions/getpage/
 +[homepage template]: /templates/homepage/
 +[homepage]: /templates/homepage/
 +[lists]: /templates/lists/
 +[pretty]: /content-management/urls/#pretty-urls
 +[section templates]: /templates/section-templates/
 +[sections]: /content-management/sections/
 +[singles]: /templates/single-page-templates/
 +[taxonomy templates]: /templates/taxonomy-templates/
 +[taxonomy terms templates]: /templates/taxonomy-templates/
 +[types]: /content-management/types/
 +[urls]: /content-management/urls/
index e87aecca48082e14f69cf13538244aa8a135df8d,0000000000000000000000000000000000000000..640cb04c0f44a1bb15f2d462d04220c1c7370c7d
mode 100644,000000..100644
--- /dev/null
@@@ -1,135 -1,0 +1,135 @@@
- Hugo uses a set of factors to identify a page's related content based on Front Matter parameters. This can be tuned to the desired set of indices and parameters or left to Hugo's default [Related Content configuration](#configure-related-content). 
 +---
 +title: Related Content
 +description: List related content in "See Also" sections.
 +date: 2017-09-05
 +categories: [content management]
 +keywords: [content]
 +menu:
 +  docs:
 +    parent: "content-management"
 +    weight: 40
 +weight: 30
 +draft: false
 +aliases: [/content/related/,/related/]
 +toc: true
 +---
 +
 +
- To list up to 5 related pages (which share the same _date_ or _keyword_ parameters) is as simple as including something similar to this partial in your single page template: 
++Hugo uses a set of factors to identify a page's related content based on Front Matter parameters. This can be tuned to the desired set of indices and parameters or left to Hugo's default [Related Content configuration](#configure-related-content).
 +
 +## List Related Content
 +
 +
- Returns a collection of pages related together by a set of indices and their match. 
++To list up to 5 related pages (which share the same _date_ or _keyword_ parameters) is as simple as including something similar to this partial in your single page template:
 +
 +{{< code file="layouts/partials/related.html" >}}
 +{{ $related := .Site.RegularPages.Related . | first 5 }}
 +{{ with $related }}
 +<h3>See Also</h3>
 +<ul>
 +      {{ range . }}
 +      <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
 +      {{ end }}
 +</ul>
 +{{ end }}
 +{{< /code >}}
 +
 +### Methods
 +
 +Here is the list of "Related" methods available on a page collection such `.RegularPages`.
 +
 +#### .Related PAGE
 +Returns a collection of pages related the given one.
 +
 +```
 +{{ $related := .Site.RegularPages.Related . }}
 +```
 +
 +#### .RelatedIndices PAGE INDICE1 [INDICE2 ...]
 +Returns a collection of pages related to a given one restricted to a list of indices.
 +
 +```
 +{{ $related := .Site.RegularPages.RelatedIndices . "tags" "date" }}
 +```
 +
 +#### .RelatedTo KEYVALS [KEYVALS2 ...]
- In order to build those set and pass them as argument, one must use the `keyVals` function where the first agrument would be the `indice` and the consective ones its potential `matches`.
++Returns a collection of pages related together by a set of indices and their match.
 +
- :  The index name. This value maps directly to a page param. Hugo supports string values (`author` in the example) and lists (`tags`, `keywords` etc.) and time and date objects. 
++In order to build those set and pass them as argument, one must use the `keyVals` function where the first argument would be the `indice` and the consective ones its potential `matches`.
 +
 +```
 +{{ $related := .Site.RegularPages.RelatedTo ( keyVals "tags" "hugo" "rocks")  ( keyVals "date" .Date ) }}
 +```
 +
 +{{% note %}}
 +Read [this blog article](https://regisphilibert.com/blog/2018/04/hugo-optmized-relashionships-with-related-content/) for a great explanation of more advanced usage of this feature.
 +{{% /note %}}
 +
 +## Configure Related Content
 +Hugo provides a sensible default configuration of Related Content, but you can fine-tune this in your configuration, on the global or language level if needed.
 +
 +### Default configuration
 +
 +Without any `related` configuration set on the project, Hugo's Related Content methods will use the following.
 +
 +```yaml
 +related:
 +  threshold: 80
 +  includeNewer: false
 +  toLower: false
 +  indices:
 +  - name: keywords
 +    weight: 100
 +  - name: date
 +    weight: 10
 +```
 +
 +Custom configuration should be set using the same syntax.
 +
 +{{% note %}}
 +If you add a `related` config section, you need to add a complete configuration. It is not possible to just set, say, `includeNewer` and use the rest  from the Hugo defaults.
 +{{% /note %}}
 +
 +### Top Level Config Options
 +
 +threshold
 +:  A value between 0-100. Lower value will give more, but maybe not so relevant, matches.
 +
 +includeNewer
 +:  Set to true to include **pages newer than the current page** in the related content listing. This will mean that the output for older posts may change as new related content gets added.
 +
 +toLower
 +: Set to true to lower case keywords in both the indexes and the queries. This may give more accurate results at a slight performance penalty. Note that this can also be set per index.
 +
 +### Config Options per Index
 +
 +name
- **Fast is Hugo's middle name** and we would not have released this feature had it not been blistering fast. 
++:  The index name. This value maps directly to a page param. Hugo supports string values (`author` in the example) and lists (`tags`, `keywords` etc.) and time and date objects.
 +
 +weight
 +: An integer weight that indicates _how important_ this parameter is relative to the other parameters.  It can be 0, which has the effect of turning this index off, or even negative. Test with different values to see what fits your content best.
 +
 +pattern
 +: This is currently only relevant for dates. When listing related content, we may want to list content that is also close in time. Setting "2006" (default value for date indexes) as the pattern for a date index will add weight to pages published in the same year. For busier blogs, "200601" (year and month) may be a better default.
 +
 +toLower
 +: See above.
 +
 +## Performance Considerations
 +
- Scott S. Lowe removed the "Related Content" section built using the `intersect` template function on tags, and the build time dropped from 30 seconds to less than 2 seconds on his 1700 content page sized blog. 
++**Fast is Hugo's middle name** and we would not have released this feature had it not been blistering fast.
 +
 +This feature has been in the back log and requested by many for a long time. The development got this recent kick start from this Twitter thread:
 +
 +{{< tweet 898398437527363585 >}}
 +
++Scott S. Lowe removed the "Related Content" section built using the `intersect` template function on tags, and the build time dropped from 30 seconds to less than 2 seconds on his 1700 content page sized blog.
 +
 +He should now be able to add an improved version of that "Related Content" section without giving up the fast live-reloads. But it's worth noting that:
 +
 +* If you don't use any of the `Related` methods, you will not use the Relate Content feature, and performance will be the same as before.
 +* Calling `.RegularPages.Related` etc. will create one inverted index, also sometimes named posting list, that will be reused for any lookups in that same page collection. Doing that in addition to, as an example, calling `.Pages.Related` will work as expected, but will create one additional inverted index. This should still be very fast, but worth having in mind, especially for bigger sites.
 +
 +{{% note %}}
 +We currently do not index **Page content**. We thought we would release something that will make most people happy before we start solving [Sherlock's last case](https://github.com/joearms/sherlock).
 +{{% /note %}}
index ea2db4650aa48d166ae15e25501c727000f7e4c8,0000000000000000000000000000000000000000..2ee7cf8f4935b5d6aedea816fed207cb01a279e4
mode 100644,000000..100644
--- /dev/null
@@@ -1,199 -1,0 +1,199 @@@
- From Hugo 0.28, the default syntax hightlighter in Hugo is [Chroma](https://github.com/alecthomas/chroma); it is built in Go and is really, really fast -- and for the most important parts compatible with Pygments.
 +---
 +title: Syntax Highlighting
 +description: Hugo comes with really fast syntax highlighting from Chroma.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +keywords: [highlighting,pygments,chroma,code blocks,syntax]
 +categories: [content management]
 +menu:
 +  docs:
 +    parent: "content-management"
 +    weight: 300
 +weight: 20
 +sections_weight: 20
 +draft: false
 +aliases: [/extras/highlighting/,/extras/highlight/,/tools/syntax-highlighting/]
 +toc: true
 +---
 +
++From Hugo 0.28, the default syntax highlighter in Hugo is [Chroma](https://github.com/alecthomas/chroma); it is built in Go and is really, really fast -- and for the most important parts compatible with Pygments.
 +
 +If you want to continue to use Pygments (see below), set `pygmentsUseClassic=true` in your site config.
 +
 +The example below shows a simple code snippet from the Hugo source highlighted with the `highlight` shortcode. Note that the gohugo.io site is generated with `pygmentsUseClasses=true` (see [Generate Syntax Highlighter CSS](#generate-syntax-highlighter-css)).
 +
 +* `linenos=inline` or `linenos=table` (`table` will give copy-and-paste friendly code blocks) turns on line numbers.
 +* `hl_lines` lists a set of line numbers or line number ranges to be highlighted. Note that the hyphen range syntax is only supported for Chroma.
 +* `linenostart=199` starts the line number count from 199.
 +
 +With that, this:
 +
 +```
 +{{</* highlight go "linenos=table,hl_lines=8 15-17,linenostart=199" */>}}
 +// ... code
 +{{</* / highlight */>}}
 +```
 +
 +Gives this:
 +
 +{{< highlight go "linenos=table,hl_lines=8 15-17,linenostart=199" >}}
 +// GetTitleFunc returns a func that can be used to transform a string to
 +// title case.
 +//
 +// The supported styles are
 +//
 +// - "Go" (strings.Title)
 +// - "AP" (see https://www.apstylebook.com/)
 +// - "Chicago" (see http://www.chicagomanualofstyle.org/home.html)
 +//
 +// If an unknown or empty style is provided, AP style is what you get.
 +func GetTitleFunc(style string) func(s string) string {
 +  switch strings.ToLower(style) {
 +  case "go":
 +    return strings.Title
 +  case "chicago":
 +    tc := transform.NewTitleConverter(transform.ChicagoStyle)
 +    return tc.Title
 +  default:
 +    tc := transform.NewTitleConverter(transform.APStyle)
 +    return tc.Title
 +  }
 +}
 +{{< / highlight >}}
 +
 +
 +## Configure Syntax Highlighter
 +To make the transition from Pygments to Chroma seamless, they share a common set of configuration options:
 +
 +pygmentsOptions
 +:  A comma separated list of options. See below for a full list.
 +
 +pygmentsCodefences
 +: Set to true to enable syntax highlighting in code fences with a language tag in markdown (see below for an example).
 +
 +pygmentsStyle
 +: The style of code highlighting. Note that this option is not
 +  relevant when `pygmentsUseClasses` is set.
 +
 +  Syntax highlighting galleries:
 +  **Chroma** ([short snippets](https://xyproto.github.io/splash/docs/all.html),
 +  [long snippets](https://xyproto.github.io/splash/docs/longer/all.html)),
 +  [Pygments](https://help.farbox.com/pygments.html)
 +
 +pygmentsUseClasses
 +: Set to `true` to use CSS classes to format your highlighted code. See [Generate Syntax Highlighter CSS](#generate-syntax-highlighter-css).
 +
 +pygmentsCodefencesGuessSyntax
 +: Set to `true` to try to do syntax highlighting on code fenced blocks in markdown without a language tag.
 +
 +pygmentsUseClassic
 +: Set to true to use Pygments instead of the much faster Chroma.
 +
 +### Options
 +
 +`pygmentsOptions` can be set either in site config or overridden per code block in the Highlight shortcode or template func.
 +
 +noclasses
 +: Use inline style.
 +
 +linenos
 +: For Chroma, any value in this setting will print line numbers. Pygments has some more fine grained control.
 +
 +linenostart
 +: Start the line numbers from this value (default is 1).
 +
 +
 +hl_lines
 +: Highlight a space separated list of line numbers. For Chroma, you can provide a list of ranges, i.e. "3-8 10-20".
 +
 +
 +The full set of supported options for Pygments is: `encoding`, `outencoding`, `nowrap`, `full`, `title`, `style`, `noclasses`, `classprefix`, `cssclass`, `cssstyles`, `prestyles`, `linenos`, `hl_lines`, `linenostart`, `linenostep`, `linenospecial`, `nobackground`, `lineseparator`, `lineanchors`, `linespans`, `anchorlinenos`, `startinline`. See the [Pygments HTML Formatter Documentation](http://pygments.org/docs/formatters/#HtmlFormatter) for details.
 +
 +
 +## Generate Syntax Highlighter CSS
 +
 +If you run with `pygmentsUseClasses=true` in your site config, you need a style sheet.
 +
 +You can generate one with Hugo:
 +
 +```bash
 +hugo gen chromastyles --style=monokai > syntax.css
 +```
 +
 +Run `hugo gen chromastyles -h` for more options. See https://help.farbox.com/pygments.html for a gallery of available styles.
 +
 +
 +## Highlight Shortcode
 +
 +Highlighting is carried out via the [built-in shortcode](/content-management/shortcodes/) `highlight`. `highlight` takes exactly one required parameter for the programming language to be highlighted and requires a closing shortcode. Note that `highlight` is *not* used for client-side javascript highlighting.
 +
 +### Example `highlight` Shortcode
 +
 +{{< code file="example-highlight-shortcode-input.md" >}}
 +{{</* highlight html */>}}
 +<section id="main">
 +  <div>
 +    <h1 id="title">{{ .Title }}</h1>
 +    {{ range .Pages }}
 +      {{ .Render "summary"}}
 +    {{ end }}
 +  </div>
 +</section>
 +{{</* /highlight */>}}
 +{{< /code >}}
 +
 +
 +
 +## Highlight Template Func
 +
 +See [Highlight](/functions/highlight/).
 +
 +## Highlight in Code Fences
 +
 +It is also possible to add syntax highlighting with GitHub flavored code fences. To enable this, set the `pygmentsCodeFences` to `true` in Hugo's [configuration file](/getting-started/configuration/);
 +
 +````
 +```go-html-template
 +<section id="main">
 +  <div>
 +    <h1 id="title">{{ .Title }}</h1>
 +    {{ range .Pages }}
 +      {{ .Render "summary"}}
 +    {{ end }}
 +  </div>
 +</section>
 +```
 +````
 +
 +## List of Chroma Highlighting Languages
 +
 +The full list of Chroma lexers and their aliases (which is the identifier used in the `highlight` template func or when doing highlighting in code fences):
 +
 +{{< chroma-lexers >}}
 +
 +## Highlight with Pygments Classic
 +
 +If you for some reason don't want to use the built-in Chroma highlighter, you can set `pygmentsUseClassic=true` in your config and add Pygments to your path.
 +
 +{{% note "Disclaimers on Pygments" %}}
 +* Pygments is relatively slow and _causes a performance hit when building your site_, but Hugo has been designed to cache the results to disk.
 +* The caching can be turned off by setting the `--ignoreCache` flag to `true`.
 +* The languages available for highlighting depend on your Pygments installation.
 +{{% /note %}}
 +
 +If you have never worked with Pygments before, here is a brief primer:
 +
 ++ Install Python from [python.org](https://www.python.org/downloads/). Version 2.7.x is already sufficient.
 ++ Run `pip install Pygments` in order to install Pygments. Once installed, Pygments gives you a command `pygmentize`. Make sure it sits in your PATH; otherwise, Hugo will not be able to find and use it.
 +
 +On Debian and Ubuntu systems, you may also install Pygments by running `sudo apt-get install python3-pygments`.
 +
 +
 +
 +[Prism]: http://prismjs.com
 +[prismdownload]: http://prismjs.com/download.html
 +[Highlight.js]: http://highlightjs.org/
 +[Rainbow]: http://craig.is/making/rainbows
 +[Syntax Highlighter]: http://alexgorbatchev.com/SyntaxHighlighter/
 +[Google Prettify]: https://github.com/google/code-prettify
 +[Yandex]: http://yandex.ru/
index 5ec244fe74b7229ec0c97512c1a3196fbf516f82,0000000000000000000000000000000000000000..f36dbb126c6dd944a0930505904795ee2e050818
mode 100644,000000..100644
--- /dev/null
@@@ -1,135 -1,0 +1,135 @@@
- [themeissuenew]: https://github.com/gohugoio/hugoThemes/issues/new
 +---
 +title: Add Your Hugo Theme to the Showcase
 +linktitle: Themes
 +description: If you've built a Hugo theme and want to contribute back to the Hugo Community, add your theme to the Hugo Showcase.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-27
 +categories: [contribute]
 +keywords: [contribute,themes,design]
 +authors: [digitalcraftsman]
 +menu:
 +  docs:
 +    parent: "contribute"
 +    weight: 30
 +weight: 30
 +sections_weight: 30
 +draft: false
 +aliases: [/contribute/theme/]
 +wip: true
 +toc: true
 +---
 +
 +A collection of all themes created by the Hugo community, including screenshots and demos, can be found at <https://themes.gohugo.io>. Every theme in this list will automatically be added to the theme site. Theme updates aren't scheduled but usually happen at least once a week.
 +
 +## Adding a theme to the list
 +
 +1. Create your theme using `hugo new theme <THEMENAME>`;
 +2. Test your theme against <https://github.com/gohugoio/hugoBasicExample> \*
 +3. Add a `theme.toml` file to the root of the theme with all required metadata
 +4. Add a descriptive `README.md` to the root of the theme source
 +5. Add `/images/screenshot.png` and `/images/tn.png`
 +
 +\* If your theme doesn't fit into the `Hugo Basic Example` site, we encourage theme authors to supply a self-contained Hugo site in `/exampleSite/`, but note that for security reasons the content directory on the Hugo showcase will still be published from the [`Hugo Basic Example`](https://github.com/gohugoio/hugoBasicExample/tree/master/content) repository.  
 +
 +{{% note %}}
 +The folder name here---`exampleSite`---is important, as this folder will be picked up and used by the script that generates the Hugo Theme Site. It mirrors the root directory of a Hugo website and allows you to add custom content, assets, and a `config` file with preset values.
 +{{% /note %}}
 +
 +See the [Hugo Artist theme's exampleSite][artistexample] for a good example.
 +
 +{{% note %}}
 +Please make your example site's content is as neutral as possible. We hope this goes without saying.
 +{{% /note %}}
 +
 +## Theme Requirements
 +
 +In order to add your theme to the Hugo Themes Showcase, the following requirements need to be met:
 +
 +1. `theme.toml` with all required fields
 +2. Images for thumbnail and screenshot
 +3. A good README file instructions for users
 +4. Addition to the hugoThemes GitHub repository
 +
 +### Add Your Theme to the Repo
 +
 +The easiest way to add your theme is to [open up a new issue in the theme repository][themeissuenew] with a link to the theme's repository on GitHub.
 +
 +### Create a `theme.toml` File
 +
 +`theme.toml` contains metadata about the theme and its creator and should be created automatically when running the `hugo new theme`. The auto-generated file is provided here as well for easy downloading:
 +
 +{{< code file="theme.toml" download="theme.toml" >}}
 +name = ""
 +license = "MIT"
 +licenselink = "https://github.com/<YOURNAME>/<YOURTHEME>/blob/master/LICENSE.md"
 +description = ""
 +homepage = "https://example.com/"
 +tags = []
 +features = []
 +min_version = 0.19
 +
 +[author]
 +  name = ""
 +  homepage = ""
 +
 +# If porting an existing theme
 +[original]
 +  name = ""
 +  homepage = ""
 +  repo = ""
 +{{< /code >}}
 +
 +The following fields are required:
 +
 +```
 +name = "Hyde"
 +license = "MIT"
 +licenselink = "https://github.com/spf13/hyde/blob/master/LICENSE.md"
 +description = "An elegant open source and mobile first theme"
 +homepage = "http://siteforthistheme.com/"
 +tags = ["blog", "company"]
 +features = ["blog"]
 +min_version = 0.13
 +
 +[author]
 +    name = "spf13"
 +    homepage = "http://spf13.com/"
 +
 +# If porting an existing theme
 +[original]
 +    author = "mdo"
 +    homepage = "http://hyde.getpoole.com/"
 +    repo = "https://www.github.com/mdo/hyde"
 +```
 +
 +{{% note %}}
 +1. This is different from the `theme.toml` file created by `hugo new theme` in Hugo versions before v0.14.
 +2. Only `theme.toml` is accepted; ie. not `theme.yaml` and `theme.json`.
 +{{% /note %}}
 +
 +### Images
 +
 +Screenshots are used for previews in the Hugo Theme Gallery. Make sure that they have the right dimensions:
 +
 +* Thumbnail should be 900px × 600px
 +* Screenshot should be 1500px × 1000px
 +* Media must be located in
 +    * <THEMEDIR>/images/screenshot.png</code>
 +    * <THEMEDIR>/images/tn.png</code>
 +
 +Additional media may be provided in the same directory.
 +
 +### Create a README File
 +
 +Your theme's README file should be written in markdown and saved at the root of your theme's directory structure. Your `README.md` serves as
 +
 +1. Content for your theme's details page at <https://themes.gohugo.io>
 +2. General information about the theme in your GitHub repository (i.e., it's usual purpose, features and instructions)
 +
 +{{% note "Screenshots in your `README.md`"%}}
 +If you add screenshots to the README, please make use of absolute file paths instead of relative ones like `/images/screenshot.png`. Relative paths work great on GitHub but they don't correspond to the directory structure of [themes.gohugo.io](http://themes.gohugo.io/). Therefore, browsers will not be able to display screenshots on the theme site under the given (relative) path.
 +{{% /note %}}
 +
 +[artistexample]: https://github.com/digitalcraftsman/hugo-artists-theme/tree/master/exampleSite
++[themeissuenew]: https://github.com/gohugoio/hugoThemes/issues/new?template=theme-submission.md
index fef4d85daa5d3056b4c42ceef8b956f4e0b0279a,0000000000000000000000000000000000000000..cdcec2fb328de4721cfbd00b28d8d4fd4f8f668d
mode 100644,000000..100644
--- /dev/null
@@@ -1,123 -1,0 +1,126 @@@
- `"Mon, 02 Jan 2006 15:04:05 -0700"` (RFC339)
 +---
 +title: .Format
 +description: Formats built-in Hugo dates---`.Date`, `.PublishDate`, and `.Lastmod`---according to Go's layout string.
 +godocref: https://golang.org/pkg/time/#example_Time_Format
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-01
 +categories: [functions]
 +menu:
 +  docs:
 +    parent: "functions"
 +keywords: [dates,time]
 +signature: [".Format FORMAT"]
 +workson: [times]
 +hugoversion:
 +relatedfuncs: [dateFormat,now,Unix,time]
 +deprecated: false
 +aliases: []
 +toc: true
 +---
 +
 +`.Format` will format date values defined in your front matter and can be used as a property on the following [page variables][pagevars]:
 +
 +* `.PublishDate`
 +* `.Date`
 +* `.Lastmod`
 +
 +Assuming a key-value of `date: 2017-03-03` in a content file's front matter, your can run the date through `.Format` followed by a layout string for your desired output at build time:
 +
 +```
 +{{ .PublishDate.Format "January 2, 2006" }} => March 3, 2017
 +```
 +
 +For formatting *any* string representations of dates defined in your front matter, see the [`dateFormat` function][dateFormat], which will still leverage the Go layout string explained below but uses a slightly different syntax.
 +
 +## Go's Layout String
 +
 +Hugo templates [format your dates][time] via layout strings that point to a specific reference time:
 +
 +```
 +Mon Jan 2 15:04:05 MST 2006
 +```
 +
 +While this may seem arbitrary, the numerical value of `MST` is `07`, thus making the layout string a sequence of numbers.
 +
 +Here is a visual explanation [taken directly from the Go docs][gdex]:
 +
 +```
 + Jan 2 15:04:05 2006 MST
 +=> 1 2  3  4  5    6  -7
 +```
 +
 +### Hugo Date and Time Templating Reference
 +
 +The following examples show the layout string followed by the rendered output.
 +
 +The examples were rendered and tested in [CST][] and all point to the same field in a content file's front matter:
 +
 +```
 +date: 2017-03-03T14:15:59-06:00
 +```
 +
 +`.Date` (i.e. called via [page variable][pagevars])
 +: **Returns**: `2017-03-03 14:15:59 -0600 CST`
 +
 +`"Monday, January 2, 2006"`
 +: **Returns**: `Friday, March 3, 2017`
 +
 +`"Mon Jan 2 2006"`
 +: **Returns**: `Fri Mar 3 2017`
 +
 +`"January 2006"`
 +: **Returns**: `March 2017`
 +
 +`"2006-01-02"`
 +: **Returns**: `2017-03-03`
 +
 +`"Monday"`
 +: **Returns**: `Friday`
 +
 +`"02 Jan 06 15:04 MST"` (RFC822)
 +: **Returns**: `03 Mar 17 14:15 CST`
 +
 +`"02 Jan 06 15:04 -0700"` (RFC822Z)
 +: **Returns**: `03 Mar 17 14:15 -0600`
 +
 +`"Mon, 02 Jan 2006 15:04:05 MST"` (RFC1123)
 +: **Returns**: `Fri, 03 Mar 2017 14:15:59 CST`
 +
++`"Mon, 02 Jan 2006 15:04:05 -0700"` (RFC1123Z)
 +: **Returns**: `Fri, 03 Mar 2017 14:15:59 -0600`
 +
++More examples can be found in Go's [documentation for the time package][timeconst].
++
 +### Cardinal Numbers and Ordinal Abbreviations
 +
 +Spelled-out cardinal numbers (e.g. "one", "two", and "three") and ordinal abbreviations (i.e., with shorted suffixes like "1st", "2nd", and "3rd") are not currently supported:
 +
 +```
 +{{.Date.Format "Jan 2nd 2006"}}
 +```
 +
 +Hugo assumes you want to append `nd` as a string to the day of the month and outputs the following:
 +
 +```
 +Mar 3nd 2017
 +```
 +
 +<!-- Content idea: see https://discourse.gohugo.io/t/formatting-a-date-with-suffix-2nd/5701 -->
 +
 +### Use `.Local` and `.UTC`
 +
 +In conjunction with the [`dateFormat` function][dateFormat], you can also convert your dates to `UTC` or to local timezones:
 +
 +`{{ dateFormat "02 Jan 06 15:04 MST" .Date.UTC }}`
 +: **Returns**: `03 Mar 17 20:15 UTC`
 +
 +`{{ dateFormat "02 Jan 06 15:04 MST" .Date.Local }}`
 +: **Returns**: `03 Mar 17 14:15 CST`
 +
 +[CST]: https://en.wikipedia.org/wiki/Central_Time_Zone
 +[dateFormat]: /functions/dateformat/
 +[gdex]: https://golang.org/pkg/time/#example_Time_Format
 +[pagevars]: /variables/page/
 +[time]: https://golang.org/pkg/time/
++[timeconst]: https://golang.org/pkg/time/#ANSIC
index bcd845c96413854cb5ba31ac250f078db94bb354,0000000000000000000000000000000000000000..ca7f230756308e8b263809b546863874a0802621
mode 100644,000000..100644
--- /dev/null
@@@ -1,33 -1,0 +1,35 @@@
 +---
 +title: readFile
 +description: Reads a file from disk relative to the current project working directory and returns a string.
 +godocref:
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-04-30
 +categories: [functions]
 +menu:
 +  docs:
 +    parent: "functions"
 +keywords: [files]
 +signature: ["readFile PATH"]
 +workson: []
 +hugoversion:
 +relatedfuncs: [readDir]
 +deprecated: false
 +aliases: []
 +---
 +
 +Note that the filename must be relative to the current project working directory, or the project's `/content` folder. 
 +
 +So, if you have a file with the name `README.txt` in the root of your project with the content `Hugo Rocks!`:
 +
 +```
 +{{readFile "README.txt"}} → "Hugo Rocks!"
 +```
 +
 +If you receive a "file doesn't exist" error with a path listed, do take note that the path is the last one checked by the function, and may not accurately reflect your target. You should generally double-check your path for mistakes.
 +
++Note that there is a 1 MB file size limit.
++
 +For more information on using `readDir` and `readFile` in your templates, see [Local File Templates][local].
 +
 +[local]: /templates/files/
index 919a9c3b763430a55ad5564913417b34967dc11c,0000000000000000000000000000000000000000..3c8c9615609a0b0081c83e87eacd880750b19a73
mode 100644,000000..100644
--- /dev/null
@@@ -1,37 -1,0 +1,37 @@@
- The function is particulary handy with dynamic path. The following example ensures the build will not break on a `.Type` missing its dedicated `header` partial.
 +---
 +title: templates.Exists
 +linktitle: ""
 +description: "Checks whether a template file exists under the given path relative to the `layouts` directory."
 +godocref: ""
 +date: 2018-11-01
 +publishdate: 2018-11-01
 +lastmod: 2018-11-01
 +categories: [functions]
 +tags: []
 +menu:
 +  docs:
 +    parent: "functions"
 +ns: ""
 +keywords: ["templates", "template", "layouts"]
 +signature: ["templates.Exists PATH"]
 +workson: []
 +hugoversion: "0.46"
 +aliases: []
 +relatedfuncs: []
 +toc: false
 +deprecated: false
 +---
 +
 +A template file is any file living below the `layouts` directories of either the project or any of its theme components incudling partials and shortcodes.
 +
- ```
++The function is particularly handy with dynamic path. The following example ensures the build will not break on a `.Type` missing its dedicated `header` partial.
 +
 +```go-html-template
 +{{ $partialPath := printf "headers/%s.html" .Type }}
 +{{ if templates.Exists ( printf "partials/%s" $partialPath ) }}
 +  {{ partial $partialPath . }}
 +{{ else }}
 +  {{ partial "headers/default.html" . }}
 +{{ end }}
 +
++```
index 63a34835fe7ed8c15a4cf264f8326c57b1aa075f,0000000000000000000000000000000000000000..da4054bbd8db88f79457366a40664f5495f23886
mode 100644,000000..100644
--- /dev/null
@@@ -1,33 -1,0 +1,37 @@@
 +---
 +title: title
 +# linktitle:
 +description: Converts all characters in the provided string to title case.
 +godocref:
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-01
 +categories: [functions]
 +menu:
 +  docs:
 +    parent: "functions"
 +keywords: [strings]
 +signature: ["title INPUT"]
 +workson: []
 +hugoversion:
 +relatedfuncs: []
 +deprecated: false
 +aliases: []
 +---
 +
 +
 +```
 +{{title "BatMan"}}` → "Batman"
 +```
 +
 +Can be combined in pipes. In the following snippet, the link text is cleaned up using `humanize` to remove dashes and `title` to convert the value of `$name` to Initial Caps.
 +
 +```
 +{{ range $name, $items := .Site.Taxonomies.categories }}
 +    <li><a href="{{ printf "%s/%s" "categories" ($name | urlize | lower) | absURL }}">{{ $name | humanize | title }} ({{ len $items }})</a></li>
 +{{ end }}
 +```
++
++## Configure Title Case
++
++The default is AP Stylebook, but you can [configure it](/getting-started/configuration/#configure-title-case).
index 6fbfd37793c487a11d6a03ec943c47d2636c389a,0000000000000000000000000000000000000000..4119ae8effb01b8ab923b21ea73f3f83dbd44389
mode 100644,000000..100644
--- /dev/null
@@@ -1,502 -1,0 +1,509 @@@
- : Will disable generation of alias redirects. Note that even if `disableAliases` is set, the aliases themselves are preserved on the page. The motivation with this is to be able to generate 301 redirects in an `.htacess`, a Netlify `_redirects` file or similar using a custom output format.
 +---
 +title: Configure Hugo
 +linktitle: Configuration
 +description: How to configure your Hugo site.
 +date: 2013-07-01
 +publishdate: 2017-01-02
 +lastmod: 2017-03-05
 +categories: [getting started,fundamentals]
 +keywords: [configuration,toml,yaml,json]
 +menu:
 +  docs:
 +    parent: "getting-started"
 +    weight: 60
 +weight: 60
 +sections_weight: 60
 +draft: false
 +aliases: [/overview/source-directory/,/overview/configuration/]
 +toc: true
 +---
 +
 +
 +## Configuration File
 +
 +Hugo uses the `config.toml`, `config.yaml`, or `config.json` (if found in the
 +site root) as the default site config file.
 +
 +The user can choose to override that default with one or more site config files
 +using the command line `--config` switch.
 +
 +Examples:
 +
 +```
 +hugo --config debugconfig.toml
 +hugo --config a.toml,b.toml,c.toml
 +```
 +
 +{{% note %}}
 +Multiple site config files can be specified as a comma-separated string to the `--config` switch.
 +{{% /note %}}
 +
 +TODO: distinct config.toml and others (the root object files)
 +
 +## Configuration Directory
 +
 +In addition to using a single site config file, one can use the `configDir` directory (default to `config/`) to maintain easier organization and environment specific settings.
 +
 +- Each file represents a configuration root object, such as `Params`, `Menus`, `Languages` etc...
 +- Each directory holds a group of files containing settings unique to an environment.
 +- Files can be localized to become language specific.
 +
 +
 +```
 +config
 +├── _default
 +│   ├── config.toml
 +│   ├── languages.toml
 +│   ├── menus.en.toml
 +│   ├── menus.zh.toml
 +│   └── params.toml
 +├── staging
 +│   ├── config.toml
 +│   └── params.toml
 +└── production
 +    ├── config.toml
 +    └── params.toml
 +```
 +
 +Considering the structure above, when running `hugo --environment staging`, Hugo will use every settings from `config/_default` and merge `staging`'s on top of those.
 +{{% note %}}
 +Default environments are __development__ with `hugo serve` and __production__ with `hugo`.
 +{{%/ note %}}
 +## All Configuration Settings
 +
 +The following is the full list of Hugo-defined variables with their default
 +value in parentheses. Users may choose to override those values in their site
 +config file(s).
 +
 +archetypeDir ("archetypes")
 +: The directory where Hugo finds archetype files (content templates).
 +
 +assetDir ("assets")
 +: The directory where Hugo finds asset files used in [Hugo Pipes](/hugo-pipes/).
 +
 +baseURL
 +: Hostname (and path) to the root, e.g. http://bep.is/
 +
 +blackfriday
 +: See [Configure Blackfriday](/getting-started/configuration/#configure-blackfriday)
 +
 +buildDrafts (false)
 +: Include drafts when building.
 +
 +buildExpired  (false)
 +: Include content already expired.
 +
 +buildFuture (false)
 +: Include content with publishdate in the future.
 +
 +caches
 +: See [Configure File Caches](#configure-file-caches)
 +
 +canonifyURLs (false)
 +: Enable to turn relative URLs into absolute.
 +
 +contentDir ("content")
 +: The directory from where Hugo reads content files.
 +
 +dataDir ("data")
 +: The directory from where Hugo reads data files.
 +
 +defaultContentLanguage ("en")
 +: Content without language indicator will default to this language.
 +
 +defaultContentLanguageInSubdir (false)
 +: Render the default content language in subdir, e.g. `content/en/`. The site root `/` will then redirect to `/en/`.
 +
 +disableAliases (false)
- [yaml]: http://yaml.org/spec/
++: Will disable generation of alias redirects. Note that even if `disableAliases` is set, the aliases themselves are preserved on the page. The motivation with this is to be able to generate 301 redirects in an `.htaccess`, a Netlify `_redirects` file or similar using a custom output format.
 +
 +disableHugoGeneratorInject (false)
 +: Hugo will, by default, inject a generator meta tag in the HTML head on the _home page only_. You can turn it off, but we would really appreciate if you don't, as this is a good way to watch Hugo's popularity on the rise.
 +
 +disableKinds ([])
 +: Enable disabling of all pages of the specified *Kinds*. Allowed values in this list: `"page"`, `"home"`, `"section"`, `"taxonomy"`, `"taxonomyTerm"`, `"RSS"`, `"sitemap"`, `"robotsTXT"`, `"404"`.
 +
 +disableLiveReload (false)
 +: Disable automatic live reloading of browser window.
 +
 +disablePathToLower (false)
 +: Do not convert the url/path to lowercase.
 +
 +enableEmoji (false)
 +: Enable Emoji emoticons support for page content; see the [Emoji Cheat Sheet](https://www.webpagefx.com/tools/emoji-cheat-sheet/).
 +
 +enableGitInfo (false)
 +: Enable `.GitInfo` object for each page (if the Hugo site is versioned by Git). This will then update the `Lastmod` parameter for each page using the last git commit date for that content file.
 +
 +enableInlineShortcodes
 +: Enable inline shortcode support. See [Inline Shortcodes](/templates/shortcode-templates/#inline-shortcodes).
 +
 +enableMissingTranslationPlaceholders (false)
 +: Show a placeholder instead of the default value or an empty string if a translation is missing.
 +
 +enableRobotsTXT (false)
 +: Enable generation of `robots.txt` file.
 +
 +frontmatter
 +
 +: See [Front matter Configuration](#configure-front-matter).
 +
 +footnoteAnchorPrefix ("")
 +: Prefix for footnote anchors.
 +
 +footnoteReturnLinkContents ("")
 +: Text to display for footnote return links.
 +
 +googleAnalytics ("")
 +: Google Analytics tracking ID.
 +
 +hasCJKLanguage (false)
 +: If true, auto-detect Chinese/Japanese/Korean Languages in the content. This will make `.Summary` and `.WordCount` behave correctly for CJK languages.
 +
 +imaging
 +: See [Image Processing Config](/content-management/image-processing/#image-processing-config).
 +
 +languages
 +: See [Configure Languages](/content-management/multilingual/#configure-languages).
 +
 +languageCode ("")
 +: The site's language code.
 +
 +languageName ("")
 +: The site's language name.
 +
 +disableLanguages
 +: See [Disable a Language](/content-management/multilingual/#disable-a-language)
 +
 +layoutDir ("layouts")
 +: The directory from where Hugo reads layouts (templates).
 +
 +log (false)
 +: Enable logging.
 +
 +logFile ("")
 +: Log File path (if set, logging enabled automatically).
 +
 +menu
 +: See [Add Non-content Entries to a Menu](/content-management/menus/#add-non-content-entries-to-a-menu).
 +
 +metaDataFormat ("toml")
 +: Front matter meta-data format. Valid values: `"toml"`, `"yaml"`, or `"json"`.
 +
 +newContentEditor ("")
 +: The editor to use when creating new content.
 +
 +noChmod (false)
 +: Don't sync permission mode of files.
 +
 +noTimes (false)
 +: Don't sync modification time of files.
 +
 +paginate (10)
 +: Default number of elements per page in [pagination](/templates/pagination/).
 +
 +paginatePath ("page")
 +: The path element used during pagination (https://example.com/page/2).
 +
 +permalinks
 +: See [Content Management](/content-management/urls/#permalinks).
 +
 +pluralizeListTitles (true)
 +: Pluralize titles in lists.
 +
 +publishDir ("public")
 +: The directory to where Hugo will write the final static site (the HTML files etc.).
 +
 +pygmentsCodeFencesGuessSyntax (false)
 +: Enable syntax guessing for code fences without specified language.
 +
 +pygmentsStyle ("monokai")
 +: Color-theme or style for syntax highlighting. See [Pygments Color Themes](https://help.farbox.com/pygments.html).
 +
 +pygmentsUseClasses (false)
 +: Enable using external CSS for syntax highlighting.
 +
 +related
 +: See [Related Content](/content-management/related/#configure-related-content).
 +
 +relativeURLs (false)
 +: Enable this to make all relative URLs relative to content root. Note that this does not affect absolute URLs.
 +
 +refLinksErrorLevel ("ERROR")
 +: When using `ref` or `relref` to resolve page links and a link cannot resolved, it will be logged with this logg level. Valid values are `ERROR` (default) or `WARNING`. Any `ERROR` will fail the build (`exit -1`).
 +
 +refLinksNotFoundURL
 +: URL to be used as a placeholder when a page reference cannot be found in `ref` or `relref`. Is used as-is.
 +
 +rssLimit (unlimited)
 +: Maximum number of items in the RSS feed.
 +
 +sectionPagesMenu ("")
 +: See ["Section Menu for Lazy Bloggers"](/templates/menu-templates/#section-menu-for-lazy-bloggers).
 +
 +sitemap
 +: Default [sitemap configuration](/templates/sitemap-template/#configure-sitemap-xml).
 +
 +staticDir ("static")
 +: A directory or a list of directories from where Hugo reads [static files][static-files].
 +
 +summaryLength (70)
 +: The length of text in words to show in a [`.Summary`](/content-management/summaries/#hugo-defined-automatic-summary-splitting).
 +
 +taxonomies
 +: See [Configure Taxonomies](/content-management/taxonomies#configure-taxonomies).
 +
 +theme ("")
 +: Theme to use (located by default in `/themes/THEMENAME/`).
 +
 +themesDir ("themes")
 +: The directory where Hugo reads the themes from.
 +
 +timeout (10000)
 +: Timeout for generating page contents, in milliseconds (defaults to 10&nbsp;seconds). *Note:* this is used to bail out of recursive content generation, if your pages are slow to generate (e.g., because they require large image processing or depend on remote contents) you might need to raise this limit.
 +
 +title ("")
 +: Site title.
 +
++titleCaseStyle ("AP")
++: See [Configure Title Case](#configure-title-case)
++
 +uglyURLs (false)
 +: When enabled, creates URL of the form `/filename.html` instead of `/filename/`.
 +
 +verbose (false)
 +: Enable verbose output.
 +
 +verboseLog (false)
 +: Enable verbose logging.
 +
 +watch (false)
 +: Watch filesystem for changes and recreate as needed.
 +
 +{{% note %}}
 +If you are developing your site on a \*nix machine, here is a handy shortcut for finding a configuration option from the command line:
 +```
 +cd ~/sites/yourhugosite
 +hugo config | grep emoji
 +```
 +
 +which shows output like
 +
 +```
 +enableemoji: true
 +```
 +{{% /note %}}
 +
++## Configure Title Case
++
++Set `titleCaseStyle` to specify the title style used by the [title](/functions/title/) template function and the automatic section titles in Hugo. It defaults to [AP Stylebook](https://www.apstylebook.com/) for title casing, but you can also set it to `Chicago` or `Go` (every word starts with a capital letter).
++
 +## Configuration Environment Variables
 +
 +HUGO_NUMWORKERMULTIPLIER
 +: Can be set to increase or reduce the number of workers used in parallel processing in Hugo. If not set, the number of logical CPUs will be used.
 +
 +## Configuration Lookup Order
 +
 +Similar to the template [lookup order][], Hugo has a default set of rules for searching for a configuration file in the root of your website's source directory as a default behavior:
 +
 +1. `./config.toml`
 +2. `./config.yaml`
 +3. `./config.json`
 +
 +In your `config` file, you can direct Hugo as to how you want your website rendered, control your website's menus, and arbitrarily define site-wide parameters specific to your project.
 +
 +
 +## Example Configuration
 +
 +The following is a typical example of a configuration file. The values nested under `params:` will populate the [`.Site.Params`][] variable for use in [templates][]:
 +
 +{{< code-toggle file="config">}}
 +baseURL: "https://yoursite.example.com/"
 +title: "My Hugo Site"
 +footnoteReturnLinkContents: "↩"
 +permalinks:
 +  posts: /:year/:month/:title/
 +params:
 +  Subtitle: "Hugo is Absurdly Fast!"
 +  AuthorName: "Jon Doe"
 +  GitHubUser: "spf13"
 +  ListOfFoo:
 +    - "foo1"
 +    - "foo2"
 +  SidebarRecentLimit: 5
 +{{< /code-toggle >}}
 +
 +## Configure with Environment Variables
 +
 +In addition to the 3 config options already mentioned, configuration key-values can be defined through operating system environment variables.
 +
 +For example, the following command will effectively set a website's title on Unix-like systems:
 +
 +```
 +$ env HUGO_TITLE="Some Title" hugo
 +```
 +
 +This is really useful if you use a service such as Netlify to deploy your site. Look at the Hugo docs [Netlify configuration file](https://github.com/gohugoio/hugoDocs/blob/master/netlify.toml) for an example.
 +
 +{{% note "Setting Environment Variables" %}}
 +Names must be prefixed with `HUGO_` and the configuration key must be set in uppercase when setting operating system environment variables.
 +{{% /note %}}
 +
 +{{< todo >}}
 +Test and document setting params via JSON env var.
 +{{< /todo >}}
 +
 +## Ignore Files When Rendering
 +
 +The following statement inside `./config.toml` will cause Hugo to ignore files ending with `.foo` and `.boo` when rendering:
 +
 +```
 +ignoreFiles = [ "\\.foo$", "\\.boo$" ]
 +```
 +
 +The above is a list of regular expressions. Note that the backslash (`\`) character is escaped in this example to keep TOML happy.
 +
 +## Configure Front Matter
 +
 +### Configure Dates
 +
 +Dates are important in Hugo, and you can configure how Hugo assigns dates to your content pages. You do this by adding a `frontmatter` section to your `config.toml`.
 +
 +
 +The default configuration is:
 +
 +```toml
 +[frontmatter]
 +date = ["date", "publishDate", "lastmod"]
 +lastmod = [":git", "lastmod", "date", "publishDate"]
 +publishDate = ["publishDate", "date"]
 +expiryDate = ["expiryDate"]
 +```
 +
 +If you, as an example, have a non-standard date parameter in some of your content, you can override the setting for `date`:
 +
 + ```toml
 +[frontmatter]
 +date = ["myDate", ":default"]
 +```
 +
 +The `:default` is a shortcut to the default settings. The above will set `.Date` to the date value in `myDate` if present, if not we will look in `date`,`publishDate`, `lastmod` and pick the first valid date.
 +
 +In the list to the right, values starting with ":" are date handlers with a special meaning (see below). The others are just names of date parameters (case insensitive) in your front matter configuration.  Also note that Hugo have some built-in aliases to the above: `lastmod` => `modified`, `publishDate` => `pubdate`, `published` and `expiryDate` => `unpublishdate`. With that, as an example, using `pubDate` as a date in front matter, will, by default, be assigned to `.PublishDate`.
 +
 +The special date handlers are:
 +
 +
 +`:fileModTime`
 +: Fetches the date from the content file's last modification timestamp.
 +
 +An example:
 +
 + ```toml
 +[frontmatter]
 +lastmod = ["lastmod", ":fileModTime", ":default"]
 +```
 +
 +
 +The above will try first to extract the value for `.Lastmod` starting with the `lastmod` front matter parameter, then the content file's modification timestamp. The last, `:default` should not be needed here, but Hugo will finally look for a valid date in `:git`, `date` and then `publishDate`.
 +
 +
 +`:filename`
 +: Fetches the date from the content file's filename. For example, `2018-02-22-mypage.md` will extract the date `2018-02-22`. Also, if `slug` is not set, `mypage` will be used as the value for `.Slug`.
 +
 +An example:
 +
 +```toml
 +[frontmatter]
 +date  = [":filename", ":default"]
 +```
 +
 +The above will try first to extract the value for `.Date` from the filename, then it will look in front matter parameters `date`, `publishDate` and lastly `lastmod`.
 +
 +
 +`:git`
 +: This is the Git author date for the last revision of this content file. This will only be set if `--enableGitInfo` is set or `enableGitInfo = true` is set in site config.
 +
 +## Configure Blackfriday
 +
 +[Blackfriday](https://github.com/russross/blackfriday) is Hugo's built-in Markdown rendering engine.
 +
 +Hugo typically configures Blackfriday with sane default values that should fit most use cases reasonably well.
 +
 +However, if you have specific needs with respect to Markdown, Hugo exposes some of its Blackfriday behavior options for you to alter. The following table lists these Hugo options, paired with the corresponding flags from Blackfriday's source code ( [html.go](https://github.com/russross/blackfriday/blob/master/html.go) and [markdown.go](https://github.com/russross/blackfriday/blob/master/markdown.go)).
 +
 +{{< readfile file="/content/en/readfiles/bfconfig.md" markdown="true" >}}
 +
 +{{% note %}}
 +1. Blackfriday flags are *case sensitive* as of Hugo v0.15.
 +2. Blackfriday flags must be grouped under the `blackfriday` key and can be set on both the site level *and* the page level. Any setting on a page will override its respective site setting.
 +{{% /note %}}
 +
 +{{< code-toggle file="config" >}}
 +[blackfriday]
 +  angledQuotes = true
 +  fractions = false
 +  plainIDAnchors = true
 +  extensions = ["hardLineBreak"]
 +{{< /code-toggle >}}
 +
 +## Configure Additional Output Formats
 +
 +Hugo v0.20 introduced the ability to render your content to multiple output formats (e.g., to JSON, AMP html, or CSV). See [Output Formats][] for information on how to add these values to your Hugo project's configuration file.
 +
 +## Configure File Caches
 +
 +Since Hugo 0.52 you can configure more than just the `cacheDir`. This is the default configuration:
 +
 +```toml
 +[caches]
 +[caches.getjson]
 +dir = ":cacheDir/:project"
 +maxAge = -1
 +[caches.getcsv]
 +dir = ":cacheDir/:project"
 +maxAge = -1
 +[caches.images]
 +dir = ":resourceDir/_gen"
 +maxAge = -1
 +[caches.assets]
 +dir = ":resourceDir/_gen"
 +maxAge = -1
 +```
 +
 +
 +You can override any of these cache setting in your own `config.toml`.
 +
 +### The keywords explained
 +
 +`:cacheDir`
 +: This is the value of the `cacheDir` config option if set (can also be set via OS env variable `HUGO_CACHEDIR`). It will fall back to `/opt/build/cache/hugo_cache/` on Netlify, or a `hugo_cache` directory below the OS temp dir for the others. This means that if you run your builds on Netlify, all caches configured with `:cacheDir` will be saved and restored on the next build. For other CI vendors, please read their documentation. For an CircleCI example, see [this configuration](https://github.com/bep/hugo-sass-test/blob/6c3960a8f4b90e8938228688bc49bdcdd6b2d99e/.circleci/config.yml).
 +
 +`:project`
 +: The base directory name of the current Hugo project. This means that, in its default setting, every project will have separated file caches, which means that when you do `hugo --gc` you will not touch files related to other Hugo projects running on the same PC.
 +
 +`:resourceDir`
 +: This is the value of the `resourceDir` config option.
 +
 +maxAge
 +: This is the duration before a cache entry will be evicted, -1 means forever and 0 effectively turns that particular cache off. Uses Go's `time.Duration`, so valid values are `"10s"` (10 seconds), `"10m"` (10 minutes) and `"10h"` (10 hours).
 +
 +dir
 +: The absolute path to where the files for this cache will be stored. Allowed starting placeholders are `:cacheDir` and `:resourceDir` (see above).
 +
 +## Configuration Format Specs
 +
 +* [TOML Spec][toml]
 +* [YAML Spec][yaml]
 +* [JSON Spec][json]
 +
 +[`.Site.Params`]: /variables/site/
 +[directory structure]: /getting-started/directory-structure
 +[json]: https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf "Specification for JSON, JavaScript Object Notation"
 +[lookup order]: /templates/lookup-order/
 +[Output Formats]: /templates/output-formats/
 +[templates]: /templates/
 +[toml]: https://github.com/toml-lang/toml
++[yaml]: https://yaml.org/spec/
 +[static-files]: /content-management/static-files/
index 4842409d2f25afbd5b470b4994228bb8229b05e0,0000000000000000000000000000000000000000..3bddcd073fd97e2ccb7acb9ed7b5fa94f4339955
mode 100644,000000..100644
--- /dev/null
@@@ -1,94 -1,0 +1,93 @@@
- ├── assets
- ├── config
 +---
 +title: Directory Structure
 +linktitle: Directory Structure
 +description: Hugo's CLI scaffolds a project directory structure and then takes that single directory and uses it as the input to create a complete website.
 +date: 2017-01-02
 +publishdate: 2017-02-01
 +lastmod: 2017-03-09
 +categories: [getting started,fundamentals]
 +keywords: [source, organization, directories]
 +menu:
 +  docs:
 +    parent: "getting-started"
 +    weight: 50
 +weight: 50
 +sections_weight: 50
 +draft: false
 +aliases: [/overview/source-directory/]
 +toc: true
 +---
 +
 +## New Site Scaffolding
 +
 +{{< youtube sB0HLHjgQ7E >}}
 +
 +Running the `hugo new site` generator from the command line will create a directory structure with the following elements:
 +
 +```
 +.
 +├── archetypes
- : Stores all the files which need be processed by [Hugo Pipes]({{< ref "/hugo-pipes" >}}). Only the files whose `.Permalink` or `.RelPermalink` are used will be published to the `public` directory.
++├── config.toml
 +├── content
 +├── data
 +├── layouts
 +├── static
 +└── themes
 +```
 +
 +
 +## Directory Structure Explained
 +
 +The following is a high-level overview of each of the directories with links to each of their respective sections within the Hugo docs.
 +
 +[`archetypes`](/content-management/archetypes/)
 +: You can create new content files in Hugo using the `hugo new` command.
 +By default, Hugo will create new content files with at least `date`, `title` (inferred from the file name), and `draft = true`. This saves time and promotes consistency for sites using multiple content types. You can create your own [archetypes][] with custom preconfigured front matter fields as well.
 +
 +[`assets`][]
- Many sites may need little to no configuration, but Hugo ships with a large number of [configuration directives][] for more granular directions on how you want Hugo to build your website.
++: Stores all the files which need be processed by [Hugo Pipes]({{< ref "/hugo-pipes" >}}). Only the files whose `.Permalink` or `.RelPermalink` are used will be published to the `public` directory. Note: assets directory is not created by default.
 +
 +[`config`](/getting-started/configuration/)
 +: Hugo ships with a large number of [configuration directives](https://gohugo.io/getting-started/configuration/#all-variables-yaml).
 +The [config directory](/getting-started/configuration/#configuration-directory) is where those directives are stored as JSON, YAML, or TOML files. Every root setting object can stand as its own file and structured by environments.
 +Projects with minimal settings and no need for environment awareness can use a single `config.toml` file at its root.
 +
++Many sites may need little to no configuration, but Hugo ships with a large number of [configuration directives][] for more granular directions on how you want Hugo to build your website. Note: config directory is not created by default.
 +
 +[`content`][]
 +: All content for your website will live inside this directory. Each top-level folder in Hugo is considered a [content section][]. For example, if your site has three main sections---`blog`, `articles`, and `tutorials`---you will have three directories at `content/blog`, `content/articles`, and `content/tutorials`. Hugo uses sections to assign default [content types][].
 +
 +[`data`](/templates/data-templates/)
 +: This directory is used to store configuration files that can be
 +used by Hugo when generating your website. You can write these files in YAML, JSON, or TOML format. In addition to the files you add to this folder, you can also create [data templates][] that pull from dynamic content.
 +
 +[`layouts`][]
 +: Stores templates in the form of `.html` files that specify how views of your content will be rendered into a static website. Templates include [list pages][lists], your [homepage][], [taxonomy templates][], [partials][], [single page templates][singles], and more.
 +
 +[`static`][]
 +: Stores all the static content: images, CSS, JavaScript, etc. When Hugo builds your site, all assets inside your static directory are copied over as-is. A good example of using the `static` folder is for [verifying site ownership on Google Search Console][searchconsole], where you want Hugo to copy over a complete HTML file without modifying its content.
 +
 +{{% note %}}
 +From **Hugo 0.31** you can have multiple static directories.
 +{{% /note %}}
 +
 +
 +[archetypes]: /content-management/archetypes/
 +[configuration directives]: /getting-started/configuration/#all-variables-yaml
 +[`content`]: /content-management/organization/
 +[content section]: /content-management/sections/
 +[content types]: /content-management/types/
 +[data templates]: /templates/data-templates/
 +[homepage]: /templates/homepage/
 +[`layouts`]: /templates/
 +[`static`]: /content-management/static-files/
 +[lists]: /templates/list/
 +[pagevars]: /variables/page/
 +[partials]: /templates/partials/
 +[searchconsole]: https://support.google.com/analytics/answer/1142414?hl=en
 +[singles]: /templates/single-page-templates/
 +[starters]: /tools/starter-kits/
 +[taxonomies]: /content-management/taxonomies/
 +[taxonomy templates]: /templates/taxonomy-templates/
 +[types]: /content-management/types/
 +[`assets`]: {{< ref "/hugo-pipes/introduction#asset-directory" >}}
index e73511c5b9761024765e82e2b8fe5863d7c190cd,0000000000000000000000000000000000000000..f901f85fb99d5cba81e684e48ab083b0cf7d3d19
mode 100644,000000..100644
--- /dev/null
@@@ -1,518 -1,0 +1,529 @@@
- Hugo-as-a-snap can write only inside the user’s `$HOME` directory---and gvfs-mounted directories owned by the user---because of Snaps’ confinement and security model. More information is also available [in this related GitHub issue](https://github.com/gohugoio/hugo/issues/3143). Use ```sudo snap install hugo --classic``` to disable the default security model if you want hugo to be able to have write access in other paths besides the user’s `$HOME` directory.
 +---
 +title: Install Hugo
 +linktitle: Install Hugo
 +description: Install Hugo on macOS, Windows, Linux, OpenBSD, FreeBSD, and on any machine where the Go compiler tool chain can run.
 +date: 2016-11-01
 +publishdate: 2016-11-01
 +lastmod: 2018-01-02
 +categories: [getting started,fundamentals]
 +authors: ["Michael Henderson"]
 +keywords: [install,pc,windows,linux,macos,binary,tarball]
 +menu:
 +  docs:
 +    parent: "getting-started"
 +    weight: 30
 +weight: 30
 +sections_weight: 30
 +draft: false
 +aliases: [/tutorials/installing-on-windows/,/tutorials/installing-on-mac/,/overview/installing/,/getting-started/install,/install/]
 +toc: true
 +---
 +
 +
 +{{% note %}}
 +There is lots of talk about "Hugo being written in Go", but you don't need to install Go to enjoy Hugo. Just grab a precompiled binary!
 +{{% /note %}}
 +
 +Hugo is written in [Go](https://golang.org/) with support for multiple platforms. The latest release can be found at [Hugo Releases][releases].
 +
 +Hugo currently provides pre-built binaries for the following:
 +
 +* macOS (Darwin) for x64, i386, and ARM architectures
 +* Windows
 +* Linux
 +* OpenBSD
 +* FreeBSD
 +
 +Hugo may also be compiled from source wherever the Go toolchain can run; e.g., on other operating systems such as DragonFly BSD, OpenBSD, Plan&nbsp;9, Solaris, and others. See <https://golang.org/doc/install/source> for the full set of supported combinations of target operating systems and compilation architectures.
 +
 +## Quick Install
 +
 +### Binary (Cross-platform)
 +
 +Download the appropriate version for your platform from [Hugo Releases][releases]. Once downloaded, the binary can be run from anywhere. You don't need to install it into a global location. This works well for shared hosts and other systems where you don't have a privileged account.
 +
 +Ideally, you should install it somewhere in your `PATH` for easy use. `/usr/local/bin` is the most probable location.
 +
 +### Homebrew (macOS)
 +
 +If you are on macOS and using [Homebrew][brew], you can install Hugo with the following one-liner:
 +
 +{{< code file="install-with-homebrew.sh" >}}
 +brew install hugo
 +{{< /code >}}
 +
 +For more detailed explanations, read the installation guides that follow for installing on macOS and Windows.
 +
++### Linuxbrew (Linux)
++
++If you are on Linux and using [Linuxbrew][linuxbrew], you can install Hugo with the following one-liner:
++
++{{< code file="install-with-linuxbrew.sh" >}}
++brew install hugo
++{{< /code >}}
++
++Installation guides for Linuxbrew are available on their [website][linuxbrew].
++
 +### Chocolatey (Windows)
 +
 +If you are on a Windows machine and use [Chocolatey][] for package management, you can install Hugo with the following one-liner:
 +
 +{{< code file="install-with-chocolatey.ps1" >}}
 +choco install hugo -confirm
 +{{< /code >}}
 +
 +### Scoop (Windows)
 +
 +If you are on a Windows machine and use [Scoop][] for package management, you can install Hugo with the following one-liner:
 +
 +```bash
 +scoop install hugo
 +```
 +
 +### Source
 +
 +#### Prerequisite Tools
 +
 +* [Git][installgit]
 +* [Go (at least Go 1.11)](https://golang.org/dl/)
 +
 +#### Fetch from GitHub
 +
 +Since Hugo 0.48, Hugo uses the Go Modules support built into Go 1.11 to build. The easiest way to get started is to clone Hugo in a directory outside of the GOPATH, as in the following example:
 +
 +{{< code file="from-gh.sh" >}}
 +mkdir $HOME/src
 +cd $HOME/src
 +git clone https://github.com/gohugoio/hugo.git
 +cd hugo
 +go install --tags extended
 +{{< /code >}}
 +
 +Remove `--tags extended` if you do not want/need Sass/SCSS support.
 +
 +{{% note %}}
 +If you are a Windows user, substitute the `$HOME` environment variable above with `%USERPROFILE%`.
 +{{% /note %}}
 +
 +## macOS
 +
 +### Assumptions
 +
 +1. You know how to open the macOS terminal.
 +2. You're running a modern 64-bit Mac.
 +3. You will use `~/Sites` as the starting point for your site. (`~/Sites` is used for example purposes. If you are familiar enough with the command line and file system, you should have no issues following along with the instructions.)
 +
 +### Pick Your Method
 +
 +There are three ways to install Hugo on your Mac
 +
 +1. The [Homebrew][brew] `brew` utility
 +2. Distribution (i.e., tarball)
 +3. Building from Source
 +
 +There is no "best" way to install Hugo on your Mac. You should use the method that works best for your use case.
 +
 +#### Pros and Cons
 +
 +There are pros and cons to each of the aforementioned methods:
 +
 +1. **Homebrew.** Homebrew is the simplest method and will require the least amount of work to maintain. The drawbacks aren't severe. The default package will be for the most recent release, so it will not have bug fixes until the next release (i.e., unless you install it with the `--HEAD` option). Hugo `brew` releases may lag a few days behind because it has to be coordinated with another team. Nevertheless, `brew` is the recommended installation method if you want to work from a stable, widely used source. Brew works well and is easy to update.
 +
 +2. **Tarball.** Downloading and installing from the tarball is also easy, although it requires a few more command line skills than does Homebrew. Updates are easy as well: you just repeat the process with the new binary. This gives you the flexibility to have multiple versions on your computer. If you don't want to use `brew`, then the tarball/binary is a good choice.
 +
 +3. **Building from Source.** Building from source is the most work. The advantage of building from source is that you don't have to wait for a release to add features or bug fixes. The disadvantage is that you need to spend more time managing the setup, which is manageable but requires more time than the preceding two options.
 +
 +{{% note %}}
 +Since building from source is appealing to more seasoned command line users, this guide will focus more on installing Hugo via Homebrew and Tarball.
 +{{% /note %}}
 +
 +### Install Hugo with Brew
 +
 +{{< youtube WvhCGlLcrF8 >}}
 +
 +#### Step 1: Install `brew` if you haven't already
 +
 +Go to the `brew` website, <https://brew.sh/>, and follow the directions there. The most important step is the installation from the command line:
 +
 +{{< code file="install-brew.sh" >}}
 +ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
 +{{< /code >}}
 +
 +#### Step 2: Run the `brew` Command to Install `hugo`
 +
 +Installing Hugo using `brew` is as easy as the following:
 +
 +{{< code file="install-brew.sh" >}}
 +brew install hugo
 +{{< /code >}}
 +
 +If Homebrew is working properly, you should see something similar to the following:
 +
 +```
 +==> Downloading https://homebrew.bintray.com/bottles/hugo-0.21.sierra.bottle.tar.gz
 +######################################################################### 100.0%
 +==> Pouring hugo-0.21.sierra.bottle.tar.gz
 +🍺  /usr/local/Cellar/hugo/0.21: 32 files, 17.4MB
 +```
 +
 +{{% note "Installing the Latest Hugo with Brew" %}}
 +Replace `brew install hugo` with `brew install hugo --HEAD` if you want the absolute latest in-development version.
 +{{% /note %}}
 +
 +`brew` should have updated your path to include Hugo. You can confirm by opening a new terminal window and running a few commands:
 +
 +```
 +$ # show the location of the hugo executable
 +which hugo
 +/usr/local/bin/hugo
 +
 +# show the installed version
 +ls -l $( which hugo )
 +lrwxr-xr-x  1 mdhender admin  30 Mar 28 22:19 /usr/local/bin/hugo -> ../Cellar/hugo/0.13_1/bin/hugo
 +
 +# verify that hugo runs correctly
 +hugo version
 +Hugo Static Site Generator v0.13 BuildDate: 2015-03-09T21:34:47-05:00
 +```
 +
 +### Install Hugo from Tarball
 +
 +#### Step 1: Decide on the location
 +
 +When installing from the tarball, you have to decide if you're going to install the binary in `/usr/local/bin` or in your home directory. There are three camps on this:
 +
 +1. Install it in `/usr/local/bin` so that all the users on your system have access to it. This is a good idea because it's a fairly standard place for executables. The downside is that you may need elevated privileges to put software into that location. Also, if there are multiple users on your system, they will all run the same version. Sometimes this can be an issue if you want to try out a new release.
 +
 +2. Install it in `~/bin` so that only you can execute it. This is a good idea because it's easy to do, easy to maintain, and doesn't require elevated privileges. The downside is that only you can run Hugo. If there are other users on your site, they have to maintain their own copies. That can lead to people running different versions. Of course, this does make it easier for you to experiment with different releases.
 +
 +3. Install it in your `Sites` directory. This is not a bad idea if you have only one site that you're building. It keeps every thing in a single place. If you want to try out new releases, you can make a copy of the entire site and update the Hugo executable.
 +
 +All three locations will work for you. In the interest of brevity, this guide focuses on option #2.
 +
 +#### Step 2: Download the Tarball
 +
 +1. Open <https://github.com/gohugoio/hugo/releases> in your browser.
 +
 +2. Find the current release by scrolling down and looking for the green tag that reads "Latest Release."
 +
 +3. Download the current tarball for the Mac. The name will be something like `hugo_X.Y_osx-64bit.tgz`, where `X.YY` is the release number.
 +
 +4. By default, the tarball will be saved to your `~/Downloads` directory. If you choose to use a different location, you'll need to change that in the following steps.
 +
 +#### Step 3: Confirm your download
 +
 +Verify that the tarball wasn't corrupted during the download:
 +
 +```
 +tar tvf ~/Downloads/hugo_X.Y_osx-64bit.tgz
 +-rwxrwxrwx  0 0      0           0 Feb 22 04:02 hugo_X.Y_osx-64bit/hugo_X.Y_osx-64bit.tgz
 +-rwxrwxrwx  0 0      0           0 Feb 22 03:24 hugo_X.Y_osx-64bit/README.md
 +-rwxrwxrwx  0 0      0           0 Jan 30 18:48 hugo_X.Y_osx-64bit/LICENSE.md
 +```
 +
 +The `.md` files are documentation for Hugo. The other file is the executable.
 +
 +#### Step 4: Install Into Your `bin` Directory
 +
 +```
 +# create the directory if needed
 +mkdir -p ~/bin
 +
 +# make it the working directory
 +cd ~/bin
 +
 +# extract the tarball
 +tar -xvzf ~/Downloads/hugo_X.Y_osx-64bit.tgz
 +Archive:  hugo_X.Y_osx-64bit.tgz
 +  x ./
 +  x ./hugo
 +  x ./LICENSE.md
 +  x ./README.md
 +
 +# verify that it runs
 +./hugo version
 +Hugo Static Site Generator v0.13 BuildDate: 2015-02-22T04:02:30-06:00
 +```
 +
 +You may need to add your bin directory to your `PATH` variable. The `which` command will check for us. If it can find `hugo`, it will print the full path to it. Otherwise, it will not print anything.
 +
 +```
 +# check if hugo is in the path
 +which hugo
 +/Users/USERNAME/bin/hugo
 +```
 +
 +If `hugo` is not in your `PATH`, add it by updating your `~/.bash_profile` file. First, start up an editor:
 +
 +```
 +nano ~/.bash_profile
 +```
 +
 +Add a line to update your `PATH` variable:
 +
 +```
 +export PATH=$PATH:$HOME/bin
 +```
 +
 +Then save the file by pressing Control-X, then Y to save the file and return to the prompt.
 +
 +Close the terminal and open a new terminal to pick up the changes to your profile. Verify your success by running the `which hugo` command again.
 +
 +You've successfully installed Hugo.
 +
 +### Build from Source on Mac
 +
 +If you want to compile Hugo yourself, you'll need to install Go (aka Golang). You can [install Go directly from the Go website](https://golang.org/dl/) or via Homebrew using the following command:
 +
 +```
 +brew install go
 +```
 +
 +#### Step 1: Get the Source
 +
 +If you want to compile a specific version of Hugo, go to <https://github.com/gohugoio/hugo/releases> and download the source code for the version of your choice. If you want to compile Hugo with all the latest changes (which might include bugs), clone the Hugo repository:
 +
 +```
 +git clone https://github.com/gohugoio/hugo
 +```
 +
 +{{% warning "Sometimes \"Latest\" = \"Bugs\""%}}
 +Cloning the Hugo repository directly means taking the good with the bad. By using the bleeding-edge version of Hugo, you make your development susceptible to the latest features, as well as the latest bugs. Your feedback is appreciated. If you find a bug in the latest release, [please create an issue on GitHub](https://github.com/gohugoio/hugo/issues/new).
 +{{% /warning %}}
 +
 +#### Step 2: Compiling
 +
 +Make the directory containing the source your working directory and then fetch Hugo's dependencies:
 +
 +```
 +mkdir -p src/github.com/gohugoio
 +ln -sf $(pwd) src/github.com/gohugoio/hugo
 +
 +# set the build path for Go
 +export GOPATH=$(pwd)
 +
 +go get
 +```
 +
 +This will fetch the absolute latest version of the dependencies. If Hugo fails to build, it may be the result of a dependency's author introducing a breaking change.
 +
 +Once you have properly configured your directory, you can compile Hugo using the following command:
 +
 +```
 +go build -o hugo main.go
 +```
 +
 +Then place the `hugo` executable somewhere in your `$PATH`. You're now ready to start using Hugo.
 +
 +## Windows
 +
 +The following aims to be a complete guide to installing Hugo on your Windows PC.
 +
 +{{< youtube G7umPCU-8xc >}}
 +
 +### Assumptions
 +
 +1. You will use `C:\Hugo\Sites` as the starting point for your new project.
 +2. You will use `C:\Hugo\bin` to store executable files.
 +
 +### Set up Your Directories
 +
 +You'll need a place to store the Hugo executable, your [content][], and the generated Hugo website:
 +
 +1. Open Windows Explorer.
 +2. Create a new folder: `C:\Hugo`, assuming you want Hugo on your C drive, although this can go anywhere
 +3. Create a subfolder in the Hugo folder: `C:\Hugo\bin`
 +4. Create another subfolder in Hugo: `C:\Hugo\Sites`
 +
 +### Technical Users
 +
 +1. Download the latest zipped Hugo executable from [Hugo Releases][releases].
 +2. Extract all contents to your `..\Hugo\bin` folder.
 +3. The `hugo` executable will be named as `hugo_hugo-version_platform_arch.exe`. Rename the executable to `hugo.exe` for ease of use.
 +4. In PowerShell or your preferred CLI, add the `hugo.exe` executable to your PATH by navigating to `C:\Hugo\bin` (or the location of your hugo.exe file) and use the command `set PATH=%PATH%;C:\Hugo\bin`. If the `hugo` command does not work after a reboot, you may have to run the command prompt as administrator.
 +
 +### Less-technical Users
 +
 +1. Go to the [Hugo Releases][releases] page.
 +2. The latest release is announced on top. Scroll to the bottom of the release announcement to see the downloads. They're all ZIP files.
 +3. Find the Windows files near the bottom (they're in alphabetical order, so Windows is last) – download either the 32-bit or 64-bit file depending on whether you have 32-bit or 64-bit Windows. (If you don't know, [see here](https://esupport.trendmicro.com/en-us/home/pages/technical-support/1038680.aspx).)
 +4. Move the ZIP file into your `C:\Hugo\bin` folder.
 +5. Double-click on the ZIP file and extract its contents. Be sure to extract the contents into the same `C:\Hugo\bin` folder – Windows will do this by default unless you tell it to extract somewhere else.
 +6. You should now have three new files: The hugo executable (`hugo.exe`), `LICENSE`, and `README.md`.
 +
 +Now you need to add Hugo to your Windows PATH settings:
 +
 +#### For Windows 10 Users:
 +
 +* Right click on the **Start** button.
 +* Click on **System**.
 +* Click on **Advanced System Settings** on the left.
 +* Click on the **Environment Variables...** button on the bottom.
 +* In the User variables section, find the row that starts with PATH (PATH will be all caps).
 +* Double-click on **PATH**.
 +* Click the **New...** button.
 +* Type in the folder where `hugo.exe` was extracted, which is `C:\Hugo\bin` if you went by the instructions above. *The PATH entry should be the folder where Hugo lives and not the binary.* Press <kbd>Enter</kbd> when you're done typing.
 +* Click OK at every window to exit.
 +
 +{{% note "Path Editor in Windows 10"%}}
 +The path editor in Windows 10 was added in the large [November 2015 Update](https://blogs.windows.com/windowsexperience/2015/11/12/first-major-update-for-windows-10-available-today/). You'll need to have that or a later update installed for the above steps to work. You can see what Windows 10 build you have by clicking on the <i class="fa fa-windows"></i>&nbsp;Start button → Settings → System → About. See [here](https://www.howtogeek.com/236195/how-to-find-out-which-build-and-version-of-windows-10-you-have/) for more.)
 +{{% /note %}}
 +
 +#### For Windows 7 and 8.x users:
 +
 +Windows 7 and 8.1 do not include the easy path editor included in Windows 10, so non-technical users on those platforms are advised to install a free third-party path editor like [Windows Environment Variables Editor][Windows Environment Variables Editor] or [Path Editor](https://patheditor2.codeplex.com/).
 +
 +### Verify the Executable
 +
 +Run a few commands to verify that the executable is ready to run, and then build a sample site to get started.
 +
 +#### 1. Open a Command Prompt
 +
 +At the prompt, type `hugo help` and press the <kbd>Enter</kbd> key. You should see output that starts with:
 +
 +```
 +hugo is the main command, used to build your Hugo site.
 +
 +Hugo is a Fast and Flexible Static Site Generator
 +built with love by spf13 and friends in Go.
 +
 +Complete documentation is available at https://gohugo.io/.
 +```
 +
 +If you do, then the installation is complete. If you don't, double-check the path that you placed the `hugo.exe` file in and that you typed that path correctly when you added it to your `PATH` variable. If you're still not getting the output, search the [Hugo discussion forum][forum] to see if others have already figured out our problem. If not, add a note---in the "Support" category---and be sure to include your command and the output.
 +
 +At the prompt, change your directory to the `Sites` directory.
 +
 +```
 +C:\Program Files> cd C:\Hugo\Sites
 +C:\Hugo\Sites>
 +```
 +
 +#### 2. Run the Command
 +
 +Run the command to generate a new site. I'm using `example.com` as the name of the site.
 +
 +```
 +C:\Hugo\Sites> hugo new site example.com
 +```
 +
 +You should now have a directory at `C:\Hugo\Sites\example.com`. Change into that directory and list the contents. You should get output similar to the following:
 +
 +```
 +C:\Hugo\Sites> cd example.com
 +C:\Hugo\Sites\example.com> dir
 +Directory of C:\hugo\sites\example.com
 +
 +04/13/2015  10:44 PM    <DIR>          .
 +04/13/2015  10:44 PM    <DIR>          ..
 +04/13/2015  10:44 PM    <DIR>          archetypes
 +04/13/2015  10:44 PM                83 config.toml
 +04/13/2015  10:44 PM    <DIR>          content
 +04/13/2015  10:44 PM    <DIR>          data
 +04/13/2015  10:44 PM    <DIR>          layouts
 +04/13/2015  10:44 PM    <DIR>          static
 +               1 File(s)             83 bytes
 +               7 Dir(s)   6,273,331,200 bytes free
 +```
 +
 +### Troubleshoot Windows Installation
 +
 +[@dhersam][] has created a nice video on common issues:
 +
 +{{< youtube c8fJIRNChmU >}}
 +
 +## Linux
 +
 +### Snap Package
 +
 +In any of the [Linux distributions that support snaps][snaps], you may install install the "extended" Sass/SCSS version with this command:
 +
 +    snap install hugo --channel=extended
 +
 +To install the non-extended version without Sass/SCSS support:
 +
 +    snap install hugo
 +
 +To switch between the two, use either `snap refresh hugo --channel=extended` or `snap refresh hugo --channel=stable`.
 +
 +{{% note %}}
++Hugo installed via Snap can write only inside the user’s `$HOME` directory---and gvfs-mounted directories owned by the user---because of Snaps’ confinement and security model. More information is also available [in this related GitHub issue](https://github.com/gohugoio/hugo/issues/3143).
 +{{% /note %}}
 +
 +### Debian and Ubuntu
 +
 +[@anthonyfok](https://github.com/anthonyfok) and friends in the [Debian Go Packaging Team](https://go-team.pages.debian.net/) maintains an official hugo [Debian package](https://packages.debian.org/hugo) which is shared with [Ubuntu](https://packages.ubuntu.com/hugo) and is installable via `apt-get`:
 +
 +    sudo apt-get install hugo
 +
 +This installs the "extended" Sass/SCSS version.
 +
 +### Arch Linux
 +
 +You can also install Hugo from the Arch Linux [community](https://www.archlinux.org/packages/community/x86_64/hugo/) repository. Applies also to derivatives such as Manjaro.
 +
 +```
 +sudo pacman -Syu hugo
 +```
 +
 +### Fedora, Red Hat and CentOS
 +
 +Fedora maintains an [official package for Hugo](https://apps.fedoraproject.org/packages/hugo) which may be installed with:
 +
 +    sudo dnf install hugo
 +
 +For the latest version, the Hugo package maintained by [@daftaupe](https://github.com/daftaupe) at Fedora Copr is recommended:
 +
 +* <https://copr.fedorainfracloud.org/coprs/daftaupe/hugo/>
 +
 +See the [related discussion in the Hugo forums][redhatforum].
 +
 +### Solus
 +
 +Solus includes Hugo in its package repository, it may be installed with:
 +
 +```
 +sudo eopkg install hugo
 +```
 +
 +## OpenBSD
 +
 +OpenBSD provides a package for Hugo via `pkg_add`:
 +
 +    doas pkg_add hugo
 +
 +
 +## Upgrade Hugo
 +
 +Upgrading Hugo is as easy as downloading and replacing the executable you’ve placed in your `PATH` or run `brew upgrade hugo` if using Homebrew.
 +
 +## Install Pygments (Optional)
 +
 +The Hugo executable has one *optional* external dependency for source code highlighting ([Pygments][pygments]).
 +
 +If you want to have source code highlighting using the [highlight shortcode][], you need to install the Python-based Pygments program. The procedure is outlined on the [Pygments homepage][pygments].
 +
 +## Next Steps
 +
 +Now that you've installed Hugo, read the [Quick Start guide][quickstart] and explore the rest of the documentation. If you have questions, ask the Hugo community directly by visiting the [Hugo Discussion Forum][forum].
 +
 +[brew]: https://brew.sh/
 +[Chocolatey]: https://chocolatey.org/
 +[content]: /content-management/
 +[@dhersam]: https://github.com/dhersam
 +[forum]: https://discourse.gohugo.io
 +[mage]: https://github.com/magefile/mage
 +[dep]: https://github.com/golang/dep
 +[highlight shortcode]: /content-management/shortcodes/#highlight
 +[installgit]: http://git-scm.com/
 +[installgo]: https://golang.org/dl/
++[linuxbrew]: https://linuxbrew.sh/
 +[Path Editor]: https://patheditor2.codeplex.com/
 +[pygments]: http://pygments.org
 +[quickstart]: /getting-started/quick-start/
 +[redhatforum]: https://discourse.gohugo.io/t/solved-fedora-copr-repository-out-of-service/2491
 +[releases]: https://github.com/gohugoio/hugo/releases
 +[Scoop]: https://scoop.sh/
 +[snaps]: http://snapcraft.io/docs/core/install
 +[windowsarch]: https://esupport.trendmicro.com/en-us/home/pages/technical-support/1038680.aspx
 +[Windows Environment Variables Editor]: http://eveditor.com/
index b1b5fec316ef28946b62dc40869de1fb8b2c871f,0000000000000000000000000000000000000000..d090bc000671fad374b3153bcdeccfb08ab0cd39
mode 100644,000000..100644
--- /dev/null
@@@ -1,159 -1,0 +1,182 @@@
- Edit the newly created content file if you want.
 +---
 +title: Quick Start
 +linktitle: Quick Start
 +description: Create a Hugo site using the beautiful Ananke theme.
 +date: 2013-07-01
 +publishdate: 2013-07-01
 +categories: [getting started]
 +keywords: [quick start,usage]
 +authors: [Shekhar Gulati, Ryan Watters]
 +menu:
 +  docs:
 +    parent: "getting-started"
 +    weight: 10
 +weight: 10
 +sections_weight: 10
 +draft: false
 +aliases: [/quickstart/,/overview/quickstart/]
 +toc: true
 +---
 +
 +{{% note %}}
 +This quick start uses `macOS` in the examples. For instructions about how to install Hugo on other operating systems, see [install](/getting-started/installing).
 +
 +It is recommended to have [Git installed](https://git-scm.com/downloads) to run this tutorial.
 +{{% /note %}}
 +
 +
 +
 +## Step 1: Install Hugo
 +
 +{{% note %}}
 +`Homebrew`, a package manager for `macOS`,  can be installed from [brew.sh](https://brew.sh/). See [install](/getting-started/installing) if you are running Windows etc.
 +{{% /note %}}
 +
 +```bash
 +brew install hugo
 +```
 +
 +To verify your new install:
 +
 +```bash
 +hugo version
 +```
 +
 +
 +{{< asciicast ItACREbFgvJ0HjnSNeTknxWy9 >}}
 +
 +
 +## Step 2: Create a New Site
 +
 +```bash
 +hugo new site quickstart
 +```
 +
 +The above will create a new Hugo site in a folder named `quickstart`.
 +
 +{{< asciicast 3mf1JGaN0AX0Z7j5kLGl3hSh8 >}}
 +
 +
 +## Step 3: Add a Theme
 +
 +See [themes.gohugo.io](https://themes.gohugo.io/) for a list of themes to consider. This quickstart uses the beautiful [Ananke theme](https://themes.gohugo.io/gohugo-theme-ananke/).
 +
 +```bash
 +cd quickstart
 +
 +# Download the theme
 +git init
 +git submodule add https://github.com/budparr/gohugo-theme-ananke.git themes/ananke
 +# Note for non-git users:
 +#   - If you do not have git installed, you can download the archive of the latest
 +#     version of this theme from:
 +#       https://github.com/budparr/gohugo-theme-ananke/archive/master.zip
 +#   - Extract that .zip file to get a "gohugo-theme-ananke-master" directory.
 +#   - Rename that directory to "ananke", and move it into the "themes/" directory.
 +# End of note for non-git users.
 +
 +# Edit your config.toml configuration file
 +# and add the Ananke theme.
 +echo 'theme = "ananke"' >> config.toml
 +```
 +
 +
 +{{< asciicast 7naKerRYUGVPj8kiDmdh5k5h9 >}}
 +
++
 +## Step 4: Add Some Content
 +
++You can manually create content files (for example as `content/<CATEGORY>/<FILE>.<FORMAT>`) and provide metadata in them, however you can use `new` commend to do few things for you (like add title and date):
++
 +```
 +hugo new posts/my-first-post.md
 +```
 +
 +{{< asciicast eUojYCfRTZvkEiqc52fUsJRBR >}}
 +
++Edit the newly created content file if you want, it will start with something like this:
 +
++```markdown
++---
++title: "My First Post"
++date: 2019-03-26T08:47:11+01:00
++draft: true
++---
++
++```
 +
 +
 +## Step 5: Start the Hugo server
 +
 +Now, start the Hugo server with [drafts](/getting-started/usage/#draft-future-and-expired-content) enabled:
 +
 +{{< asciicast BvJBsF6egk9c163bMsObhuNXj >}}
 +
 +
 +
 +```
 +▶ hugo server -D
 +
 +                   | EN
 ++------------------+----+
 +  Pages            | 10
 +  Paginator pages  |  0
 +  Non-page files   |  0
 +  Static files     |  3
 +  Processed images |  0
 +  Aliases          |  1
 +  Sitemaps         |  1
 +  Cleaned          |  0
 +
 +Total in 11 ms
 +Watching for changes in /Users/bep/quickstart/{content,data,layouts,static,themes}
 +Watching for config changes in /Users/bep/quickstart/config.toml
 +Environment: "development"
 +Serving pages from memory
 +Running in Fast Render Mode. For full rebuilds on change: hugo server --disableFastRender
 +Web Server is available at http://localhost:1313/ (bind address 127.0.0.1)
 +Press Ctrl+C to stop
 +```
 +
 +
 +**Navigate to your new site at [http://localhost:1313/](http://localhost:1313/).**
 +
++Feel free to edit or add new content and simply refresh in browser to see changes quickly (You might need to force refresh in webbrowser, something like Ctrl-R usually works).
++
 +
 +## Step 6: Customize the Theme
 +
 +Your new site already looks great, but you will want to tweak it a little before you release it to the public.
 +
 +### Site Configuration
 +
 +Open up `config.toml` in a text editor:
 +
 +```
 +baseURL = "https://example.org/"
 +languageCode = "en-us"
 +title = "My New Hugo Site"
 +theme = "ananke"
 +```
 +
 +Replace the `title` above with something more personal. Also, if you already have a domain ready, set the `baseURL`. Note that this value is not needed when running the local development server.
 +
 +{{% note %}}
 +**Tip:** Make the changes to the site configuration or any other file in your site while the Hugo server is running, and you will see the changes in the browser right away, though you may need to [clear your cache](https://kb.iu.edu/d/ahic).
 +{{% /note %}}
 +
 +
 +For theme specific configuration options, see the [theme site](https://github.com/budparr/gohugo-theme-ananke).
 +
 +**For further theme customization, see [Customize a Theme](/themes/customizing/).**
 +
++
++### Step 7: Build static pages
++
++It is simple. Just call:
++
++```
++hugo
++```
++
++Output will be in `./public/` directory by default (`-d`/`--destination` flag to change it, or set `publishdir` in the config file).
index 37b82ab2b92a3ffde13feba5c437f7bd2302546f,0000000000000000000000000000000000000000..8df6bc87cf7f08c19fa8bd409869e9e25dc4acca
mode 100644,000000..100644
--- /dev/null
@@@ -1,252 -1,0 +1,251 @@@
- lastmod: 2017-03-30
 +---
 +title: Host on GitHub
 +linktitle: Host on GitHub
 +description: Deploy Hugo as a GitHub Pages project or personal/organizational site and automate the whole process with a simple shell script.
 +date: 2014-03-21
 +publishdate: 2014-03-21
- 4. Make your website work locally (`hugo server` or `hugo server -t <YOURTHEME>`) and open your browser to <http://localhost:1313>.
++lastmod: 2018-09-22
 +categories: [hosting and deployment]
 +keywords: [github,git,deployment,hosting]
 +authors: [Spencer Lyon, Gunnar Morling]
 +menu:
 +  docs:
 +    parent: "hosting-and-deployment"
 +    weight: 30
 +weight: 30
 +sections_weight: 30
 +draft: false
 +toc: true
 +aliases: [/tutorials/github-pages-blog/]
 +---
 +
 +GitHub provides free and fast static hosting over SSL for personal, organization, or project pages directly from a GitHub repository via its [GitHub Pages service][].
 +
 +## Assumptions
 +
 +1. You have Git 2.8 or greater [installed on your machine][installgit].
 +2. You have a GitHub account. [Signing up][ghsignup] for GitHub is free.
 +3. You have a ready-to-publish Hugo website or have at least completed the [Quick Start][].
 +
 +## Types of GitHub Pages
 +
 +There are 2 types of GitHub Pages:
 +
 +- User/Organization Pages (`https://<USERNAME|ORGANIZATION>.github.io/`)
 +- Project Pages (`https://<USERNAME|ORGANIZATION>.github.io/<PROJECT>/`)
 +
 +Please refer to the [GitHub Pages documentation][ghorgs] to decide which type of site you would like to create as it will determine which of the below methods to use.
 +
 +To create a User/Organization Pages site, follow the single method in the *GitHub User and Organization Pages* section below.
 +
 +To create a Project Pages site, choose a method from the *Project Pages* section below.
 +
 +## GitHub User or Organization Pages
 +
 +As mentioned [the GitHub Pages documentation][ghorgs], you can host a user/organization page in addition to project pages. Here are the key differences in GitHub Pages websites for Users and Organizations:
 +
 +1. You must use a `<USERNAME>.github.io` to host your **generated** content
 +2. Content from the `master` branch will be used to publish your GitHub Pages site
 +
 +This is a much simpler setup as your Hugo files and generated content are published into two different repositories.
 +
 +### Step-by-step Instructions
 +
 +1. Create a `<YOUR-PROJECT>` (e.g. `blog`) repository on GitHub. This repository will contain Hugo's content and other source files.
 +2. Create a `<USERNAME>.github.io` GitHub repository. This is the repository that will contain the fully rendered version of your Hugo website.
 +3. `git clone <YOUR-PROJECT-URL> && cd <YOUR-PROJECT>`
-     * `rm -rf public` to completely remove the `public` directory
- 6. `git submodule add -b master git@github.com:<USERNAME>/<USERNAME>.github.io.git public`. This creates a git [submodule][]. Now when you run the `hugo` command to build your site to `public`, the created `public` directory will have a different remote origin (i.e. hosted GitHub repository). You can automate some of these steps with the following script.
++4. Paste your existing Hugo project into a new local `<YOUR-PROJECT>` repository. Make sure your website works locally (`hugo server` or `hugo server -t <YOURTHEME>`) and open your browser to <http://localhost:1313>.
 +5. Once you are happy with the results:
 +    * Press <kbd>Ctrl</kbd>+<kbd>C</kbd> to kill the server
- You're almost done. You can also add a `deploy.sh` script to automate the preceding steps for you. You can also make it executable with `chmod +x deploy.sh`.
++    * Before proceeding run `rm -rf public` to completely remove the `public` directory 
++6. `git submodule add -b master git@github.com:<USERNAME>/<USERNAME>.github.io.git public`. This creates a git [submodule][]. Now when you run the `hugo` command to build your site to `public`, the created `public` directory will have a different remote origin (i.e. hosted GitHub repository).
 +
 +### Put it Into a Script
 +
- DIR=$(dirname "$0")
- cd $DIR/..
- if [[ $(git status -s) ]]
++You're almost done. In order to automate next steps create a `deploy.sh` script. You can also make it executable with `chmod +x deploy.sh`.
 +
 +The following are the contents of the `deploy.sh` script:
 +
 +```
 +#!/bin/bash
 +
 +echo -e "\033[0;32mDeploying updates to GitHub...\033[0m"
 +
 +# Build the project.
 +hugo # if using a theme, replace with `hugo -t <YOURTHEME>`
 +
 +# Go To Public folder
 +cd public
 +# Add changes to git.
 +git add .
 +
 +# Commit changes.
 +msg="rebuilding site `date`"
 +if [ $# -eq 1 ]
 +  then msg="$1"
 +fi
 +git commit -m "$msg"
 +
 +# Push source and build repos.
 +git push origin master
 +
 +# Come Back up to the Project Root
 +cd ..
 +```
 +
 +
 +You can then run `./deploy.sh "Your optional commit message"` to send changes to `<USERNAME>.github.io`. Note that you likely will want to commit changes to your `<YOUR-PROJECT>` repository as well.
 +
 +That's it! Your personal page should be up and running at `https://<USERNAME>.github.io` within a couple minutes.
 +
 +## GitHub Project Pages
 +
 +{{% note %}}
 +Make sure your `baseURL` key-value in your [site configuration](/getting-started/configuration/) reflects the full URL of your GitHub pages repository if you're using the default GH Pages URL (e.g., `<USERNAME>.github.io/<PROJECT>/`) and not a custom domain.
 +{{% /note %}}
 +
 +### Deployment of Project Pages from `/docs` folder on `master` branch
 +
 +[As described in the GitHub Pages documentation][ghpfromdocs], you can deploy from a folder called `docs/` on your master branch. To effectively use this feature with Hugo, you need to change the Hugo publish directory in your [site's][config] `config.toml` and `config.yaml`, respectively:
 +
 +```
 +publishDir = "docs"
 +```
 +```
 +publishDir: docs
 +```
 +
 +After running `hugo`, push your master branch to the remote repository and choose the `docs/` folder as the website source of your repo. Do the following from within your GitHub project:
 +
 +1. Go to **Settings** &rarr; **GitHub Pages**
 +2. From **Source**,  select "master branch /docs folder". If the option isn't enabled, you likely do not have a `docs/` folder in the root of your project.
 +
 +{{% note %}}
 +The `docs/` option is the simplest approach but requires you set a publish directory in your site configuration. You cannot currently configure GitHub pages to publish from another directory on master, and not everyone prefers the output site live concomitantly with source files in version control.
 +{{% /note %}}
 +
 +### Deployment of Project Pages From Your `gh-pages` branch
 +
 +You can also tell GitHub pages to treat your `master` branch as the published site or point to a separate `gh-pages` branch. The latter approach is a bit more complex but has some advantages:
 +
 +* It keeps your source and generated website in different branches and therefore maintains version control history for both.
 +* Unlike the preceding `docs/` option, it uses the default `public` folder.
 +
 +#### Preparations for `gh-pages` Branch
 +
 +These steps only need to be done once. Replace `upstream` with the name of your remote; e.g., `origin`:
 +
 +##### Add the `public` Folder
 +
 +First, add the `public` folder to your `.gitignore` file at the project root so that the directory is ignored on the master branch:
 +
 +```
 +echo "public" >> .gitignore
 +```
 +
 +##### Initialize Your `gh-pages` Branch
 +
 +You can now initialize your `gh-pages` branch as an empty [orphan branch][]:
 +
 +```
 +git checkout --orphan gh-pages
 +git reset --hard
 +git commit --allow-empty -m "Initializing gh-pages branch"
 +git push upstream gh-pages
 +git checkout master
 +```
 +
 +#### Build and Deployment
 +
 +Now check out the `gh-pages` branch into your `public` folder using git's [worktree feature][]. Essentially, the worktree allows you to have multiple branches of the same local repository to be checked out in different directories:
 +
 +```
 +rm -rf public
 +git worktree add -B gh-pages public upstream/gh-pages
 +```
 +
 +Regenerate the site using the `hugo` command and commit the generated files on the `gh-pages` branch:
 +
 +{{< code file="commit-gh-pages-files.sh">}}
 +hugo
 +cd public && git add --all && git commit -m "Publishing to gh-pages" && cd ..
 +{{< /code >}}
 +
 +If the changes in your local `gh-pages` branch look alright, push them to the remote repo:
 +
 +```
 +git push upstream gh-pages
 +```
 +
 +##### Set `gh-pages` as Your Publish Branch
 +
 +In order to use your `gh-pages` branch as your publishing branch, you'll need to configure the repository within the GitHub UI. This will likely happen automatically once GitHub realizes you've created this branch. You can also set the branch manually from within your GitHub project:
 +
 +1. Go to **Settings** &rarr; **GitHub Pages**
 +2. From **Source**,  select "gh-pages branch" and then **Save**. If the option isn't enabled, you likely have not created the branch yet OR you have not pushed the branch from your local machine to the hosted repository on GitHub.
 +
 +After a short while, you'll see the updated contents on your GitHub Pages site.
 +
 +#### Put it Into a Script
 +
 +To automate these steps, you can create a script with the following contents:
 +
 +{{< code file="publish_to_ghpages.sh" >}}
 +#!/bin/sh
 +
- This will abort if there are pending changes in the working directory and also makes sure that all previously existing output files are removed. Adjust the script to taste, e.g. to include the final push to the remote repository if you don't need to take a look at the gh-pages branch before pushing. Or adding `echo yourdomainname.com >> CNAME` if you set up for your gh-pages to use customize domain.
++if [ "`git status -s`" ]
 +then
 +    echo "The working directory is dirty. Please commit any pending changes."
 +    exit 1;
 +fi
 +
 +echo "Deleting old publication"
 +rm -rf public
 +mkdir public
 +git worktree prune
 +rm -rf .git/worktrees/public/
 +
 +echo "Checking out gh-pages branch into public"
 +git worktree add -B gh-pages public upstream/gh-pages
 +
 +echo "Removing existing files"
 +rm -rf public/*
 +
 +echo "Generating site"
 +hugo
 +
 +echo "Updating gh-pages branch"
 +cd public && git add --all && git commit -m "Publishing to gh-pages (publish.sh)"
++
++#echo "Pushing to github"
++#git push --all
 +{{< /code >}}
 +
++This will abort if there are pending changes in the working directory and also makes sure that all previously existing output files are removed. Adjust the script to taste, e.g. to include the final push to the remote repository if you don't need to take a look at the gh-pages branch before pushing.
 +
 +### Deployment of Project Pages from Your `master` Branch
 +
 +To use `master` as your publishing branch, you'll need your rendered website to live at the root of the GitHub repository. Steps should be similar to that of the `gh-pages` branch, with the exception that you will create your GitHub repository with the `public` directory as the root. Note that this does not provide the same benefits of the `gh-pages` branch in keeping your source and output in separate, but version controlled, branches within the same repo.
 +
 +You will also need to set `master` as your publishable branch from within the GitHub UI:
 +
 +1. Go to **Settings** &rarr; **GitHub Pages**
 +2. From **Source**,  select "master branch" and then **Save**.
 +
 +## Use a Custom Domain
 +
 +If you'd like to use a custom domain for your GitHub Pages site, create a file `static/CNAME`. Your custom domain name should be the only contents inside `CNAME`. Since it's inside `static`, the published site will contain the CNAME file at the root of the published site, which is a requirements of GitHub Pages.
 +
 +Refer to the [official documentation for custom domains][domains] for further information.
 +
 +[config]: /getting-started/configuration/
 +[domains]: https://help.github.com/articles/using-a-custom-domain-with-github-pages/
 +[ghorgs]: https://help.github.com/articles/user-organization-and-project-pages/#user--organization-pages
 +[ghpfromdocs]: https://help.github.com/articles/configuring-a-publishing-source-for-github-pages/#publishing-your-github-pages-site-from-a-docs-folder-on-your-master-branch
 +[ghsignup]: https://github.com/join
 +[GitHub Pages service]: https://help.github.com/articles/what-is-github-pages/
 +[installgit]: https://git-scm.com/downloads
 +[orphan branch]: https://git-scm.com/docs/git-checkout/#git-checkout---orphanltnewbranchgt
 +[Quick Start]: /getting-started/quick-start/
 +[submodule]: https://github.com/blog/2104-working-with-submodules
 +[worktree feature]: https://git-scm.com/docs/git-worktree
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..c8fceea7ccc6fe98d01050615b469fcdce348602
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,93 @@@
++---
++title: Host on Render
++linktitle: Host on Render
++description: Host your Hugo site for free with Render's global CDN, fully-managed SSL and auto deploys from GitHub.
++date: 2019-06-06
++publishdate: 2019-06-06
++lastmod: 2019-06-21
++categories: [hosting and deployment]
++keywords: [render,hosting,deployment]
++authors: [Anurag Goel]
++menu:
++  docs:
++    parent: "hosting-and-deployment"
++    weight: 10
++weight: 10
++sections_weight: 10
++draft: false
++aliases: []
++toc: true
++---
++
++## Introduction
++
++[Render](https://render.com) is a fully-managed cloud platform where you can host static sites, backend APIs, databases, cron jobs, and all your other apps in one place.
++
++Static sites are **completely free** on Render and include the following:
++
++- Continuous, automatic builds & deploys from GitHub.
++- Automatic SSL certificates through [Let's Encrypt](https://letsencrypt.org).
++- Instant cache invalidation with a lightning fast, global CDN.
++- Unlimited collaborators.
++- Unlimited [custom domains](https://render.com/docs/custom-domains).
++- Automatic [Brotli compression](https://en.wikipedia.org/wiki/Brotli) for faster sites.
++- Native HTTP/2 support.
++- [Pull Request Previews](https://render.com/docs/pull-request-previews).
++- Automatic HTTP → HTTPS redirects.
++- Custom URL redirects and rewrites.
++
++## Assumptions
++
++* You have an account with GitHub.
++* You have completed the [Quick Start][] or have a Hugo website you are ready to deploy and share with the world.
++* You have a Render account. You can sign up at https://render.com/register.
++
++## Deployment
++
++You can set up a Hugo site on Render in two quick steps:
++
++1. Create a new **Web Service** on Render, and give Render permission to access your GitHub repo.
++2. Use the following values during creation:
++
++  Field                | Value
++  -------------------  |  -------------------
++ **Environment**       | `Static Site`
++ **Build Command**     | `hugo --gc --minify` (or our own build command)
++ **Publish Directory** | `public` (or your own output directory)
++
++That's it! Your site will be live on your Render URL (which looks like `yoursite.onrender.com`) as soon as the build is done.
++
++## Continuous Deploys
++
++Now that Render is connected to your repo, it will **automatically build and publish your site** any time you push to GitHub.
++
++You can choose to disable auto deploys under the **Settings** section for your site and deploy it manually from the Render dashboard.
++
++## CDN and Cache Invalidation
++
++Render hosts your site on a global, lightning fast CDN which ensures the fastest possible download times for all your users across the globe.
++
++Every deploy automatically and instantly invalidates the CDN cache, so your users can always access the latest content on your site.
++
++## Custom Domains
++
++Add your own domains to your site easily using Render's [custom domains](https://render.com/docs/custom-domains) guide.
++
++## Pull Request Previews
++
++With Pull Request (PR) previews, you can visualize changes introduced in a pull request instead of simply relying on code reviews.
++
++Once enabled, every PR for your site will automatically generate a new static site based on the code in the PR. It will have its own URL, and it will be deleted automatically when the PR is closed.
++
++Read more about [Pull Request Previews](https://render.com/docs/pull-request-previews) on Render.
++
++## Hugo Themes
++
++Render automatically downloads all Git submodules defined in your Git repo on every build. This way Hugo themes added as submodules work as expected.
++
++## Support
++
++Chat with Render developers at https://render.com/chat or email `support@render.com` if you need help.
++
++
++[Quick Start]: /getting-started/quick-start/
index 7aa3f100aab3641acd222b16637c912c3c488857,0000000000000000000000000000000000000000..4f7aa643234e9a34d2710022d7265252f5fd3bb8
mode 100755,000000..100755
--- /dev/null
@@@ -1,29 -1,0 +1,29 @@@
- Fingerprinting and [SRI](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) can be applied to any asset file using `resources.Fingerpint` which takes two arguments, the resource object and a [hash function](https://en.wikipedia.org/wiki/Cryptographic_hash_function). 
 +---
 +title: Fingerprinting and SRI
 +description: Hugo Pipes allows Fingerprinting and Subresource Integrity.
 +date: 2018-07-14
 +publishdate: 2018-07-14
 +lastmod: 2018-07-14
 +categories: [asset management]
 +keywords: []
 +menu:
 +  docs:
 +    parent: "pipes"
 +    weight: 70
 +weight: 70
 +sections_weight: 70
 +draft: false
 +---
 +
 +
- ```
++Fingerprinting and [SRI](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) can be applied to any asset file using `resources.Fingerprint` which takes two arguments, the resource object and a [hash function](https://en.wikipedia.org/wiki/Cryptographic_hash_function). 
 +
 +The default hash function is `sha256`. Other available functions are `sha384` (from Hugo `0.55`), `sha512` and `md5`.
 +
 +Any so processed asset will bear a `.Data.Integrity` property containing an integrity string, which is made up of the name of the hash function, one hyphen and the base64-encoded hash sum.
 +
 +```go-html-template
 +{{ $js := resources.Get "js/global.js" }}
 +{{ $secureJS := $js | resources.Fingerprint "sha512" }}
 +<script type="text/javascript" src="{{ $secureJS.Permalink }}" integrity="{{ $secureJS.Data.Integrity }}"></script>
++```
index 53253828441f2f87b9b6e61cb401d76a96194620,0000000000000000000000000000000000000000..08706ffceaf266f58b4b08c3863fe968abccb050
mode 100644,000000..100644
--- /dev/null
@@@ -1,54 -1,0 +1,54 @@@
-     *`seq`, a sequence generator very similar to its Gnu countepart
 +---
 +date: 2015-05-26T01:32:45Z
 +description: "The v0.14.0 Hugo release brings of the most demanded features to Hugo. The foundation of Hugo is stabilizing nicely and a lot of polish has been added. We’ve expanded support for additional content types with support for AsciiDoc, Restructured Text, HTML and Markdown."
 +title: "Hugo 0.14"
 +categories: ["Releases"]
 +---
 +
 +The v0.14.0 Hugo release brings of the most demanded features to Hugo. The foundation of Hugo is stabilizing nicely and a lot of polish has been added. We’ve expanded support for additional content types with support for AsciiDoc, Restructured Text, HTML and Markdown. Some of these types depend on external libraries as there does not currently exist native support in Go. We’ve tried to make the experience as seamless as possible. Look for more improvements here in upcoming releases.
 +
 +A lot of work has been done to improve the user experience, with extra polish to the Windows experience. Hugo errors are more helpful overall and Hugo now can detect if it’s being run in Windows Explorer and provide additional instructions to run it via the command prompt.
 +
 +The Hugo community continues to grow. Hugo has over 4000 stars on github, 165 contributors, 35 themes and 1000s of happy users. It is now the 5th most popular static site generator (by Stars) and has the 3rd largest contributor community.
 +
 +This release represents over **240 contributions by 36 contributors** to the main Hugo codebase.
 +
 +Big shout out to [@bep](https://github.com/bep) who led the development of Hugo this release, [@anthonyfok](https://github.com/anthonyfok), [@eparis](https://github.com/eparis), [@SchumacherFM](https://github.com/SchumacherFM), [@RickCogley](https://github.com/RickCogley) & [@mdhender](https://github.com/mdhender) for their significant contributions and [@tatsushid](https://github.com/tatsushid) for his continuous improvements to the templates. Also a big thanks to all the theme creators. 11 new themes have been added since last release and the [hugoThemes repo now has previews of all of them](https://github.com/spf13/hugoThemes/blob/master/README.md#theme-list).
 +
 +Hugo also depends on a lot of other great projects. A big thanks to all of our dependencies inclding:
 +[cobra](https://github.com/spf13/cobra), [viper](https://github.com/spf13/viper), [blackfriday](https://github.com/russross/blackfriday), [pflag](https://github.com/spf13/pflag), [HugoThemes](https://github.com/spf13/hugothemes), [BurntSushi/Toml](github.com/BurntSushi/toml), [goYaml](https://github.com/go-yaml/yaml/tree/v2), and the Go standard library.
 +
 +## New features
 +- Support for all file types in content directory.
 +  - If dedicated file type handler isn’t found it will be copied to the destination.
 +- Add `AsciiDoc` support using external helpers.
 +- Add experimental support for [`Mmark`](https://github.com/miekg/mmark) markdown processor
 +- Bash autocomplete support via `genautocomplete` command
 +- Add section menu support for a [Section Menu for "the Lazy Blogger"](http://gohugo.io/extras/menus.md#section-menu-for-the-lazy-blogger")
 +- Add support for `Ace` base templates
 +- Adding `RelativeURLs = true` to site config will now make all the relative URLs relative to the content root.
 +- New template functions:
 +  - `getenv`
 +  - The string functions `substr` and `slicestr`
++    *`seq`, a sequence generator very similar to its Gnu counterpart
 +  - `absURL` and `relURL`, both of which takes the `BaseURL` setting into account
 +
 +## Improvements
 +- Highlighting with `Pygments` is now cached to disk -- expect a major speed boost if you use it!
 +- More Pygments highlighting options, including `line numbers`
 +- Show help information to Windows users who try to double click on `hugo.exe`.
 +- Add `bind` flag to `hugo server` to set the interface to which the server will bind
 +- Add support for `canonifyurls` in `srcset`
 +- Add shortcode support for HTML (content) files
 +- Allow the same `shortcode` to  be used with or without inline content
 +- Configurable RSS output filename
 +
 +## Bugfixes
 +- Fix panic with paginator and zero pages in result set.
 +- Fix crossrefs on Windows.
 +- Fix `eq` and `ne` template functions when used with a raw number combined with the result of `add`, `sub` etc.
 +- Fix paginator with uglyurls
 +- Fix [#998](https://github.com/spf13/hugo/issues/988), supporting UTF8 characters in Permalinks.
 +
 +## Notices
 +- To get variable and function names in line with the rest of the Go community, a set of variable and function names has been deprecated: These will still  work in 0.14, but will be removed in 0.15. What to do should be obvious by  the build log; `getJson` to `getJSON`, `getCsv` to `getCSV`, `safeHtml` to   `safeHTML`, `safeCss` to `safeCSS`, `safeUrl` to `safeURL`, `Url` to `URL`,  `UrlPath` to `URLPath`, `BaseUrl` to `BaseURL`, `Recent` to `Pages`,  `Indexes` to `Taxonomies`.
index 7fc19e637ea47267501393411e058a5df5d77299,0000000000000000000000000000000000000000..849a0028cfba390f6da68d5691bdf79ba92639b2
mode 100644,000000..100644
--- /dev/null
@@@ -1,79 -1,0 +1,74 @@@
- The two big new items in this release is [Inline Shortcodes](https://gohugo.io//templates/shortcode-templates/#inline-shortcodes) and [Consolidated File Caches](https://gohugo.io/getting-started/configuration/#configure-file-caches). In Hugo we really care about build speed, and caching is important. With this release, you get much better control over your cache configuration, which is especially useful when building on a Continous Integration server (Netlify, CircleCI or similar). Inline Shortcodes was implemented to help the Bootstrap project [move their documentation site](https://github.com/twbs/bootstrap/issues/24475#issuecomment-441238128) to Hugo. Note that this feature is disabled by default. To enable, set `enableInlineShortcodes = true` in your site config. Worth mentioning is also the new `param` shortcode, which looks up the param in page front matter with the site's parameter as a fall back.
 +
 +---
 +date: 2018-11-28
 +title: "And Now: Hugo 0.52"
 +description: "Configurable file caches, inline shortcodes, and more ..."
 +categories: ["Releases"]
 +---
 +
- Many have also been busy writing and fixing the documentation in [hugoDocs](https://github.com/gohugoio/hugoDocs), 
++The two big new items in this release is [Inline Shortcodes](https://gohugo.io//templates/shortcode-templates/#inline-shortcodes) and [Consolidated File Caches](https://gohugo.io/getting-started/configuration/#configure-file-caches). In Hugo we really care about build speed, and caching is important. With this release, you get much better control over your cache configuration, which is especially useful when building on a Continuous Integration server (Netlify, CircleCI or similar). Inline Shortcodes was implemented to help the Bootstrap project [move their documentation site](https://github.com/twbs/bootstrap/issues/24475#issuecomment-441238128) to Hugo. Note that this feature is disabled by default. To enable, set `enableInlineShortcodes = true` in your site config. Worth mentioning is also the new `param` shortcode, which looks up the param in page front matter with the site's parameter as a fall back.
 +
 +This release represents **33 contributions by 7 contributors** to the main Hugo code base.
 +[@bep](https://github.com/bep) leads the Hugo development with a significant amount of contributions, but also a big shoutout to [@moorereason](https://github.com/moorereason), [@emirb](https://github.com/emirb), and [@allizad](https://github.com/allizad) for their ongoing contributions.
 +And a big thanks to [@digitalcraftsman](https://github.com/digitalcraftsman) and [@onedrawingperday](https://github.com/onedrawingperday) for their relentless work on keeping the themes site in pristine condition and to [@kaushalmodi](https://github.com/kaushalmodi) for his great work on the documentation site.
 +
- * Add tests [ed698e94](https://github.com/gohugoio/hugo/commit/ed698e94c12c05bfc392eaca4f0c8442eac64906) [@moorereason](https://github.com/moorereason) 
- * Regenerate templates [89e2716d](https://github.com/gohugoio/hugo/commit/89e2716d290708ccde0a6f65504c1650c2f41b3d) [@bep](https://github.com/bep) 
++Many have also been busy writing and fixing the documentation in [hugoDocs](https://github.com/gohugoio/hugoDocs),
 +which has received **10 contributions by 4 contributors**. A special thanks to [@budparr](https://github.com/budparr), [@bep](https://github.com/bep), [@allizad](https://github.com/allizad), and [@funkydan2](https://github.com/funkydan2) for their work on the documentation site.
 +
 +Hugo now has:
 +
 +* 30595+ [stars](https://github.com/gohugoio/hugo/stargazers)
 +* 441+ [contributors](https://github.com/gohugoio/hugo/graphs/contributors)
 +* 270+ [themes](http://themes.gohugo.io/)
 +
 +## Enhancements
 +
 +### Templates
 +
- * Remove duplicate mapstructure depdendency [7e75aeca](https://github.com/gohugoio/hugo/commit/7e75aeca80aead50d64902d2ff47e4ad4d013352) [@bep](https://github.com/bep) 
- * Add dependency list to README [e14e0b19](https://github.com/gohugoio/hugo/commit/e14e0b192f39812e3c3d5202d34ee907021412bb) [@bep](https://github.com/bep) 
++* Add tests [ed698e94](https://github.com/gohugoio/hugo/commit/ed698e94c12c05bfc392eaca4f0c8442eac64906) [@moorereason](https://github.com/moorereason)
++* Regenerate templates [89e2716d](https://github.com/gohugoio/hugo/commit/89e2716d290708ccde0a6f65504c1650c2f41b3d) [@bep](https://github.com/bep)
 +* Add "param" shortcode [f37c5a25](https://github.com/gohugoio/hugo/commit/f37c5a25676db89c0e804ccaac69bb392758192b) [@bep](https://github.com/bep) [#4010](https://github.com/gohugoio/hugo/issues/4010)
 +* Add float64 support to where [112461fd](https://github.com/gohugoio/hugo/commit/112461fded0d7970817ce7bf476c4763922ad314) [@moorereason](https://github.com/moorereason) [#5466](https://github.com/gohugoio/hugo/issues/5466)
 +
 +### Core
 +
 +* Fall back to title in ByLinkTitle sort [a9a93d08](https://github.com/gohugoio/hugo/commit/a9a93d082d8640684b7fd0076c64ea808ea7f762) [@bep](https://github.com/bep) [#4953](https://github.com/gohugoio/hugo/issues/4953)
 +* Improve nil handling in IsDescendant and IsAncestor [b09a4033](https://github.com/gohugoio/hugo/commit/b09a40333f382cc1034d2eda856230258ab6b8cc) [@bep](https://github.com/bep) [#5461](https://github.com/gohugoio/hugo/issues/5461)
 +
 +### Other
 +
- * Add a filecache root dir [33502667](https://github.com/gohugoio/hugo/commit/33502667fbacf57167ede66df8f13e308a4a9aec) [@bep](https://github.com/bep) 
++* Remove duplicate mapstructure depdendency [7e75aeca](https://github.com/gohugoio/hugo/commit/7e75aeca80aead50d64902d2ff47e4ad4d013352) [@bep](https://github.com/bep)
++* Add dependency list to README [e14e0b19](https://github.com/gohugoio/hugo/commit/e14e0b192f39812e3c3d5202d34ee907021412bb) [@bep](https://github.com/bep)
 +* Document inline shortcodes [aded0f25](https://github.com/gohugoio/hugo/commit/aded0f25fd23a78804b10e127aebe0e4b6fed2ac) [@bep](https://github.com/bep) [#4011](https://github.com/gohugoio/hugo/issues/4011)
 +* Add inline shortcode support [bc337e6a](https://github.com/gohugoio/hugo/commit/bc337e6ab5a75f1f1bfe3a83f3786d0afdb6346c) [@bep](https://github.com/bep) [#4011](https://github.com/gohugoio/hugo/issues/4011)
 +* Include drafts in convert command [dcfeed35](https://github.com/gohugoio/hugo/commit/dcfeed35c6e14c1ce593d23be9d2b89c66ce9bee) [@bep](https://github.com/bep) [#5457](https://github.com/gohugoio/hugo/issues/5457)
 +* Handle themes in the new file cache (for images, assets) [f9b4eb4f](https://github.com/gohugoio/hugo/commit/f9b4eb4f3968d32f45e0168c854e6b0c7f3a90b0) [@bep](https://github.com/bep) [#5460](https://github.com/gohugoio/hugo/issues/5460)
 +* Add tests for permalink on Resource with baseURL with path [12742bac](https://github.com/gohugoio/hugo/commit/12742bac71c65d65dc56548b643debda94757aee) [@bep](https://github.com/bep) [#5226](https://github.com/gohugoio/hugo/issues/5226)
 +* Add a comment about file mode for new files [fabf026f](https://github.com/gohugoio/hugo/commit/fabf026f4937bf6fbbb944aa7d6e721839ae4c92) [@bep](https://github.com/bep) [#5434](https://github.com/gohugoio/hugo/issues/5434)
 +* Add a :project placeholder [94f0f7e5](https://github.com/gohugoio/hugo/commit/94f0f7e59788e802e706a55cac0d52a9e70ff745) [@bep](https://github.com/bep) [#5439](https://github.com/gohugoio/hugo/issues/5439)
 +* Add a cache prune func [3c29c5af](https://github.com/gohugoio/hugo/commit/3c29c5af8ee865ef20741f576088e031e940c3d2) [@bep](https://github.com/bep) [#5439](https://github.com/gohugoio/hugo/issues/5439)
- * Split implementation and config into separate files [17d7ecde](https://github.com/gohugoio/hugo/commit/17d7ecde2b261d2ab29049d12361b66504e3f995) [@bep](https://github.com/bep) 
++* Add a filecache root dir [33502667](https://github.com/gohugoio/hugo/commit/33502667fbacf57167ede66df8f13e308a4a9aec) [@bep](https://github.com/bep)
 +* Use time.Duration for maxAge [d3489eba](https://github.com/gohugoio/hugo/commit/d3489eba5dfc0ecdc032016d9db0746213dd5f0e) [@bep](https://github.com/bep) [#5438](https://github.com/gohugoio/hugo/issues/5438)
- * More spelling corrections [782dd158](https://github.com/gohugoio/hugo/commit/782dd15858128d8dfe78970c86e543b6590a004c) [@bep](https://github.com/bep) 
- * Spelling corrections [aff9c091](https://github.com/gohugoio/hugo/commit/aff9c091669a022b59f493c9dccf72be29511299) [@bep](https://github.com/bep) 
- * Remove appveyor [fdd4a768](https://github.com/gohugoio/hugo/commit/fdd4a768f053b21271d4520bf0d43baf62d516da) [@bep](https://github.com/bep) 
++* Split implementation and config into separate files [17d7ecde](https://github.com/gohugoio/hugo/commit/17d7ecde2b261d2ab29049d12361b66504e3f995) [@bep](https://github.com/bep)
 +* Update to LibSASS 3.5.5 [e4b25728](https://github.com/gohugoio/hugo/commit/e4b2572880550a997d51dab3b198dac1fd642690) [@bep](https://github.com/bep) [#5432](https://github.com/gohugoio/hugo/issues/5432)[#5435](https://github.com/gohugoio/hugo/issues/5435)
- * Add Windows build config to Travis [7d78a2af](https://github.com/gohugoio/hugo/commit/7d78a2afd3c4a6c4af77a4ddcbd2a82f15986048) [@emirb](https://github.com/emirb) 
- * Add Elasticsearch/bonsai.io to services doc. [c0b3a1af](https://github.com/gohugoio/hugo/commit/c0b3a1af0354e3aa9979cc00ae8630d7f0be63dc) [@allizad](https://github.com/allizad) 
++* More spelling corrections [782dd158](https://github.com/gohugoio/hugo/commit/782dd15858128d8dfe78970c86e543b6590a004c) [@bep](https://github.com/bep)
++* Spelling corrections [aff9c091](https://github.com/gohugoio/hugo/commit/aff9c091669a022b59f493c9dccf72be29511299) [@bep](https://github.com/bep)
++* Remove appveyor [fdd4a768](https://github.com/gohugoio/hugo/commit/fdd4a768f053b21271d4520bf0d43baf62d516da) [@bep](https://github.com/bep)
 +* Document the new file cache [abeeff13](https://github.com/gohugoio/hugo/commit/abeeff1325267f8d8f1f66f0ec4ed175ffc140ad) [@bep](https://github.com/bep) [#5404](https://github.com/gohugoio/hugo/issues/5404)
 +* Add a consolidated file cache [f7aeaa61](https://github.com/gohugoio/hugo/commit/f7aeaa61291dd75f92901bcbeecc7fce07a28dec) [@bep](https://github.com/bep) [#5404](https://github.com/gohugoio/hugo/issues/5404)
- * Fix whitespace issue [aba2647c](https://github.com/gohugoio/hugo/commit/aba2647c152ffff927f42523b77ee6651630cd67) [@max-arnold](https://github.com/max-arnold) 
- * Fix test to pass with gccgo [a8cb1b07](https://github.com/gohugoio/hugo/commit/a8cb1b07b4cf7fcf0e949657cb03c1a4838f975e) [@ianlancetaylor](https://github.com/ianlancetaylor) 
++* Add Windows build config to Travis [7d78a2af](https://github.com/gohugoio/hugo/commit/7d78a2afd3c4a6c4af77a4ddcbd2a82f15986048) [@emirb](https://github.com/emirb)
++* Add Elasticsearch/bonsai.io to services doc. [c0b3a1af](https://github.com/gohugoio/hugo/commit/c0b3a1af0354e3aa9979cc00ae8630d7f0be63dc) [@allizad](https://github.com/allizad)
 +
 +## Fixes
 +
 +### Templates
 +
- * Fix ignored --config flag with 'new' command [e82b2dc8](https://github.com/gohugoio/hugo/commit/e82b2dc8c1628f2da33e5fb0bae1b03e0594ad2c) [@krisbudhram](https://github.com/krisbudhram) 
++* Fix whitespace issue [aba2647c](https://github.com/gohugoio/hugo/commit/aba2647c152ffff927f42523b77ee6651630cd67) [@max-arnold](https://github.com/max-arnold)
++* Fix test to pass with gccgo [a8cb1b07](https://github.com/gohugoio/hugo/commit/a8cb1b07b4cf7fcf0e949657cb03c1a4838f975e) [@ianlancetaylor](https://github.com/ianlancetaylor)
 +
 +### Other
 +
 +* Fix handling of commented out front matter [7540a628](https://github.com/gohugoio/hugo/commit/7540a62834d4465af8936967e430a9e05a1e1359) [@bep](https://github.com/bep) [#5478](https://github.com/gohugoio/hugo/issues/5478)
 +* Fix when only shortcode and then summary [94ab125b](https://github.com/gohugoio/hugo/commit/94ab125b27a29a65e5ea45efd99dd247084b4c37) [@bep](https://github.com/bep) [#5464](https://github.com/gohugoio/hugo/issues/5464)
++* Fix ignored --config flag with 'new' command [e82b2dc8](https://github.com/gohugoio/hugo/commit/e82b2dc8c1628f2da33e5fb0bae1b03e0594ad2c) [@krisbudhram](https://github.com/krisbudhram)
 +* Fix Permalink for resource, baseURL with path and canonifyURLs set [5df2b79d](https://github.com/gohugoio/hugo/commit/5df2b79dd2734e9a00ed1692328f58c385676468) [@bep](https://github.com/bep) [#5226](https://github.com/gohugoio/hugo/issues/5226)
index 730b9fda22fbcfab0affe124da6c3fcf1f12eaef,0000000000000000000000000000000000000000..3d01da47db1d94d8d739d8aa6c24248ef1384e32
mode 100644,000000..100644
--- /dev/null
@@@ -1,30 -1,0 +1,30 @@@
- So we decided to quickly launch a dedicated [independant web site](https://www.cocoon-arolla.com) using all the powefull tools included with [gohugo.io](http://gohugo.io) and some things we already knew & used:
 +---
 +
 +title: Cocoon & Cosy
 +date: 2018-08-10
 +description: "Showcase: \"Emergency setup a dedicated site in an afternoon.\""
 +siteURL: https://www.cocoon-arolla.com
 +siteSource: https://github.com/divinerites/cocoon
 +byline: "[Didier Divinerites](https://github.com/divinerites)"
 +
 +---
 +
 +Swiss [Arolla campsite](http://www.camping-arolla.com/) runs the highest campsite in Europe and I'm completely re-doing their actuel Website with Hugo.
 +
 +But they just launch a brand new offer (luxury tents with bed and fire oven), and we couldn't wait for the proper new website for having this promoted: we needed the website up and running within 24h!
 +
- This would have been impossible to do it in such a short time without all the powerfull Hugo tools and Netlify simplicity.
++So we decided to quickly launch a dedicated [independent web site](https://www.cocoon-arolla.com) using all the powefull tools included with [gohugo.io](http://gohugo.io) and some things we already knew & used:
 +
 +- Choose a spectacular landing theme in the rich [Hugo Themes](http://themes.gohugo.io/) collection : [Airspace Theme](https://themes.gohugo.io/airspace-hugo/) by Themefisher.
 +- Replace the main images.
 +- Add a [hugo-easy-gallery / photoswipe](https://github.com/liwenyip/hugo-easy-gallery) on the main page with attractive images.
 +- Add the promo video with a simple *vimeo* shortcode.
 +- Replace the Google Maps widget by the [OpenStreetMap](http://www.openstreetmap.org/) equivalent
 +- Use a [Zotabox](http://www.zotabox.com) contact form.
 +- Write the content in French & in English directly on the content pages, describe their services, add fun facts and true testimonies.
 +- Setup a GPRD compliant site with the new Hugo options.
 +- Use [Netlify](https://www.netlify.com) for publishing it in a breeze.
 +
 +The first version was up in 4 hours, and the polished 2 languages version was published on Netlify the next day.
 +
++This would have been impossible to do it in such a short time without all the powerful Hugo tools and Netlify simplicity.
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..6563e13ca6a77948ae9a706d02d670413d0240eb
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,6 @@@
++Bypass Censorship find and promote tools that provide Internet access to everyone.
++
++The site is built by:
++
++* [Leyla Avsar](https://www.leylaavsar.com/) (designer)
++* [Fredrik Jonsson](https://xdeb.net/) (dev)
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..d6f429112c8a0c7c9fcdcb89a42cf1b3c213802f
new file mode 100644 (file)
Binary files differ
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..a266797ea04fba1b17bdd4af1d53831533618985
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,24 @@@
++---
++title: Bypass Censorship
++date: 2019-06-16
++description: "Showcase: Bypass Censorship find and promote tools that provide Internet access to everyone."
++siteURL: https://www.bypasscensorship.org/
++byline: "[Fredrik Jonsson](https://xdeb.net/), Web developer & Linux sysadmin"
++
++---
++
++The British Broadcasting Corporation (BBC) (UK), Deutsche Welle (DW) (Germany), France Médias Monde (FMM) (France), the U.S. Agency for Global Media (USAGM) (US) and the Open Technology Fund (OTF) (US) co-sponsor the Bypass Censorship website.
++
++Websites of international news agencies are often blocked in many countries. In order to connect people to these sites, Bypass Censorship feature and recommend tools in the following languages: English, French, Spanish, Arabic, Farsi, Chinese, and Russian.
++
++One of the tools is the Bypass Censorship Extension for Firefox and Chrome. The extension help direct people to mirrors of partners sites if they are being censored.
++
++The first version of the site was built in Drupal 8 but it was relaunched as a static site built with Hugo in 2019.
++
++Security, page load time and easy of hosting is the main reasons for switching to a static site. As the lead developer I had good experience with Hugo and was interested in exploring the multilingual features.
++
++It's a simply site, basically one page in seven languages. I had no problems getting Hugo to output what I wanted. Found the multilingual support straight forward and easy to work with.
++
++Thanks to the design by [Leyla Avsar](https://www.leylaavsar.com/) the site also looks good. I used the [Hugo Zen theme](https://github.com/frjo/hugo-theme-zen) with a few custom templates and the needed CSS.
++
++The editors can maintain content via [Forestry.io CMS](https://forestry.io/) or directly via Git. Forestry does unfortunately not have multilingual support. All the language versions are in one pile making it harder to find the right file to edit, but it works.
index 933227e13f874ca9ea84a60cfb4def7b4d4998f6,0000000000000000000000000000000000000000..7477f1c32fd825bd23215de43873fcdd53211034
mode 100644,000000..100644
--- /dev/null
@@@ -1,7 -1,0 +1,7 @@@
- PHARMASEAL began in 2016 with the purpose of disrupting the Clinical Trials Management market through continuos validation and intergration
++PHARMASEAL began in 2016 with the purpose of disrupting the Clinical Trials Management market through continuous validation and integration
 +
 +We've been using **Hugo + Webpack + Netlify** to provide a scalable, modular design for the website, complete with Forestry building blocks to quickly be able to generate engagement pages.
 +
 +The site is built by:
 +
 +- [Roboto Studio](https://roboto.studio)
index bb1d5e42415218b15571ca0e623dbf7c8b13d00d,0000000000000000000000000000000000000000..add040175b6a5d65ecb8fd2f67c5e797edcc872f
mode 100644,000000..100644
--- /dev/null
@@@ -1,63 -1,0 +1,64 @@@
 +---
 +title: Custom 404 Page
 +linktitle: 404 Page
 +description: If you know how to create a single page template, you have unlimited options for creating a custom 404.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-03-31
 +categories: [templates]
 +keywords: [404, page not found]
 +menu:
 +  docs:
 +    parent: "templates"
 +    weight: 120
 +weight: 120   #rem
 +draft: false
 +aliases: []
 +toc: false
 +---
 +
 +When using Hugo with [GitHub Pages](http://pages.github.com/), you can provide your own template for a [custom 404 error page](https://help.github.com/articles/custom-404-pages/) by creating a 404.html template file in your `/layouts` folder. When Hugo generates your site, the `404.html` file will be placed in the root.
 +
 +404 pages will have all the regular [page variables][pagevars] available to use in the templates.
 +
 +In addition to the standard page variables, the 404 page has access to all site content accessible from `.Pages`.
 +
 +```
 +▾ layouts/
 +    404.html
 +```
 +
 +## 404.html
 +
 +This is a basic example of a 404.html template:
 +
 +{{< code file="layouts/404.html" download="404.html" >}}
 +{{ define "main"}}
 +    <main id="main">
 +      <div>
 +       <h1 id="title"><a href="{{ "/" | relURL }}">Go Home</a></h1>
 +      </div>
 +    </main>
 +{{ end }}
 +{{< /code >}}
 +
 +## Automatic Loading
 +
 +Your 404.html file can be set to load automatically when a visitor enters a mistaken URL path, dependent upon the web serving environment you are using. For example:
 +
 +* [GitHub Pages](/hosting-and-deployment/hosting-on-github/). The 404 page is automatic.
 +* Apache. You can specify `ErrorDocument 404 /404.html` in an `.htaccess` file in the root of your site.
 +* Nginx. You might specify `error_page 404 /404.html;` in your `nginx.conf` file.
 +* Amazon AWS S3. When setting a bucket up for static web serving, you can specify the error file from within the S3 GUI.
 +* Amazon CloudFont. You can specify the page in the Error Pages section in the CloudFont Console. [Details here](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html)
 +* Caddy Server. Using `errors { 404 /404.html }`. [Details here](https://caddyserver.com/docs/errors)
 +* Netlify. Add `/* /404.html 404` to `content/_redirects`. [Details Here](https://www.netlify.com/docs/redirects/#custom-404)
++* Azure Static website. You can specify the `Error document path` in the Static website configuration page of the Azure portal. [More details are available in the Static website documentation](https://docs.microsoft.com/en-us/azure/storage/blobs/storage-blob-static-website).
 +
 +{{% note %}}
 +`hugo server` will not automatically load your custom `404.html` file, but you
 +can test the appearance of your custom "not found" page by navigating your
 +browser to `/404.html`.
 +{{% /note %}}
 +
 +[pagevars]: /variables/page/
index fdec63c573525a26962eb721319cff850177a3bf,0000000000000000000000000000000000000000..19ef4db828ac1bb97aebab106e63c49bdf01ac3b
mode 100644,000000..100644
--- /dev/null
@@@ -1,208 -1,0 +1,212 @@@
- video = []
 +---
 +title: Internal Templates
 +linktitle: Internal Templates
 +description: Hugo ships with a group of boilerplate templates that cover the most common use cases for static websites.
 +date: 2017-03-06
 +publishdate: 2017-03-06
 +lastmod: 2017-03-06
 +categories: [templates]
 +keywords: [internal, analytics,]
 +menu:
 +  docs:
 +    parent: "templates"
 +    weight: 168
 +weight: 168
 +sections_weight: 168
 +draft: false
 +aliases: []
 +toc: true
 +wip: true
 +---
 +<!-- reference: https://discourse.gohugo.io/t/lookup-order-for-partials/5705/6
 +code: https://github.com/gohugoio/hugo/blob/e445c35d6a0c7f5fc2f90f31226cd1d46e048bbc/tpl/template_embedded.go#L147 -->
 +
 +{{% warning %}}
 +While the following internal templates are called similar to partials, they do *not* observe the partial template lookup order.
 +{{% /warning %}}
 +
 +## Google Analytics
 +
 +Hugo ships with internal templates for Google Analytics tracking, including both synchronous and asynchronous tracking codes.
 +
 +### Configure Google Analytics
 +
 +Provide your tracking id in your configuration file:
 +
 +{{< code-toggle file="config" >}}
 +googleAnalytics = "UA-123-45"
 +{{</ code-toggle >}}
 +
 +### Use the Google Analytics Template
 +
 +You can then include the Google Analytics internal template:
 +
 +```
 +{{ template "_internal/google_analytics.html" . }}
 +```
 +
 +
 +```
 +{{ template "_internal/google_analytics_async.html" . }}
 +```
 +
 +A `.Site.GoogleAnalytics` variable is also exposed from the config.
 +
 +## Disqus
 +
 +Hugo also ships with an internal template for [Disqus comments][disqus], a popular commenting system for both static and dynamic websites. In order to effectively use Disqus, you will need to secure a Disqus "shortname" by [signing up for the free service][disqussignup].
 +
 +### Configure Disqus
 +
 +To use Hugo's Disqus template, you first need to set a single value in your site's `config.toml` or `config.yml`:
 +
 +{{< code-toggle file="config" >}}
 +disqusShortname = "yourdiscussshortname"
 +{{</ code-toggle >}}
 +
 +You also have the option to set the following in the front matter for a given piece of content:
 +
 +* `disqus_identifier`
 +* `disqus_title`
 +* `disqus_url`
 +
 +### Use the Disqus Template
 +
 +To add Disqus, include the following line in templates where you want your comments to appear:
 +
 +```
 +{{ template "_internal/disqus.html" . }}
 +```
 +
 +A `.Site.DisqusShortname` variable is also exposed from the config.
 +
 +### Conditional Loading of Disqus Comments
 +
 +Users have noticed that enabling Disqus comments when running the Hugo web server on `localhost` (i.e. via `hugo server`) causes the creation of unwanted discussions on the associated Disqus account.
 +
 +You can create the following `layouts/partials/disqus.html`:
 +
 +{{< code file="layouts/partials/disqus.html" download="disqus.html" >}}
 +<div id="disqus_thread"></div>
 +<script type="text/javascript">
 +
 +(function() {
 +    // Don't ever inject Disqus on localhost--it creates unwanted
 +    // discussions from 'localhost:1313' on your Disqus account...
 +    if (window.location.hostname == "localhost")
 +        return;
 +
 +    var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
 +    var disqus_shortname = '{{ .Site.DisqusShortname }}';
 +    dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
 +    (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
 +})();
 +</script>
 +<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
 +<a href="http://disqus.com/" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
 +{{< /code >}}
 +
 +The `if` statement skips the initialization of the Disqus comment injection when you are running on `localhost`.
 +
 +You can then render your custom Disqus partial template as follows:
 +
 +```
 +{{ partial "disqus.html" . }}
 +```
 +
 +## Open Graph
 +An internal template for the [Open Graph protocol](http://ogp.me/), metadata that enables a page to become a rich object in a social graph.
 +This format is used for Facebook and some other sites.
 +
 +### Configure Open Graph
 +
 +Hugo's Open Graph template is configured using a mix of configuration variables and [front-matter](/content-management/front-matter/) on individual pages.
 +
 +{{< code-toggle file="config" >}}
 +[params]
 +  title = "My cool site"
 +  images = ["site-feature-image.jpg"]
 +  description = "Text about my cool site"
 +[taxonomies]
 +  series = "series"
 +{{</ code-toggle >}}
 +
 +{{< code-toggle file="content/blog/my-post" >}}
 +title = "Post title"
 +description = "Text about this post"
 +date = "2006-01-02"
 +images = ["post-cover.png"]
 +audio = []
- - `audio` and `video` are URL arrays like `images` for the audio and video metadata tags, respectively.
++videos = []
 +series = []
 +tags = []
 +{{</ code-toggle >}}
 +
 +Hugo uses the page title and description for the title and description metadata.
 +The first 6 URLs from the `images` array are used for image metadata.
 +
 +Various optional metadata can also be set:
++
 +- Date, published date, and last modified data are used to set the published time metadata if specified.
++- `audio` and `videos` are URL arrays like `images` for the audio and video metadata tags, respectively.
 +- The first 6 `tags` on the page are used for the tags metadata.
 +- The `series` taxonomy is used to specify related "see also" pages by placing them in the same series.
 +
++If using YouTube this will produce a og:video tag like `<meta property="og:video" content="url">`. If using a YouTube link make sure this is in **https://www.youtube.com/v/NlXVWtgLNjY** not __https://www.youtube.com/watch?v=NlXVWtgLNjY__
++
 +### Use the Open Graph Template
 +
 +To add Open Graph metadata, include the following line between the `<head>` tags in your templates:
 +
 +```
 +{{ template "_internal/opengraph.html" . }}
 +```
 +
 +## Twitter Cards
++
 +An internal template for [Twitter Cards](https://developer.twitter.com/en/docs/tweets/optimize-with-cards/overview/abouts-cards),
 +metadata used to attach rich media to Tweets linking to your site.
 +
 +### Configure Twitter Cards
 +
 +Hugo's Twitter Card template is configured using a mix of configuration variables and [front-matter](/content-management/front-matter/) on individual pages.
 +
 +{{< code-toggle file="config" >}}
 +[params]
 +  images = ["site-feature-image.jpg"]
 +  description = "Text about my cool site"
 +{{</ code-toggle >}}
 +
 +{{< code-toggle file="content/blog/my-post" >}}
 +title = "Post title"
 +description = "Text about this post"
 +images = ["post-cover.png"]
 +{{</ code-toggle >}}
 +
 +If `images` aren't specified in the page front-matter, then hugo searches for [image page resources](/content-management/image-processing/) with `feature`, `cover`, or `thumbnail` in their name.
 +If no image resources with those names are found, the images defined in the [site config](getting-started/configuration/) are used instead.
 +If no images are found at all, then an image-less Twitter `summary` card is used instead of `summary_large_image`.
 +
 +Hugo uses the page title and description for the card's title and description fields. The page summary is used if no description is given.
 +
 +### Use the Twitter Cards Template
 +
 +To add Twitter card metadata, include the following line between the `<head>` tags in your templates:
 +
 +```
 +{{ template "_internal/twitter_cards.html" . }}
 +```
 +
 +## The Internal Templates
 +
 +* `_internal/disqus.html`
 +* `_internal/google_news.html`
 +* `_internal/google_analytics.html`
 +* `_internal/google_analytics_async.html`
 +* `_internal/opengraph.html`
 +* `_internal/pagination.html`
 +* `_internal/schema.html`
 +* `_internal/twitter_cards.html`
 +
 +[disqus]: https://disqus.com
 +[disqussignup]: https://disqus.com/profile/signup/
index 02a580e79b1add8e50b455778950ca566ff20996,0000000000000000000000000000000000000000..a2b91ba1dec6c3afd0429dc2f397197a72c2e442
mode 100644,000000..100644
--- /dev/null
@@@ -1,664 -1,0 +1,664 @@@
- in much older Hugo versions. Now it useful only for calling
 +---
 +title: Introduction to Hugo Templating
 +linktitle: Introduction
 +description: Hugo uses Go's `html/template` and `text/template` libraries as the basis for the templating.
 +godocref: https://golang.org/pkg/html/template/
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-25
 +categories: [templates,fundamentals]
 +keywords: [go]
 +menu:
 +  docs:
 +    parent: "templates"
 +    weight: 10
 +weight: 10
 +sections_weight: 10
 +draft: false
 +aliases: [/layouts/introduction/,/layout/introduction/, /templates/go-templates/]
 +toc: true
 +---
 +
 +{{% note %}}
 +The following is only a primer on Go Templates. For an in-depth look into Go Templates, check the official [Go docs](https://golang.org/pkg/text/template/).
 +{{% /note %}}
 +
 +Go Templates provide an extremely simple template language that adheres to the belief that only the most basic of logic belongs in the template or view layer.
 +
 +{{< youtube gnJbPO-GFIw >}}
 +
 +## Basic Syntax
 +
 +Go Templates are HTML files with the addition of [variables][variables] and [functions][functions]. Go Template variables and functions are accessible within `{{ }}`.
 +
 +### Access a Predefined Variable
 +
 +A _predefined variable_ could be a variable already existing in the
 +current scope (like the `.Title` example in the [Variables]({{< relref
 +"#variables" >}}) section below) or a custom variable (like the
 +`$address` example in that same section).
 +
 +
 +```go-html-template
 +{{ .Title }}
 +{{ $address }}
 +```
 +
 +Parameters for functions are separated using spaces. The general syntax is:
 +
 +```
 +{{ FUNCTION ARG1 ARG2 .. }}
 +```
 +
 +The following example calls the `add` function with inputs of `1` and `2`:
 +
 +```go-html-template
 +{{ add 1 2 }}
 +```
 +
 +#### Methods and Fields are Accessed via dot Notation
 +
 +Accessing the Page Parameter `bar` defined in a piece of content's [front matter][].
 +
 +```go-html-template
 +{{ .Params.bar }}
 +```
 +
 +#### Parentheses Can be Used to Group Items Together
 +
 +```go-html-template
 +{{ if or (isset .Params "alt") (isset .Params "caption") }} Caption {{ end }}
 +```
 +
 +## Variables {#variables}
 +
 +Each Go Template gets a data object. In Hugo, each template is passed
 +a `Page`.  In the below example, `.Title` is one of the elements
 +accessible in that [`Page` variable][pagevars].
 +
 +With the `Page` being the default scope of a template, the `Title`
 +element in current scope (`.` -- "the **dot**") is accessible simply
 +by the dot-prefix (`.Title`):
 +
 +```go-html-template
 +<title>{{ .Title }}</title>
 +```
 +
 +Values can also be stored in custom variables and referenced later:
 +
 +{{% note %}}
 +The custom variables need to be prefixed with `$`.
 +{{% /note %}}
 +
 +```go-html-template
 +{{ $address := "123 Main St." }}
 +{{ $address }}
 +```
 +
 +{{% warning %}}
 +For Hugo v0.47 and older versions, variables defined inside `if`
 +conditionals and similar are not visible on the outside.
 +See [https://github.com/golang/go/issues/10608](https://github.com/golang/go/issues/10608).
 +
 +Hugo has created a workaround for this issue in [Scratch](/functions/scratch).
 +{{% /warning %}}
 +
 +For **Hugo v0.48** and newer, variables can be re-defined using the
 +new `=` operator (new in Go 1.11).
 +
 +Below example will work only in these newer Hugo versions. The example
 +prints "Var is Hugo Home" on the home page, and "Var is Hugo Page" on
 +all other pages:
 +
 +```go-html-template
 +{{ $var := "Hugo Page" }}
 +{{ if .IsHome }}
 +    {{ $var = "Hugo Home" }}
 +{{ end }}
 +Var is {{ $var }}
 +```
 +
 +## Functions
 +
 +Go Templates only ship with a few basic functions but also provide a mechanism for applications to extend the original set.
 +
 +[Hugo template functions][functions] provide additional functionality specific to building websites. Functions are called by using their name followed by the required parameters separated by spaces. Template functions cannot be added without recompiling Hugo.
 +
 +### Example 1: Adding Numbers
 +
 +```go-html-template
 +{{ add 1 2 }}
 +<!-- prints 3 -->
 +```
 +
 +### Example 2: Comparing Numbers
 +
 +```go-html-template
 +{{ lt 1 2 }}
 +<!-- prints true (i.e., since 1 is less than 2) -->
 +```
 +
 +Note that both examples make use of Go Template's [math functions][].
 +
 +{{% note "Additional Boolean Operators" %}}
 +There are more boolean operators than those listed in the Hugo docs in the [Go Template documentation](http://golang.org/pkg/text/template/#hdr-Functions).
 +{{% /note %}}
 +
 +## Includes
 +
 +When including another template, you will need to pass it the data that it would
 +need to access.
 +
 +{{% note %}}
 +To pass along the current context, please remember to include a trailing **dot**.
 +{{% /note %}}
 +
 +The templates location will always be starting at the `layouts/` directory
 +within Hugo.
 +
 +### Partial
 +
 +The [`partial`][partials] function is used to include *partial* templates using
 +the syntax `{{ partial "<PATH>/<PARTIAL>.<EXTENSION>" . }}`.
 +
 +Example of including a `layouts/partials/header.html` partial:
 +
 +```go-html-template
 +{{ partial "header.html" . }}
 +```
 +
 +### Template
 +
 +The `template` function was used to include *partial* templates
- If the _map_, _array_, or _slice_ passed into the range is zero-length then the else statment is evaluated.
++in much older Hugo versions. Now it's useful only for calling
 +[*internal* templates][internal_templates]. The syntax is `{{ template
 +"_internal/<TEMPLATE>.<EXTENSION>" . }}`.
 +
 +{{% note %}}
 +The available **internal** templates can be found
 +[here](https://github.com/gohugoio/hugo/tree/master/tpl/tplimpl/embedded/templates).
 +{{% /note %}}
 +
 +Example of including the internal `opengraph.html` template:
 +
 +```go-html-template
 +{{ template "_internal/opengraph.html" . }}
 +```
 +
 +## Logic
 +
 +Go Templates provide the most basic iteration and conditional logic.
 +
 +### Iteration
 +
 +The Go Templates make heavy use of `range` to iterate over a _map_,
 +_array_, or _slice_. The following are different examples of how to
 +use `range`.
 +
 +#### Example 1: Using Context (`.`)
 +
 +```go-html-template
 +{{ range $array }}
 +    {{ . }} <!-- The . represents an element in $array -->
 +{{ end }}
 +```
 +
 +#### Example 2: Declaring a variable name for an array element's value
 +
 +```go-html-template
 +{{ range $elem_val := $array }}
 +    {{ $elem_val }}
 +{{ end }}
 +```
 +
 +#### Example 3: Declaring variable names for an array element's index _and_ value
 +
 +For an array or slice, the first declared variable will map to each
 +element's index.
 +
 +```go-html-template
 +{{ range $elem_index, $elem_val := $array }}
 +   {{ $elem_index }} -- {{ $elem_val }}
 +{{ end }}
 +```
 +
 +#### Example 4: Declaring variable names for a map element's key _and_ value
 +
 +For a map, the first declared variable will map to each map element's
 +key.
 +
 +```go-html-template
 +{{ range $elem_key, $elem_val := $map }}
 +   {{ $elem_key }} -- {{ $elem_val }}
 +{{ end }}
 +```
 +
 +#### Example 5: Conditional on empty _map_, _array_, or _slice_.
 +
++If the _map_, _array_, or _slice_ passed into the range is zero-length then the else statement is evaluated.
 +
 +```go-html-template
 +{{ range $array }}
 +    {{ . }}
 +{{else}}
 +    <!-- This is only evaluated if $array is empty -->
 +{{ end }}
 +```
 +
 +### Conditionals
 +
 +`if`, `else`, `with`, `or`, and `and` provide the framework for handling conditional logic in Go Templates. Like `range`, each statement is closed with an `{{ end }}`.
 +
 +Go Templates treat the following values as **false**:
 +
 +- `false` (boolean)
 +- 0 (integer)
 +- any zero-length array, slice, map, or string
 +
 +#### Example 1: `with`
 +
 +It is common to write "if something exists, do this" kind of
 +statements using `with`.
 +
 +{{% note %}}
 +`with` rebinds the context `.` within its scope (just like in `range`).
 +{{% /note %}}
 +
 +It skips the block if the variable is absent, or if it evaluates to
 +"false" as explained above.
 +
 +```go-html-template
 +{{ with .Params.title }}
 +    <h4>{{ . }}</h4>
 +{{ end }}
 +```
 +
 +#### Example 2: `with` .. `else`
 +
 +Below snippet uses the "description" front-matter parameter's value if
 +set, else uses the default `.Summary` [Page variable][pagevars]:
 +
 +
 +```go-html-template
 +{{ with .Param "description" }}
 +    {{ . }}
 +{{ else }}
 +    {{ .Summary }}
 +{{ end }}
 +```
 +
 +See the [`.Param` function][param].
 +
 +#### Example 3: `if`
 +
 +An alternative (and a more verbose) way of writing `with` is using
 +`if`. Here, the `.` does not get rebinded.
 +
 +Below example is "Example 1" rewritten using `if`:
 +
 +```go-html-template
 +{{ if isset .Params "title" }}
 +    <h4>{{ index .Params "title" }}</h4>
 +{{ end }}
 +```
 +
 +#### Example 4: `if` .. `else`
 +
 +Below example is "Example 2" rewritten using `if` .. `else`, and using
 +[`isset` function][isset] + `.Params` variable (different from the
 +[`.Param` **function**][param]) instead:
 +
 +```go-html-template
 +{{ if (isset .Params "description") }}
 +    {{ index .Params "description" }}
 +{{ else }}
 +    {{ .Summary }}
 +{{ end }}
 +```
 +
 +#### Example 5: `if` .. `else if` .. `else`
 +
 +Unlike `with`, `if` can contain `else if` clauses too.
 +
 +```go-html-template
 +{{ if (isset .Params "description") }}
 +    {{ index .Params "description" }}
 +{{ else if (isset .Params "summary") }}
 +    {{ index .Params "summary" }}
 +{{ else }}
 +    {{ .Summary }}
 +{{ end }}
 +```
 +
 +#### Example 6: `and` & `or`
 +
 +```go-html-template
 +{{ if (and (or (isset .Params "title") (isset .Params "caption")) (isset .Params "attr")) }}
 +```
 +
 +## Pipes
 +
 +One of the most powerful components of Go Templates is the ability to stack actions one after another. This is done by using pipes. Borrowed from Unix pipes, the concept is simple: each pipeline's output becomes the input of the following pipe.
 +
 +Because of the very simple syntax of Go Templates, the pipe is essential to being able to chain together function calls. One limitation of the pipes is that they can only work with a single value and that value becomes the last parameter of the next pipeline.
 +
 +A few simple examples should help convey how to use the pipe.
 +
 +### Example 1: `shuffle`
 +
 +The following two examples are functionally the same:
 +
 +```go-html-template
 +{{ shuffle (seq 1 5) }}
 +```
 +
 +
 +```go-html-template
 +{{ (seq 1 5) | shuffle }}
 +```
 +
 +### Example 2: `index`
 +
 +The following accesses the page parameter called "disqus_url" and escapes the HTML. This example also uses the [`index` function][index], which is built into Go Templates:
 +
 +```go-html-template
 +{{ index .Params "disqus_url" | html }}
 +```
 +
 +### Example 3: `or` with `isset`
 +
 +```go-html-template
 +{{ if or (or (isset .Params "title") (isset .Params "caption")) (isset .Params "attr") }}
 +Stuff Here
 +{{ end }}
 +```
 +
 +Could be rewritten as
 +
 +```go-html-template
 +{{ if isset .Params "caption" | or isset .Params "title" | or isset .Params "attr" }}
 +Stuff Here
 +{{ end }}
 +```
 +
 +### Example 4: Internet Explorer Conditional Comments {#ie-conditional-comments}
 +
 +By default, Go Templates remove HTML comments from output. This has the unfortunate side effect of removing Internet Explorer conditional comments. As a workaround, use something like this:
 +
 +```go-html-template
 +{{ "<!--[if lt IE 9]>" | safeHTML }}
 +  <script src="html5shiv.js"></script>
 +{{ "<![endif]-->" | safeHTML }}
 +```
 +
 +Alternatively, you can use the backtick (`` ` ``) to quote the IE conditional comments, avoiding the tedious task of escaping every double quotes (`"`) inside, as demonstrated in the [examples](http://golang.org/pkg/text/template/#hdr-Examples) in the Go text/template documentation:
 +
 +```go-html-template
 +{{ `<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7"><![endif]-->` | safeHTML }}
 +```
 +
 +## Context (aka "the dot") {#the-dot}
 +
 +The most easily overlooked concept to understand about Go Templates is
 +that `{{ . }}` always refers to the **current context**.
 +
 +- In the top level of your template, this will be the data set made
 +  available to it.
 +- Inside of an iteration, however, it will have the value of the
 +  current item in the loop; i.e., `{{ . }}` will no longer refer to
 +  the data available to the entire page.
 +
 +If you need to access page-level data (e.g., page params set in front
 +matter) from within the loop, you will likely want to do one of the
 +following:
 +
 +### 1. Define a Variable Independent of Context
 +
 +The following shows how to define a variable independent of the context.
 +
 +{{< code file="tags-range-with-page-variable.html" >}}
 +{{ $title := .Site.Title }}
 +<ul>
 +{{ range .Params.tags }}
 +    <li>
 +        <a href="/tags/{{ . | urlize }}">{{ . }}</a>
 +        - {{ $title }}
 +    </li>
 +{{ end }}
 +</ul>
 +{{< /code >}}
 +
 +{{% note %}}
 +Notice how once we have entered the loop (i.e. `range`), the value of `{{ . }}` has changed. We have defined a variable outside of the loop (`{{$title}}`) that we've assigned a value so that we have access to the value from within the loop as well.
 +{{% /note %}}
 +
 +### 2. Use `$.` to Access the Global Context
 +
 +`$` has special significance in your templates. `$` is set to the starting value of `.` ("the dot") by default. This is a [documented feature of Go text/template][dotdoc]. This means you have access to the global context from anywhere. Here is an equivalent example of the preceding code block but now using `$` to grab `.Site.Title` from the global context:
 +
 +{{< code file="range-through-tags-w-global.html" >}}
 +<ul>
 +{{ range .Params.tags }}
 +  <li>
 +    <a href="/tags/{{ . | urlize }}">{{ . }}</a>
 +            - {{ $.Site.Title }}
 +  </li>
 +{{ end }}
 +</ul>
 +{{< /code >}}
 +
 +{{% warning "Don't Redefine the Dot" %}}
 +The built-in magic of `$` would cease to work if someone were to mischievously redefine the special character; e.g. `{{ $ := .Site }}`. *Don't do it.* You may, of course, recover from this mischief by using `{{ $ := . }}` in a global context to reset `$` to its default value.
 +{{% /warning %}}
 +
 +## Whitespace
 +
 +Go 1.6 includes the ability to trim the whitespace from either side of a Go tag by including a hyphen (`-`) and space immediately beside the corresponding `{{` or `}}` delimiter.
 +
 +For instance, the following Go Template will include the newlines and horizontal tab in its HTML output:
 +
 +```go-html-template
 +<div>
 +  {{ .Title }}
 +</div>
 +```
 +
 +Which will output:
 +
 +```html
 +<div>
 +  Hello, World!
 +</div>
 +```
 +
 +Leveraging the `-` in the following example will remove the extra white space surrounding the `.Title` variable and remove the newline:
 +
 +```go-html-template
 +<div>
 +  {{- .Title -}}
 +</div>
 +```
 +
 +Which then outputs:
 +
 +```html
 +<div>Hello, World!</div>
 +```
 +
 +Go considers the following characters _whitespace_:
 +
 +* <kbd>space</kbd>
 +* horizontal <kbd>tab</kbd>
 +* carriage <kbd>return</kbd>
 +* newline
 +
 +## Comments
 +
 +In order to keep your templates organized and share information throughout your team, you may want to add comments to your templates. There are two ways to do that with Hugo.
 +
 +### Go Templates comments
 +
 +Go Templates support `{{/*` and `*/}}` to open and close a comment block. Nothing within that block will be rendered.
 +
 +For example:
 +
 +```go-html-template
 +Bonsoir, {{/* {{ add 0 + 2 }} */}}Eliott.
 +```
 +
 +Will render `Bonsoir, Eliott.`, and not care about the syntax error (`add 0 + 2`) in the comment block.
 +
 +### HTML comments
 +
 +If you need to produce HTML comments from your templates, take a look at the [Internet Explorer conditional comments](#ie-conditional-comments) example. If you need variables to construct such HTML comments, just pipe `printf` to `safeHTML`. For example:
 +
 +```go-html-template
 +{{ printf "<!-- Our website is named: %s -->" .Site.Title | safeHTML }}
 +```
 +
 +#### HTML comments containing Go Templates
 +
 +HTML comments are by default stripped, but their content is still evaluated. That means that although the HTML comment will never render any content to the final HTML pages, code contained within the comment may fail the build process.
 +
 +{{% note %}}
 +Do **not** try to comment out Go Template code using HTML comments.
 +{{% /note %}}
 +
 +```go-html-template
 +<!-- {{ $author := "Emma Goldman" }} was a great woman. -->
 +{{ $author }}
 +```
 +
 +The templating engine will strip the content within the HTML comment, but will first evaluate any Go Template code if present within. So the above example will render `Emma Goldman`, as the `$author` variable got evaluated in the HTML comment. But the build would have failed if that code in the HTML comment had an error.
 +
 +## Hugo Parameters
 +
 +Hugo provides the option of passing values to your template layer through your [site configuration][config] (i.e. for site-wide values) or through the metadata of each specific piece of content (i.e. the [front matter][]). You can define any values of any type and use them however you want in your templates, as long as the values are supported by the front matter format specified via `metaDataFormat` in your configuration file.
 +
 +## Use Content (`Page`) Parameters
 +
 +You can provide variables to be used by templates in individual content's [front matter][].
 +
 +An example of this is used in the Hugo docs. Most of the pages benefit from having the table of contents provided, but sometimes the table of contents doesn't make a lot of sense. We've defined a `notoc` variable in our front matter that will prevent a table of contents from rendering when specifically set to `true`.
 +
 +Here is the example front matter (YAML):
 +
 +```
 +---
 +title: Roadmap
 +lastmod: 2017-03-05
 +date: 2013-11-18
 +notoc: true
 +---
 +```
 +
 +Here is an example of corresponding code that could be used inside a `toc.html` [partial template][partials]:
 +
 +{{< code file="layouts/partials/toc.html" download="toc.html" >}}
 +{{ if not .Params.notoc }}
 +<aside>
 +  <header>
 +    <a href="#{{.Title | urlize}}">
 +    <h3>{{.Title}}</h3>
 +    </a>
 +  </header>
 +  {{.TableOfContents}}
 +</aside>
 +<a href="#" id="toc-toggle"></a>
 +{{ end }}
 +{{< /code >}}
 +
 +We want the *default* behavior to be for pages to include a TOC unless otherwise specified. This template checks to make sure that the `notoc:` field in this page's front matter is not `true`.
 +
 +## Use Site Configuration Parameters
 +
 +You can arbitrarily define as many site-level parameters as you want in your [site's configuration file][config]. These parameters are globally available in your templates.
 +
 +For instance, you might declare the following:
 +
 +{{< code-toggle file="config" >}}
 +params:
 +  copyrighthtml: "Copyright &#xA9; 2017 John Doe. All Rights Reserved."
 +  twitteruser: "spf13"
 +  sidebarrecentlimit: 5
 +{{< /code >}}
 +
 +Within a footer layout, you might then declare a `<footer>` that is only rendered if the `copyrighthtml` parameter is provided. If it *is* provided, you will then need to declare the string is safe to use via the [`safeHTML` function][safehtml] so that the HTML entity is not escaped again. This would let you easily update just your top-level config file each January 1st, instead of hunting through your templates.
 +
 +```go-html-template
 +{{ if .Site.Params.copyrighthtml }}
 +    <footer>
 +        <div class="text-center">{{.Site.Params.CopyrightHTML | safeHTML}}</div>
 +    </footer>
 +{{ end }}
 +```
 +
 +An alternative way of writing the "`if`" and then referencing the same value is to use [`with`][with] instead. `with` rebinds the context (`.`) within its scope and skips the block if the variable is absent:
 +
 +{{< code file="layouts/partials/twitter.html" >}}
 +{{ with .Site.Params.twitteruser }}
 +    <div>
 +        <a href="https://twitter.com/{{.}}" rel="author">
 +        <img src="/images/twitter.png" width="48" height="48" title="Twitter: {{.}}" alt="Twitter"></a>
 +    </div>
 +{{ end }}
 +{{< /code >}}
 +
 +Finally, you can pull "magic constants" out of your layouts as well. The following uses the [`first`][first] function, as well as the [`.RelPermalink`][relpermalink] page variable and the [`.Site.Pages`][sitevars] site variable.
 +
 +```go-html-template
 +<nav>
 +  <h1>Recent Posts</h1>
 +  <ul>
 +  {{- range first .Site.Params.SidebarRecentLimit .Site.Pages -}}
 +      <li><a href="{{.RelPermalink}}">{{.Title}}</a></li>
 +  {{- end -}}
 +  </ul>
 +</nav>
 +```
 +
 +## Example: Show Only Upcoming Events
 +
 +Go allows you to do more than what's shown here. Using Hugo's [`where` function][where] and Go built-ins, we can list only the items from `content/events/` whose date (set in a content file's [front matter][]) is in the future. The following is an example [partial template][partials]:
 +
 +{{< code file="layouts/partials/upcoming-events.html" download="upcoming-events.html" >}}
 +<h4>Upcoming Events</h4>
 +<ul class="upcoming-events">
 +{{ range where .Pages.ByDate "Section" "events" }}
 +    {{ if ge .Date.Unix now.Unix }}
 +        <li>
 +        <!-- add span for event type -->
 +          <span>{{ .Type | title }} —</span>
 +          {{ .Title }} on
 +        <!-- add span for event date -->
 +          <span>{{ .Date.Format "2 January at 3:04pm" }}</span>
 +          at {{ .Params.place }}
 +        </li>
 +    {{ end }}
 +{{ end }}
 +</ul>
 +{{< /code >}}
 +
 +
 +[`where` function]: /functions/where/
 +[config]: /getting-started/configuration/
 +[dotdoc]: http://golang.org/pkg/text/template/#hdr-Variables
 +[first]: /functions/first/
 +[front matter]: /content-management/front-matter/
 +[functions]: /functions/ "See the full list of Hugo's templating functions with a quick start reference guide and basic and advanced examples."
 +[Go html/template]: http://golang.org/pkg/html/template/ "Godocs references for Go's html templating"
 +[gohtmltemplate]: http://golang.org/pkg/html/template/ "Godocs references for Go's html templating"
 +[index]: /functions/index/
 +[math functions]: /functions/math/
 +[partials]: /templates/partials/ "Link to the partial templates page inside of the templating section of the Hugo docs"
 +[internal_templates]: /templates/internal/
 +[relpermalink]: /variables/page/
 +[safehtml]: /functions/safehtml/
 +[sitevars]: /variables/site/
 +[pagevars]: /variables/page/
 +[variables]: /variables/ "See the full extent of page-, site-, and other variables that Hugo make available to you in your templates."
 +[where]: /functions/where/
 +[with]: /functions/with/
 +[godocsindex]: http://golang.org/pkg/text/template/ "Godocs page for index function"
 +[param]: /functions/param/
 +[isset]: /functions/isset/
index 34c9e6d5afe9a34f06b8c390fff8b2d138c5f338,0000000000000000000000000000000000000000..5d6948a1fc37eabeff78bc6e5f468bd519b08da6
mode 100644,000000..100644
--- /dev/null
@@@ -1,558 -1,0 +1,558 @@@
- ![Image demonstrating a hierarchical website sitemap.](/images/site-hierarchy.svg)
 +---
 +title: Lists of Content in Hugo
 +linktitle: List Page Templates
 +description: Lists have a specific meaning and usage in Hugo when it comes to rendering your site homepage, section page, taxonomy list, or taxonomy terms list.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-01
 +categories: [templates]
 +keywords: [lists,sections,rss,taxonomies,terms]
 +menu:
 +  docs:
 +    parent: "templates"
 +    weight: 22
 +weight: 22
 +sections_weight: 22
 +draft: false
 +aliases: [/templates/list/,/layout/indexes/]
 +toc: true
 +---
 +
 +## What is a List Page Template?
 +
 +{{< youtube 8b2YTSMdMps >}}
 +
 +A list page template is a template used to render multiple pieces of content in a single HTML page. The exception to this rule is the homepage, which is still a list but has its own [dedicated template][homepage].
 +
 +Hugo uses the term *list* in its truest sense; i.e. a sequential arrangement of material, especially in alphabetical or numerical order. Hugo uses list templates on any output HTML page where content is traditionally listed:
 +
 +* [Taxonomy terms pages][taxterms]
 +* [Taxonomy list pages][taxlists]
 +* [Section list pages][sectiontemps]
 +* [RSS][rss]
 +
 +For template lookup order, see [Template Lookup](/templates/lookup-order/).
 +
 +The idea of a list page comes from the [hierarchical mental model of the web][mentalmodel] and is best demonstrated visually:
 +
++[![Image demonstrating a hierarchical website sitemap.](/images/site-hierarchy.svg)](/images/site-hierarchy.svg)
 +
 +## List Defaults
 +
 +### Default Templates
 +
 +Since section lists and taxonomy lists (N.B., *not* [taxonomy terms lists][taxterms]) are both *lists* with regards to their templates, both have the same terminating default of `_default/list.html` or `themes/<THEME>/layouts/_default/list.html` in their lookup order. In addition, both [section lists][sectiontemps] and [taxonomy lists][taxlists] have their own default list templates in `_default`:
 +
 +See [Template Lookup Order](/templates/lookup-order/) for the complete reference.
 +
 +## Add Content and Front Matter to List Pages
 +
 +Since v0.18, [everything in Hugo is a `Page`][bepsays]. This means list pages and the homepage can have associated content files (i.e. `_index.md`) that contain page metadata (i.e., front matter) and content.
 +
 +This new model allows you to include list-specific front matter via `.Params` and also means that list templates (e.g., `layouts/_default/list.html`) have access to all [page variables][pagevars].
 +
 +{{% note %}}
 +It is important to note that all `_index.md` content files will render according to a *list* template and not according to a [single page template](/templates/single-page-templates/).
 +{{% /note %}}
 +
 +### Example Project Directory
 +
 +The following is an example of a typical Hugo project directory's content:
 +
 +```
 +.
 +...
 +├── content
 +|   ├── posts
 +|   |   ├── _index.md
 +|   |   ├── post-01.md
 +|   |   └── post-02.md
 +|   └── quote
 +|   |   ├── quote-01.md
 +|   |   └── quote-02.md
 +...
 +```
 +
 +Using the above example, let's assume you have the following in `content/posts/_index.md`:
 +
 +{{< code file="content/posts/_index.md" >}}
 +---
 +title: My Go Journey
 +date: 2017-03-23
 +publishdate: 2017-03-24
 +---
 +
 +I decided to start learning Go in March 2017.
 +
 +Follow my journey through this new blog.
 +{{< /code >}}
 +
 +You can now access this `_index.md`'s' content in your list template:
 +
 +{{< code file="layouts/_default/list.html" download="list.html" >}}
 +{{ define "main" }}
 +<main>
 +    <article>
 +        <header>
 +            <h1>{{.Title}}</h1>
 +        </header>
 +        <!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
 +        {{.Content}}
 +    </article>
 +    <ul>
 +    <!-- Ranges through content/posts/*.md -->
 +    {{ range .Pages }}
 +        <li>
 +            <a href="{{.Permalink}}">{{.Date.Format "2006-01-02"}} | {{.Title}}</a>
 +        </li>
 +    {{ end }}
 +    </ul>
 +</main>
 +{{ end }}
 +{{< /code >}}
 +
 +This above will output the following HTML:
 +
 +{{< code file="example.com/posts/index.html" copy="false" >}}
 +<!--top of your baseof code-->
 +<main>
 +    <article>
 +        <header>
 +            <h1>My Go Journey</h1>
 +        </header>
 +        <p>I decided to start learning Go in March 2017.</p>
 +        <p>Follow my journey through this new blog.</p>
 +    </article>
 +    <ul>
 +        <li><a href="/posts/post-01/">Post 1</a></li>
 +        <li><a href="/posts/post-02/">Post 2</a></li>
 +    </ul>
 +</main>
 +<!--bottom of your baseof-->
 +{{< /code >}}
 +
 +### List Pages Without `_index.md`
 +
 +You do *not* have to create an `_index.md` file for every list page (i.e. section, taxonomy, taxonomy terms, etc) or the homepage. If Hugo does not find an `_index.md` within the respective content section when rendering a list template, the page will be created but with no `{{.Content}}` and only the default values for `.Title` etc.
 +
 +Using this same `layouts/_default/list.html` template and applying it to the `quotes` section above will render the following output. Note that `quotes` does not have an `_index.md` file to pull from:
 +
 +{{< code file="example.com/quote/index.html" copy="false" >}}
 +<!--baseof-->
 +<main>
 +    <article>
 +        <header>
 +        <!-- Hugo assumes that .Title is the name of the section since there is no _index.md content file from which to pull a "title:" field -->
 +            <h1>Quotes</h1>
 +        </header>
 +    </article>
 +    <ul>
 +        <li><a href="https://example.com/quote/quotes-01/">Quote 1</a></li>
 +        <li><a href="https://example.com/quote/quotes-02/">Quote 2</a></li>
 +    </ul>
 +</main>
 +<!--baseof-->
 +{{< /code >}}
 +
 +{{% note %}}
 +The default behavior of Hugo is to pluralize list titles; hence the inflection of the `quote` section to "Quotes" when called with the `.Title` [page variable](/variables/page/). You can change this via the `pluralizeListTitles` directive in your [site configuration](/getting-started/configuration/).
 +{{% /note %}}
 +
 +## Example List Templates
 +
 +### Section Template
 +
 +This list template has been modified slightly from a template originally used in [spf13.com](http://spf13.com/). It makes use of [partial templates][partials] for the chrome of the rendered page rather than using a [base template][base]. The examples that follow also use the [content view templates][views] `li.html` or `summary.html`.
 +
 +{{< code file="layouts/section/posts.html" >}}
 +{{ partial "header.html" . }}
 +{{ partial "subheader.html" . }}
 +<main>
 +  <div>
 +   <h1>{{ .Title }}</h1>
 +        <ul>
 +        <!-- Renders the li.html content view for each content/posts/*.md -->
 +            {{ range .Pages }}
 +                {{ .Render "li"}}
 +            {{ end }}
 +        </ul>
 +  </div>
 +</main>
 +{{ partial "footer.html" . }}
 +{{< /code >}}
 +
 +### Taxonomy Template
 +
 +{{< code file="layouts/_default/taxonomy.html" download="taxonomy.html" >}}
 +{{ define "main" }}
 +<main>
 +  <div>
 +   <h1>{{ .Title }}</h1>
 +   <!-- ranges through each of the content files associated with a particular taxonomy term and renders the summary.html content view -->
 +    {{ range .Pages }}
 +        {{ .Render "summary"}}
 +    {{ end }}
 +  </div>
 +</main>
 +{{ end }}
 +{{< /code >}}
 +
 +## Order Content
 +
 +Hugo lists render the content based on metadata you provide in [front matter][]. In addition to sane defaults, Hugo also ships with multiple methods to make quick work of ordering content inside list templates:
 +
 +### Default: Weight > Date > LinkTitle > FilePath
 +
 +{{< code file="layouts/partials/default-order.html" >}}
 +<ul>
 +    {{ range .Pages }}
 +        <li>
 +            <h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
 +            <time>{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
 +        </li>
 +    {{ end }}
 +</ul>
 +{{< /code >}}
 +
 +### By Weight
 +
 +Lower weight gets higher precedence. So content with lower weight will come first.
 +
 +{{< code file="layouts/partials/by-weight.html" >}}
 +<ul>
 +    {{ range .Pages.ByWeight }}
 +        <li>
 +            <h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
 +            <time>{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
 +        </li>
 +    {{ end }}
 +</ul>
 +{{< /code >}}
 +
 +### By Date
 +
 +{{< code file="layouts/partials/by-date.html" >}}
 +<ul>
 +    <!-- orders content according to the "date" field in front matter -->
 +    {{ range .Pages.ByDate }}
 +        <li>
 +            <h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
 +            <time>{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
 +        </li>
 +    {{ end }}
 +</ul>
 +{{< /code >}}
 +
 +### By Publish Date
 +
 +{{< code file="layouts/partials/by-publish-date.html" >}}
 +<ul>
 +    <!-- orders content according to the "publishdate" field in front matter -->
 +    {{ range .Pages.ByPublishDate }}
 +        <li>
 +            <h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
 +            <time>{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
 +        </li>
 +    {{ end }}
 +</ul>
 +{{< /code >}}
 +
 +### By Expiration Date
 +
 +{{< code file="layouts/partials/by-expiry-date.html" >}}
 +<ul>
 +    {{ range .Pages.ByExpiryDate }}
 +        <li>
 +            <h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
 +            <time>{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
 +        </li>
 +    {{ end }}
 +</ul>
 +{{< /code >}}
 +
 +### By Last Modified Date
 +
 +{{< code file="layouts/partials/by-last-mod.html" >}}
 +<ul>
 +    <!-- orders content according to the "lastmod" field in front matter -->
 +    {{ range .Pages.ByLastmod }}
 +        <li>
 +            <h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
 +            <time>{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
 +        </li>
 +    {{ end }}
 +</ul>
 +{{< /code >}}
 +
 +### By Length
 +
 +{{< code file="layouts/partials/by-length.html" >}}
 +<ul>
 +    <!-- orders content according to content length in ascending order (i.e., the shortest content will be listed first) -->
 +    {{ range .Pages.ByLength }}
 +        <li>
 +            <h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
 +            <time>{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
 +        </li>
 +    {{ end }}
 +</ul>
 +{{< /code >}}
 +
 +### By Title
 +
 +{{< code file="layouts/partials/by-title.html" >}}
 +<ul>
 +    <!-- ranges through content in ascending order according to the "title" field set in front matter -->
 +    {{ range .Pages.ByTitle }}
 +        <li>
 +            <h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
 +            <time>{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
 +        </li>
 +    {{ end }}
 +</ul>
 +{{< /code >}}
 +
 +### By Link Title
 +
 +{{< code file="layouts/partials/by-link-title.html" >}}
 +<ul>
 +    <!-- ranges through content in ascending order according to the "linktitle" field in front matter. If a "linktitle" field is not set, the range will start with content that only has a "title" field and use that value for .LinkTitle -->
 +    {{ range .Pages.ByLinkTitle }}
 +        <li>
 +            <h1><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></h1>
 +            <time>{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
 +        </li>
 +    {{ end }}
 +</ul>
 +{{< /code >}}
 +
 +### By Parameter
 +
 +Order based on the specified front matter parameter. Content that does not have the specified front matter field  will use the site's `.Site.Params` default. If the parameter is not found at all in some entries, those entries will appear together at the end of the ordering.
 +
 +{{< code file="layouts/partials/by-rating.html" >}}
 +<!-- Ranges through content according to the "rating" field set in front matter -->
 +{{ range (.Pages.ByParam "rating") }}
 +  <!-- ... -->
 +{{ end }}
 +{{< /code >}}
 +
 +If the targeted front matter field is nested beneath another field, you can access the field using dot notation.
 +
 +{{< code file="layouts/partials/by-nested-param.html" >}}
 +{{ range (.Pages.ByParam "author.last_name") }}
 +  <!-- ... -->
 +{{ end }}
 +{{< /code >}}
 +
 +### Reverse Order
 +
 +Reversing order can be applied to any of the above methods. The following uses `ByDate` as an example:
 +
 +{{< code file="layouts/partials/by-date-reverse.html" >}}
 +<ul>
 +    {{ range .Pages.ByDate.Reverse }}
 +        <li>
 +            <h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
 +            <time>{{ .Date.Format "Mon, Jan 2, 2006" }}</time>
 +        </li>
 +    {{ end }}
 +</ul>
 +{{< /code >}}
 +
 +## Group Content
 +
 +Hugo provides some functions for grouping pages by Section, Type, Date, etc.
 +
 +### By Page Field
 +
 +{{< code file="layouts/partials/by-page-field.html" >}}
 +<!-- Groups content according to content section. The ".Key" in this instance will be the section's title. -->
 +{{ range .Pages.GroupBy "Section" }}
 +<h3>{{ .Key }}</h3>
 +<ul>
 +    {{ range .Pages }}
 +    <li>
 +    <a href="{{ .Permalink }}">{{ .Title }}</a>
 +    <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
 +    </li>
 +    {{ end }}
 +</ul>
 +{{ end }}
 +{{< /code >}}
 +
 +In the above example, you may want `{{.Title}}` to point the `title` field you have added to your `_index.md` file instead. You can access this value using the [`.GetPage` function][getpage]:
 +
 +{{< code file="layouts/partials/by-page-field.html" >}}
 +<!-- Groups content according to content section.-->
 +{{ range .Pages.GroupBy "Section" }}
 +<!-- Checks for existence of _index.md for a section; if available, pulls from "title" in front matter -->
 +{{ with $.Site.GetPage "section" .Key }}
 +<h3>{{.Title}}</h3>
 +{{ else }}
 +<!-- If no _index.md is available, ".Key" defaults to the section title and filters to title casing -->
 +<h3>{{ .Key | title }}</h3>
 +{{ end }}
 +<ul>
 +    {{ range .Pages }}
 +    <li>
 +    <a href="{{ .Permalink }}">{{ .Title }}</a>
 +    <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
 +    </li>
 +    {{ end }}
 +</ul>
 +{{ end }}
 +{{< /code >}}
 +
 +### By Date
 +
 +{{< code file="layouts/partials/by-page-date.html" >}}
 +<!-- Groups content by month according to the "date" field in front matter -->
 +{{ range .Pages.GroupByDate "2006-01" }}
 +<h3>{{ .Key }}</h3>
 +<ul>
 +    {{ range .Pages }}
 +    <li>
 +    <a href="{{ .Permalink }}">{{ .Title }}</a>
 +    <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
 +    </li>
 +    {{ end }}
 +</ul>
 +{{ end }}
 +{{< /code >}}
 +
 +### By Publish Date
 +
 +{{< code file="layouts/partials/by-page-publish-date.html" >}}
 +<!-- Groups content by month according to the "publishdate" field in front matter -->
 +{{ range .Pages.GroupByPublishDate "2006-01" }}
 +<h3>{{ .Key }}</h3>
 +<ul>
 +    {{ range .Pages }}
 +    <li>
 +    <a href="{{ .Permalink }}">{{ .Title }}</a>
 +    <div class="meta">{{ .PublishDate.Format "Mon, Jan 2, 2006" }}</div>
 +    </li>
 +    {{ end }}
 +</ul>
 +{{ end }}
 +{{< /code >}}
 +
 +### By Page Parameter
 +
 +{{< code file="layouts/partials/by-page-param.html" >}}
 +<!-- Groups content according to the "param_key" field in front matter -->
 +{{ range .Pages.GroupByParam "param_key" }}
 +<h3>{{ .Key }}</h3>
 +<ul>
 +    {{ range .Pages }}
 +    <li>
 +    <a href="{{ .Permalink }}">{{ .Title }}</a>
 +    <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
 +    </li>
 +    {{ end }}
 +</ul>
 +{{ end }}
 +{{< /code >}}
 +
 +### By Page Parameter in Date Format
 +
 +The following template takes grouping by `date` a step further and uses Go's layout string. See the [`Format` function][] for more examples of how to use Go's layout string to format dates in Hugo.
 +
 +{{< code file="layouts/partials/by-page-param-as-date.html" >}}
 +<!-- Groups content by month according to the "param_key" field in front matter -->
 +{{ range .Pages.GroupByParamDate "param_key" "2006-01" }}
 +<h3>{{ .Key }}</h3>
 +<ul>
 +    {{ range .Pages }}
 +    <li>
 +    <a href="{{ .Permalink }}">{{ .Title }}</a>
 +    <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
 +    </li>
 +    {{ end }}
 +</ul>
 +{{ end }}
 +{{< /code >}}
 +
 +### Reverse Key Order
 +
 +Ordering of groups is performed by keys in alphanumeric order (A–Z, 1–100) and in reverse chronological order (i.e., with the newest first) for dates.
 +
 +While these are logical defaults, they are not always the desired order. There are two different syntaxes to change Hugo's default ordering for groups, both of which work the same way.
 +
 +#### 1. Adding the Reverse Method
 +
 +```
 +{{ range (.Pages.GroupBy "Section").Reverse }}
 +```
 +
 +```
 +{{ range (.Pages.GroupByDate "2006-01").Reverse }}
 +```
 +
 +#### 2. Providing the Alternate Direction
 +
 +```
 +{{ range .Pages.GroupByDate "2006-01" "asc" }}
 +```
 +
 +```
 +{{ range .Pages.GroupBy "Section" "desc" }}
 +```
 +
 +### Order Within Groups
 +
 +Because Grouping returns a `{{.Key}}` and a slice of pages, all of the ordering methods listed above are available.
 +
 +Here is the ordering for the example that follows:
 +
 +1. Content is grouped by month according to the `date` field in front matter.
 +2. Groups are listed in ascending order (i.e., the oldest groups first)
 +3. Pages within each respective group are ordered alphabetically according to the `title`.
 +
 +{{< code file="layouts/partials/by-group-by-page.html" >}}
 +{{ range .Pages.GroupByDate "2006-01" "asc" }}
 +<h3>{{ .Key }}</h3>
 +<ul>
 +    {{ range .Pages.ByTitle }}
 +    <li>
 +    <a href="{{ .Permalink }}">{{ .Title }}</a>
 +    <div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
 +    </li>
 +    {{ end }}
 +</ul>
 +{{ end }}
 +{{< /code >}}
 +
 +## Filtering and Limiting Lists {#filtering-and-limiting-lists}
 +
 +Sometimes you only want to list a subset of the available content. A
 +common is to only display posts from [**main sections**][mainsections]
 +on the blog's homepage.
 +
 +See the documentation on [`where` function][wherefunction] and
 +[`first` function][firstfunction] for further details.
 +
 +[base]: /templates/base/
 +[bepsays]: http://bepsays.com/en/2016/12/19/hugo-018/
 +[directorystructure]: /getting-started/directory-structure/
 +[`Format` function]: /functions/format/
 +[front matter]: /content-management/front-matter/
 +[getpage]: /functions/getpage/
 +[homepage]: /templates/homepage/
 +[homepage]: /templates/homepage/
 +[mentalmodel]: http://webstyleguide.com/wsg3/3-information-architecture/3-site-structure.html
 +[pagevars]: /variables/page/
 +[partials]: /templates/partials/
 +[RSS 2.0]: http://cyber.law.harvard.edu/rss/rss.html "RSS 2.0 Specification"
 +[rss]: /templates/rss/
 +[sections]: /content-management/sections/
 +[sectiontemps]: /templates/section-templates/
 +[sitevars]: /variables/site/
 +[taxlists]: /templates/taxonomy-templates/#taxonomy-list-templates/
 +[taxterms]: /templates/taxonomy-templates/#taxonomy-terms-templates/
 +[taxvars]: /variables/taxonomy/
 +[views]: /templates/views/
 +[wherefunction]: /functions/where/
 +[firstfunction]: /functions/first/
 +[mainsections]: /functions/where/#mainsections
index 5efb080d839b86fc78db592adc25f656cb7deeb5,0000000000000000000000000000000000000000..b39fe42a927bceb03a7f069ca8c1a876e6e0709f
mode 100644,000000..100644
--- /dev/null
@@@ -1,162 -1,0 +1,162 @@@
- Use the [`absLangUrl`](/functions/abslangurl) or [`relLangUrl`](/functions/rellangurl) functions if your theme makes use of the [multilingual feature](/content-management/multilingual/). In contrast to `absURL` and `relURL`, these two functions add the correct language prefix to the url.
 +---
 +title: Menu Templates
 +linktitle: Menu Templates
 +description: Menus are a powerful but simple feature for content management but can be easily manipulated in your templates to meet your design needs.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-01
 +categories: [templates]
 +keywords: [lists,sections,menus]
 +menu:
 +  docs:
 +    title: "how to use menus in templates"
 +    parent: "templates"
 +    weight: 130
 +weight: 130
 +sections_weight: 130
 +draft: false
 +aliases: [/templates/menus/]
 +toc: false
 +---
 +
 +Hugo makes no assumptions about how your rendered HTML will be
 +structured. Instead, it provides all of the functions you will need to be
 +able to build your menu however you want.
 +
 +The following is an example:
 +
 +{{< code file="layouts/partials/sidebar.html" download="sidebar.html" >}}
 +<!-- sidebar start -->
 +<aside>
 +    <ul>
 +        {{ $currentPage := . }}
 +        {{ range .Site.Menus.main }}
 +            {{ if .HasChildren }}
 +                <li class="{{ if $currentPage.HasMenuCurrent "main" . }}active{{ end }}">
 +                    <a href="#">
 +                        {{ .Pre }}
 +                        <span>{{ .Name }}</span>
 +                    </a>
 +                </li>
 +                <ul class="sub-menu">
 +                    {{ range .Children }}
 +                        <li class="{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}">
 +                            <a href="{{ .URL }}">{{ .Name }}</a>
 +                        </li>
 +                    {{ end }}
 +                </ul>
 +            {{ else }}
 +                <li>
 +                    <a href="{{ .URL }}">
 +                        {{ .Pre }}
 +                        <span>{{ .Name }}</span>
 +                    </a>
 +                </li>
 +            {{ end }}
 +        {{ end }}
 +        <li>
 +            <a href="#" target="_blank">Hardcoded Link 1</a>
 +        </li>
 +        <li>
 +            <a href="#" target="_blank">Hardcoded Link 2</a>
 +        </li>
 +    </ul>
 +</aside>
 +{{< /code >}}
 +
 +{{% note "`absLangURL` and `relLangURL`" %}}
++Use the [`absLangURL`](/functions/abslangurl) or [`relLangURL`](/functions/rellangurl) functions if your theme makes use of the [multilingual feature](/content-management/multilingual/). In contrast to `absURL` and `relURL`, these two functions add the correct language prefix to the url.
 +{{% /note %}}
 +
 +## Section Menu for Lazy Bloggers
 +
 +To enable this menu, configure `sectionPagesMenu` in your site `config`:
 +
 +```
 +sectionPagesMenu = "main"
 +```
 +
 +The menu name can be anything, but take a note of what it is.
 +
 +This will create a menu with all the sections as menu items and all the sections' pages as "shadow-members". The _shadow_ implies that the pages isn't represented by a menu-item themselves, but this enables you to create a top-level menu like this:
 +
 +```
 +<nav class="sidebar-nav">
 +    {{ $currentPage := . }}
 +    {{ range .Site.Menus.main }}
 +    <a class="sidebar-nav-item{{if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }} active{{end}}" href="{{ .URL }}" title="{{ .Title }}">{{ .Name }}</a>
 +    {{ end }}
 +</nav>
 +```
 +
 +In the above, the menu item is marked as active if on the current section's list page or on a page in that section.
 +
 +
 +## Site Config menus
 +
 +The above is all that's needed. But if you want custom menu items, e.g. changing weight, name, or link title attribute, you can define them manually in the site config file:
 +
 +{{< code-toggle file="config" >}}
 +[[menu.main]]
 +    name = "This is the blog section"
 +    title = "blog section"
 +    weight = -110
 +    identifier = "blog"
 +    url = "/blog/"
 +{{</ code-toggle >}}
 +
 +{{% note %}}
 +The `identifier` *must* match the section name.
 +{{% /note %}}
 +
 +## Menu Entries from the Page's front matter
 +
 +It's also possible to create menu entries from the page (i.e. the `.md`-file).
 +
 +Here is a `yaml` example:
 +
 +```
 +---
 +title: Menu Templates
 +linktitle: Menu Templates
 +menu:
 +  docs:
 +    title: "how to use menus in templates"
 +    parent: "templates"
 +    weight: 130
 +---
 +...
 +```
 +
 +{{% note %}}
 +You can define more than one menu. It also doesn't have to be a complex value,
 +`menu` can also be a string, an array of strings, or an array of complex values
 +like in the example above.
 +{{% /note %}}
 +
 +### Using .Page in Menus
 +
 +If you use the front matter method of defining menu entries, you'll get access to the `.Page` variable.
 +This allows to use every variable that's reachable from the [page variable](/variables/page/).
 +
 +This variable is only set when the menu entry is defined in the page's front matter.
 +Menu entries from the site config don't know anything about `.Page`.
 +
 +That's why you have to use the go template's `with` keyword or something similar in your templating language.
 +
 +Here's an example:
 +
 +```
 +<nav class="sidebar-nav">
 +  {{ range .Site.Menus.main }}
 +    <a href="{{ .URL }}" title="{{ .Title }}">
 +      {{- .Name -}}
 +      {{- with .Page -}}
 +        <span class="date">
 +        {{- dateFormat " (2006-01-02)" .Date -}}
 +        </span>
 +      {{- end -}}
 +    </a>
 +  {{ end }}
 +</nav>
 +```
index 1ab45e4c7a8f8e726fd09c4cb3f6bc6a4da5fc3a,0000000000000000000000000000000000000000..487661f5aa17e859506acb51ff31725048cfafed
mode 100644,000000..100644
--- /dev/null
@@@ -1,253 -1,0 +1,253 @@@
- **Note:** these media types are configured for **your output formats**. If you want to redefine one of Hugo's default output formats (e.g. `HTML`), you also need to redefine the output format. So, if you want to change the suffix of the `HTML` output format from `html` (default) to `htm`:
 +---
 +title: Custom Output Formats
 +linktitle: Custom Output Formats
 +description: Hugo can output content in multiple formats, including calendar events, e-book formats, Google AMP, and JSON search indexes, or any custom text format.
 +date: 2017-03-22
 +publishdate: 2017-03-22
 +lastmod: 2017-03-22
 +categories: [templates]
 +keywords: ["amp","outputs","rss"]
 +menu:
 +  docs:
 +    parent: "templates"
 +    weight: 18
 +weight: 18
 +sections_weight: 18
 +draft: false
 +aliases: [/templates/outputs/,/extras/output-formats/,/content-management/custom-outputs/]
 +toc: true
 +---
 +
 +This page describes how to properly configure your site with the media types and output formats, as well as where to create your templates for your custom outputs.
 +
 +## Media Types
 +
 +A [media type][] (also known as *MIME type* and *content type*) is a two-part identifier for file formats and format contents transmitted on the Internet.
 +
 +This is the full set of built-in media types in Hugo:
 +
 +{{< datatable "media" "types" "type" "suffix" >}}
 +
 +**Note:**
 +
 +* It is possible to add custom media types or change the defaults; e.g., if you want to change the suffix for `text/html` to `asp`.
 +* The `Suffix` is the value that will be used for URLs and filenames for that media type in Hugo.
 +* The `Type` is the identifier that must be used when defining new/custom `Output Formats` (see below).
 +* The full set of media types will be registered in Hugo's built-in development server to make sure they are recognized by the browser.
 +
 +To add or modify a media type, define it in a `mediaTypes` section in your [site configuration][config], either for all sites or for a given language.
 +
 +{{< code-toggle file="config" >}}
 +[mediaTypes]
 +  [mediaTypes."text/enriched"]
 +  suffix = "enr"
 +  [mediaTypes."text/html"]
 +  suffix = "asp"
 +{{</ code-toggle >}}
 +
 +The above example adds one new media type, `text/enriched`, and changes the suffix for the built-in `text/html` media type.
 +
++**Note:** these media types are configured for **your output formats**. If you want to redefine one of Hugo's default output formats (e.g. `HTML`), you also need to redefine the media type. So, if you want to change the suffix of the `HTML` output format from `html` (default) to `htm`:
 +
 +```toml
 +[mediaTypes]
 +[mediaTypes."text/html"]
 +suffix = "htm"
 +
 +# Redefine HTML to update its media type.
 +[outputFormats]
 +[outputFormats.HTML]
 +mediaType = "text/html"
 +```
 +
 +**Note** that for the above to work, you also need to add an `outputs` definition in your site config.
 +
 +## Output Format Definitions
 +
 +Given a media type and some additional configuration, you get an **Output Format**.
 +
 +This is the full set of Hugo's built-in output formats:
 +
 +{{< datatable "output" "formats" "name" "mediaType" "path" "baseName" "rel" "protocol" "isPlainText" "isHTML" "noUgly" "permalinkable" >}}
 +
 +* A page can be output in as many output formats as you want, and you can have an infinite amount of output formats defined **as long as they resolve to a unique path on the file system**. In the above table, the best example of this is `AMP` vs. `HTML`. `AMP` has the value `amp` for `Path` so it doesn't overwrite the `HTML` version; e.g. we can now have both `/index.html` and `/amp/index.html`.
 +* The `MediaType` must match the `Type` of an already defined media type.
 +* You can define new output formats or redefine built-in output formats; e.g., if you want to put `AMP` pages in a different path.
 +
 +To add or modify an output format, define it in an `outputFormats` section in your site's [configuration file](/getting-started/configuration/), either for all sites or for a given language.
 +
 +{{< code-toggle file="config" >}}
 +[outputFormats.MyEnrichedFormat]
 +mediaType = "text/enriched"
 +baseName = "myindex"
 +isPlainText = true
 +protocol = "bep://"
 +{{</ code-toggle >}}
 +
 +The above example is fictional, but if used for the homepage on a site with `baseURL` `https://example.org`, it will produce a plain text homepage with the URL `bep://example.org/myindex.enr`.
 +
 +### Configure Output Formats
 +
 +The following is the full list of configuration options for output formats and their default values:
 +
 +`name`
 +: the output format identifier. This is used to define what output format(s) you want for your pages.
 +
 +`mediaType`
 +: this must match the `Type` of a defined media type.
 +
 +`path`
 +: sub path to save the output files.
 +
 +`baseName`
 +: the base filename for the list filenames (homepage, etc.). **Default:** `index`.
 +
 +`rel`
 +: can be used to create `rel` values in `link` tags. **Default:** `alternate`.
 +
 +`protocol`
 +: will replace the "http://" or "https://" in your `baseURL` for this output format.
 +
 +`isPlainText`
 +: use Go's plain text templates parser for the templates. **Default:** `false`.
 +
 +`isHTML`
 +: used in situations only relevant for `HTML`-type formats; e.g., page aliases.
 +
 +`noUgly`
 +: used to turn off ugly URLs If `uglyURLs` is set to `true` in your site. **Default:** `false`.
 +
 +`notAlternative`
 +: enable if it doesn't make sense to include this format in an `AlternativeOutputFormats` format listing on `Page` (e.g., with `CSS`). Note that we use the term *alternative* and not *alternate* here, as it does not necessarily replace the other format. **Default:** `false`.
 +
 +`permalinkable`
 +: make `.Permalink` and `.RelPermalink` return the rendering Output Format rather than main ([see below](#link-to-output-formats)). This is enabled by default for `HTML` and `AMP`. **Default:** `false`.
 +
 +## Output Formats for Pages
 +
 +A `Page` in Hugo can be rendered to multiple *output formats* on the file
 +system.
 +
 +### Default Output Formats
 +Every `Page` has a [`Kind`][page_kinds] attribute, and the default Output
 +Formats are set based on that.
 +
 +| Kind           | Default Output Formats |
 +|--------------- |----------------------- |
 +| `page`         | HTML                   |
 +| `home`         | HTML, RSS              |
 +| `section`      | HTML, RSS              |
 +| `taxonomyTerm` | HTML, RSS              |
 +| `taxonomy`     | HTML, RSS              |
 +
 +### Customizing Output Formats
 +
 +This can be changed by defining an `outputs` list of output formats in either
 +the `Page` front matter or in the site configuration (either for all sites or
 +per language).
 +
 +Example from site config file:
 +
 +{{< code-toggle file="config" >}}
 +[outputs]
 +  home = ["HTML", "AMP", "RSS"]
 +  page = ["HTML"]
 +{{</ code-toggle >}}
 +
 +
 +Note that in the above examples, the *output formats* for `section`,
 +`taxonomyTerm` and `taxonomy` will stay at their default value `["HTML",
 +"RSS"]`.
 +
 +* The `outputs` definition is per [`Page` `Kind`][page_kinds] (`page`, `home`, `section`, `taxonomy`, or `taxonomyTerm`).
 +* The names (e.g. `HTML`, `AMP`) used must match the `Name` of a defined *Output Format*.
 +  * These names are case insensitive.
 +* These can be overridden per `Page` in the front matter of content files.
 +
 +The following is an example of `YAML` front matter in a content file that defines output formats for the rendered `Page`:
 +
 +```yaml
 +---
 +date: "2016-03-19"
 +outputs:
 +- html
 +- amp
 +- json
 +---
 +```
 +
 +##  List Output formats
 +
 +Each `Page` has both an `.OutputFormats` (all formats, including the current) and an `.AlternativeOutputFormats` variable, the latter of which is useful for creating a `link rel` list in your site's `<head>`:
 +
 +```go-html-template
 +{{ range .AlternativeOutputFormats -}}
 +<link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
 +{{ end -}}
 +```
 +
 +## Link to Output Formats
 +
 +`.Permalink` and `.RelPermalink` on `Page` will return the first output format defined for that page (usually `HTML` if nothing else is defined). This is regardless of the template file they are being called from.
 +
 +__from `single.json.json`:__
 +```go-html-template
 +{{ .RelPermalink }} > /that-page/
 +{{ with  .OutputFormats.Get "json" -}}
 +{{ .RelPermalink }} > /that-page/index.json
 +{{- end }}
 +```
 +
 +In order for them to return the output format of the current template file instead, the given output format should have its `permalinkable` setting set to true.
 +
 +__Same template file as above with json output format's `permalinkable` set to true:__
 +
 +```go-html-template
 +{{ .RelPermalink }} > /that-page/index.json
 +{{ with  .OutputFormats.Get "html" -}}
 +{{ .RelPermalink }} > /that-page/
 +{{- end }}
 +```
 +
 +From content files, you can use the [`ref` or `relref` shortcodes](/content-management/shortcodes/#ref-and-relref):
 +
 +```go-html-template
 +[Neat]({{</* ref "blog/neat.md" "amp" */>}})
 +[Who]({{</* relref "about.md#who" "amp" */>}})
 +```
 +
 +## Templates for Your Output Formats
 +
 +A new output format needs a corresponding template in order to render anything useful.
 +
 +{{% note %}}
 +The key distinction for Hugo versions 0.20 and newer is that Hugo looks at an output format's `Name` and MediaType's `Suffix` when choosing the template used to render a given `Page`.
 +{{% /note %}}
 +
 +The following table shows examples of different output formats, the suffix used, and Hugo's respective template [lookup order][]. All of the examples in the table can:
 +
 +* Use a [base template][base].
 +* Include [partial templates][partials]
 +
 +{{< datatable "output" "layouts" "Example" "OutputFormat" "Suffix" "Template Lookup Order" >}}
 +
 +Hugo will now also detect the media type and output format of partials, if possible, and use that information to decide if the partial should be parsed as a plain text template or not.
 +
 +Hugo will look for the name given, so you can name it whatever you want. But if you want it treated as plain text, you should use the file suffix and, if needed, the name of the Output Format. The pattern is as follows:
 +
 +```
 +[partial name].[OutputFormat].[suffix]
 +```
 +
 +The partial below is a plain text template (Outpuf Format is `CSV`, and since this is the only output format with the suffix `csv`, we don't need to include the Output Format's `Name`):
 +
 +```
 +{{ partial "mytextpartial.csv" . }}
 +```
 +
 +[base]: /templates/base/
 +[config]: /getting-started/configuration/
 +[lookup order]: /templates/lookup/
 +[media type]: https://en.wikipedia.org/wiki/Media_type
 +[partials]: /templates/partials/
 +[page_kinds]: /templates/section-templates/#page-kinds
index 715bc2a486bd617a4d49ef387bd00c20daf2e6f1,0000000000000000000000000000000000000000..08049bfbd76a08178061fa11d389349d9a343e9c
mode 100644,000000..100644
--- /dev/null
@@@ -1,126 -1,0 +1,120 @@@
- {{% warning "XML Header" %}}
- Hugo will automatically add the following header line to this file on render. Please do *not* include this in the template as it's not valid HTML.
- ```
- <?xml version="1.0" encoding="utf-8" standalone="yes" ?>
- ```
- {{% /warning %}}
 +---
 +title: RSS Templates
 +linktitle: RSS Templates
 +description: Hugo ships with its own RSS 2.0 template that requires almost no configuration, or you can create your own RSS templates.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-01
 +keywords: [rss, xml, templates]
 +categories: [templates]
 +menu:
 +  docs:
 +    parent: "templates"
 +    weight: 150
 +weight: 150
 +sections_weight: 150
 +draft: false
 +toc: true
 +---
 +
 +## RSS Template Lookup Order
 +
 +See [Template Lookup Order](/templates/lookup-order/) for the complete reference.
 +
 +{{% note "Hugo Ships with an RSS Template" %}}
 +Hugo ships with its own [RSS 2.0 template](#the-embedded-rss-xml). The embedded template will be sufficient for most use cases.
 +{{% /note %}}
 +
 +RSS pages are of the type `Page` and have all the [page variables](/variables/page/) available to use in the templates.
 +
 +### Section RSS
 +
 +A [section’s][section] RSS will be rendered at `/<SECTION>/index.xml` (e.g., http://spf13.com/project/index.xml).
 +
 +Hugo provides the ability for you to define any RSS type you wish and can have different RSS files for each section and taxonomy.
 +
 +## Lookup Order for RSS Templates
 +
 +The table below shows the RSS template lookup order for the different page kinds. The first listing shows the lookup order when running with a theme (`demoTheme`).
 +
 +{{< datatable-filtered "output" "layouts" "OutputFormat == RSS" "Example" "OutputFormat" "Suffix" "Template Lookup Order" >}}
 +
 +## Configure RSS
 +
 +By default, Hugo will create an unlimited number of RSS entries. You can limit the number of articles included in the built-in RSS templates by assigning a numeric value to `rssLimit:` field in your project's [`config` file][config].
 +
 +The following values will also be included in the RSS output if specified in your site’s configuration:
 +
 +```toml
 +languageCode = "en-us"
 +copyright = "This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License."
 +
 +[author]
 +    name = "My Name Here"
 +```
 +
 +## The Embedded rss.xml
 +
 +This is the default RSS template that ships with Hugo. It adheres to the [RSS 2.0 Specification][RSS 2.0].
 +
 +```xml
++{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>" | safeHTML }}
 +<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
 +  <channel>
 +    <title>{{ if eq  .Title  .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
 +    <link>{{ .Permalink }}</link>
 +    <description>Recent content {{ if ne  .Title  .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description>
 +    <generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
 +    <language>{{.}}</language>{{end}}{{ with .Site.Author.email }}
 +    <managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Author.email }}
 +    <webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}{{ with .Site.Copyright }}
 +    <copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
 +    <lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
 +    {{ with .OutputFormats.Get "RSS" }}
 +        {{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
 +    {{ end }}
 +    {{ range .Pages }}
 +    <item>
 +      <title>{{ .Title }}</title>
 +      <link>{{ .Permalink }}</link>
 +      <pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
 +      {{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
 +      <guid>{{ .Permalink }}</guid>
 +      <description>{{ .Summary | html }}</description>
 +    </item>
 +    {{ end }}
 +  </channel>
 +</rss>
 +```
 +
 +## Reference your RSS Feed in `<head>`
 +
 +In your `header.html` template, you can specify your RSS feed in your `<head></head>` tag using Hugo's [Output Formats][Output Formats] like this:
 +
 +```go-html-template
 +{{ range .AlternativeOutputFormats -}}
 +    {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
 +{{ end -}}
 +```
 +
 +If you only want the RSS link, you can query the formats:
 +
 +```go-html-template
 +{{ with .OutputFormats.Get "rss" -}}
 +    {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
 +{{ end -}}
 +```
 +
 +Either of the two snippets above will generate the below `link` tag on the site homepage for RSS output:
 +
 +```html
 +<link rel="alternate" type="application/rss+xml" href="https://example.com/index.xml" title="Site Title">
 +```
 +
 +_We are assuming `BaseURL` to be `https://example.com/` and `$.Site.Title` to be `"Site Title"` in this example._
 +
 +[config]: /getting-started/configuration/
 +[embedded]: #the-embedded-rss-xml
 +[RSS 2.0]: http://cyber.law.harvard.edu/rss/rss.html "RSS 2.0 Specification"
 +[section]: /content-management/sections/
 +[Output Formats]: /templates/output-formats/#link-to-output-formats
index 7cbc7cefbfea076116d46d437d67715ff5a6834c,0000000000000000000000000000000000000000..9afc0d389a7e3738474b5bcdf12c8155a00cf7ae
mode 100644,000000..100644
--- /dev/null
@@@ -1,111 -1,0 +1,106 @@@
- {{% note %}}
- Hugo will automatically add the following header line to this file
- on render. Please don't include this in the template as it's not valid HTML.
- `<?xml version="1.0" encoding="utf-8" standalone="yes" ?>`
- {{% /note %}}
 +---
 +title: Sitemap Template
 +# linktitle: Sitemap
 +description: Hugo ships with a built-in template file observing the v0.9 of the Sitemap Protocol, but you can override this template if needed.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-01
 +categories: [templates]
 +keywords: [sitemap, xml, templates]
 +menu:
 +  docs:
 +    parent: "templates"
 +    weight: 160
 +weight: 160
 +sections_weight: 160
 +draft: false
 +aliases: [/layout/sitemap/,/templates/sitemap/]
 +toc: false
 +---
 +
 +A single Sitemap template is used to generate the `sitemap.xml` file.
 +Hugo automatically comes with this template file. *No work is needed on
 +the users' part unless they want to customize `sitemap.xml`.*
 +
 +A sitemap is a `Page` and therefore has all the [page variables][pagevars] available to use in this template along with Sitemap-specific ones:
 +
 +`.Sitemap.ChangeFreq`
 +: The page change frequency
 +
 +`.Sitemap.Priority`
 +: The priority of the page
 +
 +`.Sitemap.Filename`
 +: The sitemap filename
 +
 +If provided, Hugo will use `/layouts/sitemap.xml` instead of the internal `sitemap.xml` template that ships with Hugo.
 +
 +## Sitemap Templates
 +
 +Hugo has built-on Sitemap templates, but you can provide your own if needed, in either `layouts/sitemap.xml` or `layouts/_default/sitemap.xml`.
 +
 +For multilingual sites, we also create a Sitemap index. You can provide a custom layout for that in either `layouts/sitemapindex.xml` or `layouts/_default/sitemapindex.xml`.
 +
 +## Hugo’s sitemap.xml
 +
 +This template respects the version 0.9 of the [Sitemap Protocol](http://www.sitemaps.org/protocol.html).
 +
 +```xml
++{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>" | safeHTML }}
 +<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
 +  xmlns:xhtml="http://www.w3.org/1999/xhtml">
 +  {{ range .Data.Pages }}
 +  <url>
 +    <loc>{{ .Permalink }}</loc>{{ if not .Lastmod.IsZero }}
 +    <lastmod>{{ safeHTML ( .Lastmod.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}
 +    <changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
 +    <priority>{{ .Sitemap.Priority }}</priority>{{ end }}{{ if .IsTranslated }}{{ range .Translations }}
 +    <xhtml:link
 +                rel="alternate"
 +                hreflang="{{ .Lang }}"
 +                href="{{ .Permalink }}"
 +                />{{ end }}
 +    <xhtml:link
 +                rel="alternate"
 +                hreflang="{{ .Lang }}"
 +                href="{{ .Permalink }}"
 +                />{{ end }}
 +  </url>
 +  {{ end }}
 +</urlset>
 +```
 +
 +## Hugo's sitemapindex.xml
 +
 +This is used to create a Sitemap index in multilingual mode:
 +
 +```xml
++{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>" | safeHTML }}
 +<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 +      {{ range . }}
 +      <sitemap>
 +              <loc>{{ .SitemapAbsURL }}</loc>
 +              {{ if not .LastChange.IsZero }}
 +              <lastmod>{{ .LastChange.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</lastmod>
 +              {{ end }}
 +      </sitemap>
 +      {{ end }}
 +</sitemapindex>
 +```
 +
 +## Configure `sitemap.xml`
 +
 +Defaults for `<changefreq>`, `<priority>` and `filename` values can be set in the site's config file, e.g.:
 +
 +{{< code-toggle file="config" >}}
 +[sitemap]
 +  changefreq = "monthly"
 +  priority = 0.5
 +  filename = "sitemap.xml"
 +{{</ code-toggle >}}
 +
 +The same fields can be specified in an individual content file's front matter in order to override the value assigned to that piece of content at render time.
 +
 +
 +
 +[pagevars]: /variables/page/
index a563831ff027b384a632869364d8c484717394fa,0000000000000000000000000000000000000000..4e394dfbf6ae73612de848d2784df9edcd539174
mode 100644,000000..100644
--- /dev/null
@@@ -1,44 -1,0 +1,49 @@@
 +---
 +title: Hugo-specific Variables
 +linktitle: Hugo Variables
 +description: The `.Hugo` variable provides easy access to Hugo-related data.
 +date: 2017-03-12
 +publishdate: 2017-03-12
 +lastmod: 2017-03-12
 +categories: [variables and params]
 +keywords: [hugo,generator]
 +draft: false
 +menu:
 +  docs:
 +    parent: "variables"
 +    weight: 60
 +weight: 60
 +sections_weight: 60
 +aliases: []
 +toc: false
 +wip: false
 +---
 +
++{{% warning "Deprecated" %}}
++Page's `.Hugo` is deprecated and will be removed in a future release. Use the global `hugo` function.  
++For example: `hugo.Generator`.
++{{% /warning %}}
++
 +It contains the following fields:
 +
 +.Hugo.Generator
 +: `<meta>` tag for the version of Hugo that generated the site. `.Hugo.Generator` outputs a *complete* HTML tag; e.g. `<meta name="generator" content="Hugo 0.18" />`
 +
 +.Hugo.Version
 +: the current version of the Hugo binary you are using e.g. `0.13-DEV`<br>
 +
 +.Hugo.Environment
 +: the current running environment as defined through the `--environment` cli tag.
 +
 +.Hugo.CommitHash
 +: the git commit hash of the current Hugo binary e.g. `0e8bed9ccffba0df554728b46c5bbf6d78ae5247`
 +
 +.Hugo.BuildDate
 +: the compile date of the current Hugo binary formatted with RFC 3339 e.g. `2002-10-02T10:00:00-05:00`<br>
 +
 +
 +
 +{{% note "Use the Hugo Generator Tag" %}}
 +We highly recommend using `.Hugo.Generator` in your website's `<head>`. `.Hugo.Generator` is included by default in all themes hosted on [themes.gohugo.io](http://themes.gohugo.io). The generator tag allows the Hugo team to track the usage and popularity of Hugo.
 +{{% /note %}}
 +
index 69d46ca2bc59a95ce076e2969d474c8c281dd15e,0000000000000000000000000000000000000000..6717fecbb2b7cb4fcb310c01212d30aabfa3935e
mode 100644,000000..100644
--- /dev/null
@@@ -1,124 -1,0 +1,124 @@@
- [.HasChildren](/functions/haschildren/)
 +---
 +title: Menu Entry Properties
 +linktitle: Menu Entry Properties
 +description: A menu entry in a menu-template has specific variables and functions to make menu management easier.
 +date: 2017-03-12
 +publishdate: 2017-03-12
 +lastmod: 2017-03-12
 +categories: [variables and params]
 +keywords: [menus]
 +draft: false
 +menu:
 +  docs:
 +    title: "variables defined by a menu entry"
 +    parent: "variables"
 +    weight: 50
 +weight: 50
 +sections_weight: 50
 +aliases: [/variables/menu/]
 +toc: false
 +---
 +
 +A **menu entry** has the following properties available that can be used in a
 +[menu template][menu-template].
 +
 +## Menu Entry Variables
 +
 +.Menu
 +: _string_ <br />
 +Name of the **menu** that contains this **menu entry**.
 +
 +.URL
 +: _string_ <br />
 +URL that the menu entry points to. The `url` key, if set for the menu entry,
 +sets this value. If that key is not set, and if the menu entry is set in a page
 +front-matter, this value defaults to the page's `.RelPermalink`.
 +
 +.Page
 +: _\*Page_ <br />
 +Reference to the [page object][page-object] associated with the menu entry. This
 +will be non-nil if the menu entry is set via a page's front-matter and not via
 +the site config.
 +
 +.Name
 +: _string_ <br />
 +Name of the menu entry. The `name` key, if set for the menu entry, sets
 +this value. If that key is not set, and if the menu entry is set in a page
 +front-matter, this value defaults to the page's `.LinkTitle`.
 +
 +.Identifier
 +: _string_ <br />
 +Value of the `identifier` key if set for the menu entry. This value must be
 +unique for each menu entry. **It is necessary to set a unique identifier
 +manually if two or more menu entries have the same `.Name`.**
 +
 +.Pre
 +: _template.HTML_ <br />
 +Value of the `pre` key if set for the menu entry. This value typically contains
 +a string representing HTML.
 +
 +.Post
 +: _template.HTML_ <br />
 +Value of the `post` key if set for the menu entry. This value typically contains
 +a string representing HTML.
 +
 +.Weight
 +: _int_ <br />
 +Value of the `weight` key if set for the menu entry. If that key is not set,
 +and if the menu entry is set in a page front-matter, this value defaults to the
 +page's `.Weight`.
 +
 +.Parent
 +: _string_ <br />
 +Name (or Identifier if present) of this menu entry's parent **menu entry**. The
 +`parent` key, if set for the menu entry, sets this value. If this key is set,
 +this menu entry nests under that parent entry, else it nests directly under the
 +`.Menu`.
 +
 +.Children
 +: _Menu_ <br />
 +This value is auto-populated by Hugo. It is a collection of children menu
 +entries, if any, under the current menu entry.
 +
 +## Menu Entry Functions
 +
 +Menus also have the following functions available:
 +
++.HasChildren
 +: _boolean_ <br />
 +Returns `true` if `.Children` is non-nil.
 +
 +.KeyName
 +: _string_ <br />
 +Returns the `.Identifier` if present, else returns the `.Name`.
 +
 +.IsEqual
 +: _boolean_ <br />
 +Returns `true` if the two compared menu entries represent the same menu entry.
 +
 +.IsSameResource
 +: _boolean_ <br />
 +Returns `true` if the two compared menu entries have the same `.URL`.
 +
 +.Title
 +: _string_ <br />
 +Link title, meant to be used in the `title` attribute of a menu entry's
 +`<a>`-tags.  Returns the menu entry's `title` key if set. Else, if the menu
 +entry was created through a page's front-matter, it returns the page's
 +`.LinkTitle`. Else, it just returns an empty string.
 +
 +## Other Menu-related Functions
 +
 +Additionally, here are some relevant methods available to menus on a page:
 +
 +.IsMenuCurrent
 +: _(menu string, menuEntry *MenuEntry ) boolean_ <br />
 +See [`.IsMenuCurrent` method](/functions/ismenucurrent/).
 +
 +.HasMenuCurrent
 +: _(menu string, menuEntry *MenuEntry) boolean_ <br />
 +See [`.HasMenuCurrent` method](/functions/hasmenucurrent/).
 +
 +
 +[menu-template]: /templates/menu-templates/
 +[page-object]: /variables/page/
index 2e1beb6cbca6199773c742382208e2e0d18003a5,0000000000000000000000000000000000000000..e538096f314d1361afb0dad5de5e5d2ea8d94bb8
mode 100644,000000..100644
--- /dev/null
@@@ -1,295 -1,0 +1,304 @@@
 +---
 +title: Page Variables
 +linktitle:
 +description: Page-level variables are defined in a content file's front matter, derived from the content's file location, or extracted from the content body itself.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-01
 +categories: [variables and params]
 +keywords: [pages]
 +draft: false
 +menu:
 +  docs:
 +    title: "variables defined by a page"
 +    parent: "variables"
 +    weight: 20
 +weight: 20
 +sections_weight: 20
 +aliases: []
 +toc: true
 +---
 +
 +The following is a list of page-level variables. Many of these will be defined in the front matter, derived from file location, or extracted from the content itself.
 +
 +{{% note "`.Scratch`" %}}
 +See [`.Scratch`](/functions/scratch/) for page-scoped, writable variables.
 +{{% /note %}}
 +
 +## Page Variables
 +
 +.AlternativeOutputFormats
 +: contains all alternative formats for a given page; this variable is especially useful `link rel` list in your site's `<head>`. (See [Output Formats](/templates/output-formats/).)
 +
++.Aliases
++: aliases of this page
++
 +.Content
 +: the content itself, defined below the front matter.
 +
 +.Data
 +: the data specific to this type of page.
 +
 +.Date
 +: the date associated with the page; `.Date` pulls from the `date` field in a content's front matter. See also `.ExpiryDate`, `.PublishDate`, and `.Lastmod`.
 +
 +.Description
 +: the description for the page.
 +
 +.Dir
 +: the path of the folder containing this content file. The path is relative to the `content` folder.
 +
 +.Draft
 +: a boolean, `true` if the content is marked as a draft in the front matter.
 +
 +.ExpiryDate
 +: the date on which the content is scheduled to expire; `.ExpiryDate` pulls from the `expirydate` field in a content's front matter. See also `.PublishDate`, `.Date`, and `.Lastmod`.
 +
 +.File
 +: filesystem-related data for this content file. See also [File Variables][].
 +
 +.FuzzyWordCount
 +: the approximate number of words in the content.
 +
 +.Hugo
 +: see [Hugo Variables](/variables/hugo/).
 +
 +.IsHome
 +: `true` in the context of the [homepage](/templates/homepage/).
 +
 +.IsNode
 +: always `false` for regular content pages.
 +
 +.IsPage
 +: always `true` for regular content pages.
 +
 +.IsTranslated
 +: `true` if there are translations to display.
 +
 +.Keywords
 +: the meta keywords for the content.
 +
 +.Kind
 +: the page's *kind*. Possible return values are `page`, `home`, `section`, `taxonomy`, or `taxonomyTerm`. Note that there are also `RSS`, `sitemap`, `robotsTXT`, and `404` kinds, but these are only available during the rendering of each of these respective page's kind and therefore *not* available in any of the `Pages` collections.
 +
 +.Language
 +: a language object that points to the language's definition in the site `config`. `.Language.Lang` gives you the language code.
 +
 +.Lastmod
 +: the date the content was last modified. `.Lastmod` pulls from the `lastmod` field in a content's front matter.
 +
 + - If `lastmod` is not set, and `.GitInfo` feature is disabled, the front matter `date` field will be used.
 + - If `lastmod` is not set, and `.GitInfo` feature is enabled, `.GitInfo.AuthorDate` will be used instead.
 +
 +See also `.ExpiryDate`, `.Date`, `.PublishDate`, and [`.GitInfo`][gitinfo].
 +
 +.LinkTitle
 +: access when creating links to the content. If set, Hugo will use the `linktitle` from the front matter before `title`.
 +
 +.Next
 +: Pointer to the next [regular page](/variables/site/#site-pages) (sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath)). Example: `{{if .NextPage}}{{.NextPage.Permalink}}{{end}}`.
 +
 +.NextInSection
 +: Pointer to the next [regular page](/variables/site/#site-pages) within the same section. Pages are sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath). Example: `{{if .NextInSection}}{{.NextInSection.Permalink}}{{end}}`.
 +
 +.OutputFormats
 +: contains all formats, including the current format, for a given page. Can be combined the with [`.Get` function](/functions/get/) to grab a specific format. (See [Output Formats](/templates/output-formats/).)
 +
 +.Pages
 +: a collection of associated pages. This value will be `nil` within
 +  the context of regular content pages. See [`.Pages`](#pages).
 +
 +.Permalink
 +: the Permanent link for this page; see [Permalinks](/content-management/urls/)
 +
 +.Plain
 +: the Page content stripped of HTML tags and presented as a string.
 +
 +.PlainWords
 +: the Page content stripped of HTML as a `[]string` using Go's [`strings.Fields`](https://golang.org/pkg/strings/#Fields) to split `.Plain` into a slice.
 +
 +.Prev (deprecated)
 +: Pointer to the previous [regular page](/variables/site/#site-pages) (sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath)). Example: `{{if .PrevPage}}{{.PrevPage.Permalink}}{{end}}`.
 +
 +.PrevInSection
 +: Pointer to the previous [regular page](/variables/site/#site-pages) within the same section. Pages are sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath). Example: `{{if .PrevInSection}}{{.PrevInSection.Permalink}}{{end}}`.
 +
 +.PublishDate
 +: the date on which the content was or will be published; `.Publishdate` pulls from the `publishdate` field in a content's front matter. See also `.ExpiryDate`, `.Date`, and `.Lastmod`.
 +
 +.RSSLink (deprecated)
 +: link to the page's RSS feed. This is deprecated. You should instead do something like this: `{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}`.
 +
 +.RawContent
 +: raw markdown content without the front matter. Useful with [remarkjs.com](
 +http://remarkjs.com)
 +
 +.ReadingTime
 +: the estimated time, in minutes, it takes to read the content.
 +
++.Resources
++: resources such as images and CSS that are associated with this page
++
 +.Ref
 +: returns the permalink for a given reference (e.g., `.Ref "sample.md"`).  `.Ref` does *not* handle in-page fragments correctly. See [Cross References](/content-management/cross-references/).
 +
 +.RelPermalink
 +: the relative permanent link for this page.
 +
 +.RelRef
 +: returns the relative permalink for a given reference (e.g., `RelRef
 +"sample.md"`). `.RelRef` does *not* handle in-page fragments correctly. See [Cross References](/content-management/cross-references/).
 +
 +.Site
 +: see [Site Variables](/variables/site/).
 +
 +.Sites
 +: returns all sites (languages). A typical use case would be to link back to the main language: `<a href="{{ .Sites.First.Home.RelPermalink }}">...</a>`.
 +
 +.Sites.First
 +: returns the site for the first language. If this is not a multilingual setup, it will return itself.
 +
 +.Summary
 +: a generated summary of the content for easily showing a snippet in a summary view. The breakpoint can be set manually by inserting <code>&lt;!&#x2d;&#x2d;more&#x2d;&#x2d;&gt;</code> at the appropriate place in the content page, or the summary can be written independent of the page text.  See [Content Summaries](/content-management/summaries/) for more details.
 +
 +.TableOfContents
 +: the rendered [table of contents](/content-management/toc/) for the page.
 +
 +.Title
 +: the title for this page.
 +
 +.Translations
 +: a list of translated versions of the current page. See [Multilingual Mode](/content-management/multilingual/) for more information.
++
++.TranslationKey
++: the key used to map language translations of the current page. See [Multilingual Mode](/content-management/multilingual/) for more information.
 +
 +.Truncated
 +: a boolean, `true` if the `.Summary` is truncated. Useful for showing a "Read more..." link only when necessary.  See [Summaries](/content-management/summaries/) for more information.
 +
 +.Type
 +: the [content type](/content-management/types/) of the content (e.g., `posts`).
 +
 +.UniqueID
 +: the MD5-checksum of the content file's path.
 +
 +.Weight
 +: assigned weight (in the front matter) to this content, used in sorting.
 +
 +.WordCount
 +: the number of words in the content.
 +
 +## Section Variables and Methods
 +
 +Also see [Sections](/content-management/sections/).
 +
 +{{< readfile file="/content/en/readfiles/sectionvars.md" markdown="true" >}}
 +
 +## The `.Pages` Variable {#pages}
 +
 +`.Pages` is an alias to `.Data.Pages`. It is conventional to use the
 +aliased form `.Pages`.
 +
 +### `.Pages` compared to `.Site.Pages`
 +
 +{{< readfile file="/content/en/readfiles/pages-vs-site-pages.md" markdown="true" >}}
 +
 +## Page-level Params
 +
 +Any other value defined in the front matter in a content file, including taxonomies, will be made available as part of the `.Params` variable.
 +
 +```
 +---
 +title: My First Post
 +date: 2017-02-20T15:26:23-06:00
 +categories: [one]
 +tags: [two,three,four]
 +```
 +
 +With the above front matter, the `tags` and `categories` taxonomies are accessible via the following:
 +
 +* `.Params.tags`
 +* `.Params.categories`
 +
 +{{% note "Casing of Params" %}}
 +Page-level `.Params` are *only* accessible in lowercase.
 +{{% /note %}}
 +
 +The `.Params` variable is particularly useful for the introduction of user-defined front matter fields in content files. For example, a Hugo website on book reviews could have the following front matter in `/content/review/book01.md`:
 +
 +```
 +---
 +...
 +affiliatelink: "http://www.my-book-link.here"
 +recommendedby: "My Mother"
 +...
 +---
 +```
 +
 +These fields would then be accessible to the `/themes/yourtheme/layouts/review/single.html` template through `.Params.affiliatelink` and `.Params.recommendedby`, respectively.
 +
 +Two common situations where this type of front matter field could be introduced is as a value of a certain attribute like `href=""` or by itself to be displayed as text to the website's visitors.
 +
 +{{< code file="/themes/yourtheme/layouts/review/single.html" >}}
 +<h3><a href={{ printf "%s" $.Params.affiliatelink }}>Buy this book</a></h3>
 +<p>It was recommended by {{ .Params.recommendedby }}.</p>
 +{{< /code >}}
 +
 +This template would render as follows, assuming you've set [`uglyURLs`](/content-management/urls/) to `false` in your [site `config`](/getting-started/configuration/):
 +
 +{{< output file="yourbaseurl/review/book01/index.html" >}}
 +<h3><a href="http://www.my-book-link.here">Buy this book</a></h3>
 +<p>It was recommended by my Mother.</p>
 +{{< /output >}}
 +
 +{{% note %}}
 +See [Archetypes](/content-management/archetypes/) for consistency of `Params` across pieces of content.
 +{{% /note %}}
 +
 +### The `.Param` Method
 +
 +In Hugo, you can declare params in individual pages and globally for your entire website. A common use case is to have a general value for the site param and a more specific value for some of the pages (i.e., a header image):
 +
 +```
 +{{ $.Param "header_image" }}
 +```
 +
 +The `.Param` method provides a way to resolve a single value according to it's definition in a page parameter (i.e. in the content's front matter) or a site parameter (i.e., in your `config`).
 +
 +### Access Nested Fields in Front Matter
 +
 +When front matter contains nested fields like the following:
 +
 +```
 +---
 +author:
 +  given_name: John
 +  family_name: Feminella
 +  display_name: John Feminella
 +---
 +```
 +`.Param` can access these fields by concatenating the field names together with a dot:
 +
 +```
 +{{ $.Param "author.display_name" }}
 +```
 +
 +If your front matter contains a top-level key that is ambiguous with a nested key, as in the following case:
 +
 +```
 +---
 +favorites.flavor: vanilla
 +favorites:
 +  flavor: chocolate
 +---
 +```
 +
 +The top-level key will be preferred. Therefore, the following method, when applied to the previous example, will print `vanilla` and not `chocolate`:
 +
 +```
 +{{ $.Param "favorites.flavor" }}
 +=> vanilla
 +```
 +
 +[gitinfo]: /variables/git/
 +[File Variables]: /variables/files/
index f44b509c2815c7aed2de2b7055c5fa7a12744cff,0000000000000000000000000000000000000000..5e02317c6b64b7ef8bbd9e1c3038e21e882c9765
mode 100644,000000..100644
--- /dev/null
@@@ -1,25 -1,0 +1,25 @@@
-       <img style="max-width: 100%; height: auto;" src="{{ $image.RelPermalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}">
 +{{ $original := .Page.Resources.GetMatch (printf "*%s*" (.Get 0)) }}
 +{{ $command := .Get 1 }}
 +{{ $options := .Get 2 }}
 +{{ if eq $command "Fit"}}
 +{{ .Scratch.Set "image" ($original.Fit $options) }}
 +{{ else if eq $command "Resize"}}
 +{{ .Scratch.Set "image" ($original.Resize $options) }}
 +{{ else if eq $command "Fill"}}
 +{{ .Scratch.Set "image" ($original.Fill $options) }}
 +{{ else }}
 +{{ errorf "Invalid image processing command: Must be one of Fit, Fill or Resize."}}
 +{{ end }}
 +{{ $image := .Scratch.Get "image" }}
 +<figure style="padding: 0.25rem; margin: 2rem 0; background-color: #cccc">
++      <img style="max-width: 100%; width: auto; height: auto;" src="{{ $image.RelPermalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}">
 +      <figcaption>
 +      <small>
 +      {{ with .Inner }}
 +      {{ . }}
 +      {{ else }}
 +      .{{ $command }} "{{ $options }}"
 +      {{ end }}
 +      </small>
 +      </figcaption>
 +</figure>
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..1856292ee2f56a3d85017d15d1869a367dc5c353
new file mode 100644 (file)
Binary files differ
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..85249f61ee78e33505293670233e6d6cb6ecd49f
new file mode 100644 (file)
Binary files differ
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..4bb9e230a005a60eec6258250ea8c0b573939bd7
new file mode 100644 (file)
Binary files differ
index 2411b1348f04eef59e7fbe8522f804592a83fddc,0000000000000000000000000000000000000000..86ae1c85f0ec0578bdaded2a3eabb96f873ba86d
mode 100644,000000..100644
--- /dev/null
@@@ -1,63 -1,0 +1,63 @@@
-     <link rel="preload" href="{{ "files/muli-latin-200.woff2" | absURL }}" as="font" type="font/woff2" crossorigin>
-     <link rel="preload" href="{{ "files/muli-latin-400.woff2" | absURL }}" as="font" type="font/woff2" crossorigin>
-     <link rel="preload" href="{{ "files/muli-latin-800.woff2" | absURL }}" as="font" type="font/woff2" crossorigin>
 +<!DOCTYPE html>
 +<html class="no-js" lang="{{ with $.Site.LanguageCode }}{{ . }}{{ else }}en-us{{ end }}">
 +  <head>
 +    <meta charset="utf-8">
 +    {{/* https://www.zachleat.com/web/preload/ */}}
++    <link rel="preload" href="{{ "fonts/muli-latin-200.woff2" | absURL }}" as="font" type="font/woff2" crossorigin>
++    <link rel="preload" href="{{ "fonts/muli-latin-400.woff2" | absURL }}" as="font" type="font/woff2" crossorigin>
++    <link rel="preload" href="{{ "fonts/muli-latin-800.woff2" | absURL }}" as="font" type="font/woff2" crossorigin>
 +
 +    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 +     {{/* NOTE: the Site's title, and if there is a page title, that is set too */}}
 +    <title>{{ block "title" . }}{{ with .Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{ end }}</title>
 +
 +    <meta name="viewport" content="width=device-width,minimum-scale=1">
 +     {{ hugo.Generator }}
 +
 +      {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production")  }}
 +        <META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
 +      {{ else }}
 +        <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
 +      {{ end }}
 +
 +    {{ range .AlternativeOutputFormats -}}
 +    <link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink | safeURL }}">
 +    {{ end -}}
 +    
 +    {{ $stylesheet := resources.Get "output/css/app.css" | minify | fingerprint }}
 +    {{ with $stylesheet }}
 +      <link rel="stylesheet" href="{{ .Permalink | relURL }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous"> 
 +      {{ $.Scratch.Set "stylesheet" . }}    
 +    {{end}}
 +
 +
 +     {{ block "scripts" . }}
 +      {{- partial "site-scripts.html" . -}}
 +    {{ end }}
 +      {{ partial "site-manifest.html" . }}
 +      {{- partial "head-additions.html" . -}}
 +      {{- template "_internal/opengraph.html" . -}}
 +      {{- template "_internal/google_news.html" . -}}
 +      {{- template "_internal/schema.html" . -}}
 +      {{- template "_internal/twitter_cards.html" . -}}
 +
 +      {{ if eq (getenv "HUGO_ENV") "production" | or (eq .Site.Params.env "production")  }}
 +        {{ partial "gtag" . }}
 +      {{ end }}
 +
 +
 +          
 +
 +  </head>
 +  <body class="ma0 sans-serif bg-primary-color-light{{ with getenv "HUGO_ENV" }} {{ . }}{{ end }}">
 +    {{ block "nav" . }}{{ partial "site-nav.html" . }}{{ end }}
 +    {{ block "header" . }}{{ end }}
 +    <main role="main" class="content-with-sidebar min-vh-100 pb7 pb0-ns">
 +      {{ block "main" . }}{{ end }}
 +    </main>
 +
 +    {{ block "footer" . }}{{ partialCached "site-footer.html" . }}{{ end }}
 +    
 +
 +  </body>
 +</html>
index 1d6eea0fbba7f9bc783867c6ae7fc2876fda1986,0000000000000000000000000000000000000000..fc3e673bedca1a015a1fc8704b7c5e7d8cea08dc
mode 100644,000000..100644
--- /dev/null
@@@ -1,7647 -1,0 +1,7666 @@@
-           "resolved": "http://registry.npmjs.org/util/-/util-0.10.3.tgz",
 +{
 +  "name": "gohugo-default-styles",
 +  "version": "1.1.0",
 +  "lockfileVersion": 1,
 +  "requires": true,
 +  "dependencies": {
 +    "@webassemblyjs/ast": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.7.11.tgz",
 +      "integrity": "sha512-ZEzy4vjvTzScC+SH8RBssQUawpaInUdMTYwYYLh54/s8TuT0gBLuyUnppKsVyZEi876VmmStKsUs28UxPgdvrA==",
 +      "dev": true,
 +      "requires": {
 +        "@webassemblyjs/helper-module-context": "1.7.11",
 +        "@webassemblyjs/helper-wasm-bytecode": "1.7.11",
 +        "@webassemblyjs/wast-parser": "1.7.11"
 +      }
 +    },
 +    "@webassemblyjs/floating-point-hex-parser": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.11.tgz",
 +      "integrity": "sha512-zY8dSNyYcgzNRNT666/zOoAyImshm3ycKdoLsyDw/Bwo6+/uktb7p4xyApuef1dwEBo/U/SYQzbGBvV+nru2Xg==",
 +      "dev": true
 +    },
 +    "@webassemblyjs/helper-api-error": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.11.tgz",
 +      "integrity": "sha512-7r1qXLmiglC+wPNkGuXCvkmalyEstKVwcueZRP2GNC2PAvxbLYwLLPr14rcdJaE4UtHxQKfFkuDFuv91ipqvXg==",
 +      "dev": true
 +    },
 +    "@webassemblyjs/helper-buffer": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.11.tgz",
 +      "integrity": "sha512-MynuervdylPPh3ix+mKZloTcL06P8tenNH3sx6s0qE8SLR6DdwnfgA7Hc9NSYeob2jrW5Vql6GVlsQzKQCa13w==",
 +      "dev": true
 +    },
 +    "@webassemblyjs/helper-code-frame": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.11.tgz",
 +      "integrity": "sha512-T8ESC9KMXFTXA5urJcyor5cn6qWeZ4/zLPyWeEXZ03hj/x9weSokGNkVCdnhSabKGYWxElSdgJ+sFa9G/RdHNw==",
 +      "dev": true,
 +      "requires": {
 +        "@webassemblyjs/wast-printer": "1.7.11"
 +      }
 +    },
 +    "@webassemblyjs/helper-fsm": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.11.tgz",
 +      "integrity": "sha512-nsAQWNP1+8Z6tkzdYlXT0kxfa2Z1tRTARd8wYnc/e3Zv3VydVVnaeePgqUzFrpkGUyhUUxOl5ML7f1NuT+gC0A==",
 +      "dev": true
 +    },
 +    "@webassemblyjs/helper-module-context": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.11.tgz",
 +      "integrity": "sha512-JxfD5DX8Ygq4PvXDucq0M+sbUFA7BJAv/GGl9ITovqE+idGX+J3QSzJYz+LwQmL7fC3Rs+utvWoJxDb6pmC0qg==",
 +      "dev": true
 +    },
 +    "@webassemblyjs/helper-wasm-bytecode": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.11.tgz",
 +      "integrity": "sha512-cMXeVS9rhoXsI9LLL4tJxBgVD/KMOKXuFqYb5oCJ/opScWpkCMEz9EJtkonaNcnLv2R3K5jIeS4TRj/drde1JQ==",
 +      "dev": true
 +    },
 +    "@webassemblyjs/helper-wasm-section": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.11.tgz",
 +      "integrity": "sha512-8ZRY5iZbZdtNFE5UFunB8mmBEAbSI3guwbrsCl4fWdfRiAcvqQpeqd5KHhSWLL5wuxo53zcaGZDBU64qgn4I4Q==",
 +      "dev": true,
 +      "requires": {
 +        "@webassemblyjs/ast": "1.7.11",
 +        "@webassemblyjs/helper-buffer": "1.7.11",
 +        "@webassemblyjs/helper-wasm-bytecode": "1.7.11",
 +        "@webassemblyjs/wasm-gen": "1.7.11"
 +      }
 +    },
 +    "@webassemblyjs/ieee754": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.7.11.tgz",
 +      "integrity": "sha512-Mmqx/cS68K1tSrvRLtaV/Lp3NZWzXtOHUW2IvDvl2sihAwJh4ACE0eL6A8FvMyDG9abes3saB6dMimLOs+HMoQ==",
 +      "dev": true,
 +      "requires": {
 +        "@xtuc/ieee754": "^1.2.0"
 +      }
 +    },
 +    "@webassemblyjs/leb128": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.7.11.tgz",
 +      "integrity": "sha512-vuGmgZjjp3zjcerQg+JA+tGOncOnJLWVkt8Aze5eWQLwTQGNgVLcyOTqgSCxWTR4J42ijHbBxnuRaL1Rv7XMdw==",
 +      "dev": true,
 +      "requires": {
 +        "@xtuc/long": "4.2.1"
 +      }
 +    },
 +    "@webassemblyjs/utf8": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.7.11.tgz",
 +      "integrity": "sha512-C6GFkc7aErQIAH+BMrIdVSmW+6HSe20wg57HEC1uqJP8E/xpMjXqQUxkQw07MhNDSDcGpxI9G5JSNOQCqJk4sA==",
 +      "dev": true
 +    },
 +    "@webassemblyjs/wasm-edit": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.11.tgz",
 +      "integrity": "sha512-FUd97guNGsCZQgeTPKdgxJhBXkUbMTY6hFPf2Y4OedXd48H97J+sOY2Ltaq6WGVpIH8o/TGOVNiVz/SbpEMJGg==",
 +      "dev": true,
 +      "requires": {
 +        "@webassemblyjs/ast": "1.7.11",
 +        "@webassemblyjs/helper-buffer": "1.7.11",
 +        "@webassemblyjs/helper-wasm-bytecode": "1.7.11",
 +        "@webassemblyjs/helper-wasm-section": "1.7.11",
 +        "@webassemblyjs/wasm-gen": "1.7.11",
 +        "@webassemblyjs/wasm-opt": "1.7.11",
 +        "@webassemblyjs/wasm-parser": "1.7.11",
 +        "@webassemblyjs/wast-printer": "1.7.11"
 +      }
 +    },
 +    "@webassemblyjs/wasm-gen": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.11.tgz",
 +      "integrity": "sha512-U/KDYp7fgAZX5KPfq4NOupK/BmhDc5Kjy2GIqstMhvvdJRcER/kUsMThpWeRP8BMn4LXaKhSTggIJPOeYHwISA==",
 +      "dev": true,
 +      "requires": {
 +        "@webassemblyjs/ast": "1.7.11",
 +        "@webassemblyjs/helper-wasm-bytecode": "1.7.11",
 +        "@webassemblyjs/ieee754": "1.7.11",
 +        "@webassemblyjs/leb128": "1.7.11",
 +        "@webassemblyjs/utf8": "1.7.11"
 +      }
 +    },
 +    "@webassemblyjs/wasm-opt": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.11.tgz",
 +      "integrity": "sha512-XynkOwQyiRidh0GLua7SkeHvAPXQV/RxsUeERILmAInZegApOUAIJfRuPYe2F7RcjOC9tW3Cb9juPvAC/sCqvg==",
 +      "dev": true,
 +      "requires": {
 +        "@webassemblyjs/ast": "1.7.11",
 +        "@webassemblyjs/helper-buffer": "1.7.11",
 +        "@webassemblyjs/wasm-gen": "1.7.11",
 +        "@webassemblyjs/wasm-parser": "1.7.11"
 +      }
 +    },
 +    "@webassemblyjs/wasm-parser": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.11.tgz",
 +      "integrity": "sha512-6lmXRTrrZjYD8Ng8xRyvyXQJYUQKYSXhJqXOBLw24rdiXsHAOlvw5PhesjdcaMadU/pyPQOJ5dHreMjBxwnQKg==",
 +      "dev": true,
 +      "requires": {
 +        "@webassemblyjs/ast": "1.7.11",
 +        "@webassemblyjs/helper-api-error": "1.7.11",
 +        "@webassemblyjs/helper-wasm-bytecode": "1.7.11",
 +        "@webassemblyjs/ieee754": "1.7.11",
 +        "@webassemblyjs/leb128": "1.7.11",
 +        "@webassemblyjs/utf8": "1.7.11"
 +      }
 +    },
 +    "@webassemblyjs/wast-parser": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.7.11.tgz",
 +      "integrity": "sha512-lEyVCg2np15tS+dm7+JJTNhNWq9yTZvi3qEhAIIOaofcYlUp0UR5/tVqOwa/gXYr3gjwSZqw+/lS9dscyLelbQ==",
 +      "dev": true,
 +      "requires": {
 +        "@webassemblyjs/ast": "1.7.11",
 +        "@webassemblyjs/floating-point-hex-parser": "1.7.11",
 +        "@webassemblyjs/helper-api-error": "1.7.11",
 +        "@webassemblyjs/helper-code-frame": "1.7.11",
 +        "@webassemblyjs/helper-fsm": "1.7.11",
 +        "@xtuc/long": "4.2.1"
 +      }
 +    },
 +    "@webassemblyjs/wast-printer": {
 +      "version": "1.7.11",
 +      "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.7.11.tgz",
 +      "integrity": "sha512-m5vkAsuJ32QpkdkDOUPGSltrg8Cuk3KBx4YrmAGQwCZPRdUHXxG4phIOuuycLemHFr74sWL9Wthqss4fzdzSwg==",
 +      "dev": true,
 +      "requires": {
 +        "@webassemblyjs/ast": "1.7.11",
 +        "@webassemblyjs/wast-parser": "1.7.11",
 +        "@xtuc/long": "4.2.1"
 +      }
 +    },
 +    "@webpack-contrib/config-loader": {
 +      "version": "1.2.1",
 +      "resolved": "https://registry.npmjs.org/@webpack-contrib/config-loader/-/config-loader-1.2.1.tgz",
 +      "integrity": "sha512-C7XsS6bXft0aRlyt7YCLg+fm97Mb3tWd+i5fVVlEl0NW5HKy8LoXVKj3mB7ECcEHNEEdHhgzg8gxP+Or8cMj8Q==",
 +      "dev": true,
 +      "requires": {
 +        "@webpack-contrib/schema-utils": "^1.0.0-beta.0",
 +        "chalk": "^2.1.0",
 +        "cosmiconfig": "^5.0.2",
 +        "is-plain-obj": "^1.1.0",
 +        "loud-rejection": "^1.6.0",
 +        "merge-options": "^1.0.1",
 +        "minimist": "^1.2.0",
 +        "resolve": "^1.6.0",
 +        "webpack-log": "^1.1.2"
 +      },
 +      "dependencies": {
 +        "minimist": {
 +          "version": "1.2.0",
 +          "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
 +          "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "@webpack-contrib/schema-utils": {
 +      "version": "1.0.0-beta.0",
 +      "resolved": "https://registry.npmjs.org/@webpack-contrib/schema-utils/-/schema-utils-1.0.0-beta.0.tgz",
 +      "integrity": "sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==",
 +      "dev": true,
 +      "requires": {
 +        "ajv": "^6.1.0",
 +        "ajv-keywords": "^3.1.0",
 +        "chalk": "^2.3.2",
 +        "strip-ansi": "^4.0.0",
 +        "text-table": "^0.2.0",
 +        "webpack-log": "^1.1.2"
 +      }
 +    },
 +    "@xtuc/ieee754": {
 +      "version": "1.2.0",
 +      "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
 +      "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
 +      "dev": true
 +    },
 +    "@xtuc/long": {
 +      "version": "4.2.1",
 +      "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.1.tgz",
 +      "integrity": "sha512-FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==",
 +      "dev": true
 +    },
 +    "abbrev": {
 +      "version": "1.1.1",
 +      "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
 +      "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
 +      "dev": true
 +    },
 +    "acorn": {
 +      "version": "5.7.3",
 +      "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz",
 +      "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==",
 +      "dev": true
 +    },
 +    "acorn-dynamic-import": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz",
 +      "integrity": "sha512-zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==",
 +      "dev": true,
 +      "requires": {
 +        "acorn": "^5.0.0"
 +      }
 +    },
 +    "agentkeepalive": {
 +      "version": "2.2.0",
 +      "resolved": "http://registry.npmjs.org/agentkeepalive/-/agentkeepalive-2.2.0.tgz",
 +      "integrity": "sha1-xdG9SxKQCPEWPyNvhuX66iAm4u8=",
 +      "dev": true
 +    },
 +    "ajv": {
 +      "version": "6.5.5",
 +      "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.5.tgz",
 +      "integrity": "sha512-7q7gtRQDJSyuEHjuVgHoUa2VuemFiCMrfQc9Tc08XTAc4Zj/5U1buQJ0HU6i7fKjXU09SVgSmxa4sLvuvS8Iyg==",
 +      "dev": true,
 +      "requires": {
 +        "fast-deep-equal": "^2.0.1",
 +        "fast-json-stable-stringify": "^2.0.0",
 +        "json-schema-traverse": "^0.4.1",
 +        "uri-js": "^4.2.2"
 +      }
 +    },
 +    "ajv-errors": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.0.tgz",
 +      "integrity": "sha1-7PAh+hCP0X37Xms4Py3SM+Mf/Fk=",
 +      "dev": true
 +    },
 +    "ajv-keywords": {
 +      "version": "3.2.0",
 +      "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz",
 +      "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=",
 +      "dev": true
 +    },
 +    "algoliasearch": {
 +      "version": "3.30.0",
 +      "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-3.30.0.tgz",
 +      "integrity": "sha512-FuinyPgNn0MeAHm9pan6rLgY6driY3mcTo4AWNBMY1MUReeA5PQA8apV/3SNXqA5bbsuvMvmA0ZrVzrOmEeQTA==",
 +      "dev": true,
 +      "requires": {
 +        "agentkeepalive": "^2.2.0",
 +        "debug": "^2.6.8",
 +        "envify": "^4.0.0",
 +        "es6-promise": "^4.1.0",
 +        "events": "^1.1.0",
 +        "foreach": "^2.0.5",
 +        "global": "^4.3.2",
 +        "inherits": "^2.0.1",
 +        "isarray": "^2.0.1",
 +        "load-script": "^1.0.0",
 +        "object-keys": "^1.0.11",
 +        "querystring-es3": "^0.2.1",
 +        "reduce": "^1.0.1",
 +        "semver": "^5.1.0",
 +        "tunnel-agent": "^0.6.0"
 +      },
 +      "dependencies": {
 +        "isarray": {
 +          "version": "2.0.4",
 +          "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.4.tgz",
 +          "integrity": "sha512-GMxXOiUirWg1xTKRipM0Ek07rX+ubx4nNVElTJdNLYmNO/2YrDkgJGw9CljXn+r4EWiDQg/8lsRdHyg2PJuUaA==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "ansi-align": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz",
 +      "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=",
 +      "dev": true,
 +      "requires": {
 +        "string-width": "^2.0.0"
 +      }
 +    },
 +    "ansi-regex": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
 +      "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
 +      "dev": true
 +    },
 +    "ansi-styles": {
 +      "version": "3.2.1",
 +      "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
 +      "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
 +      "dev": true,
 +      "requires": {
 +        "color-convert": "^1.9.0"
 +      }
 +    },
 +    "anymatch": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
 +      "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
 +      "dev": true,
 +      "requires": {
 +        "micromatch": "^3.1.4",
 +        "normalize-path": "^2.1.1"
 +      }
 +    },
 +    "aproba": {
 +      "version": "1.2.0",
 +      "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
 +      "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
 +      "dev": true
 +    },
 +    "argparse": {
 +      "version": "1.0.10",
 +      "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
 +      "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
 +      "dev": true,
 +      "requires": {
 +        "sprintf-js": "~1.0.2"
 +      }
 +    },
 +    "arr-diff": {
 +      "version": "4.0.0",
 +      "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
 +      "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
 +      "dev": true
 +    },
 +    "arr-flatten": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
 +      "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
 +      "dev": true
 +    },
 +    "arr-union": {
 +      "version": "3.1.0",
 +      "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
 +      "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
 +      "dev": true
 +    },
 +    "array-find-index": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
 +      "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=",
 +      "dev": true
 +    },
 +    "array-unique": {
 +      "version": "0.3.2",
 +      "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
 +      "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
 +      "dev": true
 +    },
 +    "arrify": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
 +      "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
 +      "dev": true
 +    },
 +    "asn1": {
 +      "version": "0.2.4",
 +      "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
 +      "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
 +      "dev": true,
 +      "requires": {
 +        "safer-buffer": "~2.1.0"
 +      }
 +    },
 +    "asn1.js": {
 +      "version": "4.10.1",
 +      "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz",
 +      "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==",
 +      "dev": true,
 +      "requires": {
 +        "bn.js": "^4.0.0",
 +        "inherits": "^2.0.1",
 +        "minimalistic-assert": "^1.0.0"
 +      }
 +    },
 +    "assert": {
 +      "version": "1.4.1",
 +      "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz",
 +      "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=",
 +      "dev": true,
 +      "requires": {
 +        "util": "0.10.3"
 +      },
 +      "dependencies": {
 +        "inherits": {
 +          "version": "2.0.1",
 +          "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
 +          "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=",
 +          "dev": true
 +        },
 +        "util": {
 +          "version": "0.10.3",
-           "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
++          "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz",
 +          "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=",
 +          "dev": true,
 +          "requires": {
 +            "inherits": "2.0.1"
 +          }
 +        }
 +      }
 +    },
 +    "assert-plus": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
 +      "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
 +      "dev": true
 +    },
 +    "assign-symbols": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
 +      "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
 +      "dev": true
 +    },
 +    "async-each": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
 +      "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=",
 +      "dev": true
 +    },
 +    "asynckit": {
 +      "version": "0.4.0",
 +      "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
 +      "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
 +      "dev": true
 +    },
 +    "atob": {
 +      "version": "2.1.2",
 +      "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
 +      "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
 +      "dev": true
 +    },
 +    "autocomplete.js": {
 +      "version": "0.32.0",
 +      "resolved": "https://registry.npmjs.org/autocomplete.js/-/autocomplete.js-0.32.0.tgz",
 +      "integrity": "sha512-GYGmOo0r2wLgUEYE5J9z9OSLb8e0SAicgDR1M1pHOvwQ0Hc1SLHR0EqjDhl+lhl01cYq2d7lLbsgRmaizgLqrA==",
 +      "dev": true,
 +      "requires": {
 +        "immediate": "^3.2.3"
 +      }
 +    },
 +    "aws-sign2": {
 +      "version": "0.7.0",
 +      "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
 +      "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
 +      "dev": true
 +    },
 +    "aws4": {
 +      "version": "1.8.0",
 +      "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz",
 +      "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==",
 +      "dev": true
 +    },
 +    "babel-code-frame": {
 +      "version": "6.26.0",
 +      "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
 +      "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
 +      "dev": true,
 +      "requires": {
 +        "chalk": "^1.1.3",
 +        "esutils": "^2.0.2",
 +        "js-tokens": "^3.0.2"
 +      },
 +      "dependencies": {
 +        "ansi-regex": {
 +          "version": "2.1.1",
 +          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
 +          "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
 +          "dev": true
 +        },
 +        "ansi-styles": {
 +          "version": "2.2.1",
 +          "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
 +          "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
 +          "dev": true
 +        },
 +        "chalk": {
 +          "version": "1.1.3",
-           "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
++          "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
 +          "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
 +          "dev": true,
 +          "requires": {
 +            "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"
 +          }
 +        },
 +        "strip-ansi": {
 +          "version": "3.0.1",
-       "resolved": "http://registry.npmjs.org/color/-/color-0.11.4.tgz",
++          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
 +          "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
 +          "dev": true,
 +          "requires": {
 +            "ansi-regex": "^2.0.0"
 +          }
 +        },
 +        "supports-color": {
 +          "version": "2.0.0",
 +          "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
 +          "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "babel-runtime": {
 +      "version": "6.26.0",
 +      "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
 +      "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
 +      "dev": true,
 +      "requires": {
 +        "core-js": "^2.4.0",
 +        "regenerator-runtime": "^0.11.0"
 +      }
 +    },
 +    "balanced-match": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
 +      "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
 +      "dev": true
 +    },
 +    "base": {
 +      "version": "0.11.2",
 +      "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
 +      "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
 +      "dev": true,
 +      "requires": {
 +        "cache-base": "^1.0.1",
 +        "class-utils": "^0.3.5",
 +        "component-emitter": "^1.2.1",
 +        "define-property": "^1.0.0",
 +        "isobject": "^3.0.1",
 +        "mixin-deep": "^1.2.0",
 +        "pascalcase": "^0.1.1"
 +      },
 +      "dependencies": {
 +        "define-property": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
 +          "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
 +          "dev": true,
 +          "requires": {
 +            "is-descriptor": "^1.0.0"
 +          }
 +        },
 +        "is-accessor-descriptor": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
 +          "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
 +          "dev": true,
 +          "requires": {
 +            "kind-of": "^6.0.0"
 +          }
 +        },
 +        "is-data-descriptor": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
 +          "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
 +          "dev": true,
 +          "requires": {
 +            "kind-of": "^6.0.0"
 +          }
 +        },
 +        "is-descriptor": {
 +          "version": "1.0.2",
 +          "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
 +          "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
 +          "dev": true,
 +          "requires": {
 +            "is-accessor-descriptor": "^1.0.0",
 +            "is-data-descriptor": "^1.0.0",
 +            "kind-of": "^6.0.2"
 +          }
 +        }
 +      }
 +    },
 +    "base64-js": {
 +      "version": "1.3.0",
 +      "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz",
 +      "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==",
 +      "dev": true
 +    },
 +    "bcrypt-pbkdf": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
 +      "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
 +      "dev": true,
 +      "requires": {
 +        "tweetnacl": "^0.14.3"
 +      }
 +    },
 +    "big.js": {
 +      "version": "3.2.0",
 +      "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
 +      "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==",
 +      "dev": true
 +    },
 +    "binary-extensions": {
 +      "version": "1.12.0",
 +      "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.12.0.tgz",
 +      "integrity": "sha512-DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg==",
 +      "dev": true
 +    },
 +    "bluebird": {
 +      "version": "3.5.3",
 +      "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.3.tgz",
 +      "integrity": "sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==",
 +      "dev": true
 +    },
 +    "bn.js": {
 +      "version": "4.11.8",
 +      "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
 +      "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
 +      "dev": true
 +    },
 +    "boxen": {
 +      "version": "1.3.0",
 +      "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz",
 +      "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==",
 +      "dev": true,
 +      "requires": {
 +        "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": "^2.0.0"
 +      },
 +      "dependencies": {
 +        "camelcase": {
 +          "version": "4.1.0",
 +          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
 +          "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "brace-expansion": {
 +      "version": "1.1.11",
 +      "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
 +      "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
 +      "dev": true,
 +      "requires": {
 +        "balanced-match": "^1.0.0",
 +        "concat-map": "0.0.1"
 +      }
 +    },
 +    "braces": {
 +      "version": "2.3.2",
 +      "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
 +      "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
 +      "dev": true,
 +      "requires": {
 +        "arr-flatten": "^1.1.0",
 +        "array-unique": "^0.3.2",
 +        "extend-shallow": "^2.0.1",
 +        "fill-range": "^4.0.0",
 +        "isobject": "^3.0.1",
 +        "repeat-element": "^1.1.2",
 +        "snapdragon": "^0.8.1",
 +        "snapdragon-node": "^2.0.1",
 +        "split-string": "^3.0.2",
 +        "to-regex": "^3.0.1"
 +      },
 +      "dependencies": {
 +        "extend-shallow": {
 +          "version": "2.0.1",
 +          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
 +          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
 +          "dev": true,
 +          "requires": {
 +            "is-extendable": "^0.1.0"
 +          }
 +        }
 +      }
 +    },
 +    "brorand": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz",
 +      "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=",
 +      "dev": true
 +    },
 +    "browserify-aes": {
 +      "version": "1.2.0",
 +      "resolved": "http://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
 +      "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
 +      "dev": true,
 +      "requires": {
 +        "buffer-xor": "^1.0.3",
 +        "cipher-base": "^1.0.0",
 +        "create-hash": "^1.1.0",
 +        "evp_bytestokey": "^1.0.3",
 +        "inherits": "^2.0.1",
 +        "safe-buffer": "^5.0.1"
 +      }
 +    },
 +    "browserify-cipher": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
 +      "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
 +      "dev": true,
 +      "requires": {
 +        "browserify-aes": "^1.0.4",
 +        "browserify-des": "^1.0.0",
 +        "evp_bytestokey": "^1.0.0"
 +      }
 +    },
 +    "browserify-des": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
 +      "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
 +      "dev": true,
 +      "requires": {
 +        "cipher-base": "^1.0.1",
 +        "des.js": "^1.0.0",
 +        "inherits": "^2.0.1",
 +        "safe-buffer": "^5.1.2"
 +      }
 +    },
 +    "browserify-rsa": {
 +      "version": "4.0.1",
 +      "resolved": "http://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz",
 +      "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=",
 +      "dev": true,
 +      "requires": {
 +        "bn.js": "^4.1.0",
 +        "randombytes": "^2.0.1"
 +      }
 +    },
 +    "browserify-sign": {
 +      "version": "4.0.4",
 +      "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz",
 +      "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=",
 +      "dev": true,
 +      "requires": {
 +        "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": {
 +      "version": "0.2.0",
 +      "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
 +      "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
 +      "dev": true,
 +      "requires": {
 +        "pako": "~1.0.5"
 +      }
 +    },
 +    "buffer": {
 +      "version": "4.9.1",
 +      "resolved": "http://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz",
 +      "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=",
 +      "dev": true,
 +      "requires": {
 +        "base64-js": "^1.0.2",
 +        "ieee754": "^1.1.4",
 +        "isarray": "^1.0.0"
 +      }
 +    },
 +    "buffer-from": {
 +      "version": "1.1.1",
 +      "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz",
 +      "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==",
 +      "dev": true
 +    },
 +    "buffer-xor": {
 +      "version": "1.0.3",
 +      "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz",
 +      "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=",
 +      "dev": true
 +    },
 +    "builtin-modules": {
 +      "version": "1.1.1",
 +      "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz",
 +      "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=",
 +      "dev": true
 +    },
 +    "builtin-status-codes": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz",
 +      "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=",
 +      "dev": true
 +    },
 +    "cacache": {
 +      "version": "10.0.4",
 +      "resolved": "http://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz",
 +      "integrity": "sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==",
 +      "dev": true,
 +      "requires": {
 +        "bluebird": "^3.5.1",
 +        "chownr": "^1.0.1",
 +        "glob": "^7.1.2",
 +        "graceful-fs": "^4.1.11",
 +        "lru-cache": "^4.1.1",
 +        "mississippi": "^2.0.0",
 +        "mkdirp": "^0.5.1",
 +        "move-concurrently": "^1.0.1",
 +        "promise-inflight": "^1.0.1",
 +        "rimraf": "^2.6.2",
 +        "ssri": "^5.2.4",
 +        "unique-filename": "^1.1.0",
 +        "y18n": "^4.0.0"
 +      }
 +    },
 +    "cache-base": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
 +      "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
 +      "dev": true,
 +      "requires": {
 +        "collection-visit": "^1.0.0",
 +        "component-emitter": "^1.2.1",
 +        "get-value": "^2.0.6",
 +        "has-value": "^1.0.0",
 +        "isobject": "^3.0.1",
 +        "set-value": "^2.0.0",
 +        "to-object-path": "^0.3.0",
 +        "union-value": "^1.0.0",
 +        "unset-value": "^1.0.0"
 +      }
 +    },
 +    "caller-callsite": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz",
 +      "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=",
 +      "dev": true,
 +      "requires": {
 +        "callsites": "^2.0.0"
 +      }
 +    },
 +    "caller-path": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz",
 +      "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=",
 +      "dev": true,
 +      "requires": {
 +        "caller-callsite": "^2.0.0"
 +      }
 +    },
 +    "callsites": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz",
 +      "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=",
 +      "dev": true
 +    },
 +    "camelcase": {
 +      "version": "5.0.0",
 +      "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz",
 +      "integrity": "sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==",
 +      "dev": true
 +    },
 +    "camelcase-keys": {
 +      "version": "4.2.0",
 +      "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-4.2.0.tgz",
 +      "integrity": "sha1-oqpfsa9oh1glnDLBQUJteJI7m3c=",
 +      "dev": true,
 +      "requires": {
 +        "camelcase": "^4.1.0",
 +        "map-obj": "^2.0.0",
 +        "quick-lru": "^1.0.0"
 +      },
 +      "dependencies": {
 +        "camelcase": {
 +          "version": "4.1.0",
 +          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
 +          "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "caniuse-api": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-2.0.0.tgz",
 +      "integrity": "sha1-sd21pZZrFvSNxJmERNS7xsfZ2DQ=",
 +      "dev": true,
 +      "requires": {
 +        "browserslist": "^2.0.0",
 +        "caniuse-lite": "^1.0.0",
 +        "lodash.memoize": "^4.1.2",
 +        "lodash.uniq": "^4.5.0"
 +      },
 +      "dependencies": {
 +        "browserslist": {
 +          "version": "2.11.3",
 +          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.11.3.tgz",
 +          "integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==",
 +          "dev": true,
 +          "requires": {
 +            "caniuse-lite": "^1.0.30000792",
 +            "electron-to-chromium": "^1.3.30"
 +          }
 +        }
 +      }
 +    },
 +    "caniuse-lite": {
 +      "version": "1.0.30000907",
 +      "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000907.tgz",
 +      "integrity": "sha512-No5sQ/OB2Nmka8MNOOM6nJx+Hxt6MQ6h7t7kgJFu9oTuwjykyKRSBP/+i/QAyFHxeHB+ddE0Da1CG5ihx9oehQ==",
 +      "dev": true
 +    },
 +    "capture-stack-trace": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz",
 +      "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==",
 +      "dev": true
 +    },
 +    "caseless": {
 +      "version": "0.12.0",
 +      "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
 +      "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
 +      "dev": true
 +    },
 +    "chalk": {
 +      "version": "2.4.1",
 +      "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
 +      "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
 +      "dev": true,
 +      "requires": {
 +        "ansi-styles": "^3.2.1",
 +        "escape-string-regexp": "^1.0.5",
 +        "supports-color": "^5.3.0"
 +      }
 +    },
 +    "chokidar": {
 +      "version": "2.0.4",
 +      "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz",
 +      "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==",
 +      "dev": true,
 +      "requires": {
 +        "anymatch": "^2.0.0",
 +        "async-each": "^1.0.0",
 +        "braces": "^2.3.0",
 +        "fsevents": "^1.2.2",
 +        "glob-parent": "^3.1.0",
 +        "inherits": "^2.0.1",
 +        "is-binary-path": "^1.0.0",
 +        "is-glob": "^4.0.0",
 +        "lodash.debounce": "^4.0.8",
 +        "normalize-path": "^2.1.1",
 +        "path-is-absolute": "^1.0.0",
 +        "readdirp": "^2.0.0",
 +        "upath": "^1.0.5"
 +      }
 +    },
 +    "chownr": {
 +      "version": "1.1.1",
 +      "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz",
 +      "integrity": "sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==",
 +      "dev": true
 +    },
 +    "chrome-trace-event": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz",
 +      "integrity": "sha512-xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==",
 +      "dev": true,
 +      "requires": {
 +        "tslib": "^1.9.0"
 +      }
 +    },
 +    "ci-info": {
 +      "version": "1.6.0",
 +      "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz",
 +      "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==",
 +      "dev": true
 +    },
 +    "cipher-base": {
 +      "version": "1.0.4",
 +      "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
 +      "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
 +      "dev": true,
 +      "requires": {
 +        "inherits": "^2.0.1",
 +        "safe-buffer": "^5.0.1"
 +      }
 +    },
 +    "class-utils": {
 +      "version": "0.3.6",
 +      "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
 +      "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
 +      "dev": true,
 +      "requires": {
 +        "arr-union": "^3.1.0",
 +        "define-property": "^0.2.5",
 +        "isobject": "^3.0.0",
 +        "static-extend": "^0.1.1"
 +      },
 +      "dependencies": {
 +        "define-property": {
 +          "version": "0.2.5",
 +          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
 +          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
 +          "dev": true,
 +          "requires": {
 +            "is-descriptor": "^0.1.0"
 +          }
 +        }
 +      }
 +    },
 +    "clean-webpack-plugin": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-1.0.0.tgz",
 +      "integrity": "sha512-+f96f52UIET4tOFBbCqezx7KH+w7lz/p4fA1FEjf0hC6ugxqwZedBtENzekN2FnmoTF/bn1LrlkvebOsDZuXKw==",
 +      "dev": true,
 +      "requires": {
 +        "rimraf": "^2.6.1"
 +      }
 +    },
 +    "cli-boxes": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz",
 +      "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=",
 +      "dev": true
 +    },
 +    "cli-cursor": {
 +      "version": "2.1.0",
 +      "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz",
 +      "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=",
 +      "dev": true,
 +      "requires": {
 +        "restore-cursor": "^2.0.0"
 +      }
 +    },
 +    "cli-spinners": {
 +      "version": "1.3.1",
 +      "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.3.1.tgz",
 +      "integrity": "sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==",
 +      "dev": true
 +    },
 +    "clipboard": {
 +      "version": "2.0.4",
 +      "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.4.tgz",
 +      "integrity": "sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ==",
 +      "dev": true,
 +      "requires": {
 +        "good-listener": "^1.2.2",
 +        "select": "^1.1.2",
 +        "tiny-emitter": "^2.0.0"
 +      }
 +    },
 +    "cliui": {
 +      "version": "4.1.0",
 +      "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz",
 +      "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==",
 +      "dev": true,
 +      "requires": {
 +        "string-width": "^2.1.1",
 +        "strip-ansi": "^4.0.0",
 +        "wrap-ansi": "^2.0.0"
 +      }
 +    },
 +    "clone": {
 +      "version": "1.0.4",
 +      "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
 +      "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=",
 +      "dev": true
 +    },
 +    "code-point-at": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
 +      "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
 +      "dev": true
 +    },
 +    "collection-visit": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
 +      "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
 +      "dev": true,
 +      "requires": {
 +        "map-visit": "^1.0.0",
 +        "object-visit": "^1.0.0"
 +      }
 +    },
 +    "color": {
 +      "version": "0.11.4",
-           "dev": true
++      "resolved": "https://registry.npmjs.org/color/-/color-0.11.4.tgz",
 +      "integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=",
 +      "dev": true,
 +      "requires": {
 +        "clone": "^1.0.2",
 +        "color-convert": "^1.3.0",
 +        "color-string": "^0.3.0"
 +      }
 +    },
 +    "color-convert": {
 +      "version": "1.9.3",
 +      "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
 +      "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
 +      "dev": true,
 +      "requires": {
 +        "color-name": "1.1.3"
 +      }
 +    },
 +    "color-name": {
 +      "version": "1.1.3",
 +      "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
 +      "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
 +      "dev": true
 +    },
 +    "color-string": {
 +      "version": "0.3.0",
 +      "resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz",
 +      "integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=",
 +      "dev": true,
 +      "requires": {
 +        "color-name": "^1.0.0"
 +      }
 +    },
 +    "combined-stream": {
 +      "version": "1.0.7",
 +      "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz",
 +      "integrity": "sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==",
 +      "dev": true,
 +      "requires": {
 +        "delayed-stream": "~1.0.0"
 +      }
 +    },
 +    "commander": {
 +      "version": "2.13.0",
 +      "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz",
 +      "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==",
 +      "dev": true
 +    },
 +    "commondir": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
 +      "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=",
 +      "dev": true
 +    },
 +    "component-emitter": {
 +      "version": "1.2.1",
 +      "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
 +      "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=",
 +      "dev": true
 +    },
 +    "concat-map": {
 +      "version": "0.0.1",
 +      "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
 +      "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
 +      "dev": true
 +    },
 +    "concat-stream": {
 +      "version": "1.6.2",
 +      "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
 +      "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
 +      "dev": true,
 +      "requires": {
 +        "buffer-from": "^1.0.0",
 +        "inherits": "^2.0.3",
 +        "readable-stream": "^2.2.2",
 +        "typedarray": "^0.0.6"
 +      }
 +    },
 +    "configstore": {
 +      "version": "3.1.2",
 +      "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz",
 +      "integrity": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==",
 +      "dev": true,
 +      "requires": {
 +        "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"
 +      }
 +    },
 +    "console-browserify": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz",
 +      "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=",
 +      "dev": true,
 +      "requires": {
 +        "date-now": "^0.1.4"
 +      }
 +    },
 +    "constants-browserify": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
 +      "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=",
 +      "dev": true
 +    },
 +    "copy-concurrently": {
 +      "version": "1.0.5",
 +      "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
 +      "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==",
 +      "dev": true,
 +      "requires": {
 +        "aproba": "^1.1.1",
 +        "fs-write-stream-atomic": "^1.0.8",
 +        "iferr": "^0.1.5",
 +        "mkdirp": "^0.5.1",
 +        "rimraf": "^2.5.4",
 +        "run-queue": "^1.0.0"
 +      }
 +    },
 +    "copy-descriptor": {
 +      "version": "0.1.1",
 +      "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
 +      "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
 +      "dev": true
 +    },
 +    "core-js": {
 +      "version": "2.5.7",
 +      "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz",
 +      "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==",
 +      "dev": true
 +    },
 +    "core-util-is": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
 +      "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
 +      "dev": true
 +    },
 +    "cosmiconfig": {
 +      "version": "5.0.7",
 +      "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.0.7.tgz",
 +      "integrity": "sha512-PcLqxTKiDmNT6pSpy4N6KtuPwb53W+2tzNvwOZw0WH9N6O0vLIBq0x8aj8Oj75ere4YcGi48bDFCL+3fRJdlNA==",
 +      "dev": true,
 +      "requires": {
 +        "import-fresh": "^2.0.0",
 +        "is-directory": "^0.3.1",
 +        "js-yaml": "^3.9.0",
 +        "parse-json": "^4.0.0"
 +      }
 +    },
 +    "create-ecdh": {
 +      "version": "4.0.3",
 +      "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz",
 +      "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==",
 +      "dev": true,
 +      "requires": {
 +        "bn.js": "^4.1.0",
 +        "elliptic": "^6.0.0"
 +      }
 +    },
 +    "create-error-class": {
 +      "version": "3.0.2",
 +      "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz",
 +      "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=",
 +      "dev": true,
 +      "requires": {
 +        "capture-stack-trace": "^1.0.0"
 +      }
 +    },
 +    "create-hash": {
 +      "version": "1.2.0",
 +      "resolved": "http://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
 +      "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
 +      "dev": true,
 +      "requires": {
 +        "cipher-base": "^1.0.1",
 +        "inherits": "^2.0.1",
 +        "md5.js": "^1.3.4",
 +        "ripemd160": "^2.0.1",
 +        "sha.js": "^2.4.0"
 +      }
 +    },
 +    "create-hmac": {
 +      "version": "1.1.7",
 +      "resolved": "http://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
 +      "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
 +      "dev": true,
 +      "requires": {
 +        "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"
 +      }
 +    },
 +    "cross-spawn": {
 +      "version": "5.1.0",
 +      "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
 +      "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
 +      "dev": true,
 +      "requires": {
 +        "lru-cache": "^4.0.1",
 +        "shebang-command": "^1.2.0",
 +        "which": "^1.2.9"
 +      }
 +    },
 +    "crypto-browserify": {
 +      "version": "3.12.0",
 +      "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
 +      "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
 +      "dev": true,
 +      "requires": {
 +        "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",
 +        "randomfill": "^1.0.3"
 +      }
 +    },
 +    "crypto-random-string": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz",
 +      "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=",
 +      "dev": true
 +    },
 +    "css-color-function": {
 +      "version": "1.3.3",
 +      "resolved": "https://registry.npmjs.org/css-color-function/-/css-color-function-1.3.3.tgz",
 +      "integrity": "sha1-jtJMLAIFBzM5+voAS8jBQfzLKC4=",
 +      "dev": true,
 +      "requires": {
 +        "balanced-match": "0.1.0",
 +        "color": "^0.11.0",
 +        "debug": "^3.1.0",
 +        "rgb": "~0.1.0"
 +      },
 +      "dependencies": {
 +        "balanced-match": {
 +          "version": "0.1.0",
 +          "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.1.0.tgz",
 +          "integrity": "sha1-tQS9BYabOSWd0MXvw12EMXbczEo=",
 +          "dev": true
 +        },
 +        "debug": {
 +          "version": "3.2.6",
 +          "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
 +          "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
 +          "dev": true,
 +          "requires": {
 +            "ms": "^2.1.1"
 +          }
 +        },
 +        "ms": {
 +          "version": "2.1.1",
 +          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
 +          "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "css-loader": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-1.0.1.tgz",
 +      "integrity": "sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==",
 +      "dev": true,
 +      "requires": {
 +        "babel-code-frame": "^6.26.0",
 +        "css-selector-tokenizer": "^0.7.0",
 +        "icss-utils": "^2.1.0",
 +        "loader-utils": "^1.0.2",
 +        "lodash": "^4.17.11",
 +        "postcss": "^6.0.23",
 +        "postcss-modules-extract-imports": "^1.2.0",
 +        "postcss-modules-local-by-default": "^1.2.0",
 +        "postcss-modules-scope": "^1.1.0",
 +        "postcss-modules-values": "^1.3.0",
 +        "postcss-value-parser": "^3.3.0",
 +        "source-list-map": "^2.0.0"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "css-selector-tokenizer": {
 +      "version": "0.7.1",
 +      "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz",
 +      "integrity": "sha512-xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA==",
 +      "dev": true,
 +      "requires": {
 +        "cssesc": "^0.1.0",
 +        "fastparse": "^1.1.1",
 +        "regexpu-core": "^1.0.0"
 +      },
 +      "dependencies": {
 +        "cssesc": {
 +          "version": "0.1.0",
 +          "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz",
 +          "integrity": "sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "css-unit-converter": {
 +      "version": "1.1.1",
 +      "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.1.tgz",
 +      "integrity": "sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY=",
 +      "dev": true
 +    },
 +    "cssesc": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz",
 +      "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==",
 +      "dev": true
 +    },
 +    "currently-unhandled": {
 +      "version": "0.4.1",
 +      "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
 +      "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=",
 +      "dev": true,
 +      "requires": {
 +        "array-find-index": "^1.0.1"
 +      }
 +    },
 +    "cyclist": {
 +      "version": "0.2.2",
 +      "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz",
 +      "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=",
 +      "dev": true
 +    },
 +    "d": {
 +      "version": "1.0.0",
 +      "resolved": "http://registry.npmjs.org/d/-/d-1.0.0.tgz",
 +      "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=",
 +      "dev": true,
 +      "requires": {
 +        "es5-ext": "^0.10.9"
 +      }
 +    },
 +    "dashdash": {
 +      "version": "1.14.1",
 +      "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
 +      "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
 +      "dev": true,
 +      "requires": {
 +        "assert-plus": "^1.0.0"
 +      }
 +    },
 +    "date-now": {
 +      "version": "0.1.4",
 +      "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz",
 +      "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=",
 +      "dev": true
 +    },
 +    "debug": {
 +      "version": "2.6.9",
 +      "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
 +      "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
 +      "dev": true,
 +      "requires": {
 +        "ms": "2.0.0"
 +      }
 +    },
 +    "decamelize": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz",
 +      "integrity": "sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==",
 +      "dev": true,
 +      "requires": {
 +        "xregexp": "4.0.0"
 +      }
 +    },
 +    "decamelize-keys": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz",
 +      "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=",
 +      "dev": true,
 +      "requires": {
 +        "decamelize": "^1.1.0",
 +        "map-obj": "^1.0.0"
 +      },
 +      "dependencies": {
 +        "decamelize": {
 +          "version": "1.2.0",
 +          "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
 +          "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
 +          "dev": true
 +        },
 +        "map-obj": {
 +          "version": "1.0.1",
 +          "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz",
 +          "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "decode-uri-component": {
 +      "version": "0.2.0",
 +      "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
 +      "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=",
 +      "dev": true
 +    },
 +    "deep-extend": {
 +      "version": "0.6.0",
 +      "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
 +      "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
 +      "dev": true
 +    },
 +    "defaults": {
 +      "version": "1.0.3",
 +      "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
 +      "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=",
 +      "dev": true,
 +      "requires": {
 +        "clone": "^1.0.2"
 +      }
 +    },
 +    "define-properties": {
 +      "version": "1.1.3",
 +      "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
 +      "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
 +      "dev": true,
 +      "requires": {
 +        "object-keys": "^1.0.12"
 +      }
 +    },
 +    "define-property": {
 +      "version": "2.0.2",
 +      "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
 +      "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
 +      "dev": true,
 +      "requires": {
 +        "is-descriptor": "^1.0.2",
 +        "isobject": "^3.0.1"
 +      },
 +      "dependencies": {
 +        "is-accessor-descriptor": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
 +          "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
 +          "dev": true,
 +          "requires": {
 +            "kind-of": "^6.0.0"
 +          }
 +        },
 +        "is-data-descriptor": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
 +          "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
 +          "dev": true,
 +          "requires": {
 +            "kind-of": "^6.0.0"
 +          }
 +        },
 +        "is-descriptor": {
 +          "version": "1.0.2",
 +          "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
 +          "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
 +          "dev": true,
 +          "requires": {
 +            "is-accessor-descriptor": "^1.0.0",
 +            "is-data-descriptor": "^1.0.0",
 +            "kind-of": "^6.0.2"
 +          }
 +        }
 +      }
 +    },
 +    "delayed-stream": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
 +      "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
 +      "dev": true
 +    },
 +    "delegate": {
 +      "version": "3.2.0",
 +      "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz",
 +      "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==",
 +      "dev": true
 +    },
 +    "des.js": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz",
 +      "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=",
 +      "dev": true,
 +      "requires": {
 +        "inherits": "^2.0.1",
 +        "minimalistic-assert": "^1.0.0"
 +      }
 +    },
 +    "diffie-hellman": {
 +      "version": "5.0.3",
 +      "resolved": "http://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
 +      "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
 +      "dev": true,
 +      "requires": {
 +        "bn.js": "^4.1.0",
 +        "miller-rabin": "^4.0.0",
 +        "randombytes": "^2.0.0"
 +      }
 +    },
 +    "docsearch.js": {
 +      "version": "2.6.1",
 +      "resolved": "https://registry.npmjs.org/docsearch.js/-/docsearch.js-2.6.1.tgz",
 +      "integrity": "sha512-3rAvJ4w+dl90kEdiuB26cfVjgUrIqIpEAtqjUfVo7pS7a5TuM914cpFfPGekb+W/Boz4zkBD8d2o1NKSeV8MHg==",
 +      "dev": true,
 +      "requires": {
 +        "algoliasearch": "^3.24.5",
 +        "autocomplete.js": "0.32.0",
 +        "hogan.js": "^3.0.2",
 +        "request": "^2.87.0",
 +        "stack-utils": "^1.0.1",
 +        "to-factory": "^1.0.0",
 +        "zepto": "^1.2.0"
 +      }
 +    },
 +    "dom-walk": {
 +      "version": "0.1.1",
 +      "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz",
 +      "integrity": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=",
 +      "dev": true
 +    },
 +    "domain-browser": {
 +      "version": "1.2.0",
 +      "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
 +      "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==",
 +      "dev": true
 +    },
 +    "dot-prop": {
 +      "version": "4.2.0",
 +      "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz",
 +      "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==",
 +      "dev": true,
 +      "requires": {
 +        "is-obj": "^1.0.0"
 +      }
 +    },
 +    "duplexer3": {
 +      "version": "0.1.4",
 +      "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz",
 +      "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=",
 +      "dev": true
 +    },
 +    "duplexify": {
 +      "version": "3.6.1",
 +      "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.1.tgz",
 +      "integrity": "sha512-vM58DwdnKmty+FSPzT14K9JXb90H+j5emaR4KYbr2KTIz00WHGbWOe5ghQTx233ZCLZtrGDALzKwcjEtSt35mA==",
 +      "dev": true,
 +      "requires": {
 +        "end-of-stream": "^1.0.0",
 +        "inherits": "^2.0.1",
 +        "readable-stream": "^2.0.0",
 +        "stream-shift": "^1.0.0"
 +      }
 +    },
 +    "ecc-jsbn": {
 +      "version": "0.1.2",
 +      "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
 +      "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
 +      "dev": true,
 +      "requires": {
 +        "jsbn": "~0.1.0",
 +        "safer-buffer": "^2.1.0"
 +      }
 +    },
 +    "electron-to-chromium": {
 +      "version": "1.3.84",
 +      "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.84.tgz",
 +      "integrity": "sha512-IYhbzJYOopiTaNWMBp7RjbecUBsbnbDneOP86f3qvS0G0xfzwNSvMJpTrvi5/Y1gU7tg2NAgeg8a8rCYvW9Whw==",
 +      "dev": true
 +    },
 +    "elliptic": {
 +      "version": "6.4.1",
 +      "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz",
 +      "integrity": "sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==",
 +      "dev": true,
 +      "requires": {
 +        "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": {
 +      "version": "2.1.0",
 +      "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz",
 +      "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=",
 +      "dev": true
 +    },
 +    "end-of-stream": {
 +      "version": "1.4.1",
 +      "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz",
 +      "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==",
 +      "dev": true,
 +      "requires": {
 +        "once": "^1.4.0"
 +      }
 +    },
 +    "enhanced-resolve": {
 +      "version": "4.1.0",
 +      "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz",
 +      "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==",
 +      "dev": true,
 +      "requires": {
 +        "graceful-fs": "^4.1.2",
 +        "memory-fs": "^0.4.0",
 +        "tapable": "^1.0.0"
 +      }
 +    },
 +    "envify": {
 +      "version": "4.1.0",
 +      "resolved": "https://registry.npmjs.org/envify/-/envify-4.1.0.tgz",
 +      "integrity": "sha512-IKRVVoAYr4pIx4yIWNsz9mOsboxlNXiu7TNBnem/K/uTHdkyzXWDzHCK7UTolqBbgaBz0tQHsD3YNls0uIIjiw==",
 +      "dev": true,
 +      "requires": {
 +        "esprima": "^4.0.0",
 +        "through": "~2.3.4"
 +      }
 +    },
 +    "errno": {
 +      "version": "0.1.7",
 +      "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz",
 +      "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==",
 +      "dev": true,
 +      "requires": {
 +        "prr": "~1.0.1"
 +      }
 +    },
 +    "error-ex": {
 +      "version": "1.3.2",
 +      "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
 +      "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
 +      "dev": true,
 +      "requires": {
 +        "is-arrayish": "^0.2.1"
 +      }
 +    },
 +    "es-abstract": {
 +      "version": "1.12.0",
 +      "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz",
 +      "integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==",
 +      "dev": true,
 +      "requires": {
 +        "es-to-primitive": "^1.1.1",
 +        "function-bind": "^1.1.1",
 +        "has": "^1.0.1",
 +        "is-callable": "^1.1.3",
 +        "is-regex": "^1.0.4"
 +      }
 +    },
 +    "es-to-primitive": {
 +      "version": "1.2.0",
 +      "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz",
 +      "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==",
 +      "dev": true,
 +      "requires": {
 +        "is-callable": "^1.1.4",
 +        "is-date-object": "^1.0.1",
 +        "is-symbol": "^1.0.2"
 +      }
 +    },
 +    "es5-ext": {
 +      "version": "0.10.46",
 +      "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.46.tgz",
 +      "integrity": "sha512-24XxRvJXNFwEMpJb3nOkiRJKRoupmjYmOPVlI65Qy2SrtxwOTB+g6ODjBKOtwEHbYrhWRty9xxOWLNdClT2djw==",
 +      "dev": true,
 +      "requires": {
 +        "es6-iterator": "~2.0.3",
 +        "es6-symbol": "~3.1.1",
 +        "next-tick": "1"
 +      }
 +    },
 +    "es6-iterator": {
 +      "version": "2.0.3",
 +      "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz",
 +      "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=",
 +      "dev": true,
 +      "requires": {
 +        "d": "1",
 +        "es5-ext": "^0.10.35",
 +        "es6-symbol": "^3.1.1"
 +      }
 +    },
 +    "es6-promise": {
 +      "version": "4.2.5",
 +      "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.5.tgz",
 +      "integrity": "sha512-n6wvpdE43VFtJq+lUDYDBFUwV8TZbuGXLV4D6wKafg13ldznKsyEvatubnmUe31zcvelSzOHF+XbaT+Bl9ObDg==",
 +      "dev": true
 +    },
 +    "es6-symbol": {
 +      "version": "3.1.1",
 +      "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz",
 +      "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=",
 +      "dev": true,
 +      "requires": {
 +        "d": "1",
 +        "es5-ext": "~0.10.14"
 +      }
 +    },
 +    "escape-string-regexp": {
 +      "version": "1.0.5",
 +      "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
 +      "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
 +      "dev": true
 +    },
 +    "eslint-scope": {
 +      "version": "4.0.0",
 +      "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz",
 +      "integrity": "sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==",
 +      "dev": true,
 +      "requires": {
 +        "esrecurse": "^4.1.0",
 +        "estraverse": "^4.1.1"
 +      }
 +    },
 +    "esprima": {
 +      "version": "4.0.1",
 +      "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
 +      "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
 +      "dev": true
 +    },
 +    "esrecurse": {
 +      "version": "4.2.1",
 +      "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz",
 +      "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==",
 +      "dev": true,
 +      "requires": {
 +        "estraverse": "^4.1.0"
 +      }
 +    },
 +    "estraverse": {
 +      "version": "4.2.0",
 +      "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
 +      "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=",
 +      "dev": true
 +    },
 +    "esutils": {
 +      "version": "2.0.2",
 +      "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
 +      "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=",
 +      "dev": true
 +    },
 +    "events": {
 +      "version": "1.1.1",
 +      "resolved": "http://registry.npmjs.org/events/-/events-1.1.1.tgz",
 +      "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=",
 +      "dev": true
 +    },
 +    "evp_bytestokey": {
 +      "version": "1.0.3",
 +      "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
 +      "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
 +      "dev": true,
 +      "requires": {
 +        "md5.js": "^1.3.4",
 +        "safe-buffer": "^5.1.1"
 +      }
 +    },
 +    "execa": {
 +      "version": "0.7.0",
 +      "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
 +      "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
 +      "dev": true,
 +      "requires": {
 +        "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"
 +      }
 +    },
 +    "expand-brackets": {
 +      "version": "2.1.4",
 +      "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
 +      "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=",
 +      "dev": true,
 +      "requires": {
 +        "debug": "^2.3.3",
 +        "define-property": "^0.2.5",
 +        "extend-shallow": "^2.0.1",
 +        "posix-character-classes": "^0.1.0",
 +        "regex-not": "^1.0.0",
 +        "snapdragon": "^0.8.1",
 +        "to-regex": "^3.0.1"
 +      },
 +      "dependencies": {
 +        "define-property": {
 +          "version": "0.2.5",
 +          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
 +          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
 +          "dev": true,
 +          "requires": {
 +            "is-descriptor": "^0.1.0"
 +          }
 +        },
 +        "extend-shallow": {
 +          "version": "2.0.1",
 +          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
 +          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
 +          "dev": true,
 +          "requires": {
 +            "is-extendable": "^0.1.0"
 +          }
 +        }
 +      }
 +    },
 +    "extend": {
 +      "version": "3.0.2",
 +      "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
 +      "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
 +      "dev": true
 +    },
 +    "extend-shallow": {
 +      "version": "3.0.2",
 +      "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz",
 +      "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=",
 +      "dev": true,
 +      "requires": {
 +        "assign-symbols": "^1.0.0",
 +        "is-extendable": "^1.0.1"
 +      },
 +      "dependencies": {
 +        "is-extendable": {
 +          "version": "1.0.1",
 +          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
 +          "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
 +          "dev": true,
 +          "requires": {
 +            "is-plain-object": "^2.0.4"
 +          }
 +        }
 +      }
 +    },
 +    "extglob": {
 +      "version": "2.0.4",
 +      "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
 +      "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
 +      "dev": true,
 +      "requires": {
 +        "array-unique": "^0.3.2",
 +        "define-property": "^1.0.0",
 +        "expand-brackets": "^2.1.4",
 +        "extend-shallow": "^2.0.1",
 +        "fragment-cache": "^0.2.1",
 +        "regex-not": "^1.0.0",
 +        "snapdragon": "^0.8.1",
 +        "to-regex": "^3.0.1"
 +      },
 +      "dependencies": {
 +        "define-property": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
 +          "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
 +          "dev": true,
 +          "requires": {
 +            "is-descriptor": "^1.0.0"
 +          }
 +        },
 +        "extend-shallow": {
 +          "version": "2.0.1",
 +          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
 +          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
 +          "dev": true,
 +          "requires": {
 +            "is-extendable": "^0.1.0"
 +          }
 +        },
 +        "is-accessor-descriptor": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
 +          "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
 +          "dev": true,
 +          "requires": {
 +            "kind-of": "^6.0.0"
 +          }
 +        },
 +        "is-data-descriptor": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
 +          "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
 +          "dev": true,
 +          "requires": {
 +            "kind-of": "^6.0.0"
 +          }
 +        },
 +        "is-descriptor": {
 +          "version": "1.0.2",
 +          "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
 +          "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
 +          "dev": true,
 +          "requires": {
 +            "is-accessor-descriptor": "^1.0.0",
 +            "is-data-descriptor": "^1.0.0",
 +            "kind-of": "^6.0.2"
 +          }
 +        }
 +      }
 +    },
 +    "extsprintf": {
 +      "version": "1.3.0",
 +      "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
 +      "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=",
 +      "dev": true
 +    },
 +    "fast-deep-equal": {
 +      "version": "2.0.1",
 +      "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz",
 +      "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=",
 +      "dev": true
 +    },
 +    "fast-json-stable-stringify": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
 +      "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=",
 +      "dev": true
 +    },
 +    "fastparse": {
 +      "version": "1.1.2",
 +      "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz",
 +      "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==",
 +      "dev": true
 +    },
 +    "file-loader": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-2.0.0.tgz",
 +      "integrity": "sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ==",
 +      "dev": true,
 +      "requires": {
 +        "loader-utils": "^1.0.2",
 +        "schema-utils": "^1.0.0"
 +      },
 +      "dependencies": {
 +        "schema-utils": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
 +          "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
 +          "dev": true,
 +          "requires": {
 +            "ajv": "^6.1.0",
 +            "ajv-errors": "^1.0.0",
 +            "ajv-keywords": "^3.1.0"
 +          }
 +        }
 +      }
 +    },
 +    "fill-range": {
 +      "version": "4.0.0",
 +      "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz",
 +      "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=",
 +      "dev": true,
 +      "requires": {
 +        "extend-shallow": "^2.0.1",
 +        "is-number": "^3.0.0",
 +        "repeat-string": "^1.6.1",
 +        "to-regex-range": "^2.1.0"
 +      },
 +      "dependencies": {
 +        "extend-shallow": {
 +          "version": "2.0.1",
 +          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
 +          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
 +          "dev": true,
 +          "requires": {
 +            "is-extendable": "^0.1.0"
 +          }
 +        }
 +      }
 +    },
 +    "find-cache-dir": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz",
 +      "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=",
 +      "dev": true,
 +      "requires": {
 +        "commondir": "^1.0.1",
 +        "make-dir": "^1.0.0",
 +        "pkg-dir": "^2.0.0"
 +      }
 +    },
 +    "find-up": {
 +      "version": "2.1.0",
 +      "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
 +      "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
 +      "dev": true,
 +      "requires": {
 +        "locate-path": "^2.0.0"
 +      }
 +    },
 +    "flatten": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz",
 +      "integrity": "sha1-2uRqnXj74lKSJYzB54CkHZXAN4I=",
 +      "dev": true
 +    },
 +    "flush-write-stream": {
 +      "version": "1.0.3",
 +      "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz",
 +      "integrity": "sha512-calZMC10u0FMUqoiunI2AiGIIUtUIvifNwkHhNupZH4cbNnW1Itkoh/Nf5HFYmDrwWPjrUxpkZT0KhuCq0jmGw==",
 +      "dev": true,
 +      "requires": {
 +        "inherits": "^2.0.1",
 +        "readable-stream": "^2.0.4"
 +      }
 +    },
 +    "for-in": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
 +      "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
 +      "dev": true
 +    },
 +    "foreach": {
 +      "version": "2.0.5",
 +      "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz",
 +      "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=",
 +      "dev": true
 +    },
 +    "forever-agent": {
 +      "version": "0.6.1",
 +      "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
 +      "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
 +      "dev": true
 +    },
 +    "form-data": {
 +      "version": "2.3.3",
 +      "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
 +      "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
 +      "dev": true,
 +      "requires": {
 +        "asynckit": "^0.4.0",
 +        "combined-stream": "^1.0.6",
 +        "mime-types": "^2.1.12"
 +      }
 +    },
 +    "fragment-cache": {
 +      "version": "0.2.1",
 +      "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
 +      "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=",
 +      "dev": true,
 +      "requires": {
 +        "map-cache": "^0.2.2"
 +      }
 +    },
 +    "from2": {
 +      "version": "2.3.0",
 +      "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
 +      "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=",
 +      "dev": true,
 +      "requires": {
 +        "inherits": "^2.0.1",
 +        "readable-stream": "^2.0.0"
 +      }
 +    },
 +    "fs-write-stream-atomic": {
 +      "version": "1.0.10",
 +      "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz",
 +      "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=",
 +      "dev": true,
 +      "requires": {
 +        "graceful-fs": "^4.1.2",
 +        "iferr": "^0.1.5",
 +        "imurmurhash": "^0.1.4",
 +        "readable-stream": "1 || 2"
 +      }
 +    },
 +    "fs.realpath": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
 +      "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
 +      "dev": true
 +    },
 +    "fsevents": {
 +      "version": "1.2.4",
 +      "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz",
 +      "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==",
 +      "dev": true,
 +      "optional": true,
 +      "requires": {
 +        "nan": "^2.9.2",
 +        "node-pre-gyp": "^0.10.0"
 +      },
 +      "dependencies": {
 +        "abbrev": {
 +          "version": "1.1.1",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "ansi-regex": {
 +          "version": "2.1.1",
 +          "bundled": true,
-           "dev": true
++          "dev": true,
++          "optional": true
 +        },
 +        "aproba": {
 +          "version": "1.2.0",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "are-we-there-yet": {
 +          "version": "1.1.4",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "delegates": "^1.0.0",
 +            "readable-stream": "^2.0.6"
 +          }
 +        },
 +        "balanced-match": {
 +          "version": "1.0.0",
 +          "bundled": true,
-           "dev": true
++          "dev": true,
++          "optional": true
 +        },
 +        "brace-expansion": {
 +          "version": "1.1.11",
 +          "bundled": true,
 +          "dev": true,
++          "optional": true,
 +          "requires": {
 +            "balanced-match": "^1.0.0",
 +            "concat-map": "0.0.1"
 +          }
 +        },
 +        "chownr": {
 +          "version": "1.0.1",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "code-point-at": {
 +          "version": "1.1.0",
 +          "bundled": true,
-           "dev": true
++          "dev": true,
++          "optional": true
 +        },
 +        "concat-map": {
 +          "version": "0.0.1",
 +          "bundled": true,
-           "dev": true
++          "dev": true,
++          "optional": true
 +        },
 +        "console-control-strings": {
 +          "version": "1.1.0",
 +          "bundled": true,
-           "dev": true
++          "dev": true,
++          "optional": true
 +        },
 +        "core-util-is": {
 +          "version": "1.0.2",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "debug": {
 +          "version": "2.6.9",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "ms": "2.0.0"
 +          }
 +        },
 +        "deep-extend": {
 +          "version": "0.5.1",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "delegates": {
 +          "version": "1.0.0",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "detect-libc": {
 +          "version": "1.0.3",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "fs-minipass": {
 +          "version": "1.2.5",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "minipass": "^2.2.1"
 +          }
 +        },
 +        "fs.realpath": {
 +          "version": "1.0.0",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "gauge": {
 +          "version": "2.7.4",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "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"
 +          }
 +        },
 +        "glob": {
 +          "version": "7.1.2",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "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"
 +          }
 +        },
 +        "has-unicode": {
 +          "version": "2.0.1",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "iconv-lite": {
 +          "version": "0.4.21",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "safer-buffer": "^2.1.0"
 +          }
 +        },
 +        "ignore-walk": {
 +          "version": "3.0.1",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "minimatch": "^3.0.4"
 +          }
 +        },
 +        "inflight": {
 +          "version": "1.0.6",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "once": "^1.3.0",
 +            "wrappy": "1"
 +          }
 +        },
 +        "inherits": {
 +          "version": "2.0.3",
 +          "bundled": true,
-           "dev": true
++          "dev": true,
++          "optional": true
 +        },
 +        "ini": {
 +          "version": "1.3.5",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "is-fullwidth-code-point": {
 +          "version": "1.0.0",
 +          "bundled": true,
 +          "dev": true,
++          "optional": true,
 +          "requires": {
 +            "number-is-nan": "^1.0.0"
 +          }
 +        },
 +        "isarray": {
 +          "version": "1.0.0",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "minimatch": {
 +          "version": "3.0.4",
 +          "bundled": true,
 +          "dev": true,
++          "optional": true,
 +          "requires": {
 +            "brace-expansion": "^1.1.7"
 +          }
 +        },
 +        "minimist": {
 +          "version": "0.0.8",
 +          "bundled": true,
-           "dev": true
++          "dev": true,
++          "optional": true
 +        },
 +        "minipass": {
 +          "version": "2.2.4",
 +          "bundled": true,
 +          "dev": true,
++          "optional": true,
 +          "requires": {
 +            "safe-buffer": "^5.1.1",
 +            "yallist": "^3.0.0"
 +          }
 +        },
 +        "minizlib": {
 +          "version": "1.1.0",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "minipass": "^2.2.1"
 +          }
 +        },
 +        "mkdirp": {
 +          "version": "0.5.1",
 +          "bundled": true,
 +          "dev": true,
++          "optional": true,
 +          "requires": {
 +            "minimist": "0.0.8"
 +          }
 +        },
 +        "ms": {
 +          "version": "2.0.0",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "needle": {
 +          "version": "2.2.0",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "debug": "^2.1.2",
 +            "iconv-lite": "^0.4.4",
 +            "sax": "^1.2.4"
 +          }
 +        },
 +        "node-pre-gyp": {
 +          "version": "0.10.0",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "detect-libc": "^1.0.2",
 +            "mkdirp": "^0.5.1",
 +            "needle": "^2.2.0",
 +            "nopt": "^4.0.1",
 +            "npm-packlist": "^1.1.6",
 +            "npmlog": "^4.0.2",
 +            "rc": "^1.1.7",
 +            "rimraf": "^2.6.1",
 +            "semver": "^5.3.0",
 +            "tar": "^4"
 +          }
 +        },
 +        "nopt": {
 +          "version": "4.0.1",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "abbrev": "1",
 +            "osenv": "^0.1.4"
 +          }
 +        },
 +        "npm-bundled": {
 +          "version": "1.0.3",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "npm-packlist": {
 +          "version": "1.1.10",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "ignore-walk": "^3.0.1",
 +            "npm-bundled": "^1.0.1"
 +          }
 +        },
 +        "npmlog": {
 +          "version": "4.1.2",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "are-we-there-yet": "~1.1.2",
 +            "console-control-strings": "~1.1.0",
 +            "gauge": "~2.7.3",
 +            "set-blocking": "~2.0.0"
 +          }
 +        },
 +        "number-is-nan": {
 +          "version": "1.0.1",
 +          "bundled": true,
-           "dev": true
++          "dev": true,
++          "optional": true
 +        },
 +        "object-assign": {
 +          "version": "4.1.1",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "once": {
 +          "version": "1.4.0",
 +          "bundled": true,
 +          "dev": true,
++          "optional": true,
 +          "requires": {
 +            "wrappy": "1"
 +          }
 +        },
 +        "os-homedir": {
 +          "version": "1.0.2",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "os-tmpdir": {
 +          "version": "1.0.2",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "osenv": {
 +          "version": "0.1.5",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "os-homedir": "^1.0.0",
 +            "os-tmpdir": "^1.0.0"
 +          }
 +        },
 +        "path-is-absolute": {
 +          "version": "1.0.1",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "process-nextick-args": {
 +          "version": "2.0.0",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "rc": {
 +          "version": "1.2.7",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "deep-extend": "^0.5.1",
 +            "ini": "~1.3.0",
 +            "minimist": "^1.2.0",
 +            "strip-json-comments": "~2.0.1"
 +          },
 +          "dependencies": {
 +            "minimist": {
 +              "version": "1.2.0",
 +              "bundled": true,
 +              "dev": true,
 +              "optional": true
 +            }
 +          }
 +        },
 +        "readable-stream": {
 +          "version": "2.3.6",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "core-util-is": "~1.0.0",
 +            "inherits": "~2.0.3",
 +            "isarray": "~1.0.0",
 +            "process-nextick-args": "~2.0.0",
 +            "safe-buffer": "~5.1.1",
 +            "string_decoder": "~1.1.1",
 +            "util-deprecate": "~1.0.1"
 +          }
 +        },
 +        "rimraf": {
 +          "version": "2.6.2",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "glob": "^7.0.5"
 +          }
 +        },
 +        "safe-buffer": {
 +          "version": "5.1.1",
 +          "bundled": true,
-           "dev": true
++          "dev": true,
++          "optional": true
 +        },
 +        "safer-buffer": {
 +          "version": "2.1.2",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "sax": {
 +          "version": "1.2.4",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "semver": {
 +          "version": "5.5.0",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "set-blocking": {
 +          "version": "2.0.0",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "signal-exit": {
 +          "version": "3.0.2",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "string-width": {
 +          "version": "1.0.2",
 +          "bundled": true,
 +          "dev": true,
++          "optional": true,
 +          "requires": {
 +            "code-point-at": "^1.0.0",
 +            "is-fullwidth-code-point": "^1.0.0",
 +            "strip-ansi": "^3.0.0"
 +          }
 +        },
 +        "string_decoder": {
 +          "version": "1.1.1",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "safe-buffer": "~5.1.0"
 +          }
 +        },
 +        "strip-ansi": {
 +          "version": "3.0.1",
 +          "bundled": true,
 +          "dev": true,
++          "optional": true,
 +          "requires": {
 +            "ansi-regex": "^2.0.0"
 +          }
 +        },
 +        "strip-json-comments": {
 +          "version": "2.0.1",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "tar": {
 +          "version": "4.4.1",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "chownr": "^1.0.1",
 +            "fs-minipass": "^1.2.5",
 +            "minipass": "^2.2.4",
 +            "minizlib": "^1.1.0",
 +            "mkdirp": "^0.5.0",
 +            "safe-buffer": "^5.1.1",
 +            "yallist": "^3.0.2"
 +          }
 +        },
 +        "util-deprecate": {
 +          "version": "1.0.2",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true
 +        },
 +        "wide-align": {
 +          "version": "1.1.2",
 +          "bundled": true,
 +          "dev": true,
 +          "optional": true,
 +          "requires": {
 +            "string-width": "^1.0.2"
 +          }
 +        },
 +        "wrappy": {
 +          "version": "1.0.2",
 +          "bundled": true,
-           "dev": true
++          "dev": true,
++          "optional": true
 +        },
 +        "yallist": {
 +          "version": "3.0.2",
 +          "bundled": true,
-       "version": "3.12.0",
-       "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz",
-       "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==",
++          "dev": true,
++          "optional": true
 +        }
 +      }
 +    },
 +    "function-bind": {
 +      "version": "1.1.1",
 +      "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
 +      "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
 +      "dev": true
 +    },
 +    "get-caller-file": {
 +      "version": "1.0.3",
 +      "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz",
 +      "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==",
 +      "dev": true
 +    },
 +    "get-stream": {
 +      "version": "3.0.0",
 +      "resolved": "http://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
 +      "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
 +      "dev": true
 +    },
 +    "get-value": {
 +      "version": "2.0.6",
 +      "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz",
 +      "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=",
 +      "dev": true
 +    },
 +    "getpass": {
 +      "version": "0.1.7",
 +      "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
 +      "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
 +      "dev": true,
 +      "requires": {
 +        "assert-plus": "^1.0.0"
 +      }
 +    },
 +    "glob": {
 +      "version": "7.1.3",
 +      "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz",
 +      "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==",
 +      "dev": true,
 +      "requires": {
 +        "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"
 +      }
 +    },
 +    "glob-all": {
 +      "version": "3.1.0",
 +      "resolved": "https://registry.npmjs.org/glob-all/-/glob-all-3.1.0.tgz",
 +      "integrity": "sha1-iRPd+17hrHgSZWJBsD1SF8ZLAqs=",
 +      "dev": true,
 +      "requires": {
 +        "glob": "^7.0.5",
 +        "yargs": "~1.2.6"
 +      }
 +    },
 +    "glob-parent": {
 +      "version": "3.1.0",
 +      "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz",
 +      "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=",
 +      "dev": true,
 +      "requires": {
 +        "is-glob": "^3.1.0",
 +        "path-dirname": "^1.0.0"
 +      },
 +      "dependencies": {
 +        "is-glob": {
 +          "version": "3.1.0",
 +          "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
 +          "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
 +          "dev": true,
 +          "requires": {
 +            "is-extglob": "^2.1.0"
 +          }
 +        }
 +      }
 +    },
 +    "global": {
 +      "version": "4.3.2",
 +      "resolved": "https://registry.npmjs.org/global/-/global-4.3.2.tgz",
 +      "integrity": "sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=",
 +      "dev": true,
 +      "requires": {
 +        "min-document": "^2.19.0",
 +        "process": "~0.5.1"
 +      },
 +      "dependencies": {
 +        "process": {
 +          "version": "0.5.2",
 +          "resolved": "https://registry.npmjs.org/process/-/process-0.5.2.tgz",
 +          "integrity": "sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "global-dirs": {
 +      "version": "0.1.1",
 +      "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz",
 +      "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=",
 +      "dev": true,
 +      "requires": {
 +        "ini": "^1.3.4"
 +      }
 +    },
 +    "good-listener": {
 +      "version": "1.2.2",
 +      "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz",
 +      "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=",
 +      "dev": true,
 +      "requires": {
 +        "delegate": "^3.1.2"
 +      }
 +    },
 +    "got": {
 +      "version": "6.7.1",
 +      "resolved": "http://registry.npmjs.org/got/-/got-6.7.1.tgz",
 +      "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=",
 +      "dev": true,
 +      "requires": {
 +        "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": {
 +      "version": "4.1.15",
 +      "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz",
 +      "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==",
 +      "dev": true
 +    },
 +    "har-schema": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
 +      "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
 +      "dev": true
 +    },
 +    "har-validator": {
 +      "version": "5.1.3",
 +      "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
 +      "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
 +      "dev": true,
 +      "requires": {
 +        "ajv": "^6.5.5",
 +        "har-schema": "^2.0.0"
 +      }
 +    },
 +    "has": {
 +      "version": "1.0.3",
 +      "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
 +      "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
 +      "dev": true,
 +      "requires": {
 +        "function-bind": "^1.1.1"
 +      }
 +    },
 +    "has-ansi": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
 +      "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
 +      "dev": true,
 +      "requires": {
 +        "ansi-regex": "^2.0.0"
 +      },
 +      "dependencies": {
 +        "ansi-regex": {
 +          "version": "2.1.1",
 +          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
 +          "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "has-flag": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
 +      "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
 +      "dev": true
 +    },
 +    "has-symbols": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz",
 +      "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=",
 +      "dev": true
 +    },
 +    "has-value": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz",
 +      "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=",
 +      "dev": true,
 +      "requires": {
 +        "get-value": "^2.0.6",
 +        "has-values": "^1.0.0",
 +        "isobject": "^3.0.0"
 +      }
 +    },
 +    "has-values": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz",
 +      "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=",
 +      "dev": true,
 +      "requires": {
 +        "is-number": "^3.0.0",
 +        "kind-of": "^4.0.0"
 +      },
 +      "dependencies": {
 +        "kind-of": {
 +          "version": "4.0.0",
 +          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
 +          "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
 +          "dev": true,
 +          "requires": {
 +            "is-buffer": "^1.1.5"
 +          }
 +        }
 +      }
 +    },
 +    "hash-base": {
 +      "version": "3.0.4",
 +      "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz",
 +      "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=",
 +      "dev": true,
 +      "requires": {
 +        "inherits": "^2.0.1",
 +        "safe-buffer": "^5.0.1"
 +      }
 +    },
 +    "hash.js": {
 +      "version": "1.1.5",
 +      "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.5.tgz",
 +      "integrity": "sha512-eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA==",
 +      "dev": true,
 +      "requires": {
 +        "inherits": "^2.0.3",
 +        "minimalistic-assert": "^1.0.1"
 +      }
 +    },
 +    "highlight.js": {
 +      "version": "9.13.1",
 +      "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.13.1.tgz",
 +      "integrity": "sha512-Sc28JNQNDzaH6PORtRLMvif9RSn1mYuOoX3omVjnb0+HbpPygU2ALBI0R/wsiqCb4/fcp07Gdo8g+fhtFrQl6A==",
 +      "dev": true
 +    },
 +    "hmac-drbg": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz",
 +      "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=",
 +      "dev": true,
 +      "requires": {
 +        "hash.js": "^1.0.3",
 +        "minimalistic-assert": "^1.0.0",
 +        "minimalistic-crypto-utils": "^1.0.1"
 +      }
 +    },
 +    "hogan.js": {
 +      "version": "3.0.2",
 +      "resolved": "https://registry.npmjs.org/hogan.js/-/hogan.js-3.0.2.tgz",
 +      "integrity": "sha1-TNnhq9QpQUbnZ55B14mHMrAse/0=",
 +      "dev": true,
 +      "requires": {
 +        "mkdirp": "0.3.0",
 +        "nopt": "1.0.10"
 +      },
 +      "dependencies": {
 +        "mkdirp": {
 +          "version": "0.3.0",
 +          "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz",
 +          "integrity": "sha1-G79asbqCevI1dRQ0kEJkVfSB/h4=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "hosted-git-info": {
 +      "version": "2.7.1",
 +      "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz",
 +      "integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==",
 +      "dev": true
 +    },
 +    "http-signature": {
 +      "version": "1.2.0",
 +      "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
 +      "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
 +      "dev": true,
 +      "requires": {
 +        "assert-plus": "^1.0.0",
 +        "jsprim": "^1.2.2",
 +        "sshpk": "^1.7.0"
 +      }
 +    },
 +    "https-browserify": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz",
 +      "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=",
 +      "dev": true
 +    },
 +    "icss-replace-symbols": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz",
 +      "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=",
 +      "dev": true
 +    },
 +    "icss-utils": {
 +      "version": "2.1.0",
 +      "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz",
 +      "integrity": "sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "ieee754": {
 +      "version": "1.1.12",
 +      "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz",
 +      "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==",
 +      "dev": true
 +    },
 +    "iferr": {
 +      "version": "0.1.5",
 +      "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz",
 +      "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=",
 +      "dev": true
 +    },
 +    "immediate": {
 +      "version": "3.2.3",
 +      "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.2.3.tgz",
 +      "integrity": "sha1-0UD6j2FGWb1lQSMwl92qwlzdmRw=",
 +      "dev": true
 +    },
 +    "import-cwd": {
 +      "version": "2.1.0",
 +      "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz",
 +      "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=",
 +      "dev": true,
 +      "requires": {
 +        "import-from": "^2.1.0"
 +      }
 +    },
 +    "import-fresh": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz",
 +      "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=",
 +      "dev": true,
 +      "requires": {
 +        "caller-path": "^2.0.0",
 +        "resolve-from": "^3.0.0"
 +      }
 +    },
 +    "import-from": {
 +      "version": "2.1.0",
 +      "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz",
 +      "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=",
 +      "dev": true,
 +      "requires": {
 +        "resolve-from": "^3.0.0"
 +      }
 +    },
 +    "import-lazy": {
 +      "version": "2.1.0",
 +      "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz",
 +      "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=",
 +      "dev": true
 +    },
 +    "import-local": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz",
 +      "integrity": "sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ==",
 +      "dev": true,
 +      "requires": {
 +        "pkg-dir": "^2.0.0",
 +        "resolve-cwd": "^2.0.0"
 +      }
 +    },
 +    "imurmurhash": {
 +      "version": "0.1.4",
 +      "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
 +      "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
 +      "dev": true
 +    },
 +    "indent-string": {
 +      "version": "3.2.0",
 +      "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz",
 +      "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=",
 +      "dev": true
 +    },
 +    "indexes-of": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz",
 +      "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=",
 +      "dev": true
 +    },
 +    "indexof": {
 +      "version": "0.0.1",
 +      "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz",
 +      "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=",
 +      "dev": true
 +    },
 +    "inflight": {
 +      "version": "1.0.6",
 +      "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
 +      "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
 +      "dev": true,
 +      "requires": {
 +        "once": "^1.3.0",
 +        "wrappy": "1"
 +      }
 +    },
 +    "inherits": {
 +      "version": "2.0.3",
 +      "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
 +      "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
 +      "dev": true
 +    },
 +    "ini": {
 +      "version": "1.3.5",
 +      "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
 +      "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==",
 +      "dev": true
 +    },
 +    "invert-kv": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz",
 +      "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==",
 +      "dev": true
 +    },
 +    "irregular-plurals": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-2.0.0.tgz",
 +      "integrity": "sha512-Y75zBYLkh0lJ9qxeHlMjQ7bSbyiSqNW/UOPWDmzC7cXskL1hekSITh1Oc6JV0XCWWZ9DE8VYSB71xocLk3gmGw==",
 +      "dev": true
 +    },
 +    "is-accessor-descriptor": {
 +      "version": "0.1.6",
 +      "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz",
 +      "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=",
 +      "dev": true,
 +      "requires": {
 +        "kind-of": "^3.0.2"
 +      },
 +      "dependencies": {
 +        "kind-of": {
 +          "version": "3.2.2",
 +          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
 +          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
 +          "dev": true,
 +          "requires": {
 +            "is-buffer": "^1.1.5"
 +          }
 +        }
 +      }
 +    },
 +    "is-arrayish": {
 +      "version": "0.2.1",
 +      "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
 +      "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
 +      "dev": true
 +    },
 +    "is-binary-path": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz",
 +      "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=",
 +      "dev": true,
 +      "requires": {
 +        "binary-extensions": "^1.0.0"
 +      }
 +    },
 +    "is-buffer": {
 +      "version": "1.1.6",
 +      "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
 +      "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
 +      "dev": true
 +    },
 +    "is-builtin-module": {
 +      "version": "1.0.0",
 +      "resolved": "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz",
 +      "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=",
 +      "dev": true,
 +      "requires": {
 +        "builtin-modules": "^1.0.0"
 +      }
 +    },
 +    "is-callable": {
 +      "version": "1.1.4",
 +      "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz",
 +      "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==",
 +      "dev": true
 +    },
 +    "is-ci": {
 +      "version": "1.2.1",
 +      "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz",
 +      "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==",
 +      "dev": true,
 +      "requires": {
 +        "ci-info": "^1.5.0"
 +      }
 +    },
 +    "is-data-descriptor": {
 +      "version": "0.1.4",
 +      "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz",
 +      "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=",
 +      "dev": true,
 +      "requires": {
 +        "kind-of": "^3.0.2"
 +      },
 +      "dependencies": {
 +        "kind-of": {
 +          "version": "3.2.2",
 +          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
 +          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
 +          "dev": true,
 +          "requires": {
 +            "is-buffer": "^1.1.5"
 +          }
 +        }
 +      }
 +    },
 +    "is-date-object": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz",
 +      "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=",
 +      "dev": true
 +    },
 +    "is-descriptor": {
 +      "version": "0.1.6",
 +      "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
 +      "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
 +      "dev": true,
 +      "requires": {
 +        "is-accessor-descriptor": "^0.1.6",
 +        "is-data-descriptor": "^0.1.4",
 +        "kind-of": "^5.0.0"
 +      },
 +      "dependencies": {
 +        "kind-of": {
 +          "version": "5.1.0",
 +          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
 +          "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "is-directory": {
 +      "version": "0.3.1",
 +      "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz",
 +      "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=",
 +      "dev": true
 +    },
 +    "is-extendable": {
 +      "version": "0.1.1",
 +      "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
 +      "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
 +      "dev": true
 +    },
 +    "is-extglob": {
 +      "version": "2.1.1",
 +      "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
 +      "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
 +      "dev": true
 +    },
 +    "is-fullwidth-code-point": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
 +      "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
 +      "dev": true
 +    },
 +    "is-glob": {
 +      "version": "4.0.0",
 +      "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz",
 +      "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=",
 +      "dev": true,
 +      "requires": {
 +        "is-extglob": "^2.1.1"
 +      }
 +    },
 +    "is-installed-globally": {
 +      "version": "0.1.0",
 +      "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz",
 +      "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=",
 +      "dev": true,
 +      "requires": {
 +        "global-dirs": "^0.1.0",
 +        "is-path-inside": "^1.0.0"
 +      }
 +    },
 +    "is-npm": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz",
 +      "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=",
 +      "dev": true
 +    },
 +    "is-number": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
 +      "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
 +      "dev": true,
 +      "requires": {
 +        "kind-of": "^3.0.2"
 +      },
 +      "dependencies": {
 +        "kind-of": {
 +          "version": "3.2.2",
 +          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
 +          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
 +          "dev": true,
 +          "requires": {
 +            "is-buffer": "^1.1.5"
 +          }
 +        }
 +      }
 +    },
 +    "is-obj": {
 +      "version": "1.0.1",
 +      "resolved": "http://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
 +      "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=",
 +      "dev": true
 +    },
 +    "is-path-inside": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz",
 +      "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=",
 +      "dev": true,
 +      "requires": {
 +        "path-is-inside": "^1.0.1"
 +      }
 +    },
 +    "is-plain-obj": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
 +      "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=",
 +      "dev": true
 +    },
 +    "is-plain-object": {
 +      "version": "2.0.4",
 +      "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
 +      "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
 +      "dev": true,
 +      "requires": {
 +        "isobject": "^3.0.1"
 +      }
 +    },
 +    "is-redirect": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz",
 +      "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=",
 +      "dev": true
 +    },
 +    "is-regex": {
 +      "version": "1.0.4",
 +      "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz",
 +      "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=",
 +      "dev": true,
 +      "requires": {
 +        "has": "^1.0.1"
 +      }
 +    },
 +    "is-retry-allowed": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz",
 +      "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=",
 +      "dev": true
 +    },
 +    "is-stream": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
 +      "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
 +      "dev": true
 +    },
 +    "is-symbol": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz",
 +      "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==",
 +      "dev": true,
 +      "requires": {
 +        "has-symbols": "^1.0.0"
 +      }
 +    },
 +    "is-typedarray": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
 +      "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
 +      "dev": true
 +    },
 +    "is-windows": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
 +      "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
 +      "dev": true
 +    },
 +    "is-wsl": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
 +      "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=",
 +      "dev": true
 +    },
 +    "isarray": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
 +      "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
 +      "dev": true
 +    },
 +    "isexe": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
 +      "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
 +      "dev": true
 +    },
 +    "isnumeric": {
 +      "version": "0.2.0",
 +      "resolved": "https://registry.npmjs.org/isnumeric/-/isnumeric-0.2.0.tgz",
 +      "integrity": "sha1-ojR7o2DeGeM9D/1ZD933dVy/LmQ=",
 +      "dev": true
 +    },
 +    "isobject": {
 +      "version": "3.0.1",
 +      "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
 +      "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
 +      "dev": true
 +    },
 +    "isstream": {
 +      "version": "0.1.2",
 +      "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
 +      "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
 +      "dev": true
 +    },
 +    "js-tokens": {
 +      "version": "3.0.2",
 +      "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",
 +      "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=",
 +      "dev": true
 +    },
 +    "js-yaml": {
-       "version": "4.4.0",
-       "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.4.0.tgz",
-       "integrity": "sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A=",
++      "version": "3.13.1",
++      "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
++      "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==",
 +      "dev": true,
 +      "requires": {
 +        "argparse": "^1.0.7",
 +        "esprima": "^4.0.0"
 +      }
 +    },
 +    "jsbn": {
 +      "version": "0.1.1",
 +      "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
 +      "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
 +      "dev": true
 +    },
 +    "jsesc": {
 +      "version": "0.5.0",
 +      "resolved": "http://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
 +      "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
 +      "dev": true
 +    },
 +    "json-parse-better-errors": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
 +      "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
 +      "dev": true
 +    },
 +    "json-schema": {
 +      "version": "0.2.3",
 +      "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
 +      "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=",
 +      "dev": true
 +    },
 +    "json-schema-traverse": {
 +      "version": "0.4.1",
 +      "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
 +      "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
 +      "dev": true
 +    },
 +    "json-stringify-safe": {
 +      "version": "5.0.1",
 +      "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
 +      "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
 +      "dev": true
 +    },
 +    "json5": {
 +      "version": "0.5.1",
 +      "resolved": "http://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
 +      "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=",
 +      "dev": true
 +    },
 +    "jsprim": {
 +      "version": "1.4.1",
 +      "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
 +      "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
 +      "dev": true,
 +      "requires": {
 +        "assert-plus": "1.0.0",
 +        "extsprintf": "1.3.0",
 +        "json-schema": "0.2.3",
 +        "verror": "1.10.0"
 +      }
 +    },
 +    "kind-of": {
 +      "version": "6.0.2",
 +      "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
 +      "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
 +      "dev": true
 +    },
 +    "latest-version": {
 +      "version": "3.1.0",
 +      "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz",
 +      "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=",
 +      "dev": true,
 +      "requires": {
 +        "package-json": "^4.0.0"
 +      }
 +    },
 +    "lazysizes": {
 +      "version": "4.1.4",
 +      "resolved": "https://registry.npmjs.org/lazysizes/-/lazysizes-4.1.4.tgz",
 +      "integrity": "sha512-jVplgeHHoQ6a2RZtxCAKFAnm6QPQmEIKq4JWSTI1XfCBhn+CqDgMKWDJO81f8VtVBdAlHs+BzP2WGzMLUi3oFg==",
 +      "dev": true
 +    },
 +    "lcid": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz",
 +      "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==",
 +      "dev": true,
 +      "requires": {
 +        "invert-kv": "^2.0.0"
 +      }
 +    },
 +    "load-json-file": {
 +      "version": "4.0.0",
 +      "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz",
 +      "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=",
 +      "dev": true,
 +      "requires": {
 +        "graceful-fs": "^4.1.2",
 +        "parse-json": "^4.0.0",
 +        "pify": "^3.0.0",
 +        "strip-bom": "^3.0.0"
 +      }
 +    },
 +    "load-script": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/load-script/-/load-script-1.0.0.tgz",
 +      "integrity": "sha1-BJGTngvuVkPuSUp+PaPSuscMbKQ=",
 +      "dev": true
 +    },
 +    "loader-runner": {
 +      "version": "2.3.1",
 +      "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.1.tgz",
 +      "integrity": "sha512-By6ZFY7ETWOc9RFaAIb23IjJVcM4dvJC/N57nmdz9RSkMXvAXGI7SyVlAw3v8vjtDRlqThgVDVmTnr9fqMlxkw==",
 +      "dev": true
 +    },
 +    "loader-utils": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz",
 +      "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=",
 +      "dev": true,
 +      "requires": {
 +        "big.js": "^3.1.3",
 +        "emojis-list": "^2.0.0",
 +        "json5": "^0.5.0"
 +      }
 +    },
 +    "locate-path": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
 +      "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
 +      "dev": true,
 +      "requires": {
 +        "p-locate": "^2.0.0",
 +        "path-exists": "^3.0.0"
 +      }
 +    },
 +    "lodash": {
 +      "version": "4.17.11",
 +      "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz",
 +      "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==",
 +      "dev": true
 +    },
 +    "lodash._reinterpolate": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
 +      "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=",
 +      "dev": true
 +    },
 +    "lodash.debounce": {
 +      "version": "4.0.8",
 +      "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
 +      "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=",
 +      "dev": true
 +    },
 +    "lodash.memoize": {
 +      "version": "4.1.2",
 +      "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
 +      "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=",
 +      "dev": true
 +    },
 +    "lodash.template": {
-         "lodash._reinterpolate": "~3.0.0",
++      "version": "4.5.0",
++      "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
++      "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
 +      "dev": true,
 +      "requires": {
-           "resolved": "http://registry.npmjs.org/color/-/color-1.0.3.tgz",
++        "lodash._reinterpolate": "^3.0.0",
 +        "lodash.templatesettings": "^4.0.0"
 +      }
 +    },
 +    "lodash.templatesettings": {
 +      "version": "4.1.0",
 +      "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz",
 +      "integrity": "sha1-K01OlbpEDZFf8IvImeRVNmZxMxY=",
 +      "dev": true,
 +      "requires": {
 +        "lodash._reinterpolate": "~3.0.0"
 +      }
 +    },
 +    "lodash.uniq": {
 +      "version": "4.5.0",
 +      "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz",
 +      "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=",
 +      "dev": true
 +    },
 +    "log-symbols": {
 +      "version": "2.2.0",
 +      "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz",
 +      "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==",
 +      "dev": true,
 +      "requires": {
 +        "chalk": "^2.0.1"
 +      }
 +    },
 +    "loglevelnext": {
 +      "version": "1.0.5",
 +      "resolved": "https://registry.npmjs.org/loglevelnext/-/loglevelnext-1.0.5.tgz",
 +      "integrity": "sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==",
 +      "dev": true,
 +      "requires": {
 +        "es6-symbol": "^3.1.1",
 +        "object.assign": "^4.1.0"
 +      }
 +    },
 +    "loud-rejection": {
 +      "version": "1.6.0",
 +      "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz",
 +      "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=",
 +      "dev": true,
 +      "requires": {
 +        "currently-unhandled": "^0.4.1",
 +        "signal-exit": "^3.0.0"
 +      }
 +    },
 +    "lowercase-keys": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
 +      "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==",
 +      "dev": true
 +    },
 +    "lru-cache": {
 +      "version": "4.1.3",
 +      "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz",
 +      "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==",
 +      "dev": true,
 +      "requires": {
 +        "pseudomap": "^1.0.2",
 +        "yallist": "^2.1.2"
 +      }
 +    },
 +    "make-dir": {
 +      "version": "1.3.0",
 +      "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
 +      "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==",
 +      "dev": true,
 +      "requires": {
 +        "pify": "^3.0.0"
 +      }
 +    },
 +    "map-age-cleaner": {
 +      "version": "0.1.3",
 +      "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz",
 +      "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==",
 +      "dev": true,
 +      "requires": {
 +        "p-defer": "^1.0.0"
 +      }
 +    },
 +    "map-cache": {
 +      "version": "0.2.2",
 +      "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
 +      "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
 +      "dev": true
 +    },
 +    "map-obj": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-2.0.0.tgz",
 +      "integrity": "sha1-plzSkIepJZi4eRJXpSPgISIqwfk=",
 +      "dev": true
 +    },
 +    "map-visit": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
 +      "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
 +      "dev": true,
 +      "requires": {
 +        "object-visit": "^1.0.0"
 +      }
 +    },
 +    "math-expression-evaluator": {
 +      "version": "1.2.17",
 +      "resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz",
 +      "integrity": "sha1-3oGf282E3M2PrlnGrreWFbnSZqw=",
 +      "dev": true
 +    },
 +    "md5.js": {
 +      "version": "1.3.5",
 +      "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
 +      "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
 +      "dev": true,
 +      "requires": {
 +        "hash-base": "^3.0.0",
 +        "inherits": "^2.0.1",
 +        "safe-buffer": "^5.1.2"
 +      }
 +    },
 +    "meant": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/meant/-/meant-1.0.1.tgz",
 +      "integrity": "sha512-UakVLFjKkbbUwNWJ2frVLnnAtbb7D7DsloxRd3s/gDpI8rdv8W5Hp3NaDb+POBI1fQdeussER6NB8vpcRURvlg==",
 +      "dev": true
 +    },
 +    "mem": {
 +      "version": "4.0.0",
 +      "resolved": "https://registry.npmjs.org/mem/-/mem-4.0.0.tgz",
 +      "integrity": "sha512-WQxG/5xYc3tMbYLXoXPm81ET2WDULiU5FxbuIoNbJqLOOI8zehXFdZuiUEgfdrU2mVB1pxBZUGlYORSrpuJreA==",
 +      "dev": true,
 +      "requires": {
 +        "map-age-cleaner": "^0.1.1",
 +        "mimic-fn": "^1.0.0",
 +        "p-is-promise": "^1.1.0"
 +      }
 +    },
 +    "memory-fs": {
 +      "version": "0.4.1",
 +      "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz",
 +      "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=",
 +      "dev": true,
 +      "requires": {
 +        "errno": "^0.1.3",
 +        "readable-stream": "^2.0.1"
 +      }
 +    },
 +    "meow": {
 +      "version": "5.0.0",
 +      "resolved": "https://registry.npmjs.org/meow/-/meow-5.0.0.tgz",
 +      "integrity": "sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig==",
 +      "dev": true,
 +      "requires": {
 +        "camelcase-keys": "^4.0.0",
 +        "decamelize-keys": "^1.0.0",
 +        "loud-rejection": "^1.0.0",
 +        "minimist-options": "^3.0.1",
 +        "normalize-package-data": "^2.3.4",
 +        "read-pkg-up": "^3.0.0",
 +        "redent": "^2.0.0",
 +        "trim-newlines": "^2.0.0",
 +        "yargs-parser": "^10.0.0"
 +      }
 +    },
 +    "merge-options": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-1.0.1.tgz",
 +      "integrity": "sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==",
 +      "dev": true,
 +      "requires": {
 +        "is-plain-obj": "^1.1"
 +      }
 +    },
 +    "micromatch": {
 +      "version": "3.1.10",
 +      "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
 +      "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
 +      "dev": true,
 +      "requires": {
 +        "arr-diff": "^4.0.0",
 +        "array-unique": "^0.3.2",
 +        "braces": "^2.3.1",
 +        "define-property": "^2.0.2",
 +        "extend-shallow": "^3.0.2",
 +        "extglob": "^2.0.4",
 +        "fragment-cache": "^0.2.1",
 +        "kind-of": "^6.0.2",
 +        "nanomatch": "^1.2.9",
 +        "object.pick": "^1.3.0",
 +        "regex-not": "^1.0.0",
 +        "snapdragon": "^0.8.1",
 +        "to-regex": "^3.0.2"
 +      }
 +    },
 +    "miller-rabin": {
 +      "version": "4.0.1",
 +      "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
 +      "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
 +      "dev": true,
 +      "requires": {
 +        "bn.js": "^4.0.0",
 +        "brorand": "^1.0.1"
 +      }
 +    },
 +    "mime-db": {
 +      "version": "1.37.0",
 +      "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.37.0.tgz",
 +      "integrity": "sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg==",
 +      "dev": true
 +    },
 +    "mime-types": {
 +      "version": "2.1.21",
 +      "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.21.tgz",
 +      "integrity": "sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg==",
 +      "dev": true,
 +      "requires": {
 +        "mime-db": "~1.37.0"
 +      }
 +    },
 +    "mimic-fn": {
 +      "version": "1.2.0",
 +      "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz",
 +      "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==",
 +      "dev": true
 +    },
 +    "min-document": {
 +      "version": "2.19.0",
 +      "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz",
 +      "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=",
 +      "dev": true,
 +      "requires": {
 +        "dom-walk": "^0.1.0"
 +      }
 +    },
 +    "mini-css-extract-plugin": {
 +      "version": "0.4.4",
 +      "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.4.4.tgz",
 +      "integrity": "sha512-o+Jm+ocb0asEngdM6FsZWtZsRzA8koFUudIDwYUfl94M3PejPHG7Vopw5hN9V8WsMkSFpm3tZP3Fesz89EyrfQ==",
 +      "dev": true,
 +      "requires": {
 +        "loader-utils": "^1.1.0",
 +        "schema-utils": "^1.0.0",
 +        "webpack-sources": "^1.1.0"
 +      },
 +      "dependencies": {
 +        "schema-utils": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
 +          "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
 +          "dev": true,
 +          "requires": {
 +            "ajv": "^6.1.0",
 +            "ajv-errors": "^1.0.0",
 +            "ajv-keywords": "^3.1.0"
 +          }
 +        }
 +      }
 +    },
 +    "minimalistic-assert": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
 +      "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
 +      "dev": true
 +    },
 +    "minimalistic-crypto-utils": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
 +      "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=",
 +      "dev": true
 +    },
 +    "minimatch": {
 +      "version": "3.0.4",
 +      "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
 +      "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
 +      "dev": true,
 +      "requires": {
 +        "brace-expansion": "^1.1.7"
 +      }
 +    },
 +    "minimist": {
 +      "version": "0.0.8",
 +      "resolved": "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
 +      "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=",
 +      "dev": true
 +    },
 +    "minimist-options": {
 +      "version": "3.0.2",
 +      "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-3.0.2.tgz",
 +      "integrity": "sha512-FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ==",
 +      "dev": true,
 +      "requires": {
 +        "arrify": "^1.0.1",
 +        "is-plain-obj": "^1.1.0"
 +      }
 +    },
 +    "mississippi": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz",
 +      "integrity": "sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==",
 +      "dev": true,
 +      "requires": {
 +        "concat-stream": "^1.5.0",
 +        "duplexify": "^3.4.2",
 +        "end-of-stream": "^1.1.0",
 +        "flush-write-stream": "^1.0.0",
 +        "from2": "^2.1.0",
 +        "parallel-transform": "^1.1.0",
 +        "pump": "^2.0.1",
 +        "pumpify": "^1.3.3",
 +        "stream-each": "^1.1.0",
 +        "through2": "^2.0.0"
 +      }
 +    },
 +    "mixin-deep": {
 +      "version": "1.3.1",
 +      "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz",
 +      "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==",
 +      "dev": true,
 +      "requires": {
 +        "for-in": "^1.0.2",
 +        "is-extendable": "^1.0.1"
 +      },
 +      "dependencies": {
 +        "is-extendable": {
 +          "version": "1.0.1",
 +          "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
 +          "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
 +          "dev": true,
 +          "requires": {
 +            "is-plain-object": "^2.0.4"
 +          }
 +        }
 +      }
 +    },
 +    "mkdirp": {
 +      "version": "0.5.1",
 +      "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
 +      "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
 +      "dev": true,
 +      "requires": {
 +        "minimist": "0.0.8"
 +      }
 +    },
 +    "move-concurrently": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz",
 +      "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=",
 +      "dev": true,
 +      "requires": {
 +        "aproba": "^1.1.1",
 +        "copy-concurrently": "^1.0.0",
 +        "fs-write-stream-atomic": "^1.0.8",
 +        "mkdirp": "^0.5.1",
 +        "rimraf": "^2.5.4",
 +        "run-queue": "^1.0.3"
 +      }
 +    },
 +    "ms": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
 +      "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
 +      "dev": true
 +    },
 +    "nan": {
 +      "version": "2.11.1",
 +      "resolved": "https://registry.npmjs.org/nan/-/nan-2.11.1.tgz",
 +      "integrity": "sha512-iji6k87OSXa0CcrLl9z+ZiYSuR2o+c0bGuNmXdrhTQTakxytAFsC56SArGYoiHlJlFoHSnvmhpceZJaXkVuOtA==",
 +      "dev": true,
 +      "optional": true
 +    },
 +    "nanomatch": {
 +      "version": "1.2.13",
 +      "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
 +      "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
 +      "dev": true,
 +      "requires": {
 +        "arr-diff": "^4.0.0",
 +        "array-unique": "^0.3.2",
 +        "define-property": "^2.0.2",
 +        "extend-shallow": "^3.0.2",
 +        "fragment-cache": "^0.2.1",
 +        "is-windows": "^1.0.2",
 +        "kind-of": "^6.0.2",
 +        "object.pick": "^1.3.0",
 +        "regex-not": "^1.0.0",
 +        "snapdragon": "^0.8.1",
 +        "to-regex": "^3.0.1"
 +      }
 +    },
 +    "neo-async": {
 +      "version": "2.6.0",
 +      "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.0.tgz",
 +      "integrity": "sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==",
 +      "dev": true
 +    },
 +    "next-tick": {
 +      "version": "1.0.0",
 +      "resolved": "http://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz",
 +      "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=",
 +      "dev": true
 +    },
 +    "nice-try": {
 +      "version": "1.0.5",
 +      "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
 +      "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
 +      "dev": true
 +    },
 +    "node-libs-browser": {
 +      "version": "2.1.0",
 +      "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz",
 +      "integrity": "sha512-5AzFzdoIMb89hBGMZglEegffzgRg+ZFoUmisQ8HI4j1KDdpx13J0taNp2y9xPbur6W61gepGDDotGBVQ7mfUCg==",
 +      "dev": true,
 +      "requires": {
 +        "assert": "^1.1.1",
 +        "browserify-zlib": "^0.2.0",
 +        "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": "^1.0.0",
 +        "os-browserify": "^0.3.0",
 +        "path-browserify": "0.0.0",
 +        "process": "^0.11.10",
 +        "punycode": "^1.2.4",
 +        "querystring-es3": "^0.2.0",
 +        "readable-stream": "^2.3.3",
 +        "stream-browserify": "^2.0.1",
 +        "stream-http": "^2.7.2",
 +        "string_decoder": "^1.0.0",
 +        "timers-browserify": "^2.0.4",
 +        "tty-browserify": "0.0.0",
 +        "url": "^0.11.0",
 +        "util": "^0.10.3",
 +        "vm-browserify": "0.0.4"
 +      },
 +      "dependencies": {
 +        "punycode": {
 +          "version": "1.4.1",
 +          "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
 +          "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "nopt": {
 +      "version": "1.0.10",
 +      "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz",
 +      "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=",
 +      "dev": true,
 +      "requires": {
 +        "abbrev": "1"
 +      }
 +    },
 +    "normalize-package-data": {
 +      "version": "2.4.0",
 +      "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz",
 +      "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==",
 +      "dev": true,
 +      "requires": {
 +        "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": {
 +      "version": "2.1.1",
 +      "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
 +      "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
 +      "dev": true,
 +      "requires": {
 +        "remove-trailing-separator": "^1.0.1"
 +      }
 +    },
 +    "normalize-range": {
 +      "version": "0.1.2",
 +      "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
 +      "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=",
 +      "dev": true
 +    },
 +    "npm-run-path": {
 +      "version": "2.0.2",
 +      "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
 +      "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
 +      "dev": true,
 +      "requires": {
 +        "path-key": "^2.0.0"
 +      }
 +    },
 +    "num2fraction": {
 +      "version": "1.2.2",
 +      "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz",
 +      "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=",
 +      "dev": true
 +    },
 +    "number-is-nan": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
 +      "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
 +      "dev": true
 +    },
 +    "oauth-sign": {
 +      "version": "0.9.0",
 +      "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
 +      "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==",
 +      "dev": true
 +    },
 +    "object-copy": {
 +      "version": "0.1.0",
 +      "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
 +      "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
 +      "dev": true,
 +      "requires": {
 +        "copy-descriptor": "^0.1.0",
 +        "define-property": "^0.2.5",
 +        "kind-of": "^3.0.3"
 +      },
 +      "dependencies": {
 +        "define-property": {
 +          "version": "0.2.5",
 +          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
 +          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
 +          "dev": true,
 +          "requires": {
 +            "is-descriptor": "^0.1.0"
 +          }
 +        },
 +        "kind-of": {
 +          "version": "3.2.2",
 +          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
 +          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
 +          "dev": true,
 +          "requires": {
 +            "is-buffer": "^1.1.5"
 +          }
 +        }
 +      }
 +    },
 +    "object-keys": {
 +      "version": "1.0.12",
 +      "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz",
 +      "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==",
 +      "dev": true
 +    },
 +    "object-visit": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz",
 +      "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=",
 +      "dev": true,
 +      "requires": {
 +        "isobject": "^3.0.0"
 +      }
 +    },
 +    "object.assign": {
 +      "version": "4.1.0",
 +      "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz",
 +      "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==",
 +      "dev": true,
 +      "requires": {
 +        "define-properties": "^1.1.2",
 +        "function-bind": "^1.1.1",
 +        "has-symbols": "^1.0.0",
 +        "object-keys": "^1.0.11"
 +      }
 +    },
 +    "object.pick": {
 +      "version": "1.3.0",
 +      "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz",
 +      "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=",
 +      "dev": true,
 +      "requires": {
 +        "isobject": "^3.0.1"
 +      }
 +    },
 +    "object.values": {
 +      "version": "1.0.4",
 +      "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.0.4.tgz",
 +      "integrity": "sha1-5STaCbT2b/Bd9FdUbscqyZ8TBpo=",
 +      "dev": true,
 +      "requires": {
 +        "define-properties": "^1.1.2",
 +        "es-abstract": "^1.6.1",
 +        "function-bind": "^1.1.0",
 +        "has": "^1.0.1"
 +      }
 +    },
 +    "once": {
 +      "version": "1.4.0",
 +      "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
 +      "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
 +      "dev": true,
 +      "requires": {
 +        "wrappy": "1"
 +      }
 +    },
 +    "onecolor": {
 +      "version": "3.1.0",
 +      "resolved": "https://registry.npmjs.org/onecolor/-/onecolor-3.1.0.tgz",
 +      "integrity": "sha512-YZSypViXzu3ul5LMu/m6XjJ9ol8qAy9S2VjHl5E6UlhUH1KGKWabyEJifn0Jjpw23bYDzC2ucKMPGiH5kfwSGQ==",
 +      "dev": true
 +    },
 +    "onetime": {
 +      "version": "2.0.1",
 +      "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz",
 +      "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=",
 +      "dev": true,
 +      "requires": {
 +        "mimic-fn": "^1.0.0"
 +      }
 +    },
 +    "opn": {
 +      "version": "5.4.0",
 +      "resolved": "https://registry.npmjs.org/opn/-/opn-5.4.0.tgz",
 +      "integrity": "sha512-YF9MNdVy/0qvJvDtunAOzFw9iasOQHpVthTCvGzxt61Il64AYSGdK+rYwld7NAfk9qJ7dt+hymBNSc9LNYS+Sw==",
 +      "dev": true,
 +      "requires": {
 +        "is-wsl": "^1.1.0"
 +      }
 +    },
 +    "ora": {
 +      "version": "2.1.0",
 +      "resolved": "https://registry.npmjs.org/ora/-/ora-2.1.0.tgz",
 +      "integrity": "sha512-hNNlAd3gfv/iPmsNxYoAPLvxg7HuPozww7fFonMZvL84tP6Ox5igfk5j/+a9rtJJwqMgKK+JgWsAQik5o0HTLA==",
 +      "dev": true,
 +      "requires": {
 +        "chalk": "^2.3.1",
 +        "cli-cursor": "^2.1.0",
 +        "cli-spinners": "^1.1.0",
 +        "log-symbols": "^2.2.0",
 +        "strip-ansi": "^4.0.0",
 +        "wcwidth": "^1.0.1"
 +      }
 +    },
 +    "os-browserify": {
 +      "version": "0.3.0",
 +      "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz",
 +      "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=",
 +      "dev": true
 +    },
 +    "os-locale": {
 +      "version": "3.0.1",
 +      "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.0.1.tgz",
 +      "integrity": "sha512-7g5e7dmXPtzcP4bgsZ8ixDVqA7oWYuEz4lOSujeWyliPai4gfVDiFIcwBg3aGCPnmSGfzOKTK3ccPn0CKv3DBw==",
 +      "dev": true,
 +      "requires": {
 +        "execa": "^0.10.0",
 +        "lcid": "^2.0.0",
 +        "mem": "^4.0.0"
 +      },
 +      "dependencies": {
 +        "cross-spawn": {
 +          "version": "6.0.5",
 +          "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
 +          "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
 +          "dev": true,
 +          "requires": {
 +            "nice-try": "^1.0.4",
 +            "path-key": "^2.0.1",
 +            "semver": "^5.5.0",
 +            "shebang-command": "^1.2.0",
 +            "which": "^1.2.9"
 +          }
 +        },
 +        "execa": {
 +          "version": "0.10.0",
 +          "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz",
 +          "integrity": "sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==",
 +          "dev": true,
 +          "requires": {
 +            "cross-spawn": "^6.0.0",
 +            "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"
 +          }
 +        }
 +      }
 +    },
 +    "p-defer": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz",
 +      "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=",
 +      "dev": true
 +    },
 +    "p-finally": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
 +      "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
 +      "dev": true
 +    },
 +    "p-is-promise": {
 +      "version": "1.1.0",
 +      "resolved": "http://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz",
 +      "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=",
 +      "dev": true
 +    },
 +    "p-limit": {
 +      "version": "1.3.0",
 +      "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
 +      "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
 +      "dev": true,
 +      "requires": {
 +        "p-try": "^1.0.0"
 +      }
 +    },
 +    "p-locate": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
 +      "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
 +      "dev": true,
 +      "requires": {
 +        "p-limit": "^1.1.0"
 +      }
 +    },
 +    "p-try": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
 +      "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
 +      "dev": true
 +    },
 +    "package-json": {
 +      "version": "4.0.1",
 +      "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz",
 +      "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=",
 +      "dev": true,
 +      "requires": {
 +        "got": "^6.7.1",
 +        "registry-auth-token": "^3.0.1",
 +        "registry-url": "^3.0.3",
 +        "semver": "^5.1.0"
 +      }
 +    },
 +    "pako": {
 +      "version": "1.0.6",
 +      "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz",
 +      "integrity": "sha512-lQe48YPsMJAig+yngZ87Lus+NF+3mtu7DVOBu6b/gHO1YpKwIj5AWjZ/TOS7i46HD/UixzWb1zeWDZfGZ3iYcg==",
 +      "dev": true
 +    },
 +    "parallel-transform": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz",
 +      "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=",
 +      "dev": true,
 +      "requires": {
 +        "cyclist": "~0.2.2",
 +        "inherits": "^2.0.3",
 +        "readable-stream": "^2.1.5"
 +      }
 +    },
 +    "parse-asn1": {
 +      "version": "5.1.1",
 +      "resolved": "http://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz",
 +      "integrity": "sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==",
 +      "dev": true,
 +      "requires": {
 +        "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-json": {
 +      "version": "4.0.0",
 +      "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz",
 +      "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=",
 +      "dev": true,
 +      "requires": {
 +        "error-ex": "^1.3.1",
 +        "json-parse-better-errors": "^1.0.1"
 +      }
 +    },
 +    "pascalcase": {
 +      "version": "0.1.1",
 +      "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
 +      "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
 +      "dev": true
 +    },
 +    "path-browserify": {
 +      "version": "0.0.0",
 +      "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz",
 +      "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=",
 +      "dev": true
 +    },
 +    "path-dirname": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
 +      "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=",
 +      "dev": true
 +    },
 +    "path-exists": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
 +      "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
 +      "dev": true
 +    },
 +    "path-is-absolute": {
 +      "version": "1.0.1",
 +      "resolved": "http://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
 +      "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
 +      "dev": true
 +    },
 +    "path-is-inside": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
 +      "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=",
 +      "dev": true
 +    },
 +    "path-key": {
 +      "version": "2.0.1",
 +      "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
 +      "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
 +      "dev": true
 +    },
 +    "path-parse": {
 +      "version": "1.0.6",
 +      "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
 +      "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==",
 +      "dev": true
 +    },
 +    "path-type": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
 +      "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
 +      "dev": true,
 +      "requires": {
 +        "pify": "^3.0.0"
 +      }
 +    },
 +    "pbkdf2": {
 +      "version": "3.0.17",
 +      "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz",
 +      "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==",
 +      "dev": true,
 +      "requires": {
 +        "create-hash": "^1.1.2",
 +        "create-hmac": "^1.1.4",
 +        "ripemd160": "^2.0.1",
 +        "safe-buffer": "^5.0.1",
 +        "sha.js": "^2.4.8"
 +      }
 +    },
 +    "performance-now": {
 +      "version": "2.1.0",
 +      "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
 +      "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=",
 +      "dev": true
 +    },
 +    "pify": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
 +      "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
 +      "dev": true
 +    },
 +    "pixrem": {
 +      "version": "4.0.1",
 +      "resolved": "https://registry.npmjs.org/pixrem/-/pixrem-4.0.1.tgz",
 +      "integrity": "sha1-LaSh3m7EQjxfw3lOkwuB1EkOxoY=",
 +      "dev": true,
 +      "requires": {
 +        "browserslist": "^2.0.0",
 +        "postcss": "^6.0.0",
 +        "reduce-css-calc": "^1.2.7"
 +      },
 +      "dependencies": {
 +        "browserslist": {
 +          "version": "2.11.3",
 +          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.11.3.tgz",
 +          "integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==",
 +          "dev": true,
 +          "requires": {
 +            "caniuse-lite": "^1.0.30000792",
 +            "electron-to-chromium": "^1.3.30"
 +          }
 +        },
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "pkg-dir": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz",
 +      "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=",
 +      "dev": true,
 +      "requires": {
 +        "find-up": "^2.1.0"
 +      }
 +    },
 +    "pleeease-filters": {
 +      "version": "4.0.0",
 +      "resolved": "https://registry.npmjs.org/pleeease-filters/-/pleeease-filters-4.0.0.tgz",
 +      "integrity": "sha1-ZjKy+wVkjSdY2GU4T7zteeHMrsc=",
 +      "dev": true,
 +      "requires": {
 +        "onecolor": "^3.0.4",
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "plur": {
 +      "version": "3.0.1",
 +      "resolved": "https://registry.npmjs.org/plur/-/plur-3.0.1.tgz",
 +      "integrity": "sha512-lJl0ojUynAM1BZn58Pas2WT/TXeC1+bS+UqShl0x9+49AtOn7DixRXVzaC8qrDOIxNDmepKnLuMTH7NQmkX0PA==",
 +      "dev": true,
 +      "requires": {
 +        "irregular-plurals": "^2.0.0"
 +      }
 +    },
 +    "posix-character-classes": {
 +      "version": "0.1.1",
 +      "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz",
 +      "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=",
 +      "dev": true
 +    },
 +    "postcss": {
 +      "version": "7.0.5",
 +      "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.5.tgz",
 +      "integrity": "sha512-HBNpviAUFCKvEh7NZhw1e8MBPivRszIiUnhrJ+sBFVSYSqubrzwX3KG51mYgcRHX8j/cAgZJedONZcm5jTBdgQ==",
 +      "dev": true,
 +      "requires": {
 +        "chalk": "^2.4.1",
 +        "source-map": "^0.6.1",
 +        "supports-color": "^5.5.0"
 +      },
 +      "dependencies": {
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-apply": {
 +      "version": "0.8.0",
 +      "resolved": "https://registry.npmjs.org/postcss-apply/-/postcss-apply-0.8.0.tgz",
 +      "integrity": "sha1-FOVEu7XLbxweBIhXll15rgZrE0M=",
 +      "dev": true,
 +      "requires": {
 +        "babel-runtime": "^6.23.0",
 +        "balanced-match": "^0.4.2",
 +        "postcss": "^6.0.0"
 +      },
 +      "dependencies": {
 +        "balanced-match": {
 +          "version": "0.4.2",
 +          "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
 +          "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=",
 +          "dev": true
 +        },
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-attribute-case-insensitive": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-2.0.0.tgz",
 +      "integrity": "sha1-lNxCLI+QmX8WvTOjZUu77AhJY7Q=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.0",
 +        "postcss-selector-parser": "^2.2.3"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "postcss-selector-parser": {
 +          "version": "2.2.3",
 +          "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz",
 +          "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=",
 +          "dev": true,
 +          "requires": {
 +            "flatten": "^1.0.2",
 +            "indexes-of": "^1.0.1",
 +            "uniq": "^1.0.1"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-calc": {
 +      "version": "6.0.2",
 +      "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-6.0.2.tgz",
 +      "integrity": "sha512-fiznXjEN5T42Qm7qqMCVJXS3roaj9r4xsSi+meaBVe7CJBl8t/QLOXu02Z2E6oWAMWIvCuF6JrvzFekmVEbOKA==",
 +      "dev": true,
 +      "requires": {
 +        "css-unit-converter": "^1.1.1",
 +        "postcss": "^7.0.2",
 +        "postcss-selector-parser": "^2.2.2",
 +        "reduce-css-calc": "^2.0.0"
 +      },
 +      "dependencies": {
 +        "postcss-selector-parser": {
 +          "version": "2.2.3",
 +          "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz",
 +          "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=",
 +          "dev": true,
 +          "requires": {
 +            "flatten": "^1.0.2",
 +            "indexes-of": "^1.0.1",
 +            "uniq": "^1.0.1"
 +          }
 +        },
 +        "reduce-css-calc": {
 +          "version": "2.1.5",
 +          "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.5.tgz",
 +          "integrity": "sha512-AybiBU03FKbjYzyvJvwkJZY6NLN+80Ufc2EqEs+41yQH+8wqBEslD6eGiS0oIeq5TNLA5PrhBeYHXWdn8gtW7A==",
 +          "dev": true,
 +          "requires": {
 +            "css-unit-converter": "^1.1.1",
 +            "postcss-value-parser": "^3.3.0"
 +          }
 +        }
 +      }
 +    },
 +    "postcss-color-function": {
 +      "version": "4.0.1",
 +      "resolved": "https://registry.npmjs.org/postcss-color-function/-/postcss-color-function-4.0.1.tgz",
 +      "integrity": "sha1-QCs/LOvD9pR+YY+2vjZU++zvZEQ=",
 +      "dev": true,
 +      "requires": {
 +        "css-color-function": "~1.3.3",
 +        "postcss": "^6.0.1",
 +        "postcss-message-helpers": "^2.0.0",
 +        "postcss-value-parser": "^3.3.0"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-color-gray": {
 +      "version": "4.1.0",
 +      "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-4.1.0.tgz",
 +      "integrity": "sha512-L4iLKQLdqChz6ZOgGb6dRxkBNw78JFYcJmBz1orHpZoeLtuhDDGegRtX9gSyfoCIM7rWZ3VNOyiqqvk83BEN+w==",
 +      "dev": true,
 +      "requires": {
 +        "color": "^2.0.1",
 +        "postcss": "^6.0.14",
 +        "postcss-message-helpers": "^2.0.0",
 +        "reduce-function-call": "^1.0.2"
 +      },
 +      "dependencies": {
 +        "color": {
 +          "version": "2.0.1",
 +          "resolved": "https://registry.npmjs.org/color/-/color-2.0.1.tgz",
 +          "integrity": "sha512-ubUCVVKfT7r2w2D3qtHakj8mbmKms+tThR8gI8zEYCbUBl8/voqFGt3kgBqGwXAopgXybnkuOq+qMYCRrp4cXw==",
 +          "dev": true,
 +          "requires": {
 +            "color-convert": "^1.9.1",
 +            "color-string": "^1.5.2"
 +          }
 +        },
 +        "color-string": {
 +          "version": "1.5.3",
 +          "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz",
 +          "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==",
 +          "dev": true,
 +          "requires": {
 +            "color-name": "^1.0.0",
 +            "simple-swizzle": "^0.2.2"
 +          }
 +        },
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-color-hex-alpha": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-3.0.0.tgz",
 +      "integrity": "sha1-HlPmyKyyN5Vej9CLfs2xuLgwn5U=",
 +      "dev": true,
 +      "requires": {
 +        "color": "^1.0.3",
 +        "postcss": "^6.0.1",
 +        "postcss-message-helpers": "^2.0.0"
 +      },
 +      "dependencies": {
 +        "color": {
 +          "version": "1.0.3",
-           "resolved": "http://registry.npmjs.org/color/-/color-1.0.3.tgz",
++          "resolved": "https://registry.npmjs.org/color/-/color-1.0.3.tgz",
 +          "integrity": "sha1-5I6DLYXxTvaU+0aIEcLVz+cptV0=",
 +          "dev": true,
 +          "requires": {
 +            "color-convert": "^1.8.2",
 +            "color-string": "^1.4.0"
 +          }
 +        },
 +        "color-string": {
 +          "version": "1.5.3",
 +          "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz",
 +          "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==",
 +          "dev": true,
 +          "requires": {
 +            "color-name": "^1.0.0",
 +            "simple-swizzle": "^0.2.2"
 +          }
 +        },
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-color-hsl": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-color-hsl/-/postcss-color-hsl-2.0.0.tgz",
 +      "integrity": "sha1-EnA2ZvoxBDDj8wpFTawThjF9WEQ=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.1",
 +        "postcss-value-parser": "^3.3.0",
 +        "units-css": "^0.4.0"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-color-hwb": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-color-hwb/-/postcss-color-hwb-3.0.0.tgz",
 +      "integrity": "sha1-NAKxnvTYSXVAwftQcr6YY8qVVx4=",
 +      "dev": true,
 +      "requires": {
 +        "color": "^1.0.3",
 +        "postcss": "^6.0.1",
 +        "postcss-message-helpers": "^2.0.0",
 +        "reduce-function-call": "^1.0.2"
 +      },
 +      "dependencies": {
 +        "color": {
 +          "version": "1.0.3",
-           "resolved": "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
++          "resolved": "https://registry.npmjs.org/color/-/color-1.0.3.tgz",
 +          "integrity": "sha1-5I6DLYXxTvaU+0aIEcLVz+cptV0=",
 +          "dev": true,
 +          "requires": {
 +            "color-convert": "^1.8.2",
 +            "color-string": "^1.4.0"
 +          }
 +        },
 +        "color-string": {
 +          "version": "1.5.3",
 +          "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.3.tgz",
 +          "integrity": "sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw==",
 +          "dev": true,
 +          "requires": {
 +            "color-name": "^1.0.0",
 +            "simple-swizzle": "^0.2.2"
 +          }
 +        },
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-color-rebeccapurple": {
 +      "version": "3.1.0",
 +      "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-3.1.0.tgz",
 +      "integrity": "sha512-212hJUk9uSsbwO5ECqVjmh/iLsmiVL1xy9ce9TVf+X3cK/ZlUIlaMdoxje/YpsL9cmUH3I7io+/G2LyWx5rg1g==",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.22",
 +        "postcss-values-parser": "^1.5.0"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-color-rgb": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-color-rgb/-/postcss-color-rgb-2.0.0.tgz",
 +      "integrity": "sha1-FFOcinExSUtILg3RzCZf9lFLUmM=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.1",
 +        "postcss-value-parser": "^3.3.0"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-color-rgba-fallback": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-color-rgba-fallback/-/postcss-color-rgba-fallback-3.0.0.tgz",
 +      "integrity": "sha1-N9XJNToHoJJwkSqCYGu0Kg1wLAQ=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.6",
 +        "postcss-value-parser": "^3.3.0",
 +        "rgb-hex": "^2.1.0"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-cssnext": {
 +      "version": "3.1.0",
 +      "resolved": "https://registry.npmjs.org/postcss-cssnext/-/postcss-cssnext-3.1.0.tgz",
 +      "integrity": "sha512-awPDhI4OKetcHCr560iVCoDuP6e/vn0r6EAqdWPpAavJMvkBSZ6kDpSN4b3mB3Ti57hQMunHHM8Wvx9PeuYXtA==",
 +      "dev": true,
 +      "requires": {
 +        "autoprefixer": "^7.1.1",
 +        "caniuse-api": "^2.0.0",
 +        "chalk": "^2.0.1",
 +        "pixrem": "^4.0.0",
 +        "pleeease-filters": "^4.0.0",
 +        "postcss": "^6.0.5",
 +        "postcss-apply": "^0.8.0",
 +        "postcss-attribute-case-insensitive": "^2.0.0",
 +        "postcss-calc": "^6.0.0",
 +        "postcss-color-function": "^4.0.0",
 +        "postcss-color-gray": "^4.0.0",
 +        "postcss-color-hex-alpha": "^3.0.0",
 +        "postcss-color-hsl": "^2.0.0",
 +        "postcss-color-hwb": "^3.0.0",
 +        "postcss-color-rebeccapurple": "^3.0.0",
 +        "postcss-color-rgb": "^2.0.0",
 +        "postcss-color-rgba-fallback": "^3.0.0",
 +        "postcss-custom-media": "^6.0.0",
 +        "postcss-custom-properties": "^6.1.0",
 +        "postcss-custom-selectors": "^4.0.1",
 +        "postcss-font-family-system-ui": "^3.0.0",
 +        "postcss-font-variant": "^3.0.0",
 +        "postcss-image-set-polyfill": "^0.3.5",
 +        "postcss-initial": "^2.0.0",
 +        "postcss-media-minmax": "^3.0.0",
 +        "postcss-nesting": "^4.0.1",
 +        "postcss-pseudo-class-any-link": "^4.0.0",
 +        "postcss-pseudoelements": "^5.0.0",
 +        "postcss-replace-overflow-wrap": "^2.0.0",
 +        "postcss-selector-matches": "^3.0.1",
 +        "postcss-selector-not": "^3.0.1"
 +      },
 +      "dependencies": {
 +        "autoprefixer": {
 +          "version": "7.2.6",
 +          "resolved": "http://registry.npmjs.org/autoprefixer/-/autoprefixer-7.2.6.tgz",
 +          "integrity": "sha512-Iq8TRIB+/9eQ8rbGhcP7ct5cYb/3qjNYAR2SnzLCEcwF6rvVOax8+9+fccgXk4bEhQGjOZd5TLhsksmAdsbGqQ==",
 +          "dev": true,
 +          "requires": {
 +            "browserslist": "^2.11.3",
 +            "caniuse-lite": "^1.0.30000805",
 +            "normalize-range": "^0.1.2",
 +            "num2fraction": "^1.2.2",
 +            "postcss": "^6.0.17",
 +            "postcss-value-parser": "^3.2.3"
 +          }
 +        },
 +        "browserslist": {
 +          "version": "2.11.3",
 +          "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.11.3.tgz",
 +          "integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==",
 +          "dev": true,
 +          "requires": {
 +            "caniuse-lite": "^1.0.30000792",
 +            "electron-to-chromium": "^1.3.30"
 +          }
 +        },
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-custom-media": {
 +      "version": "6.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-6.0.0.tgz",
 +      "integrity": "sha1-vlMnhBEOyylQRPtTlaGABushpzc=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-custom-properties": {
 +      "version": "6.3.1",
 +      "resolved": "http://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-6.3.1.tgz",
 +      "integrity": "sha512-zoiwn4sCiUFbr4KcgcNZLFkR6gVQom647L+z1p/KBVHZ1OYwT87apnS42atJtx6XlX2yI7N5fjXbFixShQO2QQ==",
 +      "dev": true,
 +      "requires": {
 +        "balanced-match": "^1.0.0",
 +        "postcss": "^6.0.18"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-custom-selectors": {
 +      "version": "4.0.1",
 +      "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-4.0.1.tgz",
 +      "integrity": "sha1-eBOC+UxS5yfvXKR3bqKt9JphE4I=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.1",
 +        "postcss-selector-matches": "^3.0.0"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-font-family-system-ui": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-font-family-system-ui/-/postcss-font-family-system-ui-3.0.0.tgz",
 +      "integrity": "sha512-58G/hTxMSSKlIRpcPUjlyo6hV2MEzvcVO2m4L/T7Bb2fJTG4DYYfQjQeRvuimKQh1V1sOzCIz99g+H2aFNtlQw==",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-font-variant": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-3.0.0.tgz",
 +      "integrity": "sha1-CMzIj2BQuoLtjvLMdsDGprQfGD4=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-image-set-polyfill": {
 +      "version": "0.3.5",
 +      "resolved": "https://registry.npmjs.org/postcss-image-set-polyfill/-/postcss-image-set-polyfill-0.3.5.tgz",
 +      "integrity": "sha1-Dxk0E3AM8fgr05Bm7wFtZaShgYE=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.1",
 +        "postcss-media-query-parser": "^0.2.3"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-import": {
 +      "version": "12.0.1",
 +      "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-12.0.1.tgz",
 +      "integrity": "sha512-3Gti33dmCjyKBgimqGxL3vcV8w9+bsHwO5UrBawp796+jdardbcFl4RP5w/76BwNL7aGzpKstIfF9I+kdE8pTw==",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^7.0.1",
 +        "postcss-value-parser": "^3.2.3",
 +        "read-cache": "^1.0.0",
 +        "resolve": "^1.1.7"
 +      }
 +    },
 +    "postcss-initial": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-2.0.0.tgz",
 +      "integrity": "sha1-cnFfczbgu3k1HZnuZcSiU6hEG6Q=",
 +      "dev": true,
 +      "requires": {
 +        "lodash.template": "^4.2.4",
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-load-config": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.0.0.tgz",
 +      "integrity": "sha512-V5JBLzw406BB8UIfsAWSK2KSwIJ5yoEIVFb4gVkXci0QdKgA24jLmHZ/ghe/GgX0lJ0/D1uUK1ejhzEY94MChQ==",
 +      "dev": true,
 +      "requires": {
 +        "cosmiconfig": "^4.0.0",
 +        "import-cwd": "^2.0.0"
 +      },
 +      "dependencies": {
 +        "cosmiconfig": {
 +          "version": "4.0.0",
 +          "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-4.0.0.tgz",
 +          "integrity": "sha512-6e5vDdrXZD+t5v0L8CrurPeybg4Fmf+FCSYxXKYVAqLUtyCSbuyqE059d0kDthTNRzKVjL7QMgNpEUlsoYH3iQ==",
 +          "dev": true,
 +          "requires": {
 +            "is-directory": "^0.3.1",
 +            "js-yaml": "^3.9.0",
 +            "parse-json": "^4.0.0",
 +            "require-from-string": "^2.0.1"
 +          }
 +        }
 +      }
 +    },
 +    "postcss-loader": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz",
 +      "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==",
 +      "dev": true,
 +      "requires": {
 +        "loader-utils": "^1.1.0",
 +        "postcss": "^7.0.0",
 +        "postcss-load-config": "^2.0.0",
 +        "schema-utils": "^1.0.0"
 +      },
 +      "dependencies": {
 +        "schema-utils": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz",
 +          "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==",
 +          "dev": true,
 +          "requires": {
 +            "ajv": "^6.1.0",
 +            "ajv-errors": "^1.0.0",
 +            "ajv-keywords": "^3.1.0"
 +          }
 +        }
 +      }
 +    },
 +    "postcss-media-minmax": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-3.0.0.tgz",
 +      "integrity": "sha1-Z1JWA3pD70C8Twdgv9BtTcadSNI=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-media-query-parser": {
 +      "version": "0.2.3",
 +      "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz",
 +      "integrity": "sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=",
 +      "dev": true
 +    },
 +    "postcss-message-helpers": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz",
 +      "integrity": "sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4=",
 +      "dev": true
 +    },
 +    "postcss-modules-extract-imports": {
 +      "version": "1.2.1",
 +      "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz",
 +      "integrity": "sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-modules-local-by-default": {
 +      "version": "1.2.0",
 +      "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz",
 +      "integrity": "sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=",
 +      "dev": true,
 +      "requires": {
 +        "css-selector-tokenizer": "^0.7.0",
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-modules-scope": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz",
 +      "integrity": "sha1-1upkmUx5+XtipytCb75gVqGUu5A=",
 +      "dev": true,
 +      "requires": {
 +        "css-selector-tokenizer": "^0.7.0",
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-modules-values": {
 +      "version": "1.3.0",
 +      "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz",
 +      "integrity": "sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=",
 +      "dev": true,
 +      "requires": {
 +        "icss-replace-symbols": "^1.1.0",
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-nesting": {
 +      "version": "4.2.1",
 +      "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-4.2.1.tgz",
 +      "integrity": "sha512-IkyWXICwagCnlaviRexi7qOdwPw3+xVVjgFfGsxmztvRVaNxAlrypOIKqDE5mxY+BVxnId1rnUKBRQoNE2VDaA==",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.11"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-pseudo-class-any-link": {
 +      "version": "4.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-4.0.0.tgz",
 +      "integrity": "sha1-kVKgYT00UHIFE+iJKFS65C0O5o4=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.1",
 +        "postcss-selector-parser": "^2.2.3"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "postcss-selector-parser": {
 +          "version": "2.2.3",
 +          "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz",
 +          "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=",
 +          "dev": true,
 +          "requires": {
 +            "flatten": "^1.0.2",
 +            "indexes-of": "^1.0.1",
 +            "uniq": "^1.0.1"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-pseudoelements": {
 +      "version": "5.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-pseudoelements/-/postcss-pseudoelements-5.0.0.tgz",
 +      "integrity": "sha1-7vGU6NUkZFylIKlJ6V5RjoEkAss=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.0"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-replace-overflow-wrap": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-2.0.0.tgz",
 +      "integrity": "sha1-eU22+qVPjbEAhUOSqTr0V2i04ls=",
 +      "dev": true,
 +      "requires": {
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-selector-matches": {
 +      "version": "3.0.1",
 +      "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-3.0.1.tgz",
 +      "integrity": "sha1-5WNAEeE5UIgYYbvdWMLQER/8lqs=",
 +      "dev": true,
 +      "requires": {
 +        "balanced-match": "^0.4.2",
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "balanced-match": {
 +          "version": "0.4.2",
 +          "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
 +          "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=",
 +          "dev": true
 +        },
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-selector-not": {
 +      "version": "3.0.1",
 +      "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-3.0.1.tgz",
 +      "integrity": "sha1-Lk2y8JZTNsAefOx9tsYN/3ZzNdk=",
 +      "dev": true,
 +      "requires": {
 +        "balanced-match": "^0.4.2",
 +        "postcss": "^6.0.1"
 +      },
 +      "dependencies": {
 +        "balanced-match": {
 +          "version": "0.4.2",
 +          "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
 +          "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=",
 +          "dev": true
 +        },
 +        "postcss": {
 +          "version": "6.0.23",
 +          "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
 +          "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
 +          "dev": true,
 +          "requires": {
 +            "chalk": "^2.4.1",
 +            "source-map": "^0.6.1",
 +            "supports-color": "^5.4.0"
 +          }
 +        },
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "postcss-selector-parser": {
 +      "version": "5.0.0-rc.4",
 +      "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0-rc.4.tgz",
 +      "integrity": "sha512-0XvfYuShrKlTk1ooUrVzMCFQRcypsdEIsGqh5IxC5rdtBi4/M/tDAJeSONwC2MTqEFsmPZYAV7Dd4X8rgAfV0A==",
 +      "dev": true,
 +      "requires": {
 +        "cssesc": "^2.0.0",
 +        "indexes-of": "^1.0.1",
 +        "uniq": "^1.0.1"
 +      }
 +    },
 +    "postcss-value-parser": {
 +      "version": "3.3.1",
 +      "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
 +      "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
 +      "dev": true
 +    },
 +    "postcss-values-parser": {
 +      "version": "1.5.0",
 +      "resolved": "http://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-1.5.0.tgz",
 +      "integrity": "sha512-3M3p+2gMp0AH3da530TlX8kiO1nxdTnc3C6vr8dMxRLIlh8UYkz0/wcwptSXjhtx2Fr0TySI7a+BHDQ8NL7LaQ==",
 +      "dev": true,
 +      "requires": {
 +        "flatten": "^1.0.2",
 +        "indexes-of": "^1.0.1",
 +        "uniq": "^1.0.1"
 +      }
 +    },
 +    "prepend-http": {
 +      "version": "1.0.4",
 +      "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz",
 +      "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=",
 +      "dev": true
 +    },
 +    "pretty-bytes": {
 +      "version": "5.1.0",
 +      "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.1.0.tgz",
 +      "integrity": "sha512-wa5+qGVg9Yt7PB6rYm3kXlKzgzgivYTLRandezh43jjRqgyDyP+9YxfJpJiLs9yKD1WeU8/OvtToWpW7255FtA==",
 +      "dev": true
 +    },
 +    "process": {
 +      "version": "0.11.10",
 +      "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
 +      "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=",
 +      "dev": true
 +    },
 +    "process-nextick-args": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
 +      "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==",
 +      "dev": true
 +    },
 +    "promise-inflight": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz",
 +      "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=",
 +      "dev": true
 +    },
 +    "prr": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
 +      "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=",
 +      "dev": true
 +    },
 +    "pseudomap": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
 +      "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=",
 +      "dev": true
 +    },
 +    "psl": {
 +      "version": "1.1.29",
 +      "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz",
 +      "integrity": "sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==",
 +      "dev": true
 +    },
 +    "public-encrypt": {
 +      "version": "4.0.3",
 +      "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz",
 +      "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==",
 +      "dev": true,
 +      "requires": {
 +        "bn.js": "^4.1.0",
 +        "browserify-rsa": "^4.0.0",
 +        "create-hash": "^1.1.0",
 +        "parse-asn1": "^5.0.0",
 +        "randombytes": "^2.0.1",
 +        "safe-buffer": "^5.1.2"
 +      }
 +    },
 +    "pump": {
 +      "version": "2.0.1",
 +      "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
 +      "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
 +      "dev": true,
 +      "requires": {
 +        "end-of-stream": "^1.1.0",
 +        "once": "^1.3.1"
 +      }
 +    },
 +    "pumpify": {
 +      "version": "1.5.1",
 +      "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
 +      "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
 +      "dev": true,
 +      "requires": {
 +        "duplexify": "^3.6.0",
 +        "inherits": "^2.0.3",
 +        "pump": "^2.0.0"
 +      }
 +    },
 +    "punycode": {
 +      "version": "2.1.1",
 +      "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
 +      "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
 +      "dev": true
 +    },
 +    "purgecss": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-1.1.0.tgz",
 +      "integrity": "sha512-/XYpiMvbehpeJqxu8k0hzCai9F2RQGjprjpJzRMq9e2qkT8Fk7AW9zLr7bAuqQfxgMIV/+DTNlks3Ckn6J9WEw==",
 +      "dev": true,
 +      "requires": {
 +        "glob": "^7.1.2",
 +        "postcss": "^7.0.0",
 +        "postcss-selector-parser": "^5.0.0-rc.3",
 +        "yargs": "^12.0.1"
 +      },
 +      "dependencies": {
 +        "decamelize": {
 +          "version": "1.2.0",
 +          "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
 +          "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
 +          "dev": true
 +        },
 +        "find-up": {
 +          "version": "3.0.0",
 +          "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
 +          "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
 +          "dev": true,
 +          "requires": {
 +            "locate-path": "^3.0.0"
 +          }
 +        },
 +        "locate-path": {
 +          "version": "3.0.0",
 +          "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
 +          "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
 +          "dev": true,
 +          "requires": {
 +            "p-locate": "^3.0.0",
 +            "path-exists": "^3.0.0"
 +          }
 +        },
 +        "p-limit": {
 +          "version": "2.0.0",
 +          "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.0.0.tgz",
 +          "integrity": "sha512-fl5s52lI5ahKCernzzIyAP0QAZbGIovtVHGwpcu1Jr/EpzLVDI2myISHwGqK7m8uQFugVWSrbxH7XnhGtvEc+A==",
 +          "dev": true,
 +          "requires": {
 +            "p-try": "^2.0.0"
 +          }
 +        },
 +        "p-locate": {
 +          "version": "3.0.0",
 +          "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
 +          "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
 +          "dev": true,
 +          "requires": {
 +            "p-limit": "^2.0.0"
 +          }
 +        },
 +        "p-try": {
 +          "version": "2.0.0",
 +          "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.0.0.tgz",
 +          "integrity": "sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ==",
 +          "dev": true
 +        },
 +        "yargs": {
 +          "version": "12.0.4",
 +          "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.4.tgz",
 +          "integrity": "sha512-f5esswlPO351AnejaO2A1ZZr0zesz19RehQKwiRDqWtrraWrJy16tsUIKgDXFMVytvNOHPVmTiaTh3wO67I0fQ==",
 +          "dev": true,
 +          "requires": {
 +            "cliui": "^4.0.0",
 +            "decamelize": "^1.2.0",
 +            "find-up": "^3.0.0",
 +            "get-caller-file": "^1.0.1",
 +            "os-locale": "^3.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 || ^4.0.0",
 +            "yargs-parser": "^11.1.0"
 +          }
 +        },
 +        "yargs-parser": {
 +          "version": "11.1.0",
 +          "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.0.tgz",
 +          "integrity": "sha512-lGA5HsbjkpCfekDBHAhgE5OE8xEoqiUDylowr+BvhRCwG1xVYTsd8hx2CYC0NY4k9RIgJeybFTG2EZW4P2aN1w==",
 +          "dev": true,
 +          "requires": {
 +            "camelcase": "^5.0.0",
 +            "decamelize": "^1.2.0"
 +          }
 +        }
 +      }
 +    },
 +    "purgecss-webpack-plugin": {
 +      "version": "1.3.1",
 +      "resolved": "https://registry.npmjs.org/purgecss-webpack-plugin/-/purgecss-webpack-plugin-1.3.1.tgz",
 +      "integrity": "sha512-RdiVF9AN6QNzx3yIqg1uUI8PcoUOeSkgTa9BS8pMZYXirBHizpuFvAZN2pKpmV9UoJ0cbBJS4watKFrhO8Td3A==",
 +      "dev": true,
 +      "requires": {
 +        "purgecss": "^1.1.0",
 +        "webpack-sources": "^1.2.0"
 +      }
 +    },
 +    "qs": {
 +      "version": "6.5.2",
 +      "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
 +      "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
 +      "dev": true
 +    },
 +    "querystring": {
 +      "version": "0.2.0",
 +      "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
 +      "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=",
 +      "dev": true
 +    },
 +    "querystring-es3": {
 +      "version": "0.2.1",
 +      "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz",
 +      "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=",
 +      "dev": true
 +    },
 +    "quick-lru": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-1.1.0.tgz",
 +      "integrity": "sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g=",
 +      "dev": true
 +    },
 +    "randombytes": {
 +      "version": "2.0.6",
 +      "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz",
 +      "integrity": "sha512-CIQ5OFxf4Jou6uOKe9t1AOgqpeU5fd70A8NPdHSGeYXqXsPe6peOwI0cUl88RWZ6sP1vPMV3avd/R6cZ5/sP1A==",
 +      "dev": true,
 +      "requires": {
 +        "safe-buffer": "^5.1.0"
 +      }
 +    },
 +    "randomfill": {
 +      "version": "1.0.4",
 +      "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
 +      "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
 +      "dev": true,
 +      "requires": {
 +        "randombytes": "^2.0.5",
 +        "safe-buffer": "^5.1.0"
 +      }
 +    },
 +    "rc": {
 +      "version": "1.2.8",
 +      "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
 +      "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
 +      "dev": true,
 +      "requires": {
 +        "deep-extend": "^0.6.0",
 +        "ini": "~1.3.0",
 +        "minimist": "^1.2.0",
 +        "strip-json-comments": "~2.0.1"
 +      },
 +      "dependencies": {
 +        "minimist": {
 +          "version": "1.2.0",
 +          "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
 +          "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "read-cache": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
 +      "integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=",
 +      "dev": true,
 +      "requires": {
 +        "pify": "^2.3.0"
 +      },
 +      "dependencies": {
 +        "pify": {
 +          "version": "2.3.0",
-       "resolved": "http://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz",
++          "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
 +          "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "read-pkg": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz",
 +      "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=",
 +      "dev": true,
 +      "requires": {
 +        "load-json-file": "^4.0.0",
 +        "normalize-package-data": "^2.3.2",
 +        "path-type": "^3.0.0"
 +      }
 +    },
 +    "read-pkg-up": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz",
 +      "integrity": "sha1-PtSWaF26D4/hGNBpHcUfSh/5bwc=",
 +      "dev": true,
 +      "requires": {
 +        "find-up": "^2.0.0",
 +        "read-pkg": "^3.0.0"
 +      }
 +    },
 +    "readable-stream": {
 +      "version": "2.3.6",
 +      "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
 +      "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
 +      "dev": true,
 +      "requires": {
 +        "core-util-is": "~1.0.0",
 +        "inherits": "~2.0.3",
 +        "isarray": "~1.0.0",
 +        "process-nextick-args": "~2.0.0",
 +        "safe-buffer": "~5.1.1",
 +        "string_decoder": "~1.1.1",
 +        "util-deprecate": "~1.0.1"
 +      }
 +    },
 +    "readdirp": {
 +      "version": "2.2.1",
 +      "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
 +      "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
 +      "dev": true,
 +      "requires": {
 +        "graceful-fs": "^4.1.11",
 +        "micromatch": "^3.1.10",
 +        "readable-stream": "^2.0.2"
 +      }
 +    },
 +    "redent": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/redent/-/redent-2.0.0.tgz",
 +      "integrity": "sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo=",
 +      "dev": true,
 +      "requires": {
 +        "indent-string": "^3.0.0",
 +        "strip-indent": "^2.0.0"
 +      }
 +    },
 +    "reduce": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/reduce/-/reduce-1.0.1.tgz",
 +      "integrity": "sha1-FPouX/H8VgcDoCDLtfuqtpFWWAQ=",
 +      "dev": true,
 +      "requires": {
 +        "object-keys": "~1.0.0"
 +      }
 +    },
 +    "reduce-css-calc": {
 +      "version": "1.3.0",
-           "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
++      "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz",
 +      "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=",
 +      "dev": true,
 +      "requires": {
 +        "balanced-match": "^0.4.2",
 +        "math-expression-evaluator": "^1.2.14",
 +        "reduce-function-call": "^1.0.1"
 +      },
 +      "dependencies": {
 +        "balanced-match": {
 +          "version": "0.4.2",
 +          "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
 +          "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "reduce-function-call": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz",
 +      "integrity": "sha1-WiAL+S4ON3UXUv5FsKszD9S2vpk=",
 +      "dev": true,
 +      "requires": {
 +        "balanced-match": "^0.4.2"
 +      },
 +      "dependencies": {
 +        "balanced-match": {
 +          "version": "0.4.2",
 +          "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
 +          "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "regenerate": {
 +      "version": "1.4.0",
 +      "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz",
 +      "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==",
 +      "dev": true
 +    },
 +    "regenerator-runtime": {
 +      "version": "0.11.1",
 +      "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
 +      "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==",
 +      "dev": true
 +    },
 +    "regex-not": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
 +      "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
 +      "dev": true,
 +      "requires": {
 +        "extend-shallow": "^3.0.2",
 +        "safe-regex": "^1.1.0"
 +      }
 +    },
 +    "regexpu-core": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz",
 +      "integrity": "sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=",
 +      "dev": true,
 +      "requires": {
 +        "regenerate": "^1.2.1",
 +        "regjsgen": "^0.2.0",
 +        "regjsparser": "^0.1.4"
 +      }
 +    },
 +    "registry-auth-token": {
 +      "version": "3.3.2",
 +      "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz",
 +      "integrity": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==",
 +      "dev": true,
 +      "requires": {
 +        "rc": "^1.1.6",
 +        "safe-buffer": "^5.0.1"
 +      }
 +    },
 +    "registry-url": {
 +      "version": "3.1.0",
 +      "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz",
 +      "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=",
 +      "dev": true,
 +      "requires": {
 +        "rc": "^1.0.1"
 +      }
 +    },
 +    "regjsgen": {
 +      "version": "0.2.0",
 +      "resolved": "http://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz",
 +      "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=",
 +      "dev": true
 +    },
 +    "regjsparser": {
 +      "version": "0.1.5",
 +      "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz",
 +      "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=",
 +      "dev": true,
 +      "requires": {
 +        "jsesc": "~0.5.0"
 +      }
 +    },
 +    "remove-trailing-separator": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
 +      "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
 +      "dev": true
 +    },
 +    "repeat-element": {
 +      "version": "1.1.3",
 +      "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz",
 +      "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==",
 +      "dev": true
 +    },
 +    "repeat-string": {
 +      "version": "1.6.1",
 +      "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
 +      "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
 +      "dev": true
 +    },
 +    "request": {
 +      "version": "2.88.0",
 +      "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz",
 +      "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==",
 +      "dev": true,
 +      "requires": {
 +        "aws-sign2": "~0.7.0",
 +        "aws4": "^1.8.0",
 +        "caseless": "~0.12.0",
 +        "combined-stream": "~1.0.6",
 +        "extend": "~3.0.2",
 +        "forever-agent": "~0.6.1",
 +        "form-data": "~2.3.2",
 +        "har-validator": "~5.1.0",
 +        "http-signature": "~1.2.0",
 +        "is-typedarray": "~1.0.0",
 +        "isstream": "~0.1.2",
 +        "json-stringify-safe": "~5.0.1",
 +        "mime-types": "~2.1.19",
 +        "oauth-sign": "~0.9.0",
 +        "performance-now": "^2.1.0",
 +        "qs": "~6.5.2",
 +        "safe-buffer": "^5.1.2",
 +        "tough-cookie": "~2.4.3",
 +        "tunnel-agent": "^0.6.0",
 +        "uuid": "^3.3.2"
 +      }
 +    },
 +    "require-directory": {
 +      "version": "2.1.1",
 +      "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
 +      "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
 +      "dev": true
 +    },
 +    "require-from-string": {
 +      "version": "2.0.2",
 +      "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
 +      "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
 +      "dev": true
 +    },
 +    "require-main-filename": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz",
 +      "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=",
 +      "dev": true
 +    },
 +    "resolve": {
 +      "version": "1.8.1",
 +      "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz",
 +      "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==",
 +      "dev": true,
 +      "requires": {
 +        "path-parse": "^1.0.5"
 +      }
 +    },
 +    "resolve-cwd": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz",
 +      "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=",
 +      "dev": true,
 +      "requires": {
 +        "resolve-from": "^3.0.0"
 +      }
 +    },
 +    "resolve-from": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
 +      "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=",
 +      "dev": true
 +    },
 +    "resolve-url": {
 +      "version": "0.2.1",
 +      "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz",
 +      "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=",
 +      "dev": true
 +    },
 +    "restore-cursor": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz",
 +      "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=",
 +      "dev": true,
 +      "requires": {
 +        "onetime": "^2.0.0",
 +        "signal-exit": "^3.0.2"
 +      }
 +    },
 +    "ret": {
 +      "version": "0.1.15",
 +      "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
 +      "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==",
 +      "dev": true
 +    },
 +    "rgb": {
 +      "version": "0.1.0",
 +      "resolved": "https://registry.npmjs.org/rgb/-/rgb-0.1.0.tgz",
 +      "integrity": "sha1-vieykej+/+rBvZlylyG/pA/AN7U=",
 +      "dev": true
 +    },
 +    "rgb-hex": {
 +      "version": "2.1.0",
 +      "resolved": "https://registry.npmjs.org/rgb-hex/-/rgb-hex-2.1.0.tgz",
 +      "integrity": "sha1-x3PF/iJoolV42SU5qCp6XOU77aY=",
 +      "dev": true
 +    },
 +    "rimraf": {
 +      "version": "2.6.2",
 +      "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz",
 +      "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==",
 +      "dev": true,
 +      "requires": {
 +        "glob": "^7.0.5"
 +      }
 +    },
 +    "ripemd160": {
 +      "version": "2.0.2",
 +      "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
 +      "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
 +      "dev": true,
 +      "requires": {
 +        "hash-base": "^3.0.0",
 +        "inherits": "^2.0.1"
 +      }
 +    },
 +    "run-queue": {
 +      "version": "1.0.3",
 +      "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz",
 +      "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=",
 +      "dev": true,
 +      "requires": {
 +        "aproba": "^1.1.1"
 +      }
 +    },
 +    "safe-buffer": {
 +      "version": "5.1.2",
 +      "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
 +      "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
 +      "dev": true
 +    },
 +    "safe-regex": {
 +      "version": "1.1.0",
 +      "resolved": "http://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
 +      "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
 +      "dev": true,
 +      "requires": {
 +        "ret": "~0.1.10"
 +      }
 +    },
 +    "safer-buffer": {
 +      "version": "2.1.2",
 +      "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
 +      "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
 +      "dev": true
 +    },
 +    "schema-utils": {
 +      "version": "0.4.7",
 +      "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz",
 +      "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==",
 +      "dev": true,
 +      "requires": {
 +        "ajv": "^6.1.0",
 +        "ajv-keywords": "^3.1.0"
 +      }
 +    },
 +    "scrolldir": {
 +      "version": "1.4.0",
 +      "resolved": "https://registry.npmjs.org/scrolldir/-/scrolldir-1.4.0.tgz",
 +      "integrity": "sha512-zgX9DshRBasLnE2Pim9I5TYV/vXpoQioky2RCdUJam+tPbg/82usZi3hWlc7JvE9fAtMNKD+5l60k98YgswpAg==",
 +      "dev": true
 +    },
 +    "select": {
 +      "version": "1.1.2",
 +      "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz",
 +      "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=",
 +      "dev": true
 +    },
 +    "semver": {
 +      "version": "5.6.0",
 +      "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz",
 +      "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==",
 +      "dev": true
 +    },
 +    "semver-diff": {
 +      "version": "2.1.0",
 +      "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz",
 +      "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=",
 +      "dev": true,
 +      "requires": {
 +        "semver": "^5.0.3"
 +      }
 +    },
 +    "serialize-javascript": {
 +      "version": "1.5.0",
 +      "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.5.0.tgz",
 +      "integrity": "sha512-Ga8c8NjAAp46Br4+0oZ2WxJCwIzwP60Gq1YPgU+39PiTVxyed/iKE/zyZI6+UlVYH5Q4PaQdHhcegIFPZTUfoQ==",
 +      "dev": true
 +    },
 +    "set-blocking": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
 +      "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
 +      "dev": true
 +    },
 +    "set-value": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz",
 +      "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==",
 +      "dev": true,
 +      "requires": {
 +        "extend-shallow": "^2.0.1",
 +        "is-extendable": "^0.1.1",
 +        "is-plain-object": "^2.0.3",
 +        "split-string": "^3.0.1"
 +      },
 +      "dependencies": {
 +        "extend-shallow": {
 +          "version": "2.0.1",
 +          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
 +          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
 +          "dev": true,
 +          "requires": {
 +            "is-extendable": "^0.1.0"
 +          }
 +        }
 +      }
 +    },
 +    "setimmediate": {
 +      "version": "1.0.5",
 +      "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
 +      "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=",
 +      "dev": true
 +    },
 +    "sha.js": {
 +      "version": "2.4.11",
 +      "resolved": "http://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
 +      "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
 +      "dev": true,
 +      "requires": {
 +        "inherits": "^2.0.1",
 +        "safe-buffer": "^5.0.1"
 +      }
 +    },
 +    "shebang-command": {
 +      "version": "1.2.0",
 +      "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
 +      "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
 +      "dev": true,
 +      "requires": {
 +        "shebang-regex": "^1.0.0"
 +      }
 +    },
 +    "shebang-regex": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
 +      "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
 +      "dev": true
 +    },
 +    "signal-exit": {
 +      "version": "3.0.2",
 +      "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
 +      "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=",
 +      "dev": true
 +    },
 +    "simple-swizzle": {
 +      "version": "0.2.2",
 +      "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
 +      "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=",
 +      "dev": true,
 +      "requires": {
 +        "is-arrayish": "^0.3.1"
 +      },
 +      "dependencies": {
 +        "is-arrayish": {
 +          "version": "0.3.2",
 +          "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
 +          "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "snapdragon": {
 +      "version": "0.8.2",
 +      "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
 +      "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
 +      "dev": true,
 +      "requires": {
 +        "base": "^0.11.1",
 +        "debug": "^2.2.0",
 +        "define-property": "^0.2.5",
 +        "extend-shallow": "^2.0.1",
 +        "map-cache": "^0.2.2",
 +        "source-map": "^0.5.6",
 +        "source-map-resolve": "^0.5.0",
 +        "use": "^3.1.0"
 +      },
 +      "dependencies": {
 +        "define-property": {
 +          "version": "0.2.5",
 +          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
 +          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
 +          "dev": true,
 +          "requires": {
 +            "is-descriptor": "^0.1.0"
 +          }
 +        },
 +        "extend-shallow": {
 +          "version": "2.0.1",
 +          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
 +          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
 +          "dev": true,
 +          "requires": {
 +            "is-extendable": "^0.1.0"
 +          }
 +        }
 +      }
 +    },
 +    "snapdragon-node": {
 +      "version": "2.1.1",
 +      "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
 +      "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
 +      "dev": true,
 +      "requires": {
 +        "define-property": "^1.0.0",
 +        "isobject": "^3.0.0",
 +        "snapdragon-util": "^3.0.1"
 +      },
 +      "dependencies": {
 +        "define-property": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
 +          "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
 +          "dev": true,
 +          "requires": {
 +            "is-descriptor": "^1.0.0"
 +          }
 +        },
 +        "is-accessor-descriptor": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
 +          "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
 +          "dev": true,
 +          "requires": {
 +            "kind-of": "^6.0.0"
 +          }
 +        },
 +        "is-data-descriptor": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
 +          "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
 +          "dev": true,
 +          "requires": {
 +            "kind-of": "^6.0.0"
 +          }
 +        },
 +        "is-descriptor": {
 +          "version": "1.0.2",
 +          "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
 +          "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
 +          "dev": true,
 +          "requires": {
 +            "is-accessor-descriptor": "^1.0.0",
 +            "is-data-descriptor": "^1.0.0",
 +            "kind-of": "^6.0.2"
 +          }
 +        }
 +      }
 +    },
 +    "snapdragon-util": {
 +      "version": "3.0.1",
 +      "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
 +      "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
 +      "dev": true,
 +      "requires": {
 +        "kind-of": "^3.2.0"
 +      },
 +      "dependencies": {
 +        "kind-of": {
 +          "version": "3.2.2",
 +          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
 +          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
 +          "dev": true,
 +          "requires": {
 +            "is-buffer": "^1.1.5"
 +          }
 +        }
 +      }
 +    },
 +    "source-list-map": {
 +      "version": "2.0.1",
 +      "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz",
 +      "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==",
 +      "dev": true
 +    },
 +    "source-map": {
 +      "version": "0.5.7",
 +      "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
 +      "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
 +      "dev": true
 +    },
 +    "source-map-resolve": {
 +      "version": "0.5.2",
 +      "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz",
 +      "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==",
 +      "dev": true,
 +      "requires": {
 +        "atob": "^2.1.1",
 +        "decode-uri-component": "^0.2.0",
 +        "resolve-url": "^0.2.1",
 +        "source-map-url": "^0.4.0",
 +        "urix": "^0.1.0"
 +      }
 +    },
 +    "source-map-url": {
 +      "version": "0.4.0",
 +      "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz",
 +      "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=",
 +      "dev": true
 +    },
 +    "spdx-correct": {
 +      "version": "3.0.2",
 +      "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.2.tgz",
 +      "integrity": "sha512-q9hedtzyXHr5S0A1vEPoK/7l8NpfkFYTq6iCY+Pno2ZbdZR6WexZFtqeVGkGxW3TEJMN914Z55EnAGMmenlIQQ==",
 +      "dev": true,
 +      "requires": {
 +        "spdx-expression-parse": "^3.0.0",
 +        "spdx-license-ids": "^3.0.0"
 +      }
 +    },
 +    "spdx-exceptions": {
 +      "version": "2.2.0",
 +      "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz",
 +      "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==",
 +      "dev": true
 +    },
 +    "spdx-expression-parse": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz",
 +      "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==",
 +      "dev": true,
 +      "requires": {
 +        "spdx-exceptions": "^2.1.0",
 +        "spdx-license-ids": "^3.0.0"
 +      }
 +    },
 +    "spdx-license-ids": {
 +      "version": "3.0.2",
 +      "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.2.tgz",
 +      "integrity": "sha512-qky9CVt0lVIECkEsYbNILVnPvycuEBkXoMFLRWsREkomQLevYhtRKC+R91a5TOAQ3bCMjikRwhyaRqj1VYatYg==",
 +      "dev": true
 +    },
 +    "split-string": {
 +      "version": "3.1.0",
 +      "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
 +      "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
 +      "dev": true,
 +      "requires": {
 +        "extend-shallow": "^3.0.0"
 +      }
 +    },
 +    "sprintf-js": {
 +      "version": "1.0.3",
 +      "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
 +      "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
 +      "dev": true
 +    },
 +    "sshpk": {
 +      "version": "1.15.2",
 +      "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.15.2.tgz",
 +      "integrity": "sha512-Ra/OXQtuh0/enyl4ETZAfTaeksa6BXks5ZcjpSUNrjBr0DvrJKX+1fsKDPpT9TBXgHAFsa4510aNVgI8g/+SzA==",
 +      "dev": true,
 +      "requires": {
 +        "asn1": "~0.2.3",
 +        "assert-plus": "^1.0.0",
 +        "bcrypt-pbkdf": "^1.0.0",
 +        "dashdash": "^1.12.0",
 +        "ecc-jsbn": "~0.1.1",
 +        "getpass": "^0.1.1",
 +        "jsbn": "~0.1.0",
 +        "safer-buffer": "^2.0.2",
 +        "tweetnacl": "~0.14.0"
 +      }
 +    },
 +    "ssri": {
 +      "version": "5.3.0",
 +      "resolved": "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz",
 +      "integrity": "sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==",
 +      "dev": true,
 +      "requires": {
 +        "safe-buffer": "^5.1.1"
 +      }
 +    },
 +    "stack-utils": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz",
 +      "integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==",
 +      "dev": true
 +    },
 +    "static-extend": {
 +      "version": "0.1.2",
 +      "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz",
 +      "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=",
 +      "dev": true,
 +      "requires": {
 +        "define-property": "^0.2.5",
 +        "object-copy": "^0.1.0"
 +      },
 +      "dependencies": {
 +        "define-property": {
 +          "version": "0.2.5",
 +          "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
 +          "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
 +          "dev": true,
 +          "requires": {
 +            "is-descriptor": "^0.1.0"
 +          }
 +        }
 +      }
 +    },
 +    "stream-browserify": {
 +      "version": "2.0.1",
 +      "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz",
 +      "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=",
 +      "dev": true,
 +      "requires": {
 +        "inherits": "~2.0.1",
 +        "readable-stream": "^2.0.2"
 +      }
 +    },
 +    "stream-each": {
 +      "version": "1.2.3",
 +      "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz",
 +      "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==",
 +      "dev": true,
 +      "requires": {
 +        "end-of-stream": "^1.1.0",
 +        "stream-shift": "^1.0.0"
 +      }
 +    },
 +    "stream-http": {
 +      "version": "2.8.3",
 +      "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz",
 +      "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==",
 +      "dev": true,
 +      "requires": {
 +        "builtin-status-codes": "^3.0.0",
 +        "inherits": "^2.0.1",
 +        "readable-stream": "^2.3.6",
 +        "to-arraybuffer": "^1.0.0",
 +        "xtend": "^4.0.0"
 +      }
 +    },
 +    "stream-shift": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz",
 +      "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=",
 +      "dev": true
 +    },
 +    "string-width": {
 +      "version": "2.1.1",
 +      "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
 +      "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
 +      "dev": true,
 +      "requires": {
 +        "is-fullwidth-code-point": "^2.0.0",
 +        "strip-ansi": "^4.0.0"
 +      }
 +    },
 +    "string_decoder": {
 +      "version": "1.1.1",
 +      "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
 +      "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
 +      "dev": true,
 +      "requires": {
 +        "safe-buffer": "~5.1.0"
 +      }
 +    },
 +    "strip-ansi": {
 +      "version": "4.0.0",
 +      "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
 +      "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
 +      "dev": true,
 +      "requires": {
 +        "ansi-regex": "^3.0.0"
 +      }
 +    },
 +    "strip-bom": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
 +      "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
 +      "dev": true
 +    },
 +    "strip-eof": {
 +      "version": "1.0.0",
 +      "resolved": "http://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
 +      "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
 +      "dev": true
 +    },
 +    "strip-indent": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz",
 +      "integrity": "sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g=",
 +      "dev": true
 +    },
 +    "strip-json-comments": {
 +      "version": "2.0.1",
 +      "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz",
 +      "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=",
 +      "dev": true
 +    },
 +    "supports-color": {
 +      "version": "5.5.0",
 +      "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
 +      "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
 +      "dev": true,
 +      "requires": {
 +        "has-flag": "^3.0.0"
 +      }
 +    },
 +    "tachyons": {
 +      "version": "4.11.1",
 +      "resolved": "https://registry.npmjs.org/tachyons/-/tachyons-4.11.1.tgz",
 +      "integrity": "sha512-n5zIZ8i8kZ8vz05vX1BdvkP8b9ufsMeSRmdqTuUtz5rlNxr03nntiZMc/HTADIsPYZj/wZJDJglxV0/yvvaiZA==",
 +      "dev": true
 +    },
 +    "tapable": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.0.tgz",
 +      "integrity": "sha512-IlqtmLVaZA2qab8epUXbVWRn3aB1imbDMJtjB3nu4X0NqPkcY/JH9ZtCBWKHWPxs8Svi9tyo8w2dBoi07qZbBA==",
 +      "dev": true
 +    },
 +    "term-size": {
 +      "version": "1.2.0",
 +      "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz",
 +      "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=",
 +      "dev": true,
 +      "requires": {
 +        "execa": "^0.7.0"
 +      }
 +    },
 +    "text-table": {
 +      "version": "0.2.0",
 +      "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
 +      "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=",
 +      "dev": true
 +    },
 +    "through": {
 +      "version": "2.3.8",
 +      "resolved": "http://registry.npmjs.org/through/-/through-2.3.8.tgz",
 +      "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
 +      "dev": true
 +    },
 +    "through2": {
 +      "version": "2.0.5",
 +      "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
 +      "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
 +      "dev": true,
 +      "requires": {
 +        "readable-stream": "~2.3.6",
 +        "xtend": "~4.0.1"
 +      }
 +    },
 +    "timed-out": {
 +      "version": "4.0.1",
 +      "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz",
 +      "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=",
 +      "dev": true
 +    },
 +    "timers-browserify": {
 +      "version": "2.0.10",
 +      "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz",
 +      "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==",
 +      "dev": true,
 +      "requires": {
 +        "setimmediate": "^1.0.4"
 +      }
 +    },
 +    "tiny-emitter": {
 +      "version": "2.0.2",
 +      "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.0.2.tgz",
 +      "integrity": "sha512-2NM0auVBGft5tee/OxP4PI3d8WItkDM+fPnaRAVo6xTDI2knbz9eC5ArWGqtGlYqiH3RU5yMpdyTTO7MguC4ow==",
 +      "dev": true
 +    },
 +    "titleize": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/titleize/-/titleize-1.0.1.tgz",
 +      "integrity": "sha512-rUwGDruKq1gX+FFHbTl5qjI7teVO7eOe+C8IcQ7QT+1BK3eEUXJqbZcBOeaRP4FwSC/C1A5jDoIVta0nIQ9yew==",
 +      "dev": true
 +    },
 +    "to-arraybuffer": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz",
 +      "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=",
 +      "dev": true
 +    },
 +    "to-factory": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/to-factory/-/to-factory-1.0.0.tgz",
 +      "integrity": "sha1-hzivi9lxIK0dQEeXKtpVY7+UebE=",
 +      "dev": true
 +    },
 +    "to-object-path": {
 +      "version": "0.3.0",
 +      "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz",
 +      "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=",
 +      "dev": true,
 +      "requires": {
 +        "kind-of": "^3.0.2"
 +      },
 +      "dependencies": {
 +        "kind-of": {
 +          "version": "3.2.2",
 +          "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
 +          "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
 +          "dev": true,
 +          "requires": {
 +            "is-buffer": "^1.1.5"
 +          }
 +        }
 +      }
 +    },
 +    "to-regex": {
 +      "version": "3.0.2",
 +      "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
 +      "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
 +      "dev": true,
 +      "requires": {
 +        "define-property": "^2.0.2",
 +        "extend-shallow": "^3.0.2",
 +        "regex-not": "^1.0.2",
 +        "safe-regex": "^1.1.0"
 +      }
 +    },
 +    "to-regex-range": {
 +      "version": "2.1.1",
 +      "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz",
 +      "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=",
 +      "dev": true,
 +      "requires": {
 +        "is-number": "^3.0.0",
 +        "repeat-string": "^1.6.1"
 +      }
 +    },
 +    "tough-cookie": {
 +      "version": "2.4.3",
 +      "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz",
 +      "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==",
 +      "dev": true,
 +      "requires": {
 +        "psl": "^1.1.24",
 +        "punycode": "^1.4.1"
 +      },
 +      "dependencies": {
 +        "punycode": {
 +          "version": "1.4.1",
 +          "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
 +          "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "trim-newlines": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-2.0.0.tgz",
 +      "integrity": "sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA=",
 +      "dev": true
 +    },
 +    "tslib": {
 +      "version": "1.9.3",
 +      "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz",
 +      "integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==",
 +      "dev": true
 +    },
 +    "tty-browserify": {
 +      "version": "0.0.0",
 +      "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz",
 +      "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=",
 +      "dev": true
 +    },
 +    "tunnel-agent": {
 +      "version": "0.6.0",
 +      "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
 +      "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
 +      "dev": true,
 +      "requires": {
 +        "safe-buffer": "^5.0.1"
 +      }
 +    },
 +    "tweetnacl": {
 +      "version": "0.14.5",
 +      "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
 +      "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
 +      "dev": true
 +    },
 +    "typedarray": {
 +      "version": "0.0.6",
 +      "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
 +      "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
 +      "dev": true
 +    },
 +    "typeface-muli": {
 +      "version": "0.0.54",
 +      "resolved": "https://registry.npmjs.org/typeface-muli/-/typeface-muli-0.0.54.tgz",
 +      "integrity": "sha512-vQJSDxrRTK0acRAEjBLV8bNoOeG0cX1xe0uI49sb+nxOknBFUoI6oE4VD/QkaIS1p4DDKr0QOGKb8eMQRSufpw==",
 +      "dev": true
 +    },
 +    "uglify-es": {
 +      "version": "3.3.9",
 +      "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz",
 +      "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==",
 +      "dev": true,
 +      "requires": {
 +        "commander": "~2.13.0",
 +        "source-map": "~0.6.1"
 +      },
 +      "dependencies": {
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "uglifyjs-webpack-plugin": {
 +      "version": "1.3.0",
 +      "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz",
 +      "integrity": "sha512-ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==",
 +      "dev": true,
 +      "requires": {
 +        "cacache": "^10.0.4",
 +        "find-cache-dir": "^1.0.0",
 +        "schema-utils": "^0.4.5",
 +        "serialize-javascript": "^1.4.0",
 +        "source-map": "^0.6.1",
 +        "uglify-es": "^3.3.4",
 +        "webpack-sources": "^1.1.0",
 +        "worker-farm": "^1.5.2"
 +      },
 +      "dependencies": {
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "union-value": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz",
 +      "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=",
 +      "dev": true,
 +      "requires": {
 +        "arr-union": "^3.1.0",
 +        "get-value": "^2.0.6",
 +        "is-extendable": "^0.1.1",
 +        "set-value": "^0.4.3"
 +      },
 +      "dependencies": {
 +        "extend-shallow": {
 +          "version": "2.0.1",
 +          "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
 +          "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
 +          "dev": true,
 +          "requires": {
 +            "is-extendable": "^0.1.0"
 +          }
 +        },
 +        "set-value": {
 +          "version": "0.4.3",
 +          "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz",
 +          "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=",
 +          "dev": true,
 +          "requires": {
 +            "extend-shallow": "^2.0.1",
 +            "is-extendable": "^0.1.1",
 +            "is-plain-object": "^2.0.1",
 +            "to-object-path": "^0.3.0"
 +          }
 +        }
 +      }
 +    },
 +    "uniq": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz",
 +      "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=",
 +      "dev": true
 +    },
 +    "unique-filename": {
 +      "version": "1.1.1",
 +      "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
 +      "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
 +      "dev": true,
 +      "requires": {
 +        "unique-slug": "^2.0.0"
 +      }
 +    },
 +    "unique-slug": {
 +      "version": "2.0.1",
 +      "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.1.tgz",
 +      "integrity": "sha512-n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg==",
 +      "dev": true,
 +      "requires": {
 +        "imurmurhash": "^0.1.4"
 +      }
 +    },
 +    "unique-string": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz",
 +      "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=",
 +      "dev": true,
 +      "requires": {
 +        "crypto-random-string": "^1.0.0"
 +      }
 +    },
 +    "units-css": {
 +      "version": "0.4.0",
 +      "resolved": "https://registry.npmjs.org/units-css/-/units-css-0.4.0.tgz",
 +      "integrity": "sha1-1iKGU6UZg9fBb/KPi53Dsf/tOgc=",
 +      "dev": true,
 +      "requires": {
 +        "isnumeric": "^0.2.0",
 +        "viewport-dimensions": "^0.2.0"
 +      }
 +    },
 +    "unset-value": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz",
 +      "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=",
 +      "dev": true,
 +      "requires": {
 +        "has-value": "^0.3.1",
 +        "isobject": "^3.0.0"
 +      },
 +      "dependencies": {
 +        "has-value": {
 +          "version": "0.3.1",
 +          "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz",
 +          "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=",
 +          "dev": true,
 +          "requires": {
 +            "get-value": "^2.0.3",
 +            "has-values": "^0.1.4",
 +            "isobject": "^2.0.0"
 +          },
 +          "dependencies": {
 +            "isobject": {
 +              "version": "2.1.0",
 +              "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
 +              "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
 +              "dev": true,
 +              "requires": {
 +                "isarray": "1.0.0"
 +              }
 +            }
 +          }
 +        },
 +        "has-values": {
 +          "version": "0.1.4",
 +          "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz",
 +          "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "unzip-response": {
 +      "version": "2.0.1",
 +      "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz",
 +      "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=",
 +      "dev": true
 +    },
 +    "upath": {
 +      "version": "1.1.0",
 +      "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz",
 +      "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==",
 +      "dev": true
 +    },
 +    "update-notifier": {
 +      "version": "2.5.0",
 +      "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz",
 +      "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==",
 +      "dev": true,
 +      "requires": {
 +        "boxen": "^1.2.1",
 +        "chalk": "^2.0.1",
 +        "configstore": "^3.0.0",
 +        "import-lazy": "^2.1.0",
 +        "is-ci": "^1.0.10",
 +        "is-installed-globally": "^0.1.0",
 +        "is-npm": "^1.0.0",
 +        "latest-version": "^3.0.0",
 +        "semver-diff": "^2.0.0",
 +        "xdg-basedir": "^3.0.0"
 +      }
 +    },
 +    "uri-js": {
 +      "version": "4.2.2",
 +      "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
 +      "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
 +      "dev": true,
 +      "requires": {
 +        "punycode": "^2.1.0"
 +      }
 +    },
 +    "urix": {
 +      "version": "0.1.0",
 +      "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz",
 +      "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=",
 +      "dev": true
 +    },
 +    "url": {
 +      "version": "0.11.0",
 +      "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz",
 +      "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=",
 +      "dev": true,
 +      "requires": {
 +        "punycode": "1.3.2",
 +        "querystring": "0.2.0"
 +      },
 +      "dependencies": {
 +        "punycode": {
 +          "version": "1.3.2",
 +          "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz",
 +          "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "url-parse-lax": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz",
 +      "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=",
 +      "dev": true,
 +      "requires": {
 +        "prepend-http": "^1.0.1"
 +      }
 +    },
 +    "use": {
 +      "version": "3.1.1",
 +      "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
 +      "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
 +      "dev": true
 +    },
 +    "util": {
 +      "version": "0.10.4",
 +      "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz",
 +      "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==",
 +      "dev": true,
 +      "requires": {
 +        "inherits": "2.0.3"
 +      }
 +    },
 +    "util-deprecate": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
 +      "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
 +      "dev": true
 +    },
 +    "uuid": {
 +      "version": "3.3.2",
 +      "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz",
 +      "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==",
 +      "dev": true
 +    },
 +    "v8-compile-cache": {
 +      "version": "2.0.2",
 +      "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz",
 +      "integrity": "sha512-1wFuMUIM16MDJRCrpbpuEPTUGmM5QMUg0cr3KFwra2XgOgFcPGDQHDh3CszSCD2Zewc/dh/pamNEW8CbfDebUw==",
 +      "dev": true
 +    },
 +    "validate-npm-package-license": {
 +      "version": "3.0.4",
 +      "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
 +      "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
 +      "dev": true,
 +      "requires": {
 +        "spdx-correct": "^3.0.0",
 +        "spdx-expression-parse": "^3.0.0"
 +      }
 +    },
 +    "verror": {
 +      "version": "1.10.0",
 +      "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
 +      "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
 +      "dev": true,
 +      "requires": {
 +        "assert-plus": "^1.0.0",
 +        "core-util-is": "1.0.2",
 +        "extsprintf": "^1.2.0"
 +      }
 +    },
 +    "viewport-dimensions": {
 +      "version": "0.2.0",
 +      "resolved": "https://registry.npmjs.org/viewport-dimensions/-/viewport-dimensions-0.2.0.tgz",
 +      "integrity": "sha1-3nQHR9tTh/0XJfUXXpG6x2r982w=",
 +      "dev": true
 +    },
 +    "vm-browserify": {
 +      "version": "0.0.4",
 +      "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz",
 +      "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=",
 +      "dev": true,
 +      "requires": {
 +        "indexof": "0.0.1"
 +      }
 +    },
 +    "watchpack": {
 +      "version": "1.6.0",
 +      "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz",
 +      "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==",
 +      "dev": true,
 +      "requires": {
 +        "chokidar": "^2.0.2",
 +        "graceful-fs": "^4.1.2",
 +        "neo-async": "^2.5.0"
 +      }
 +    },
 +    "wcwidth": {
 +      "version": "1.0.1",
 +      "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
 +      "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=",
 +      "dev": true,
 +      "requires": {
 +        "defaults": "^1.0.3"
 +      }
 +    },
 +    "webpack": {
 +      "version": "4.25.1",
 +      "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.25.1.tgz",
 +      "integrity": "sha512-T0GU/3NRtO4tMfNzsvpdhUr8HnzA4LTdP2zd+e5zd6CdOH5vNKHnAlO+DvzccfhPdzqRrALOFcjYxx7K5DWmvA==",
 +      "dev": true,
 +      "requires": {
 +        "@webassemblyjs/ast": "1.7.11",
 +        "@webassemblyjs/helper-module-context": "1.7.11",
 +        "@webassemblyjs/wasm-edit": "1.7.11",
 +        "@webassemblyjs/wasm-parser": "1.7.11",
 +        "acorn": "^5.6.2",
 +        "acorn-dynamic-import": "^3.0.0",
 +        "ajv": "^6.1.0",
 +        "ajv-keywords": "^3.1.0",
 +        "chrome-trace-event": "^1.0.0",
 +        "enhanced-resolve": "^4.1.0",
 +        "eslint-scope": "^4.0.0",
 +        "json-parse-better-errors": "^1.0.2",
 +        "loader-runner": "^2.3.0",
 +        "loader-utils": "^1.1.0",
 +        "memory-fs": "~0.4.1",
 +        "micromatch": "^3.1.8",
 +        "mkdirp": "~0.5.0",
 +        "neo-async": "^2.5.0",
 +        "node-libs-browser": "^2.0.0",
 +        "schema-utils": "^0.4.4",
 +        "tapable": "^1.1.0",
 +        "uglifyjs-webpack-plugin": "^1.2.4",
 +        "watchpack": "^1.5.0",
 +        "webpack-sources": "^1.3.0"
 +      }
 +    },
 +    "webpack-command": {
 +      "version": "0.4.2",
 +      "resolved": "https://registry.npmjs.org/webpack-command/-/webpack-command-0.4.2.tgz",
 +      "integrity": "sha512-2JZRlV+eT2nsw0DGDS/F4ndv0e/QVkyYj4/1fagp9DbjRagQ02zuVzELp/QF5mrCESKKvnXiBQoaBJUOjAMp8w==",
 +      "dev": true,
 +      "requires": {
 +        "@webpack-contrib/config-loader": "^1.2.0",
 +        "@webpack-contrib/schema-utils": "^1.0.0-beta.0",
 +        "camelcase": "^5.0.0",
 +        "chalk": "^2.3.2",
 +        "debug": "^3.1.0",
 +        "decamelize": "^2.0.0",
 +        "enhanced-resolve": "^4.0.0",
 +        "import-local": "^1.0.0",
 +        "isobject": "^3.0.1",
 +        "loader-utils": "^1.1.0",
 +        "log-symbols": "^2.2.0",
 +        "loud-rejection": "^1.6.0",
 +        "meant": "^1.0.1",
 +        "meow": "^5.0.0",
 +        "merge-options": "^1.0.0",
 +        "object.values": "^1.0.4",
 +        "opn": "^5.3.0",
 +        "ora": "^2.1.0",
 +        "plur": "^3.0.0",
 +        "pretty-bytes": "^5.0.0",
 +        "strip-ansi": "^4.0.0",
 +        "text-table": "^0.2.0",
 +        "titleize": "^1.0.1",
 +        "update-notifier": "^2.3.0",
 +        "v8-compile-cache": "^2.0.0",
 +        "webpack-log": "^1.1.2",
 +        "wordwrap": "^1.0.0"
 +      },
 +      "dependencies": {
 +        "debug": {
 +          "version": "3.2.6",
 +          "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
 +          "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
 +          "dev": true,
 +          "requires": {
 +            "ms": "^2.1.1"
 +          }
 +        },
 +        "ms": {
 +          "version": "2.1.1",
 +          "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
 +          "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "webpack-log": {
 +      "version": "1.2.0",
 +      "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-1.2.0.tgz",
 +      "integrity": "sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==",
 +      "dev": true,
 +      "requires": {
 +        "chalk": "^2.1.0",
 +        "log-symbols": "^2.1.0",
 +        "loglevelnext": "^1.0.1",
 +        "uuid": "^3.1.0"
 +      }
 +    },
 +    "webpack-sources": {
 +      "version": "1.3.0",
 +      "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.3.0.tgz",
 +      "integrity": "sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA==",
 +      "dev": true,
 +      "requires": {
 +        "source-list-map": "^2.0.0",
 +        "source-map": "~0.6.1"
 +      },
 +      "dependencies": {
 +        "source-map": {
 +          "version": "0.6.1",
 +          "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
 +          "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "which": {
 +      "version": "1.3.1",
 +      "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
 +      "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
 +      "dev": true,
 +      "requires": {
 +        "isexe": "^2.0.0"
 +      }
 +    },
 +    "which-module": {
 +      "version": "2.0.0",
 +      "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
 +      "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
 +      "dev": true
 +    },
 +    "widest-line": {
 +      "version": "2.0.1",
 +      "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz",
 +      "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==",
 +      "dev": true,
 +      "requires": {
 +        "string-width": "^2.1.1"
 +      }
 +    },
 +    "wordwrap": {
 +      "version": "1.0.0",
 +      "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
 +      "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=",
 +      "dev": true
 +    },
 +    "worker-farm": {
 +      "version": "1.6.0",
 +      "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.6.0.tgz",
 +      "integrity": "sha512-6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==",
 +      "dev": true,
 +      "requires": {
 +        "errno": "~0.1.7"
 +      }
 +    },
 +    "wrap-ansi": {
 +      "version": "2.1.0",
 +      "resolved": "http://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz",
 +      "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=",
 +      "dev": true,
 +      "requires": {
 +        "string-width": "^1.0.1",
 +        "strip-ansi": "^3.0.1"
 +      },
 +      "dependencies": {
 +        "ansi-regex": {
 +          "version": "2.1.1",
 +          "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
 +          "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
 +          "dev": true
 +        },
 +        "is-fullwidth-code-point": {
 +          "version": "1.0.0",
 +          "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
 +          "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
 +          "dev": true,
 +          "requires": {
 +            "number-is-nan": "^1.0.0"
 +          }
 +        },
 +        "string-width": {
 +          "version": "1.0.2",
 +          "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
 +          "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
 +          "dev": true,
 +          "requires": {
 +            "code-point-at": "^1.0.0",
 +            "is-fullwidth-code-point": "^1.0.0",
 +            "strip-ansi": "^3.0.0"
 +          }
 +        },
 +        "strip-ansi": {
 +          "version": "3.0.1",
-       "resolved": "http://registry.npmjs.org/yargs/-/yargs-1.2.6.tgz",
++          "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
 +          "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
 +          "dev": true,
 +          "requires": {
 +            "ansi-regex": "^2.0.0"
 +          }
 +        }
 +      }
 +    },
 +    "wrappy": {
 +      "version": "1.0.2",
 +      "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
 +      "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
 +      "dev": true
 +    },
 +    "write-file-atomic": {
 +      "version": "2.3.0",
 +      "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz",
 +      "integrity": "sha512-xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA==",
 +      "dev": true,
 +      "requires": {
 +        "graceful-fs": "^4.1.11",
 +        "imurmurhash": "^0.1.4",
 +        "signal-exit": "^3.0.2"
 +      }
 +    },
 +    "xdg-basedir": {
 +      "version": "3.0.0",
 +      "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz",
 +      "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=",
 +      "dev": true
 +    },
 +    "xregexp": {
 +      "version": "4.0.0",
 +      "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz",
 +      "integrity": "sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==",
 +      "dev": true
 +    },
 +    "xtend": {
 +      "version": "4.0.1",
 +      "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz",
 +      "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=",
 +      "dev": true
 +    },
 +    "y18n": {
 +      "version": "4.0.0",
 +      "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
 +      "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
 +      "dev": true
 +    },
 +    "yallist": {
 +      "version": "2.1.2",
 +      "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
 +      "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=",
 +      "dev": true
 +    },
 +    "yargs": {
 +      "version": "1.2.6",
++      "resolved": "https://registry.npmjs.org/yargs/-/yargs-1.2.6.tgz",
 +      "integrity": "sha1-nHtKgv1dWVsr8Xq23MQxNUMv40s=",
 +      "dev": true,
 +      "requires": {
 +        "minimist": "^0.1.0"
 +      },
 +      "dependencies": {
 +        "minimist": {
 +          "version": "0.1.0",
 +          "resolved": "http://registry.npmjs.org/minimist/-/minimist-0.1.0.tgz",
 +          "integrity": "sha1-md9lelJXTCHJBXSX33QnkLK0wN4=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "yargs-parser": {
 +      "version": "10.1.0",
 +      "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz",
 +      "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==",
 +      "dev": true,
 +      "requires": {
 +        "camelcase": "^4.1.0"
 +      },
 +      "dependencies": {
 +        "camelcase": {
 +          "version": "4.1.0",
 +          "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
 +          "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=",
 +          "dev": true
 +        }
 +      }
 +    },
 +    "zepto": {
 +      "version": "1.2.0",
 +      "resolved": "https://registry.npmjs.org/zepto/-/zepto-1.2.0.tgz",
 +      "integrity": "sha1-4Se9nmb9hGvl6rSME5SIL3wOT5g=",
 +      "dev": true
 +    }
 +  }
 +}