Merge commit '9f1265fde4b9ef186148337c99f08601633b6056'
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 27 Nov 2020 08:30:05 +0000 (09:30 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 27 Nov 2020 08:30:05 +0000 (09:30 +0100)
20 files changed:
1  2 
docs/config.toml
docs/content/en/content-management/multilingual.md
docs/content/en/content-management/page-bundles.md
docs/content/en/functions/with.md
docs/content/en/getting-started/configuration.md
docs/content/en/getting-started/external-learning-resources/index.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-modules/use-modules.md
docs/content/en/hugo-pipes/js.md
docs/content/en/hugo-pipes/resource-from-string.md
docs/content/en/news/0.78.0-relnotes/featured.png
docs/content/en/news/0.78.0-relnotes/index.md
docs/content/en/news/0.78.1-relnotes/index.md
docs/content/en/templates/404.md
docs/content/en/tools/starter-kits.md
docs/netlify.toml
docs/resources/_gen/images/news/0.78.0-relnotes/featured_hu16cc5f543b4302736ecbd476dcae86cf_47074_480x0_resize_catmullrom_2.png
docs/resources/_gen/images/news/0.78.0-relnotes/featured_hu16cc5f543b4302736ecbd476dcae86cf_47074_640x0_resize_catmullrom_2.png
docs/static/images/site-hierarchy.svg

index 77e8770bb86fbedb0103fadedacffa523909d2e2,0000000000000000000000000000000000000000..efa1b0573560a20cf96142d389fb1fbc4b4485c0
mode 100644,000000..100644
--- /dev/null
@@@ -1,71 -1,0 +1,73 @@@
 +baseURL = "https://gohugo.io/"
 +paginate =  100
 +defaultContentLanguage = "en"
 +enableEmoji = true
 +# Set the unicode character used for the "return" link in page footnotes.
 +footnotereturnlinkcontents = "↩"
 +languageCode = "en-us"
 +title = "Hugo"
 +
++ ignoreErrors = ["error-remote-getjson"]
++
 +
 +googleAnalytics = "UA-7131036-4"
 +
 +pluralizeListTitles = false
 +
 +# We do redirects via Netlify's _redirects file, generated by Hugo (see "outputs" below).
 +disableAliases = true
 +
 +[module]
 +  [module.hugoVersion]
 +    min = "0.56.0"
 +  [[module.imports]]
 +    path = "github.com/gohugoio/gohugoioTheme"
 +
 +[outputs]
 +home = [ "HTML", "RSS", "REDIR", "HEADERS" ]
 +section = [ "HTML", "RSS"]
 +
 +[mediaTypes]
 +[mediaTypes."text/netlify"]
 +delimiter = ""
 +
 +[outputFormats]
 +[outputFormats.REDIR]
 +mediatype = "text/netlify"
 +baseName = "_redirects"
 +isPlainText = true
 +notAlternative = true
 +[outputFormats.HEADERS]
 +mediatype = "text/netlify"
 +baseName = "_headers"
 +isPlainText = true
 +notAlternative = true
 +
 +[related]
 +
 +threshold = 80
 +includeNewer = true
 +toLower = false
 +
 +[[related.indices]]
 +name = "keywords"
 +weight = 100
 +[[related.indices]]
 +name  = "date"
 +weight = 10
 +pattern = "2006"
 +
 +[social]
 +twitter = "GoHugoIO"
 +
 +
 +[imaging]
 +# See https://github.com/disintegration/imaging
 +# CatmullRom is a sharp bicubic filter which should fit the docs site well with its many screenshots.
 +# Note that you can also set this per image processing.
 +resampleFilter = "CatmullRom"
 +
 +# Default JPEG quality setting. Default is 75.
 +quality = 75
 +
 +anchor = "smart"
index 036d74064b2322badd62ea1483f60ab667c34857,0000000000000000000000000000000000000000..e24c573c2347bb13e16ba949861aa5b14068e97f
mode 100644,000000..100644
--- /dev/null
@@@ -1,510 -1,0 +1,510 @@@
- DefaultContentLanguage = "en"
 +---
 +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" >}}
- **Please note:** use lowercase language codes, even when using regional languages (ie. use pt-pt instead of pt-PT). Currently Hugo language internals lowercase language codes, which can cause conflicts with settings like `DefaultContentLanguage` which are not lowercased. Please track the evolution of this issue in [Hugo repository issue tracker](https://github.com/gohugoio/hugo/issues/7344)
++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"
 +
 +[languages.ar]
 +title = "مدونتي"
 +weight = 2
 +languagedirection = "rtl"
 +
 +[languages.pt-pt]
 +title = "O meu blog"
 +weight = 3
 +{{< /code-toggle >}}
 +
 +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.
 +
 +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 rendered 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.
 +
++**Please note:** use lowercase language codes, even when using regional languages (ie. use pt-pt instead of pt-PT). Currently Hugo language internals lowercase language codes, which can cause conflicts with settings like `defaultContentLanguage` which are not lowercased. Please track the evolution of this issue in [Hugo repository issue tracker](https://github.com/gohugoio/hugo/issues/7344)
 +
 +### 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 typically 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
 +
 +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`
 +
 +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 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.
 +
 +{{< 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"
 +  fr:
 +    weight: 20
 +    languageName: "Français"
 +    contentDir: "content/french"
 +
 +{{< /code-toggle >}}
 +
 +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`
 +
 +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.
 +
 +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
 +
 +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. 
 +
 +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 >}}
 +
 +
 +At render, Hugo will build both `/about/` and `/fr/a-propos/` while maintaining their translation linking.
 +
 +{{% note %}}
 +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.
 +
 +If, across the linked bundles, two or more files share the same basename, only one will be included and chosen as follows:
 +
 +* File from current language bundle, if present.
 +* First file found across bundles by order of language `Weight`.
 +
 +{{% note %}}
 +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>
 +    {{ end }}
 +</ul>
 +{{ end }}
 +{{< /code >}}
 +
 +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
 +
 +`.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 %}}
 +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 %}}
 +
 +### Query basic translation
 +
 +From within your templates, use the `i18n` function like this:
 +
 +```
 +{{ i18n "home" }}
 +```
 +
 +The function will search for the `"home"` id from `i18n/en-US.toml` file:
 +
 +```
 +[home]
 +other = "Home"
 +```
 +
 +The result will be
 +
 +```
 +Home
 +```
 +
 +### Query a flexible translation with variables
 +
 +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" . }}
 +```
 +
 +The function will pass the `.` context to the `"wordCount"` id in `i18n/en-US.toml` file:
 +
 +```
 +[wordCount]
 +other = "This article has {{ .WordCount }} words."
 +```
 +
 +Assume `.WordCount` in the context has value is 101. The result will be:
 +
 +```
 +This article has 101 words.
 +```
 +
 +### Query a singular/plural translation
 +
 +In order to meet singular/plural requirement, you must pass a dictionary (map) with a numeric `.Count` property to the `i18n` function. The below example uses `.ReadingTime` variable which has a built-in `.Count` property.
 +
 +```
 +{{ i18n "readingTime" .ReadingTime }}
 +```
 +
 +The function will read `.Count` from `.ReadingTime` and evaluate where the number is singular (`one`) or plural (`other`). After that, it will pass to `readingTime` id in `i18n/en-US.toml` file:
 +
 +```
 +[readingTime]
 +one = "One minute to read"
 +other = "{{.Count}} minutes to read"
 +```
 +
 +Assume `.ReadingTime.Count` in the context has value of 525600. The result will be:
 +
 +```
 +525600 minutes to read
 +```
 +
 +If `.ReadingTime.Count` in the context has value is 1. The result is:
 +
 +```
 +One minutes to read
 +```
 +
 +In case you need to pass custom data: (`(dict "Count" 25)` is minimum requirement)
 +
 +```
 +{{ i18n "readingTime" (dict "Count" 25 "FirstArgument" true "SecondArgument" false "Etc" "so on, so far") }}
 +```
 +
 +
 +## Customize Dates
 +
 +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"
 +~~~
 +
 +...then index the non-English date names in your templates like so:
 +
 +~~~html
 +<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
 +
 +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
 +```
 +
 +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 %}}
 +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`
 +* 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 2ccf058e044b18f352bd2a5e50708c0ca64dc0f7,0000000000000000000000000000000000000000..9561ea2e92eae67c3688b4a8869d2d30adf06fdf
mode 100644,000000..100644
--- /dev/null
@@@ -1,189 -1,0 +1,188 @@@
- lastmod : 2018-01-28T22:26:40-05:00
 +---
 +title : "Page Bundles"
 +description : "Content organization using Page Bundles"
 +date : 2018-01-24T13:09:00-05:00
- [^fn:1]: The `.md` extension is just an example. The extension can be `.html`, `.json` or any of any valid MIME type.
 +linktitle : "Page Bundles"
 +keywords : ["page", "bundle", "leaf", "branch"]
 +categories : ["content management"]
 +toc : true
 +menu :
 +  docs:
 +    identifier : "page-bundles"
 +    parent : "content-management"
 +    weight : 11
 +---
 +
 +Page Bundles are a way to group [Page Resources](/content-management/page-resources/).
 +
 +A Page Bundle can be one of:
 +
 +- Leaf Bundle (leaf means it has no children)
 +- Branch Bundle (home page, section, taxonomy terms, taxonomy list)
 +
 +|                                     | Leaf Bundle                                              | Branch Bundle                                                                                                                                                                                                      |
 +|-------------------------------------|----------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  |
 +| Usage                               | Collection of content and attachments for single pages   | Collection of attachments for section pages (home page, section, taxonomy terms, taxonomy list)                                                                                                                    |
 +| Index file name                     | `index.md` [^fn:1]                                       | `_index.md` [^fn:1]                                                                                                                                                                                                |
 +| Allowed Resources                   | Page and non-page (like images, pdf, etc.) types         | Only non-page (like images, pdf, etc.) types                                                                                                                                                                       |
 +| Where can the Resources live?       | At any directory level within the leaf bundle directory. | Only in the directory level **of** the branch bundle directory i.e. the directory containing the `_index.md` ([ref](https://discourse.gohugo.io/t/question-about-content-folder-structure/11822/4?u=kaushalmodi)). |
 +| Layout type                         | `single`                                                 | `list`                                                                                                                                                                                                             |
 +| Nesting                             | Does not allow nesting of more bundles under it          | Allows nesting of leaf or branch bundles under it                                                                                                                                                                  |
 +| Example                             | `content/posts/my-post/index.md`                         | `content/posts/_index.md`                                                                                                                                                                                          |
 +| Content from non-index page files... | Accessed only as page resources                          | Accessed only as regular pages                                                                                                                                                                                     |
 +
 +
 +## Leaf Bundles {#leaf-bundles}
 +
 +A _Leaf Bundle_ is a directory at any hierarchy within the `content/`
 +directory, that contains an **`index.md`** file.
 +
 +### Examples of Leaf Bundle organization {#examples-of-leaf-bundle-organization}
 +
 +```text
 +content/
 +├── about
 +│   ├── index.md
 +├── posts
 +│   ├── my-post
 +│   │   ├── content1.md
 +│   │   ├── content2.md
 +│   │   ├── image1.jpg
 +│   │   ├── image2.png
 +│   │   └── index.md
 +│   └── my-other-post
 +│       └── index.md
 +│
 +└── another-section
 +    ├── ..
 +    └── not-a-leaf-bundle
 +        ├── ..
 +        └── another-leaf-bundle
 +            └── index.md
 +```
 +
 +In the above example `content/` directory, there are four leaf
 +bundles:
 +
 +about
 +: This leaf bundle is at the root level (directly under
 +    `content` directory) and has only the `index.md`.
 +
 +my-post
 +: This leaf bundle has the `index.md`, two other content
 +    Markdown files and two image files.
 +
 +image1
 +: This image is a page resource of `my-post`
 +    and only available in `my-post/index.md` resources.
 +
 +image2
 +: This image is a page resource of `my-post`
 +    and only available in `my-post/index.md` resources.
 +
 +my-other-post
 +: This leaf bundle has only the `index.md`.
 +
 +another-leaf-bundle
 +: This leaf bundle is nested under couple of
 +    directories. This bundle also has only the `index.md`.
 +
 +{{% note %}}
 +The hierarchy depth at which a leaf bundle is created does not matter,
 +as long as it is not inside another **leaf** bundle.
 +{{% /note %}}
 +
 +
 +### Headless Bundle {#headless-bundle}
 +
 +A headless bundle is a bundle that is configured to not get published
 +anywhere:
 +
 +-   It will have no `Permalink` and no rendered HTML in `public/`.
 +-   It will not be part of `.Site.RegularPages`, etc.
 +
 +But you can get it by `.Site.GetPage`. Here is an example:
 +
 +```go-html-template
 +{{ $headless := .Site.GetPage "/some-headless-bundle" }}
 +{{ $reusablePages := $headless.Resources.Match "author*" }}
 +<h2>Authors</h2>
 +{{ range $reusablePages }}
 +    <h3>{{ .Title }}</h3>
 +    {{ .Content }}
 +{{ end }}
 +```
 +
 +_In this example, we are assuming the `some-headless-bundle` to be a headless
 +   bundle containing one or more **page** resources whose `.Name` matches
 +   `"author*"`._
 +
 +Explanation of the above example:
 +
 +1. Get the `some-headless-bundle` Page "object".
 +2. Collect a *slice* of resources in this *Page Bundle* that matches
 +   `"author*"` using `.Resources.Match`.
 +3. Loop through that *slice* of nested pages, and output their `.Title` and
 +   `.Content`.
 +
 +---
 +
 +A leaf bundle can be made headless by adding below in the Front Matter
 +(in the `index.md`):
 +
 +```toml
 +headless = true
 +```
 +
 +There are many use cases of such headless page bundles:
 +
 +-   Shared media galleries
 +-   Reusable page content "snippets"
 +
 +
 +## Branch Bundles {#branch-bundles}
 +
 +A _Branch Bundle_ is any directory at any hierarchy within the
 +`content/` directory, that contains at least an **`_index.md`** file.
 +
 +This `_index.md` can also be directly under the `content/` directory.
 +
 +{{% note %}}
 +Here `md` (markdown) is used just as an example. You can use any file
 +type as a content resource as long as it is a content type recognized by Hugo.
 +{{% /note %}}
 +
 +
 +### Examples of Branch Bundle organization {#examples-of-branch-bundle-organization}
 +
 +```text
 +content/
 +├── branch-bundle-1
 +│   ├── branch-content1.md
 +│   ├── branch-content2.md
 +│   ├── image1.jpg
 +│   ├── image2.png
 +│   └── _index.md
 +└── branch-bundle-2
 +    ├── _index.md
 +    └── a-leaf-bundle
 +        └── index.md
 +```
 +
 +In the above example `content/` directory, there are two branch
 +bundles (and a leaf bundle):
 +
 +`branch-bundle-1`
 +: This branch bundle has the `_index.md`, two
 +    other content Markdown files and two image files.
 +
 +`branch-bundle-2`
 +: This branch bundle has the `_index.md` and a
 +    nested leaf bundle.
 +
 +{{% note %}}
 +The hierarchy depth at which a branch bundle is created does not
 +matter.
 +{{% /note %}}
 +
++[^fn:1]: The `.md` extension is just an example. The extension can be `.html`, `.json` or any valid MIME type.
index 3fad8bd9c9a1082b3e4b9deeb96f870550a6ee17,0000000000000000000000000000000000000000..a5c27d4f3195b3f345754b1668458e84276ce0dc
mode 100644,000000..100644
--- /dev/null
@@@ -1,31 -1,0 +1,35 @@@
- description: Rebinds the context (`.`) within its scope and skips the block if the variable is absent.
 +---
 +title: with
 +# linktitle: with
- An alternative way of writing an `if` statement and then referencing the same value is to use `with` instead. `with` rebinds the context (`.`) within its scope and skips the block if the variable is absent or unset.
++description: Rebinds the context (`.`) within its scope and skips the block if the variable is absent or empty.
 +godocref:
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-03-12
 +categories: [functions]
 +menu:
 +  docs:
 +    parent: "functions"
 +keywords: [conditionals]
 +signature: ["with INPUT"]
 +workson: []
 +hugoversion:
 +relatedfuncs: []
 +deprecated: false
 +---
 +
++An alternative way of writing an `if` statement and then referencing the same value is to use `with` instead. `with` rebinds the context (`.`) within its scope and skips the block if the variable is absent, unset or empty.
++
++The set of *empty* values is defined by [the Go templates package](https://golang.org/pkg/text/template/). Empty values include `false`, the number zero, and the empty string.
++
++If you want to render a block if an index or key is present in a slice, array, channel or map, regardless of whether the value is empty, you should use [`isset`](/functions/isset) instead.
 +
 +The following example checks for a [user-defined site variable](/variables/site/) called `twitteruser`. If the key-value is not set, the following will render nothing:
 +
 +{{< code file="layouts/partials/twitter.html" >}}
 +{{with .Site.Params.twitteruser}}<span class="twitter">
 +<a href="https://twitter.com/{{.}}" rel="author">
 +<img src="/images/twitter.png" width="48" height="48" title="Twitter: {{.}}"
 + alt="Twitter"></a>
 +</span>{{end}}
 +{{< /code >}}
index d12ecdf3be0c9ea20d05f5fcc9b64c3b175f6de5,0000000000000000000000000000000000000000..fbfa676bf38dedd362a34e4eb08e18dc9093f91c
mode 100644,000000..100644
--- /dev/null
@@@ -1,575 -1,0 +1,586 @@@
- - Each file represents a configuration root object, such as `Params`, `Menus`, `Languages` etc...
 +---
 +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 >}}TODO: distinct config.toml and others (the root object files){{< /todo >}}
 +
 +## 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.toml` for `[Params]`, `menu(s).toml` for `[Menu]`, `languages.toml` for `[Languages]` etc...
++- Each file's content must be top-level, for example:
++  
++  In `config.toml` is:
++  ```toml
++  [Params]
++    foo = "bar"
++  ```
++  In `params.toml` is:
++  ```
++  foo = "bar"
++  ```
 +- 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
 +│   ├── production
 +│   │   ├── config.toml
 +│   │   └── params.toml
 +│   └── staging
 +│       ├── 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 server` 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). {{% module-mounts-note %}}
 +
 +assetDir ("assets")
 +: The directory where Hugo finds asset files used in [Hugo Pipes](/hugo-pipes/). {{% module-mounts-note %}}
 +
 +baseURL
 +: Hostname (and path) to the root, e.g. https://bep.is/
 +
 +blackfriday
 +: See [Configure Blackfriday](/getting-started/configuration-markup#blackfriday)
 +
 +build
 +: See [Configure Build](#configure-build)
 +
 +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. {{% module-mounts-note %}}
 +
 +dataDir ("data")
 +: The directory from where Hugo reads data files. {{% module-mounts-note %}}
 +
 +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)
 +: 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"`, `"term"`, `"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 (false)
 +: 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. It is used in the default [RSS template](/templates/rss/#configure-rss) and can be useful for [multi-lingual sites](/content-management/multilingual/#configure-multilingual-multihost).
 +
 +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).
 +
 +markup
 +: See [Configure Markup](/getting-started/configuration-markup).{{< new-in "0.60.0" >}}
 +
 +menu
 +: See [Add Non-content Entries to a Menu](/content-management/menus/#add-non-content-entries-to-a-menu).
 +
 +minify
 +: See [Configure Minify](#configure-minify)
 +
 +module
 +: Module config see [Module Config](/hugo-modules/configuration/).{{< new-in "0.56.0" >}}
 +
 +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.).
 +
 +related
 +: See [Related Content](/content-management/related/#configure-related-content).{{< new-in "0.27" >}}
 +
 +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]. {{% module-mounts-note %}}
 +
 +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 Build
 +
 +{{< new-in "0.66.0" >}}
 +
 +The `build` configuration section contains global build-related configuration options.
 +
 +{{< code-toggle file="config">}}
 +[build]
 +useResourceCacheWhen="fallback"
 +writeStats = false
 +noJSConfigInAssets = false
 +{{< /code-toggle >}}
 +
 +
 +useResourceCacheWhen
 +: When to use the cached resources in `/resources/_gen` for PostCSS and ToCSS. Valid values are `never`, `always` and `fallback`. The last value means that the cache will be tried if PostCSS/extended version is not available.
 +
 +writeStats {{< new-in "0.69.0" >}}
 +: When enabled, a file named `hugo_stats.json` will be written to your project root with some aggregated data about the build, e.g. list of HTML entities published to be used to do [CSS pruning](/hugo-pipes/postprocess/#css-purging-with-postcss). If you're only using this for the production build, you should consider placing it below [config/production](/getting-started/configuration/#configuration-directory). It's also worth mentioning that, due to the nature of the partial server builds, new HTML entities will be added when you add or change them while the server is running, but the old values will not be removed until you restart the server or run a regular `hugo` build.
 +
 +noJSConfigInAssets {{< new-in "0.78.0" >}}
 +: Turn off writing a `jsconfig.js` into your `/assets` folder with mapping of imports from running [js.Build](https://gohugo.io/hugo-pipes/js). This file is intended to help with intellisense/navigation inside code editors such as [VS Code](https://code.visualstudio.com/). Note that if you do not use `js.Build`, no file will be written.
 +
 +## Configure Server
 +
 +{{< new-in "0.67.0" >}}
 +
 +This is only relevant when running `hugo server`, and it allows to set HTTP headers during development, which allows you to test out your Content Security Policy and similar. The configuration format matches [Netlify's](https://docs.netlify.com/routing/headers/#syntax-for-the-netlify-configuration-file) with slighly more powerful [Glob matching](https://github.com/gobwas/glob):
 +
 +
 +{{< code-toggle file="config">}}
 +[server]
 +[[server.headers]]
 +for = "/**.html"
 +
 +[server.headers.values]
 +X-Frame-Options = "DENY"
 +X-XSS-Protection = "1; mode=block"
 +X-Content-Type-Options = "nosniff"
 +Referrer-Policy = "strict-origin-when-cross-origin"
 +Content-Security-Policy = "script-src localhost:1313"
 +{{< /code-toggle >}}
 +
 +Since this is is "development only", it may make sense to put it below the `development` environment:
 +
 +
 +{{< code-toggle file="config/development/server">}}
 +[[headers]]
 +for = "/**.html"
 +
 +[headers.values]
 +X-Frame-Options = "DENY"
 +X-XSS-Protection = "1; mode=block"
 +X-Content-Type-Options = "nosniff"
 +Referrer-Policy = "strict-origin-when-cross-origin"
 +Content-Security-Policy = "script-src localhost:1313"
 +{{< /code-toggle >}}
 +
 +
 +{{< new-in "0.72.0" >}}
 +
 +You can also specify simple redirects rules for the server. The syntax is again similar to Netlify's. 
 +
 +Note that a `status` code of 200 will trigger a [URL rewrite](https://docs.netlify.com/routing/redirects/rewrites-proxies/), which is what you want in SPA situations, e.g:
 +
 +{{< code-toggle file="config/development/server">}}
 +[[redirects]]
 +from = "/myspa/**"
 +to = "/myspa/"
 +status = 200
 +force = false
 +{{< /code-toggle >}}
 +
 +{{< new-in "0.76.0" >}} Setting `force=true` will make a redirect even if there is existing content in the path. Note that before Hugo 0.76  `force` was the default behaviour, but this is inline with how Netlify does it.
 +
 +## 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.
 +
 +To set config params, prefix the name with `HUGO_PARAMS_`
 +{{% /note %}}
 +
 +{{< new-in "0.79.0" >}} If you are using snake_cased variable names, the above will not work, so since Hugo 0.79.0 Hugo determines the delimiter to use by the first character after `HUGO`. This allows you to define environment variables on the form `HUGOxPARAMSxAPI_KEY=abcdefgh`, using any [allowed](https://stackoverflow.com/questions/2821043/allowed-characters-in-linux-environment-variable-names#:~:text=So%20names%20may%20contain%20any,not%20begin%20with%20a%20digit.) delimiter.
 +
 +{{< todo >}}
 +Test and document setting params via JSON env var.
 +{{< /todo >}}
 +
 +## Ignore Content Files When Rendering
 +
 +The following statement inside `./config.toml` will cause Hugo to ignore content 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 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 Minify
 +
 +{{< new-in "0.68.0" >}}
 +
 +Default configuration:
 +
 +{{< code-toggle config="minify" />}}
 +
 +## Configure File Caches
 +
 +Since Hugo 0.52 you can configure more than just the `cacheDir`. This is the default configuration:
 +
 +{{< code-toggle >}}
 +[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
 +[caches.modules]
 +dir = ":cacheDir/modules"
 +maxAge = -1
 +{{< /code-toggle >}}
 +
 +You can override any of these cache settings 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 573fdfdbfa7284780630b795b68e6e49e449a040,0000000000000000000000000000000000000000..349d7e29da7f0f3d8114eb86ac8a166f0b74bc80
mode 100644,000000..100644
--- /dev/null
@@@ -1,33 -1,0 +1,37 @@@
 +---
 +title: External Learning Resources
 +linktitle: External Learning Resources
 +description: A list of tutorials and books on Hugo.
 +date: 2019-10-20
 +publishdate: 2019-10-20
 +lastmod: 2019-10-20
 +keywords: [books, tutorials, learning, usage]
 +menu:
 +  docs:
 +    parent: "getting-started"
 +    weight: 70
 +weight: 70
 +sections_weight: 70
 +draft: false
 +toc: false
 +---
 +
 +## Books
 +
 +### Hugo In Action
 +
 +[![Hugo In Action](hia.jpg)](https://www.manning.com/books/hugo-in-action)
 +
 +Hugo in Action is a step-by-step guide to using Hugo to create static websites. Working with a complete example website and source code samples, you’ll learn how to build and host a low-maintenance, high-performance site that will wow your users and stay stable without relying on a third-party server.
 +
 +[Hugo In Action Home Page](https://www.manning.com/books/hugo-in-action)
 +
++### Build Websites with Hugo
++
++[Build Websites with Hugo - Fast Web Development with Markdown (2020)](https://pragprog.com/titles/bhhugo/) by Brian P. Hogan.
++
 +## Video tutorials
 +
 +### Video Playlist by Mike Dane
 +
 +Mike Dane explains the various features of Hugo via dedicated tutorials on [YouTube](https://www.youtube.com/watch?list=PLLAZ4kZ9dFpOnyRlyS-liKL5ReHDcj4G3&v=qtIqKaDlqXo).
index 70803d36055cf3ba15efc7f6e9b1f1a98358f09b,0000000000000000000000000000000000000000..55cfcccd6dfd75d59a9f040af9f89554a8ca4e4d
mode 100644,000000..100644
--- /dev/null
@@@ -1,253 -1,0 +1,253 @@@
- [orphan branch]: https://git-scm.com/docs/git-checkout/#git-checkout---orphanltnewbranchgt
 +---
 +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
 +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 in 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 `main` 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>`
 +4. Paste your existing Hugo project into the 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
 +    * Before proceeding run `rm -rf public` to completely remove the `public` directory
 +6. `git submodule add -b main https://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).
 +7. Make sure the `baseURL` in your config file is updated with: `<USERNAME>.github.io`
 +
 +### Put it Into a Script
 +
 +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/sh
 +
 +# If a command fails then the deploy stops
 +set -e
 +
 +printf "\033[0;32mDeploying updates to GitHub...\033[0m\n"
 +
 +# 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 [ -n "$*" ]; then
 +      msg="$*"
 +fi
 +git commit -m "$msg"
 +
 +# Push source and build repos.
 +git push origin main
 +```
 +
 +
 +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 `main` branch
 +
 +[As described in the GitHub Pages documentation][ghpfromdocs], you can deploy from a folder called `docs/` on your main 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 main 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 "main 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 main, 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 `main` 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 main 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 main
 +```
 +
 +#### 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
 +
 +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 `main` Branch
 +
 +To use `main` 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 `main` as your publishable branch from within the GitHub UI:
 +
 +1. Go to **Settings** &rarr; **GitHub Pages**
 +2. From **Source**,  select "main 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/
 +[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/#Documentation/git-checkout.txt---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 eb7947161bec15345483f3842641605ccd3132ed,0000000000000000000000000000000000000000..f23cb42baeef97ddf61c76775a142a5a35c25a55
mode 100644,000000..100644
--- /dev/null
@@@ -1,93 -1,0 +1,92 @@@
- 1. Create a new **Web Service** on Render, and give Render permission to access your GitHub/Gitlab repo.
 +---
 +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: 2020-01-01
 +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](https://render.com/docs/github) and [GitLab](https://render.com/docs/gitlab).
 +- 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 or GitLab.
 +* 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:
 +
-  **Environment**       | `Static Site`
++1. Create a new **Static Site** on Render, and give Render permission to access your GitHub/Gitlab repo.
 +2. Use the following values during creation:
 +
 +  Field                | Value
 +  -------------------  |  -------------------
 + **Build Command**     | `hugo --gc --minify` (or your 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 your GitHub/Gitlab.
 +
 +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 aa03489d239fa55f6690fce0d8b841cc1a5e7771,0000000000000000000000000000000000000000..db12964b40df825c9cd5e82f0ecce5cce16cf903
mode 100644,000000..100644
--- /dev/null
@@@ -1,142 -1,0 +1,143 @@@
 +---
 +title: Use Hugo Modules
 +linktitle: Use Hugo Modules
 +description: How to use Hugo Modules to build and manage your site.
 +date: 2019-07-24
 +categories: [hugo modules]
 +keywords: [install, themes, source, organization, directories,usage,modules]
 +menu:
 +  docs:
 +    parent: "modules"
 +    weight: 20
 +weight: 20
 +sections_weight: 20
 +draft: false
 +aliases: [/themes/usage/,/themes/installing/,/installing-and-using-themes/]
 +toc: true
 +---
 +
 +## Prerequisite
 +
 +{{< gomodules-info >}}
 +
 +
 +
 +## Initialize a New Module
 +
 +Use `hugo mod init` to initialize a new Hugo Module. If it fails to guess the module path, you must provide it as an argument, e.g.:
 +
 +```bash
 +hugo mod init github.com/gohugoio/myShortcodes
 +```
 +
 +Also see the [CLI Doc](/commands/hugo_mod_init/).
 +
 +## Use a Module for a Theme
 +The easiest way to use a Module for a theme is to import it in the config.
 +
 +1. Initialize the hugo module system: `hugo mod init github.com/<your_user>/<your_project>`
 +2. Import the theme in your `config.toml`:
 +
 +```toml
 +[module]
 +  [[module.imports]]
 +    path = "github.com/spf13/hyde"
 +```
 +
 +## Update Modules
 +
 +Modules will be downloaded and added when you add them as imports to your configuration, see [Module Imports](/hugo-modules/configuration/#module-config-imports).
 +
 +To update or manage versions, you can use `hugo mod get`.
 +
 +Some examples:
 +
 +### Update All Modules
 +
 +```bash
 +hugo mod get -u
 +```
 +
 +### Update All Modules Recursively
 +
 +{{< new-in "0.65.0" >}}
 +
 +```bash
 +hugo mod get -u ./...
 +```
 +
 +### Update One Module
 +
 +```bash
 +hugo mod get -u github.com/gohugoio/myShortcodes
 +```
 +### Get a Specific Version
 +
 +```bash
 +hugo mod get github.com/gohugoio/myShortcodes@v1.0.7
 +```
 +
 +Also see the [CLI Doc](/commands/hugo_mod_get/).
 +
 +## Make and test changes in a module
 +
 +One way to do local development of a module imported in a project is to add a replace directive to a local directory with the source in `go.mod`:
 +
 +```bash
 +replace github.com/bep/hugotestmods/mypartials => /Users/bep/hugotestmods/mypartials
 +```
 +
 +If you have the `hugo server` running, the configuration will be reloaded and `/Users/bep/hugotestmods/mypartials` put on the watch list.
 +
++Note that since v.0.77.0 you can use modules config [`replacements`](https://gohugo.io/hugo-modules/configuration/#module-config-top-level) option. {{< new-in "0.77.0" >}}
 +
 +## Print Dependency Graph
 +
 +
 +Use `hugo mod graph` from the relevant module directory and it will print the dependency graph, including vendoring, module replacement or disabled status.
 +
 +E.g.:
 +
 +```
 +hugo mod graph
 +
 +github.com/bep/my-modular-site github.com/bep/hugotestmods/mymounts@v1.2.0
 +github.com/bep/my-modular-site github.com/bep/hugotestmods/mypartials@v1.0.7
 +github.com/bep/hugotestmods/mypartials@v1.0.7 github.com/bep/hugotestmods/myassets@v1.0.4
 +github.com/bep/hugotestmods/mypartials@v1.0.7 github.com/bep/hugotestmods/myv2@v1.0.0
 +DISABLED github.com/bep/my-modular-site github.com/spf13/hyde@v0.0.0-20190427180251-e36f5799b396
 +github.com/bep/my-modular-site github.com/bep/hugo-fresh@v1.0.1
 +github.com/bep/my-modular-site in-themesdir
 +
 +```
 +
 +Also see the [CLI Doc](/commands/hugo_mod_graph/).
 +
 +## Vendor Your Modules
 +
 +`hugo mod vendor` will write all the module dependencies to a `_vendor` folder, which will then be used for all subsequent builds.
 +
 +Note that:
 +
 +* You can run `hugo mod vendor` on any level in the module tree.
 +* Vendoring will not store modules stored in your `themes` folder.
 +* Most commands accept a `--ignoreVendorPaths` flag, which will then not use the vendored modules in `_vendor` for the module paths matching the [Glob](https://github.com/gobwas/glob) pattern given. Note that before Hugo 0.75 this flag was named `--ignoreVendor` and was a "all or nothing". {{< new-in "0.75.0" >}}
 +
 +Also see the [CLI Doc](/commands/hugo_mod_vendor/).
 +
 +
 +## Tidy go.mod, go.sum
 +
 +Run `hugo mod tidy` to remove unused entries in `go.mod` and `go.sum`.
 +
 +Also see the [CLI Doc](/commands/hugo_mod_clean/).
 +
 +## Clean Module Cache
 +
 +Run `hugo mod clean` to delete the entire modules cache.
 +
 +Note that you can also configure the `modules` cache with a `maxAge`, see [File Caches](/hugo-modules/configuration/#configure-file-caches).
 +
 +
 +
 +Also see the [CLI Doc](/commands/hugo_mod_clean/).
index 5e9c027d577d8898b1b31d7f8b0888078eb1b12c,0000000000000000000000000000000000000000..fd86972640b47beea91d7139a1f2f2e69004fe55
mode 100644,000000..100644
--- /dev/null
@@@ -1,155 -1,0 +1,173 @@@
- {{ $js := resources.Get "js/main.js" | js.Build (dict "params" (dict "api" "https://example.org/api" ) }}
 +---
 +title: JavaScript Building
 +description: Hugo Pipes can process JavaScript files with [ESBuild](https://github.com/evanw/esbuild).
 +date: 2020-07-20
 +publishdate: 2020-07-20
 +lastmod: 2020-07-20
 +categories: [asset management]
 +keywords: []
 +menu:
 +  docs:
 +    parent: "pipes"
 +    weight: 45
 +weight: 45
 +sections_weight: 45
 +draft: false
 +---
 +
 +Any JavaScript resource file can be transpiled and "tree shaken" using `js.Build` which takes for argument either a string for the filepath or a dict of options listed below.
 +
 +### Options
 +
 +targetPath [string]
 +: If not set, the source path will be used as the base target path. 
 +Note that the target path's extension may change if the target MIME type is different, e.g. when the source is TypeScript.
 +
 +params [map or slice] {{< new-in "0.78.0" >}}
 +: Params that can be imported as JSON in your JS files, e.g.:
 +
 +```go-html-template
- And it will respolve to the top-most `index.{js,ts,tsx,jsx}` inside `assets/my/module` in the layered file system.
++{{ $js := resources.Get "js/main.js" | js.Build (dict "params" (dict "api" "https://example.org/api")) }}
 +```
 +And then in your JS file: 
 +
 +```js
 +import * as params from '@params';
 +``` 
 +
 +Note that this is meant for small data sets, e.g. config settings. For larger data, please put/mount the files into `/assets` and import them directly.
 +
 +minify [bool]
 +: Let `js.Build` handle the minification.
 +
++avoidTDZ {{< new-in "0.78.0" >}}
++: There is/was a bug in WebKit with severe performance issue with the tracking of TDZ checks in JavaScriptCore. Enabling this flag removes the TDZ and `const` assignment checks and may improve performance of larger JS codebases until the WebKit fix is in widespread use. See https://bugs.webkit.org/show_bug.cgi?id=199866
++
 +target [string]
 +: The language target.
 +  One of: `es5`, `es2015`, `es2016`, `es2017`, `es2018`, `es2019`, `es2020` or `esnext`.
 +  Default is `esnext`.
 +
 +externals [slice]
 +: External dependencies. If a dependency should not be included in the bundle (Ex. library loaded from a CDN.), it should be listed here.
 +
 +```go-html-template
 +{{ $externals := slice "react" "react-dom" }}
 +```
 +
 +> Marking a package as external doesn't imply that the library can be loaded from a CDN. It simply tells Hugo not to expand/include the package in the JS file.
 +
 +defines [map]
 +: Allow to define a set of string replacement to be performed when building. Should be a map where each key is to be replaced by its value.
 +
 +```go-html-template
 +{{ $defines := dict "process.env.NODE_ENV" `"development"` }}
 +```
 +
 +format [string] {{< new-in "0.74.3" >}}
 +: The output format.
 +  One of: `iife`, `cjs`, `esm`.
 +  Default is `iife`, a self-executing function, suitable for inclusion as a <script> tag.
 +
++sourceMap
++: Whether to generate source maps. Enum, currently only `inline` (we will improve that).
 +
 +### Import JS code from /assets
 +
 +{{< new-in "0.78.0" >}}
 +
 +Since Hugo `v0.78.0` `js.Build` has full support for the virtual union file system in [Hugo Modules](/hugo-modules/). You can see some simple examples in this [test project](https://github.com/gohugoio/hugoTestProjectJSModImports), but in short this means that you can do this:
 +
 +```js
 +import { hello } from 'my/module';
 +```
 +
- {{ $js := resources.Get "js/main.js" | js.Build (dict "params" (dict "api" "https://example.org/api" ) }}
++And it will resolve to the top-most `index.{js,ts,tsx,jsx}` inside `assets/my/module` in the layered file system.
 +
 +```js
 +import { hello3 } from 'my/module/hello3';
 +```
 +
 +Wil resolve to `hello3.{js,ts,tsx,jsx}` inside `assets/my/module`.
 +
 +Any imports starting with `.` is resolved relative to the current file:
 +
 +```js
 +import { hello4 } from './lib';
 +```
 +
 +For other files (e.g. `JSON`, `CSS`) you need to use the relative path including any extension, e.g:
 +
 +```js
 +import * as data from 'my/module/data.json';
 +```
 +
++Any imports in a file outside `/assets` or that does not resolve to a component inside `/assets` will be resolved by [ESBuild](https://esbuild.github.io/) with the **project directory** as the resolve directory (used as the starting point when looking for `node_modules` etc.). Also see [hugo mod npm pack](/commands/hugo_mod_npm_pack/).  If you have any imported NPM dependencies in your project, you need to make sure to run `npm install` before you run `hugo`.
++
 +Also note the new `params` option that can be passed from template to your JS files, e.g.:
 +
 +```go-html-template
++{{ $js := resources.Get "js/main.js" | js.Build (dict "params" (dict "api" "https://example.org/api")) }}
 +```
 +And then in your JS file: 
 +
 +```js
 +import * as params from '@params';
 +```
 +
 +Hugo will, by default, generate a `assets/jsconfig.js` file that maps the imports. This is useful for navigation/intellisense help inside code editors, but if you don't need/want it, you can [turn it off](/getting-started/configuration/#configure-build).
 +
++
++
++### Include Dependencies In package.json / node_modules
++
++Any imports in a file outside `/assets` or that does not resolve to a component inside `/assets` will be resolved by [ESBuild](https://esbuild.github.io/) with the **project directory** as the resolve directory (used as the starting point when looking for `node_modules` etc.). Also see [hugo mod npm pack](/commands/hugo_mod_npm_pack/).  If you have any imported NPM dependencies in your project, you need to make sure to run `npm install` before you run `hugo`.
++
++{{< new-in "0.78.1" >}} From Hugo `0.78.1` the start directory for resolving NPM packages (aka. packages that live inside a `node_modules` folder) is always the main project folder.
++
++**Note:** If you're developing a theme/component that is supposed to be imported and depends on dependencies inside `package.json`, we recommend reading about [hugo mod npm pack](/commands/hugo_mod_npm_pack/), a tool to consolidate all the NPM dependencies in a project.
++
++
 +### Examples
 +
 +```go-html-template
 +{{ $built := resources.Get "js/index.js" | js.Build "main.js" }}
 +```
 +
 +Or with options:
 +
 +```go-html-template
 +{{ $externals := slice "react" "react-dom" }}
 +{{ $defines := dict "process.env.NODE_ENV" `"development"` }}
 +
 +{{ $opts := dict "targetPath" "main.js" "externals" $externals "defines" $defines }}
 +{{ $built := resources.Get "scripts/main.js" | js.Build $opts }}
 +<script type="text/javascript" src="{{ $built.RelPermalink }}" defer></script>
 +```
 +
 +#### Shimming a JS library 
 +
 +It's a very common practice to load external libraries using CDN rather than importing all packages in a single JS file, making it bulky. To do the same with Hugo, you'll need to shim the libraries as follows. In this example, `algoliasearch` and `instantsearch.js` will be shimmed.
 +
 +Firstly, add the following to your project's `package.json`:
 +```json
 +{
 +  "browser": {
 +    "algoliasearch/lite": "./public/js/shims/algoliasearch.js",
 +    "instantsearch.js/es/lib/main": "./public/js/shims/instantsearch.js"
 +  }
 +}
 +```
 +
 +What this does is it tells Hugo to look for the listed packages somewhere else. Here we're telling Hugo to look for `algoliasearch/lite` and `instantsearch.js/es/lib/main` in the project's `public/js/shims` folder.
 +
 +Now we'll need to create the shim JS files which export the global JS variables `module.exports = window.something`. You can create a separate shim JS file in your `assets` directory, and redirect the import paths there if you wish, but a much cleaner way is to create these files on the go, by having the following before your JS is built.
 +
 +```go-html-template
 +{{ $a := "module.exports = window.algoliasearch" | resources.FromString "js/shims/algoliasearch.js" }}
 +{{ $i := "module.exports = window.instantsearch" | resources.FromString "js/shims/instantsearch.js" }}
 +
 +{{/* Call RelPermalink unnecessarily to generate JS files */}}
 +{{ $placebo := slice $a.RelPermalink $i.RelPermalink }}
 +```
 +That's it! You should now have a browser-friendly JS which can use external JS libraries.
index 862fcd930c612f99e17112681e32958789c31749,0000000000000000000000000000000000000000..8b942d2f32b86e5411e5a8b824f19f98c332e77f
mode 100755,000000..100755
--- /dev/null
@@@ -1,31 -1,0 +1,31 @@@
- {{ $string := (printf "var rootURL: '%s'; var apiURL: '%s';" (absURL "/") (.Param "API_URL")) }}
 +---
 +title: Creating a resource from a string
 +linkTitle: Resource from String
 +description: Hugo Pipes allows the creation of a resource from a string.
 +date: 2018-07-14
 +publishdate: 2018-07-14
 +lastmod: 2018-07-14
 +categories: [asset management]
 +keywords: []
 +menu:
 +  docs:
 +    parent: "pipes"
 +    weight: 90
 +weight: 90
 +sections_weight: 90
 +draft: false
 +---
 +
 +It is possible to create a resource directly from the template using `resources.FromString` which takes two arguments, the given string and the resource target path.
 +
 +The following example creates a resource file containing localized variables for every project's languages.
 +
 +```go-html-template
++{{ $string := (printf "var rootURL = '%s'; var apiURL = '%s';" (absURL "/") (.Param "API_URL")) }}
 +{{ $targetPath := "js/vars.js" }}
 +{{ $vars := $string | resources.FromString $targetPath }}
 +{{ $global := resources.Get "js/global.js" | resources.Minify }}
 +
 +<script type="text/javascript" src="{{ $vars.Permalink }}"></script>
 +<script type="text/javascript" src="{{ $global.Permalink }}"></script>
 +```
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..36ae0ac95bb5b85fcb9a38ece04d655510519b55
new file mode 100644 (file)
Binary files differ
index dd2cd70d51bffea23d45f52a34d183611f860234,0000000000000000000000000000000000000000..fcc20c06602e7beb8040036953b56e41f54b7f9d
mode 100644,000000..100644
--- /dev/null
@@@ -1,50 -1,0 +1,50 @@@
- title: "0.78.0"
- description: "0.78.0"
 +
 +---
 +date: 2020-11-03
-       This release finally brings full [Hugo Modules](https://gohugo.io/hugo-modules/) support to [js.Build](https://gohugo.io/hugo-pipes/js/), curtsy of he new plugin API in the really, really fast [ESBuild](https://github.com/evanw/esbuild) by [@evanw](https://github.com/evanw).
++title: "Hugo 0.78.0: Full Hugo Modules Support in js.Build"
++description: "Resolve JavaScript imports top-down in the layered filesystem, pass parameters from template to JS, new JS intellisense helper, improved JS build errors."
 +categories: ["Releases"]
 +---
 +
- * Now `js.Build` fully supports the virtual union file system in [Hugo Modules](https://gohugo.io/hugo-modules/). Any import inside your JavaScript components will resolve starting from the top component mount inside `/assets` with a fallback to the traditional "JS way" (`node_modules` etc.)
++This release finally brings full [Hugo Modules](https://gohugo.io/hugo-modules/) support to [js.Build](https://gohugo.io/hugo-pipes/js/), curtsy of he new plugin API in the really, really fast [ESBuild](https://github.com/evanw/esbuild) by [@evanw](https://github.com/evanw).
 +
 +Some notes on the improvements in this release:
 +
- // Wil resolve to one of `hello.{js,ts,tsx,jsx}` inside `assets/my/module`.
++* Now `js.Build` fully supports the virtual union filesystem in [Hugo Modules](https://gohugo.io/hugo-modules/). Any import inside your JavaScript components will resolve starting from the top component mount inside `/assets` with a fallback to the traditional "JS way" (`node_modules` etc.)
 +* You can now pass configuration data from the templates to your scripts via a new `params` option.
 +* Hugo now writes a `jsconfig.js` file inside `/assets` (you can turn it off) with import mappings to help editors such as VS Code with intellisense/navigation, which is especially useful when there is no common root and the source lives inside some temporary directory.
 +* We have also improved the build errors you get from `js.Build`. In server mode you will get a preview of the failing lines and in the console you will get a link to the location.
 +
 +Read more about this in [the documentation](https://gohugo.io/hugo-pipes/js/), but a short usage example would look like:
 +
 +In the template:
 +
 +```go-html-template
 +{{ $js := resources.Get "js/main.js" | js.Build (dict "params" (dict "api" "https://example.org/api" ) }}
 +```
 +
 +And then in a JavaScript component:
 +
 +```js
 +import * as params from '@params';
 +
++// Will resolve to one of `hello.{js,ts,tsx,jsx}` inside `assets/my/module`.
 +import { hello } from 'my/module/hello';
 +
 +var api = params.api;
 +
 +hello();
 +
 +```
 +
 +## Changes
 +
 +* Add avoidTDZ option [3b2fe3cd](https://github.com/gohugoio/hugo/commit/3b2fe3cd33b74166c3debec9826826f2b5a54fd9) [@bep](https://github.com/bep) [#7865](https://github.com/gohugoio/hugo/issues/7865)
 +* Make js.Build fully support modules [85e4dd73](https://github.com/gohugoio/hugo/commit/85e4dd7370eae97ae367e596aa6a10ba42fd4b7c) [@bep](https://github.com/bep) [#7816](https://github.com/gohugoio/hugo/issues/7816)[#7777](https://github.com/gohugoio/hugo/issues/7777)[#7916](https://github.com/gohugoio/hugo/issues/7916)
 +* Generate tsconfig files [3089fc0b](https://github.com/gohugoio/hugo/commit/3089fc0ba171be14670b19439bc2eab6b077b6c3) [@richtera](https://github.com/richtera) [#7777](https://github.com/gohugoio/hugo/issues/7777)
 +
 +
 +
 +
 +
 +
index b67e5de6c9f8631bf48f4a8a1847b978500749a3,0000000000000000000000000000000000000000..168c1bbcdd85f27d634fe50fc4335ccbcb4dc978
mode 100644,000000..100644
--- /dev/null
@@@ -1,22 -1,0 +1,20 @@@
-       
- This is a bug-fix release with a couple of important fixes.
 +
 +---
 +date: 2020-11-05
 +title: "Hugo 0.78.1: A couple of Bug Fixes"
 +description: "This version fixes a couple of bugs introduced in 0.78.0."
 +categories: ["Releases"]
 +images:
 +- images/blog/hugo-bug-poster.png
 +
 +---
 +
++The main fix in this release is that of dependency resolution for package.json/node_modules in theme components. See [the documentation](https://gohugo.io/hugo-pipes/js/#include-dependencies-in-packagejson--node_modules) for more information.
 +
 +* Disable NPM test on Travis on Windows [3437174c](https://github.com/gohugoio/hugo/commit/3437174c3a7b96925b82b351ac87530b4fa796a5) [@bep](https://github.com/bep) 
 +* travis: Install nodejs on Windows [f66302ca](https://github.com/gohugoio/hugo/commit/f66302ca0579171ffd1730eb8f33dd05af3d9a00) [@bep](https://github.com/bep) 
 +* js: Remove external source map option [944150ba](https://github.com/gohugoio/hugo/commit/944150bafbbb5c3e807ba3688174e70764dbdc64) [@bep](https://github.com/bep) [#7932](https://github.com/gohugoio/hugo/issues/7932)
 +* js: Misc fixes [bf2837a3](https://github.com/gohugoio/hugo/commit/bf2837a314eaf70135791984a423b0b09f58741d) [@bep](https://github.com/bep) [#7924](https://github.com/gohugoio/hugo/issues/7924)[#7923](https://github.com/gohugoio/hugo/issues/7923)
 +
 +
 +
index 18fabc655059a70ee980fda9c9467ced8a22f175,0000000000000000000000000000000000000000..0916e22992ba4d1d5c91e295f51cc0d3d926fb78
mode 100644,000000..100644
--- /dev/null
@@@ -1,64 -1,0 +1,64 @@@
- * [GitHub Pages](/hosting-and-deployment/hosting-on-github/). The 404 page is automatic.
 +---
 +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](https://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/) and [GitLab Pages](/hosting-and-deployment/hosting-on-gitlab/). 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 60b16cccb32f8baefe0148c5ed885871e66dba24,0000000000000000000000000000000000000000..e4255f98ef518de91a1c6990e2b4c38d7de077ea
mode 100644,000000..100644
--- /dev/null
@@@ -1,43 -1,0 +1,45 @@@
 +---
 +title: Starter Kits
 +linktitle: Starter Kits
 +description: A list of community-developed projects designed to help you get up and running with Hugo.
 +date: 2017-02-22
 +publishdate: 2017-02-01
 +lastmod: 2018-08-11
 +keywords: [starters,assets,pipeline]
 +menu:
 +  docs:
 +    parent: "tools"
 +    weight: 30
 +weight: 30
 +sections_weight: 30
 +draft: false
 +aliases: [/developer-tools/migrations/,/developer-tools/migrated/]
 +toc: false
 +---
 +
 +Know of a Hugo-related starter kit that isn't mentioned here? [Please add it to the list.][addkit]
 +
 +{{% note "Starter Kits are Not Maintained by the Hugo Team"%}}
 +The following starter kits are developed by active members of the Hugo community. If you find yourself having issues with any of the projects, it's best to file an issue directly with the project's maintainer(s).
 +{{% /note %}}
 +
 +* [Hugo Wrapper][hugow]. Hugo Wrapper is a POSIX-style shell script which acts as a wrapper to download and run Hugo binary for your platform. It can be executed in variety of [Operating Systems][hugow-test] and [Command Shells][hugow-test].
 +* [Victor Hugo][]. Victor Hugo is a Hugo boilerplate for creating truly epic websites using Webpack as an asset pipeline. Victor Hugo uses post-css and Babel for CSS and JavaScript, respectively, and is actively maintained.
 +* [GOHUGO AMP][]. GoHugo AMP is a starter theme that aims to make it easy to adopt [Google's AMP Project][amp]. The starter kit comes with 40+ shortcodes and partials plus automatic structured data. The project also includes a [separate site with extensive documentation][gohugodocs].
 +* [Blaupause][]. Blaupause is a developer-friendly Hugo starter kit based on Gulp tasks. It comes ES6-ready with several helpers for SVG and fonts and basic structure for HTML, SCSS, and JavaScript.
 +* [hugulp][]. hugulp is a tool to optimize the assets of a Hugo website. The main idea is to recreate the famous Ruby on Rails Asset Pipeline, which minifies, concatenates and fingerprints the assets used in your website.
 +* [Atlas][]. Atlas is a Hugo boilerplate designed to speed up development with support for Netlify, Hugo Pipes, SCSS & more. It's actively maintained and contributions are always welcome.
++* [Hyas][]. Hyas is a Hugo starter helping you build modern websites that are secure, fast, and SEO-ready — by default. It is Netlify-ready (functions, redirects, headers) and comes with [documentation](https://gethyas.com/) to easily make it your own.
 +
 +
 +[addkit]: https://github.com/gohugoio/hugo/edit/master/docs/content/en/tools/starter-kits.md
 +[amp]: https://amp.dev
 +[Blaupause]: https://github.com/fspoettel/blaupause
 +[GOHUGO AMP]: https://github.com/wildhaber/gohugo-amp
 +[gohugodocs]: https://gohugo-amp.gohugohq.com/
 +[hugow]: https://github.com/khos2ow/hugo-wrapper
 +[hugow-test]: https://github.com/khos2ow/hugo-wrapper#tested-on
 +[hugulp]: https://github.com/jbrodriguez/hugulp
 +[Victor Hugo]: https://github.com/netlify/victor-hugo
 +[Atlas]: https://github.com/indigotree/atlas
++[Hyas]: https://github.com/h-enk/hyas
index d0dc9ded3c6392d18dccbbee6bed753300fd0bfa,0000000000000000000000000000000000000000..913d7965b616d457c579c055c1169e03d1ec7b50
mode 100644,000000..100644
--- /dev/null
@@@ -1,31 -1,0 +1,31 @@@
- HUGO_VERSION = "0.77.0"
 +[build]
 +publish = "public"
 +command = "hugo --gc --minify"
 +
 +[context.production.environment]
- HUGO_VERSION = "0.77.0"
++HUGO_VERSION = "0.78.2"
 +HUGO_ENV = "production"
 +HUGO_ENABLEGITINFO = "true"
 +
 +[context.split1]
 +command = "hugo --gc --minify --enableGitInfo"
 +
 +[context.split1.environment]
- HUGO_VERSION = "0.77.0"
++HUGO_VERSION = "0.78.2"
 +HUGO_ENV = "production"
 +
 +[context.deploy-preview]
 +command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
 +
 +[context.deploy-preview.environment]
- HUGO_VERSION = "0.77.0"
++HUGO_VERSION = "0.78.2"
 +
 +[context.branch-deploy]
 +command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
 +
 +[context.branch-deploy.environment]
++HUGO_VERSION = "0.78.2"
 +
 +[context.next.environment]
 +HUGO_ENABLEGITINFO = "true"
 +
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..86f7f01deea1c21df40da4959ee8dc26fc3ce452
new file mode 100644 (file)
Binary files differ
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..b666dbafc7949aa1aeaa839a3baaca13692d1d78
new file mode 100644 (file)
Binary files differ
index 7d1a043e810119515e5ea95856a5c38e7b9656cc,0000000000000000000000000000000000000000..3c744871b216bee5f68e415e353407771ed1b6a2
mode 100644,000000..100644
--- /dev/null
@@@ -1,634 -1,0 +1,1 @@@
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
- <svg width="1800px" height="100%" viewBox="0 0 3900 1080" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;">
-     <g transform="matrix(1.00649,0,0,1.00649,25.8182,35.9777)">
-         <g transform="matrix(1.50472,0,0,1.50472,15.1711,-25.8885)">
-             <path d="M119.631,36.154L203.822,85.066L203.822,181.395L119.631,229.184L35.578,181.395L35.578,85.066L119.631,36.154Z" style="fill:rgb(255,64,136);"/>
-             <path d="M208.665,80.243L210.425,83.301L210.425,183.178L208.632,186.258L121.373,235.788L117.884,235.786L30.766,186.255L28.975,183.176L28.975,83.302L30.733,80.245L117.848,29.552L121.409,29.551L208.665,80.243ZM42.181,88.863L42.181,177.554L119.634,221.59L197.22,177.551L197.22,88.866L119.634,43.792L42.181,88.863Z" style="fill:rgb(201,23,126);"/>
-         </g>
-         <g transform="matrix(1.41079,0,0,1.59861,3.82297,88.2168)">
-             <path d="M179.238,106.552L154.758,106.552L154.758,62.2L112.134,62.2L112.134,106.552L87.654,106.552L87.654,1.648L112.134,1.648L112.134,45.496L154.758,45.496L154.758,1.648L179.238,1.648L179.238,106.552Z" style="fill:white;fill-rule:nonzero;"/>
-         </g>
-     </g>
-     <g transform="matrix(1.17016,0,0,1.00319,-96.1682,5.61636)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,131,192);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM764.103,105.938L764.103,344.801L1242.29,344.801L1242.29,105.938L764.103,105.938Z"/>
-     </g>
-     <g transform="matrix(0.565324,0,0,0.565324,625.187,85.961)">
-         <path d="M468.111,106.218L482.028,106.218L482.028,227.059L468.111,227.059L468.111,171.561L395.64,171.561L395.64,227.059L381.893,227.059L381.893,106.218L395.64,106.218L395.64,159.85L468.111,159.85L468.111,106.218Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M524.288,222.816C518.179,219.196 513.455,214.047 510.117,207.372C506.779,200.696 505.11,192.889 505.11,183.95C505.11,175.012 506.779,167.204 510.117,160.529C513.455,153.853 518.179,148.705 524.288,145.084C530.398,141.463 537.47,139.653 545.504,139.653C553.537,139.653 560.609,141.463 566.719,145.084C572.829,148.705 577.552,153.853 580.89,160.529C584.228,167.204 585.897,175.012 585.897,183.95C585.897,192.889 584.228,200.696 580.89,207.372C577.552,214.047 572.829,219.196 566.719,222.816C560.609,226.437 553.537,228.247 545.504,228.247C537.47,228.247 530.398,226.437 524.288,222.816ZM565.021,208.475C569.547,202.874 571.81,194.699 571.81,183.95C571.81,173.541 569.491,165.479 564.852,159.765C560.213,154.051 553.763,151.194 545.504,151.194C537.131,151.194 530.625,154.051 525.986,159.765C521.347,165.479 519.027,173.541 519.027,183.95C519.027,194.699 521.318,202.874 525.901,208.475C530.483,214.076 537.018,216.876 545.504,216.876C553.99,216.876 560.496,214.076 565.021,208.475Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M730.329,173.427L730.329,227.059L716.582,227.059L716.582,174.106C716.582,166.073 715.196,160.246 712.424,156.625C709.652,153.004 705.154,151.194 698.931,151.194C691.69,151.194 686.032,153.627 681.959,158.492C677.886,163.357 675.849,169.977 675.849,178.349L675.849,227.059L662.102,227.059L662.102,174.106C662.102,166.186 660.687,160.387 657.859,156.71C655.03,153.033 650.504,151.194 644.281,151.194C637.04,151.194 631.354,153.627 627.224,158.492C623.094,163.357 621.029,169.977 621.029,178.349L621.029,227.059L607.282,227.059L607.282,165.62C607.282,156.795 606.829,148.818 605.924,141.69L618.993,141.69L620.35,156.625C622.726,151.194 626.262,147.008 630.958,144.066C635.654,141.124 641.113,139.653 647.336,139.653C654.125,139.653 659.669,141.011 663.969,143.726C668.268,146.442 671.436,150.628 673.473,156.286C676.075,151.194 679.894,147.149 684.929,144.151C689.964,141.152 695.65,139.653 701.986,139.653C720.882,139.653 730.329,150.911 730.329,173.427Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M827.919,183.95L765.292,183.95C765.405,194.812 767.923,203.015 772.844,208.56C777.766,214.104 784.923,216.876 794.314,216.876C804.271,216.876 813.436,213.538 821.809,206.862L826.391,216.876C822.657,220.384 817.877,223.156 812.05,225.192C806.223,227.229 800.254,228.247 794.144,228.247C780.793,228.247 770.327,224.315 762.746,216.452C755.165,208.588 751.375,197.811 751.375,184.12C751.375,175.408 753.072,167.685 756.466,160.953C759.861,154.221 764.613,148.988 770.723,145.254C776.833,141.52 783.791,139.653 791.599,139.653C802.913,139.653 811.795,143.359 818.245,150.77C824.694,158.181 827.919,168.392 827.919,181.404L827.919,183.95ZM774.372,156.795C769.903,161.094 767.046,167.148 765.801,174.955L815.529,174.955C814.85,166.922 812.502,160.812 808.486,156.625C804.469,152.439 798.897,150.345 791.768,150.345C784.64,150.345 778.841,152.495 774.372,156.795Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M911.252,145.254C917.022,148.988 921.491,154.221 924.66,160.953C927.828,167.685 929.412,175.464 929.412,184.29C929.412,193.115 927.828,200.837 924.66,207.456C921.491,214.076 917.05,219.196 911.337,222.816C905.623,226.437 898.975,228.247 891.394,228.247C884.719,228.247 878.892,226.776 873.913,223.835C868.935,220.893 865.144,216.706 862.542,211.275L862.542,263.719L848.794,263.719L848.794,165.62C848.794,156.795 848.342,148.818 847.437,141.69L860.505,141.69L861.863,158.153C864.239,152.269 868.001,147.715 873.149,144.49C878.298,141.265 884.379,139.653 891.394,139.653C898.862,139.653 905.481,141.52 911.252,145.254ZM908.282,208.39C912.864,202.733 915.155,194.699 915.155,184.29C915.155,173.88 912.836,165.762 908.197,159.935C903.558,154.108 897.108,151.194 888.849,151.194C880.362,151.194 873.857,154.023 869.331,159.68C864.805,165.337 862.542,173.427 862.542,183.95C862.542,194.473 864.805,202.591 869.331,208.305C873.857,214.019 880.362,216.876 888.849,216.876C897.221,216.876 903.699,214.047 908.282,208.39Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1025.81,141.69L1025.81,227.059L1012.24,227.059L1012.24,211.615C1009.75,216.933 1005.98,221.034 1000.95,223.919C995.914,226.805 990.059,228.247 983.383,228.247C975.802,228.247 969.155,226.437 963.441,222.816C957.727,219.196 953.314,214.076 950.203,207.456C947.091,200.837 945.535,193.115 945.535,184.29C945.535,175.464 947.119,167.685 950.287,160.953C953.456,154.221 957.897,148.988 963.61,145.254C969.324,141.52 975.915,139.653 983.383,139.653C990.059,139.653 995.886,141.124 1000.86,144.066C1005.84,147.008 1009.63,151.138 1012.24,156.455L1012.24,141.69L1025.81,141.69ZM1005.45,208.305C1009.97,202.591 1012.24,194.473 1012.24,183.95C1012.24,173.427 1009.97,165.337 1005.45,159.68C1000.92,154.023 994.471,151.194 986.098,151.194C977.726,151.194 971.191,154.108 966.496,159.935C961.8,165.762 959.452,173.88 959.452,184.29C959.452,194.699 961.772,202.733 966.411,208.39C971.05,214.047 977.612,216.876 986.098,216.876C994.471,216.876 1000.92,214.019 1005.45,208.305Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1128.49,141.69L1128.49,226.38C1128.49,239.053 1125.24,248.642 1118.74,255.148C1112.23,261.654 1102.64,264.907 1089.97,264.907C1076.96,264.907 1065.75,261.965 1056.36,256.081L1058.74,244.88C1064.17,247.935 1069.29,250.141 1074.1,251.499C1078.91,252.857 1084.2,253.536 1089.97,253.536C1098.23,253.536 1104.45,251.358 1108.64,247.001C1112.82,242.645 1114.92,236.168 1114.92,227.568L1114.92,207.372C1112.31,212.803 1108.5,217.017 1103.46,220.016C1098.42,223.014 1092.46,224.513 1085.56,224.513C1078.09,224.513 1071.44,222.76 1065.61,219.252C1059.79,215.745 1055.29,210.766 1052.12,204.317C1048.95,197.867 1047.37,190.456 1047.37,182.083C1047.37,173.71 1048.95,166.299 1052.12,159.85C1055.29,153.4 1059.79,148.422 1065.61,144.914C1071.44,141.407 1078.09,139.653 1085.56,139.653C1092.34,139.653 1098.26,141.124 1103.29,144.066C1108.33,147.008 1112.14,151.138 1114.75,156.455L1114.75,141.69L1128.49,141.69ZM1107.7,204.741C1112.4,199.253 1114.75,191.701 1114.75,182.083C1114.75,172.466 1112.4,164.913 1107.7,159.426C1103.01,153.938 1096.53,151.194 1088.27,151.194C1079.9,151.194 1073.31,153.938 1068.5,159.426C1063.69,164.913 1061.29,172.466 1061.29,182.083C1061.29,191.701 1063.69,199.253 1068.5,204.741C1073.31,210.229 1079.9,212.972 1088.27,212.972C1096.53,212.972 1103.01,210.229 1107.7,204.741Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1226.42,183.95L1163.8,183.95C1163.91,194.812 1166.43,203.015 1171.35,208.56C1176.27,214.104 1183.43,216.876 1192.82,216.876C1202.78,216.876 1211.94,213.538 1220.31,206.862L1224.89,216.876C1221.16,220.384 1216.38,223.156 1210.55,225.192C1204.73,227.229 1198.76,228.247 1192.65,228.247C1179.3,228.247 1168.83,224.315 1161.25,216.452C1153.67,208.588 1149.88,197.811 1149.88,184.12C1149.88,175.408 1151.58,167.685 1154.97,160.953C1158.37,154.221 1163.12,148.988 1169.23,145.254C1175.34,141.52 1182.3,139.653 1190.1,139.653C1201.42,139.653 1210.3,143.359 1216.75,150.77C1223.2,158.181 1226.42,168.392 1226.42,181.404L1226.42,183.95ZM1172.88,156.795C1168.41,161.094 1165.55,167.148 1164.31,174.955L1214.03,174.955C1213.35,166.922 1211.01,160.812 1206.99,156.625C1202.97,152.439 1197.4,150.345 1190.27,150.345C1183.14,150.345 1177.35,152.495 1172.88,156.795Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.303961,0,0,0.303961,833.43,229.447)">
-         <path d="M-14.066,227.059L-4.731,106.218L17.333,106.218L9.016,209.069L65.533,209.069L64.176,227.059L-14.066,227.059Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M79.111,227.059L85.9,141.35L107.115,141.35L100.326,227.059L79.111,227.059ZM87.597,102.484L111.188,102.484L109.661,123.36L86.07,123.36L87.597,102.484Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M118.486,217.555L125.784,202.789C135.402,209.465 145.642,212.803 156.504,212.803C167.479,212.803 172.967,209.635 172.967,203.298C172.967,200.357 171.524,198.122 168.639,196.594C165.754,195.067 161.143,193.341 154.807,191.418C148.81,189.721 143.831,188.023 139.871,186.326C135.911,184.629 132.545,182.168 129.773,178.943C127.001,175.719 125.615,171.504 125.615,166.299C125.615,158.153 128.896,151.59 135.458,146.612C142.021,141.633 150.733,139.144 161.595,139.144C167.932,139.144 174.042,140.106 179.925,142.029C185.809,143.953 190.731,146.612 194.691,150.006L187.563,164.432C179.077,157.983 170.308,154.758 161.256,154.758C155.938,154.758 151.865,155.607 149.036,157.304C146.207,159.001 144.793,161.49 144.793,164.772C144.793,167.827 146.236,170.118 149.121,171.645C152.006,173.173 156.673,174.898 163.123,176.822C169.346,178.632 174.381,180.358 178.228,181.998C182.075,183.639 185.385,186.1 188.157,189.381C190.929,192.663 192.315,196.906 192.315,202.11C192.315,210.37 189.034,216.819 182.471,221.458C175.908,226.097 167.083,228.417 155.995,228.417C142.077,228.417 129.575,224.796 118.486,217.555Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M237.121,195.661C236.329,205.731 240.572,210.766 249.85,210.766C252.453,210.766 255.394,210.37 258.676,209.578L257.318,226.211C253.584,227.568 248.945,228.247 243.401,228.247C234.462,228.247 227.617,225.899 222.865,221.204C218.112,216.508 215.736,209.691 215.736,200.753C215.736,199.055 215.793,197.754 215.906,196.849L218.961,157.304L202.498,157.304L203.856,141.35L220.149,141.35L221.846,120.475L243.57,113.346L241.364,141.35L264.276,141.35L262.919,157.304L240.176,157.304L237.121,195.661Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M266.992,217.555L274.29,202.789C283.907,209.465 294.147,212.803 305.009,212.803C315.985,212.803 321.472,209.635 321.472,203.298C321.472,200.357 320.03,198.122 317.144,196.594C314.259,195.067 309.648,193.341 303.312,191.418C297.315,189.721 292.337,188.023 288.377,186.326C284.417,184.629 281.05,182.168 278.278,178.943C275.506,175.719 274.12,171.504 274.12,166.299C274.12,158.153 277.401,151.59 283.964,146.612C290.527,141.633 299.239,139.144 310.101,139.144C316.437,139.144 322.547,140.106 328.431,142.029C334.314,143.953 339.236,146.612 343.197,150.006L336.068,164.432C327.582,157.983 318.813,154.758 309.762,154.758C304.444,154.758 300.37,155.607 297.542,157.304C294.713,159.001 293.299,161.49 293.299,164.772C293.299,167.827 294.741,170.118 297.627,171.645C300.512,173.173 305.179,174.898 311.628,176.822C317.852,178.632 322.887,180.358 326.734,181.998C330.581,183.639 333.89,186.1 336.662,189.381C339.434,192.663 340.82,196.906 340.82,202.11C340.82,210.37 337.539,216.819 330.977,221.458C324.414,226.097 315.589,228.417 304.5,228.417C290.583,228.417 278.08,224.796 266.992,217.555Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M401.241,213.142L406.502,202.45C412.499,207.541 418.609,211.162 424.832,213.312C431.055,215.462 438.297,216.537 446.556,216.537C456.287,216.537 463.783,214.641 469.044,210.851C474.306,207.06 476.936,201.714 476.936,194.812C476.936,190.739 475.664,187.429 473.118,184.884C470.572,182.338 467.234,180.329 463.104,178.859C458.974,177.388 453.458,175.86 446.556,174.276C437.278,172.239 429.641,170.033 423.644,167.657C417.647,165.281 412.782,161.858 409.048,157.389C405.314,152.92 403.447,147.064 403.447,139.823C403.447,132.921 405.258,126.839 408.878,121.578C412.499,116.316 417.619,112.215 424.238,109.273C430.857,106.331 438.58,104.86 447.405,104.86C455.778,104.86 463.585,106.162 470.826,108.764C478.068,111.366 484.178,115.157 489.156,120.135L483.725,130.828C478.068,125.962 472.326,122.398 466.499,120.135C460.672,117.872 454.307,116.741 447.405,116.741C438.014,116.741 430.659,118.749 425.341,122.766C420.023,126.783 417.364,132.299 417.364,139.314C417.364,145.424 419.684,150.006 424.323,153.061C428.962,156.116 436.09,158.775 445.708,161.038C456.117,163.527 464.292,165.818 470.232,167.912C476.173,170.005 481.123,173.173 485.083,177.416C489.043,181.659 491.023,187.288 491.023,194.303C491.023,201.092 489.213,207.06 485.592,212.209C481.971,217.357 476.795,221.345 470.063,224.174C463.33,227.003 455.438,228.417 446.387,228.417C427.491,228.417 412.443,223.325 401.241,213.142Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M583.521,183.95L520.894,183.95C521.007,194.812 523.525,203.015 528.447,208.56C533.369,214.104 540.525,216.876 549.916,216.876C559.873,216.876 569.038,213.538 577.411,206.862L581.994,216.876C578.26,220.384 573.479,223.156 567.652,225.192C561.825,227.229 555.857,228.247 549.747,228.247C536.395,228.247 525.929,224.315 518.348,216.452C510.767,208.588 506.977,197.811 506.977,184.12C506.977,175.408 508.674,167.685 512.069,160.953C515.463,154.221 520.215,148.988 526.325,145.254C532.435,141.52 539.394,139.653 547.201,139.653C558.515,139.653 567.398,143.359 573.847,150.77C580.296,158.181 583.521,168.392 583.521,181.404L583.521,183.95ZM529.974,156.795C525.505,161.094 522.648,167.148 521.403,174.955L571.131,174.955C570.453,166.922 568.105,160.812 564.088,156.625C560.071,152.439 554.499,150.345 547.37,150.345C540.242,150.345 534.443,152.495 529.974,156.795Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M618.568,222.816C612.402,219.196 607.65,214.076 604.312,207.456C600.974,200.837 599.305,193.115 599.305,184.29C599.305,175.464 601.002,167.685 604.397,160.953C607.791,154.221 612.628,148.988 618.908,145.254C625.187,141.52 632.514,139.653 640.887,139.653C646.657,139.653 652.23,140.643 657.604,142.623C662.979,144.603 667.42,147.347 670.927,150.855L666.345,161.038C662.045,157.643 657.887,155.154 653.87,153.57C649.853,151.986 645.752,151.194 641.565,151.194C632.853,151.194 626.008,154.108 621.029,159.935C616.051,165.762 613.562,173.88 613.562,184.29C613.562,194.586 616.023,202.591 620.944,208.305C625.866,214.019 632.74,216.876 641.565,216.876C645.752,216.876 649.853,216.084 653.87,214.5C657.887,212.916 662.045,210.427 666.345,207.032L670.927,217.215C667.306,220.61 662.752,223.297 657.265,225.277C651.777,227.257 646.091,228.247 640.208,228.247C631.948,228.247 624.735,226.437 618.568,222.816Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M706.908,152.552L706.908,199.225C706.908,205.561 708.209,210.002 710.812,212.548C713.414,215.094 717.091,216.367 721.843,216.367C725.011,216.367 728.066,215.858 731.008,214.839L731.008,226.55C727.501,227.682 723.541,228.247 719.128,228.247C710.981,228.247 704.617,225.956 700.034,221.374C695.452,216.791 693.161,210.031 693.161,201.092L693.161,152.552L676.528,152.552L676.528,141.69L693.161,141.69L693.161,119.796L706.908,114.874L706.908,141.69L731.348,141.69L731.348,152.552L706.908,152.552Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M747.98,227.059L747.98,141.69L761.728,141.69L761.728,227.059L747.98,227.059ZM746.623,105.539L763.425,105.539L763.425,121.154L746.623,121.154L746.623,105.539Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M802.461,222.816C796.351,219.196 791.627,214.047 788.289,207.372C784.951,200.696 783.282,192.889 783.282,183.95C783.282,175.012 784.951,167.204 788.289,160.529C791.627,153.853 796.351,148.705 802.461,145.084C808.571,141.463 815.642,139.653 823.676,139.653C831.709,139.653 838.781,141.463 844.891,145.084C851.001,148.705 855.725,153.853 859.063,160.529C862.4,167.204 864.069,175.012 864.069,183.95C864.069,192.889 862.4,200.696 859.063,207.372C855.725,214.047 851.001,219.196 844.891,222.816C838.781,226.437 831.709,228.247 823.676,228.247C815.642,228.247 808.571,226.437 802.461,222.816ZM843.194,208.475C847.72,202.874 849.982,194.699 849.982,183.95C849.982,173.541 847.663,165.479 843.024,159.765C838.385,154.051 831.936,151.194 823.676,151.194C815.303,151.194 808.797,154.051 804.158,159.765C799.519,165.479 797.199,173.541 797.199,183.95C797.199,194.699 799.491,202.874 804.073,208.475C808.655,214.076 815.19,216.876 823.676,216.876C832.162,216.876 838.668,214.076 843.194,208.475Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M958.773,173.427L958.773,227.059L945.026,227.059L945.026,174.106C945.026,166.186 943.442,160.387 940.274,156.71C937.106,153.033 932.127,151.194 925.338,151.194C917.418,151.194 911.082,153.627 906.33,158.492C901.578,163.357 899.201,169.92 899.201,178.18L899.201,227.059L885.454,227.059L885.454,165.62C885.454,156.795 885.002,148.818 884.096,141.69L897.165,141.69L898.523,156.965C901.125,151.42 905.029,147.149 910.233,144.151C915.438,141.152 921.378,139.653 928.054,139.653C948.534,139.653 958.773,150.911 958.773,173.427Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M979.479,217.215L984.062,207.032C988.701,210.653 993.396,213.255 998.149,214.839C1002.9,216.423 1008.22,217.215 1014.1,217.215C1020.55,217.215 1025.44,216.112 1028.78,213.906C1032.12,211.7 1033.79,208.503 1033.79,204.317C1033.79,200.922 1032.66,198.207 1030.4,196.17C1028.13,194.133 1024.4,192.549 1019.19,191.418L1004.77,188.023C997.639,186.439 992.124,183.611 988.22,179.537C984.316,175.464 982.365,170.599 982.365,164.941C982.365,157.474 985.363,151.392 991.36,146.696C997.357,142.001 1005.28,139.653 1015.12,139.653C1021.12,139.653 1026.78,140.615 1032.09,142.538C1037.41,144.462 1041.88,147.234 1045.5,150.855L1040.92,160.868C1032.88,154.192 1024.29,150.855 1015.12,150.855C1009.01,150.855 1004.29,152.014 1000.95,154.334C997.611,156.653 995.942,159.906 995.942,164.093C995.942,167.6 996.989,170.373 999.082,172.409C1001.18,174.446 1004.54,176.03 1009.18,177.161L1023.61,180.725C1031.53,182.536 1037.41,185.336 1041.26,189.127C1045.11,192.917 1047.03,197.867 1047.03,203.977C1047.03,211.332 1044.03,217.215 1038.03,221.628C1032.04,226.041 1023.89,228.247 1013.59,228.247C999.224,228.247 987.852,224.57 979.479,217.215Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1207.25,227.059L1194.01,196L1130.87,196L1117.46,227.059L1103.04,227.059L1156.16,106.218L1168.38,106.218L1221.5,227.059L1207.25,227.059ZM1135.79,184.459L1189.08,184.459L1162.44,122.342L1135.79,184.459Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1256.29,209.578L1256.29,221.968C1256.29,226.72 1255.5,231.076 1253.92,235.036C1252.33,238.996 1249.67,242.843 1245.94,246.577L1239.49,241.655C1243.9,236.564 1246.39,231.698 1246.96,227.059L1238.81,227.059L1238.81,209.578L1256.29,209.578Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1411.08,175.379C1414.93,180.414 1416.85,186.666 1416.85,194.133C1416.85,204.656 1413.34,212.774 1406.33,218.488C1399.31,224.202 1389.41,227.059 1376.63,227.059L1326.39,227.059L1326.39,106.218L1374.93,106.218C1387.26,106.218 1396.85,108.962 1403.7,114.45C1410.54,119.937 1413.96,127.716 1413.96,137.786C1413.96,144.236 1412.3,149.808 1408.96,154.504C1405.62,159.199 1400.95,162.679 1394.96,164.941C1401.86,166.865 1407.23,170.344 1411.08,175.379ZM1340.14,159.85L1372.72,159.85C1381.77,159.85 1388.62,158.039 1393.26,154.419C1397.9,150.798 1400.22,145.48 1400.22,138.465C1400.22,124.661 1391.05,117.759 1372.72,117.759L1340.14,117.759L1340.14,159.85ZM1396.4,210.172C1400.87,206.608 1403.1,201.149 1403.1,193.794C1403.1,178.972 1393.88,171.561 1375.44,171.561L1340.14,171.561L1340.14,215.518L1375.44,215.518C1384.94,215.518 1391.93,213.736 1396.4,210.172Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1453.85,209.578L1453.85,221.968C1453.85,226.72 1453.06,231.076 1451.47,235.036C1449.89,238.996 1447.23,242.843 1443.5,246.577L1437.05,241.655C1441.46,236.564 1443.95,231.698 1444.51,227.059L1436.37,227.059L1436.37,209.578L1453.85,209.578Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1545.75,220.949C1537.32,215.971 1530.85,208.814 1526.32,199.48C1521.79,190.145 1519.53,179.141 1519.53,166.469C1519.53,153.796 1521.79,142.849 1526.32,133.628C1530.85,124.407 1537.32,117.307 1545.75,112.328C1554.18,107.35 1564.11,104.86 1575.54,104.86C1583.91,104.86 1591.58,106.133 1598.54,108.679C1605.49,111.225 1611.52,115.044 1616.61,120.135L1611.35,130.828C1605.58,125.849 1599.89,122.285 1594.29,120.135C1588.69,117.985 1582.5,116.911 1575.71,116.911C1562.47,116.911 1552.2,121.21 1544.9,129.809C1537.61,138.408 1533.96,150.628 1533.96,166.469C1533.96,182.423 1537.58,194.727 1544.82,203.383C1552.06,212.039 1562.36,216.367 1575.71,216.367C1582.5,216.367 1588.69,215.292 1594.29,213.142C1599.89,210.992 1605.58,207.428 1611.35,202.45L1616.61,213.142C1611.52,218.234 1605.49,222.052 1598.54,224.598C1591.58,227.144 1583.91,228.417 1575.54,228.417C1564.11,228.417 1554.18,225.928 1545.75,220.949Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(1.17016,0,0,0.922959,-810.571,447.236)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(201,23,126);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM764.103,106.414L764.103,344.325L1242.29,344.325L1242.29,106.414L764.103,106.414Z"/>
-     </g>
-     <g transform="matrix(0.313837,0,0,0.703144,-159.104,767.346)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM776.928,108.277L776.928,342.462L1229.46,342.462L1229.46,108.277L776.928,108.277Z"/>
-     </g>
-     <g transform="matrix(0.313837,0,0,0.703144,49.662,767.346)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM776.928,108.277L776.928,342.462L1229.46,342.462L1229.46,108.277L776.928,108.277Z"/>
-     </g>
-     <g transform="matrix(0.313837,0,0,0.703144,258.428,767.346)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM776.928,108.277L776.928,342.462L1229.46,342.462L1229.46,108.277L776.928,108.277Z"/>
-     </g>
-     <g transform="matrix(0.313837,0,0,0.703144,552.302,769.023)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM776.928,108.277L776.928,342.462L1229.46,342.462L1229.46,108.277L776.928,108.277Z"/>
-     </g>
-     <g transform="matrix(0.313837,0,0,0.703144,761.069,769.023)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM776.928,108.277L776.928,342.462L1229.46,342.462L1229.46,108.277L776.928,108.277Z"/>
-     </g>
-     <g transform="matrix(0.313837,0,0,0.703144,974.126,769.023)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM776.928,108.277L776.928,342.462L1229.46,342.462L1229.46,108.277L776.928,108.277Z"/>
-     </g>
-     <g transform="matrix(0.313837,0,0,0.703144,1269.17,766.789)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM776.928,108.277L776.928,342.462L1229.46,342.462L1229.46,108.277L776.928,108.277Z"/>
-     </g>
-     <g transform="matrix(0.313837,0,0,0.703144,1477.94,766.789)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM776.928,108.277L776.928,342.462L1229.46,342.462L1229.46,108.277L776.928,108.277Z"/>
-     </g>
-     <g transform="matrix(0.313837,0,0,0.703144,1686.7,766.789)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM776.928,108.277L776.928,342.462L1229.46,342.462L1229.46,108.277L776.928,108.277Z"/>
-     </g>
-     <g transform="matrix(0.617288,0,0,0.617288,-133.676,514.244)">
-         <path d="M435.015,213.142L440.277,202.45C446.274,207.541 452.383,211.162 458.607,213.312C464.83,215.462 472.071,216.537 480.331,216.537C490.061,216.537 497.557,214.641 502.819,210.851C508.08,207.06 510.711,201.714 510.711,194.812C510.711,190.739 509.438,187.429 506.892,184.884C504.346,182.338 501.008,180.329 496.879,178.859C492.749,177.388 487.233,175.86 480.331,174.276C471.053,172.239 463.415,170.033 457.419,167.657C451.422,165.281 446.556,161.858 442.823,157.389C439.089,152.92 437.222,147.064 437.222,139.823C437.222,132.921 439.032,126.839 442.653,121.578C446.274,116.316 451.393,112.215 458.013,109.273C464.632,106.331 472.354,104.86 481.179,104.86C489.552,104.86 497.359,106.162 504.601,108.764C511.842,111.366 517.952,115.157 522.931,120.135L517.5,130.828C511.842,125.962 506.1,122.398 500.273,120.135C494.446,117.872 488.081,116.741 481.179,116.741C471.788,116.741 464.434,118.749 459.116,122.766C453.798,126.783 451.139,132.299 451.139,139.314C451.139,145.424 453.458,150.006 458.097,153.061C462.736,156.116 469.865,158.775 479.482,161.038C489.892,163.527 498.067,165.818 504.007,167.912C509.947,170.005 514.897,173.173 518.857,177.416C522.818,181.659 524.798,187.288 524.798,194.303C524.798,201.092 522.987,207.06 519.367,212.209C515.746,217.357 510.569,221.345 503.837,224.174C497.105,227.003 489.213,228.417 480.161,228.417C461.266,228.417 446.217,223.325 435.015,213.142Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M617.295,183.95L554.668,183.95C554.782,194.812 557.299,203.015 562.221,208.56C567.143,214.104 574.3,216.876 583.691,216.876C593.648,216.876 602.813,213.538 611.185,206.862L615.768,216.876C612.034,220.384 607.254,223.156 601.427,225.192C595.599,227.229 589.631,228.247 583.521,228.247C570.17,228.247 559.704,224.315 552.123,216.452C544.542,208.588 540.751,197.811 540.751,184.12C540.751,175.408 542.449,167.685 545.843,160.953C549.237,154.221 553.99,148.988 560.1,145.254C566.209,141.52 573.168,139.653 580.975,139.653C592.29,139.653 601.172,143.359 607.621,150.77C614.071,158.181 617.295,168.392 617.295,181.404L617.295,183.95ZM563.749,156.795C559.279,161.094 556.422,167.148 555.178,174.955L604.906,174.955C604.227,166.922 601.879,160.812 597.862,156.625C593.846,152.439 588.273,150.345 581.145,150.345C574.017,150.345 568.218,152.495 563.749,156.795Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M652.343,222.816C646.176,219.196 641.424,214.076 638.086,207.456C634.748,200.837 633.079,193.115 633.079,184.29C633.079,175.464 634.777,167.685 638.171,160.953C641.565,154.221 646.403,148.988 652.682,145.254C658.962,141.52 666.288,139.653 674.661,139.653C680.432,139.653 686.004,140.643 691.378,142.623C696.753,144.603 701.194,147.347 704.702,150.855L700.119,161.038C695.82,157.643 691.661,155.154 687.645,153.57C683.628,151.986 679.526,151.194 675.34,151.194C666.628,151.194 659.782,154.108 654.804,159.935C649.825,165.762 647.336,173.88 647.336,184.29C647.336,194.586 649.797,202.591 654.719,208.305C659.641,214.019 666.514,216.876 675.34,216.876C679.526,216.876 683.628,216.084 687.645,214.5C691.661,212.916 695.82,210.427 700.119,207.032L704.702,217.215C701.081,220.61 696.527,223.297 691.039,225.277C685.551,227.257 679.866,228.247 673.982,228.247C665.722,228.247 658.509,226.437 652.343,222.816Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M740.682,152.552L740.682,199.225C740.682,205.561 741.984,210.002 744.586,212.548C747.188,215.094 750.866,216.367 755.618,216.367C758.786,216.367 761.841,215.858 764.783,214.839L764.783,226.55C761.275,227.682 757.315,228.247 752.902,228.247C744.756,228.247 738.391,225.956 733.809,221.374C729.226,216.791 726.935,210.031 726.935,201.092L726.935,152.552L710.302,152.552L710.302,141.69L726.935,141.69L726.935,119.796L740.682,114.874L740.682,141.69L765.122,141.69L765.122,152.552L740.682,152.552Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M781.755,227.059L781.755,141.69L795.502,141.69L795.502,227.059L781.755,227.059ZM780.397,105.539L797.199,105.539L797.199,121.154L780.397,121.154L780.397,105.539Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M836.235,222.816C830.125,219.196 825.401,214.047 822.063,207.372C818.726,200.696 817.057,192.889 817.057,183.95C817.057,175.012 818.726,167.204 822.063,160.529C825.401,153.853 830.125,148.705 836.235,145.084C842.345,141.463 849.417,139.653 857.45,139.653C865.484,139.653 872.555,141.463 878.665,145.084C884.775,148.705 889.499,153.853 892.837,160.529C896.175,167.204 897.844,175.012 897.844,183.95C897.844,192.889 896.175,200.696 892.837,207.372C889.499,214.047 884.775,219.196 878.665,222.816C872.555,226.437 865.484,228.247 857.45,228.247C849.417,228.247 842.345,226.437 836.235,222.816ZM876.968,208.475C881.494,202.874 883.757,194.699 883.757,183.95C883.757,173.541 881.437,165.479 876.798,159.765C872.159,154.051 865.71,151.194 857.45,151.194C849.077,151.194 842.571,154.051 837.932,159.765C833.293,165.479 830.974,173.541 830.974,183.95C830.974,194.699 833.265,202.874 837.847,208.475C842.43,214.076 848.964,216.876 857.45,216.876C865.936,216.876 872.442,214.076 876.968,208.475Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M992.548,173.427L992.548,227.059L978.8,227.059L978.8,174.106C978.8,166.186 977.216,160.387 974.048,156.71C970.88,153.033 965.902,151.194 959.113,151.194C951.193,151.194 944.856,153.627 940.104,158.492C935.352,163.357 932.976,169.92 932.976,178.18L932.976,227.059L919.229,227.059L919.229,165.62C919.229,156.795 918.776,148.818 917.871,141.69L930.939,141.69L932.297,156.965C934.899,151.42 938.803,147.149 944.008,144.151C949.213,141.152 955.153,139.653 961.828,139.653C982.308,139.653 992.548,150.911 992.548,173.427Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1156.84,227.059L1143.6,196L1080.46,196L1067.06,227.059L1052.63,227.059L1105.75,106.218L1117.97,106.218L1171.09,227.059L1156.84,227.059ZM1085.38,184.459L1138.68,184.459L1112.03,122.342L1085.38,184.459Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.349245,0,0,0.349245,82.0207,649.5)">
-         <path d="M127.289,227.059L137.391,98.622L165.712,98.622L157.234,204.15L214.598,204.15L212.794,227.059L127.289,227.059Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M228.127,227.059L235.342,135.602L262.581,135.602L255.366,227.059L228.127,227.059ZM237.507,92.669L266.73,92.669L264.746,118.285L235.523,118.285L237.507,92.669Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M272.142,217.318L280.981,198.377C286.032,201.865 291.443,204.541 297.216,206.405C302.988,208.269 308.761,209.201 314.533,209.201C319.584,209.201 323.312,208.479 325.717,207.036C328.122,205.593 329.325,203.669 329.325,201.264C329.325,198.738 327.912,196.754 325.086,195.311C322.26,193.868 317.66,192.184 311.286,190.26C304.672,188.456 299.26,186.652 295.051,184.848C290.842,183.044 287.204,180.369 284.138,176.821C281.071,173.273 279.538,168.673 279.538,163.021C279.538,157.128 281.191,151.957 284.498,147.508C287.805,143.058 292.496,139.571 298.569,137.045C304.642,134.52 311.587,133.257 319.404,133.257C326.258,133.257 332.963,134.279 339.517,136.324C346.071,138.368 351.573,141.134 356.023,144.622L347.364,162.841C342.914,159.594 338.224,157.128 333.294,155.445C328.363,153.761 323.553,152.919 318.862,152.919C313.932,152.919 310.204,153.641 307.678,155.084C305.153,156.527 303.89,158.511 303.89,161.037C303.89,163.683 305.393,165.787 308.4,167.351C311.406,168.914 315.976,170.537 322.109,172.221C328.724,174.145 334.105,176.009 338.254,177.813C342.403,179.617 346.011,182.293 349.078,185.84C352.144,189.388 353.677,193.988 353.677,199.64C353.677,208.66 350.1,215.725 342.944,220.836C335.789,225.947 326.138,228.502 313.992,228.502C298.358,228.502 284.408,224.774 272.142,217.318Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M404.367,191.523C404.006,196.574 405.028,200.302 407.433,202.707C409.839,205.112 413.146,206.315 417.355,206.315C420.121,206.315 423.187,205.833 426.555,204.871L424.751,225.977C420.662,227.661 415.371,228.502 408.877,228.502C398.534,228.502 390.627,225.736 385.155,220.204C379.684,214.673 376.948,206.856 376.948,196.754C376.948,194.709 377.008,193.146 377.128,192.064L380.014,155.986L362.697,155.986L364.32,135.602L381.638,135.602L383.261,114.136L411.222,105.297L408.877,135.602L432.147,135.602L430.523,155.986L407.253,155.986L404.367,191.523Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M433.409,217.318L442.248,198.377C447.299,201.865 452.711,204.541 458.483,206.405C464.256,208.269 470.028,209.201 475.801,209.201C480.852,209.201 484.58,208.479 486.985,207.036C489.39,205.593 490.593,203.669 490.593,201.264C490.593,198.738 489.18,196.754 486.354,195.311C483.527,193.868 478.928,192.184 472.554,190.26C465.94,188.456 460.528,186.652 456.319,184.848C452.11,183.044 448.472,180.369 445.405,176.821C442.339,173.273 440.805,168.673 440.805,163.021C440.805,157.128 442.459,151.957 445.766,147.508C449.073,143.058 453.763,139.571 459.836,137.045C465.909,134.52 472.854,133.257 480.671,133.257C487.526,133.257 494.231,134.279 500.785,136.324C507.339,138.368 512.841,141.134 517.29,144.622L508.632,162.841C504.182,159.594 499.492,157.128 494.561,155.445C489.631,153.761 484.82,152.919 480.13,152.919C475.199,152.919 471.471,153.641 468.946,155.084C466.421,156.527 465.158,158.511 465.158,161.037C465.158,163.683 466.661,165.787 469.668,167.351C472.674,168.914 477.244,170.537 483.377,172.221C489.991,174.145 495.373,176.009 499.522,177.813C503.671,179.617 507.279,182.293 510.345,185.84C513.412,189.388 514.945,193.988 514.945,199.64C514.945,208.66 511.367,215.725 504.212,220.836C497.057,225.947 487.406,228.502 475.26,228.502C459.626,228.502 445.676,224.774 433.409,217.318Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M581.213,106.218L629.414,106.218C641.86,106.218 651.562,109.217 658.521,115.213C665.479,121.21 668.958,129.47 668.958,139.993C668.958,150.515 665.451,158.803 658.436,164.857C651.421,170.91 641.747,173.937 629.414,173.937L595.13,173.937L595.13,227.059L581.213,227.059L581.213,106.218ZM628.225,162.396C637.164,162.396 643.896,160.472 648.422,156.625C652.948,152.778 655.211,147.234 655.211,139.993C655.211,132.751 652.948,127.235 648.422,123.445C643.896,119.654 637.164,117.759 628.225,117.759L595.13,117.759L595.13,162.396L628.225,162.396Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M762.475,141.69L762.475,227.059L748.897,227.059L748.897,211.615C746.408,216.933 742.646,221.034 737.61,223.919C732.575,226.805 726.72,228.247 720.044,228.247C712.464,228.247 705.816,226.437 700.102,222.816C694.388,219.196 689.976,214.076 686.864,207.456C683.752,200.837 682.197,193.115 682.197,184.29C682.197,175.464 683.781,167.685 686.949,160.953C690.117,154.221 694.558,148.988 700.272,145.254C705.986,141.52 712.577,139.653 720.044,139.653C726.72,139.653 732.547,141.124 737.526,144.066C742.504,147.008 746.295,151.138 748.897,156.455L748.897,141.69L762.475,141.69ZM742.108,208.305C746.634,202.591 748.897,194.473 748.897,183.95C748.897,173.427 746.634,165.337 742.108,159.68C737.582,154.023 731.133,151.194 722.76,151.194C714.387,151.194 707.853,154.108 703.157,159.935C698.462,165.762 696.114,173.88 696.114,184.29C696.114,194.699 698.433,202.733 703.072,208.39C707.711,214.047 714.274,216.876 722.76,216.876C731.133,216.876 737.582,214.019 742.108,208.305Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M865.156,141.69L865.156,226.38C865.156,239.053 861.903,248.642 855.397,255.148C848.891,261.654 839.301,264.907 826.629,264.907C813.617,264.907 802.415,261.965 793.024,256.081L795.4,244.88C800.831,247.935 805.951,250.141 810.76,251.499C815.569,252.857 820.858,253.536 826.629,253.536C834.889,253.536 841.112,251.358 845.298,247.001C849.485,242.645 851.578,236.168 851.578,227.568L851.578,207.372C848.976,212.803 845.157,217.017 840.122,220.016C835.087,223.014 829.118,224.513 822.216,224.513C814.749,224.513 808.101,222.76 802.274,219.252C796.447,215.745 791.949,210.766 788.781,204.317C785.613,197.867 784.029,190.456 784.029,182.083C784.029,173.71 785.613,166.299 788.781,159.85C791.949,153.4 796.447,148.422 802.274,144.914C808.101,141.407 814.749,139.653 822.216,139.653C829.005,139.653 834.917,141.124 839.952,144.066C844.987,147.008 848.806,151.138 851.408,156.455L851.408,141.69L865.156,141.69ZM844.365,204.741C849.06,199.253 851.408,191.701 851.408,182.083C851.408,172.466 849.06,164.913 844.365,159.426C839.669,153.938 833.192,151.194 824.932,151.194C816.559,151.194 809.968,153.938 805.159,159.426C800.351,164.913 797.946,172.466 797.946,182.083C797.946,191.701 800.351,199.253 805.159,204.741C809.968,210.229 816.559,212.972 824.932,212.972C833.192,212.972 839.669,210.229 844.365,204.741Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M963.084,183.95L900.457,183.95C900.571,194.812 903.088,203.015 908.01,208.56C912.932,214.104 920.089,216.876 929.48,216.876C939.437,216.876 948.602,213.538 956.974,206.862L961.557,216.876C957.823,220.384 953.043,223.156 947.216,225.192C941.388,227.229 935.42,228.247 929.31,228.247C915.959,228.247 905.493,224.315 897.912,216.452C890.331,208.588 886.54,197.811 886.54,184.12C886.54,175.408 888.238,167.685 891.632,160.953C895.026,154.221 899.779,148.988 905.889,145.254C911.998,141.52 918.957,139.653 926.764,139.653C938.079,139.653 946.961,143.359 953.41,150.77C959.86,158.181 963.084,168.392 963.084,181.404L963.084,183.95ZM909.538,156.795C905.068,161.094 902.211,167.148 900.967,174.955L950.695,174.955C950.016,166.922 947.668,160.812 943.651,156.625C939.635,152.439 934.062,150.345 926.934,150.345C919.806,150.345 914.007,152.495 909.538,156.795Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M978.699,217.215L983.281,207.032C987.92,210.653 992.616,213.255 997.368,214.839C1002.12,216.423 1007.44,217.215 1013.32,217.215C1019.77,217.215 1024.66,216.112 1028,213.906C1031.34,211.7 1033.01,208.503 1033.01,204.317C1033.01,200.922 1031.88,198.207 1029.62,196.17C1027.35,194.133 1023.62,192.549 1018.41,191.418L1003.99,188.023C996.859,186.439 991.343,183.611 987.439,179.537C983.536,175.464 981.584,170.599 981.584,164.941C981.584,157.474 984.582,151.392 990.579,146.696C996.576,142.001 1004.5,139.653 1014.34,139.653C1020.34,139.653 1025.99,140.615 1031.31,142.538C1036.63,144.462 1041.1,147.234 1044.72,150.855L1040.14,160.868C1032.1,154.192 1023.5,150.855 1014.34,150.855C1008.23,150.855 1003.51,152.014 1000.17,154.334C996.831,156.653 995.162,159.906 995.162,164.093C995.162,167.6 996.208,170.373 998.301,172.409C1000.39,174.446 1003.76,176.03 1008.4,177.161L1022.83,180.725C1030.75,182.536 1036.63,185.336 1040.48,189.127C1044.32,192.917 1046.25,197.867 1046.25,203.977C1046.25,211.332 1043.25,217.215 1037.25,221.628C1031.26,226.041 1023.11,228.247 1012.81,228.247C998.443,228.247 987.072,224.57 978.699,217.215Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1161.66,215.349L1188.3,215.349L1188.3,227.059L1120.92,227.059L1120.92,215.349L1147.57,215.349L1147.57,123.53L1122.79,139.314L1122.79,125.906L1153.68,106.218L1161.66,106.218L1161.66,215.349Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1229.38,209.578L1229.38,221.968C1229.38,226.72 1228.58,231.076 1227,235.036C1225.42,238.996 1222.76,242.843 1219.02,246.577L1212.57,241.655C1216.99,236.564 1219.48,231.698 1220.04,227.059L1211.89,227.059L1211.89,209.578L1229.38,209.578Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1332.06,215.349L1332.06,227.059L1254.33,227.059L1254.33,216.537L1296.59,169.694C1302.24,163.357 1306.37,157.643 1308.98,152.552C1311.58,147.46 1312.88,142.369 1312.88,137.277C1312.88,130.601 1310.95,125.481 1307.11,121.917C1303.26,118.353 1297.77,116.571 1290.64,116.571C1279.1,116.571 1267.68,121.21 1256.36,130.488L1251.1,119.796C1255.85,115.27 1261.85,111.649 1269.09,108.934C1276.33,106.218 1283.63,104.86 1290.99,104.86C1302.07,104.86 1310.84,107.717 1317.29,113.431C1323.74,119.145 1326.97,126.867 1326.97,136.598C1326.97,143.5 1325.41,150.147 1322.3,156.54C1319.19,162.933 1314.01,170.09 1306.77,178.01L1272.32,215.349L1332.06,215.349Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1370.41,209.578L1370.41,221.968C1370.41,226.72 1369.62,231.076 1368.04,235.036C1366.45,238.996 1363.8,242.843 1360.06,246.577L1353.61,241.655C1358.02,236.564 1360.51,231.698 1361.08,227.059L1352.93,227.059L1352.93,209.578L1370.41,209.578Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1465.12,175.464C1468.85,180.443 1470.72,186.722 1470.72,194.303C1470.72,204.826 1467.15,213.114 1460.03,219.167C1452.9,225.221 1443.22,228.247 1431,228.247C1423.2,228.247 1415.7,226.946 1408.52,224.344C1401.33,221.741 1395.25,218.064 1390.27,213.312L1395.7,202.619C1406.9,211.898 1418.56,216.537 1430.66,216.537C1439.26,216.537 1445.8,214.613 1450.27,210.766C1454.74,206.919 1456.97,201.262 1456.97,193.794C1456.97,178.972 1447.69,171.561 1429.14,171.561L1415.22,171.561L1415.22,159.85L1426.42,159.85C1435.36,159.85 1442.21,157.87 1446.96,153.91C1451.71,149.949 1454.09,144.292 1454.09,136.938C1454.09,130.375 1452.13,125.34 1448.23,121.832C1444.33,118.325 1438.81,116.571 1431.68,116.571C1420.14,116.571 1408.71,121.21 1397.4,130.488L1392.14,119.796C1397,115.157 1402.97,111.508 1410.04,108.849C1417.12,106.19 1424.5,104.86 1432.19,104.86C1443.06,104.86 1451.74,107.632 1458.25,113.177C1464.75,118.721 1468,126.189 1468,135.58C1468,142.482 1466.31,148.535 1462.91,153.74C1459.52,158.945 1454.82,162.679 1448.83,164.941C1455.95,166.978 1461.38,170.486 1465.12,175.464Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(1.17016,0,0,0.922959,-96.1682,447.236)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(201,23,126);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM764.103,106.414L764.103,344.325L1242.29,344.325L1242.29,106.414L764.103,106.414Z"/>
-     </g>
-     <g transform="matrix(0.617288,0,0,0.617288,584.538,514.244)">
-         <path d="M439.513,213.142L444.774,202.45C450.771,207.541 456.881,211.162 463.104,213.312C469.327,215.462 476.569,216.537 484.828,216.537C494.559,216.537 502.055,214.641 507.316,210.851C512.578,207.06 515.208,201.714 515.208,194.812C515.208,190.739 513.936,187.429 511.39,184.884C508.844,182.338 505.506,180.329 501.376,178.859C497.246,177.388 491.73,175.86 484.828,174.276C475.55,172.239 467.913,170.033 461.916,167.657C455.919,165.281 451.054,161.858 447.32,157.389C443.586,152.92 441.719,147.064 441.719,139.823C441.719,132.921 443.53,126.839 447.15,121.578C450.771,116.316 455.891,112.215 462.51,109.273C469.129,106.331 476.852,104.86 485.677,104.86C494.05,104.86 501.857,106.162 509.098,108.764C516.34,111.366 522.45,115.157 527.428,120.135L521.997,130.828C516.34,125.962 510.598,122.398 504.771,120.135C498.944,117.872 492.579,116.741 485.677,116.741C476.286,116.741 468.931,118.749 463.613,122.766C458.295,126.783 455.636,132.299 455.636,139.314C455.636,145.424 457.956,150.006 462.595,153.061C467.234,156.116 474.362,158.775 483.98,161.038C494.389,163.527 502.564,165.818 508.504,167.912C514.445,170.005 519.395,173.173 523.355,177.416C527.315,181.659 529.295,187.288 529.295,194.303C529.295,201.092 527.485,207.06 523.864,212.209C520.243,217.357 515.067,221.345 508.335,224.174C501.602,227.003 493.71,228.417 484.659,228.417C465.763,228.417 450.715,223.325 439.513,213.142Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M621.793,183.95L559.166,183.95C559.279,194.812 561.797,203.015 566.719,208.56C571.641,214.104 578.797,216.876 588.188,216.876C598.145,216.876 607.31,213.538 615.683,206.862L620.266,216.876C616.532,220.384 611.751,223.156 605.924,225.192C600.097,227.229 594.129,228.247 588.019,228.247C574.667,228.247 564.201,224.315 556.62,216.452C549.039,208.588 545.249,197.811 545.249,184.12C545.249,175.408 546.946,167.685 550.341,160.953C553.735,154.221 558.487,148.988 564.597,145.254C570.707,141.52 577.666,139.653 585.473,139.653C596.787,139.653 605.67,143.359 612.119,150.77C618.568,158.181 621.793,168.392 621.793,181.404L621.793,183.95ZM568.246,156.795C563.777,161.094 560.92,167.148 559.675,174.955L609.403,174.955C608.725,166.922 606.377,160.812 602.36,156.625C598.343,152.439 592.771,150.345 585.643,150.345C578.514,150.345 572.715,152.495 568.246,156.795Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M656.84,222.816C650.674,219.196 645.922,214.076 642.584,207.456C639.246,200.837 637.577,193.115 637.577,184.29C637.577,175.464 639.274,167.685 642.669,160.953C646.063,154.221 650.9,148.988 657.18,145.254C663.459,141.52 670.786,139.653 679.159,139.653C684.929,139.653 690.502,140.643 695.876,142.623C701.251,144.603 705.692,147.347 709.199,150.855L704.617,161.038C700.317,157.643 696.159,155.154 692.142,153.57C688.126,151.986 684.024,151.194 679.837,151.194C671.125,151.194 664.28,154.108 659.301,159.935C654.323,165.762 651.834,173.88 651.834,184.29C651.834,194.586 654.295,202.591 659.216,208.305C664.138,214.019 671.012,216.876 679.837,216.876C684.024,216.876 688.126,216.084 692.142,214.5C696.159,212.916 700.317,210.427 704.617,207.032L709.199,217.215C705.578,220.61 701.024,223.297 695.537,225.277C690.049,227.257 684.363,228.247 678.48,228.247C670.22,228.247 663.007,226.437 656.84,222.816Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M745.18,152.552L745.18,199.225C745.18,205.561 746.481,210.002 749.084,212.548C751.686,215.094 755.363,216.367 760.115,216.367C763.283,216.367 766.338,215.858 769.28,214.839L769.28,226.55C765.773,227.682 761.813,228.247 757.4,228.247C749.253,228.247 742.889,225.956 738.306,221.374C733.724,216.791 731.433,210.031 731.433,201.092L731.433,152.552L714.8,152.552L714.8,141.69L731.433,141.69L731.433,119.796L745.18,114.874L745.18,141.69L769.62,141.69L769.62,152.552L745.18,152.552Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M786.252,227.059L786.252,141.69L800,141.69L800,227.059L786.252,227.059ZM784.895,105.539L801.697,105.539L801.697,121.154L784.895,121.154L784.895,105.539Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M840.733,222.816C834.623,219.196 829.899,214.047 826.561,207.372C823.223,200.696 821.554,192.889 821.554,183.95C821.554,175.012 823.223,167.204 826.561,160.529C829.899,153.853 834.623,148.705 840.733,145.084C846.843,141.463 853.914,139.653 861.948,139.653C869.981,139.653 877.053,141.463 883.163,145.084C889.273,148.705 893.997,153.853 897.335,160.529C900.672,167.204 902.341,175.012 902.341,183.95C902.341,192.889 900.672,200.696 897.335,207.372C893.997,214.047 889.273,219.196 883.163,222.816C877.053,226.437 869.981,228.247 861.948,228.247C853.914,228.247 846.843,226.437 840.733,222.816ZM881.466,208.475C885.992,202.874 888.254,194.699 888.254,183.95C888.254,173.541 885.935,165.479 881.296,159.765C876.657,154.051 870.208,151.194 861.948,151.194C853.575,151.194 847.069,154.051 842.43,159.765C837.791,165.479 835.471,173.541 835.471,183.95C835.471,194.699 837.763,202.874 842.345,208.475C846.928,214.076 853.462,216.876 861.948,216.876C870.434,216.876 876.94,214.076 881.466,208.475Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M997.045,173.427L997.045,227.059L983.298,227.059L983.298,174.106C983.298,166.186 981.714,160.387 978.546,156.71C975.378,153.033 970.399,151.194 963.61,151.194C955.69,151.194 949.354,153.627 944.602,158.492C939.85,163.357 937.473,169.92 937.473,178.18L937.473,227.059L923.726,227.059L923.726,165.62C923.726,156.795 923.274,148.818 922.368,141.69L935.437,141.69L936.795,156.965C939.397,151.42 943.301,147.149 948.505,144.151C953.71,141.152 959.65,139.653 966.326,139.653C986.806,139.653 997.045,150.911 997.045,173.427Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1153.7,175.379C1157.55,180.414 1159.47,186.666 1159.47,194.133C1159.47,204.656 1155.96,212.774 1148.94,218.488C1141.93,224.202 1132.03,227.059 1119.24,227.059L1069.01,227.059L1069.01,106.218L1117.55,106.218C1129.88,106.218 1139.47,108.962 1146.32,114.45C1153.16,119.937 1156.58,127.716 1156.58,137.786C1156.58,144.236 1154.91,149.808 1151.58,154.504C1148.24,159.199 1143.57,162.679 1137.57,164.941C1144.48,166.865 1149.85,170.344 1153.7,175.379ZM1082.75,159.85L1115.34,159.85C1124.39,159.85 1131.24,158.039 1135.88,154.419C1140.52,150.798 1142.84,145.48 1142.84,138.465C1142.84,124.661 1133.67,117.759 1115.34,117.759L1082.75,117.759L1082.75,159.85ZM1139.02,210.172C1143.49,206.608 1145.72,201.149 1145.72,193.794C1145.72,178.972 1136.5,171.561 1118.06,171.561L1082.75,171.561L1082.75,215.518L1118.06,215.518C1127.56,215.518 1134.55,213.736 1139.02,210.172Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.339095,0,0,0.339095,803.293,652.189)">
-         <path d="M138.683,227.059L148.187,106.218L174.834,106.218L166.857,205.505L220.828,205.505L219.131,227.059L138.683,227.059Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M233.557,227.059L240.346,141.011L265.974,141.011L259.185,227.059L233.557,227.059ZM242.382,100.617L269.877,100.617L268.01,124.718L240.515,124.718L242.382,100.617Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M274.969,217.894L283.285,200.074C288.037,203.355 293.129,205.872 298.56,207.626C303.991,209.38 309.422,210.257 314.853,210.257C319.605,210.257 323.113,209.578 325.376,208.22C327.639,206.862 328.77,205.052 328.77,202.789C328.77,200.413 327.441,198.546 324.782,197.188C322.123,195.831 317.795,194.247 311.798,192.436C305.575,190.739 300.483,189.042 296.523,187.345C292.563,185.647 289.14,183.13 286.255,179.792C283.37,176.454 281.927,172.126 281.927,166.808C281.927,161.264 283.483,156.399 286.595,152.212C289.706,148.026 294.119,144.745 299.833,142.369C305.547,139.993 312.081,138.804 319.436,138.804C325.885,138.804 332.193,139.766 338.359,141.69C344.526,143.613 349.702,146.216 353.889,149.497L345.742,166.639C341.556,163.584 337.143,161.264 332.504,159.68C327.865,158.096 323.339,157.304 318.926,157.304C314.287,157.304 310.78,157.983 308.404,159.341C306.028,160.698 304.84,162.565 304.84,164.941C304.84,167.431 306.254,169.411 309.083,170.882C311.911,172.353 316.211,173.88 321.981,175.464C328.205,177.274 333.268,179.028 337.171,180.725C341.075,182.423 344.469,184.94 347.355,188.278C350.24,191.616 351.683,195.944 351.683,201.262C351.683,209.748 348.316,216.395 341.584,221.204C334.852,226.013 325.772,228.417 314.344,228.417C299.635,228.417 286.51,224.909 274.969,217.894Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M399.374,193.624C399.035,198.376 399.996,201.884 402.259,204.147C404.522,206.41 407.634,207.541 411.594,207.541C414.196,207.541 417.082,207.089 420.25,206.184L418.552,226.041C414.705,227.625 409.727,228.417 403.617,228.417C393.886,228.417 386.447,225.815 381.299,220.61C376.151,215.405 373.577,208.051 373.577,198.546C373.577,196.623 373.633,195.152 373.746,194.133L376.462,160.189L360.169,160.189L361.696,141.011L377.989,141.011L379.517,120.814L405.823,112.498L403.617,141.011L425.511,141.011L423.984,160.189L402.09,160.189L399.374,193.624Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M426.699,217.894L435.015,200.074C439.768,203.355 444.859,205.872 450.29,207.626C455.721,209.38 461.152,210.257 466.583,210.257C471.336,210.257 474.843,209.578 477.106,208.22C479.369,206.862 480.501,205.052 480.501,202.789C480.501,200.413 479.171,198.546 476.512,197.188C473.853,195.831 469.525,194.247 463.528,192.436C457.305,190.739 452.214,189.042 448.254,187.345C444.293,185.647 440.871,183.13 437.986,179.792C435.1,176.454 433.658,172.126 433.658,166.808C433.658,161.264 435.213,156.399 438.325,152.212C441.436,148.026 445.849,144.745 451.563,142.369C457.277,139.993 463.811,138.804 471.166,138.804C477.615,138.804 483.923,139.766 490.09,141.69C496.256,143.613 501.433,146.216 505.619,149.497L497.473,166.639C493.286,163.584 488.873,161.264 484.234,159.68C479.595,158.096 475.069,157.304 470.657,157.304C466.018,157.304 462.51,157.983 460.134,159.341C457.758,160.698 456.57,162.565 456.57,164.941C456.57,167.431 457.984,169.411 460.813,170.882C463.642,172.353 467.941,173.88 473.712,175.464C479.935,177.274 484.998,179.028 488.902,180.725C492.805,182.423 496.2,184.94 499.085,188.278C501.97,191.616 503.413,195.944 503.413,201.262C503.413,209.748 500.047,216.395 493.314,221.204C486.582,226.013 477.502,228.417 466.074,228.417C451.365,228.417 438.24,224.909 426.699,217.894Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M569.264,106.218L617.465,106.218C629.911,106.218 639.614,109.217 646.572,115.213C653.531,121.21 657.01,129.47 657.01,139.993C657.01,150.515 653.502,158.803 646.487,164.857C639.472,170.91 629.798,173.937 617.465,173.937L583.182,173.937L583.182,227.059L569.264,227.059L569.264,106.218ZM616.277,162.396C625.216,162.396 631.948,160.472 636.474,156.625C641,152.778 643.263,147.234 643.263,139.993C643.263,132.751 641,127.235 636.474,123.445C631.948,119.654 625.216,117.759 616.277,117.759L583.182,117.759L583.182,162.396L616.277,162.396Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M750.526,141.69L750.526,227.059L736.948,227.059L736.948,211.615C734.459,216.933 730.697,221.034 725.662,223.919C720.627,226.805 714.772,228.247 708.096,228.247C700.515,228.247 693.868,226.437 688.154,222.816C682.44,219.196 678.027,214.076 674.916,207.456C671.804,200.837 670.248,193.115 670.248,184.29C670.248,175.464 671.832,167.685 675,160.953C678.169,154.221 682.61,148.988 688.324,145.254C694.037,141.52 700.628,139.653 708.096,139.653C714.772,139.653 720.599,141.124 725.577,144.066C730.556,147.008 734.346,151.138 736.948,156.455L736.948,141.69L750.526,141.69ZM730.16,208.305C734.686,202.591 736.948,194.473 736.948,183.95C736.948,173.427 734.686,165.337 730.16,159.68C725.634,154.023 719.184,151.194 710.812,151.194C702.439,151.194 695.904,154.108 691.209,159.935C686.513,165.762 684.165,173.88 684.165,184.29C684.165,194.699 686.485,202.733 691.124,208.39C695.763,214.047 702.325,216.876 710.812,216.876C719.184,216.876 725.634,214.019 730.16,208.305Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M853.207,141.69L853.207,226.38C853.207,239.053 849.954,248.642 843.448,255.148C836.942,261.654 827.353,264.907 814.681,264.907C801.669,264.907 790.467,261.965 781.076,256.081L783.452,244.88C788.883,247.935 794.003,250.141 798.812,251.499C803.62,252.857 808.91,253.536 814.681,253.536C822.94,253.536 829.163,251.358 833.35,247.001C837.536,242.645 839.63,236.168 839.63,227.568L839.63,207.372C837.027,212.803 833.208,217.017 828.173,220.016C823.138,223.014 817.17,224.513 810.268,224.513C802.8,224.513 796.153,222.76 790.326,219.252C784.499,215.745 780.001,210.766 776.833,204.317C773.665,197.867 772.081,190.456 772.081,182.083C772.081,173.71 773.665,166.299 776.833,159.85C780.001,153.4 784.499,148.422 790.326,144.914C796.153,141.407 802.8,139.653 810.268,139.653C817.057,139.653 822.969,141.124 828.004,144.066C833.039,147.008 836.857,151.138 839.46,156.455L839.46,141.69L853.207,141.69ZM832.416,204.741C837.112,199.253 839.46,191.701 839.46,182.083C839.46,172.466 837.112,164.913 832.416,159.426C827.721,153.938 821.243,151.194 812.983,151.194C804.61,151.194 798.02,153.938 793.211,159.426C788.402,164.913 785.998,172.466 785.998,182.083C785.998,191.701 788.402,199.253 793.211,204.741C798.02,210.229 804.61,212.972 812.983,212.972C821.243,212.972 827.721,210.229 832.416,204.741Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M951.136,183.95L888.509,183.95C888.622,194.812 891.14,203.015 896.062,208.56C900.984,214.104 908.14,216.876 917.531,216.876C927.488,216.876 936.653,213.538 945.026,206.862L949.609,216.876C945.875,220.384 941.094,223.156 935.267,225.192C929.44,227.229 923.472,228.247 917.362,228.247C904.01,228.247 893.544,224.315 885.963,216.452C878.382,208.588 874.592,197.811 874.592,184.12C874.592,175.408 876.289,167.685 879.684,160.953C883.078,154.221 887.83,148.988 893.94,145.254C900.05,141.52 907.009,139.653 914.816,139.653C926.13,139.653 935.013,143.359 941.462,150.77C947.911,158.181 951.136,168.392 951.136,181.404L951.136,183.95ZM897.589,156.795C893.12,161.094 890.263,167.148 889.018,174.955L938.746,174.955C938.068,166.922 935.72,160.812 931.703,156.625C927.686,152.439 922.114,150.345 914.985,150.345C907.857,150.345 902.058,152.495 897.589,156.795Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M966.75,217.215L971.333,207.032C975.972,210.653 980.667,213.255 985.42,214.839C990.172,216.423 995.49,217.215 1001.37,217.215C1007.82,217.215 1012.72,216.112 1016.05,213.906C1019.39,211.7 1021.06,208.503 1021.06,204.317C1021.06,200.922 1019.93,198.207 1017.67,196.17C1015.4,194.133 1011.67,192.549 1006.47,191.418L992.039,188.023C984.91,186.439 979.394,183.611 975.491,179.537C971.587,175.464 969.636,170.599 969.636,164.941C969.636,157.474 972.634,151.392 978.631,146.696C984.628,142.001 992.548,139.653 1002.39,139.653C1008.39,139.653 1014.05,140.615 1019.36,142.538C1024.68,144.462 1029.15,147.234 1032.77,150.855L1028.19,160.868C1020.16,154.192 1011.56,150.855 1002.39,150.855C996.282,150.855 991.558,152.014 988.22,154.334C984.882,156.653 983.213,159.906 983.213,164.093C983.213,167.6 984.26,170.373 986.353,172.409C988.446,174.446 991.812,176.03 996.451,177.161L1010.88,180.725C1018.8,182.536 1024.68,185.336 1028.53,189.127C1032.38,192.917 1034.3,197.867 1034.3,203.977C1034.3,211.332 1031.3,217.215 1025.3,221.628C1019.31,226.041 1011.16,228.247 1000.86,228.247C986.494,228.247 975.123,224.57 966.75,217.215Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1183.48,189.212L1183.48,200.753L1165.15,200.753L1165.15,227.059L1151.24,227.059L1151.24,200.753L1095.57,200.753L1095.57,190.23L1153.78,106.218L1165.15,106.218L1165.15,189.212L1183.48,189.212ZM1110,189.212L1151.24,189.212L1151.24,129.809L1110,189.212Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1217.43,209.578L1217.43,221.968C1217.43,226.72 1216.64,231.076 1215.05,235.036C1213.47,238.996 1210.81,242.843 1207.08,246.577L1200.62,241.655C1205.04,236.564 1207.53,231.698 1208.09,227.059L1199.95,227.059L1199.95,209.578L1217.43,209.578Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1304.24,156.031C1309.95,159.256 1314.34,163.753 1317.39,169.524C1320.45,175.294 1321.98,181.97 1321.98,189.551C1321.98,197.132 1320.31,203.864 1316.97,209.748C1313.63,215.631 1308.88,220.186 1302.71,223.41C1296.55,226.635 1289.33,228.247 1281.07,228.247C1273.72,228.247 1266.48,226.918 1259.35,224.259C1252.22,221.6 1246.22,217.951 1241.36,213.312L1246.62,202.619C1257.82,211.898 1269.31,216.537 1281.07,216.537C1289.56,216.537 1296.21,214.132 1301.02,209.323C1305.82,204.515 1308.23,197.98 1308.23,189.721C1308.23,181.687 1305.85,175.21 1301.1,170.288C1296.35,165.366 1290.01,162.905 1282.09,162.905C1270.55,162.905 1261.33,167.6 1254.43,176.992L1244.75,176.992L1244.75,106.218L1317.22,106.218L1317.22,117.759L1258.67,117.759L1258.67,160.868C1265.35,154.419 1273.89,151.194 1284.3,151.194C1291.88,151.194 1298.53,152.806 1304.24,156.031Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1358.47,209.578L1358.47,221.968C1358.47,226.72 1357.67,231.076 1356.09,235.036C1354.51,238.996 1351.85,242.843 1348.11,246.577L1341.66,241.655C1346.08,236.564 1348.57,231.698 1349.13,227.059L1340.98,227.059L1340.98,209.578L1358.47,209.578Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1444.94,156.031C1450.65,159.256 1455.09,163.782 1458.26,169.609C1461.43,175.436 1463.01,182.083 1463.01,189.551C1463.01,197.019 1461.35,203.694 1458.01,209.578C1454.67,215.462 1450.06,220.072 1444.17,223.41C1438.29,226.748 1431.62,228.417 1424.15,228.417C1409.55,228.417 1398.29,223.325 1390.37,213.142C1382.45,202.959 1378.49,188.476 1378.49,169.694C1378.49,156.116 1380.33,144.462 1384.01,134.731C1387.69,125.001 1393,117.589 1399.96,112.498C1406.92,107.406 1415.27,104.86 1425,104.86C1432.01,104.86 1438.83,106.162 1445.45,108.764C1452.07,111.366 1457.87,115.044 1462.84,119.796L1457.58,130.488C1451.92,125.736 1446.49,122.228 1441.29,119.965C1436.09,117.703 1430.77,116.571 1425.34,116.571C1414.93,116.571 1406.84,121.21 1401.07,130.488C1395.3,139.766 1392.41,152.778 1392.41,169.524L1392.41,172.07C1395.01,165.62 1399.26,160.529 1405.14,156.795C1411.02,153.061 1417.76,151.194 1425.34,151.194C1432.69,151.194 1439.22,152.806 1444.94,156.031ZM1442.14,209.323C1446.89,204.402 1449.27,197.867 1449.27,189.721C1449.27,181.687 1446.86,175.21 1442.05,170.288C1437.24,165.366 1430.99,162.905 1423.3,162.905C1415.38,162.905 1408.93,165.394 1403.95,170.373C1398.97,175.351 1396.48,181.8 1396.48,189.721C1396.48,197.754 1398.97,204.26 1403.95,209.239C1408.93,214.217 1415.43,216.706 1423.47,216.706C1431.16,216.706 1437.39,214.245 1442.14,209.323Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(1.17016,0,0,0.922959,618.874,447.236)">
-         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(201,23,126);"/>
-         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM764.103,106.414L764.103,344.325L1242.29,344.325L1242.29,106.414L764.103,106.414Z"/>
-     </g>
-     <g transform="matrix(0.617288,0,0,0.617288,1298.32,514.244)">
-         <path d="M439.258,213.142L444.52,202.45C450.517,207.541 456.626,211.162 462.85,213.312C469.073,215.462 476.314,216.537 484.574,216.537C494.304,216.537 501.8,214.641 507.062,210.851C512.323,207.06 514.954,201.714 514.954,194.812C514.954,190.739 513.681,187.429 511.135,184.884C508.589,182.338 505.251,180.329 501.122,178.859C496.992,177.388 491.476,175.86 484.574,174.276C475.296,172.239 467.658,170.033 461.662,167.657C455.665,165.281 450.799,161.858 447.066,157.389C443.332,152.92 441.465,147.064 441.465,139.823C441.465,132.921 443.275,126.839 446.896,121.578C450.517,116.316 455.636,112.215 462.256,109.273C468.875,106.331 476.597,104.86 485.422,104.86C493.795,104.86 501.602,106.162 508.844,108.764C516.085,111.366 522.195,115.157 527.174,120.135L521.743,130.828C516.085,125.962 510.343,122.398 504.516,120.135C498.689,117.872 492.324,116.741 485.422,116.741C476.031,116.741 468.677,118.749 463.359,122.766C458.041,126.783 455.382,132.299 455.382,139.314C455.382,145.424 457.701,150.006 462.34,153.061C466.979,156.116 474.108,158.775 483.725,161.038C494.135,163.527 502.31,165.818 508.25,167.912C514.19,170.005 519.14,173.173 523.1,177.416C527.061,181.659 529.041,187.288 529.041,194.303C529.041,201.092 527.23,207.06 523.61,212.209C519.989,217.357 514.812,221.345 508.08,224.174C501.348,227.003 493.456,228.417 484.404,228.417C465.509,228.417 450.46,223.325 439.258,213.142Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M621.538,183.95L558.911,183.95C559.025,194.812 561.542,203.015 566.464,208.56C571.386,214.104 578.543,216.876 587.934,216.876C597.891,216.876 607.056,213.538 615.428,206.862L620.011,216.876C616.277,220.384 611.497,223.156 605.67,225.192C599.842,227.229 593.874,228.247 587.764,228.247C574.413,228.247 563.947,224.315 556.366,216.452C548.785,208.588 544.994,197.811 544.994,184.12C544.994,175.408 546.692,167.685 550.086,160.953C553.48,154.221 558.233,148.988 564.343,145.254C570.453,141.52 577.411,139.653 585.218,139.653C596.533,139.653 605.415,143.359 611.864,150.77C618.314,158.181 621.538,168.392 621.538,181.404L621.538,183.95ZM567.992,156.795C563.522,161.094 560.665,167.148 559.421,174.955L609.149,174.955C608.47,166.922 606.122,160.812 602.105,156.625C598.089,152.439 592.516,150.345 585.388,150.345C578.26,150.345 572.461,152.495 567.992,156.795Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M656.586,222.816C650.419,219.196 645.667,214.076 642.329,207.456C638.991,200.837 637.322,193.115 637.322,184.29C637.322,175.464 639.02,167.685 642.414,160.953C645.808,154.221 650.646,148.988 656.925,145.254C663.205,141.52 670.531,139.653 678.904,139.653C684.675,139.653 690.247,140.643 695.622,142.623C700.996,144.603 705.437,147.347 708.945,150.855L704.362,161.038C700.063,157.643 695.904,155.154 691.888,153.57C687.871,151.986 683.769,151.194 679.583,151.194C670.871,151.194 664.025,154.108 659.047,159.935C654.068,165.762 651.579,173.88 651.579,184.29C651.579,194.586 654.04,202.591 658.962,208.305C663.884,214.019 670.757,216.876 679.583,216.876C683.769,216.876 687.871,216.084 691.888,214.5C695.904,212.916 700.063,210.427 704.362,207.032L708.945,217.215C705.324,220.61 700.77,223.297 695.282,225.277C689.794,227.257 684.109,228.247 678.225,228.247C669.965,228.247 662.752,226.437 656.586,222.816Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M744.925,152.552L744.925,199.225C744.925,205.561 746.227,210.002 748.829,212.548C751.431,215.094 755.109,216.367 759.861,216.367C763.029,216.367 766.084,215.858 769.026,214.839L769.026,226.55C765.518,227.682 761.558,228.247 757.145,228.247C748.999,228.247 742.634,225.956 738.052,221.374C733.469,216.791 731.178,210.031 731.178,201.092L731.178,152.552L714.545,152.552L714.545,141.69L731.178,141.69L731.178,119.796L744.925,114.874L744.925,141.69L769.365,141.69L769.365,152.552L744.925,152.552Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M785.998,227.059L785.998,141.69L799.745,141.69L799.745,227.059L785.998,227.059ZM784.64,105.539L801.442,105.539L801.442,121.154L784.64,121.154L784.64,105.539Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M840.478,222.816C834.368,219.196 829.644,214.047 826.306,207.372C822.969,200.696 821.3,192.889 821.3,183.95C821.3,175.012 822.969,167.204 826.306,160.529C829.644,153.853 834.368,148.705 840.478,145.084C846.588,141.463 853.66,139.653 861.693,139.653C869.727,139.653 876.798,141.463 882.908,145.084C889.018,148.705 893.742,153.853 897.08,160.529C900.418,167.204 902.087,175.012 902.087,183.95C902.087,192.889 900.418,200.696 897.08,207.372C893.742,214.047 889.018,219.196 882.908,222.816C876.798,226.437 869.727,228.247 861.693,228.247C853.66,228.247 846.588,226.437 840.478,222.816ZM881.211,208.475C885.737,202.874 888,194.699 888,183.95C888,173.541 885.68,165.479 881.041,159.765C876.402,154.051 869.953,151.194 861.693,151.194C853.32,151.194 846.814,154.051 842.175,159.765C837.536,165.479 835.217,173.541 835.217,183.95C835.217,194.699 837.508,202.874 842.09,208.475C846.673,214.076 853.207,216.876 861.693,216.876C870.179,216.876 876.685,214.076 881.211,208.475Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M996.791,173.427L996.791,227.059L983.043,227.059L983.043,174.106C983.043,166.186 981.459,160.387 978.291,156.71C975.123,153.033 970.145,151.194 963.356,151.194C955.436,151.194 949.099,153.627 944.347,158.492C939.595,163.357 937.219,169.92 937.219,178.18L937.219,227.059L923.472,227.059L923.472,165.62C923.472,156.795 923.019,148.818 922.114,141.69L935.182,141.69L936.54,156.965C939.142,151.42 943.046,147.149 948.251,144.151C953.456,141.152 959.396,139.653 966.071,139.653C986.551,139.653 996.791,150.911 996.791,173.427Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1090.56,220.949C1082.13,215.971 1075.65,208.814 1071.13,199.48C1066.6,190.145 1064.34,179.141 1064.34,166.469C1064.34,153.796 1066.6,142.849 1071.13,133.628C1075.65,124.407 1082.13,117.307 1090.56,112.328C1098.99,107.35 1108.92,104.86 1120.35,104.86C1128.72,104.86 1136.39,106.133 1143.35,108.679C1150.3,111.225 1156.33,115.044 1161.42,120.135L1156.16,130.828C1150.39,125.849 1144.7,122.285 1139.1,120.135C1133.5,117.985 1127.31,116.911 1120.52,116.911C1107.28,116.911 1097.01,121.21 1089.71,129.809C1082.41,138.408 1078.77,150.628 1078.77,166.469C1078.77,182.423 1082.39,194.727 1089.63,203.383C1096.87,212.039 1107.17,216.367 1120.52,216.367C1127.31,216.367 1133.5,215.292 1139.1,213.142C1144.7,210.992 1150.39,207.428 1156.16,202.45L1161.42,213.142C1156.33,218.234 1150.3,222.052 1143.35,224.598C1136.39,227.144 1128.72,228.417 1120.35,228.417C1108.92,228.417 1098.99,225.928 1090.56,220.949Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.347283,0,0,0.347283,1511.01,651.331)">
-         <path d="M138.683,227.059L148.187,106.218L174.834,106.218L166.857,205.505L220.828,205.505L219.131,227.059L138.683,227.059Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M233.557,227.059L240.346,141.011L265.974,141.011L259.185,227.059L233.557,227.059ZM242.382,100.617L269.877,100.617L268.01,124.718L240.515,124.718L242.382,100.617Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M274.969,217.894L283.285,200.074C288.037,203.355 293.129,205.872 298.56,207.626C303.991,209.38 309.422,210.257 314.853,210.257C319.605,210.257 323.113,209.578 325.376,208.22C327.639,206.862 328.77,205.052 328.77,202.789C328.77,200.413 327.441,198.546 324.782,197.188C322.123,195.831 317.795,194.247 311.798,192.436C305.575,190.739 300.483,189.042 296.523,187.345C292.563,185.647 289.14,183.13 286.255,179.792C283.37,176.454 281.927,172.126 281.927,166.808C281.927,161.264 283.483,156.399 286.595,152.212C289.706,148.026 294.119,144.745 299.833,142.369C305.547,139.993 312.081,138.804 319.436,138.804C325.885,138.804 332.193,139.766 338.359,141.69C344.526,143.613 349.702,146.216 353.889,149.497L345.742,166.639C341.556,163.584 337.143,161.264 332.504,159.68C327.865,158.096 323.339,157.304 318.926,157.304C314.287,157.304 310.78,157.983 308.404,159.341C306.028,160.698 304.84,162.565 304.84,164.941C304.84,167.431 306.254,169.411 309.083,170.882C311.911,172.353 316.211,173.88 321.981,175.464C328.205,177.274 333.268,179.028 337.171,180.725C341.075,182.423 344.469,184.94 347.355,188.278C350.24,191.616 351.683,195.944 351.683,201.262C351.683,209.748 348.316,216.395 341.584,221.204C334.852,226.013 325.772,228.417 314.344,228.417C299.635,228.417 286.51,224.909 274.969,217.894Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M399.374,193.624C399.035,198.376 399.996,201.884 402.259,204.147C404.522,206.41 407.634,207.541 411.594,207.541C414.196,207.541 417.082,207.089 420.25,206.184L418.552,226.041C414.705,227.625 409.727,228.417 403.617,228.417C393.886,228.417 386.447,225.815 381.299,220.61C376.151,215.405 373.577,208.051 373.577,198.546C373.577,196.623 373.633,195.152 373.746,194.133L376.462,160.189L360.169,160.189L361.696,141.011L377.989,141.011L379.517,120.814L405.823,112.498L403.617,141.011L425.511,141.011L423.984,160.189L402.09,160.189L399.374,193.624Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M426.699,217.894L435.015,200.074C439.768,203.355 444.859,205.872 450.29,207.626C455.721,209.38 461.152,210.257 466.583,210.257C471.336,210.257 474.843,209.578 477.106,208.22C479.369,206.862 480.501,205.052 480.501,202.789C480.501,200.413 479.171,198.546 476.512,197.188C473.853,195.831 469.525,194.247 463.528,192.436C457.305,190.739 452.214,189.042 448.254,187.345C444.293,185.647 440.871,183.13 437.986,179.792C435.1,176.454 433.658,172.126 433.658,166.808C433.658,161.264 435.213,156.399 438.325,152.212C441.436,148.026 445.849,144.745 451.563,142.369C457.277,139.993 463.811,138.804 471.166,138.804C477.615,138.804 483.923,139.766 490.09,141.69C496.256,143.613 501.433,146.216 505.619,149.497L497.473,166.639C493.286,163.584 488.873,161.264 484.234,159.68C479.595,158.096 475.069,157.304 470.657,157.304C466.018,157.304 462.51,157.983 460.134,159.341C457.758,160.698 456.57,162.565 456.57,164.941C456.57,167.431 457.984,169.411 460.813,170.882C463.642,172.353 467.941,173.88 473.712,175.464C479.935,177.274 484.998,179.028 488.902,180.725C492.805,182.423 496.2,184.94 499.085,188.278C501.97,191.616 503.413,195.944 503.413,201.262C503.413,209.748 500.047,216.395 493.314,221.204C486.582,226.013 477.502,228.417 466.074,228.417C451.365,228.417 438.24,224.909 426.699,217.894Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M569.264,106.218L617.465,106.218C629.911,106.218 639.614,109.217 646.572,115.213C653.531,121.21 657.01,129.47 657.01,139.993C657.01,150.515 653.502,158.803 646.487,164.857C639.472,170.91 629.798,173.937 617.465,173.937L583.182,173.937L583.182,227.059L569.264,227.059L569.264,106.218ZM616.277,162.396C625.216,162.396 631.948,160.472 636.474,156.625C641,152.778 643.263,147.234 643.263,139.993C643.263,132.751 641,127.235 636.474,123.445C631.948,119.654 625.216,117.759 616.277,117.759L583.182,117.759L583.182,162.396L616.277,162.396Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M750.526,141.69L750.526,227.059L736.948,227.059L736.948,211.615C734.459,216.933 730.697,221.034 725.662,223.919C720.627,226.805 714.772,228.247 708.096,228.247C700.515,228.247 693.868,226.437 688.154,222.816C682.44,219.196 678.027,214.076 674.916,207.456C671.804,200.837 670.248,193.115 670.248,184.29C670.248,175.464 671.832,167.685 675,160.953C678.169,154.221 682.61,148.988 688.324,145.254C694.037,141.52 700.628,139.653 708.096,139.653C714.772,139.653 720.599,141.124 725.577,144.066C730.556,147.008 734.346,151.138 736.948,156.455L736.948,141.69L750.526,141.69ZM730.16,208.305C734.686,202.591 736.948,194.473 736.948,183.95C736.948,173.427 734.686,165.337 730.16,159.68C725.634,154.023 719.184,151.194 710.812,151.194C702.439,151.194 695.904,154.108 691.209,159.935C686.513,165.762 684.165,173.88 684.165,184.29C684.165,194.699 686.485,202.733 691.124,208.39C695.763,214.047 702.325,216.876 710.812,216.876C719.184,216.876 725.634,214.019 730.16,208.305Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M853.207,141.69L853.207,226.38C853.207,239.053 849.954,248.642 843.448,255.148C836.942,261.654 827.353,264.907 814.681,264.907C801.669,264.907 790.467,261.965 781.076,256.081L783.452,244.88C788.883,247.935 794.003,250.141 798.812,251.499C803.62,252.857 808.91,253.536 814.681,253.536C822.94,253.536 829.163,251.358 833.35,247.001C837.536,242.645 839.63,236.168 839.63,227.568L839.63,207.372C837.027,212.803 833.208,217.017 828.173,220.016C823.138,223.014 817.17,224.513 810.268,224.513C802.8,224.513 796.153,222.76 790.326,219.252C784.499,215.745 780.001,210.766 776.833,204.317C773.665,197.867 772.081,190.456 772.081,182.083C772.081,173.71 773.665,166.299 776.833,159.85C780.001,153.4 784.499,148.422 790.326,144.914C796.153,141.407 802.8,139.653 810.268,139.653C817.057,139.653 822.969,141.124 828.004,144.066C833.039,147.008 836.857,151.138 839.46,156.455L839.46,141.69L853.207,141.69ZM832.416,204.741C837.112,199.253 839.46,191.701 839.46,182.083C839.46,172.466 837.112,164.913 832.416,159.426C827.721,153.938 821.243,151.194 812.983,151.194C804.61,151.194 798.02,153.938 793.211,159.426C788.402,164.913 785.998,172.466 785.998,182.083C785.998,191.701 788.402,199.253 793.211,204.741C798.02,210.229 804.61,212.972 812.983,212.972C821.243,212.972 827.721,210.229 832.416,204.741Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M951.136,183.95L888.509,183.95C888.622,194.812 891.14,203.015 896.062,208.56C900.984,214.104 908.14,216.876 917.531,216.876C927.488,216.876 936.653,213.538 945.026,206.862L949.609,216.876C945.875,220.384 941.094,223.156 935.267,225.192C929.44,227.229 923.472,228.247 917.362,228.247C904.01,228.247 893.544,224.315 885.963,216.452C878.382,208.588 874.592,197.811 874.592,184.12C874.592,175.408 876.289,167.685 879.684,160.953C883.078,154.221 887.83,148.988 893.94,145.254C900.05,141.52 907.009,139.653 914.816,139.653C926.13,139.653 935.013,143.359 941.462,150.77C947.911,158.181 951.136,168.392 951.136,181.404L951.136,183.95ZM897.589,156.795C893.12,161.094 890.263,167.148 889.018,174.955L938.746,174.955C938.068,166.922 935.72,160.812 931.703,156.625C927.686,152.439 922.114,150.345 914.985,150.345C907.857,150.345 902.058,152.495 897.589,156.795Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M966.75,217.215L971.333,207.032C975.972,210.653 980.667,213.255 985.42,214.839C990.172,216.423 995.49,217.215 1001.37,217.215C1007.82,217.215 1012.72,216.112 1016.05,213.906C1019.39,211.7 1021.06,208.503 1021.06,204.317C1021.06,200.922 1019.93,198.207 1017.67,196.17C1015.4,194.133 1011.67,192.549 1006.47,191.418L992.039,188.023C984.91,186.439 979.394,183.611 975.491,179.537C971.587,175.464 969.636,170.599 969.636,164.941C969.636,157.474 972.634,151.392 978.631,146.696C984.628,142.001 992.548,139.653 1002.39,139.653C1008.39,139.653 1014.05,140.615 1019.36,142.538C1024.68,144.462 1029.15,147.234 1032.77,150.855L1028.19,160.868C1020.16,154.192 1011.56,150.855 1002.39,150.855C996.282,150.855 991.558,152.014 988.22,154.334C984.882,156.653 983.213,159.906 983.213,164.093C983.213,167.6 984.26,170.373 986.353,172.409C988.446,174.446 991.812,176.03 996.451,177.161L1010.88,180.725C1018.8,182.536 1024.68,185.336 1028.53,189.127C1032.38,192.917 1034.3,197.867 1034.3,203.977C1034.3,211.332 1031.3,217.215 1025.3,221.628C1019.31,226.041 1011.16,228.247 1000.86,228.247C986.494,228.247 975.123,224.57 966.75,217.215Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1098.28,106.218L1178.05,106.218L1178.05,116.571L1121.37,227.059L1106.43,227.059L1162.78,117.929L1098.28,117.929L1098.28,106.218Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1217.43,209.578L1217.43,221.968C1217.43,226.72 1216.64,231.076 1215.05,235.036C1213.47,238.996 1210.81,242.843 1207.08,246.577L1200.62,241.655C1205.04,236.564 1207.53,231.698 1208.09,227.059L1199.95,227.059L1199.95,209.578L1217.43,209.578Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1315.95,176.058C1320.31,181.32 1322.49,187.627 1322.49,194.982C1322.49,205.278 1318.58,213.397 1310.77,219.337C1302.97,225.277 1292.44,228.247 1279.21,228.247C1265.97,228.247 1255.44,225.277 1247.64,219.337C1239.83,213.397 1235.93,205.278 1235.93,194.982C1235.93,187.627 1238.16,181.291 1242.63,175.973C1247.1,170.655 1253.24,166.978 1261.05,164.941C1253.81,162.792 1248.26,159.256 1244.41,154.334C1240.57,149.412 1238.64,143.613 1238.64,136.938C1238.64,130.488 1240.34,124.859 1243.73,120.05C1247.13,115.242 1251.91,111.508 1258.08,108.849C1264.24,106.19 1271.29,104.86 1279.21,104.86C1287.13,104.86 1294.17,106.19 1300.34,108.849C1306.5,111.508 1311.28,115.242 1314.68,120.05C1318.07,124.859 1319.77,130.488 1319.77,136.938C1319.77,143.613 1317.82,149.412 1313.91,154.334C1310.01,159.256 1304.55,162.792 1297.54,164.941C1305.46,167.091 1311.59,170.797 1315.95,176.058ZM1259.77,153.655C1264.58,157.672 1271.06,160.133 1279.21,161.038C1287.35,160.133 1293.83,157.672 1298.64,153.655C1303.45,149.638 1305.85,144.405 1305.85,137.956C1305.85,131.28 1303.5,126.019 1298.81,122.172C1294.11,118.325 1287.58,116.401 1279.21,116.401C1270.83,116.401 1264.3,118.325 1259.6,122.172C1254.91,126.019 1252.56,131.28 1252.56,137.956C1252.56,144.405 1254.96,149.638 1259.77,153.655ZM1301.1,210.936C1306.19,207.089 1308.74,201.488 1308.74,194.133C1308.74,187.458 1306.05,182.112 1300.68,178.095C1295.3,174.078 1288.14,171.617 1279.21,170.712C1270.27,171.617 1263.11,174.078 1257.74,178.095C1252.36,182.112 1249.67,187.458 1249.67,194.133C1249.67,201.488 1252.22,207.089 1257.31,210.936C1262.4,214.783 1269.7,216.706 1279.21,216.706C1288.71,216.706 1296.01,214.783 1301.1,210.936Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1358.47,209.578L1358.47,221.968C1358.47,226.72 1357.67,231.076 1356.09,235.036C1354.51,238.996 1351.85,242.843 1348.11,246.577L1341.66,241.655C1346.08,236.564 1348.57,231.698 1349.13,227.059L1340.98,227.059L1340.98,209.578L1358.47,209.578Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         <path d="M1450.29,120.135C1458.2,130.318 1462.16,144.801 1462.16,163.584C1462.16,184.063 1458.06,199.989 1449.86,211.36C1441.66,222.731 1430.2,228.417 1415.49,228.417C1408.59,228.417 1401.83,227.116 1395.21,224.513C1388.59,221.911 1382.74,218.234 1377.64,213.482L1383.08,202.789C1388.85,207.655 1394.33,211.19 1399.54,213.397C1404.74,215.603 1410,216.706 1415.32,216.706C1425.73,216.706 1433.79,212.067 1439.51,202.789C1445.22,193.511 1448.08,180.499 1448.08,163.753L1448.08,161.547C1445.48,167.883 1441.23,172.89 1435.35,176.567C1429.46,180.245 1422.73,182.083 1415.15,182.083C1407.8,182.083 1401.29,180.471 1395.63,177.246C1389.98,174.022 1385.56,169.496 1382.4,163.669C1379.23,157.841 1377.64,151.194 1377.64,143.726C1377.64,136.259 1379.31,129.583 1382.65,123.699C1385.99,117.816 1390.6,113.205 1396.48,109.867C1402.37,106.529 1409.04,104.86 1416.51,104.86C1431.11,104.86 1442.36,109.952 1450.29,120.135ZM1436.71,162.905C1441.68,157.926 1444.17,151.477 1444.17,143.557C1444.17,135.523 1441.68,129.017 1436.71,124.039C1431.73,119.06 1425.22,116.571 1417.19,116.571C1409.5,116.571 1403.27,119.032 1398.52,123.954C1393.77,128.876 1391.39,135.41 1391.39,143.557C1391.39,151.59 1393.77,158.068 1398.52,162.99C1403.27,167.912 1409.55,170.373 1417.36,170.373C1425.28,170.373 1431.73,167.883 1436.71,162.905Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.92983,0,0,0.92983,-46.5234,169.171)">
-         <path d="M224.566,862.452L251.212,862.452L251.212,874.163L183.833,874.163L183.833,862.452L210.479,862.452L210.479,770.633L185.7,786.417L185.7,773.009L216.589,753.321L224.566,753.321L224.566,862.452Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.92983,0,0,0.92983,162.243,169.171)">
-         <path d="M253.927,862.452L253.927,874.163L176.195,874.163L176.195,863.64L218.456,816.797C224.113,810.461 228.243,804.747 230.845,799.655C233.448,794.564 234.749,789.472 234.749,784.38C234.749,777.705 232.825,772.585 228.978,769.021C225.131,765.456 219.644,763.674 212.515,763.674C200.974,763.674 189.547,768.313 178.232,777.592L172.97,766.899C177.723,762.373 183.719,758.753 190.961,756.037C198.202,753.321 205.5,751.964 212.855,751.964C223.943,751.964 232.712,754.821 239.162,760.535C245.611,766.249 248.836,773.971 248.836,783.701C248.836,790.603 247.28,797.251 244.168,803.644C241.057,810.036 235.88,817.193 228.639,825.113L194.186,862.452L253.927,862.452Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.92983,0,0,0.92983,374.061,169.171)">
-         <path d="M245.95,822.567C249.684,827.546 251.551,833.826 251.551,841.406C251.551,851.929 247.987,860.217 240.859,866.271C233.73,872.324 224.056,875.351 211.837,875.351C204.029,875.351 196.533,874.049 189.349,871.447C182.164,868.845 176.082,865.167 171.104,860.415L176.535,849.723C187.736,859.001 199.39,863.64 211.497,863.64C220.096,863.64 226.631,861.716 231.1,857.869C235.569,854.022 237.804,848.365 237.804,840.897C237.804,826.075 228.526,818.664 209.97,818.664L196.052,818.664L196.052,806.953L207.254,806.953C216.193,806.953 223.038,804.973 227.79,801.013C232.542,797.053 234.919,791.395 234.919,784.041C234.919,777.478 232.967,772.443 229.063,768.936C225.16,765.428 219.644,763.674 212.515,763.674C200.974,763.674 189.547,768.313 178.232,777.592L172.97,766.899C177.836,762.26 183.804,758.611 190.876,755.952C197.948,753.293 205.331,751.964 213.025,751.964C223.887,751.964 232.571,754.736 239.077,760.28C245.583,765.824 248.836,773.292 248.836,782.683C248.836,789.585 247.138,795.638 243.744,800.843C240.35,806.048 235.654,809.782 229.657,812.045C236.785,814.081 242.217,817.589 245.95,822.567Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.92983,0,0,0.92983,664.984,170.849)">
-         <path d="M258.34,836.315L258.34,847.856L240.01,847.856L240.01,874.163L226.093,874.163L226.093,847.856L170.425,847.856L170.425,837.333L228.639,753.321L240.01,753.321L240.01,836.315L258.34,836.315ZM184.851,836.315L226.093,836.315L226.093,776.913L184.851,836.315Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.92983,0,0,0.92983,873.65,170.849)">
-         <path d="M238.058,803.134C243.772,806.359 248.157,810.857 251.212,816.627C254.267,822.398 255.794,829.073 255.794,836.654C255.794,844.235 254.125,850.967 250.787,856.851C247.45,862.735 242.697,867.289 236.531,870.514C230.364,873.738 223.151,875.351 214.891,875.351C207.537,875.351 200.296,874.021 193.167,871.362C186.039,868.703 180.042,865.054 175.177,860.415L180.438,849.723C191.64,859.001 203.124,863.64 214.891,863.64C223.378,863.64 230.025,861.236 234.834,856.427C239.642,851.618 242.047,845.084 242.047,836.824C242.047,828.791 239.671,822.313 234.919,817.391C230.166,812.469 223.83,810.008 215.91,810.008C204.369,810.008 195.147,814.704 188.245,824.095L178.571,824.095L178.571,753.321L251.042,753.321L251.042,764.862L192.488,764.862L192.488,807.972C199.164,801.522 207.707,798.297 218.116,798.297C225.697,798.297 232.344,799.91 238.058,803.134Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.92983,0,0,0.92983,1086.71,170.849)">
-         <path d="M237.719,803.134C243.433,806.359 247.874,810.885 251.042,816.712C254.21,822.539 255.794,829.187 255.794,836.654C255.794,844.122 254.125,850.798 250.787,856.681C247.45,862.565 242.839,867.176 236.955,870.514C231.072,873.851 224.396,875.52 216.928,875.52C202.332,875.52 191.074,870.429 183.154,860.245C175.233,850.062 171.273,835.579 171.273,816.797C171.273,803.219 173.112,791.565 176.789,781.835C180.466,772.104 185.784,764.693 192.743,759.601C199.701,754.509 208.046,751.964 217.777,751.964C224.792,751.964 231.609,753.265 238.228,755.867C244.847,758.47 250.646,762.147 255.624,766.899L250.363,777.592C244.706,772.839 239.275,769.332 234.07,767.069C228.865,764.806 223.547,763.674 218.116,763.674C207.707,763.674 199.617,768.313 193.846,777.592C188.076,786.87 185.19,799.881 185.19,816.627L185.19,819.173C187.793,812.724 192.036,807.632 197.919,803.898C203.803,800.164 210.535,798.297 218.116,798.297C225.471,798.297 232.005,799.91 237.719,803.134ZM234.919,856.427C239.671,851.505 242.047,844.971 242.047,836.824C242.047,828.791 239.642,822.313 234.834,817.391C230.025,812.469 223.774,810.008 216.08,810.008C208.159,810.008 201.71,812.497 196.731,817.476C191.753,822.454 189.264,828.904 189.264,836.824C189.264,844.857 191.753,851.363 196.731,856.342C201.71,861.32 208.216,863.81 216.249,863.81C223.943,863.81 230.166,861.349 234.919,856.427Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.92983,0,0,0.92983,1386.78,168.615)">
-         <path d="M173.14,753.321L252.909,753.321L252.909,763.674L196.222,874.163L181.287,874.163L237.634,765.032L173.14,765.032L173.14,753.321Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.92983,0,0,0.92983,1596.01,169.877)">
-         <path d="M249.769,823.162C254.125,828.423 256.303,834.731 256.303,842.085C256.303,852.382 252.4,860.5 244.593,866.44C236.785,872.381 226.263,875.351 213.025,875.351C199.786,875.351 189.264,872.381 181.457,866.44C173.649,860.5 169.746,852.382 169.746,842.085C169.746,834.731 171.98,828.395 176.45,823.077C180.919,817.759 187.057,814.081 194.864,812.045C187.623,809.895 182.079,806.359 178.232,801.437C174.385,796.515 172.461,790.717 172.461,784.041C172.461,777.592 174.159,771.962 177.553,767.154C180.947,762.345 185.728,758.611 191.894,755.952C198.061,753.293 205.104,751.964 213.025,751.964C220.945,751.964 227.988,753.293 234.155,755.952C240.321,758.611 245.102,762.345 248.496,767.154C251.891,771.962 253.588,777.592 253.588,784.041C253.588,790.717 251.636,796.515 247.732,801.437C243.829,806.359 238.37,809.895 231.354,812.045C239.275,814.195 245.413,817.9 249.769,823.162ZM193.592,800.758C198.4,804.775 204.878,807.236 213.025,808.141C221.171,807.236 227.649,804.775 232.458,800.758C237.266,796.742 239.671,791.509 239.671,785.059C239.671,778.384 237.323,773.122 232.627,769.275C227.932,765.428 221.397,763.505 213.025,763.505C204.652,763.505 198.117,765.428 193.422,769.275C188.726,773.122 186.378,778.384 186.378,785.059C186.378,791.509 188.783,796.742 193.592,800.758ZM234.919,858.039C240.01,854.192 242.556,848.591 242.556,841.237C242.556,834.561 239.869,829.215 234.494,825.198C229.12,821.181 221.963,818.72 213.025,817.815C204.086,818.72 196.929,821.181 191.555,825.198C186.18,829.215 183.493,834.561 183.493,841.237C183.493,848.591 186.039,854.192 191.131,858.039C196.222,861.886 203.52,863.81 213.025,863.81C222.529,863.81 229.827,861.886 234.919,858.039Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(0.92983,0,0,0.92983,1799.28,168.615)">
-         <path d="M243.065,767.239C250.985,777.422 254.946,791.905 254.946,810.687C254.946,831.167 250.844,847.092 242.641,858.463C234.438,869.835 222.982,875.52 208.272,875.52C201.37,875.52 194.61,874.219 187.991,871.617C181.372,869.014 175.516,865.337 170.425,860.585L175.856,849.893C181.626,854.758 187.114,858.294 192.319,860.5C197.523,862.706 202.785,863.81 208.103,863.81C218.512,863.81 226.574,859.171 232.288,849.893C238.002,840.614 240.859,827.603 240.859,810.857L240.859,808.65C238.256,814.987 234.013,819.993 228.13,823.671C222.246,827.348 215.514,829.187 207.933,829.187C200.578,829.187 194.072,827.574 188.415,824.35C182.758,821.125 178.345,816.599 175.177,810.772C172.009,804.945 170.425,798.297 170.425,790.83C170.425,783.362 172.094,776.686 175.431,770.803C178.769,764.919 183.38,760.308 189.264,756.97C195.147,753.633 201.823,751.964 209.291,751.964C223.887,751.964 235.145,757.055 243.065,767.239ZM229.487,810.008C234.466,805.03 236.955,798.58 236.955,790.66C236.955,782.627 234.466,776.121 229.487,771.142C224.509,766.164 218.003,763.674 209.97,763.674C202.276,763.674 196.052,766.135 191.3,771.057C186.548,775.979 184.172,782.513 184.172,790.66C184.172,798.693 186.548,805.171 191.3,810.093C196.052,815.015 202.332,817.476 210.139,817.476C218.06,817.476 224.509,814.987 229.487,810.008Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-     </g>
-     <g transform="matrix(1.17016,0,0,1.17016,-233.077,-107.087)">
-         <path d="M1120.2,396.615L1120.2,552.949L1120.2,474.16L509.798,474.16L509.798,552.949" style="fill:none;stroke:black;stroke-width:4.7px;"/>
-     </g>
-     <g transform="matrix(1.17016,0,0,1.17016,-233.077,-107.087)">
-         <path d="M1120.2,474.782L1729.96,474.782L1729.96,552.949" style="fill:none;stroke:black;stroke-width:4.7px;"/>
-     </g>
-     <g transform="matrix(1.17016,0,0,0.594821,-233.077,326.47)">
-         <path d="M331.99,802.778L331.99,859.94" style="fill:none;stroke:black;stroke-width:5.93px;"/>
-     </g>
-     <g transform="matrix(1.17016,0,0,1.17016,-233.077,-168.289)">
-         <path d="M509.68,802.778L509.68,859.94" style="fill:none;stroke:black;stroke-width:4.7px;"/>
-     </g>
-     <g transform="matrix(1.17016,0,0,0.594821,-233.077,326.47)">
-         <path d="M688.806,802.778L688.806,859.94" style="fill:none;stroke:black;stroke-width:5.93px;"/>
-     </g>
-     <g transform="matrix(0.902494,0,0,0.902494,2027.65,-1280.25)">
-         <g>
-             <g>
-                 <g>
-                     <g transform="matrix(1.17719,0,0,0.817775,-122.471,1454.31)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,131,192);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM764.58,107.907L764.58,342.832L1241.81,342.832L1241.81,107.907L764.58,107.907Z"/>
-                     </g>
-                     <g transform="matrix(1.0988,0,0,0.502285,-698.084,1726.61)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(201,23,126);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM764.949,112.588L764.949,338.151L1241.44,338.151L1241.44,112.588L764.949,112.588Z"/>
-                     </g>
-                     <g transform="matrix(1.09385,0,0,0.502285,-34.0849,1726.61)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(201,23,126);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM764.975,112.588L764.975,338.151L1241.42,338.151L1241.42,112.588L764.975,112.588Z"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M1001.57,1238.26L1001.57,1256.06L814.157,1256.06L814.157,1273.85" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.08821,0,0,0.502285,624.555,1726.61)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(201,23,126);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM765.003,112.588L765.003,338.151L1241.39,338.151L1241.39,112.588L765.003,112.588Z"/>
-                     </g>
-                     <g transform="matrix(0.211311,0,0,0.473437,123.947,1896.64)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM788.243,113.327L788.243,337.412L1218.15,337.412L1218.15,113.327L788.243,113.327Z"/>
-                     </g>
-                     <g transform="matrix(0.626068,0,0,0.626068,201.091,1493.51)">
-                         <path d="M245.95,822.567C249.684,827.546 251.551,833.826 251.551,841.406C251.551,851.929 247.987,860.217 240.859,866.271C233.73,872.324 224.056,875.351 211.837,875.351C204.029,875.351 196.533,874.049 189.349,871.447C182.164,868.845 176.082,865.167 171.104,860.415L176.535,849.723C187.736,859.001 199.39,863.64 211.497,863.64C220.096,863.64 226.631,861.716 231.1,857.869C235.569,854.022 237.804,848.365 237.804,840.897C237.804,826.075 228.526,818.664 209.97,818.664L196.052,818.664L196.052,806.953L207.254,806.953C216.193,806.953 223.038,804.973 227.79,801.013C232.542,797.053 234.919,791.395 234.919,784.041C234.919,777.478 232.967,772.443 229.063,768.936C225.16,765.428 219.644,763.674 212.515,763.674C200.974,763.674 189.547,768.313 178.232,777.592L172.97,766.899C177.836,762.26 183.804,758.611 190.876,755.952C197.948,753.293 205.331,751.964 213.025,751.964C223.887,751.964 232.571,754.736 239.077,760.28C245.583,765.824 248.836,773.292 248.836,782.683C248.836,789.585 247.138,795.638 243.744,800.843C240.35,806.048 235.654,809.782 229.657,812.045C236.785,814.081 242.217,817.589 245.95,822.567Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(0.211311,0,0,0.473437,267.401,1896.64)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM788.243,113.327L788.243,337.412L1218.15,337.412L1218.15,113.327L788.243,113.327Z"/>
-                     </g>
-                     <g transform="matrix(0.626068,0,0,0.626068,344.545,1493.51)">
-                         <path d="M238.058,803.134C243.772,806.359 248.157,810.857 251.212,816.627C254.267,822.398 255.794,829.073 255.794,836.654C255.794,844.235 254.125,850.967 250.787,856.851C247.45,862.735 242.697,867.289 236.531,870.514C230.364,873.738 223.151,875.351 214.891,875.351C207.537,875.351 200.296,874.021 193.167,871.362C186.039,868.703 180.042,865.054 175.177,860.415L180.438,849.723C191.64,859.001 203.124,863.64 214.891,863.64C223.378,863.64 230.025,861.236 234.834,856.427C239.642,851.618 242.047,845.084 242.047,836.824C242.047,828.791 239.671,822.313 234.919,817.391C230.166,812.469 223.83,810.008 215.91,810.008C204.369,810.008 195.147,814.704 188.245,824.095L178.571,824.095L178.571,753.321L251.042,753.321L251.042,764.862L192.488,764.862L192.488,807.972C199.164,801.522 207.707,798.297 218.116,798.297C225.697,798.297 232.344,799.91 238.058,803.134Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(0.211311,0,0,0.473437,411.536,1896.64)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM788.243,113.327L788.243,337.412L1218.15,337.412L1218.15,113.327L788.243,113.327Z"/>
-                     </g>
-                     <g transform="matrix(0.626068,0,0,0.626068,488.68,1493.51)">
-                         <path d="M237.719,803.134C243.433,806.359 247.874,810.885 251.042,816.712C254.21,822.539 255.794,829.187 255.794,836.654C255.794,844.122 254.125,850.798 250.787,856.681C247.45,862.565 242.839,867.176 236.955,870.514C231.072,873.851 224.396,875.52 216.928,875.52C202.332,875.52 191.074,870.429 183.154,860.245C175.233,850.062 171.273,835.579 171.273,816.797C171.273,803.219 173.112,791.565 176.789,781.835C180.466,772.104 185.784,764.693 192.743,759.601C199.701,754.509 208.046,751.964 217.777,751.964C224.792,751.964 231.609,753.265 238.228,755.867C244.847,758.47 250.646,762.147 255.624,766.899L250.363,777.592C244.706,772.839 239.275,769.332 234.07,767.069C228.865,764.806 223.547,763.674 218.116,763.674C207.707,763.674 199.617,768.313 193.846,777.592C188.076,786.87 185.19,799.881 185.19,816.627L185.19,819.173C187.793,812.724 192.036,807.632 197.919,803.898C203.803,800.164 210.535,798.297 218.116,798.297C225.471,798.297 232.005,799.91 237.719,803.134ZM234.919,856.427C239.671,851.505 242.047,844.971 242.047,836.824C242.047,828.791 239.642,822.313 234.834,817.391C230.025,812.469 223.774,810.008 216.08,810.008C208.159,810.008 201.71,812.497 196.731,817.476C191.753,822.454 189.264,828.904 189.264,836.824C189.264,844.857 191.753,851.363 196.731,856.342C201.71,861.32 208.216,863.81 216.249,863.81C223.943,863.81 230.166,861.349 234.919,856.427Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(0.211311,0,0,0.473437,-23.3963,1896.64)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM788.244,113.327L788.244,337.412L1218.15,337.412L1218.15,113.327L788.244,113.327Z"/>
-                     </g>
-                     <g transform="matrix(0.626068,0,0,0.626068,53.7475,1493.51)">
-                         <path d="M224.566,862.452L251.212,862.452L251.212,874.163L183.833,874.163L183.833,862.452L210.479,862.452L210.479,770.633L185.7,786.417L185.7,773.009L216.589,753.321L224.566,753.321L224.566,862.452Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(0.211311,0,0,0.473437,633.784,1896.21)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM788.244,113.327L788.244,337.412L1218.15,337.412L1218.15,113.327L788.244,113.327Z"/>
-                     </g>
-                     <g transform="matrix(0.626068,0,0,0.626068,712.136,1493.44)">
-                         <path d="M253.927,862.452L253.927,874.163L176.195,874.163L176.195,863.64L218.456,816.797C224.113,810.461 228.243,804.747 230.845,799.655C233.448,794.564 234.749,789.472 234.749,784.38C234.749,777.705 232.825,772.585 228.978,769.021C225.131,765.456 219.644,763.674 212.515,763.674C200.974,763.674 189.547,768.313 178.232,777.592L172.97,766.899C177.723,762.373 183.719,758.753 190.961,756.037C198.202,753.321 205.5,751.964 212.855,751.964C223.943,751.964 232.712,754.821 239.162,760.535C245.611,766.249 248.836,773.971 248.836,783.701C248.836,790.603 247.28,797.251 244.168,803.644C241.057,810.036 235.88,817.193 228.639,825.113L194.186,862.452L253.927,862.452Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(0.211311,0,0,0.473437,781.127,1896.21)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM788.243,113.327L788.243,337.412L1218.15,337.412L1218.15,113.327L788.243,113.327Z"/>
-                     </g>
-                     <g transform="matrix(0.626068,0,0,0.626068,856.93,1493.46)">
-                         <path d="M258.34,836.315L258.34,847.856L240.01,847.856L240.01,874.163L226.093,874.163L226.093,847.856L170.425,847.856L170.425,837.333L228.639,753.321L240.01,753.321L240.01,836.315L258.34,836.315ZM184.851,836.315L226.093,836.315L226.093,776.913L184.851,836.315Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,107.033,497.127)">
-                         <path d="M71.23,1159.88L71.23,1132.92L60.814,1132.92L60.814,1129.98L85.132,1129.98L85.132,1132.92L74.716,1132.92L74.716,1159.88L71.23,1159.88Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M103.36,1149.21L87.862,1149.21C87.89,1151.9 88.513,1153.93 89.731,1155.3C90.949,1156.67 92.72,1157.36 95.044,1157.36C97.508,1157.36 99.776,1156.53 101.848,1154.88L102.982,1157.36C102.058,1158.23 100.875,1158.91 99.433,1159.42C97.991,1159.92 96.514,1160.17 95.002,1160.17C91.698,1160.17 89.108,1159.2 87.232,1157.26C85.356,1155.31 84.418,1152.64 84.418,1149.25C84.418,1147.1 84.838,1145.19 85.678,1143.52C86.518,1141.86 87.694,1140.56 89.206,1139.64C90.718,1138.71 92.44,1138.25 94.372,1138.25C97.172,1138.25 99.37,1139.17 100.966,1141C102.562,1142.84 103.36,1145.36 103.36,1148.58L103.36,1149.21ZM90.109,1142.49C89.003,1143.56 88.296,1145.05 87.988,1146.99L100.294,1146.99C100.126,1145 99.545,1143.49 98.551,1142.45C97.557,1141.41 96.178,1140.9 94.414,1140.9C92.65,1140.9 91.215,1141.43 90.109,1142.49Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M120.286,1138.5L120.202,1141.61C119.558,1141.39 118.816,1141.27 117.976,1141.27C115.932,1141.27 114.413,1141.91 113.419,1143.18C112.425,1144.46 111.928,1146.01 111.928,1147.83L111.928,1159.88L108.526,1159.88L108.526,1144.68C108.526,1142.49 108.414,1140.52 108.19,1138.75L111.424,1138.75L111.76,1142.66C112.292,1141.23 113.146,1140.14 114.322,1139.38C115.498,1138.63 116.842,1138.25 118.354,1138.25C119.054,1138.25 119.698,1138.33 120.286,1138.5Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M154.18,1146.61L154.18,1159.88L150.778,1159.88L150.778,1146.78C150.778,1144.79 150.435,1143.35 149.749,1142.45C149.063,1141.55 147.95,1141.11 146.41,1141.11C144.618,1141.11 143.218,1141.71 142.21,1142.91C141.202,1144.12 140.698,1145.75 140.698,1147.83L140.698,1159.88L137.296,1159.88L137.296,1146.78C137.296,1144.82 136.946,1143.38 136.246,1142.47C135.546,1141.56 134.426,1141.11 132.886,1141.11C131.094,1141.11 129.687,1141.71 128.665,1142.91C127.643,1144.12 127.132,1145.75 127.132,1147.83L127.132,1159.88L123.73,1159.88L123.73,1144.68C123.73,1142.49 123.618,1140.52 123.394,1138.75L126.628,1138.75L126.964,1142.45C127.552,1141.11 128.427,1140.07 129.589,1139.34C130.751,1138.61 132.102,1138.25 133.642,1138.25C135.322,1138.25 136.694,1138.59 137.758,1139.26C138.822,1139.93 139.606,1140.97 140.11,1142.37C140.754,1141.11 141.699,1140.11 142.945,1139.36C144.191,1138.62 145.598,1138.25 147.166,1138.25C151.842,1138.25 154.18,1141.04 154.18,1146.61Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M183.79,1156.98L190.384,1156.98L190.384,1159.88L173.71,1159.88L173.71,1156.98L180.304,1156.98L180.304,1134.26L174.172,1138.17L174.172,1134.85L181.816,1129.98L183.79,1129.98L183.79,1156.98Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M196.222,1139.22L200.548,1139.22L200.548,1143.58L196.222,1143.58L196.222,1139.22ZM196.222,1155.55L200.548,1155.55L200.548,1158.62C200.548,1159.8 200.352,1160.87 199.96,1161.85C199.568,1162.83 198.91,1163.79 197.986,1164.71L196.39,1163.49C197.482,1162.23 198.098,1161.03 198.238,1159.88L196.222,1159.88L196.222,1155.55Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M216.382,1159.88L218.734,1129.98L225.328,1129.98L223.354,1154.55L236.71,1154.55L236.29,1159.88L216.382,1159.88Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M239.86,1159.88L241.54,1138.59L247.882,1138.59L246.202,1159.88L239.86,1159.88ZM242.044,1128.59L248.848,1128.59L248.386,1134.55L241.582,1134.55L242.044,1128.59Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M250.108,1157.61L252.166,1153.2C253.342,1154.01 254.602,1154.64 255.946,1155.07C257.29,1155.51 258.634,1155.72 259.978,1155.72C261.154,1155.72 262.022,1155.55 262.582,1155.22C263.142,1154.88 263.422,1154.43 263.422,1153.87C263.422,1153.29 263.093,1152.82 262.435,1152.49C261.777,1152.15 260.706,1151.76 259.222,1151.31C257.682,1150.89 256.422,1150.47 255.442,1150.05C254.462,1149.63 253.615,1149.01 252.901,1148.18C252.187,1147.36 251.83,1146.29 251.83,1144.97C251.83,1143.6 252.215,1142.39 252.985,1141.36C253.755,1140.32 254.847,1139.51 256.261,1138.92C257.675,1138.33 259.292,1138.04 261.112,1138.04C262.708,1138.04 264.269,1138.28 265.795,1138.75C267.321,1139.23 268.602,1139.87 269.638,1140.69L267.622,1144.93C266.586,1144.17 265.494,1143.6 264.346,1143.21C263.198,1142.81 262.078,1142.62 260.986,1142.62C259.838,1142.62 258.97,1142.79 258.382,1143.12C257.794,1143.46 257.5,1143.92 257.5,1144.51C257.5,1145.12 257.85,1145.61 258.55,1145.98C259.25,1146.34 260.314,1146.72 261.742,1147.11C263.282,1147.56 264.535,1147.99 265.501,1148.41C266.467,1148.83 267.307,1149.46 268.021,1150.28C268.735,1151.11 269.092,1152.18 269.092,1153.5C269.092,1155.6 268.259,1157.24 266.593,1158.43C264.927,1159.62 262.68,1160.22 259.852,1160.22C256.212,1160.22 252.964,1159.35 250.108,1157.61Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M280.894,1151.61C280.81,1152.78 281.048,1153.65 281.608,1154.21C282.168,1154.77 282.938,1155.05 283.918,1155.05C284.562,1155.05 285.276,1154.94 286.06,1154.71L285.64,1159.63C284.688,1160.02 283.456,1160.22 281.944,1160.22C279.536,1160.22 277.695,1159.57 276.421,1158.28C275.147,1157 274.51,1155.18 274.51,1152.82C274.51,1152.35 274.524,1151.98 274.552,1151.73L275.224,1143.33L271.192,1143.33L271.57,1138.59L275.602,1138.59L275.98,1133.59L282.49,1131.53L281.944,1138.59L287.362,1138.59L286.984,1143.33L281.566,1143.33L280.894,1151.61Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M287.656,1157.61L289.714,1153.2C290.89,1154.01 292.15,1154.64 293.494,1155.07C294.838,1155.51 296.182,1155.72 297.526,1155.72C298.702,1155.72 299.57,1155.55 300.13,1155.22C300.69,1154.88 300.97,1154.43 300.97,1153.87C300.97,1153.29 300.641,1152.82 299.983,1152.49C299.325,1152.15 298.254,1151.76 296.77,1151.31C295.23,1150.89 293.97,1150.47 292.99,1150.05C292.01,1149.63 291.163,1149.01 290.449,1148.18C289.735,1147.36 289.378,1146.29 289.378,1144.97C289.378,1143.6 289.763,1142.39 290.533,1141.36C291.303,1140.32 292.395,1139.51 293.809,1138.92C295.223,1138.33 296.84,1138.04 298.66,1138.04C300.256,1138.04 301.817,1138.28 303.343,1138.75C304.869,1139.23 306.15,1139.87 307.186,1140.69L305.17,1144.93C304.134,1144.17 303.042,1143.6 301.894,1143.21C300.746,1142.81 299.626,1142.62 298.534,1142.62C297.386,1142.62 296.518,1142.79 295.93,1143.12C295.342,1143.46 295.048,1143.92 295.048,1144.51C295.048,1145.12 295.398,1145.61 296.098,1145.98C296.798,1146.34 297.862,1146.72 299.29,1147.11C300.83,1147.56 302.083,1147.99 303.049,1148.41C304.015,1148.83 304.855,1149.46 305.569,1150.28C306.283,1151.11 306.64,1152.18 306.64,1153.5C306.64,1155.6 305.807,1157.24 304.141,1158.43C302.475,1159.62 300.228,1160.22 297.4,1160.22C293.76,1160.22 290.512,1159.35 287.656,1157.61Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M334.696,1156.98L341.29,1156.98L341.29,1159.88L324.616,1159.88L324.616,1156.98L331.21,1156.98L331.21,1134.26L325.078,1138.17L325.078,1134.85L332.722,1129.98L334.696,1129.98L334.696,1156.98Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M351.454,1155.55L351.454,1158.62C351.454,1159.8 351.258,1160.87 350.866,1161.85C350.474,1162.83 349.816,1163.79 348.892,1164.71L347.296,1163.49C348.388,1162.23 349.004,1161.03 349.144,1159.88L347.128,1159.88L347.128,1155.55L351.454,1155.55Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M374.89,1147.11C375.814,1148.34 376.276,1149.9 376.276,1151.77C376.276,1154.38 375.394,1156.43 373.63,1157.93C371.866,1159.42 369.472,1160.17 366.448,1160.17C364.516,1160.17 362.661,1159.85 360.883,1159.21C359.105,1158.56 357.6,1157.65 356.368,1156.48L357.712,1153.83C360.484,1156.13 363.368,1157.28 366.364,1157.28C368.492,1157.28 370.109,1156.8 371.215,1155.85C372.321,1154.9 372.874,1153.5 372.874,1151.65C372.874,1147.98 370.578,1146.15 365.986,1146.15L362.542,1146.15L362.542,1143.25L365.314,1143.25C367.526,1143.25 369.22,1142.76 370.396,1141.78C371.572,1140.8 372.16,1139.4 372.16,1137.58C372.16,1135.95 371.677,1134.71 370.711,1133.84C369.745,1132.97 368.38,1132.54 366.616,1132.54C363.76,1132.54 360.932,1133.69 358.132,1135.98L356.83,1133.34C358.034,1132.19 359.511,1131.29 361.261,1130.63C363.011,1129.97 364.838,1129.64 366.742,1129.64C369.43,1129.64 371.579,1130.33 373.189,1131.7C374.799,1133.07 375.604,1134.92 375.604,1137.24C375.604,1138.95 375.184,1140.45 374.344,1141.74C373.504,1143.02 372.342,1143.95 370.858,1144.51C372.622,1145.01 373.966,1145.88 374.89,1147.11Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M386.356,1155.55L386.356,1158.62C386.356,1159.8 386.16,1160.87 385.768,1161.85C385.376,1162.83 384.718,1163.79 383.794,1164.71L382.198,1163.49C383.29,1162.23 383.906,1161.03 384.046,1159.88L382.03,1159.88L382.03,1155.55L386.356,1155.55Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M412.858,1150.51L412.858,1153.37L408.322,1153.37L408.322,1159.88L404.878,1159.88L404.878,1153.37L391.102,1153.37L391.102,1150.77L405.508,1129.98L408.322,1129.98L408.322,1150.51L412.858,1150.51ZM394.672,1150.51L404.878,1150.51L404.878,1135.81L394.672,1150.51Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M421.258,1155.55L421.258,1158.62C421.258,1159.8 421.062,1160.87 420.67,1161.85C420.278,1162.83 419.62,1163.79 418.696,1164.71L417.1,1163.49C418.192,1162.23 418.808,1161.03 418.948,1159.88L416.932,1159.88L416.932,1155.55L421.258,1155.55Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M442.741,1142.3C444.155,1143.1 445.24,1144.21 445.996,1145.64C446.752,1147.07 447.13,1148.72 447.13,1150.6C447.13,1152.47 446.717,1154.14 445.891,1155.6C445.065,1157.05 443.889,1158.18 442.363,1158.98C440.837,1159.78 439.052,1160.17 437.008,1160.17C435.188,1160.17 433.396,1159.85 431.632,1159.19C429.868,1158.53 428.384,1157.63 427.18,1156.48L428.482,1153.83C431.254,1156.13 434.096,1157.28 437.008,1157.28C439.108,1157.28 440.753,1156.68 441.943,1155.49C443.133,1154.3 443.728,1152.68 443.728,1150.64C443.728,1148.65 443.14,1147.05 441.964,1145.83C440.788,1144.61 439.22,1144 437.26,1144C434.404,1144 432.122,1145.17 430.414,1147.49L428.02,1147.49L428.02,1129.98L445.954,1129.98L445.954,1132.83L431.464,1132.83L431.464,1143.5C433.116,1141.9 435.23,1141.11 437.806,1141.11C439.682,1141.11 441.327,1141.51 442.741,1142.3Z" style="fill:white;fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,766.077,497.426)">
-                         <path d="M71.23,1159.88L71.23,1132.92L60.814,1132.92L60.814,1129.98L85.132,1129.98L85.132,1132.92L74.716,1132.92L74.716,1159.88L71.23,1159.88Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M103.36,1149.21L87.862,1149.21C87.89,1151.9 88.513,1153.93 89.731,1155.3C90.949,1156.67 92.72,1157.36 95.044,1157.36C97.508,1157.36 99.776,1156.53 101.848,1154.88L102.982,1157.36C102.058,1158.23 100.875,1158.91 99.433,1159.42C97.991,1159.92 96.514,1160.17 95.002,1160.17C91.698,1160.17 89.108,1159.2 87.232,1157.26C85.356,1155.31 84.418,1152.64 84.418,1149.25C84.418,1147.1 84.838,1145.19 85.678,1143.52C86.518,1141.86 87.694,1140.56 89.206,1139.64C90.718,1138.71 92.44,1138.25 94.372,1138.25C97.172,1138.25 99.37,1139.17 100.966,1141C102.562,1142.84 103.36,1145.36 103.36,1148.58L103.36,1149.21ZM90.109,1142.49C89.003,1143.56 88.296,1145.05 87.988,1146.99L100.294,1146.99C100.126,1145 99.545,1143.49 98.551,1142.45C97.557,1141.41 96.178,1140.9 94.414,1140.9C92.65,1140.9 91.215,1141.43 90.109,1142.49Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M120.286,1138.5L120.202,1141.61C119.558,1141.39 118.816,1141.27 117.976,1141.27C115.932,1141.27 114.413,1141.91 113.419,1143.18C112.425,1144.46 111.928,1146.01 111.928,1147.83L111.928,1159.88L108.526,1159.88L108.526,1144.68C108.526,1142.49 108.414,1140.52 108.19,1138.75L111.424,1138.75L111.76,1142.66C112.292,1141.23 113.146,1140.14 114.322,1139.38C115.498,1138.63 116.842,1138.25 118.354,1138.25C119.054,1138.25 119.698,1138.33 120.286,1138.5Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M154.18,1146.61L154.18,1159.88L150.778,1159.88L150.778,1146.78C150.778,1144.79 150.435,1143.35 149.749,1142.45C149.063,1141.55 147.95,1141.11 146.41,1141.11C144.618,1141.11 143.218,1141.71 142.21,1142.91C141.202,1144.12 140.698,1145.75 140.698,1147.83L140.698,1159.88L137.296,1159.88L137.296,1146.78C137.296,1144.82 136.946,1143.38 136.246,1142.47C135.546,1141.56 134.426,1141.11 132.886,1141.11C131.094,1141.11 129.687,1141.71 128.665,1142.91C127.643,1144.12 127.132,1145.75 127.132,1147.83L127.132,1159.88L123.73,1159.88L123.73,1144.68C123.73,1142.49 123.618,1140.52 123.394,1138.75L126.628,1138.75L126.964,1142.45C127.552,1141.11 128.427,1140.07 129.589,1139.34C130.751,1138.61 132.102,1138.25 133.642,1138.25C135.322,1138.25 136.694,1138.59 137.758,1139.26C138.822,1139.93 139.606,1140.97 140.11,1142.37C140.754,1141.11 141.699,1140.11 142.945,1139.36C144.191,1138.62 145.598,1138.25 147.166,1138.25C151.842,1138.25 154.18,1141.04 154.18,1146.61Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M191.056,1156.98L191.056,1159.88L171.82,1159.88L171.82,1157.28L182.278,1145.68C183.678,1144.12 184.7,1142.7 185.344,1141.44C185.988,1140.18 186.31,1138.92 186.31,1137.66C186.31,1136.01 185.834,1134.74 184.882,1133.86C183.93,1132.98 182.572,1132.54 180.808,1132.54C177.952,1132.54 175.124,1133.69 172.324,1135.98L171.022,1133.34C172.198,1132.22 173.682,1131.32 175.474,1130.65C177.266,1129.98 179.072,1129.64 180.892,1129.64C183.636,1129.64 185.806,1130.35 187.402,1131.76C188.998,1133.17 189.796,1135.09 189.796,1137.49C189.796,1139.2 189.411,1140.85 188.641,1142.43C187.871,1144.01 186.59,1145.78 184.798,1147.74L176.272,1156.98L191.056,1156.98Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M196.222,1139.22L200.548,1139.22L200.548,1143.58L196.222,1143.58L196.222,1139.22ZM196.222,1155.55L200.548,1155.55L200.548,1158.62C200.548,1159.8 200.352,1160.87 199.96,1161.85C199.568,1162.83 198.91,1163.79 197.986,1164.71L196.39,1163.49C197.482,1162.23 198.098,1161.03 198.238,1159.88L196.222,1159.88L196.222,1155.55Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M216.382,1159.88L218.734,1129.98L225.328,1129.98L223.354,1154.55L236.71,1154.55L236.29,1159.88L216.382,1159.88Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M239.86,1159.88L241.54,1138.59L247.882,1138.59L246.202,1159.88L239.86,1159.88ZM242.044,1128.59L248.848,1128.59L248.386,1134.55L241.582,1134.55L242.044,1128.59Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M250.108,1157.61L252.166,1153.2C253.342,1154.01 254.602,1154.64 255.946,1155.07C257.29,1155.51 258.634,1155.72 259.978,1155.72C261.154,1155.72 262.022,1155.55 262.582,1155.22C263.142,1154.88 263.422,1154.43 263.422,1153.87C263.422,1153.29 263.093,1152.82 262.435,1152.49C261.777,1152.15 260.706,1151.76 259.222,1151.31C257.682,1150.89 256.422,1150.47 255.442,1150.05C254.462,1149.63 253.615,1149.01 252.901,1148.18C252.187,1147.36 251.83,1146.29 251.83,1144.97C251.83,1143.6 252.215,1142.39 252.985,1141.36C253.755,1140.32 254.847,1139.51 256.261,1138.92C257.675,1138.33 259.292,1138.04 261.112,1138.04C262.708,1138.04 264.269,1138.28 265.795,1138.75C267.321,1139.23 268.602,1139.87 269.638,1140.69L267.622,1144.93C266.586,1144.17 265.494,1143.6 264.346,1143.21C263.198,1142.81 262.078,1142.62 260.986,1142.62C259.838,1142.62 258.97,1142.79 258.382,1143.12C257.794,1143.46 257.5,1143.92 257.5,1144.51C257.5,1145.12 257.85,1145.61 258.55,1145.98C259.25,1146.34 260.314,1146.72 261.742,1147.11C263.282,1147.56 264.535,1147.99 265.501,1148.41C266.467,1148.83 267.307,1149.46 268.021,1150.28C268.735,1151.11 269.092,1152.18 269.092,1153.5C269.092,1155.6 268.259,1157.24 266.593,1158.43C264.927,1159.62 262.68,1160.22 259.852,1160.22C256.212,1160.22 252.964,1159.35 250.108,1157.61Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M280.894,1151.61C280.81,1152.78 281.048,1153.65 281.608,1154.21C282.168,1154.77 282.938,1155.05 283.918,1155.05C284.562,1155.05 285.276,1154.94 286.06,1154.71L285.64,1159.63C284.688,1160.02 283.456,1160.22 281.944,1160.22C279.536,1160.22 277.695,1159.57 276.421,1158.28C275.147,1157 274.51,1155.18 274.51,1152.82C274.51,1152.35 274.524,1151.98 274.552,1151.73L275.224,1143.33L271.192,1143.33L271.57,1138.59L275.602,1138.59L275.98,1133.59L282.49,1131.53L281.944,1138.59L287.362,1138.59L286.984,1143.33L281.566,1143.33L280.894,1151.61Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M287.656,1157.61L289.714,1153.2C290.89,1154.01 292.15,1154.64 293.494,1155.07C294.838,1155.51 296.182,1155.72 297.526,1155.72C298.702,1155.72 299.57,1155.55 300.13,1155.22C300.69,1154.88 300.97,1154.43 300.97,1153.87C300.97,1153.29 300.641,1152.82 299.983,1152.49C299.325,1152.15 298.254,1151.76 296.77,1151.31C295.23,1150.89 293.97,1150.47 292.99,1150.05C292.01,1149.63 291.163,1149.01 290.449,1148.18C289.735,1147.36 289.378,1146.29 289.378,1144.97C289.378,1143.6 289.763,1142.39 290.533,1141.36C291.303,1140.32 292.395,1139.51 293.809,1138.92C295.223,1138.33 296.84,1138.04 298.66,1138.04C300.256,1138.04 301.817,1138.28 303.343,1138.75C304.869,1139.23 306.15,1139.87 307.186,1140.69L305.17,1144.93C304.134,1144.17 303.042,1143.6 301.894,1143.21C300.746,1142.81 299.626,1142.62 298.534,1142.62C297.386,1142.62 296.518,1142.79 295.93,1143.12C295.342,1143.46 295.048,1143.92 295.048,1144.51C295.048,1145.12 295.398,1145.61 296.098,1145.98C296.798,1146.34 297.862,1146.72 299.29,1147.11C300.83,1147.56 302.083,1147.99 303.049,1148.41C304.015,1148.83 304.855,1149.46 305.569,1150.28C306.283,1151.11 306.64,1152.18 306.64,1153.5C306.64,1155.6 305.807,1157.24 304.141,1158.43C302.475,1159.62 300.228,1160.22 297.4,1160.22C293.76,1160.22 290.512,1159.35 287.656,1157.61Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M341.962,1156.98L341.962,1159.88L322.726,1159.88L322.726,1157.28L333.184,1145.68C334.584,1144.12 335.606,1142.7 336.25,1141.44C336.894,1140.18 337.216,1138.92 337.216,1137.66C337.216,1136.01 336.74,1134.74 335.788,1133.86C334.836,1132.98 333.478,1132.54 331.714,1132.54C328.858,1132.54 326.03,1133.69 323.23,1135.98L321.928,1133.34C323.104,1132.22 324.588,1131.32 326.38,1130.65C328.172,1129.98 329.978,1129.64 331.798,1129.64C334.542,1129.64 336.712,1130.35 338.308,1131.76C339.904,1133.17 340.702,1135.09 340.702,1137.49C340.702,1139.2 340.317,1140.85 339.547,1142.43C338.777,1144.01 337.496,1145.78 335.704,1147.74L327.178,1156.98L341.962,1156.98Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M351.454,1155.55L351.454,1158.62C351.454,1159.8 351.258,1160.87 350.866,1161.85C350.474,1162.83 349.816,1163.79 348.892,1164.71L347.296,1163.49C348.388,1162.23 349.004,1161.03 349.144,1159.88L347.128,1159.88L347.128,1155.55L351.454,1155.55Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M377.956,1150.51L377.956,1153.37L373.42,1153.37L373.42,1159.88L369.976,1159.88L369.976,1153.37L356.2,1153.37L356.2,1150.77L370.606,1129.98L373.42,1129.98L373.42,1150.51L377.956,1150.51ZM359.77,1150.51L369.976,1150.51L369.976,1135.81L359.77,1150.51Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M386.356,1155.55L386.356,1158.62C386.356,1159.8 386.16,1160.87 385.768,1161.85C385.376,1162.83 384.718,1163.79 383.794,1164.71L382.198,1163.49C383.29,1162.23 383.906,1161.03 384.046,1159.88L382.03,1159.88L382.03,1155.55L386.356,1155.55Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M407.839,1142.3C409.253,1143.1 410.338,1144.21 411.094,1145.64C411.85,1147.07 412.228,1148.72 412.228,1150.6C412.228,1152.47 411.815,1154.14 410.989,1155.6C410.163,1157.05 408.987,1158.18 407.461,1158.98C405.935,1159.78 404.15,1160.17 402.106,1160.17C400.286,1160.17 398.494,1159.85 396.73,1159.19C394.966,1158.53 393.482,1157.63 392.278,1156.48L393.58,1153.83C396.352,1156.13 399.194,1157.28 402.106,1157.28C404.206,1157.28 405.851,1156.68 407.041,1155.49C408.231,1154.3 408.826,1152.68 408.826,1150.64C408.826,1148.65 408.238,1147.05 407.062,1145.83C405.886,1144.61 404.318,1144 402.358,1144C399.502,1144 397.22,1145.17 395.512,1147.49L393.118,1147.49L393.118,1129.98L411.052,1129.98L411.052,1132.83L396.562,1132.83L396.562,1143.5C398.214,1141.9 400.328,1141.11 402.904,1141.11C404.78,1141.11 406.425,1141.51 407.839,1142.3Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M421.258,1155.55L421.258,1158.62C421.258,1159.8 421.062,1160.87 420.67,1161.85C420.278,1162.83 419.62,1163.79 418.696,1164.71L417.1,1163.49C418.192,1162.23 418.808,1161.03 418.948,1159.88L416.932,1159.88L416.932,1155.55L421.258,1155.55Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M445.639,1147.26C446.717,1148.56 447.256,1150.12 447.256,1151.94C447.256,1154.49 446.29,1156.5 444.358,1157.97C442.426,1159.44 439.822,1160.17 436.546,1160.17C433.27,1160.17 430.666,1159.44 428.734,1157.97C426.802,1156.5 425.836,1154.49 425.836,1151.94C425.836,1150.12 426.389,1148.55 427.495,1147.24C428.601,1145.92 430.12,1145.01 432.052,1144.51C430.26,1143.98 428.888,1143.1 427.936,1141.88C426.984,1140.66 426.508,1139.23 426.508,1137.58C426.508,1135.98 426.928,1134.59 427.768,1133.4C428.608,1132.21 429.791,1131.29 431.317,1130.63C432.843,1129.97 434.586,1129.64 436.546,1129.64C438.506,1129.64 440.249,1129.97 441.775,1130.63C443.301,1131.29 444.484,1132.21 445.324,1133.4C446.164,1134.59 446.584,1135.98 446.584,1137.58C446.584,1139.23 446.101,1140.66 445.135,1141.88C444.169,1143.1 442.818,1143.98 441.082,1144.51C443.042,1145.04 444.561,1145.96 445.639,1147.26ZM431.737,1141.71C432.927,1142.71 434.53,1143.32 436.546,1143.54C438.562,1143.32 440.165,1142.71 441.355,1141.71C442.545,1140.72 443.14,1139.43 443.14,1137.83C443.14,1136.18 442.559,1134.88 441.397,1133.92C440.235,1132.97 438.618,1132.5 436.546,1132.5C434.474,1132.5 432.857,1132.97 431.695,1133.92C430.533,1134.88 429.952,1136.18 429.952,1137.83C429.952,1139.43 430.547,1140.72 431.737,1141.71ZM441.964,1155.89C443.224,1154.94 443.854,1153.55 443.854,1151.73C443.854,1150.08 443.189,1148.76 441.859,1147.76C440.529,1146.77 438.758,1146.16 436.546,1145.94C434.334,1146.16 432.563,1146.77 431.233,1147.76C429.903,1148.76 429.238,1150.08 429.238,1151.73C429.238,1153.55 429.868,1154.94 431.128,1155.89C432.388,1156.84 434.194,1157.32 436.546,1157.32C438.898,1157.32 440.704,1156.84 441.964,1155.89Z" style="fill:white;fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,1419.05,497.426)">
-                         <path d="M71.23,1159.88L71.23,1132.92L60.814,1132.92L60.814,1129.98L85.132,1129.98L85.132,1132.92L74.716,1132.92L74.716,1159.88L71.23,1159.88Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M103.36,1149.21L87.862,1149.21C87.89,1151.9 88.513,1153.93 89.731,1155.3C90.949,1156.67 92.72,1157.36 95.044,1157.36C97.508,1157.36 99.776,1156.53 101.848,1154.88L102.982,1157.36C102.058,1158.23 100.875,1158.91 99.433,1159.42C97.991,1159.92 96.514,1160.17 95.002,1160.17C91.698,1160.17 89.108,1159.2 87.232,1157.26C85.356,1155.31 84.418,1152.64 84.418,1149.25C84.418,1147.1 84.838,1145.19 85.678,1143.52C86.518,1141.86 87.694,1140.56 89.206,1139.64C90.718,1138.71 92.44,1138.25 94.372,1138.25C97.172,1138.25 99.37,1139.17 100.966,1141C102.562,1142.84 103.36,1145.36 103.36,1148.58L103.36,1149.21ZM90.109,1142.49C89.003,1143.56 88.296,1145.05 87.988,1146.99L100.294,1146.99C100.126,1145 99.545,1143.49 98.551,1142.45C97.557,1141.41 96.178,1140.9 94.414,1140.9C92.65,1140.9 91.215,1141.43 90.109,1142.49Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M120.286,1138.5L120.202,1141.61C119.558,1141.39 118.816,1141.27 117.976,1141.27C115.932,1141.27 114.413,1141.91 113.419,1143.18C112.425,1144.46 111.928,1146.01 111.928,1147.83L111.928,1159.88L108.526,1159.88L108.526,1144.68C108.526,1142.49 108.414,1140.52 108.19,1138.75L111.424,1138.75L111.76,1142.66C112.292,1141.23 113.146,1140.14 114.322,1139.38C115.498,1138.63 116.842,1138.25 118.354,1138.25C119.054,1138.25 119.698,1138.33 120.286,1138.5Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M154.18,1146.61L154.18,1159.88L150.778,1159.88L150.778,1146.78C150.778,1144.79 150.435,1143.35 149.749,1142.45C149.063,1141.55 147.95,1141.11 146.41,1141.11C144.618,1141.11 143.218,1141.71 142.21,1142.91C141.202,1144.12 140.698,1145.75 140.698,1147.83L140.698,1159.88L137.296,1159.88L137.296,1146.78C137.296,1144.82 136.946,1143.38 136.246,1142.47C135.546,1141.56 134.426,1141.11 132.886,1141.11C131.094,1141.11 129.687,1141.71 128.665,1142.91C127.643,1144.12 127.132,1145.75 127.132,1147.83L127.132,1159.88L123.73,1159.88L123.73,1144.68C123.73,1142.49 123.618,1140.52 123.394,1138.75L126.628,1138.75L126.964,1142.45C127.552,1141.11 128.427,1140.07 129.589,1139.34C130.751,1138.61 132.102,1138.25 133.642,1138.25C135.322,1138.25 136.694,1138.59 137.758,1139.26C138.822,1139.93 139.606,1140.97 140.11,1142.37C140.754,1141.11 141.699,1140.11 142.945,1139.36C144.191,1138.62 145.598,1138.25 147.166,1138.25C151.842,1138.25 154.18,1141.04 154.18,1146.61Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M189.082,1147.11C190.006,1148.34 190.468,1149.9 190.468,1151.77C190.468,1154.38 189.586,1156.43 187.822,1157.93C186.058,1159.42 183.664,1160.17 180.64,1160.17C178.708,1160.17 176.853,1159.85 175.075,1159.21C173.297,1158.56 171.792,1157.65 170.56,1156.48L171.904,1153.83C174.676,1156.13 177.56,1157.28 180.556,1157.28C182.684,1157.28 184.301,1156.8 185.407,1155.85C186.513,1154.9 187.066,1153.5 187.066,1151.65C187.066,1147.98 184.77,1146.15 180.178,1146.15L176.734,1146.15L176.734,1143.25L179.506,1143.25C181.718,1143.25 183.412,1142.76 184.588,1141.78C185.764,1140.8 186.352,1139.4 186.352,1137.58C186.352,1135.95 185.869,1134.71 184.903,1133.84C183.937,1132.97 182.572,1132.54 180.808,1132.54C177.952,1132.54 175.124,1133.69 172.324,1135.98L171.022,1133.34C172.226,1132.19 173.703,1131.29 175.453,1130.63C177.203,1129.97 179.03,1129.64 180.934,1129.64C183.622,1129.64 185.771,1130.33 187.381,1131.7C188.991,1133.07 189.796,1134.92 189.796,1137.24C189.796,1138.95 189.376,1140.45 188.536,1141.74C187.696,1143.02 186.534,1143.95 185.05,1144.51C186.814,1145.01 188.158,1145.88 189.082,1147.11Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M196.222,1139.22L200.548,1139.22L200.548,1143.58L196.222,1143.58L196.222,1139.22ZM196.222,1155.55L200.548,1155.55L200.548,1158.62C200.548,1159.8 200.352,1160.87 199.96,1161.85C199.568,1162.83 198.91,1163.79 197.986,1164.71L196.39,1163.49C197.482,1162.23 198.098,1161.03 198.238,1159.88L196.222,1159.88L196.222,1155.55Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M216.382,1159.88L218.734,1129.98L225.328,1129.98L223.354,1154.55L236.71,1154.55L236.29,1159.88L216.382,1159.88Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M239.86,1159.88L241.54,1138.59L247.882,1138.59L246.202,1159.88L239.86,1159.88ZM242.044,1128.59L248.848,1128.59L248.386,1134.55L241.582,1134.55L242.044,1128.59Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M250.108,1157.61L252.166,1153.2C253.342,1154.01 254.602,1154.64 255.946,1155.07C257.29,1155.51 258.634,1155.72 259.978,1155.72C261.154,1155.72 262.022,1155.55 262.582,1155.22C263.142,1154.88 263.422,1154.43 263.422,1153.87C263.422,1153.29 263.093,1152.82 262.435,1152.49C261.777,1152.15 260.706,1151.76 259.222,1151.31C257.682,1150.89 256.422,1150.47 255.442,1150.05C254.462,1149.63 253.615,1149.01 252.901,1148.18C252.187,1147.36 251.83,1146.29 251.83,1144.97C251.83,1143.6 252.215,1142.39 252.985,1141.36C253.755,1140.32 254.847,1139.51 256.261,1138.92C257.675,1138.33 259.292,1138.04 261.112,1138.04C262.708,1138.04 264.269,1138.28 265.795,1138.75C267.321,1139.23 268.602,1139.87 269.638,1140.69L267.622,1144.93C266.586,1144.17 265.494,1143.6 264.346,1143.21C263.198,1142.81 262.078,1142.62 260.986,1142.62C259.838,1142.62 258.97,1142.79 258.382,1143.12C257.794,1143.46 257.5,1143.92 257.5,1144.51C257.5,1145.12 257.85,1145.61 258.55,1145.98C259.25,1146.34 260.314,1146.72 261.742,1147.11C263.282,1147.56 264.535,1147.99 265.501,1148.41C266.467,1148.83 267.307,1149.46 268.021,1150.28C268.735,1151.11 269.092,1152.18 269.092,1153.5C269.092,1155.6 268.259,1157.24 266.593,1158.43C264.927,1159.62 262.68,1160.22 259.852,1160.22C256.212,1160.22 252.964,1159.35 250.108,1157.61Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M280.894,1151.61C280.81,1152.78 281.048,1153.65 281.608,1154.21C282.168,1154.77 282.938,1155.05 283.918,1155.05C284.562,1155.05 285.276,1154.94 286.06,1154.71L285.64,1159.63C284.688,1160.02 283.456,1160.22 281.944,1160.22C279.536,1160.22 277.695,1159.57 276.421,1158.28C275.147,1157 274.51,1155.18 274.51,1152.82C274.51,1152.35 274.524,1151.98 274.552,1151.73L275.224,1143.33L271.192,1143.33L271.57,1138.59L275.602,1138.59L275.98,1133.59L282.49,1131.53L281.944,1138.59L287.362,1138.59L286.984,1143.33L281.566,1143.33L280.894,1151.61Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M287.656,1157.61L289.714,1153.2C290.89,1154.01 292.15,1154.64 293.494,1155.07C294.838,1155.51 296.182,1155.72 297.526,1155.72C298.702,1155.72 299.57,1155.55 300.13,1155.22C300.69,1154.88 300.97,1154.43 300.97,1153.87C300.97,1153.29 300.641,1152.82 299.983,1152.49C299.325,1152.15 298.254,1151.76 296.77,1151.31C295.23,1150.89 293.97,1150.47 292.99,1150.05C292.01,1149.63 291.163,1149.01 290.449,1148.18C289.735,1147.36 289.378,1146.29 289.378,1144.97C289.378,1143.6 289.763,1142.39 290.533,1141.36C291.303,1140.32 292.395,1139.51 293.809,1138.92C295.223,1138.33 296.84,1138.04 298.66,1138.04C300.256,1138.04 301.817,1138.28 303.343,1138.75C304.869,1139.23 306.15,1139.87 307.186,1140.69L305.17,1144.93C304.134,1144.17 303.042,1143.6 301.894,1143.21C300.746,1142.81 299.626,1142.62 298.534,1142.62C297.386,1142.62 296.518,1142.79 295.93,1143.12C295.342,1143.46 295.048,1143.92 295.048,1144.51C295.048,1145.12 295.398,1145.61 296.098,1145.98C296.798,1146.34 297.862,1146.72 299.29,1147.11C300.83,1147.56 302.083,1147.99 303.049,1148.41C304.015,1148.83 304.855,1149.46 305.569,1150.28C306.283,1151.11 306.64,1152.18 306.64,1153.5C306.64,1155.6 305.807,1157.24 304.141,1158.43C302.475,1159.62 300.228,1160.22 297.4,1160.22C293.76,1160.22 290.512,1159.35 287.656,1157.61Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M343.054,1150.51L343.054,1153.37L338.518,1153.37L338.518,1159.88L335.074,1159.88L335.074,1153.37L321.298,1153.37L321.298,1150.77L335.704,1129.98L338.518,1129.98L338.518,1150.51L343.054,1150.51ZM324.868,1150.51L335.074,1150.51L335.074,1135.81L324.868,1150.51Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M351.454,1155.55L351.454,1158.62C351.454,1159.8 351.258,1160.87 350.866,1161.85C350.474,1162.83 349.816,1163.79 348.892,1164.71L347.296,1163.49C348.388,1162.23 349.004,1161.03 349.144,1159.88L347.128,1159.88L347.128,1155.55L351.454,1155.55Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M372.853,1142.3C374.267,1143.1 375.366,1144.22 376.15,1145.66C376.934,1147.11 377.326,1148.75 377.326,1150.6C377.326,1152.45 376.913,1154.1 376.087,1155.55C375.261,1157.01 374.12,1158.15 372.664,1158.98C371.208,1159.8 369.556,1160.22 367.708,1160.22C364.096,1160.22 361.31,1158.96 359.35,1156.44C357.39,1153.92 356.41,1150.33 356.41,1145.68C356.41,1142.32 356.865,1139.44 357.775,1137.03C358.685,1134.62 360.001,1132.79 361.723,1131.53C363.445,1130.27 365.51,1129.64 367.918,1129.64C369.654,1129.64 371.341,1129.96 372.979,1130.61C374.617,1131.25 376.052,1132.16 377.284,1133.34L375.982,1135.98C374.582,1134.81 373.238,1133.94 371.95,1133.38C370.662,1132.82 369.346,1132.54 368.002,1132.54C365.426,1132.54 363.424,1133.69 361.996,1135.98C360.568,1138.28 359.854,1141.5 359.854,1145.64L359.854,1146.27C360.498,1144.68 361.548,1143.42 363.004,1142.49C364.46,1141.57 366.126,1141.11 368.002,1141.11C369.822,1141.11 371.439,1141.51 372.853,1142.3ZM372.16,1155.49C373.336,1154.27 373.924,1152.66 373.924,1150.64C373.924,1148.65 373.329,1147.05 372.139,1145.83C370.949,1144.61 369.402,1144 367.498,1144C365.538,1144 363.942,1144.62 362.71,1145.85C361.478,1147.08 360.862,1148.68 360.862,1150.64C360.862,1152.63 361.478,1154.24 362.71,1155.47C363.942,1156.7 365.552,1157.32 367.54,1157.32C369.444,1157.32 370.984,1156.71 372.16,1155.49Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M386.356,1155.55L386.356,1158.62C386.356,1159.8 386.16,1160.87 385.768,1161.85C385.376,1162.83 384.718,1163.79 383.794,1164.71L382.198,1163.49C383.29,1162.23 383.906,1161.03 384.046,1159.88L382.03,1159.88L382.03,1155.55L386.356,1155.55Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M391.774,1129.98L411.514,1129.98L411.514,1132.54L397.486,1159.88L393.79,1159.88L407.734,1132.87L391.774,1132.87L391.774,1129.98Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M421.258,1155.55L421.258,1158.62C421.258,1159.8 421.062,1160.87 420.67,1161.85C420.278,1162.83 419.62,1163.79 418.696,1164.71L417.1,1163.49C418.192,1162.23 418.808,1161.03 418.948,1159.88L416.932,1159.88L416.932,1155.55L421.258,1155.55Z" style="fill:white;fill-rule:nonzero;"/>
-                         <path d="M443.98,1133.42C445.94,1135.94 446.92,1139.52 446.92,1144.17C446.92,1149.24 445.905,1153.18 443.875,1156C441.845,1158.81 439.01,1160.22 435.37,1160.22C433.662,1160.22 431.989,1159.89 430.351,1159.25C428.713,1158.61 427.264,1157.7 426.004,1156.52L427.348,1153.87C428.776,1155.08 430.134,1155.95 431.422,1156.5C432.71,1157.05 434.012,1157.32 435.328,1157.32C437.904,1157.32 439.899,1156.17 441.313,1153.87C442.727,1151.58 443.434,1148.36 443.434,1144.21L443.434,1143.67C442.79,1145.24 441.74,1146.48 440.284,1147.38C438.828,1148.3 437.162,1148.75 435.286,1148.75C433.466,1148.75 431.856,1148.35 430.456,1147.55C429.056,1146.76 427.964,1145.63 427.18,1144.19C426.396,1142.75 426.004,1141.11 426.004,1139.26C426.004,1137.41 426.417,1135.76 427.243,1134.3C428.069,1132.85 429.21,1131.7 430.666,1130.88C432.122,1130.05 433.774,1129.64 435.622,1129.64C439.234,1129.64 442.02,1130.9 443.98,1133.42ZM440.62,1144C441.852,1142.77 442.468,1141.18 442.468,1139.22C442.468,1137.23 441.852,1135.62 440.62,1134.39C439.388,1133.15 437.778,1132.54 435.79,1132.54C433.886,1132.54 432.346,1133.15 431.17,1134.37C429.994,1135.58 429.406,1137.2 429.406,1139.22C429.406,1141.2 429.994,1142.81 431.17,1144.03C432.346,1145.24 433.9,1145.85 435.832,1145.85C437.792,1145.85 439.388,1145.24 440.62,1144Z" style="fill:white;fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(0.211311,0,0,0.473437,924.581,1896.21)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM788.243,113.327L788.243,337.412L1218.15,337.412L1218.15,113.327L788.243,113.327Z"/>
-                     </g>
-                     <g transform="matrix(0.626068,0,0,0.626068,1000.38,1493.46)">
-                         <path d="M238.058,803.134C243.772,806.359 248.157,810.857 251.212,816.627C254.267,822.398 255.794,829.073 255.794,836.654C255.794,844.235 254.125,850.967 250.787,856.851C247.45,862.735 242.697,867.289 236.531,870.514C230.364,873.738 223.151,875.351 214.891,875.351C207.537,875.351 200.296,874.021 193.167,871.362C186.039,868.703 180.042,865.054 175.177,860.415L180.438,849.723C191.64,859.001 203.124,863.64 214.891,863.64C223.378,863.64 230.025,861.236 234.834,856.427C239.642,851.618 242.047,845.084 242.047,836.824C242.047,828.791 239.671,822.313 234.919,817.391C230.166,812.469 223.83,810.008 215.91,810.008C204.369,810.008 195.147,814.704 188.245,824.095L178.571,824.095L178.571,753.321L251.042,753.321L251.042,764.862L192.488,764.862L192.488,807.972C199.164,801.522 207.707,798.297 218.116,798.297C225.697,798.297 232.344,799.91 238.058,803.134Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(0.211311,0,0,0.473437,1068.72,1896.64)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM788.243,113.327L788.243,337.412L1218.15,337.412L1218.15,113.327L788.243,113.327Z"/>
-                     </g>
-                     <g transform="matrix(0.626068,0,0,0.626068,1144.52,1493.88)">
-                         <path d="M249.769,823.162C254.125,828.423 256.303,834.731 256.303,842.085C256.303,852.382 252.4,860.5 244.593,866.44C236.785,872.381 226.263,875.351 213.025,875.351C199.786,875.351 189.264,872.381 181.457,866.44C173.649,860.5 169.746,852.382 169.746,842.085C169.746,834.731 171.98,828.395 176.45,823.077C180.919,817.759 187.057,814.081 194.864,812.045C187.623,809.895 182.079,806.359 178.232,801.437C174.385,796.515 172.461,790.717 172.461,784.041C172.461,777.592 174.159,771.962 177.553,767.154C180.947,762.345 185.728,758.611 191.894,755.952C198.061,753.293 205.104,751.964 213.025,751.964C220.945,751.964 227.988,753.293 234.155,755.952C240.321,758.611 245.102,762.345 248.496,767.154C251.891,771.962 253.588,777.592 253.588,784.041C253.588,790.717 251.636,796.515 247.732,801.437C243.829,806.359 238.37,809.895 231.354,812.045C239.275,814.195 245.413,817.9 249.769,823.162ZM193.592,800.758C198.4,804.775 204.878,807.236 213.025,808.141C221.171,807.236 227.649,804.775 232.458,800.758C237.266,796.742 239.671,791.509 239.671,785.059C239.671,778.384 237.323,773.122 232.627,769.275C227.932,765.428 221.397,763.505 213.025,763.505C204.652,763.505 198.117,765.428 193.422,769.275C188.726,773.122 186.378,778.384 186.378,785.059C186.378,791.509 188.783,796.742 193.592,800.758ZM234.919,858.039C240.01,854.192 242.556,848.591 242.556,841.237C242.556,834.561 239.869,829.215 234.494,825.198C229.12,821.181 221.963,818.72 213.025,817.815C204.086,818.72 196.929,821.181 191.555,825.198C186.18,829.215 183.493,834.561 183.493,841.237C183.493,848.591 186.039,854.192 191.131,858.039C196.222,861.886 203.52,863.81 213.025,863.81C222.529,863.81 229.827,861.886 234.919,858.039Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(0.211311,0,0,0.473437,1288.44,1896.64)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM788.244,113.327L788.244,337.412L1218.15,337.412L1218.15,113.327L788.244,113.327Z"/>
-                     </g>
-                     <g transform="matrix(0.626068,0,0,0.626068,1364.24,1493.88)">
-                         <path d="M258.34,836.315L258.34,847.856L240.01,847.856L240.01,874.163L226.093,874.163L226.093,847.856L170.425,847.856L170.425,837.333L228.639,753.321L240.01,753.321L240.01,836.315L258.34,836.315ZM184.851,836.315L226.093,836.315L226.093,776.913L184.851,836.315Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(0.211311,0,0,0.473437,1435.79,1896.64)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM788.244,113.327L788.244,337.412L1218.15,337.412L1218.15,113.327L788.244,113.327Z"/>
-                     </g>
-                     <g transform="matrix(0.626068,0,0,0.626068,1511.59,1493.88)">
-                         <path d="M237.719,803.134C243.433,806.359 247.874,810.885 251.042,816.712C254.21,822.539 255.794,829.187 255.794,836.654C255.794,844.122 254.125,850.798 250.787,856.681C247.45,862.565 242.839,867.176 236.955,870.514C231.072,873.851 224.396,875.52 216.928,875.52C202.332,875.52 191.074,870.429 183.154,860.245C175.233,850.062 171.273,835.579 171.273,816.797C171.273,803.219 173.112,791.565 176.789,781.835C180.466,772.104 185.784,764.693 192.743,759.601C199.701,754.509 208.046,751.964 217.777,751.964C224.792,751.964 231.609,753.265 238.228,755.867C244.847,758.47 250.646,762.147 255.624,766.899L250.363,777.592C244.706,772.839 239.275,769.332 234.07,767.069C228.865,764.806 223.547,763.674 218.116,763.674C207.707,763.674 199.617,768.313 193.846,777.592C188.076,786.87 185.19,799.881 185.19,816.627L185.19,819.173C187.793,812.724 192.036,807.632 197.919,803.898C203.803,800.164 210.535,798.297 218.116,798.297C225.471,798.297 232.005,799.91 237.719,803.134ZM234.919,856.427C239.671,851.505 242.047,844.971 242.047,836.824C242.047,828.791 239.642,822.313 234.834,817.391C230.025,812.469 223.774,810.008 216.08,810.008C208.159,810.008 201.71,812.497 196.731,817.476C191.753,822.454 189.264,828.904 189.264,836.824C189.264,844.857 191.753,851.363 196.731,856.342C201.71,861.32 208.216,863.81 216.249,863.81C223.943,863.81 230.166,861.349 234.919,856.427Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(0.211311,0,0,0.473437,1579.24,1896.64)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM788.244,113.327L788.244,337.412L1218.15,337.412L1218.15,113.327L788.244,113.327Z"/>
-                     </g>
-                     <g transform="matrix(0.626068,0,0,0.626068,1657.86,1494.73)">
-                         <path d="M173.14,753.321L252.909,753.321L252.909,763.674L196.222,874.163L181.287,874.163L237.634,765.032L173.14,765.032L173.14,753.321Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(0.211311,0,0,0.473437,1723.37,1896.64)">
-                         <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                         <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM788.243,113.327L788.243,337.412L1218.15,337.412L1218.15,113.327L788.243,113.327Z"/>
-                     </g>
-                     <g transform="matrix(0.626068,0,0,0.626068,1799.18,1493.88)">
-                         <path d="M243.065,767.239C250.985,777.422 254.946,791.905 254.946,810.687C254.946,831.167 250.844,847.092 242.641,858.463C234.438,869.835 222.982,875.52 208.272,875.52C201.37,875.52 194.61,874.219 187.991,871.617C181.372,869.014 175.516,865.337 170.425,860.585L175.856,849.893C181.626,854.758 187.114,858.294 192.319,860.5C197.523,862.706 202.785,863.81 208.103,863.81C218.512,863.81 226.574,859.171 232.288,849.893C238.002,840.614 240.859,827.603 240.859,810.857L240.859,808.65C238.256,814.987 234.013,819.993 228.13,823.671C222.246,827.348 215.514,829.187 207.933,829.187C200.578,829.187 194.072,827.574 188.415,824.35C182.758,821.125 178.345,816.599 175.177,810.772C172.009,804.945 170.425,798.297 170.425,790.83C170.425,783.362 172.094,776.686 175.431,770.803C178.769,764.919 183.38,760.308 189.264,756.97C195.147,753.633 201.823,751.964 209.291,751.964C223.887,751.964 235.145,757.055 243.065,767.239ZM229.487,810.008C234.466,805.03 236.955,798.58 236.955,790.66C236.955,782.627 234.466,776.121 229.487,771.142C224.509,766.164 218.003,763.674 209.97,763.674C202.276,763.674 196.052,766.135 191.3,771.057C186.548,775.979 184.172,782.513 184.172,790.66C184.172,798.693 186.548,805.171 191.3,810.093C196.052,815.015 202.332,817.476 210.139,817.476C218.06,817.476 224.509,814.987 229.487,810.008Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M1000,1100L1000,1131.02L1000,1115.54L437.697,1115.54L437.697,1131.02" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M1000,1115.51L1559.46,1115.51L1559.46,1131.02" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M438.385,1238.26L438.385,1255.91L252.909,1255.91L252.909,1273.85" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M378.697,1256.06L378.697,1273.85" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M438.385,1256.06L623.174,1256.06L623.174,1273.85" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M501.146,1256.06L501.146,1273.85" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M941.433,1256.06L941.433,1273.85" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M1001.57,1256.06L1183.44,1256.06L1183.44,1273.85" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M1062.39,1256.06L1062.39,1273.85" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M1559.46,1238.26L1559.46,1256.06L1374.65,1256.06L1374.65,1273.85" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M1498.49,1256.06L1498.49,1273.85" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M1559.46,1256.06L1744.68,1256.06L1744.68,1273.85" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(1.17016,0,0,1.17016,-106.926,453.583)">
-                         <path d="M1621.13,1256.06L1621.13,1273.85" style="fill:none;stroke:black;stroke-width:5.21px;"/>
-                     </g>
-                     <g transform="matrix(0.819173,0,0,0.819173,395.392,1435.61)">
-                         <path d="M605.323,227.059L605.323,168.366L582.65,168.366L582.65,161.967L635.584,161.967L635.584,168.366L612.911,168.366L612.911,227.059L605.323,227.059Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M677.272,181.074L677.272,227.059L669.958,227.059L669.958,218.74C668.618,221.604 666.591,223.814 663.879,225.368C661.167,226.922 658.013,227.699 654.417,227.699C650.333,227.699 646.752,226.724 643.675,224.774C640.597,222.823 638.22,220.065 636.544,216.5C634.868,212.935 634.03,208.775 634.03,204.021C634.03,199.267 634.883,195.077 636.589,191.45C638.296,187.824 640.688,185.005 643.766,182.994C646.844,180.983 650.394,179.977 654.417,179.977C658.013,179.977 661.151,180.769 663.833,182.354C666.515,183.939 668.557,186.163 669.958,189.028L669.958,181.074L677.272,181.074ZM666.302,216.957C668.739,213.879 669.958,209.506 669.958,203.838C669.958,198.17 668.739,193.812 666.302,190.765C663.864,187.717 660.39,186.194 655.879,186.194C651.369,186.194 647.85,187.763 645.32,190.902C642.791,194.041 641.526,198.414 641.526,204.021C641.526,209.628 642.776,213.955 645.274,217.003C647.773,220.05 651.308,221.574 655.879,221.574C660.39,221.574 663.864,220.035 666.302,216.957Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M713.384,203.381L732.308,227.059L723.44,227.059L708.904,208.958L694.551,227.059L685.5,227.059L704.607,203.381L686.597,181.074L695.557,181.074L708.904,197.987L722.252,181.074L731.302,181.074L713.384,203.381Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M747.21,224.774C743.919,222.823 741.374,220.05 739.576,216.454C737.778,212.858 736.879,208.653 736.879,203.838C736.879,199.023 737.778,194.818 739.576,191.222C741.374,187.626 743.919,184.853 747.21,182.902C750.501,180.952 754.31,179.977 758.638,179.977C762.965,179.977 766.774,180.952 770.065,182.902C773.357,184.853 775.901,187.626 777.699,191.222C779.497,194.818 780.396,199.023 780.396,203.838C780.396,208.653 779.497,212.858 777.699,216.454C775.901,220.05 773.357,222.823 770.065,224.774C766.774,226.724 762.965,227.699 758.638,227.699C754.31,227.699 750.501,226.724 747.21,224.774ZM769.151,217.049C771.589,214.032 772.808,209.628 772.808,203.838C772.808,198.231 771.559,193.888 769.06,190.81C766.561,187.733 763.087,186.194 758.638,186.194C754.128,186.194 750.623,187.733 748.124,190.81C745.625,193.888 744.376,198.231 744.376,203.838C744.376,209.628 745.61,214.032 748.078,217.049C750.547,220.065 754.067,221.574 758.638,221.574C763.209,221.574 766.713,220.065 769.151,217.049Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M831.41,198.17L831.41,227.059L824.004,227.059L824.004,198.536C824.004,194.269 823.151,191.146 821.445,189.165C819.738,187.184 817.056,186.194 813.399,186.194C809.133,186.194 805.72,187.504 803.16,190.125C800.6,192.746 799.32,196.281 799.32,200.73L799.32,227.059L791.915,227.059L791.915,193.964C791.915,189.211 791.671,184.914 791.184,181.074L798.223,181.074L798.955,189.302C800.357,186.316 802.459,184.015 805.263,182.4C808.066,180.785 811.266,179.977 814.862,179.977C825.894,179.977 831.41,186.041 831.41,198.17Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M852.985,224.774C849.694,222.823 847.149,220.05 845.351,216.454C843.553,212.858 842.654,208.653 842.654,203.838C842.654,199.023 843.553,194.818 845.351,191.222C847.149,187.626 849.694,184.853 852.985,182.902C856.276,180.952 860.086,179.977 864.413,179.977C868.74,179.977 872.549,180.952 875.841,182.902C879.132,184.853 881.676,187.626 883.474,191.222C885.272,194.818 886.171,199.023 886.171,203.838C886.171,208.653 885.272,212.858 883.474,216.454C881.676,220.05 879.132,222.823 875.841,224.774C872.549,226.724 868.74,227.699 864.413,227.699C860.086,227.699 856.276,226.724 852.985,224.774ZM874.926,217.049C877.364,214.032 878.583,209.628 878.583,203.838C878.583,198.231 877.334,193.888 874.835,190.81C872.336,187.733 868.862,186.194 864.413,186.194C859.903,186.194 856.398,187.733 853.899,190.81C851.4,193.888 850.151,198.231 850.151,203.838C850.151,209.628 851.385,214.032 853.854,217.049C856.322,220.065 859.842,221.574 864.413,221.574C868.984,221.574 872.488,220.065 874.926,217.049Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M963.971,198.17L963.971,227.059L956.566,227.059L956.566,198.536C956.566,194.208 955.82,191.069 954.326,189.119C952.833,187.169 950.41,186.194 947.058,186.194C943.158,186.194 940.11,187.504 937.916,190.125C935.722,192.746 934.625,196.311 934.625,200.821L934.625,227.059L927.22,227.059L927.22,198.536C927.22,194.269 926.458,191.146 924.934,189.165C923.41,187.184 920.973,186.194 917.62,186.194C913.72,186.194 910.657,187.504 908.432,190.125C906.208,192.746 905.096,196.311 905.096,200.821L905.096,227.059L897.69,227.059L897.69,193.964C897.69,189.211 897.447,184.914 896.959,181.074L903.999,181.074L904.73,189.119C906.01,186.194 907.914,183.939 910.444,182.354C912.973,180.769 915.914,179.977 919.266,179.977C922.923,179.977 925.909,180.708 928.225,182.171C930.541,183.634 932.248,185.889 933.345,188.936C934.747,186.194 936.804,184.015 939.516,182.4C942.228,180.785 945.291,179.977 948.704,179.977C958.882,179.977 963.971,186.041 963.971,198.17Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M1018.46,181.074L996.975,231.265C994.72,236.506 991.885,240.346 988.472,242.784C985.059,245.222 980.854,246.898 975.856,247.812L974.302,242.052C978.629,241.077 981.905,239.782 984.13,238.167C986.354,236.552 988.198,234.068 989.661,230.716L991.489,226.602L972.016,181.074L979.787,181.074L995.329,219.014L1011.05,181.074L1018.46,181.074Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                     <g transform="matrix(0.819173,0,0,0.819173,396.058,1512.7)">
-                         <path d="M518.311,227.059L522.401,175.053L533.868,175.053L530.436,217.783L553.663,217.783L552.933,227.059L518.311,227.059Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M559.141,227.059L562.063,190.027L573.092,190.027L570.17,227.059L559.141,227.059ZM562.939,172.643L574.772,172.643L573.969,183.015L562.136,183.015L562.939,172.643Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M576.963,223.115L580.542,215.446C582.588,216.858 584.779,217.941 587.116,218.696C589.454,219.451 591.791,219.828 594.128,219.828C596.173,219.828 597.683,219.536 598.657,218.952C599.631,218.367 600.118,217.588 600.118,216.614C600.118,215.592 599.546,214.788 598.401,214.204C597.257,213.619 595.394,212.938 592.814,212.159C590.135,211.428 587.944,210.698 586.24,209.967C584.535,209.237 583.062,208.153 581.821,206.717C580.579,205.28 579.958,203.418 579.958,201.129C579.958,198.743 580.628,196.649 581.967,194.848C583.306,193.046 585.205,191.634 587.664,190.611C590.123,189.589 592.935,189.077 596.1,189.077C598.876,189.077 601.591,189.491 604.245,190.319C606.898,191.147 609.126,192.267 610.928,193.679L607.422,201.056C605.62,199.741 603.721,198.743 601.725,198.061C599.728,197.38 597.78,197.039 595.881,197.039C593.885,197.039 592.375,197.331 591.353,197.915C590.33,198.5 589.819,199.303 589.819,200.326C589.819,201.397 590.427,202.249 591.645,202.882C592.862,203.515 594.713,204.173 597.196,204.854C599.874,205.634 602.053,206.388 603.733,207.119C605.413,207.849 606.874,208.933 608.116,210.369C609.358,211.806 609.978,213.668 609.978,215.957C609.978,219.609 608.53,222.47 605.632,224.539C602.735,226.609 598.827,227.644 593.909,227.644C587.579,227.644 581.93,226.134 576.963,223.115Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M630.503,212.67C630.357,214.715 630.771,216.225 631.745,217.199C632.719,218.172 634.058,218.659 635.762,218.659C636.882,218.659 638.124,218.465 639.487,218.075L638.757,226.621C637.101,227.303 634.959,227.644 632.329,227.644C628.142,227.644 624.94,226.524 622.724,224.284C620.509,222.044 619.401,218.879 619.401,214.788C619.401,213.96 619.425,213.327 619.474,212.889L620.643,198.281L613.631,198.281L614.288,190.027L621.3,190.027L621.957,181.335L633.279,177.756L632.329,190.027L641.752,190.027L641.094,198.281L631.672,198.281L630.503,212.67Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M642.263,223.115L645.842,215.446C647.887,216.858 650.079,217.941 652.416,218.696C654.753,219.451 657.091,219.828 659.428,219.828C661.473,219.828 662.983,219.536 663.957,218.952C664.93,218.367 665.417,217.588 665.417,216.614C665.417,215.592 664.845,214.788 663.701,214.204C662.557,213.619 660.694,212.938 658.113,212.159C655.435,211.428 653.244,210.698 651.539,209.967C649.835,209.237 648.362,208.153 647.12,206.717C645.879,205.28 645.258,203.418 645.258,201.129C645.258,198.743 645.927,196.649 647.266,194.848C648.606,193.046 650.505,191.634 652.964,190.611C655.423,189.589 658.235,189.077 661.4,189.077C664.176,189.077 666.89,189.491 669.544,190.319C672.198,191.147 674.426,192.267 676.228,193.679L672.722,201.056C670.92,199.741 669.021,198.743 667.024,198.061C665.028,197.38 663.08,197.039 661.181,197.039C659.184,197.039 657.675,197.331 656.652,197.915C655.63,198.5 655.118,199.303 655.118,200.326C655.118,201.397 655.727,202.249 656.945,202.882C658.162,203.515 660.012,204.173 662.496,204.854C665.174,205.634 667.353,206.388 669.033,207.119C670.713,207.849 672.174,208.933 673.416,210.369C674.657,211.806 675.278,213.668 675.278,215.957C675.278,219.609 673.829,222.47 670.932,224.539C668.035,226.609 664.127,227.644 659.209,227.644C652.879,227.644 647.23,226.134 642.263,223.115Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M716.182,227.059L716.182,180.166L698.067,180.166L698.067,175.053L740.359,175.053L740.359,180.166L722.244,180.166L722.244,227.059L716.182,227.059Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M772.059,208.507L745.106,208.507C745.155,213.181 746.239,216.712 748.357,219.098C750.475,221.484 753.555,222.677 757.597,222.677C761.882,222.677 765.826,221.24 769.429,218.367L771.402,222.677C769.795,224.186 767.737,225.379 765.23,226.256C762.722,227.132 760.153,227.571 757.524,227.571C751.778,227.571 747.273,225.878 744.011,222.494C740.748,219.11 739.117,214.472 739.117,208.58C739.117,204.83 739.847,201.507 741.308,198.609C742.769,195.712 744.814,193.46 747.444,191.853C750.073,190.246 753.068,189.443 756.428,189.443C761.297,189.443 765.12,191.037 767.896,194.227C770.671,197.416 772.059,201.811 772.059,207.411L772.059,208.507ZM749.014,196.82C747.091,198.67 745.861,201.275 745.326,204.635L766.727,204.635C766.435,201.178 765.424,198.548 763.696,196.747C761.967,194.945 759.569,194.044 756.501,194.044C753.433,194.044 750.938,194.969 749.014,196.82Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M801.495,189.881L801.349,195.286C800.229,194.896 798.938,194.702 797.478,194.702C793.923,194.702 791.281,195.809 789.553,198.025C787.824,200.241 786.96,202.931 786.96,206.096L786.96,227.059L781.043,227.059L781.043,200.618C781.043,196.82 780.848,193.387 780.459,190.319L786.083,190.319L786.667,197.112C787.593,194.629 789.078,192.729 791.123,191.415C793.168,190.1 795.506,189.443 798.135,189.443C799.352,189.443 800.472,189.589 801.495,189.881Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M860.44,203.978L860.44,227.059L854.524,227.059L854.524,204.27C854.524,200.813 853.927,198.305 852.734,196.747C851.541,195.189 849.605,194.409 846.927,194.409C843.811,194.409 841.376,195.456 839.623,197.55C837.87,199.644 836.993,202.493 836.993,206.096L836.993,227.059L831.077,227.059L831.077,204.27C831.077,200.861 830.468,198.366 829.251,196.783C828.034,195.201 826.086,194.409 823.408,194.409C820.291,194.409 817.844,195.456 816.067,197.55C814.29,199.644 813.401,202.493 813.401,206.096L813.401,227.059L807.484,227.059L807.484,200.618C807.484,196.82 807.29,193.387 806.9,190.319L812.524,190.319L813.109,196.747C814.131,194.409 815.653,192.608 817.674,191.342C819.695,190.076 822.044,189.443 824.722,189.443C827.644,189.443 830.03,190.027 831.88,191.196C833.731,192.364 835.094,194.166 835.971,196.601C837.091,194.409 838.734,192.669 840.901,191.378C843.068,190.088 845.515,189.443 848.242,189.443C856.374,189.443 860.44,194.288 860.44,203.978Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M869.424,222.823L871.396,218.44C873.393,219.998 875.414,221.118 877.459,221.8C879.504,222.482 881.793,222.823 884.325,222.823C887.1,222.823 889.206,222.348 890.643,221.398C892.079,220.449 892.798,219.073 892.798,217.272C892.798,215.811 892.311,214.642 891.337,213.766C890.363,212.889 888.756,212.207 886.516,211.72L880.307,210.26C877.24,209.578 874.866,208.36 873.186,206.607C871.506,204.854 870.666,202.761 870.666,200.326C870.666,197.112 871.956,194.495 874.537,192.474C877.118,190.453 880.527,189.443 884.763,189.443C887.344,189.443 889.779,189.856 892.067,190.684C894.356,191.512 896.279,192.705 897.838,194.263L895.865,198.573C892.408,195.7 888.707,194.263 884.763,194.263C882.134,194.263 880.1,194.762 878.664,195.761C877.228,196.759 876.509,198.159 876.509,199.961C876.509,201.47 876.96,202.663 877.861,203.54C878.761,204.416 880.21,205.098 882.207,205.585L888.415,207.119C891.824,207.898 894.356,209.103 896.012,210.734C897.667,212.366 898.495,214.496 898.495,217.125C898.495,220.291 897.205,222.823 894.624,224.722C892.043,226.621 888.537,227.571 884.106,227.571C877.921,227.571 873.028,225.988 869.424,222.823Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M948.164,222.019L959.631,222.019L959.631,227.059L930.633,227.059L930.633,222.019L942.101,222.019L942.101,182.504L931.437,189.296L931.437,183.526L944.731,175.053L948.164,175.053L948.164,222.019Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M977.307,219.536L977.307,224.868C977.307,226.913 976.967,228.788 976.285,230.492C975.603,232.197 974.459,233.852 972.852,235.459L970.076,233.341C971.975,231.15 973.047,229.056 973.29,227.059L969.784,227.059L969.784,219.536L977.307,219.536Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M1021.5,222.019L1021.5,227.059L988.045,227.059L988.045,222.531L1006.23,202.371C1008.67,199.644 1010.44,197.185 1011.56,194.994C1012.68,192.802 1013.24,190.611 1013.24,188.42C1013.24,185.547 1012.42,183.344 1010.76,181.81C1009.11,180.276 1006.74,179.509 1003.68,179.509C998.709,179.509 993.791,181.505 988.921,185.498L986.657,180.897C988.702,178.949 991.283,177.391 994.399,176.222C997.516,175.053 1000.66,174.469 1003.82,174.469C1008.59,174.469 1012.37,175.698 1015.14,178.158C1017.92,180.617 1019.31,183.94 1019.31,188.128C1019.31,191.098 1018.64,193.959 1017.3,196.71C1015.96,199.461 1013.73,202.541 1010.62,205.95L995.787,222.019L1021.5,222.019Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M1038.01,219.536L1038.01,224.868C1038.01,226.913 1037.66,228.788 1036.98,230.492C1036.3,232.197 1035.16,233.852 1033.55,235.459L1030.77,233.341C1032.67,231.15 1033.75,229.056 1033.99,227.059L1030.48,227.059L1030.48,219.536L1038.01,219.536Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                         <path d="M1078.76,204.854C1080.37,206.997 1081.17,209.7 1081.17,212.962C1081.17,217.491 1079.64,221.058 1076.57,223.663C1073.5,226.268 1069.34,227.571 1064.08,227.571C1060.72,227.571 1057.5,227.011 1054.4,225.891C1051.31,224.771 1048.69,223.188 1046.55,221.143L1048.89,216.541C1053.71,220.534 1058.72,222.531 1063.93,222.531C1067.64,222.531 1070.45,221.703 1072.37,220.047C1074.3,218.392 1075.26,215.957 1075.26,212.743C1075.26,206.364 1071.26,203.174 1063.28,203.174L1057.29,203.174L1057.29,198.135L1062.11,198.135C1065.96,198.135 1068.9,197.282 1070.95,195.578C1072.99,193.874 1074.02,191.439 1074.02,188.274C1074.02,185.45 1073.17,183.283 1071.5,181.773C1069.82,180.264 1067.44,179.509 1064.37,179.509C1059.41,179.509 1054.49,181.505 1049.62,185.498L1047.36,180.897C1049.45,178.9 1052.02,177.33 1055.06,176.185C1058.1,175.041 1061.28,174.469 1064.59,174.469C1069.27,174.469 1073.01,175.662 1075.81,178.048C1078.61,180.434 1080.01,183.648 1080.01,187.69C1080.01,190.66 1079.27,193.265 1077.81,195.505C1076.35,197.745 1074.33,199.352 1071.75,200.326C1074.82,201.202 1077.16,202.712 1078.76,204.854Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-                     </g>
-                 </g>
-             </g>
-         </g>
-     </g>
-     <g transform="matrix(1.04093,0,0,1.04093,1943.89,-1055.94)">
-         <g transform="matrix(0.838555,0,0,0.571615,148.452,1635.59)">
-             <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,131,192);"/>
-             <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM765.704,109.699L765.704,341.04L1240.69,341.04L1240.69,109.699L765.704,109.699Z"/>
-         </g>
-         <g transform="matrix(1.59331,0,0,1.59331,562.512,-689.213)">
-             <path d="M153.743,1571.85L155.087,1554.76L158.855,1554.76L157.727,1568.8L165.359,1568.8L165.119,1571.85L153.743,1571.85Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M167.159,1571.85L168.119,1559.68L171.743,1559.68L170.783,1571.85L167.159,1571.85ZM168.407,1553.97L172.295,1553.97L172.031,1557.38L168.143,1557.38L168.407,1553.97Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M173.015,1570.55L174.191,1568.03C174.863,1568.5 175.583,1568.85 176.351,1569.1C177.119,1569.35 177.887,1569.47 178.655,1569.47C179.327,1569.47 179.823,1569.38 180.143,1569.19C180.463,1568.99 180.623,1568.74 180.623,1568.42C180.623,1568.08 180.435,1567.82 180.059,1567.63C179.683,1567.43 179.071,1567.21 178.223,1566.95C177.343,1566.71 176.623,1566.47 176.063,1566.23C175.503,1565.99 175.019,1565.64 174.611,1565.17C174.203,1564.69 173.999,1564.08 173.999,1563.33C173.999,1562.55 174.219,1561.86 174.659,1561.27C175.099,1560.67 175.723,1560.21 176.531,1559.87C177.339,1559.54 178.263,1559.37 179.303,1559.37C180.215,1559.37 181.107,1559.51 181.979,1559.78C182.851,1560.05 183.583,1560.42 184.175,1560.88L183.023,1563.31C182.431,1562.87 181.807,1562.55 181.151,1562.32C180.495,1562.1 179.855,1561.99 179.231,1561.99C178.575,1561.99 178.079,1562.08 177.743,1562.27C177.407,1562.47 177.239,1562.73 177.239,1563.07C177.239,1563.42 177.439,1563.7 177.839,1563.91C178.239,1564.11 178.847,1564.33 179.663,1564.55C180.543,1564.81 181.259,1565.06 181.811,1565.3C182.363,1565.54 182.843,1565.89 183.251,1566.37C183.659,1566.84 183.863,1567.45 183.863,1568.2C183.863,1569.4 183.387,1570.34 182.435,1571.02C181.483,1571.7 180.199,1572.04 178.583,1572.04C176.503,1572.04 174.647,1571.55 173.015,1570.55Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M190.607,1567.12C190.559,1567.79 190.695,1568.29 191.015,1568.61C191.335,1568.93 191.775,1569.09 192.335,1569.09C192.703,1569.09 193.111,1569.03 193.559,1568.9L193.319,1571.71C192.775,1571.93 192.071,1572.04 191.207,1572.04C189.831,1572.04 188.779,1571.67 188.051,1570.94C187.323,1570.2 186.959,1569.16 186.959,1567.82C186.959,1567.55 186.967,1567.34 186.983,1567.19L187.367,1562.39L185.063,1562.39L185.279,1559.68L187.583,1559.68L187.799,1556.83L191.519,1555.65L191.207,1559.68L194.303,1559.68L194.087,1562.39L190.991,1562.39L190.607,1567.12Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M194.471,1570.55L195.647,1568.03C196.319,1568.5 197.039,1568.85 197.807,1569.1C198.575,1569.35 199.343,1569.47 200.111,1569.47C200.783,1569.47 201.279,1569.38 201.599,1569.19C201.919,1568.99 202.079,1568.74 202.079,1568.42C202.079,1568.08 201.891,1567.82 201.515,1567.63C201.139,1567.43 200.527,1567.21 199.679,1566.95C198.799,1566.71 198.079,1566.47 197.519,1566.23C196.959,1565.99 196.475,1565.64 196.067,1565.17C195.659,1564.69 195.455,1564.08 195.455,1563.33C195.455,1562.55 195.675,1561.86 196.115,1561.27C196.555,1560.67 197.179,1560.21 197.987,1559.87C198.795,1559.54 199.719,1559.37 200.759,1559.37C201.671,1559.37 202.563,1559.51 203.435,1559.78C204.307,1560.05 205.039,1560.42 205.631,1560.88L204.479,1563.31C203.887,1562.87 203.263,1562.55 202.607,1562.32C201.951,1562.1 201.311,1561.99 200.687,1561.99C200.031,1561.99 199.535,1562.08 199.199,1562.27C198.863,1562.47 198.695,1562.73 198.695,1563.07C198.695,1563.42 198.895,1563.7 199.295,1563.91C199.695,1564.11 200.303,1564.33 201.119,1564.55C201.999,1564.81 202.715,1565.06 203.267,1565.3C203.819,1565.54 204.299,1565.89 204.707,1566.37C205.115,1566.84 205.319,1567.45 205.319,1568.2C205.319,1569.4 204.843,1570.34 203.891,1571.02C202.939,1571.7 201.655,1572.04 200.039,1572.04C197.959,1572.04 196.103,1571.55 194.471,1570.55Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M221.351,1570.19L225.119,1570.19L225.119,1571.85L215.591,1571.85L215.591,1570.19L219.359,1570.19L219.359,1557.21L215.855,1559.44L215.855,1557.55L220.223,1554.76L221.351,1554.76L221.351,1570.19Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M230.927,1569.38L230.927,1571.13C230.927,1571.8 230.815,1572.42 230.591,1572.98C230.367,1573.54 229.991,1574.08 229.463,1574.61L228.551,1573.91C229.175,1573.19 229.527,1572.51 229.607,1571.85L228.455,1571.85L228.455,1569.38L230.927,1569.38Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M245.447,1570.19L245.447,1571.85L234.455,1571.85L234.455,1570.36L240.431,1563.74C241.231,1562.84 241.815,1562.03 242.183,1561.31C242.551,1560.59 242.735,1559.87 242.735,1559.15C242.735,1558.21 242.463,1557.49 241.919,1556.98C241.375,1556.48 240.599,1556.23 239.591,1556.23C237.959,1556.23 236.343,1556.88 234.743,1558.19L233.999,1556.68C234.671,1556.04 235.519,1555.53 236.543,1555.15C237.567,1554.76 238.599,1554.57 239.639,1554.57C241.207,1554.57 242.447,1554.97 243.359,1555.78C244.271,1556.59 244.727,1557.68 244.727,1559.06C244.727,1560.03 244.507,1560.97 244.067,1561.88C243.627,1562.78 242.895,1563.79 241.871,1564.91L236.999,1570.19L245.447,1570.19Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M250.871,1569.38L250.871,1571.13C250.871,1571.8 250.759,1572.42 250.535,1572.98C250.311,1573.54 249.935,1574.08 249.407,1574.61L248.495,1573.91C249.119,1573.19 249.471,1572.51 249.551,1571.85L248.399,1571.85L248.399,1569.38L250.871,1569.38Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M264.263,1564.55C264.791,1565.26 265.055,1566.15 265.055,1567.22C265.055,1568.71 264.551,1569.88 263.543,1570.73C262.535,1571.59 261.167,1572.02 259.439,1572.02C258.335,1572.02 257.275,1571.83 256.259,1571.47C255.243,1571.1 254.383,1570.58 253.679,1569.91L254.447,1568.39C256.031,1569.71 257.679,1570.36 259.391,1570.36C260.607,1570.36 261.531,1570.09 262.163,1569.55C262.795,1569 263.111,1568.2 263.111,1567.15C263.111,1565.05 261.799,1564 259.175,1564L257.207,1564L257.207,1562.35L258.791,1562.35C260.055,1562.35 261.023,1562.07 261.695,1561.51C262.367,1560.95 262.703,1560.15 262.703,1559.11C262.703,1558.18 262.427,1557.47 261.875,1556.97C261.323,1556.47 260.543,1556.23 259.535,1556.23C257.903,1556.23 256.287,1556.88 254.687,1558.19L253.943,1556.68C254.631,1556.03 255.475,1555.51 256.475,1555.13C257.475,1554.76 258.519,1554.57 259.607,1554.57C261.143,1554.57 262.371,1554.96 263.291,1555.75C264.211,1556.53 264.671,1557.59 264.671,1558.91C264.671,1559.89 264.431,1560.75 263.951,1561.48C263.471,1562.22 262.807,1562.75 261.959,1563.07C262.967,1563.35 263.735,1563.85 264.263,1564.55Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M270.815,1569.38L270.815,1571.13C270.815,1571.8 270.703,1572.42 270.479,1572.98C270.255,1573.54 269.879,1574.08 269.351,1574.61L268.439,1573.91C269.063,1573.19 269.415,1572.51 269.495,1571.85L268.343,1571.85L268.343,1569.38L270.815,1569.38Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M285.959,1566.5L285.959,1568.13L283.367,1568.13L283.367,1571.85L281.399,1571.85L281.399,1568.13L273.527,1568.13L273.527,1566.64L281.759,1554.76L283.367,1554.76L283.367,1566.5L285.959,1566.5ZM275.567,1566.5L281.399,1566.5L281.399,1558.1L275.567,1566.5Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M290.759,1569.38L290.759,1571.13C290.759,1571.8 290.647,1572.42 290.423,1572.98C290.199,1573.54 289.823,1574.08 289.295,1574.61L288.383,1573.91C289.007,1573.19 289.359,1572.51 289.439,1571.85L288.287,1571.85L288.287,1569.38L290.759,1569.38Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M303.035,1561.81C303.843,1562.26 304.463,1562.9 304.895,1563.71C305.327,1564.53 305.543,1565.47 305.543,1566.55C305.543,1567.62 305.307,1568.57 304.835,1569.4C304.363,1570.23 303.691,1570.88 302.819,1571.33C301.947,1571.79 300.927,1572.02 299.759,1572.02C298.719,1572.02 297.695,1571.83 296.687,1571.45C295.679,1571.08 294.831,1570.56 294.143,1569.91L294.887,1568.39C296.471,1569.71 298.095,1570.36 299.759,1570.36C300.959,1570.36 301.899,1570.02 302.579,1569.34C303.259,1568.66 303.599,1567.74 303.599,1566.57C303.599,1565.43 303.263,1564.52 302.591,1563.82C301.919,1563.13 301.023,1562.78 299.903,1562.78C298.271,1562.78 296.967,1563.44 295.991,1564.77L294.623,1564.77L294.623,1554.76L304.871,1554.76L304.871,1556.39L296.591,1556.39L296.591,1562.49C297.535,1561.58 298.743,1561.12 300.215,1561.12C301.287,1561.12 302.227,1561.35 303.035,1561.81Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M310.703,1569.38L310.703,1571.13C310.703,1571.8 310.591,1572.42 310.367,1572.98C310.143,1573.54 309.767,1574.08 309.239,1574.61L308.327,1573.91C308.951,1573.19 309.303,1572.51 309.383,1571.85L308.231,1571.85L308.231,1569.38L310.703,1569.38Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M322.931,1561.81C323.739,1562.26 324.367,1562.9 324.815,1563.73C325.263,1564.55 325.487,1565.49 325.487,1566.55C325.487,1567.6 325.251,1568.55 324.779,1569.38C324.307,1570.21 323.655,1570.86 322.823,1571.33C321.991,1571.81 321.047,1572.04 319.991,1572.04C317.927,1572.04 316.335,1571.32 315.215,1569.88C314.095,1568.44 313.535,1566.39 313.535,1563.74C313.535,1561.82 313.795,1560.17 314.315,1558.79C314.835,1557.42 315.587,1556.37 316.571,1555.65C317.555,1554.93 318.735,1554.57 320.111,1554.57C321.103,1554.57 322.067,1554.75 323.003,1555.12C323.939,1555.49 324.759,1556.01 325.463,1556.68L324.719,1558.19C323.919,1557.52 323.151,1557.03 322.415,1556.71C321.679,1556.39 320.927,1556.23 320.159,1556.23C318.687,1556.23 317.543,1556.88 316.727,1558.19C315.911,1559.51 315.503,1561.35 315.503,1563.71L315.503,1564.07C315.871,1563.16 316.471,1562.44 317.303,1561.91C318.135,1561.39 319.087,1561.12 320.159,1561.12C321.199,1561.12 322.123,1561.35 322.931,1561.81ZM322.535,1569.34C323.207,1568.65 323.543,1567.72 323.543,1566.57C323.543,1565.43 323.203,1564.52 322.523,1563.82C321.843,1563.13 320.959,1562.78 319.871,1562.78C318.751,1562.78 317.839,1563.13 317.135,1563.83C316.431,1564.54 316.079,1565.45 316.079,1566.57C316.079,1567.71 316.431,1568.63 317.135,1569.33C317.839,1570.03 318.759,1570.39 319.895,1570.39C320.983,1570.39 321.863,1570.04 322.535,1569.34Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M330.647,1569.38L330.647,1571.13C330.647,1571.8 330.535,1572.42 330.311,1572.98C330.087,1573.54 329.711,1574.08 329.183,1574.61L328.271,1573.91C328.895,1573.19 329.247,1572.51 329.327,1571.85L328.175,1571.85L328.175,1569.38L330.647,1569.38Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M333.743,1554.76L345.023,1554.76L345.023,1556.23L337.007,1571.85L334.895,1571.85L342.863,1556.42L333.743,1556.42L333.743,1554.76Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M350.591,1569.38L350.591,1571.13C350.591,1571.8 350.479,1572.42 350.255,1572.98C350.031,1573.54 349.655,1574.08 349.127,1574.61L348.215,1573.91C348.839,1573.19 349.191,1572.51 349.271,1571.85L348.119,1571.85L348.119,1569.38L350.591,1569.38Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M364.523,1564.64C365.139,1565.38 365.447,1566.27 365.447,1567.31C365.447,1568.77 364.895,1569.92 363.791,1570.76C362.687,1571.6 361.199,1572.02 359.327,1572.02C357.455,1572.02 355.967,1571.6 354.863,1570.76C353.759,1569.92 353.207,1568.77 353.207,1567.31C353.207,1566.27 353.523,1565.38 354.155,1564.63C354.787,1563.87 355.655,1563.35 356.759,1563.07C355.735,1562.76 354.951,1562.26 354.407,1561.57C353.863,1560.87 353.591,1560.05 353.591,1559.11C353.591,1558.19 353.831,1557.4 354.311,1556.72C354.791,1556.04 355.467,1555.51 356.339,1555.13C357.211,1554.76 358.207,1554.57 359.327,1554.57C360.447,1554.57 361.443,1554.76 362.315,1555.13C363.187,1555.51 363.863,1556.04 364.343,1556.72C364.823,1557.4 365.063,1558.19 365.063,1559.11C365.063,1560.05 364.787,1560.87 364.235,1561.57C363.683,1562.26 362.911,1562.76 361.919,1563.07C363.039,1563.37 363.907,1563.89 364.523,1564.64ZM356.579,1561.47C357.259,1562.04 358.175,1562.39 359.327,1562.51C360.479,1562.39 361.395,1562.04 362.075,1561.47C362.755,1560.9 363.095,1560.16 363.095,1559.25C363.095,1558.31 362.763,1557.56 362.099,1557.02C361.435,1556.47 360.511,1556.2 359.327,1556.2C358.143,1556.2 357.219,1556.47 356.555,1557.02C355.891,1557.56 355.559,1558.31 355.559,1559.25C355.559,1560.16 355.899,1560.9 356.579,1561.47ZM362.423,1569.57C363.143,1569.03 363.503,1568.23 363.503,1567.19C363.503,1566.25 363.123,1565.49 362.363,1564.93C361.603,1564.36 360.591,1564.01 359.327,1563.88C358.063,1564.01 357.051,1564.36 356.291,1564.93C355.531,1565.49 355.151,1566.25 355.151,1567.19C355.151,1568.23 355.511,1569.03 356.231,1569.57C356.951,1570.11 357.983,1570.39 359.327,1570.39C360.671,1570.39 361.703,1570.11 362.423,1569.57Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M370.535,1569.38L370.535,1571.13C370.535,1571.8 370.423,1572.42 370.199,1572.98C369.975,1573.54 369.599,1574.08 369.071,1574.61L368.159,1573.91C368.783,1573.19 369.135,1572.51 369.215,1571.85L368.063,1571.85L368.063,1569.38L370.535,1569.38Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M383.519,1556.73C384.639,1558.17 385.199,1560.22 385.199,1562.87C385.199,1565.77 384.619,1568.02 383.459,1569.63C382.299,1571.24 380.679,1572.04 378.599,1572.04C377.623,1572.04 376.667,1571.86 375.731,1571.49C374.795,1571.12 373.967,1570.6 373.247,1569.93L374.015,1568.42C374.831,1569.11 375.607,1569.61 376.343,1569.92C377.079,1570.23 377.823,1570.39 378.575,1570.39C380.047,1570.39 381.187,1569.73 381.995,1568.42C382.803,1567.11 383.207,1565.27 383.207,1562.9L383.207,1562.59C382.839,1563.48 382.239,1564.19 381.407,1564.71C380.575,1565.23 379.623,1565.49 378.551,1565.49C377.511,1565.49 376.591,1565.26 375.791,1564.81C374.991,1564.35 374.367,1563.71 373.919,1562.89C373.471,1562.06 373.247,1561.12 373.247,1560.07C373.247,1559.01 373.483,1558.07 373.955,1557.23C374.427,1556.4 375.079,1555.75 375.911,1555.28C376.743,1554.81 377.687,1554.57 378.743,1554.57C380.807,1554.57 382.399,1555.29 383.519,1556.73ZM381.599,1562.78C382.303,1562.07 382.655,1561.16 382.655,1560.04C382.655,1558.91 382.303,1557.99 381.599,1557.28C380.895,1556.58 379.975,1556.23 378.839,1556.23C377.751,1556.23 376.871,1556.57 376.199,1557.27C375.527,1557.97 375.191,1558.89 375.191,1560.04C375.191,1561.18 375.527,1562.09 376.199,1562.79C376.871,1563.49 377.759,1563.83 378.863,1563.83C379.983,1563.83 380.895,1563.48 381.599,1562.78Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         </g>
-         <g transform="matrix(1.92666,0,0,1.92666,-562.222,1327.03)">
-             <path d="M790.995,227.059L788.425,227.059L785.825,220.057C785.51,219.19 785.071,218.609 784.51,218.314C783.949,218.018 783.156,217.871 782.131,217.871L776.872,217.871L776.872,227.059L774.479,227.059L774.479,206.023L782.841,206.023C785.106,206.023 786.844,206.525 788.055,207.53C789.267,208.534 789.872,209.982 789.872,211.873C789.872,213.252 789.513,214.409 788.794,215.344C788.075,216.28 787.036,216.945 785.677,217.339C786.288,217.437 786.81,217.698 787.243,218.122C787.676,218.545 788.041,219.151 788.336,219.939L790.995,227.059ZM782.634,215.861C785.864,215.861 787.479,214.542 787.479,211.902C787.479,210.602 787.085,209.632 786.297,208.992C785.51,208.352 784.288,208.032 782.634,208.032L776.872,208.032L776.872,215.861L782.634,215.861Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M793.743,224.636L794.659,222.775C795.703,223.661 796.766,224.292 797.85,224.666C798.933,225.04 800.194,225.227 801.632,225.227C803.326,225.227 804.631,224.897 805.546,224.238C806.462,223.578 806.92,222.647 806.92,221.446C806.92,220.736 806.699,220.16 806.256,219.717C805.812,219.274 805.231,218.924 804.512,218.668C803.793,218.412 802.833,218.146 801.632,217.871C800.016,217.516 798.687,217.132 797.643,216.718C796.599,216.305 795.752,215.709 795.102,214.931C794.452,214.153 794.127,213.133 794.127,211.873C794.127,210.671 794.442,209.613 795.072,208.697C795.703,207.781 796.594,207.067 797.746,206.555C798.899,206.042 800.243,205.786 801.779,205.786C803.237,205.786 804.596,206.013 805.857,206.466C807.117,206.919 808.181,207.579 809.048,208.445L808.102,210.307C807.117,209.46 806.118,208.839 805.103,208.445C804.089,208.052 802.981,207.855 801.779,207.855C800.144,207.855 798.864,208.204 797.938,208.903C797.013,209.603 796.55,210.563 796.55,211.784C796.55,212.848 796.954,213.645 797.761,214.177C798.569,214.709 799.81,215.172 801.484,215.566C803.296,215.999 804.719,216.398 805.753,216.763C806.787,217.127 807.649,217.678 808.338,218.417C809.028,219.156 809.373,220.136 809.373,221.357C809.373,222.539 809.057,223.578 808.427,224.474C807.797,225.37 806.896,226.065 805.724,226.557C804.552,227.049 803.178,227.296 801.602,227.296C798.313,227.296 795.693,226.409 793.743,224.636Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-             <path d="M812.15,224.636L813.066,222.775C814.11,223.661 815.173,224.292 816.257,224.666C817.34,225.04 818.601,225.227 820.039,225.227C821.733,225.227 823.037,224.897 823.953,224.238C824.869,223.578 825.327,222.647 825.327,221.446C825.327,220.736 825.106,220.16 824.662,219.717C824.219,219.274 823.638,218.924 822.919,218.668C822.2,218.412 821.24,218.146 820.039,217.871C818.423,217.516 817.094,217.132 816.05,216.718C815.006,216.305 814.159,215.709 813.509,214.931C812.859,214.153 812.534,213.133 812.534,211.873C812.534,210.671 812.849,209.613 813.479,208.697C814.11,207.781 815.001,207.067 816.153,206.555C817.306,206.042 818.65,205.786 820.186,205.786C821.644,205.786 823.003,206.013 824.264,206.466C825.524,206.919 826.588,207.579 827.455,208.445L826.509,210.307C825.524,209.46 824.525,208.839 823.51,208.445C822.496,208.052 821.388,207.855 820.186,207.855C818.551,207.855 817.271,208.204 816.345,208.903C815.42,209.603 814.957,210.563 814.957,211.784C814.957,212.848 815.361,213.645 816.168,214.177C816.976,214.709 818.217,215.172 819.891,215.566C821.703,215.999 823.126,216.398 824.16,216.763C825.194,217.127 826.056,217.678 826.745,218.417C827.435,219.156 827.78,220.136 827.78,221.357C827.78,222.539 827.464,223.578 826.834,224.474C826.204,225.37 825.303,226.065 824.131,226.557C822.959,227.049 821.585,227.296 820.009,227.296C816.72,227.296 814.1,226.409 812.15,224.636Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         </g>
-         <g transform="matrix(0.203003,0,0,0.454823,410.646,1827.37)">
-             <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-             <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM785.431,112.072L785.431,338.667L1220.96,338.667L1220.96,112.072L785.431,112.072Z"/>
-         </g>
-         <g transform="matrix(0.601453,0,0,0.601453,485.918,1441.27)">
-             <path d="M253.927,862.452L253.927,874.163L176.195,874.163L176.195,863.64L218.456,816.797C224.113,810.461 228.243,804.747 230.845,799.655C233.448,794.564 234.749,789.472 234.749,784.38C234.749,777.705 232.825,772.585 228.978,769.021C225.131,765.456 219.644,763.674 212.515,763.674C200.974,763.674 189.547,768.313 178.232,777.592L172.97,766.899C177.723,762.373 183.719,758.753 190.961,756.037C198.202,753.321 205.5,751.964 212.855,751.964C223.943,751.964 232.712,754.821 239.162,760.535C245.611,766.249 248.836,773.971 248.836,783.701C248.836,790.603 247.28,797.251 244.168,803.644C241.057,810.036 235.88,817.193 228.639,825.113L194.186,862.452L253.927,862.452Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         </g>
-         <g transform="matrix(0.203003,0,0,0.454823,532.111,1827.37)">
-             <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-             <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM785.432,112.072L785.432,338.667L1220.96,338.667L1220.96,112.072L785.432,112.072Z"/>
-         </g>
-         <g transform="matrix(0.601453,0,0,0.601453,608.659,1439.74)">
-             <path d="M245.95,822.567C249.684,827.546 251.551,833.826 251.551,841.406C251.551,851.929 247.987,860.217 240.859,866.271C233.73,872.324 224.056,875.351 211.837,875.351C204.029,875.351 196.533,874.049 189.349,871.447C182.164,868.845 176.082,865.167 171.104,860.415L176.535,849.723C187.736,859.001 199.39,863.64 211.497,863.64C220.096,863.64 226.631,861.716 231.1,857.869C235.569,854.022 237.804,848.365 237.804,840.897C237.804,826.075 228.526,818.664 209.97,818.664L196.052,818.664L196.052,806.953L207.254,806.953C216.193,806.953 223.038,804.973 227.79,801.013C232.542,797.053 234.919,791.395 234.919,784.041C234.919,777.478 232.967,772.443 229.063,768.936C225.16,765.428 219.644,763.674 212.515,763.674C200.974,763.674 189.547,768.313 178.232,777.592L172.97,766.899C177.836,762.26 183.804,758.611 190.876,755.952C197.948,753.293 205.331,751.964 213.025,751.964C223.887,751.964 232.571,754.736 239.077,760.28C245.583,765.824 248.836,773.292 248.836,782.683C248.836,789.585 247.138,795.638 243.744,800.843C240.35,806.048 235.654,809.782 229.657,812.045C236.785,814.081 242.217,817.589 245.95,822.567Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         </g>
-         <g transform="matrix(0.203003,0,0,0.454823,654.23,1827.73)">
-             <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-             <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM785.431,112.072L785.431,338.667L1220.96,338.667L1220.96,112.072L785.431,112.072Z"/>
-         </g>
-         <g transform="matrix(0.601453,0,0,0.601453,728.341,1440.45)">
-             <path d="M258.34,836.315L258.34,847.856L240.01,847.856L240.01,874.163L226.093,874.163L226.093,847.856L170.425,847.856L170.425,837.333L228.639,753.321L240.01,753.321L240.01,836.315L258.34,836.315ZM184.851,836.315L226.093,836.315L226.093,776.913L184.851,836.315Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         </g>
-         <g transform="matrix(0.203003,0,0,0.454823,284.446,1827.73)">
-             <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-             <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM785.432,112.072L785.432,338.667L1220.96,338.667L1220.96,112.072L785.432,112.072Z"/>
-         </g>
-         <g transform="matrix(0.601453,0,0,0.601453,358.557,1440.45)">
-             <path d="M224.566,862.452L251.212,862.452L251.212,874.163L183.833,874.163L183.833,862.452L210.479,862.452L210.479,770.633L185.7,786.417L185.7,773.009L216.589,753.321L224.566,753.321L224.566,862.452Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         </g>
-         <g transform="matrix(0.203003,0,0,0.454823,779.778,1828.36)">
-             <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-             <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM785.431,112.072L785.431,338.667L1220.96,338.667L1220.96,112.072L785.431,112.072Z"/>
-         </g>
-         <g transform="matrix(0.601453,0,0,0.601453,855.05,1441.43)">
-             <path d="M238.058,803.134C243.772,806.359 248.157,810.857 251.212,816.627C254.267,822.398 255.794,829.073 255.794,836.654C255.794,844.235 254.125,850.967 250.787,856.851C247.45,862.735 242.697,867.289 236.531,870.514C230.364,873.738 223.151,875.351 214.891,875.351C207.537,875.351 200.296,874.021 193.167,871.362C186.039,868.703 180.042,865.054 175.177,860.415L180.438,849.723C191.64,859.001 203.124,863.64 214.891,863.64C223.378,863.64 230.025,861.236 234.834,856.427C239.642,851.618 242.047,845.084 242.047,836.824C242.047,828.791 239.671,822.313 234.919,817.391C230.166,812.469 223.83,810.008 215.91,810.008C204.369,810.008 195.147,814.704 188.245,824.095L178.571,824.095L178.571,753.321L251.042,753.321L251.042,764.862L192.488,764.862L192.488,807.972C199.164,801.522 207.707,798.297 218.116,798.297C225.697,798.297 232.344,799.91 238.058,803.134Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         </g>
-         <g transform="matrix(0.203003,0,0,0.454823,913.042,1828.36)">
-             <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-             <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM785.431,112.072L785.431,338.667L1220.96,338.667L1220.96,112.072L785.431,112.072Z"/>
-         </g>
-         <g transform="matrix(0.601453,0,0,0.601453,985.864,1441.44)">
-             <path d="M237.719,803.134C243.433,806.359 247.874,810.885 251.042,816.712C254.21,822.539 255.794,829.187 255.794,836.654C255.794,844.122 254.125,850.798 250.787,856.681C247.45,862.565 242.839,867.176 236.955,870.514C231.072,873.851 224.396,875.52 216.928,875.52C202.332,875.52 191.074,870.429 183.154,860.245C175.233,850.062 171.273,835.579 171.273,816.797C171.273,803.219 173.112,791.565 176.789,781.835C180.466,772.104 185.784,764.693 192.743,759.601C199.701,754.509 208.046,751.964 217.777,751.964C224.792,751.964 231.609,753.265 238.228,755.867C244.847,758.47 250.646,762.147 255.624,766.899L250.363,777.592C244.706,772.839 239.275,769.332 234.07,767.069C228.865,764.806 223.547,763.674 218.116,763.674C207.707,763.674 199.617,768.313 193.846,777.592C188.076,786.87 185.19,799.881 185.19,816.627L185.19,819.173C187.793,812.724 192.036,807.632 197.919,803.898C203.803,800.164 210.535,798.297 218.116,798.297C225.471,798.297 232.005,799.91 237.719,803.134ZM234.919,856.427C239.671,851.505 242.047,844.971 242.047,836.824C242.047,828.791 239.642,822.313 234.834,817.391C230.025,812.469 223.774,810.008 216.08,810.008C208.159,810.008 201.71,812.497 196.731,817.476C191.753,822.454 189.264,828.904 189.264,836.824C189.264,844.857 191.753,851.363 196.731,856.342C201.71,861.32 208.216,863.81 216.249,863.81C223.943,863.81 230.166,861.349 234.919,856.427Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         </g>
-         <g transform="matrix(0.203003,0,0,0.454823,1043.49,1828.36)">
-             <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-             <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM785.43,112.072L785.43,338.667L1220.96,338.667L1220.96,112.072L785.43,112.072Z"/>
-         </g>
-         <g transform="matrix(0.601453,0,0,0.601453,1116.31,1441.44)">
-             <path d="M173.14,753.321L252.909,753.321L252.909,763.674L196.222,874.163L181.287,874.163L237.634,765.032L173.14,765.032L173.14,753.321Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         </g>
-         <g transform="matrix(0.203003,0,0,0.454823,1174.2,1828.36)">
-             <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-             <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM785.431,112.072L785.431,338.667L1220.96,338.667L1220.96,112.072L785.431,112.072Z"/>
-         </g>
-         <g transform="matrix(0.601453,0,0,0.601453,1247.02,1441.44)">
-             <path d="M249.769,823.162C254.125,828.423 256.303,834.731 256.303,842.085C256.303,852.382 252.4,860.5 244.593,866.44C236.785,872.381 226.263,875.351 213.025,875.351C199.786,875.351 189.264,872.381 181.457,866.44C173.649,860.5 169.746,852.382 169.746,842.085C169.746,834.731 171.98,828.395 176.45,823.077C180.919,817.759 187.057,814.081 194.864,812.045C187.623,809.895 182.079,806.359 178.232,801.437C174.385,796.515 172.461,790.717 172.461,784.041C172.461,777.592 174.159,771.962 177.553,767.154C180.947,762.345 185.728,758.611 191.894,755.952C198.061,753.293 205.104,751.964 213.025,751.964C220.945,751.964 227.988,753.293 234.155,755.952C240.321,758.611 245.102,762.345 248.496,767.154C251.891,771.962 253.588,777.592 253.588,784.041C253.588,790.717 251.636,796.515 247.732,801.437C243.829,806.359 238.37,809.895 231.354,812.045C239.275,814.195 245.413,817.9 249.769,823.162ZM193.592,800.758C198.4,804.775 204.878,807.236 213.025,808.141C221.171,807.236 227.649,804.775 232.458,800.758C237.266,796.742 239.671,791.509 239.671,785.059C239.671,778.384 237.323,773.122 232.627,769.275C227.932,765.428 221.397,763.505 213.025,763.505C204.652,763.505 198.117,765.428 193.422,769.275C188.726,773.122 186.378,778.384 186.378,785.059C186.378,791.509 188.783,796.742 193.592,800.758ZM234.919,858.039C240.01,854.192 242.556,848.591 242.556,841.237C242.556,834.561 239.869,829.215 234.494,825.198C229.12,821.181 221.963,818.72 213.025,817.815C204.086,818.72 196.929,821.181 191.555,825.198C186.18,829.215 183.493,834.561 183.493,841.237C183.493,848.591 186.039,854.192 191.131,858.039C196.222,861.886 203.52,863.81 213.025,863.81C222.529,863.81 229.827,861.886 234.919,858.039Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         </g>
-         <g transform="matrix(0.203003,0,0,0.454823,1310.06,1828.36)">
-             <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-             <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM785.431,112.072L785.431,338.667L1220.96,338.667L1220.96,112.072L785.431,112.072Z"/>
-         </g>
-         <g transform="matrix(0.601453,0,0,0.601453,1382.88,1441.44)">
-             <path d="M243.065,767.239C250.985,777.422 254.946,791.905 254.946,810.687C254.946,831.167 250.844,847.092 242.641,858.463C234.438,869.835 222.982,875.52 208.272,875.52C201.37,875.52 194.61,874.219 187.991,871.617C181.372,869.014 175.516,865.337 170.425,860.585L175.856,849.893C181.626,854.758 187.114,858.294 192.319,860.5C197.523,862.706 202.785,863.81 208.103,863.81C218.512,863.81 226.574,859.171 232.288,849.893C238.002,840.614 240.859,827.603 240.859,810.857L240.859,808.65C238.256,814.987 234.013,819.993 228.13,823.671C222.246,827.348 215.514,829.187 207.933,829.187C200.578,829.187 194.072,827.574 188.415,824.35C182.758,821.125 178.345,816.599 175.177,810.772C172.009,804.945 170.425,798.297 170.425,790.83C170.425,783.362 172.094,776.686 175.431,770.803C178.769,764.919 183.38,760.308 189.264,756.97C195.147,753.633 201.823,751.964 209.291,751.964C223.887,751.964 235.145,757.055 243.065,767.239ZM229.487,810.008C234.466,805.03 236.955,798.58 236.955,790.66C236.955,782.627 234.466,776.121 229.487,771.142C224.509,766.164 218.003,763.674 209.97,763.674C202.276,763.674 196.052,766.135 191.3,771.057C186.548,775.979 184.172,782.513 184.172,790.66C184.172,798.693 186.548,805.171 191.3,810.093C196.052,815.015 202.332,817.476 210.139,817.476C218.06,817.476 224.509,814.987 229.487,810.008Z" style="fill:rgb(242,242,242);fill-rule:nonzero;"/>
-         </g>
-         <g transform="matrix(1.12416,0,0,0.562078,203.296,970.539)">
-             <path d="M253.227,1575.22L253.227,1607.45" style="fill:none;stroke:black;stroke-width:5.95px;"/>
-         </g>
-         <g transform="matrix(1,0,0,1,327.452,-60.2647)">
-             <path d="M657.203,1916.2L160.511,1916.2" style="fill:none;stroke:black;stroke-width:5.28px;"/>
-         </g>
-         <g transform="matrix(1.12416,0,0,0.562078,203.296,970.539)">
-             <path d="M366.126,1575.22L366.126,1607.45" style="fill:none;stroke:black;stroke-width:5.95px;"/>
-         </g>
-         <g transform="matrix(1.12416,0,0,0.562078,203.296,970.539)">
-             <path d="M472.919,1575.22L472.919,1607.45" style="fill:none;stroke:black;stroke-width:5.95px;"/>
-         </g>
-         <g transform="matrix(1.12416,0,0,0.562078,203.296,970.539)">
-             <path d="M582.288,1575.22L582.288,1607.45" style="fill:none;stroke:black;stroke-width:5.95px;"/>
-         </g>
-         <g transform="matrix(1.11822,0,0,1.12416,210.208,67.0263)">
-             <path d="M691.478,1575.22L691.478,1591.33L1163.66,1591.33L1163.66,1607.45" style="fill:none;stroke:black;stroke-width:4.71px;"/>
-         </g>
-         <g transform="matrix(1.12416,0,0,1.12416,203.296,67.0263)">
-             <path d="M1042.22,1591.33L1042.22,1607.45" style="fill:none;stroke:black;stroke-width:4.7px;"/>
-         </g>
-         <g transform="matrix(1.12416,0,0,1.12416,203.296,67.0263)">
-             <path d="M927.57,1591.33L927.57,1607.45" style="fill:none;stroke:black;stroke-width:4.7px;"/>
-         </g>
-         <g transform="matrix(1.12416,0,0,1.12416,203.296,67.0263)">
-             <path d="M812.587,1591.33L812.587,1607.45" style="fill:none;stroke:black;stroke-width:4.7px;"/>
-         </g>
-     </g>
-     <g transform="matrix(1.17016,0,0,1.17016,-234.903,-166.612)">
-         <path d="M1120.2,802.778L1120.2,859.94" style="fill:none;stroke:black;stroke-width:4.7px;"/>
-     </g>
-     <g transform="matrix(1.17016,0,0,0.576838,-234.903,343.611)">
-         <path d="M1294.85,802.778L1294.85,859.94" style="fill:none;stroke:black;stroke-width:5.96px;"/>
-     </g>
-     <g transform="matrix(1.17016,0,0,0.537752,-233.077,374.989)">
-         <path d="M1552.85,802.778L1552.85,859.94" style="fill:none;stroke:black;stroke-width:6.04px;"/>
-     </g>
-     <g transform="matrix(1.17016,0,0,1.17016,-233.077,-168.846)">
-         <path d="M1729.39,859.94L1729.39,802.778" style="fill:none;stroke:black;stroke-width:4.7px;"/>
-     </g>
-     <g transform="matrix(1.17016,0,0,0.537752,-233.077,374.989)">
-         <path d="M1909.1,859.94L1909.1,802.778" style="fill:none;stroke:black;stroke-width:6.04px;"/>
-     </g>
-     <g transform="matrix(-0.849549,0,0,0.561845,1662.41,418.175)">
-         <path d="M928.049,750L929.086,691.489" style="fill:none;stroke:black;stroke-width:7.64px;"/>
-     </g>
-     <g transform="matrix(0.921744,0,0,0.921744,1374.93,-23.3561)">
-         <g transform="matrix(0.160763,0,0,0.360187,182.349,102.289)">
-             <g>
-                 <g>
-                     <rect x="759.403" y="100.455" width="487.587" height="249.829" style="fill:rgb(0,168,138);"/>
-                     <path d="M1246.99,350.284L759.403,350.284L759.403,100.455L1246.99,100.455L1246.99,350.284ZM796.52,117.021L796.52,333.718L1209.87,333.718L1209.87,117.021L796.52,117.021Z"/>
-                 </g>
-             </g>
-         </g>
-         <g transform="matrix(0.353176,0,0,0.353176,612.173,-130.648)">
-             <path d="M-499.304,862.116L-499.304,872.808L-582.806,872.808L-582.806,862.116L-499.304,862.116ZM-499.304,896.399L-499.304,907.092L-582.806,907.092L-582.806,896.399L-499.304,896.399Z" style="fill-rule:nonzero;"/>
-             <path d="M-409.097,927.288C-417.979,922.197 -424.796,914.984 -429.548,905.649C-434.301,896.314 -436.677,885.367 -436.677,872.808C-436.677,860.362 -434.301,849.471 -429.548,840.137C-424.796,830.802 -417.979,823.617 -409.097,818.582C-400.215,813.547 -389.834,811.03 -377.953,811.03C-369.807,811.03 -362.141,812.303 -354.956,814.848C-347.771,817.394 -341.803,820.93 -337.051,825.456L-344.179,841.41C-349.61,836.997 -355.013,833.8 -360.387,831.82C-365.762,829.84 -371.504,828.85 -377.614,828.85C-389.268,828.85 -398.292,832.641 -404.684,840.222C-411.077,847.802 -414.274,858.665 -414.274,872.808C-414.274,887.064 -411.105,898.011 -404.769,905.649C-398.433,913.286 -389.381,917.105 -377.614,917.105C-371.504,917.105 -365.762,916.115 -360.387,914.135C-355.013,912.155 -349.61,908.958 -344.179,904.546L-337.051,920.499C-341.803,925.025 -347.771,928.561 -354.956,931.107C-362.141,933.653 -369.807,934.926 -377.953,934.926C-389.834,934.926 -400.215,932.38 -409.097,927.288Z" style="fill-rule:nonzero;"/>
-             <path d="M-303.87,929.325C-310.489,925.704 -315.581,920.528 -319.145,913.796C-322.709,907.063 -324.491,899.171 -324.491,890.119C-324.491,881.068 -322.709,873.176 -319.145,866.443C-315.581,859.711 -310.489,854.535 -303.87,850.914C-297.251,847.293 -289.585,845.483 -280.873,845.483C-272.274,845.483 -264.693,847.293 -258.131,850.914C-251.568,854.535 -246.505,859.711 -242.941,866.443C-239.376,873.176 -237.594,881.068 -237.594,890.119C-237.594,899.171 -239.376,907.063 -242.941,913.796C-246.505,920.528 -251.568,925.704 -258.131,929.325C-264.693,932.946 -272.274,934.756 -280.873,934.756C-289.585,934.756 -297.251,932.946 -303.87,929.325ZM-264.495,911.08C-260.705,906.384 -258.809,899.398 -258.809,890.119C-258.809,880.955 -260.733,873.968 -264.58,869.159C-268.427,864.35 -273.858,861.946 -280.873,861.946C-288.001,861.946 -293.489,864.35 -297.336,869.159C-301.183,873.968 -303.107,880.955 -303.107,890.119C-303.107,899.398 -301.211,906.384 -297.421,911.08C-293.63,915.776 -288.171,918.123 -281.043,918.123C-273.801,918.123 -268.286,915.776 -264.495,911.08Z" style="fill-rule:nonzero;"/>
-             <path d="M-139.496,880.785L-139.496,933.398L-160.711,933.398L-160.711,881.803C-160.711,875.014 -162.012,870.064 -164.614,866.953C-167.217,863.841 -171.234,862.285 -176.665,862.285C-183.114,862.285 -188.319,864.35 -192.279,868.48C-196.239,872.61 -198.219,878.069 -198.219,884.858L-198.219,933.398L-219.265,933.398L-219.265,871.959C-219.265,862.908 -219.717,854.818 -220.622,847.689L-200.765,847.689L-199.237,861.776C-196.296,856.571 -192.307,852.555 -187.272,849.726C-182.237,846.897 -176.551,845.483 -170.215,845.483C-149.736,845.483 -139.496,857.25 -139.496,880.785Z" style="fill-rule:nonzero;"/>
-             <path d="M-89.937,863.643L-89.937,902C-89.937,912.07 -85.242,917.105 -75.851,917.105C-73.248,917.105 -70.419,916.652 -67.364,915.747L-67.364,932.55C-71.098,933.907 -75.624,934.586 -80.942,934.586C-90.673,934.586 -98.141,931.871 -103.345,926.44C-108.55,921.009 -111.152,913.201 -111.152,903.018L-111.152,863.643L-127.615,863.643L-127.615,847.689L-111.152,847.689L-111.152,826.814L-89.937,819.685L-89.937,847.689L-67.195,847.689L-67.195,863.643L-89.937,863.643Z" style="fill-rule:nonzero;"/>
-             <path d="M22.418,891.647L-36.645,891.647C-36.192,900.812 -33.901,907.572 -29.771,911.929C-25.641,916.285 -19.503,918.463 -11.357,918.463C-1.965,918.463 6.747,915.408 14.78,909.298L20.89,923.894C16.817,927.175 11.81,929.806 5.87,931.786C-0.07,933.766 -6.095,934.756 -12.205,934.756C-26.236,934.756 -37.267,930.796 -45.301,922.876C-53.334,914.955 -57.351,904.093 -57.351,890.289C-57.351,881.577 -55.597,873.826 -52.09,867.037C-48.582,860.249 -43.66,854.959 -37.324,851.169C-30.988,847.378 -23.803,845.483 -15.769,845.483C-4.002,845.483 5.304,849.302 12.15,856.939C18.995,864.577 22.418,875.071 22.418,888.422L22.418,891.647ZM-29.092,865.765C-32.657,869.102 -34.948,873.939 -35.966,880.276L3.918,880.276C3.239,873.826 1.288,868.961 -1.937,865.68C-5.162,862.398 -9.603,860.758 -15.26,860.758C-20.918,860.758 -25.528,862.427 -29.092,865.765Z" style="fill-rule:nonzero;"/>
-             <path d="M120.177,880.785L120.177,933.398L98.962,933.398L98.962,881.803C98.962,875.014 97.661,870.064 95.058,866.953C92.456,863.841 88.439,862.285 83.008,862.285C76.559,862.285 71.354,864.35 67.394,868.48C63.434,872.61 61.454,878.069 61.454,884.858L61.454,933.398L40.408,933.398L40.408,871.959C40.408,862.908 39.956,854.818 39.05,847.689L58.908,847.689L60.435,861.776C63.377,856.571 67.365,852.555 72.4,849.726C77.436,846.897 83.121,845.483 89.457,845.483C109.937,845.483 120.177,857.25 120.177,880.785Z" style="fill-rule:nonzero;"/>
-             <path d="M169.735,863.643L169.735,902C169.735,912.07 174.431,917.105 183.822,917.105C186.425,917.105 189.253,916.652 192.308,915.747L192.308,932.55C188.574,933.907 184.048,934.586 178.731,934.586C169,934.586 161.532,931.871 156.327,926.44C151.123,921.009 148.52,913.201 148.52,903.018L148.52,863.643L132.057,863.643L132.057,847.689L148.52,847.689L148.52,826.814L169.735,819.685L169.735,847.689L192.478,847.689L192.478,863.643L169.735,863.643Z" style="fill-rule:nonzero;"/>
-             <path d="M255.105,812.557L307.549,812.557C320.56,812.557 330.687,815.697 337.929,821.977C345.17,828.256 348.791,836.827 348.791,847.689C348.791,858.551 345.142,867.151 337.844,873.487C330.546,879.823 320.447,882.991 307.549,882.991L276.999,882.991L276.999,933.398L255.105,933.398L255.105,812.557ZM305.003,866.019C312.584,866.019 318.326,864.463 322.229,861.352C326.133,858.24 328.085,853.743 328.085,847.859C328.085,841.862 326.161,837.308 322.314,834.197C318.467,831.085 312.697,829.529 305.003,829.529L276.999,829.529L276.999,866.019L305.003,866.019Z" style="fill-rule:nonzero;"/>
-             <path d="M445.362,847.689L445.362,933.398L424.486,933.398L424.486,919.651C421.884,924.403 418.15,928.109 413.284,930.768C408.419,933.427 402.875,934.756 396.652,934.756C389.184,934.756 382.565,932.946 376.795,929.325C371.024,925.704 366.555,920.556 363.387,913.88C360.218,907.205 358.634,899.454 358.634,890.629C358.634,881.803 360.247,873.968 363.471,867.122C366.696,860.277 371.194,854.959 376.964,851.169C382.735,847.378 389.297,845.483 396.652,845.483C402.875,845.483 408.419,846.812 413.284,849.471C418.15,852.13 421.884,855.836 424.486,860.588L424.486,847.689L445.362,847.689ZM418.716,910.825C422.563,905.96 424.486,899.115 424.486,890.289C424.486,881.237 422.563,874.279 418.716,869.414C414.869,864.548 409.381,862.116 402.253,862.116C395.238,862.116 389.778,864.633 385.875,869.668C381.971,874.703 380.019,881.69 380.019,890.629C380.019,899.454 381.971,906.243 385.875,910.995C389.778,915.747 395.294,918.123 402.422,918.123C409.437,918.123 414.869,915.691 418.716,910.825Z" style="fill-rule:nonzero;"/>
-             <path d="M551.267,847.689L551.267,930.683C551.267,944.034 547.59,954.161 540.236,961.063C532.881,967.965 522.075,971.416 507.819,971.416C494.581,971.416 482.927,968.644 472.856,963.099L476.251,946.976C486.66,952.407 497.013,955.122 507.31,955.122C522.585,955.122 530.222,947.542 530.222,932.38L530.222,915.408C527.62,920.047 523.829,923.809 518.851,926.694C513.872,929.58 508.271,931.022 502.048,931.022C494.581,931.022 487.933,929.24 482.106,925.676C476.279,922.112 471.753,917.077 468.529,910.571C465.304,904.065 463.692,896.625 463.692,888.253C463.692,879.88 465.304,872.44 468.529,865.934C471.753,859.428 476.279,854.393 482.106,850.829C487.933,847.265 494.581,845.483 502.048,845.483C508.385,845.483 514.014,846.812 518.936,849.471C523.858,852.13 527.62,855.836 530.222,860.588L530.222,847.689L551.267,847.689ZM524.197,907.431C528.214,902.792 530.222,896.399 530.222,888.253C530.222,880.106 528.242,873.713 524.282,869.074C520.322,864.435 514.777,862.116 507.649,862.116C500.634,862.116 495.118,864.435 491.101,869.074C487.085,873.713 485.076,880.106 485.076,888.253C485.076,896.399 487.085,902.792 491.101,907.431C495.118,912.07 500.634,914.39 507.649,914.39C514.664,914.39 520.18,912.07 524.197,907.431Z" style="fill-rule:nonzero;"/>
-             <path d="M649.196,891.647L590.133,891.647C590.586,900.812 592.877,907.572 597.007,911.929C601.137,916.285 607.275,918.463 615.422,918.463C624.813,918.463 633.525,915.408 641.559,909.298L647.669,923.894C643.595,927.175 638.589,929.806 632.648,931.786C626.708,933.766 620.683,934.756 614.573,934.756C600.543,934.756 589.511,930.796 581.478,922.876C573.444,914.955 569.428,904.093 569.428,890.289C569.428,881.577 571.181,873.826 574.689,867.037C578.196,860.249 583.118,854.959 589.455,851.169C595.791,847.378 602.976,845.483 611.009,845.483C622.776,845.483 632.083,849.302 638.928,856.939C645.774,864.577 649.196,875.071 649.196,888.422L649.196,891.647ZM597.686,865.765C594.122,869.102 591.831,873.939 590.812,880.276L630.697,880.276C630.018,873.826 628.066,868.961 624.841,865.68C621.617,862.398 617.176,860.758 611.518,860.758C605.861,860.758 601.25,862.427 597.686,865.765Z" style="fill-rule:nonzero;"/>
-         </g>
-     </g>
-     <g transform="matrix(1,0,0,1,28.2875,0)">
-         <path d="M845.696,806.684L1049.45,806.684" style="fill:none;stroke:black;stroke-width:5.5px;"/>
-     </g>
-     <g transform="matrix(1,0,0,1,28.2875,0)">
-         <path d="M1049.45,806.684L1252,806.684" style="fill:none;stroke:black;stroke-width:5.5px;"/>
-     </g>
-     <g transform="matrix(1,0,0,1,28.2875,0)">
-         <path d="M1555.72,806.684L1764.49,803.979L1972.59,806.684" style="fill:none;stroke:black;stroke-width:5.5px;"/>
-     </g>
-     <g transform="matrix(1,0,0,1,28.2875,0)">
-         <path d="M127.118,803.979L335.044,803.979L544.651,806.684" style="fill:none;stroke:black;stroke-width:5.5px;"/>
-     </g>
- </svg>
++<svg height="446" viewBox="0 0 1730 446" width="1730" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd" transform="translate(.538462 .461538)"><g transform="translate(2.996935 .388277)"><path d="m64.0494614 5.00059856 58.8489506 34.18916364v67.3333318l-58.8489506 33.404195-58.75248965-33.404195v-67.3333318z" fill="#ff4088"/><path d="m126.283637 35.8185172 1.230228 2.1375217v69.8133611l-1.253295 2.152899-60.9934622 34.621142h-2.4387878l-60.89490434-34.623239-1.25189712-2.1522v-69.8112641l1.22883034-2.1368227 60.89280732-35.43476985h2.4891154zm-116.37121203 6.0253228v61.994421l54.13913343 30.780872 54.2320996-30.782969v-61.990227l-54.2320996-31.5064271z" fill="#c9177e"/></g><path d="m60.4490685 78.3838073h-16.0432056v-32.93617h-27.9340521v32.93617h-16.04320555v-77.90259702h16.04320555v32.56189542h27.9340521v-32.56189542h16.0432056z" fill="#fff" fill-rule="nonzero" transform="translate(35.169824 33.865851)"/><g transform="translate(329.992265 24.431705)"><path d="m.21765.21067h263.332986v115.673517h-263.332986z" fill="#0083c0"/><path d="m263.550636 115.884187h-263.33298624v-115.6735171h263.33298624zm-260.79463916-113.13482905v110.59614105h258.25629216v-110.59614105z" fill="#000"/></g><g fill="#f2f2f2" fill-rule="nonzero" transform="translate(352.419436 42.870159)"><path d="m22.7288949.05688029h3.6312065v31.52968501h-3.6312065v-14.4804699h-18.90904412v14.4804699h-3.58685032v-31.52968501h3.58685032v13.99359541h18.90904412z"/><path d="m37.3865286 30.4794869c-1.5939528-.9445259-2.826533-2.2879966-3.6974799-4.0296294-.8709468-1.7418937-1.3064203-3.7788866-1.3064203-6.1112394 0-2.332092.4354735-4.3693457 1.3064203-6.1109785.8709469-1.7418937 2.1035271-3.0851036 3.6974799-4.0298904 1.5942137-.94478689 3.4394312-1.41704986 5.5356526-1.41704986 2.0959605 0 3.941178.47226297 5.5353917 1.41704986 1.5942137.9447868 2.826533 2.2879967 3.6974799 4.0298904.8709468 1.7416328 1.3064203 3.7788865 1.3064203 6.1109785 0 2.3323528-.4354735 4.3693457-1.3064203 6.1112394-.8709469 1.7416328-2.1032662 3.0851035-3.6974799 4.0296294-1.5942137.9447869-3.4394312 1.4170499-5.5353917 1.4170499-2.0962214 0-3.9414389-.472263-5.5356526-1.4170499zm10.6280042-3.741836c1.1809184-1.461406 1.7713776-3.594417 1.7713776-6.3990328 0-2.7159035-.6050707-4.8194306-1.8154728-6.3103205-1.2104022-1.4908898-2.8933283-2.2363347-5.0482564-2.2363347-2.1846728 0-3.8822104.7454449-5.0926125 2.2363347-1.2104022 1.4908899-1.8157337 3.594417-1.8157337 6.3103205 0 2.8046158.5977649 4.9376268 1.7935556 6.3990328 1.1955298 1.461406 2.9006339 2.1919786 5.1147906 2.1919786s3.9116942-.7305726 5.0923516-2.1919786z"/><path d="m91.1464927 17.5929699v13.9935954h-3.5868503v-13.8164316c0-2.0959605-.3616334-3.6163341-1.0849002-4.561121-.7232669-.9447869-1.8968795-1.4170498-3.520577-1.4170498-1.8893128 0-3.3655912.6348153-4.4283133 1.9041851-1.0627222 1.2693698-1.5942137 2.9966521-1.5942137 5.181064v12.7093533h-3.5868503v-13.8164316c0-2.0664767-.3692001-3.5795446-1.1070784-4.5389429-.7381392-.9593983-1.9190575-1.4392279-3.542755-1.4392279-1.8893128 0-3.3728969.6348153-4.4504915 1.9041851-1.0775945 1.2693698-1.6163917 2.9966521-1.6163917 5.181064v12.7093533h-3.5868504v-16.0305883c0-2.3026081-.1181962-4.3839571-.3543276-6.24378613h3.4099473l.3540668 3.89682183c.619943-1.4170498 1.5425518-2.5092558 2.7678263-3.27687883 1.2252746-.76762302 2.6496301-1.15143453 4.2733276-1.15143453 1.7713775 0 3.2179112.35432769 4.3398619 1.06272215 1.1216898.70865541 1.9482805 1.80086131 2.479772 3.27713971.6789106-1.3285983 1.6753594-2.3840148 2.9890854-3.16624924 1.313726-.78249538 2.7973101-1.17361262 4.4504915-1.17361262 4.930321 0 7.3952206 2.93742346 7.3952206 8.81227056z"/><path d="m116.609555 20.3386181h-16.340559c.029483 2.8340996.686477 4.9744163 1.970458 6.4212109 1.284242 1.4465336 3.151638 2.1698005 5.601926 2.1698005 2.597968 0 4.989289-.8709469 7.173962-2.6128406l1.19553 2.6128406c-.974271.915303-2.221463 1.6385698-3.741837 2.1698004-1.520373.5314916-3.077797.7971069-4.672011.7971069-3.483526 0-6.214302-1.0259326-8.1923275-3.0775369-1.9780252-2.0518652-2.9669073-4.8637868-2.9669073-8.4360256 0-2.2731244.4427791-4.2882 1.3283374-6.0447052.8858192-1.7565051 2.1257054-3.121893 3.7199194-4.0961637 1.594213-.97427072 3.409686-1.46140606 5.44694-1.46140606 2.952035 0 5.269515.96696496 6.952441 2.90063396 1.682665 1.933669 2.524128 4.5979105 2.524128 7.9929856zm-13.971417-7.0852492c-1.166046 1.1216898-1.911491 2.701292-2.236335 4.7382848h12.974969c-.177164-2.0959604-.789801-3.6901741-1.837651-4.782641-1.048111-1.092206-2.50195-1.6385699-4.36204-1.6385699-1.859829 0-3.372897.5609754-4.538943 1.6829261z"/><path d="m138.352699 10.2421054c1.505502.9742707 2.671548 2.3396586 3.498399 4.0961637.826591 1.7565052 1.239886 3.7861923 1.239886 6.0890613 0 2.3026082-.413295 4.3174229-1.239886 6.0444443-.826851 1.7272822-1.985592 3.0631863-3.476221 4.0077122-1.49089.9447869-3.225478 1.4170499-5.203503 1.4170499-1.741632 0-3.262006-.3838115-4.561121-1.1511736-1.298853-.767623-2.287996-1.8600899-2.966907-3.2771398v13.683624h-3.587111v-25.5958704c0-2.3026081-.117936-4.3839571-.354067-6.24378613h3.409686l.354328 4.29550573c.619943-1.5352461 1.60152-2.7234701 2.944729-3.5649332 1.343471-.841463 2.930118-1.26206406 4.760463-1.26206406 1.948542 0 3.675563.48713534 5.181325 1.46140606zm-.774929 16.4733674c1.19553-1.4760175 1.793295-3.5722389 1.793295-6.2881424 0-2.7161643-.60507-4.8343029-1.815473-6.3546766-1.210402-1.5203736-2.893328-2.2806909-5.048256-2.2806909-2.214418 0-3.911694.7381392-5.092613 2.2141566-1.180918 1.4760175-1.771377 3.5868504-1.771377 6.3324986s.590459 4.8637867 1.771377 6.3546766c1.180919 1.4908898 2.878195 2.2363348 5.092613 2.2363348 2.184412 0 3.874644-.7381392 5.070434-2.2141567z"/><path d="m168.243032 9.31219087v22.27437443h-3.540668v-4.0296295c-.649688 1.387566-1.633352 2.4575939-2.945773 3.2103445-1.313987.7530116-2.841666 1.1292565-4.58356 1.1292565-1.978025 0-3.712352-.472263-5.203242-1.4170499-1.49089-.9445259-2.642325-2.28043-3.454043-4.0077122-.811979-1.7270214-1.217969-3.7418361-1.217969-6.0444443 0-2.302869.413296-4.3325561 1.239886-6.0890613.826852-1.7565051 1.985592-3.121893 3.476221-4.0961637 1.49089-.97427072 3.210606-1.46140606 5.159147-1.46140606 1.741894 0 3.262267.38381151 4.560077 1.15143453 1.299376.76762303 2.288258 1.84521753 2.969256 3.23252263v-3.85246563zm-5.312307 17.38110383c1.179353-1.4908899 1.771639-3.6090284 1.771639-6.3546766s-.592286-4.8564811-1.771639-6.3324986c-1.181962-1.4760174-2.864627-2.2141566-5.0493-2.2141566-2.184412 0-3.889516.7603173-5.114529 2.2806909-1.225275 1.5203737-1.837912 3.6385123-1.837912 6.3546766 0 2.7159035.605331 4.8121249 1.815734 6.2881424 1.210402 1.4760175 2.922551 2.2141567 5.136707 2.2141567 2.184673 0 3.867338-.745445 5.0493-2.2363348z"/><path d="m195.034171 9.31219087v22.09721053c0 3.3066236-.847986 5.8085737-2.543958 7.5061112-1.698581 1.6975375-4.200792 2.5463063-7.506633 2.5463063-3.394553 0-6.319453-.7676231-8.76948-2.3028691l.620987-2.9225511c1.416789.7971068 2.752693 1.3726936 4.007712 1.7270213s2.63528.5314915 4.140781.5314915c2.155189 0 3.778104-.568281 4.871353-1.7051041 1.090641-1.1365622 1.63857-2.826533 1.63857-5.0704345v-5.2695154c-.680998 1.4170498-1.675098 2.5165615-2.990129 3.2990569-1.315031.7822345-2.870106 1.1733517-4.670446 1.1733517-1.949063 0-3.684173-.4573906-5.205329-1.3726936-1.518548-.9150422-2.692682-2.2141567-3.519795-3.8968219-.827112-1.682926-1.239364-3.616595-1.239364-5.8012679 0-2.1846728.412252-4.1183418 1.239364-5.801007.827113-1.682926 2.001247-2.9817797 3.519795-3.8970827 1.521156-.91504214 3.256266-1.37269366 5.205329-1.37269366 1.769029 0 3.313668.38381151 4.62609 1.15143453 1.31503.76762303 2.309131 1.84521753 2.990129 3.23252263v-3.85246563zm-5.424501 16.45118933c1.226318-1.4319222 1.839477-3.4023808 1.839477-5.9118975 0-2.5092558-.613159-4.4799752-1.839477-5.9116365-1.223709-1.4319222-2.914463-2.1478833-5.069652-2.1478833-2.18389 0-3.903345.7159611-5.158364 2.1478833-1.255019 1.4316613-1.881224 3.4023807-1.881224 5.9116365 0 2.5095167.626205 4.4799753 1.881224 5.9118975s2.974474 2.1476224 5.158364 2.1476224c2.155189 0 3.845943-.7157002 5.069652-2.1476224z"/><path d="m220.585946 20.3386181h-16.338733c.028701 2.8340996.686216 4.9744163 1.969936 6.4212109 1.283721 1.4465336 3.151899 2.1698005 5.601926 2.1698005 2.598751 0 4.988767-.8709469 7.172657-2.6128406l1.195008 2.6128406c-.973227.915303-2.220419 1.6385698-3.741575 2.1698004-1.518547.5314916-3.076232.7971069-4.670446.7971069-3.483266 0-6.215085-1.0259326-8.192849-3.0775369-1.977765-2.0518652-2.966647-4.8637868-2.966647-8.4360256 0-2.2731244.443562-4.2882 1.328077-6.0447052.887124-1.7565051 2.126488-3.121893 3.720701-4.0961637 1.594214-.97427072 3.410209-1.46140606 5.445375-1.46140606 2.953601 0 5.270559.96696496 6.953485 2.90063396s2.523085 4.5979105 2.523085 7.9929856zm-13.969591-7.0852492c-1.166307 1.1216898-1.912535 2.701292-2.236074 4.7382848h12.972881c-.177424-2.0959604-.787974-3.6901741-1.836868-4.782641-1.048893-1.092206-2.502211-1.6385699-4.362562-1.6385699-1.86035 0-3.37107.5609754-4.537377 1.6829261z"/></g><g fill="#f2f2f2" fill-rule="nonzero" transform="translate(347.017193 95.746626)"><path d="m.13103057 17.5444886 1.30960428-16.95274668h3.09535177l-1.16678937 14.42893518h7.92875255l-.1903731 2.5238115z"/><path d="m13.2028032 17.5444886.9524268-12.02408921h2.9762458l-.9524267 12.02408921zm1.1904984-17.47658839h3.3095741l-.2142224 2.92868762h-3.3095741z"/><path d="m18.7267099 16.2111754 1.0238341-2.0715176c1.3493063.936574 2.7858728 1.404861 4.3096994 1.404861 1.5396794 0 2.3095892-.4444378 2.3095892-1.3334535 0-.412592-.202438-.7261395-.6071738-.9405021-.4047358-.2142224-1.0516115-.4563624-1.940487-.7261395-.8413173-.2380716-1.5398197-.4762835-2.0953669-.7143551-.5555471-.2380716-1.0277622-.5833245-1.4166453-1.0357588-.388883-.452294-.5833245-1.04361503-.5833245-1.77382287 0-1.14279984.4602905-2.06352109 1.3808714-2.76188318.9207213-.69850237 2.1429251-1.04768342 3.6667517-1.04768342.8890158 0 1.7461858.13495869 2.5715101.40473576.8254645.26991737 1.5159704.64294766 2.0715176 1.11909088l-.999985 2.0238191c-1.1904983-.90472823-2.4206986-1.35716248-3.6906009-1.35716248-.7460606 0-1.3174605.11910595-1.71434.35717755-.3968796.23807161-.5952492.58725266-.5952492 1.04768343 0 .42858501.202438.74998869.6071738.96421105.4047358.21436265 1.0594677.45636238 1.9643363.72627978.8730227.2539243 1.5793813.4960643 2.1190758.7261394.5396944.2302154 1.0040533.5754683 1.3929363 1.0357588.388883.4604308.5833246 1.0556799.5833246 1.7857475 0 1.1587929-.4602905 2.0635211-1.3810118 2.714325-.9207212.6508038-2.1587778.9762759-3.7143099.9762759-1.9525519 0-3.7064536-.5079889-5.262126-1.5238266z"/><path d="m35.3699775 13.1396729c-.1111094 1.4127172.4841397 2.1190758 1.7857475 2.1190758.3651741 0 .7777661-.0555547 1.2381968-.1666642l-.1905134 2.3334385c-.5238417.1903731-1.1746456.2856298-1.9524116.2856298-1.2540496 0-2.2143325-.3294002-2.8809891-.9880603-.6667969-.6588004-1.0001253-1.6151552-1.0001253-2.8690645 0-.2382119.0079966-.4207288.0238493-.547691l.428585-5.54775586h-2.3095892l.1905134-2.23818175h2.28574l.2380716-2.92854732 3.0476532-1.00012522-.309479 3.92867254h3.2143174l-.1903731 2.23818175h-3.1906085z"/><path d="m39.5605709 16.2111754 1.0238342-2.0715176c1.349166.936574 2.7857324 1.404861 4.309559 1.404861 1.5398197 0 2.3095893-.4444378 2.3095893-1.3334535 0-.412592-.2022978-.7261395-.6071738-.9405021-.4047358-.2142224-1.0516116-.4563624-1.9404871-.7261395-.8413172-.2380716-1.5396793-.4762835-2.0952265-.7143551s-1.0279026-.5833245-1.4167856-1.0357588c-.388883-.452294-.5833246-1.04361503-.5833246-1.77382287 0-1.14279984.4602905-2.06352109 1.3810118-2.76188318.9207212-.69850237 2.142925-1.04768342 3.6667517-1.04768342.8888754 0 1.7460455.13495869 2.57151.40473576.8253243.26991737 1.5158301.64294766 2.0715176 1.11909088l-1.0001252 2.0238191c-1.1904983-.90472823-2.4206986-1.35716248-3.6904606-1.35716248-.7460606 0-1.3176008.11910595-1.7143401.35717755-.3968795.23807161-.5952492.58725266-.5952492 1.04768343 0 .42858501.2022978.74998869.6071738.96421105.4047358.21436265 1.0594678.45636238 1.964196.72627978.8731631.2539243 1.5795217.4960643 2.1192161.7261394.5396945.2302154 1.003913.5754683 1.3927961 1.0357588.388883.4604308.5833245 1.0556799.5833245 1.7857475 0 1.1587929-.4602905 2.0635211-1.3808714 2.714325-.9207213.6508038-2.1587778.9762759-3.7144502.9762759-1.9524117 0-3.7064537-.5079889-5.2619858-1.5238266z"/><path d="m58.3943218 15.592077.7380641-1.4999774c.8413173.7142148 1.6984873 1.2222038 2.57151 1.5238266.8730228.3016229 1.8890008.4524343 3.0476533.4524343 1.365159 0 2.4167706-.2659893 3.1548346-.7976872.7382044-.5318382 1.1071663-1.2818269 1.1071663-2.2501064 0-.5713999-.1784485-1.0357588-.5356261-1.392796-.3571775-.3571776-.8254645-.6390196-1.4048609-.8452454-.5793965-.2063662-1.3532344-.4207288-2.3215139-.6429477-1.3016077-.2857701-2.3730001-.59524916-3.2143174-.92857747s-1.5238266-.81353993-2.0476684-1.44049456c-.5238417-.62695464-.7857625-1.44849108-.7857625-2.46432874 0-.96827945.2540646-1.82152136.7619133-2.55958543.507989-.73820436 1.2262722-1.31353239 2.1548497-1.72626467.9285774-.41273227 2.0120347-.61909841 3.2500913-.61909841 1.1746456 0 2.2698872.18265718 3.2857249.54769096 1.0159779.36503378 1.8731479.896872 2.57151 1.59523409l-.7619133 1.50011768c-.7936188-.68264964-1.5991622-1.18264211-2.4166302-1.50011768-.8174681-.31747557-1.710412-.47614322-2.6786914-.47614322-1.3174605 0-2.3492912.28170171-3.0953518.8452454s-1.1190909 1.33738164-1.1190909 2.32151383c0 .85717002.3254721 1.49997739.976276 1.9285624s1.6507888.8016153 3.0000951 1.11909087c1.4602754.34918105 2.6071436.67058473 3.4404644.96435135.833461.29362633 1.527895.73806407 2.0834422 1.3333132.5555472.5952492.8333208 1.3849399.8333208 2.3690721 0 .9524267-.2539244 1.7896756-.7619133 2.5120272-.507989.7222113-1.2341285 1.2816866-2.1785587 1.6785662-.9445705.3968795-2.0517367.5952491-3.3214987.5952491-2.6509141 0-4.7619934-.7143551-6.3335185-2.142925z"/><path d="m83.9663269 11.4967403h-8.7859225c.0158527 1.5238266.3691021 2.674623 1.059608 3.4525293.6905059.7777661 1.6944189 1.1666491 3.0118794 1.1666491 1.3968645 0 2.6826195-.468287 3.8572651-1.404861l.6429477 1.404861c-.5238417.4921362-1.1945668.8810193-2.0120348 1.1666491-.817468.2857701-1.6547169.428585-2.5118869.428585-1.873148 0-3.3414199-.5516191-4.4049561-1.6547169-1.0635361-1.1032382-1.5952341-2.6151402-1.5952341-4.5358464 0-1.2222038.2380716-2.30566106.7143551-3.25009127.4761433-.94443021 1.1427999-1.67856617 1.9999699-2.20240788s1.833446-.78576257 2.9286876-.78576257c1.5872376 0 2.8334309.5199136 3.7381591 1.55960051.9047283 1.03968691 1.3571625 2.47218496 1.3571625 4.29763441zm-7.5120921-3.80956661c-.6269547.60310539-1.0277623 1.45241918-1.202423 2.54766081h6.9763258c-.0951164-1.1269471-.4245166-1.98411712-.9880603-2.57151006-.5635437-.58725265-1.3452378-.88101927-2.345363-.88101927-.999985 0-1.8135249.30162284-2.4404795.90486852z"/><path d="m88.8830598 16.9492395c-.8650263-.5078487-1.5316829-1.2261319-1.9999699-2.1548497-.468287-.9285775-.7024305-2.0118945-.7024305-3.249951 0-1.2381968.2380716-2.32951036.7143551-3.27394057.4761433-.94443021 1.1547245-1.67856617 2.0357438-2.20240788.8808789-.52384171 1.9087815-.78576257 3.0834271-.78576257.8094715 0 1.591306.1388868 2.3452228.41666039.7540571.27777359 1.3770836.66272851 1.8690796 1.15486475l-.6428074 1.42856993c-.6032457-.4762835-1.1865702-.82546455-1.7501139-1.04768342s-1.1388717-.33332831-1.7262647-.33332831c-1.2222038 0-2.1824867.40880417-2.8809891 1.2262722-.6983621.81746804-1.0475431 1.95633978-1.0475431 3.41675548 0 1.4444227.3452529 2.5674416 1.0356185 3.3690569.6905059.8016153 1.6548572 1.202423 2.8929137 1.202423.587393 0 1.162721-.1111094 1.7262647-.3333283s1.1468682-.5713999 1.7501139-1.0476834l.6428074 1.4285699c-.507989.4762835-1.1468683.8532419-1.9166378 1.1310155-.7699098.2777736-1.567597.4166604-2.3929213.4166604-1.1587928 0-2.1707024-.2539244-3.0358689-.7619133z"/><path d="m101.276251 7.09192453v6.54774077c0 .8888755.182517 1.511902.547691 1.8690796.365034.3571776.880879.5357663 1.547536.5357663.444437 0 .873023-.0714074 1.285755-.2143626v1.6429326c-.491996.1588079-1.047543.2380716-1.666642.2380716-1.14294 0-2.035743-.3214037-2.678691-.9642111-.6428075-.6429476-.9642112-1.591306-.9642112-2.8453555v-6.80966167h-2.3334385v-1.52382664h2.3334385v-3.07150253l1.9285622-.69050586v3.76200839h3.42868v1.52382664z"/><path d="m107.038229 17.5444886v-11.97639071h1.928703v11.97639071zm-.190373-17.04800338h2.357148v2.19062355h-2.357148z"/><path d="m114.681352 16.9492395c-.85717-.5078487-1.519898-1.2302003-1.988185-2.166634-.468287-.936574-.702431-2.0318157-.702431-3.2858652 0-1.2539093.234144-2.3492912.702431-3.2857249.468287-.93657398 1.131015-1.65878532 1.988185-2.1667743.85717-.50798897 1.849159-.76191332 2.976246-.76191332 1.126947 0 2.119076.25392435 2.976246.76191332.85717.50798898 1.519898 1.23020032 1.988185 2.1667743.468147.9364337.702291 2.0318156.702291 3.2857249 0 1.2540495-.234144 2.3492912-.702291 3.2858652-.468287.9364337-1.131015 1.6587853-1.988185 2.166634-.85717.5079889-1.849299.7619133-2.976246.7619133-1.127087 0-2.119076-.2539244-2.976246-.7619133zm5.71442-2.0118945c.634951-.7857626.952287-1.9326308.952287-3.4406047 0-1.4602754-.325332-2.59129092-.976136-3.39290622-.650804-.80161531-1.555532-1.20242296-2.714325-1.20242296-1.174646 0-2.08737.40080765-2.738174 1.20242296-.650804.8016153-.976276 1.93263082-.976276 3.39290622 0 1.5079739.321544 2.6548421.964351 3.4406047.642808.7857626 1.559601 1.1785737 2.750099 1.1785737s2.103223-.3928111 2.738174-1.1785737z"/><path d="m136.610315 10.0204719v7.5240167h-1.928563v-7.42876c0-1.11109441-.222219-1.92463434-.666656-2.44047953-.444438-.5158452-1.142941-.77383795-2.095367-.77383795-1.111095 0-1.99997.34132482-2.666627 1.02383418-.666656.68250935-1.000125 1.6032306-1.000125 2.7620235v6.8572198h-1.928562v-8.61925838c0-1.23805653-.063411-2.35714741-.190514-3.35713233h1.833446l.190514 2.14292505c.365033-.77790635.912724-1.37708362 1.642792-1.79767212.730208-.42072879 1.563529-.63102304 2.500102-.63102304 2.873133 0 4.30956 1.57938136 4.30956 4.73814412z"/><path d="m139.515153 16.1634769.642948-1.4285699c.650803.5079889 1.309464.8730227 1.97626 1.0952416.666517.2222189 1.412858.3333283 2.237761.3333283.904869 0 1.590885-.1547395 2.059453-.4642186s.702851-.7579852.702851-1.3452379c0-.4762835-.158527-.85717-.475582-1.1429401-.318457-.2857701-.841738-.507989-1.572647-.6666566l-2.022977-.4762835c-1.000406-.2222189-1.774104-.6189581-2.321795-1.1904983-.547691-.5713999-.821396-1.2539093-.821396-2.04766838 0-1.04754313.420588-1.90078504 1.261906-2.55958543.841317-.65866011 1.952832-.98806031 3.333283-.98806031.841738 0 1.635778.13495869 2.380716.40473577.746341.26991736 1.373436.65880039 1.881285 1.16678937l-.642527 1.40472069c-1.127929-.93657399-2.333018-1.40472069-3.619474-1.40472069-.85717 0-1.519338.16259575-1.987905.48806784-.468427.32533179-.702571.78169416-.702571 1.3690871 0 .49199596.146883.88101927.44051 1.16664909.294328.28577005.765701.50798895 1.416645.66665665l2.02438.4999924c1.111095.2540647 1.935998.6468758 2.476113 1.178714.540116.531698.809472 1.2261319.809472 2.083302 0 1.0318306-.420869 1.8571549-1.262607 2.4762533-.840336.6190984-1.983697.9285775-3.42868.9285775-2.015402 0-3.610776-.5158452-4.785422-1.5476759z"/><path d="m171.469076 17.5444886-1.857435-4.3572575h-8.857891l-1.881285 4.3572575h-2.022977l7.452188-16.95274668h1.71434l7.452189 16.95274668zm-10.025101-5.9763409h7.476038l-3.737318-8.71437478z"/><path d="m178.348883 15.0920845v1.7381893c0 .6666566-.110829 1.2777585-.332487 1.8333057-.22306.5555472-.596231 1.0952416-1.119511 1.6190833l-.904869-.6905058c.618678-.7142148.967999-1.3968645 1.047964-2.0476684h-1.143361v-2.4524041z"/><path d="m200.064324 10.2943173c.540116.7063586.809472 1.5834498.809472 2.6309929 0 1.4762685-.492417 2.6151402-1.475848 3.4167555-.984833.8016153-2.373701 1.2024229-4.166603 1.2024229h-7.048155v-16.95274668h6.809662c1.729772 0 3.07515.38495492 4.036134 1.15486475.959582.76976954 1.439373 1.86108306 1.439373 3.27380026 0 .90486851-.232881 1.68656268-.701449 2.34536307-.468567.65866011-1.12372 1.14686824-1.964055 1.46420352.967998.26991737 1.721354.75798521 2.261469 1.46434378zm-9.95215-2.1785586h4.570638c1.269622 0 2.230606-.25406463 2.88155-.76191332.650944-.50798897.976416-1.25404956.976416-2.23818175 0-1.93655891-1.286456-2.90483837-3.857966-2.90483837h-4.570638zm7.892698 7.0596579c.627095-.4999925.939941-1.2658339.939941-2.2976646 0-2.0793738-1.293471-3.11906071-3.880413-3.11906071h-4.952226v6.16671401h4.952226c1.332752 0 2.313377-.2499962 2.940472-.7499887z"/><path d="m206.064515 15.0920845v1.7381893c0 .6666566-.110829 1.2777585-.33389 1.8333057-.221658.5555472-.594828 1.0952416-1.118109 1.6190833l-.904868-.6905058c.618677-.7142148.967999-1.3968645 1.046561-2.0476684h-1.141958v-2.4524041z"/><path d="m218.957137 16.6873186c-1.182642-.6983621-2.090316-1.7024154-2.725828-3.0118794-.635513-1.3096043-.952567-2.853352-.952567-4.63110303 0-1.77789127.317054-3.31364253.952567-4.60725378.635512-1.29361125 1.543186-2.28966807 2.725828-2.98817045 1.182642-.69836209 2.575719-1.04768342 4.17923-1.04768342 1.174225 0 2.250247.17858878 3.226663.53576634.975013.35717755 1.82096.89294389 2.535035 1.60715871l-.737924 1.50011768c-.809471-.69850238-1.60772-1.19849484-2.393342-1.50011768s-1.654016-.45229397-2.606583-.45229397c-1.857435 0-3.29821.60310539-4.322325 1.80945645-1.022712 1.20635107-1.534769 2.92069111-1.534769 5.14302012 0 2.23818173.507848 3.96430613 1.523546 5.17865373 1.015697 1.2143476 2.460681 1.8215213 4.333548 1.8215213.952567 0 1.820961-.1508114 2.606583-.4524342.785622-.3016229 1.583871-.8016153 2.393342-1.4999774l.737924 1.4999774c-.714075.7143551-1.560022 1.2499811-2.535035 1.6071587-.976416.3571776-2.052438.5357663-3.226663.5357663-1.603511 0-2.996588-.349181-4.17923-1.0476834z"/></g><g transform="translate(.267895 224.553185)"><path d="m.21765.193821h263.332986v106.422426h-263.332986z" fill="#c9177e"/><path d="m263.550636 106.616248h-263.33298624v-106.42242661h263.33298624zm-260.79463916-103.88400537v101.34558437h258.25629216v-101.34558437z" fill="#000"/></g><g transform="translate(.968438 362.150954)"><path d="m.058374.14766h70.625927v81.076506h-70.625927z" fill="#00a88a"/><path d="m70.6843004 81.224166h-70.62592672v-81.07650576h70.62592672zm-68.08746821-78.53804774v75.99958964h65.54828551v-75.99958964z" fill="#000"/></g><g transform="translate(97.321977 362.150954)"><path d="m.058374.14766h70.625927v81.076506h-70.625927z" fill="#00a88a"/><path d="m70.6843004 81.224166h-70.62592672v-81.07650576h70.62592672zm-68.08746821-78.53804774v75.99958964h65.54828551v-75.99958964z" fill="#000"/></g><g transform="translate(193.675515 362.150954)"><path d="m.058374.14766h70.625927v81.076506h-70.625927z" fill="#00a88a"/><path d="m70.6843004 81.224166h-70.62592672v-81.07650576h70.62592672zm-68.08746821-78.53804774v75.99958964h65.54828551v-75.99958964z" fill="#000"/></g><g transform="translate(329.309669 362.924954)"><path d="m.058374.14766h70.625927v81.076506h-70.625927z" fill="#00a88a"/><path d="m70.6843004 81.224166h-70.62592672v-81.07650576h70.62592672zm-68.08746821-78.53804774v75.99958964h65.54828551v-75.99958964z" fill="#000"/></g><g transform="translate(425.663669 362.924954)"><path d="m.058374.14766h70.625927v81.076506h-70.625927z" fill="#00a88a"/><path d="m70.6843004 81.224166h-70.62592672v-81.07650576h70.62592672zm-68.08746821-78.53804774v75.99958964h65.54828551v-75.99958964z" fill="#000"/></g><g transform="translate(523.997669 362.924954)"><path d="m.058374.14766h70.625927v81.076506h-70.625927z" fill="#00a88a"/><path d="m70.6843004 81.224166h-70.62592672v-81.07650576h70.62592672zm-68.08746821-78.53804774v75.99958964h65.54828551v-75.99958964z" fill="#000"/></g><g transform="translate(660.171823 361.893877)"><path d="m.058374.14766h70.625927v81.076506h-70.625927z" fill="#00a88a"/><path d="m70.6843004 81.224166h-70.62592672v-81.07650576h70.62592672zm-68.08746821-78.53804774v75.99958964h65.54828551v-75.99958964z" fill="#000"/></g><g transform="translate(756.527208 361.893877)"><path d="m.058374.14766h70.625927v81.076506h-70.625927z" fill="#00a88a"/><path d="m70.6843004 81.224166h-70.62592672v-81.07650576h70.62592672zm-68.08746821-78.53804774v75.99958964h65.54828551v-75.99958964z" fill="#000"/></g><g transform="translate(852.877977 361.893877)"><path d="m.058374.14766h70.625927v81.076506h-70.625927z" fill="#00a88a"/><path d="m70.6843004 81.224166h-70.62592672v-81.07650576h70.62592672zm-68.08746821-78.53804774v75.99958964h65.54828551v-75.99958964z" fill="#000"/></g><g fill="#f2f2f2" fill-rule="nonzero" transform="translate(26.69736 242.51167)"><path d="m.00427353 31.0947909 1.49915514-3.0461739c1.70855821 1.4504369 3.44902547 2.4820676 5.22225648 3.0946072 1.7729461.6125397 3.83592255.9188095 6.18921435.9188095 2.772098 0 4.9077245-.5401745 6.4068797-1.6199537 1.4988702-1.080064 2.2484478-2.6031509 2.2484478-4.5695456 0-1.1604065-.3626805-2.1034326-1.0880414-2.8285086-.7253608-.7253609-1.6763642-1.2977293-2.8527252-1.7165355-1.1766459-.419091-2.7481662-.8544215-4.7145609-1.3057065-2.6433221-.5803457-4.8194048-1.2088399-6.52767811-1.8857674-1.70855822-.6769275-3.0948921-1.6521476-4.15843184-2.9253753-1.06382464-1.2732277-1.59573696-2.9416147-1.59573696-5.0045912 0-1.96639471.51567289-3.69916961 1.54730359-5.19803984 1.0316307-1.49915513 2.49004483-2.66753887 4.37609709-3.505721 1.88576735-.83818214 4.08578183-1.25727321 6.60004333-1.25727321 2.3854857 0 4.6097168.37094261 6.6729782 1.11225801 2.0629765.74131541 3.8037287 1.82137947 5.2222565 3.23962239l-1.5473036 3.04645873c-1.6119764-1.38633388-3.2478846-2.40172515-4.9080094-3.04645873-1.6601249-.64473357-3.4735271-.96695791-5.4399217-.96695791-2.6755162 0-4.7706866.57208353-6.28579626 1.71653548-1.51510965 1.14445195-2.27266448 2.71597223-2.27266448 4.71456088 0 1.7407521.6606881 3.0461738 1.98234919 3.9165499 1.32166109.870376 3.35272854 1.6279309 6.09263255 2.2726645 2.9658314.7091214 5.2949065 1.3618322 6.9872253 1.9584174 1.6923188.5963002 3.1025845 1.4988702 4.230797 2.70771 1.1284974 1.2088399 1.6926037 2.8125541 1.6926037 4.8111427 0 1.9342007-.5159578 3.6344968-1.5473036 5.101458-1.0316307 1.4666763-2.5065691 2.602866-4.4245304 3.4088542s-4.1664091 1.2088399-6.7453434 1.2088399c-5.38322623 0-9.67071874-1.4507218-12.86219267-4.3518804z"/><path d="m51.9362381 22.7779272h-17.8425672c.0324789 3.0946072.7495776 5.4316596 2.151866 7.011442 1.4022884 1.5794975 3.4413331 2.3692463 6.1168493 2.3692463 2.8367707 0 5.4478989-.9510034 7.8330998-2.8530102l1.3057065 2.8530102c-1.0638246.9994368-2.4256569 1.7891855-4.0857817 2.3692463-1.6604098.5803457-3.3607058.8703761-5.101458.8703761-3.8037287 0-6.7855146-1.1202353-8.9453578-3.3604209-2.1598433-2.2404705-3.2399073-5.310861-3.2399073-9.2114564 0-2.4820676.4837638-4.6823669 1.4507217-6.6003282s2.3210979-3.4088543 4.06185-4.4726789c1.7404673-1.0638247 3.7231014-1.595737 5.9473325-1.595737 3.2236679 0 5.7541688 1.0558474 7.5915028 3.1672572 1.8376189 2.1114099 2.7561434 5.0205458 2.7561434 8.7276926zm-15.2553707-7.736518c-1.2735126 1.2247944-2.0874781 2.949592-2.4418964 5.1738231h14.1676144c-.1934486-2.288619-.8623989-4.0293711-2.0068508-5.2222565-1.1441671-1.1926004-2.7319268-1.7891855-4.7627093-1.7891855-2.0307826 0-3.6829302.6125397-4.9561579 1.8376189z"/><path d="m61.9214888 33.8509343c-1.7569916-1.0313458-3.1108466-2.4900448-4.06185-4.3760971-.9510034-1.8857673-1.4265051-4.0857818-1.4265051-6.6000433 0-2.5145464.4837639-4.7308002 1.4507218-6.6487615s2.3453145-3.4088543 4.1342152-4.4726789c1.7891855-1.0638247 3.8763787-1.595737 6.2618644-1.595737 1.6441703 0 3.2316451.2820531 4.7627093.8461594 1.5313491.5641063 2.7965995 1.3458778 3.7960363 2.3453145l-1.3057066 2.9011587c-1.2247943-.9672429-2.4097024-1.6763643-3.5538694-2.1276493-1.144452-.451285-2.3131206-.6769276-3.505721-.6769276-2.4820676 0-4.4325078.8302049-5.8507507 2.4903298-1.4185278 1.6601248-2.1276493 3.9729605-2.1276493 6.9387919 0 2.9333526.7011442 5.2139943 2.1034326 6.8419253 1.4022884 1.6279309 3.3604209 2.4418963 5.8749674 2.4418963 1.1926004 0 2.361269-.2256425 3.505721-.6769275 1.144167-.451285 2.3290751-1.1604065 3.5538694-2.1276493l1.3057066 2.9011586c-1.0316307.9672429-2.3290751 1.7327749-3.8926181 2.2968812-1.5635431.5641063-3.1832118.8461594-4.8595761.8461594-2.3532918 0-4.408291-.5156729-6.1649977-1.5473036z"/><path d="m87.0894602 13.8325694v13.2972382c0 1.80514.3709426 3.0703905 1.112258 3.7957514s1.7891855 1.0880413 3.1430406 1.0880413c.90257 0 1.7729461-.1450152 2.6111282-.4353305v3.3364892c-.9994368.3225092-2.1276493.4834789-3.3849225.4834789-2.3208129 0-4.1342151-.6527108-5.4396368-1.9581325-1.3057066-1.3057066-1.9584174-3.2316451-1.9584174-5.7783855v-13.8291505h-4.7387775v-3.0946072h4.7387775v-6.23764778l3.9165499-1.4022884v7.63993618h6.9630086v3.0946072z"/><path d="m98.7912464 35.0597742v-24.321812h3.9165496v24.321812zm-.3868972-34.62130978h4.7869258v4.44874713h-4.7869258z"/><path d="m114.312716 33.8509343c-1.740752-1.0313458-3.08663-2.498307-4.037634-4.4000289-.950718-1.9020067-1.42622-4.1262378-1.42622-6.6729782 0-2.5464555.475502-4.7709715 1.42622-6.6726933.951004-1.9020068 2.296882-3.3686831 4.037634-4.4003138s3.75558-1.5473036 6.044199-1.5473036c2.288904 0 4.303447.5156729 6.044199 1.5473036s3.08663 2.498307 4.037633 4.4003138c.951004 1.9017218 1.426505 4.1262378 1.426505 6.6726933 0 2.5467404-.475501 4.7709715-1.426505 6.6729782-.951003 1.9017219-2.296881 3.3686831-4.037633 4.4000289-1.740752 1.0316307-3.755295 1.5473036-6.044199 1.5473036-2.288619 0-4.303447-.5156729-6.044199-1.5473036zm11.604919-4.0857818c1.289467-1.5957369 1.934201-3.924812 1.934201-6.9872253 0-2.9655465-.660973-5.2624277-1.982634-6.8903586s-3.158995-2.4418964-5.512287-2.4418964c-2.385486 0-4.239059.8139655-5.56072 2.4418964s-1.98235 3.9248121-1.98235 6.8903586c0 3.0624133.652711 5.3914884 1.958133 6.9872253 1.305707 1.595737 3.167257 2.393463 5.584937 2.393463s4.271253-.797726 5.56072-2.393463z"/><path d="m158.846626 19.7799018v15.2798724h-3.916835v-15.0864238c0-2.2564251-.451285-3.9085727-1.353855-4.9561579s-2.320813-1.5715203-4.255013-1.5715203c-2.256425 0-4.06185.693167-5.415705 2.079216-1.353856 1.3860489-2.030783 3.2558618-2.030783 5.6091536v13.9257324h-3.91655v-17.5041035c0-2.5142615-.129061-4.786926-.386897-6.8177085h3.723101l.386897 4.3518804c.741316-1.5797825 1.853574-2.7965996 3.33649-3.6507362 1.482915-.8544216 3.175234-1.2814899 5.076956-1.2814899 5.834796 0 8.752194 3.2074284 8.752194 9.6222853z"/><path d="m205.653771 35.0597742-3.772105-8.848776h-17.988722l-3.817689 8.848776h-4.111138l15.134003-34.42786122h3.481504l15.134002 34.42786122zm-20.359108-12.1368318h15.185285l-7.592643-17.69726709z"/></g><g fill="#f2f2f2" fill-rule="nonzero" transform="translate(22.788376 290.137172)"><path d="m.04658391 21.7701602 1.62834138-20.70276002h4.56506199l-1.36656882 17.01005832h9.24650314l-.2907867 3.6927017z"/><path d="m16.3006611 21.7701602 1.1629859-14.74195382h4.3906544l-1.1629859 14.74195382zm1.5119622-21.66232409h4.7104554l-.319801 4.12904304h-4.7104553z"/><path d="m23.395439 20.2000084 1.4247584-3.0530998c.8141707.5622308 1.6863698.9935752 2.6169196 1.2940334.9303887.3004581 1.8609386.4506872 2.7913273.4506872.8141707 0 1.415087-.1163792 1.8027489-.3489764.387662-.2325971.5815736-.5427267.5815736-.9303886 0-.407166-.2277615-.7269669-.6832845-.9595641-.4555229-.2325972-1.1969969-.5040411-2.224422-.8141707-1.0661106-.2907868-1.9384709-.5815735-2.6169196-.8723603-.6784487-.2907867-1.2648579-.72197-1.7590665-1.2938721-.4943697-.5719021-.741474-1.3133761-.741474-2.224422 0-.9498927.2664471-1.78340617.7995024-2.50054048.5330554-.7172955 1.2891976-1.27936503 2.2681045-1.68653097.9789069-.40700475 2.0983714-.61058772 3.3583937-.61058772 1.1047962 0 2.1855752.16473618 3.2420144.49436973 1.0564393.32947236 1.9433067.7753239 2.6606022 1.33755462l-1.3957442 2.93672062c-.7172955-.5233839-1.4732766-.9208785-2.2679433-1.1921612-.7948279-.27144401-1.5701518-.40716599-2.3262941-.40716599-.7946667 0-1.395583.11637918-1.802749.34897639-.4070047.2325971-.6105877.5523981-.6105877.959564 0 .4265088.2422686.7656525.7269669 1.0177537.4845371.25194 1.2211754.5135513 2.2097537.7849953 1.0662719.3101296 1.9336353.6105877 2.6024126.9013745.6687773.2907867 1.2503508.7221312 1.7447205 1.2938721.4942086.5719021.7413128 1.3133761.7413128 2.224422 0 1.4539338-.5765766 2.5927412-1.7300522 3.4165832-1.1533145.8238421-2.7089592 1.2356826-4.6667729 1.2356826-2.5200445 0-4.768645-.6009163-6.7458015-1.802749z"/><path d="m44.7087867 16.0421124c-.0581896.8141707.1065466 1.415087.4942086 1.8027489.3878231.387662.9208784.5815736 1.5993272.5815736.4458515 0 .94006-.0776936 1.482948-.2327584l-.2907868 3.4020761c-.6591059.271444-1.5119622.4070048-2.5587301.4070048-1.6671881 0-2.9417175-.4458516-3.8237491-1.3375546-.8818705-.8915419-1.3228864-2.1515642-1.3228864-3.7799055 0-.3296336.0096714-.5815736.0290142-.7559811l.4651944-5.8154129h-2.7913273l.2616114-3.28569692h2.7914884l.2616114-3.46010454 4.5070336-1.42475841-.3779906 4.88486295h3.7508913l-.2617725 3.28569692h-3.7508913z"/><path d="m49.3900667 20.2000084 1.4247584-3.0530998c.8141707.5622308 1.686531.9935752 2.6169197 1.2940334.9305498.3004581 1.8609385.4506872 2.7914884.4506872.8141707 0 1.415087-.1163792 1.802749-.3489764.3876619-.2325971.5815735-.5427267.5815735-.9303886 0-.407166-.2277615-.7269669-.6832844-.9595641-.4556842-.2325972-1.196997-.5040411-2.224422-.8141707-1.0661107-.2907868-1.938471-.5815735-2.6169197-.8723603-.6784487-.2907867-1.2648579-.72197-1.7592276-1.2938721-.4942086-.5719021-.741474-1.3133761-.741474-2.224422 0-.9498927.2666082-1.78340617.7996635-2.50054048.5330554-.7172955 1.2890365-1.27936503 2.2679433-1.68653097.9789069-.40700475 2.0983715-.61058772 3.3583937-.61058772 1.1049574 0 2.1857364.16473618 3.2421757.49436973 1.0564392.32947236 1.9433066.7753239 2.6604409 1.33755462l-1.395583 2.93672062c-.7172955-.5233839-1.4732766-.9208785-2.2681045-1.1921612-.7946667-.27144401-1.5701518-.40716599-2.3261329-.40716599-.7948279 0-1.3957442.11637918-1.802749.34897639-.4070047.2325971-.6105877.5523981-.6105877.959564 0 .4265088.2422686.7656525.7269669 1.0177537.4845372.25194 1.2211755.5135513 2.2097537.7849953 1.0661107.3101296 1.9336353.6105877 2.6024126.9013745.6687773.2907867 1.2503508.7221312 1.7445594 1.2938721.4943697.5719021.741474 1.3133761.741474 2.224422 0 1.4539338-.5767379 2.5927412-1.7300523 3.4165832-1.1533145.8238421-2.7089592 1.2356826-4.6667729 1.2356826-2.5200445 0-4.768645-.6009163-6.7459627-1.802749z"/><path d="m73.2145935 2.29179942h7.7695192c2.0061707 0 3.5700361.48340881 4.6917573 1.44990405 1.12156.96665643 1.68234 2.29808583 1.68234 3.9942882 0 1.69604118-.5652933 3.03198393-1.6960412 4.00782813-1.1307478.9756831-2.6900999 1.4636052-4.6780561 1.4636052h-5.526238v8.5627352h-2.2432812zm7.5778643 9.05533178c1.4408774 0 2.5260084-.3101295 3.2555544-.9302274.7295459-.62009798 1.0943189-1.51373534 1.0943189-2.68091213 0-1.16733798-.364773-2.05646202-1.0943189-2.66737212-.729546-.61107129-1.814677-.91652634-3.2555544-.91652634h-5.3345831v7.19503799z"/><path d="m102.432215 8.0095311v13.7606291h-2.188638v-2.4894183c-.4012015.8572084-1.0075983 1.5182486-1.8193511 1.9832817-.8115916.4651944-1.7553591.6976303-2.8314635.6976303-1.2218202 0-2.2934114-.2917539-3.214451-.8754229-.9210397-.5835078-1.63221-1.4088006-2.1338332-2.4758784-.5016233-1.0669166-.7522738-2.3116257-.7522738-3.7341275 0-1.4226629.255325-2.6765599.7659749-3.761691s1.2264947-1.92863838 2.1475344-2.53052184c.9210396-.60188346 1.9834429-.90282519 3.1870487-.90282519 1.0761044 0 2.0153585.23711049 2.8179235.71133147.8024039.47422098 1.4134752 1.13993568 1.8328911 1.99698296v-2.3799704zm-3.2829565 10.7376719c.729546-.9210397 1.0943185-2.2295801 1.0943185-3.9257825s-.3647725-3.0002295-1.0943185-3.9120813c-.7295459-.91185183-1.7690602-1.36785834-3.1187041-1.36785834s-2.4028593.46970764-3.1598076 1.40896184c-.756787.9392541-1.1352611 2.2477945-1.1352611 3.9257824 0 1.6778267.3737996 2.9728272 1.12156 3.884679s1.8056504 1.3678583 3.1735087 1.3678583c1.3496439 0 2.3891582-.4605198 3.1187041-1.3815594z"/><path d="m118.983366 8.0095311v13.6511811c0 2.0427609-.524351 3.5884118-1.573054 4.6371139-1.048702 1.0487022-2.594514 1.5730532-4.637113 1.5730532-2.097405 0-3.903055-.4742209-5.41679-1.4226629l.382987-1.8054892c.875423.4924355 1.700716.8480206 2.475878 1.0669166.775163.218896 1.627697.328344 2.557925.328344 1.331429 0 2.334514-.3510718 3.009256-1.0533766.674902-.7021436 1.012273-1.7461713 1.012273-3.1324053v-3.2553932c-.419417.8754229-1.035001 1.5546775-1.846593 2.0380863-.811591.4832477-1.773735.7248715-2.886268.7248715-1.203606 0-2.275197-.2825661-3.214451-.8480206-.939254-.5652933-1.664287-1.3678584-2.174937-2.4073727-.51065-1.0396755-.765974-2.2342546-.765974-3.5838984 0-1.3496439.255324-2.544223.765974-3.5837373.51065-1.0396755 1.235683-1.84207932 2.174937-2.40753384.939254-.56529333 2.010845-.84802059 3.214451-.84802059 1.094319 0 2.047274.23711049 2.858866.71133147s1.427176 1.13993568 1.846593 1.99698296v-2.3799704zm-3.351302 10.1631907c.756787-.8846107 1.135262-2.1019176 1.135262-3.652243 0-1.5501643-.378475-2.7676323-1.135262-3.6520819-.756948-.88461068-1.800976-1.32691604-3.132405-1.32691604-1.349644 0-2.412047.44230536-3.18721 1.32691604-.775001.8844496-1.162663 2.1019176-1.162663 3.6520819 0 1.5503254.387662 2.7676323 1.162663 3.652243.775163.8846107 1.837566 1.3267549 3.18721 1.3267549 1.331429 0 2.375457-.4421442 3.132405-1.3267549z"/><path d="m134.76838 14.8214205h-10.094846c.018375 1.7508458.424091 3.0730874 1.217468 3.9668859.793377.8936374 1.947014 1.340456 3.460749 1.340456 1.604969 0 3.082275-.5380522 4.431758-1.6141566l.738734 1.6141566c-.601884.5654546-1.372372 1.0122732-2.311626 1.3404561-.939415.328344-1.901397.4924354-2.886268.4924354-2.152048 0-3.839062-.633799-5.061044-1.901236-1.221981-1.2675982-1.833052-3.0047428-1.833052-5.2115951 0-1.4042873.2737-2.6491576.820779-3.7342887s1.313215-1.92863838 2.298086-2.53052184c.98471-.60188346 2.106431-.90282519 3.364841-.90282519 1.823865 0 3.255555.59737014 4.295069 1.79194923 1.039675 1.1945791 1.559352 2.8404902 1.559352 4.9378945zm-8.63108-4.3771144c-.720519.6929558-1.181039 1.6688-1.381559 2.9272104h8.015656c-.109448-1.2948393-.487922-2.2797102-1.135422-2.9546127-.647339-.67474139-1.545651-1.01227325-2.694614-1.01227325-1.148962 0-2.083703.3465585-2.804061 1.03967555z"/><path d="m137.285362 20.1834059.738572-1.6413978c.747761.583669 1.504709 1.0030854 2.270684 1.2584103.765975.255325 1.623506.3829875 2.571303.3829875 1.039675 0 1.827894-.1777926 2.366269-.5333778.538375-.3555851.807562-.8709095.807562-1.5456509 0-.54724-.182145-.9848709-.546434-1.3132149-.365901-.328344-.96714-.583669-1.80694-.7659749l-2.32436-.54724c-1.149446-.255325-2.03857-.7111703-2.667856-1.3678584-.629124-.6565268-.943767-1.4407162-.943767-2.3527292 0-1.2036057.483248-2.18396332 1.449904-2.94091156.966656-.75678705 2.243926-1.13526117 3.830036-1.13526117.96714 0 1.877863.15506478 2.735394.46503315.857531.31012956 1.57805.75694824 2.161558 1.34061723l-.73825 1.61399545c-1.295968-1.0761044-2.682202-1.61399545-4.158702-1.61399545-.984871 0-1.745688.18681921-2.284063.56078005-.538213.3737996-.807239.8981506-.807239 1.5730532 0 .5652933.168605 1.0122732.505975 1.340456.336726.328344.879936.583669 1.627858.7659749l2.325972.5744812c1.276625.291915 2.224422.743247 2.845003 1.3543183.61897.6109101.930067 1.4088006.930067 2.3936715 0 1.1855525-.48357 2.1338333-1.45071 2.8451647-.965529.7113315-2.279227 1.0669166-3.939484 1.0669166-2.315817 0-4.148708-.5926956-5.498352-1.778248z"/><path d="m166.776845 19.8826253h4.294102v1.8875349h-10.860982v-1.8875349h4.295713v-14.8003046l-3.994288 2.54422296v-2.16123552l4.979159-3.17350872h1.286296z"/><path d="m177.692632 18.9523978v1.9971441c0 .7659749-.128952 1.4681185-.383632 2.1064309s-.683446 1.2584104-1.286296 1.8602938l-1.039676-.7933771c.71246-.8206183 1.113823-1.6049689 1.20409-2.3527293h-1.313699v-2.8177624z"/><path d="m194.243621 19.8826253v1.8875349h-12.529298v-1.6960412l6.811889-7.5506231c.910724-1.0214611 1.576438-1.9425007 1.997144-2.76311902.419094-.82077948.628641-1.64139777.628641-2.46217725 0-1.07610444-.311096-1.90139724-.930066-2.4758784-.620582-.57448116-1.505515-.86172174-2.654799-.86172174-1.860133 0-3.700923.74776041-5.525594 2.24328123l-.847859-1.72344348c.765652-.72954594 1.732792-1.31321493 2.899808-1.75084578 1.167016-.43779204 2.343703-.65668806 3.530061-.65668806 1.785985 0 3.199622.46051983 4.239297 1.38155949 1.039676.92103966 1.560319 2.16574884 1.560319 3.73428873 0 1.11253338-.251456 2.18396331-.752757 3.21445098-.501301 1.0304877-1.336265 2.1841245-2.503281 3.4607493l-5.552995 6.0186734z"/><path d="m200.425258 18.9523978v1.9971441c0 .7659749-.12734 1.4681185-.38202 2.1064309-.256292.6383124-.683446 1.2584104-1.286297 1.8602938l-1.039675-.7933771c.710848-.8206183 1.112211-1.6049689 1.204089-2.3527293h-1.313698v-2.8177624z"/><path d="m215.691563 13.4535622c.601239.802565.902664 1.814677.902664 3.0366584 0 1.6962023-.575448 3.0321451-1.723121 4.0078281-1.149285.9758443-2.709604 1.4636052-4.679346 1.4636052-1.257282 0-2.466207-.2097082-3.623551-.6291245-1.158956-.4195776-2.138991-1.0122732-2.941718-1.7782481l.875262-1.7236047c1.805328 1.495682 3.684803 2.2434424 5.635202 2.2434424 1.386234 0 2.440417-.3101295 3.160936-.9302275.72052-.6200979 1.079973-1.5319497 1.079973-2.7357166 0-2.3891582-1.495843-3.5837373-4.485917-3.5837373h-2.243765v-1.8876961h1.805328c1.441038 0 2.54519-.3191562 3.310842-.9574686.765653-.63847359 1.149285-1.55032542 1.149285-2.73571668 0-1.05788997-.315932-1.86948162-.944573-2.43493614-.628641-.56529333-1.51841-.84802059-2.667695-.84802059-1.860132 0-3.702534.74776041-5.525593 2.24328123l-.847859-1.72344348c.783383-.74776041 1.745687-1.33594272 2.885301-1.76454693 1.141225-.42860421 2.330807-.64298691 3.570358-.64298691 1.752135 0 3.151265.44681868 4.200612 1.34061723 1.047735.89363736 1.571602 2.09740428 1.571602 3.61113957 0 1.11253338-.272411 2.08821645-.820457 2.9272104-.546434.838994-1.304027 1.4408774-2.269555 1.8054892 1.147673.328344 2.022934.8937985 2.625785 1.6962024z"/></g><g transform="translate(329.992265 224.553185)"><path d="m.21765.193821h263.332986v106.422426h-263.332986z" fill="#c9177e"/><path d="m263.550636 106.616248h-263.33298624v-106.42242661h263.33298624zm-260.79463916-103.88400537v101.34558437h258.25629216v-101.34558437z" fill="#000"/></g><g fill="#f2f2f2" fill-rule="nonzero" transform="translate(359.320353 242.51167)"><path d="m.14615481 31.0947909 1.49887023-3.0461739c1.70855821 1.4504369 3.44931037 2.4820676 5.22225648 3.0946072 1.7729461.6125397 3.83620748.9188095 6.18921438.9188095 2.7723829 0 4.9080094-.5401745 6.4068796-1.6199537 1.4991552-1.080064 2.2484478-2.6031509 2.2484478-4.5695456 0-1.1604065-.3623955-2.1034326-1.0877564-2.8285086-.7253609-.7253609-1.6763643-1.2977293-2.8530102-1.7165355-1.1766458-.419091-2.7481661-.8544215-4.7145608-1.3057065-2.6433222-.5803457-4.81911993-1.2088399-6.52767814-1.8857674-1.70855822-.6769275-3.0946072-1.6521476-4.15843184-2.9253753s-1.59573696-2.9416147-1.59573696-5.0045912c0-1.96639471.5159578-3.69916961 1.54730359-5.19803984 1.0316307-1.49915513 2.49032973-2.66753887 4.37609709-3.505721 1.88576735-.83818214 4.08606666-1.25727321 6.60032816-1.25727321 2.3854858 0 4.6097169.37094261 6.6726934 1.11225801 2.0632614.74131541 3.8040135 1.82137947 5.2222565 3.23962239l-1.5473036 3.04645873c-1.6116915-1.38633388-3.2475997-2.40172515-4.9077245-3.04645873-1.6601249-.64473357-3.4735271-.96695791-5.4399218-.96695791-2.6755161 0-4.77097143.57208353-6.28608109 1.71653548-1.51510965 1.14445195-2.27266448 2.71597223-2.27266448 4.71456088 0 1.7407521.660973 3.0461738 1.98263409 3.9165499 1.32166109.870376 3.35244368 1.6279309 6.09263258 2.2726645 2.9655465.7091214 5.2946216 1.3618322 6.9869404 1.9584174 1.6926037.5963002 3.1028694 1.4988702 4.2310819 2.70771 1.1282125 1.2088399 1.6923188 2.8125541 1.6923188 4.8111427 0 1.9342007-.5156729 3.6344968-1.5473036 5.101458-1.0316307 1.4666763-2.5062843 2.602866-4.4242456 3.4088542-1.9182462.8059882-4.166694 1.2088399-6.7453434 1.2088399-5.38351106 0-9.67071867-1.4507218-12.86219259-4.3518804z"/><path d="m52.0781194 22.7779272h-17.8425672c.032194 3.0946072.7495776 5.4316596 2.151866 7.011442 1.4022884 1.5794975 3.4410482 2.3692463 6.1165643 2.3692463 2.8367708 0 5.447899-.9510034 7.8333847-2.8530102l1.3057066 2.8530102c-1.0638246.9994368-2.4259418 1.7891855-4.0860667 2.3692463-1.6601248.5803457-3.3604209.8703761-5.101173.8703761-3.8040136 0-6.7857995-1.1202353-8.9456428-3.3604209-2.1598432-2.2404705-3.2396224-5.310861-3.2396224-9.2114564 0-2.4820676.483479-4.6823669 1.4507218-6.6003282.9669579-1.9179613 2.320813-3.4088543 4.0615651-4.4726789 1.7407522-1.0638247 3.7233863-1.595737 5.9476174-1.595737 3.2233829 0 5.7541688 1.0558474 7.5915028 3.1672572 1.837334 2.1114099 2.7561434 5.0205458 2.7561434 8.7276926zm-15.2556556-7.736518c-1.2732277 1.2247944-2.0871932 2.949592-2.4418964 5.1738231h14.1676143c-.1931636-2.288619-.8621139-4.0293711-2.0065658-5.2222565-1.144452-1.1926004-2.7319268-1.7891855-4.7627094-1.7891855-2.0310674 0-3.683215.6125397-4.9564427 1.8376189z"/><path d="m62.0630852 33.8509343c-1.7567067-1.0313458-3.1105617-2.4900448-4.0615651-4.3760971-.9510034-1.8857673-1.4265051-4.0857818-1.4265051-6.6000433 0-2.5145464.483479-4.7308002 1.4507218-6.6487615.9669579-1.9179613 2.3450296-3.4088543 4.1342151-4.4726789 1.7889007-1.0638247 3.8763787-1.595737 6.2618645-1.595737 1.6438854 0 3.2316451.2820531 4.7627093.8461594 1.531349.5641063 2.7965995 1.3458778 3.7957514 2.3453145l-1.3054217 2.9011587c-1.2250793-.9672429-2.4097024-1.6763643-3.5541544-2.1276493-1.144167-.451285-2.3128357-.6769276-3.505721-.6769276-2.4820675 0-4.4322228.8302049-5.8507506 2.4903298-1.4182429 1.6601248-2.1273644 3.9729605-2.1273644 6.9387919 0 2.9333526.7011442 5.2139943 2.1031477 6.8419253 1.4022884 1.6279309 3.3607058 2.4418963 5.8749673 2.4418963 1.1928853 0 2.361554-.2256425 3.505721-.6769275 1.144452-.451285 2.3290751-1.1604065 3.5541544-2.1276493l1.3054217 2.9011586c-1.0316307.9672429-2.3290751 1.7327749-3.8923333 2.2968812-1.563543.5641063-3.1834966.8461594-4.859576.8461594-2.3532918 0-4.408291-.5156729-6.1652826-1.5473036z"/><path d="m87.2313415 13.8325694v13.2972382c0 1.80514.3706577 3.0703905 1.112258 3.7957514.7413154.7253609 1.7889006 1.0880413 3.1427556 1.0880413.9025701 0 1.7729461-.1450152 2.6111283-.4353305v3.3364892c-.9991519.3225092-2.1273644.4834789-3.3846376.4834789-2.3210979 0-4.1342152-.6527108-5.4399217-1.9581325-1.3054217-1.3057066-1.9581325-3.2316451-1.9581325-5.7783855v-13.8291505h-4.7387776v-3.0946072h4.7387776v-6.23764778l3.9165499-1.4022884v7.63993618h6.9630086v3.0946072z"/><path d="m98.9328427 35.0597742v-24.321812h3.9168353v24.321812zm-.3866122-34.62130978h4.7869255v4.44874713h-4.7869255z"/><path d="m114.454597 33.8509343c-1.740752-1.0313458-3.08663-2.498307-4.037633-4.4000289-.951004-1.9020067-1.426505-4.1262378-1.426505-6.6729782 0-2.5464555.475501-4.7709715 1.426505-6.6726933.951003-1.9020068 2.296881-3.3686831 4.037633-4.4003138s3.755295-1.5473036 6.044199-1.5473036c2.288619 0 4.303447.5156729 6.044199 1.5473036 1.740753 1.0316307 3.08663 2.498307 4.037634 4.4003138.950718 1.9017218 1.42622 4.1262378 1.42622 6.6726933 0 2.5467404-.475502 4.7709715-1.42622 6.6729782-.951004 1.9017219-2.296881 3.3686831-4.037634 4.4000289-1.740752 1.0316307-3.75558 1.5473036-6.044199 1.5473036-2.288904 0-4.303447-.5156729-6.044199-1.5473036zm11.604919-4.0857818c1.289468-1.5957369 1.933916-3.924812 1.933916-6.9872253 0-2.9655465-.660688-5.2624277-1.982349-6.8903586s-3.158995-2.4418964-5.512287-2.4418964c-2.385486 0-4.239059.8139655-5.56072 2.4418964s-1.982634 3.9248121-1.982634 6.8903586c0 3.0624133.652996 5.3914884 1.958417 6.9872253 1.305707 1.595737 3.167257 2.393463 5.584937 2.393463s4.271253-.797726 5.56072-2.393463z"/><path d="m158.988222 19.7799018v15.2798724h-3.916549v-15.0864238c0-2.2564251-.451285-3.9085727-1.353856-4.9561579-.90257-1.0475852-2.321097-1.5715203-4.255298-1.5715203-2.256425 0-4.061565.693167-5.41542 2.079216-1.353855 1.3860489-2.031068 3.2558618-2.031068 5.6091536v13.9257324h-3.91655v-17.5041035c0-2.5142615-.128775-4.786926-.386897-6.8177085h3.723387l.386897 4.3518804c.741315-1.5797825 1.853573-2.7965996 3.336204-3.6507362 1.482916-.8544216 3.175234-1.2814899 5.077241-1.2814899 5.834796 0 8.751909 3.2074284 8.751909 9.6222853z"/><path d="m203.619569 20.3360308c1.096874 1.4344824 1.643886 3.2156906 1.643886 5.343055 0 2.9980254-1.000007 5.3108611-3.00002 6.938792-1.997164 1.6279309-4.817695 2.4418964-8.461594 2.4418964h-14.310635v-34.42786122h13.82915c3.512844 0 6.245056.78177151 8.196635 2.34531453 1.948731 1.56325812 2.923097 3.77951197 2.923097 6.64847666 0 1.83761893-.475787 3.42509373-1.424511 4.76299423-.951573 1.3376156-2.282066 2.3290751-3.991479 2.9735238 1.968673.5481517 3.498598 1.5393263 4.595471 2.9738086zm-20.213807-4.4242455h9.284961c2.578364 0 4.529944-.5159578 5.85189-1.5473036 1.321946-1.0316307 1.982919-2.5467404 1.982919-4.54532897 0-3.93278933-2.612553-5.899184-7.834809-5.899184h-9.284961zm16.031444 14.3368462c1.273512-1.0153913 1.908844-2.5706722 1.908844-4.6661275 0-4.2228197-2.626798-6.3342296-7.880393-6.3342296h-10.059895v12.523444h10.059895c2.70657 0 4.698036-.5076956 5.971549-1.5230869z"/></g><g fill="#f2f2f2" fill-rule="nonzero" transform="translate(356.809897 292.199308)"><path d="m.10689318 19.8854177 1.48742717-18.91226722h4.17039899l-1.24844346 15.53895012h8.44675212l-.2655896 3.3733171z"/><path d="m14.955185 19.8854177 1.0625151-13.46697537h4.01092l-1.0625151 13.46697537zm1.3811601-19.78885388h4.3031155l-.2921955 3.77193628h-4.3031156z"/><path d="m21.436386 18.4510458 1.3014988-2.7889259c.7437136.5134941 1.540639.9074182 2.3906198 1.1819286.8499807.2745105 1.6999614.4117657 2.5499422.4117657.7437136 0 1.2927345-.1062672 1.6469061-.3188015.3541717-.2125343.5311793-.495809.5311793-.8499807 0-.3718568-.2079956-.6640524-.6241435-.8765867-.4161478-.2123778-1.0935031-.4602823-2.0320659-.7437136-.973933-.2655896-1.7708584-.5311792-2.3906197-.7967689-.6197613-.2657461-1.1554793-.6596702-1.6069973-1.1820852-.451518-.5224149-.6773553-1.1997702-.6773553-2.0320659 0-.86766582.2435224-1.62906451.7305671-2.28435256.4868883-.65513154 1.1775465-1.16862571 2.0718183-1.5404825s1.916878-.5579417 3.0679751-.5579417c1.0093032 0 1.9965392.15055818 2.9615514.45167454.9651687.30095986 1.7752405.70834338 2.4305286 1.22183754l-1.2750494 2.68281528c-.6551315-.47812392-1.3457898-.84121642-2.0718183-1.08912095s-1.4343718-.37185679-2.1250301-.37185679c-.7260285 0-1.2748928.10626716-1.6467496.31880147-.3718568.21237781-.5577852.50457336-.5577852.87643017 0 .3896984.2212986.6995791.6640523.9297985.4425972.2302194 1.1155704.4692031 2.0186065.7171076.9740895.2832748 1.7664762.5577852 2.3773168.8233749.610997.2657461 1.1421763.6596702 1.5938508 1.1820851.451518.522415.6773553 1.1997703.6773553 2.032066 0 1.3281047-.5269536 2.3683959-1.5805479 3.1210303-1.0535942.7526344-2.4746631 1.1288734-4.2632067 1.1288734-2.3020377 0-4.3561708-.5490209-6.1623995-1.6469062z"/><path d="m40.9064384 14.6526601c-.0530553.7437136.0973463 1.2927345.451518 1.6469062s.8412165.5311793 1.4609778.5311793c.407227 0 .8589015-.0707405 1.3547106-.2123778l-.2657461 3.1077274c-.6020763.2479045-1.3811601.3718568-2.337408.3718568-1.5229539 0-2.6871974-.407227-3.4928871-1.2218376-.8056897-.8146105-1.2085346-1.9655511-1.2085346-3.4531348 0-.3009598.0087643-.5311792.0264494-.6906582l.4250686-5.31241881h-2.5499422l.2389837-3.00146026h2.5499422l.2391403-3.16093925 4.1170306-1.30149878-.3452509 4.46243803h3.4265289l-.2389837 3.00146026h-3.4265289z"/><path d="m45.182948 18.4510458 1.3014988-2.7889259c.7438701.5134941 1.540639.9074182 2.3906198 1.1819286.8499807.2745105 1.6999614.4117657 2.5499422.4117657.7438701 0 1.2927345-.1062672 1.6469062-.3188015.3541716-.2125343.5313357-.495809.5313357-.8499807 0-.3718568-.2081521-.6640524-.6242999-.8765867-.4161479-.2123778-1.0935032-.4602823-2.032066-.7437136-.973933-.2655896-1.7707019-.5311792-2.3904632-.7967689-.6199178-.2657461-1.1554793-.6596702-1.6069973-1.1820852-.4516745-.5224149-.6773553-1.1997702-.6773553-2.0320659 0-.86766582.2433659-1.62906451.7304106-2.28435256.4868883-.65513154 1.1775465-1.16862571 2.0718183-1.5404825s1.916878-.5579417 3.0679751-.5579417c1.0093032 0 1.9965392.15055818 2.9617079.45167454.9650122.30095986 1.7752405.70834338 2.4303721 1.22183754l-1.2748929 2.68281528c-.655288-.47812392-1.3459463-.84121642-2.0719748-1.08912095-.7260284-.24790453-1.4343718-.37185679-2.1248736-.37185679-.7260284 0-1.2750493.10626716-1.6469061.31880147-.3718568.21237781-.5577852.50457336-.5577852.87643017 0 .3896984.2212986.6995791.6640523.9297985.4427538.2302194 1.1155704.4692031 2.018763.7171076.973933.2832748 1.7663198.5577852 2.3773168.8233749.6108405.2657461 1.1421763.6596702 1.5936943 1.1820851.451518.522415.6773553 1.1997703.6773553 2.032066 0 1.3281047-.5267971 2.3683959-1.5805479 3.1210303-1.0535942.7526344-2.4746631 1.1288734-4.2632066 1.1288734-2.3020378 0-4.3561709-.5490209-6.1623996-1.6469062z"/><path d="m67.4951382.97315048h7.543716c1.9478661 0 3.4664378.46935965 4.5554023 1.40776594 1.0891209.93856279 1.6336032 2.23129726 1.6336032 3.87820343 0 1.64674965-.5490209 2.94386628-1.6469062 3.89134985-1.0978853.9473271-2.6119184 1.4210689-4.5420993 1.4210689h-5.3654741v8.3138791h-2.1782419zm7.3577876 8.7921595c1.3990017 0 2.4525959-.30111636 3.1609393-.90319258.7083434-.60207621 1.062515-1.46974206 1.062515-2.60299755 0-1.133412-.3541716-1.9966957-1.062515-2.58985111-.7083434-.59331191-1.7619376-.88988961-3.1609393-.88988961h-5.1795457v6.98593085z"/><path d="m95.8636172 6.52470948v13.36070822h-2.1250301v-2.4170692c-.3895419.8322956-.9783152 1.4741242-1.7663198 1.9256423-.7880046.4516745-1.7043436.6773553-2.7491736.6773553-1.1864673 0-2.2267586-.2832748-3.1210303-.8499808-.8942718-.5665495-1.5849301-1.367857-2.0718183-2.4039227-.4870448-1.0359091-.7305671-2.2444437-.7305671-3.6256037 0-1.3813166.2479045-2.5987719.7437135-3.65236619.4959656-1.05359425 1.191006-1.87258693 2.0852778-2.45697803.8941152-.58439111 1.9256422-.87658666 3.0944244-.87658666 1.04483 0 1.9567869.23021942 2.7358707.69065826.7792403.46043884 1.3723957 1.10680608 1.7796227 1.93894521v-2.31080201zm-3.1873886 10.42560622c.7083433-.8942718 1.0623585-2.1647825 1.0623585-3.8116887 0-1.6469061-.3540152-2.9130347-1.0623585-3.79838565-.7083434-.88535096-1.7178031-1.32810469-3.0280662-1.32810469-1.3104196 0-2.3331823.45605669-3.0679751 1.36801357-.7349493.91195687-1.1024239 2.18246757-1.1024239 3.81168867 0 1.6290645.3630925 2.8864288 1.089121 3.7717797.7260284.885351 1.7530168 1.3281047 3.081278 1.3281047 1.3102631 0 2.3197228-.4471359 3.0280662-1.3414076z"/><path d="m111.933747 6.52470948v13.25444102c0 1.9833927-.509112 3.4841229-1.527336 4.5023469s-2.518955 1.5273361-4.502191 1.5273361c-2.036448 0-3.789621-.4604389-5.259363-1.3813166l.371857-1.7530168c.84998.478124 1.651288.8233749 2.403922 1.0359092.752478.2125343 1.580392.3188014 2.483584.3188014 1.292578 0 2.266511-.3408687 2.921799-1.0227627.655132-.6817374.982854-1.6954228.982854-3.0413691v-3.1607827c-.407384.8499807-1.005078 1.5094944-1.793082 1.978854-.788005.4692032-1.722029.7038048-2.802229.7038048-1.168782 0-2.209074-.274354-3.12103-.8233749-.911957-.5488644-1.615919-1.3281047-2.1117276-2.3374079-.4958091-1.0094597-.7437136-2.1693211-.7437136-3.4797407s.2479045-2.470281.7437136-3.47958423c.4958086-1.00945973 1.1997706-1.78854354 2.1117276-2.33756443.911956-.54886438 1.952248-.82337482 3.12103-.82337482 1.062515 0 1.987775.23021942 2.775779.69065826.788005.46043884 1.385543 1.10680608 1.792926 1.93894521v-2.31080201zm-3.253904 9.86782102c.734949-.8589016 1.102424-2.0408302 1.102424-3.546099 0-1.5051123-.367475-2.6871975-1.102424-3.54594251-.734793-.85890155-1.748634-1.28835233-3.041369-1.28835233-1.31042 0-2.34179.42945078-3.094424 1.28835233-.752635.85874501-1.128874 2.04083021-1.128874 3.54594251 0 1.5052688.376239 2.6871974 1.128874 3.546099.752634.8589015 1.784004 1.2881958 3.094424 1.2881958 1.292735 0 2.306576-.4292943 3.041369-1.2881958z"/><path d="m127.260162 13.138627h-9.801462c.017685 1.6999615.411765 2.9837752 1.182085 3.8515976.770319.8676658 1.890272 1.3014987 3.360014 1.3014987 1.558324 0 2.992696-.5224149 4.303116-1.5672449l.717264 1.5672449c-.584391.5490209-1.332644.9828538-2.244601 1.3014988-.911956.3188015-1.845981.478124-2.802228.478124-2.08966 0-3.727646-.6153792-4.914113-1.8459811-1.186467-1.2307583-1.779623-2.9174168-1.779623-5.060132 0-1.363475.26559-2.572166.796926-3.62576029.531179-1.05359425 1.274893-1.87258693 2.23114-2.45697803.956248-.58439111 2.045369-.87658666 3.267207-.87658666 1.770702 0 3.160939.58000895 4.170242 1.73987036 1.009304 1.1598614 1.514033 2.75793792 1.514033 4.79438592zm-8.380393-4.24990368c-.699423.67281665-1.146559 1.62030028-1.341408 2.84213778h7.7827c-.106111-1.2572078-.473586-2.21345565-1.102268-2.8687437-.628682-.65513154-1.50073-.98285381-2.616457-.98285381-1.11557 0-2.023145.33648658-2.722567 1.00945973z"/><path d="m129.703837 18.3447787.717265-1.5936944c.726028.566706 1.460821.973933 2.204691 1.2218376.743714.2479045 1.576009.3718568 2.496261.3718568 1.00946 0 1.776336-.1726255 2.297499-.5178764.522728-.3452508.784092-.8455986.784092-1.5007301 0-.5313358-.176851-.9562479-.530553-1.2750494-.355268-.3188014-.939033-.566706-1.752861-.7437135l-2.258529-.5313358c-1.115727-.2479046-1.97901-.6905018-2.589851-1.3281047-.610997-.6374465-.916339-1.3988452-.916339-2.2843526 0-1.16862572.469203-2.12049147 1.407766-2.85544076.938563-.73479278 2.178085-1.10226742 3.718411-1.10226742.939033 0 1.824853.15055818 2.655897.45151803.832608.30111636 1.532187.73494929 2.098737 1.30165528l-.716795 1.56708842c-1.256738-1.04482995-2.602684-1.56708842-4.037839-1.56708842-.955934 0-1.695266.18138975-2.217681.54448224-.522415.36293598-.783622.872048-.783622 1.52733603 0 .5488644.163861.9828538.491427 1.3014988.327565.3188015.854362.566706 1.580391.7437136l2.258216.5577852c1.239523.2834312 2.159774.7216463 2.76232 1.3149582.602546.5931554.903036 1.3678571.903036 2.324105 0 1.1510971-.469516 2.0718183-1.408548 2.7624765-.937467.6906583-2.212986 1.0359092-3.824992 1.0359092-2.248356 0-4.027979-.5754703-5.338399-1.7265674z"/><path d="m163.62325 13.9621584v1.8062286h-2.868744v4.1170307h-2.17699v-4.1170307h-8.712655v-1.6469061l9.110179-13.14833042h1.779466v12.98900792zm-11.500016 0h6.454282v-9.29688939z"/><path d="m168.936607 17.149547v1.9391018c0 .7437135-.123639 1.425451-.372483 2.0452123-.247278.6197613-.663582 1.2218376-1.247347 1.8062287l-1.011025-.7703195c.691754-.796769 1.081452-1.5583242 1.169095-2.2843526h-1.273954v-2.7358707z"/><path d="m182.52284 8.76915321c.893645.50472986 1.580704 1.20853458 2.058046 2.11172719.478906.903036.718359 1.947866.718359 3.1343333s-.261364 2.2400616-.784092 3.1609393c-.522728.9207211-1.266128 1.6336032-2.231766 2.1381765-.964074.5047299-2.094043.7570166-3.386777.7570166-1.150315 0-2.283414-.2079957-3.399297-.6241435s-2.054916-.987236-2.815532-1.7132645l.823218-1.673512c1.752861 1.4522134 3.551108 2.1782419 5.391611 2.1782419 1.328731 0 2.369492-.3763954 3.122282-1.1290298.751226-.7524779 1.128404-1.7752406 1.128404-3.0678186 0-1.2573642-.372483-2.2710496-1.115883-3.0413691-.743401-.7703195-1.735645-1.15547928-2.975168-1.15547928-1.806072 0-3.249051.73479278-4.328938 2.20469138h-1.514973v-11.07651212h11.341946v1.80622865h-9.163391v6.74679062c1.045456-1.00930322 2.382012-1.51403309 4.011233-1.51403309 1.186311 0 2.227072.25228668 3.120718.75701655z"/><path d="m191.010127 17.149547v1.9391018c0 .7437135-.125205 1.425451-.372483 2.0452123-.247279.6197613-.663583 1.2218376-1.248913 1.8062287l-1.00946-.7703195c.691754-.796769 1.081452-1.5583242 1.169095-2.2843526h-1.275518v-2.7358707z"/><path d="m204.543147 8.76915321c.893646.50472986 1.58853 1.21307323 2.084652 2.12503009.496122.9119569.743401 1.9522482.743401 3.1210304s-.259799 2.2134557-.782527 3.1343333c-.522728.9208777-1.244218 1.6423675-2.166035 2.1647825-.920251.522415-1.964142.7836225-3.133238.7836225-2.284978 0-4.047229-.7969254-5.286751-2.3906198-1.239523-1.5936943-1.859284-3.8603618-1.859284-6.7998459 0-2.12503014.287969-3.94894389.863909-5.47189779.57594-1.52279739 1.406984-2.6828153 2.496261-3.47958421 1.089278-.79692542 2.396098-1.19538813 3.918895-1.19538813 1.097103 0 2.164469.20377001 3.200535.61099702s1.943797.98285382 2.721629 1.7265674l-.823219 1.67335558c-.88582-.74371359-1.735644-1.29273448-2.549472-1.64690617-.813828-.35401518-1.646437-.53117927-2.496261-.53117927-1.629221 0-2.89535.72602848-3.798386 2.17808544-.903036 1.45205695-1.355336 3.48850502-1.355336 6.10934423v.3984627c.406914-1.0094598 1.072061-1.80622867 1.992313-2.39061978s1.975098-.87658666 3.161409-.87658666c1.150314 0 2.172295.25228668 3.067505.75701655zm-.438215 8.34048499c.743401-.770163 1.115884-1.7929257 1.115884-3.0678186 0-1.2573642-.377178-2.2710496-1.129969-3.0413691s-1.73095-1.15547928-2.934476-1.15547928c-1.239523 0-2.248983.38954188-3.028379 1.16878218-.779397.7790838-1.169096 1.7883871-1.169096 3.0280662 0 1.2572078.389699 2.2754318 1.169096 3.0546721.779396.7790838 1.796681 1.1686257 3.054985 1.1686257 1.203526 0 2.178555-.3851597 2.921955-1.1554792z"/></g><g transform="translate(660.011742 224.553185)"><path d="m.21765.193821h263.332986v106.422426h-263.332986z" fill="#c9177e"/><path d="m263.550636 106.616248h-263.33298624v-106.42242661h263.33298624zm-260.79463916-103.88400537v101.34558437h258.25629216v-101.34558437z" fill="#000"/></g><g fill="#f2f2f2" fill-rule="nonzero" transform="translate(688.758199 242.51167)"><path d="m.07350476 31.0947909 1.49915513-3.0461739c1.70855822 1.4504369 3.44902547 2.4820676 5.22225648 3.0946072 1.7729461.6125397 3.83592263.9188095 6.18921443.9188095 2.7720979 0 4.9077245-.5401745 6.4068796-1.6199537 1.4988702-1.080064 2.2484478-2.6031509 2.2484478-4.5695456 0-1.1604065-.3626804-2.1034326-1.0880413-2.8285086-.7253609-.7253609-1.6763643-1.2977293-2.8527253-1.7165355-1.1766459-.419091-2.7481662-.8544215-4.7145608-1.3057065-2.6433222-.5803457-4.81940488-1.2088399-6.52767819-1.8857674-1.70855822-.6769275-3.0948921-1.6521476-4.15843184-2.9253753-1.06382464-1.2732277-1.59573696-2.9416147-1.59573696-5.0045912 0-1.96639471.5156729-3.69916961 1.5473036-5.19803984 1.0316307-1.49915513 2.49004482-2.66753887 4.37609708-3.505721 1.88576736-.83818214 4.08578181-1.25727321 6.60004331-1.25727321 2.3854857 0 4.6097168.37094261 6.6729782 1.11225801 2.0629765.74131541 3.8037287 1.82137947 5.2222565 3.23962239l-1.5473036 3.04645873c-1.6119764-1.38633388-3.2478845-2.40172515-4.9080094-3.04645873-1.6601248-.64473357-3.473527-.96695791-5.4399217-.96695791-2.6755161 0-4.77068658.57208353-6.28579623 1.71653548-1.51510966 1.14445195-2.27266449 2.71597223-2.27266449 4.71456088 0 1.7407521.6606881 3.0461738 1.98234919 3.9165499 1.32166109.870376 3.35272853 1.6279309 6.09263253 2.2726645 2.9658315.7091214 5.2949066 1.3618322 6.9872254 1.9584174 1.6923187.5963002 3.1025844 1.4988702 4.2307969 2.70771 1.1284975 1.2088399 1.6926037 2.8125541 1.6926037 4.8111427 0 1.9342007-.5159578 3.6344968-1.5473036 5.101458-1.0316307 1.4666763-2.5065691 2.602866-4.4245304 3.4088542s-4.1664091 1.2088399-6.7453434 1.2088399c-5.3832262 0-9.67071872-1.4507218-12.86219264-4.3518804z"/><path d="m52.0054694 22.7779272h-17.8425672c.0324788 3.0946072.7495775 5.4316596 2.1518659 7.011442 1.4022884 1.5794975 3.4413332 2.3692463 6.1168493 2.3692463 2.8367707 0 5.447899-.9510034 7.8330998-2.8530102l1.3057066 2.8530102c-1.0638247.9994368-2.425657 1.7891855-4.0857818 2.3692463-1.6604098.5803457-3.3607058.8703761-5.101458.8703761-3.8037286 0-6.7855146-1.1202353-8.9453578-3.3604209-2.1598432-2.2404705-3.2399073-5.310861-3.2399073-9.2114564 0-2.4820676.4837639-4.6823669 1.4507218-6.6003282s2.3210978-3.4088543 4.06185-4.4726789c1.7407521-1.0638247 3.7231013-1.595737 5.9473324-1.595737 3.2236679 0 5.7541688 1.0558474 7.5915028 3.1672572 1.8376189 2.1114099 2.7561435 5.0205458 2.7561435 8.7276926zm-15.2553708-7.736518c-1.2735126 1.2247944-2.0874781 2.949592-2.4418963 5.1738231h14.1676143c-.1934486-2.288619-.8623988-4.0293711-2.0068508-5.2222565-1.144167-1.1926004-2.7319268-1.7891855-4.7627093-1.7891855-2.0307826 0-3.6829301.6125397-4.9561579 1.8376189z"/><path d="m61.99072 33.8509343c-1.7569915-1.0313458-3.1108466-2.4900448-4.06185-4.3760971-.9510034-1.8857673-1.426505-4.0857818-1.426505-6.6000433 0-2.5145464.4837638-4.7308002 1.4507217-6.6487615s2.3453146-3.4088543 4.1342152-4.4726789c1.7891855-1.0638247 3.8763787-1.595737 6.2618644-1.595737 1.6441703 0 3.2316451.2820531 4.7629942.8461594 1.5310642.5641063 2.7963147 1.3458778 3.7957514 2.3453145l-1.3057066 2.9011587c-1.2247943-.9672429-2.4097024-1.6763643-3.5538694-2.1276493-1.144452-.451285-2.3131206-.6769276-3.505721-.6769276-2.4820676 0-4.4325077.8302049-5.8507507 2.4903298-1.4185278 1.6601248-2.1276492 3.9729605-2.1276492 6.9387919 0 2.9333526.7011442 5.2139943 2.1034326 6.8419253 1.4022884 1.6279309 3.3604209 2.4418963 5.8749673 2.4418963 1.1926004 0 2.361269-.2256425 3.505721-.6769275 1.144167-.451285 2.3290751-1.1604065 3.5538694-2.1276493l1.3057066 2.9011586c-1.0316307.9672429-2.3290751 1.7327749-3.8926181 2.2968812s-3.1832118.8461594-4.859576.8461594c-2.3532918 0-4.4082911-.5156729-6.1649978-1.5473036z"/><path d="m87.1586914 13.8325694v13.2972382c0 1.80514.3709426 3.0703905 1.112258 3.7957514s1.7891856 1.0880413 3.1430406 1.0880413c.90257 0 1.7729461-.1450152 2.6111282-.4353305v3.3364892c-.9994367.3225092-2.1276493.4834789-3.3849225.4834789-2.3208129 0-4.1342151-.6527108-5.4396368-1.9581325-1.3057066-1.3057066-1.9584174-3.2316451-1.9584174-5.7783855v-13.8291505h-4.7387775v-3.0946072h4.7387775v-6.23764778l3.9165499-1.4022884v7.63993618h6.9630087v3.0946072z"/><path d="m98.8604776 35.0597742v-24.321812h3.9165494v24.321812zm-.3868971-34.62130978h4.7869255v4.44874713h-4.7869255z"/><path d="m114.381947 33.8509343c-1.740752-1.0313458-3.08663-2.498307-4.037633-4.4000289-.950719-1.9020067-1.426221-4.1262378-1.426221-6.6729782 0-2.5464555.475502-4.7709715 1.426221-6.6726933.951003-1.9020068 2.296881-3.3686831 4.037633-4.4003138s3.75558-1.5473036 6.044199-1.5473036c2.288904 0 4.303447.5156729 6.044199 1.5473036s3.08663 2.498307 4.037634 4.4003138c.951003 1.9017218 1.426505 4.1262378 1.426505 6.6726933 0 2.5467404-.475502 4.7709715-1.426505 6.6729782-.951004 1.9017219-2.296882 3.3686831-4.037634 4.4000289-1.740752 1.0316307-3.755295 1.5473036-6.044199 1.5473036-2.288619 0-4.303447-.5156729-6.044199-1.5473036zm11.604919-4.0857818c1.289468-1.5957369 1.934201-3.924812 1.934201-6.9872253 0-2.9655465-.660973-5.2624277-1.982634-6.8903586s-3.158995-2.4418964-5.512287-2.4418964c-2.385486 0-4.239059.8139655-5.56072 2.4418964s-1.982349 3.9248121-1.982349 6.8903586c0 3.0624133.652711 5.3914884 1.958132 6.9872253 1.305707 1.595737 3.167257 2.393463 5.584937 2.393463s4.271253-.797726 5.56072-2.393463z"/><path d="m158.915857 19.7799018v15.2798724h-3.916835v-15.0864238c0-2.2564251-.451285-3.9085727-1.353855-4.9561579s-2.320812-1.5715203-4.255013-1.5715203c-2.256425 0-4.06185.693167-5.415705 2.079216-1.353855 1.3860489-2.030783 3.2558618-2.030783 5.6091536v13.9257324h-3.91655v-17.5041035c0-2.5142615-.12906-4.786926-.386897-6.8177085h3.723101l.386898 4.3518804c.741315-1.5797825 1.853573-2.7965996 3.336489-3.6507362 1.482915-.8544216 3.175234-1.2814899 5.076956-1.2814899 5.834796 0 8.752194 3.2074284 8.752194 9.6222853z"/><path d="m185.630847 33.319022c-2.401725-1.4182429-4.247891-3.4572876-5.535648-6.1165644-1.290607-2.6595616-1.934486-5.7946249-1.934486-9.404905 0-3.6105649.643879-6.7293888 1.934486-9.35647159 1.287757-2.62708276 3.133923-4.64988805 5.535648-6.06841587 2.401726-1.41824292 5.230804-2.12764929 8.487236-2.12764929 2.384631 0 4.56983.36268044 6.552749 1.08804133 1.98007.72536088 3.69803 1.81340221 5.148182 3.26383907l-1.498585 3.04645873c-1.643886-1.41852782-3.264979-2.4339191-4.860431-3.04645873s-3.358996-.91852454-5.293482-.91852454c-3.772105 0-6.69805 1.22479436-8.777835 3.67466798-2.079786 2.44987362-3.11683 5.93137791-3.11683 10.44451291 0 4.545329 1.031346 8.0507651 3.094037 10.5168782 2.062692 2.466113 4.997184 3.6991695 8.800628 3.6991695 1.934486 0 3.69803-.3062698 5.293482-.9188094 1.595452-.6125397 3.216545-1.6279309 4.860431-3.0461739l1.498585 3.0461739c-1.450152 1.4507217-3.168112 2.5384782-5.148182 3.263839-1.982919.7253609-4.168118 1.0880414-6.552749 1.0880414-3.256432 0-6.08551-.7091215-8.487236-2.1276493z"/></g><g fill="#f2f2f2" fill-rule="nonzero" transform="translate(683.970025 292.181215)"><path d="m.10947429 20.3655834 1.52334352-19.36893462h4.27110005l-1.27858915 15.91416332h8.65071269l-.2720028 3.4547713z"/><path d="m15.3163023 20.3655834 1.0881712-13.79215735h4.1077702l-1.0881712 13.79215735zm1.4145104-20.26668789h4.4070212l-.2992511 3.86301581h-4.4070212z"/><path d="m21.9540024 18.8965763 1.3329256-2.8562691c.7616718.5258933 1.5778402.9293293 2.4483451 1.2104683.870505.2811389 1.7410099.4217084 2.6115148.4217084.7616717 0 1.3239496-.1088332 1.6866734-.3264995.3627237-.2176663.5440054-.5077811.5440054-.8705049 0-.3808359-.213018-.680087-.6392144-.8977533-.4261964-.217506-1.1199075-.4713966-2.0811335-.7616717-.9974502-.2720027-1.8136186-.5440055-2.4483451-.8160082-.6347265-.272163-1.1833802-.675599-1.6458009-1.2106285-.4624206-.5350296-.6937111-1.2287407-.6937111-2.0811335 0-.88861705.2494026-1.66840095.7482079-2.33951199.4986449-.67095076 1.2059803-1.19684408 2.1218457-1.57767996s1.963164-.5714141 3.1420563-.5714141c1.0336745 0 2.0447488.15419365 3.0330628.46258095.9884743.30822702 1.8181067.72544747 2.4892177 1.25134079l-1.3058375 2.74759621c-.6709507-.489669-1.3782861-.86152895-2.1218457-1.11541954-.7435596-.25389058-1.4690071-.38083588-2.1763424-.38083588-.7435596 0-1.3056772.10883315-1.6865131.32649945-.3808359.21750602-.5712538.51675707-.5712538.89759297 0 .3991083.2266422.7164716.6800869.95225.4532845.2357784 1.1425077.4805328 2.067349.7344234.9976105.2901149 1.8091307.5712538 2.434721.8432566.6257505.272163 1.169756.675599 1.6323369 1.2106285.4624207.5350295.6937112 1.2287407.6937112 2.0811334 0 1.360174-.5396778 2.4255848-1.6187128 3.1963928s-2.5344179 1.1561318-4.3661487 1.1561318c-2.3576242 0-4.4613577-.5622779-6.3112007-1.6866734z"/><path d="m41.8941909 15.0064724c-.0543365.7616718.0996969 1.3239497.4624206 1.6866734.3627238.3627238.861529.5440055 1.4962555.5440055.4170601 0 .8796411-.0724486 1.3874223-.217506l-.272163 3.1827685c-.6166144.2538906-1.4145104.3808359-2.3938485.3808359-1.5597281 0-2.7520842-.4170602-3.5772286-1.2513408s-1.2377166-2.0130125-1.2377166-3.5365164c0-.308227.0089759-.5440054.0270881-.7073353l.4353326-5.44069574h-2.6115148l.2447544-3.07393541h2.6115147l.2449147-3.23726527 4.216443-1.33292558-.3535875 4.57019085h3.509268l-.2447544 3.07393541h-3.509268z"/><path d="m46.2739638 18.8965763 1.3329255-2.8562691c.7618321.5258933 1.5778403.9293293 2.4483452 1.2104683.8705049.2811389 1.7410098.4217084 2.6115147.4217084.7618321 0 1.3239497-.1088332 1.6866734-.3264995.3627238-.2176663.5441658-.5077811.5441658-.8705049 0-.3808359-.2131784-.680087-.6393748-.8977533-.4261963-.217506-1.1199075-.4713966-2.0811334-.7616717-.9974502-.2720027-1.8134584-.5440055-2.4481849-.8160082-.6348867-.272163-1.1833801-.675599-1.6458008-1.2106285-.462581-.5350296-.6937112-1.2287407-.6937112-2.0811335 0-.88861705.2492424-1.66840095.7480476-2.33951199.498645-.67095076 1.2059803-1.19684408 2.1218457-1.57767996s1.9631641-.5714141 3.1420563-.5714141c1.0336745 0 2.0447489.15419365 3.0332232.46258095.988314.30822702 1.8181066.72544747 2.4890574 1.25134079l-1.3056773 2.74759621c-.671111-.489669-1.3784463-.86152895-2.1220059-1.11541954-.7435597-.25389058-1.4690071-.38083588-2.1761822-.38083588-.7435596 0-1.3058375.10883315-1.6866734.32649945-.3808358.21750602-.5712538.51675707-.5712538.89759297 0 .3991083.2266422.7164716.680087.95225.4534447.2357784 1.1425076.4805328 2.0675093.7344234.9974502.2901149 1.8089704.5712538 2.4347209.8432566.6255903.272163 1.169756.675599 1.6321767 1.2106285s.6937111 1.2287407.6937111 2.0811334c0 1.360174-.5395175 2.4255848-1.6187127 3.1963928-1.079035.770808-2.5344179 1.1561318-4.3661488 1.1561318-2.3576241 0-4.4613577-.5622779-6.3112006-1.6866734z"/><path d="m69.124918.99664878h7.7258714c1.9949004 0 3.5501405.4806931 4.6653998 1.44175873 1.1154195.96122592 1.6730492 2.28517557 1.6730492 3.97184896 0 1.6865131-.5622779 3.01495072-1.6866734 3.98531283-1.1243955.9702019-2.6749874 1.4553829-4.6517756 1.4553829h-5.4950322v8.5146312h-2.2308392zm7.5354534 9.00446052c1.4327828 0 2.5118178-.30838734 3.2372653-.92500167.7254475-.61661432 1.0881712-1.50523137 1.0881712-2.66585116 0-1.16078007-.3627237-2.04490916-1.0881712-2.65238727-.7254475-.60763839-1.8044825-.91137745-3.2372653-.91137745h-5.3046142v7.15461755z"/><path d="m98.1784001 6.6822592v13.6833242h-2.1763424v-2.4754332c-.3989481.8523927-1.0019382 1.5097193-1.8089705 1.97214-.8070322.4625809-1.7454977.6937111-2.8155568.6937111-1.2151165 0-2.2805273-.2901148-3.1963927-.8705049-.9158655-.5802297-1.6232008-1.4008862-2.1218457-2.4619693-.4988053-1.0609229-.7482079-2.2986395-.7482079-3.7131498 0-1.4146707.2538906-2.6615235.7616717-3.74055852.5079415-1.07903499 1.2197648-1.91780358 2.1356302-2.51630576.9157051-.59850218 1.97214-.89775327 3.1691444-.89775327 1.0700591 0 2.0040366.23577845 2.8019327.70733533.7980563.47155689 1.4055344 1.13353171 1.8225946 1.9857642v-2.36660008zm-3.2643534 10.6773494c.7254475-.9158654 1.088011-2.2170547 1.088011-3.9037281 0-1.6866733-.3625635-2.9833746-1.088011-3.89010384-.7254474-.90672919-1.7592822-1.36017394-3.1011837-1.36017394-1.3420618 0-2.3895208.46706892-3.1420563 1.40104648-.7526958.9339776-1.1290438 2.2351668-1.1290438 3.9037281 0 1.6684009.37186 2.9561263 1.1154196 3.8628555s1.7953463 1.3601739 3.1556805 1.3601739c1.3419015 0 2.3757363-.4579327 3.1011837-1.3737981z"/><path d="m114.636569 6.6822592v13.574491c0 2.031285-.521405 3.5682527-1.564216 4.6110634s-2.579779 1.5642161-4.610903 1.5642161c-2.085622 0-3.881128-.4715569-5.38636-1.4146707l.380836-1.7953462c.870505.489669 1.691162.8432565 2.46197 1.0609228.770647.2176663 1.618552.3264995 2.543554.3264995 1.323789 0 2.321239-.3490996 2.99235-1.047459.670951-.6981991 1.006587-1.7363615 1.006587-3.1148079v-3.237105c-.417221.8705049-1.029347 1.5459436-1.836379 2.0266367-.807033.4805329-1.76361.7207993-2.869894.7207993-1.197004 0-2.262415-.2809787-3.196392-.8432566-.933978-.5621176-1.654937-1.3601739-2.162719-2.3938484-.507781-1.0338348-.761671-2.2217029-.761671-3.5637647s.25389-2.52993.761671-3.56360448c.507782-1.03383477 1.228741-1.83173082 2.162719-2.39400871.933977-.56211761 1.999388-.84325656 3.196392-.84325656 1.088172 0 2.035773.23577845 2.842806.70733533.807032.47155689 1.418998 1.13353171 1.836218 1.9857642v-2.36660008zm-3.332474 10.1060956c.752695-.8796411 1.129043-2.0901094 1.129043-3.6317253 0-1.5414557-.376348-2.7520842-1.129043-3.63156509-.752536-.87964112-1.790859-1.31946169-3.114808-1.31946169-1.342062 0-2.398337.43982057-3.169145 1.31946169-.770808.87948089-1.156131 2.09010939-1.156131 3.63156509 0 1.5416159.385323 2.7520842 1.156131 3.6317253s1.827083 1.3193014 3.169145 1.3193014c1.323949 0 2.362272-.4396603 3.114808-1.3193014z"/><path d="m130.333066 13.4558805h-10.038135c.018112 1.7410099.421708 3.0558233 1.210628 3.9446006.788921.8886171 1.935916 1.3329256 3.441148 1.3329256 1.595952 0 3.064959-.5350295 4.407021-1.6050886l.734584 1.6050886c-.598503.5622779-1.364823 1.0065864-2.2988 1.3329256-.933978.3264995-1.890555.489669-2.869893.489669-2.140119 0-3.817656-.6302385-5.032772-1.8905552-1.215117-1.260477-1.822595-2.9878626-1.822595-5.1823172 0-1.3963982.272003-2.6342751.816169-3.71331012.544005-1.07903499 1.305677-1.91780358 2.285015-2.51630576s2.094757-.89775327 3.346098-.89775327c1.813459 0 3.237266.59401422 4.27094 1.78188236 1.033675 1.18786815 1.550592 2.82453279 1.550592 4.91015419zm-8.582752-4.35252451c-.716311.6890629-1.174244 1.65942501-1.373798 2.91076581h7.970625c-.108672-1.2875651-.48502-2.26690312-1.128883-2.93801417-.643863-.67095075-1.536968-1.00658641-2.679636-1.00658641-1.142507 0-2.071997.34461159-2.788308 1.03383477z"/><path d="m132.835747 18.7877432.734584-1.6321767c.74356.58039 1.496095.9974502 2.257927 1.2513408.761672.2538906 1.614065.3808359 2.556538.3808359 1.033834 0 1.819228-.1767938 2.352975-.5303813.535351-.3535875.803026-.866017.803026-1.5369677 0-.5441658-.181122-.9793381-.543365-1.3058375-.363845-.3264995-.961706-.5803901-1.795186-.7616718l-2.313065-.5441657c-1.142668-.2538906-2.026797-.7071751-2.652387-1.360174-.625751-.6528386-.938466-1.4326225-.938466-2.339512 0-1.19684406.480533-2.17169415 1.441759-2.92438998.961226-.75253555 2.230679-1.12888347 3.808199-1.12888347.961706 0 1.868917.15419366 2.720027.46242067.852713.30838731 1.569185.75269584 2.149415 1.33308587l-.734103 1.60492831c-1.287084-1.07005906-2.665531-1.60492831-4.135339-1.60492831-.979018 0-1.736202.18576969-2.271231.55762964-.53503.37169967-.802544.89310502-.802544 1.56421607 0 .5621176.167817 1.0065864.503293 1.3329256.335475.3264994.874993.58039 1.618552.7616717l2.312745.5712539c1.269453.2902751 2.211925.7390716 2.829021 1.34671.617095.6074781.924841 1.4008862.924841 2.3802243 0 1.1788922-.480854 2.1218457-1.44256 2.829181-.960104.7073353-2.266423 1.0609228-3.917353 1.0609228-2.302646 0-4.125241-.5893659-5.467303-1.7682581z"/><path d="m153.917963.99664878h12.785891v1.65942503l-9.084923 17.70950959h-2.39465l9.032029-17.49184329h-10.338347z"/><path d="m173.015856 17.5636507v1.9859245c0 .7616718-.126624 1.4598709-.381477 2.0945973-.253249.6347265-.679606 1.2513408-1.277467 1.849843l-1.035437-.7889201c.708457-.8160082 1.107565-1.5959524 1.197324-2.339512h-1.304715v-2.8019327z"/><path d="m188.807081 12.1909156c.698841.8434168 1.048261 1.8543309 1.048261 3.0332231 0 1.6502888-.626712 2.9516384-1.878534 3.9037281-1.250219.9520897-2.938014 1.4281345-5.058578 1.4281345-2.122166 0-3.809961-.4760448-5.06018-1.4281345-1.251822-.9520897-1.876931-2.2534393-1.876931-3.9037281 0-1.1788922.357434-2.1944545 1.073906-3.0468473.716471-.8523928 1.700618-1.4417587 2.95244-1.7682582-1.16046-.3444513-2.050039-.91121715-2.667134-1.70013727-.615492-.78892012-.924841-1.71840971-.924841-2.78830849 0-1.03383478.272483-1.93607601.815848-2.70688399.544967-.77064769 1.311127-1.36914987 2.300082-1.79534625.987352-.42619638 2.117357-.63937472 3.38681-.63937472s2.397856.21317834 3.386811.63937472c.987352.42619638 1.753512 1.02469856 2.298479 1.79534625.543365.77080798.815848 1.67304921.815848 2.70688399 0 1.06989878-.312555 1.99938837-.939267 2.78830849-.625109.78892012-1.500262 1.35568597-2.623856 1.70013727 1.269452.3446116 2.251996.9386258 2.950836 1.7818824zm-9.004781-3.59085282c.770969.64386269 1.809612 1.03832275 3.11593 1.18338018 1.304716-.14505743 2.343359-.53951749 3.114327-1.18338018.770969-.64386268 1.155651-1.48263127 1.155651-2.51630576 0-1.07005906-.376668-1.91331562-1.128402-2.52992994-.753337-.61661432-1.799995-.92500163-3.141576-.92500163-1.343183 0-2.389841.30838731-3.143178.92500163-.751734.61661432-1.128403 1.45987088-1.128403 2.52992994 0 1.03367449.384683 1.87244308 1.155651 2.51630576zm6.624557 9.18125422c.815848-.6166143 1.224574-1.5143676 1.224574-2.6932598 0-1.0698988-.431166-1.9267795-1.291893-2.5706422-.862331-.6438627-2.009967-1.0383227-3.441308-1.1833802-1.432943.1450575-2.580579.5395175-3.441307 1.1833802-.86233.6438627-1.293496 1.5007434-1.293496 2.5706422 0 1.1788922.408726 2.0766455 1.224574 2.6932598s1.985924.9248414 3.510229.9248414c1.522703 0 2.692779-.3082271 3.508627-.9248414z"/><path d="m195.622377 17.5636507v1.9859245c0 .7616718-.128228 1.4598709-.381477 2.0945973-.25325.6347265-.679606 1.2513408-1.27907 1.849843l-1.033835-.7889201c.708457-.8160082 1.107566-1.5959524 1.197325-2.339512h-1.306318v-2.8019327z"/><path d="m210.339696 3.22732763c1.26785 1.63217667 1.902577 3.95357653 1.902577 6.96419957 0 3.2824655-.657167 5.8351558-1.971499 7.6577504-1.314333 1.8225946-3.151193 2.7339721-5.508977 2.7339721-1.105963 0-2.189486-.2085301-3.250569-.6257505-1.061083-.4170602-1.998747-1.0064262-2.816198-1.7680979l.871947-1.7139218c.924842.7799442 1.803201 1.3465498 2.638283 1.7002976.833479.3535875 1.676575.5303813 2.529288.5303813 1.668562 0 2.960454-.7435596 3.877282-2.2306789.915224-1.4871192 1.373637-3.5727406 1.373637-6.2568642v-.35358755c-.416739 1.01556235-1.097948 1.81810665-2.040421 2.40747265-.944075.5895262-2.02279.8841291-3.237746.8841291-1.178091 0-2.221543-.2583786-3.128753-.775296-.905607-.5167571-1.614064-1.2422046-2.120563-2.1761821-.508102-.93413786-.762954-1.99954868-.762954-3.19655303 0-1.19684408.267675-2.26690314.803025-3.21001692.53535-.94295348 1.274262-1.68202514 2.216734-2.21705467.944076-.53502953 2.013173-.8025443 3.210498-.8025443 2.340153 0 4.143353.81616848 5.414409 2.44834515zm-2.176663 6.85536647c.796614-.79805638 1.195722-1.83173087 1.195722-3.10118381 0-1.28772536-.399108-2.33053607-1.195722-3.12843212-.798217-.79805633-1.841668-1.19700436-3.128753-1.19700436-1.232587 0-2.231159.39446006-2.992511 1.18338018-.761351.78892012-1.142828 1.83621879-1.142828 3.1420563 0 1.28756508.381477 2.32588782 1.142828 3.11480791.761352.7889202 1.767938 1.1833802 3.01976 1.1833802 1.269453 0 2.303287-.3991083 3.101504-1.1970043z"/></g><path d="m17.8381448 46.9715784h11.4351924v5.0258027h-28.91585333v-5.0258027h11.43519243v-39.40433576l-10.63396507 6.77374006v-5.75407418l13.25608567-8.44915063h3.4233479z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(21.524072 376.769072)"/><path d="m35.1591611 47.829883v5.0258027h-33.35886717v-4.5159698l18.13640567-20.1027815c2.4277146-2.719109 4.2001136-5.1712853 5.3167679-7.3565289 1.1170835-2.1848144 1.6754107-4.3700579 1.6754107-6.5553015 0-2.8645916-.8256891-5.06185144-2.476638-6.59135026-1.6509489-1.52992798-4.0057077-2.29467739-7.0651345-2.29467739-4.9528467 0-9.85677016 1.99083755-14.71262852 5.97294185l-2.25819944-4.58892566c2.03976092-1.94234334 4.61295815-3.4958747 7.72087917-4.66145237 3.10749189-1.16557766 6.23944539-1.74793734 9.39586059-1.74793734 4.7584408 0 8.5216774 1.22608814 11.2897098 3.67826442 2.7676032 2.45217629 4.1516194 5.76609041 4.1516194 9.94174235 0 2.9620092-.667761 5.8150138-2.003283 8.5585845-1.3350928 2.7431415-3.5568143 5.8145846-6.6643061 9.2134709l-14.7855845 16.024118z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(113.15712 375.910768)"/><path d="m32.1649655 30.7131432c1.6024547 2.1367493 2.403682 4.8318258 2.403682 8.0848003 0 4.5159698-1.5294988 8.0727841-4.5884964 10.6708722-3.0594268 2.5976589-7.2110463 3.8967029-12.4548583 3.8967029-3.3508212 0-6.5677469-.5587563-9.65077711-1.6754106-3.08345933-1.1166543-5.69356366-2.6950765-7.82988385-4.7344083l2.33072618-4.5884964c4.806935 3.9816751 9.80827598 5.9725126 15.00402298 5.9725126 3.6902807 0 6.494791-.825689 8.4126727-2.4766379 1.9178817-1.650949 2.8770371-4.0786636 2.8770371-7.283573 0-6.3608955-3.9816751-9.5413433-11.9450254-9.5413433h-5.9729418v-5.0258026h4.8073642c3.8361924 0 6.77374-.8497216 8.8130718-2.5491647 2.0393317-1.6994432 3.0594268-4.1275869 3.0594268-7.283573 0-2.8165266-.8377053-4.97730847-2.513116-6.48234561-1.6749814-1.50546629-4.0421855-2.25819944-7.1016123-2.25819944-4.9528468 0-9.85677025 1.99083755-14.71262861 5.97294185l-2.25819944-4.58892566c2.08825513-1.99083756 4.6494361-3.55681433 7.68440122-4.69793031 3.03496513-1.14111599 6.20339663-1.7114594 9.50529443-1.7114594 4.6614524 0 8.388211 1.18961019 11.180276 3.56883059 2.7920649 2.37922039 4.1880973 5.58412982 4.1880973 9.61429918 0 2.9620092-.7287006 5.5596681-2.1852435 7.7934059-1.456543 2.2337377-3.4718422 3.8361925-6.0454686 4.8073641 3.0589977.8737541 5.390153 2.3792204 6.9921786 4.5155406z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(210.490122 375.910768)"/><path d="m37.9113149 35.7548245v4.9528468h-7.8663618v11.2897098h-5.9725127v-11.2897098h-23.89005067v-4.5159697l24.98267247-36.05394371h4.8798909v35.61706661zm-31.53797398 0h17.69909948v-25.4925054z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(344.333123 377.543534)"/><path d="m27.0614862 21.5151218c2.4521763 1.3840162 4.3340092 3.3143433 5.6450695 5.7905521 1.3110603 2.4766379 1.9663758 5.3412296 1.9663758 8.5946332 0 3.2534037-.7162552 6.142457-2.1487656 8.6675892-1.4320812 2.5251322-3.4718421 4.4794918-6.1179953 5.863508-2.6465822 1.383587-5.7420578 2.0758097-9.2868559 2.0758097-3.1559861 0-6.2634779-.5707726-9.32290473-1.7118886-3.05899765-1.1411159-5.63262403-2.7070927-7.72045001-4.6979303l2.25777029-4.5884964c4.80736415 3.9816751 9.73574925 5.9725126 14.78558445 5.9725126 3.6422156 0 6.494791-1.0316821 8.5585845-3.0954756 2.0633643-2.0637934 3.0954756-4.8678746 3.0954756-8.4126727 0-3.4473804-1.0196659-6.2274291-3.0589977-8.3397168-2.0397609-2.1122876-4.7588699-3.1684314-8.1577562-3.1684314-4.9528468 0-8.91048936 2.0152992-11.87249858 6.0454685h-4.15161943v-30.37282541h31.10109691v4.95284678h-25.12858424v18.50075603c2.86502084-2.7680324 6.53126894-4.1520486 10.99831534-4.1520486 3.2534036 0 6.105979.6922227 8.5581553 2.0758097z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(442.786269 377.543534)"/><path d="m28.6326128 22.3734264c2.4521763 1.3840162 4.3580417 3.3263595 5.7175962 5.82703s2.0393318 5.3536751 2.0393318 8.5581554c0 3.2049094-.7162552 6.0699302-2.1487656 8.5946332-1.4320813 2.5251322-3.4109026 4.5039535-5.9360347 5.9364639-2.5247031 1.4320813-5.3897239 2.1483365-8.5946333 2.1483365-6.2639071 0-11.09530378-2.1848144-14.49419005-6.5553015-3.39931543-4.370058-5.09875857-10.5854709-5.09875857-18.6458095 0-5.82703.78921109-10.828371 2.36720413-15.004023 1.57799303-4.1760811 3.86022501-7.35652885 6.84669592-9.5417724 2.98604177-2.18524355 6.56731777-3.27743617 10.74339887-3.27743617 3.0105034 0 5.9360347.55832715 8.7765938 1.67498145 2.8405592 1.11708346 5.3292134 2.69507649 7.4655336 4.73440826l-2.2577703 4.58892566c-2.4277146-2.03976095-4.7584408-3.5447981-6.9921786-4.51596977-2.2337377-.97117167-4.5159697-1.45697208-6.8466959-1.45697208-4.4670463 0-7.9388885 1.99083755-10.41552648 5.97294185-2.47620881 3.9816751-3.71474237 9.5653758-3.71474237 16.7519603v1.0926218c1.11708345-2.7676033 2.93797669-4.9528468 5.46267975-6.5553015 2.5251321-1.6024547 5.4141855-2.4036821 8.6675891-2.4036821 3.1564153 0 5.9604964.6922227 8.4126727 2.0758097zm-1.2016264 22.8708139c2.0393317-2.1122876 3.0589976-4.9163688 3.0589976-8.4126726 0-3.4473805-1.0321113-6.2274292-3.0954756-8.3397168-2.0637934-2.1122877-4.7464245-3.1684315-8.0483224-3.1684315-3.3993154 0-6.1669186 1.0681601-8.303668 3.2049094-2.13632016 2.1363202-3.20448025 4.9043526-3.20448025 8.3032389 0 3.4473804 1.06816009 6.2394454 3.20448025 8.3761947 2.1367494 2.1363202 4.9288143 3.2049094 8.3761948 3.2049094 3.3018978 0 5.9725126-1.0561438 8.0122736-3.1684315z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(539.405045 376.685229)"/><path d="m.06008132.13775789h34.23305048v4.44301384l-24.32735691 47.41660937h-6.40938972l24.18144513-46.83382053h-27.67774898z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(678.757195 376.512457)"/><path d="m34.6622027 30.9684888c1.8693875 2.2577703 2.8040812 4.9648631 2.8040812 8.1208491 0 4.4189814-1.6749814 7.9028398-5.0253735 10.4520045-3.3508212 2.5495939-7.8663618 3.8241762-13.5474801 3.8241762-5.6815474 0-10.19708794-1.2745823-13.54748-3.8241762-3.35082122-2.5491647-5.02580268-6.0330231-5.02580268-10.4520045 0-3.155986.95872626-5.875095 2.87703707-8.157327 1.91788167-2.282232 4.55201853-3.8606542 7.90241061-4.7344083-3.10749187-.9226774-5.48671227-2.44016-7.1376612-4.5524477-1.65094892-2.1122876-2.47663796-4.6005127-2.47663796-7.4655335 0-2.7676032.72870062-5.18373073 2.18524355-7.24709502 1.45654293-2.06379345 3.50832011-3.66624817 6.15447324-4.80736415 2.64658227-1.14111599 5.66910197-1.7114594 9.06841737-1.7114594 3.3988863 0 6.421406.57034341 9.0679883 1.7114594 2.6461531 1.14111598 4.6979303 2.7435707 6.1544733 4.80736415 1.456972 2.06336429 2.1852435 4.47949182 2.1852435 7.24709502 0 2.8650208-.8377053 5.3532459-2.5131159 7.4655335-1.6749815 2.1122877-4.0177239 3.6297703-7.0286565 4.5524477 3.3993154.9226775 6.0334523 2.5126868 7.9028397 4.7708862zm-24.1084891-9.6147283c2.0633642 1.7239048 4.8434129 2.7800487 8.3397167 3.1684315 3.4958747-.3883828 6.2759234-1.4445267 8.3397168-3.1684315 2.0633643-1.7234756 3.0954756-3.9692297 3.0954756-6.7372621 0-2.8645916-1.0076496-5.12279105-3.0229488-6.77373998-2.0148701-1.65094892-4.8193804-2.47620881-8.4122436-2.47620881-3.5932922 0-6.3978026.82525989-8.4126726 2.47620881-2.01529928 1.65094893-3.0229489 3.90914838-3.0229489 6.77373998 0 2.7680324 1.0321113 5.0137865 3.0959048 6.7372621zm17.7355774 24.5822734c2.1848144-1.650949 3.2774361-4.054631 3.2774361-7.2106171 0-2.8650208-1.1531322-5.1592691-3.4598259-6.8831739-2.3062645-1.7239048-5.3777075-2.7800486-9.2134709-3.1684315-3.8361924.3883829-6.9076355 1.4445267-9.2139 3.1684315-2.30669365 1.7239048-3.4598259 4.0181531-3.4598259 6.8831739 0 3.1559861 1.09262177 5.5596681 3.27786532 7.2106171 2.18481438 1.6509489 5.31676798 2.4766379 9.39586058 2.4766379 4.0786636 0 7.2106171-.825689 9.3958607-2.4766379z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(773.608278 376.236614)"/><path d="m31.3560134 6.96900432c3.3988862 4.37005798 5.0987585 10.58547078 5.0987585 18.64580948 0 8.7890393-1.7603827 15.6232898-5.2807191 20.5031806-3.5203364 4.8803201-8.4367052 7.320051-14.7495357 7.320051-2.9620092 0-5.8630788-.5583272-8.70363793-1.6749815-2.84055913-1.1170835-5.35367504-2.6950765-7.53848944-4.7344083l2.33072618-4.5884964c2.47620882 2.0878259 4.83139668 3.6053085 7.06513445 4.5520185 2.23330864.94671 4.49150804 1.4204941 6.77374004 1.4204941 4.4670464 0 7.9268723-1.9908375 10.3790485-5.9725126 2.4521763-3.9821043 3.6782645-9.565805 3.6782645-16.7523895v-.9471392c-1.1170835 2.7195382-2.9379767 4.8678747-5.4626798 6.4462969-2.5251321 1.577993-5.4141855 2.3672041-8.6675891 2.3672041-3.1564152 0-5.9484801-.6922227-8.37619475-2.0758097-2.42771461-1.3840162-4.32156374-3.3263596-5.68111825-5.8270301s-2.03933177-5.353675-2.03933177-8.5581553c0-3.2049094.7162552-6.0699302 2.14833645-8.59463325 1.43251041-2.52513218 3.4113317-4.50395347 5.93646388-5.93646387 2.52470304-1.43208125 5.38972384-2.14833645 8.59463324-2.14833645 6.2639071 0 11.0953038 2.18481439 14.4941901 6.55530149zm-5.8270301 18.35441508c2.1367494-2.1363202 3.2049095-4.9043526 3.2049095-8.3032389 0-3.4473805-1.0681601-6.2394454-3.2049095-8.37619472-2.1363202-2.13632019-4.9283851-3.20490943-8.3757656-3.20490943-3.3018978 0-5.9729418 1.05614383-8.01227355 3.16843149-2.03933176 2.11228766-3.05899765 4.91636886-3.05899765 8.41267266 0 3.4473805 1.01966589 6.2274292 3.05899765 8.3397168 2.03933175 2.1122877 4.73440825 3.1684315 8.08480035 3.1684315 3.3993154 0 6.1669186-1.0681601 8.3032388-3.2049094z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(867.854354 375.654152)"/><path d="m330.093135.33214542v84.43190468-42.5518783h-329.66215607v42.5518783" stroke="#000" stroke-width="2.538347" transform="translate(131.785126 139.982935)"/><path d="m.10801477.42233775h329.31542823v42.21595235" stroke="#000" stroke-width="2.538347" transform="translate(461.770246 182.108695)"/><path d="m36.186655 346.60579v15.692843" stroke="#000" stroke-width="2.540394"/><path d="m132.152376 331.426017v30.871702" stroke="#000" stroke-width="2.538347"/><path d="m228.893645 346.60579v15.692843" stroke="#000" stroke-width="2.540394"/><g transform="translate(1221.45577 24.489117)"><path d="m.197608.154988h239.084215v85.099871h-239.084215z" fill="#0083c0"/><path d="m239.281823 85.2548586h-239.08421531v-85.09987082h239.08421531zm-236.54571658-82.56147761v80.02308441h234.00574658v-80.02308441z" fill="#000"/></g><g transform="translate(956.909366 124.770501)"><path d="m.184449.095195h223.163411v52.269131h-223.163411z" fill="#c9177e"/><path d="m223.347859 52.3643259h-223.16341016v-52.26913097h223.16341016zm-220.62506465-49.73066919v47.19220749h218.08488865v-47.19220749z" fill="#000"/></g><g transform="translate(1231.923745 124.770501)"><path d="m.183618.095195h222.158079v52.269131h-222.158079z" fill="#c9177e"/><path d="m222.341696 52.3643259h-222.15807809v-52.26913097h222.15807809zm-219.61932129-49.73066919v47.19220749h217.08147629v-47.19220749z" fill="#000"/></g><path d="m91.4241325.12672749v8.67595862h-91.3476086v8.67108449" stroke="#000" stroke-width="2.539424" transform="translate(1252.516016 177.005152)"/><g transform="translate(1504.487683 124.770501)"><path d="m.182671.095195h221.012609v52.269131h-221.012609z" fill="#c9177e"/><path d="m221.19528 52.3643259h-221.01260884v-52.26913097h221.01260884zm-218.47425033-49.73066919v47.19220749h215.93589233v-47.19220749z" fill="#000"/></g><g transform="translate(1018.734446 194.392443)"><path d="m.035471.089728h42.916712v49.26713h-42.916712z" fill="#00a88a"/><path d="m42.9521838 49.3568579h-42.91671231v-49.26713035h42.91671231zm-40.37825665-46.72872807v44.19032577h37.83980095v-44.19032577z" fill="#000"/></g><path d="m19.5454361 18.6632185c.9737513 1.298422 1.4606269 2.9361183 1.4606269 4.9128281 0 2.7441845-.9294187 4.9055264-2.7882562 6.4842865-1.8590982 1.5784993-4.3818807 2.3678794-7.5683475 2.3678794-2.03616765 0-3.99097204-.3395352-5.86441318-1.0180839-1.87370191-.6785486-3.45976385-1.6376963-4.75792503-2.8769212l1.41629437-2.7882563c2.92099306 2.4195138 5.96011931 3.6292707 9.11737874 3.6292707 2.2424444 0 3.9466395-.5017401 5.1120638-1.5049595 1.1654244-1.0032194 1.7482669-2.4784499 1.7482669-4.4259525 0-3.8652762-2.4195137-5.7979144-7.2585412-5.7979144h-3.62953146v-3.0539906h2.92125384c2.33110942 0 4.11614632-.5163438 5.35537122-1.5490313 1.239225-1.0326875 1.8590983-2.5081788 1.8590983-4.4259525 0-1.71149696-.5090419-3.02452258-1.5271257-3.93907688-1.0178231-.91481507-2.4562837-1.37222261-4.315382-1.37222261-3.00965814 0-5.9895874 1.20975688-8.94030934 3.62953142l-1.37222261-2.78851699c1.26895386-1.20975688 2.82528692-2.16134189 4.66952073-2.85475502 1.84423381-.69341314 3.7695701-1.03998932 5.77600882-1.03998932 2.8325888 0 5.0971994.72288124 6.7938319 2.16864372 1.6966326 1.44576248 2.5449488 3.39326503 2.5449488 5.8422469 0 1.79990128-.4428039 3.37840058-1.32789 4.73575878-.8850862 1.3573582-2.1097076 2.3311094-3.6736032 2.9212538 1.8588374.5309474 3.2753926 1.4457625 4.2488831 2.7439237z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1028.654902 202.599599)"/><g transform="translate(1078.488158 194.392443)"><path d="m.035471.089728h42.916712v49.26713h-42.916712z" fill="#00a88a"/><path d="m42.9521838 49.3568579h-42.91671231v-49.26713035h42.91671231zm-40.37825665-46.72872807v44.19032577h37.83980095v-44.19032577z" fill="#000"/></g><path d="m22.936251 22.0604515v3.0096581h-4.7800913v6.8603307h-3.6292707v-6.8603307h-14.51708251v-2.7441844l15.18102761-21.9086215h2.9653256v21.6431478zm-19.16443702 0h10.75507502v-15.49083387z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1089.451732 203.121158)"/><g transform="translate(1138.52553 194.392443)"><path d="m.035471.089728h42.916712v49.26713h-42.916712z" fill="#00a88a"/><path d="m42.9521838 49.3568579h-42.91671231v-49.26713035h42.91671231zm-40.37825665-46.72872807v44.19032577h37.83980095v-44.19032577z" fill="#000"/></g><path d="m16.4136394 13.9290806c1.4900951.8410145 2.6336139 2.0140014 3.4302958 3.5187001.7966819 1.5049595 1.1948924 3.2456637 1.1948924 5.2226344s-.4352412 3.7325394-1.3057238 5.2669669c-.8702217 1.5344276-2.1097075 2.7220182-3.7176749 3.5630326-1.6082282.8407537-3.489232 1.2613913-5.643272 1.2613913-1.9177737 0-3.80607928-.346837-5.66517753-1.0402501-1.85883747-.6934131-3.42273314-1.6449981-4.69142622-2.854755l1.37196183-2.7882562c2.92125384 2.4195137 5.91604755 3.6292706 8.98464192 3.6292706 2.213237 0 3.9466395-.6269143 5.2007289-1.8810037 1.2538286-1.2540895 1.8810037-2.9580238 1.8810037-5.1120639 0-2.094843-.6196125-3.7841737-1.8588374-5.0677312-1.2394858-1.2835576-2.8917858-1.9253363-4.9571607-1.9253363-3.00965819 0-5.41456828 1.2246213-7.21446955 3.6736031h-2.52278251v-18.45642016h18.89896326v3.00965815h-15.26969262v11.24221151c1.74096506-1.6820289 3.96880576-2.5230433 6.68326132-2.5230433 1.9769707 0 3.7103731.4206376 5.2004681 1.2613912z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1148.445985 201.599599)"/><g transform="translate(957.360703 194.392443)"><path d="m.035471.089728h42.916712v49.26713h-42.916712z" fill="#00a88a"/><path d="m42.9521838 49.3568579h-42.91671231v-49.26713035h42.91671231zm-40.37816863-46.72872807v44.19032577h37.83971293v-44.19032577z" fill="#000"/></g><path d="m10.8395677 28.5428562h6.948735v3.0539907h-17.57107324v-3.0539907h6.94873503v-23.94452832l-6.46185939 4.11614628v-3.49653379l8.05522316-5.1342301h2.08023944z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(970.410431 203.121158)"/><g transform="translate(1231.099754 194.213333)"><path d="m.035471.089728h42.916712v49.26713h-42.916712z" fill="#00a88a"/><path d="m42.9521838 49.3568579h-42.91671231v-49.26713035h42.91671231zm-40.37816863-46.72872807v44.19032577h37.83971293v-44.19032577z" fill="#000"/></g><path d="m21.3648958 29.0644155v3.0539907h-20.27092509v-2.7441844l11.02080949-12.215702c1.4752306-1.6523 2.5522507-3.142395 3.2307994-4.4702851.6788094-1.3276293 1.0180838-2.6555193 1.0180838-3.98340939 0-1.74070428-.5017401-3.07589618-1.5049595-4.00531492-1.0032194-.92967951-2.4341174-1.39438888-4.2932157-1.39438888-3.0096581 0-5.98958737 1.20975688-8.94030931 3.62953142l-1.37222261-2.78851699c1.23948576-1.18028878 2.80312065-2.12431118 4.691687-2.83258875 1.88830558-.70827758 3.79147559-1.06215559 5.70951002-1.06215559 2.891525 0 5.1783019.74504751 6.8603307 2.23514253 1.6817681 1.49009502 2.5227826 3.50383562 2.5227826 6.04122179 0 1.79990128-.4057732 3.53356448-1.2173195 5.20072888-.8112856 1.6669037-2.1613419 3.5333038-4.0496475 5.5986787l-8.98464189 9.737252z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1241.784164 202.570441)"/><g transform="translate(1292.473373 194.213333)"><path d="m.035471.089728h42.916712v49.26713h-42.916712z" fill="#00a88a"/><path d="m42.9521838 49.3568579h-42.91671231v-49.26713035h42.91671231zm-40.37825665-46.72872807v44.19032577h37.83980095v-44.19032577z" fill="#000"/></g><path d="m23.0372759 21.726858v3.0096582h-4.7800914v6.8603307h-3.6292706v-6.8603307h-14.51708254v-2.7441845l15.18102754-21.90862143h2.9653256v21.64314773zm-19.16443705 0h10.75507505v-15.4908338z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1301.574474 203.100332)"/><g fill="#fff" fill-rule="nonzero" transform="translate(974.127869 141.527307)"><path d="m5.47365255 15.5387394v-13.14066544h-5.07689804v-1.43299542h11.85291919v1.43299542h-5.07689802v13.14066544z"/><path d="m21.1342453 10.3380383h-7.553933c.0136476 1.3111421.3173061 2.3005913.9109757 2.9683477.5936695.6677563 1.4568786 1.0040716 2.5896274 1.0040716 1.2009866 0 2.3064402-.4045531 3.3163608-1.2087853l.5527268 1.2087853c-.45037.4240497-1.02698.7554908-1.7298302 1.0040716-.7028501.2437067-1.4227597.3655601-2.1597288.3655601-1.6104139 0-2.8728146-.472791-3.7872021-1.418373-.9143876-.9504562-1.3715814-2.25185-1.3715814-3.9041814 0-1.04793885.2047137-1.97889846.6141409-2.79287884.4094273-.80910626.9826255-1.44274368 1.7195945-1.89116402.7369691-.45329446 1.576295-.67750463 2.5179777-.67750463 1.3647575 0 2.4360922.44842033 3.214004 1.34038686.7779118.89684067 1.1668677 2.12512245 1.1668677 3.69459363zm-6.4587151-3.27541805c-.5390792.52153234-.8836805 1.24777832-1.0338038 2.19336032h5.9981094c-.0818855-.96995267-.3650727-1.70594692-.8495616-2.21285686s-1.156632-.75549078-2.0164293-.75549078c-.8597972 0-1.5592354.25832911-2.0983147.77498732z"/><path d="m29.3842046 5.11784076-.0409427 1.51585569c-.3138943-.10723095-.675555-.16572056-1.0849823-.16572056-.996273 0-1.736654.31194458-2.2211429.93095961-.4844889.62388916-.7267334 1.37937994-.7267334 2.26647234v5.87333156h-1.6581804v-7.40868379c0-1.06743536-.0545903-2.02763977-.1637709-2.8903615h1.576295l.1637709 1.90578642c.2593039-.69700117.675555-1.22828178 1.2487531-1.59871597.5731982-.36556006 1.2282818-.55077715 1.9652509-.55077715.3411894 0 .6550836.03899307.9416827.12185335z"/><path d="m45.9045945 9.07076348v6.46797592h-1.6581804v-6.38511564c0-.96995268-.1671828-1.67182798-.5015484-2.11050005-.3343655-.43867206-.8768567-.65313396-1.6274733-.65313396-.8734448 0-1.5558236.29244804-2.0471363.87734413-.4913127.58977022-.7369691 1.38425407-.7369691 2.39807396v5.87333156h-1.6581804v-6.38511564c0-.95533028-.1705947-1.65720558-.5117841-2.10075178s-.8870924-.66288223-1.637709-.66288223c-.8734448 0-1.5592355.29244804-2.057372.87734413-.4981365.58977022-.7472047 1.38425407-.7472047 2.39807396v5.87333156h-1.6581805v-7.40868379c0-1.06743536-.0545903-2.02763977-.1637709-2.8903615h1.576295l.1637709 1.8034296c.2865991-.65313396.7130858-1.1600439 1.2794602-1.51585569s1.2248699-.53128061 1.9754865-.53128061c.8188545 0 1.4875857.16572056 2.0061936.49228754s.90074.83347692 1.1463963 1.51585569c.3138943-.61414089.7744999-1.1015543 1.381817-1.46711435.6073171-.36068592 1.2931078-.54102888 2.057372-.54102888 2.2791451 0 3.4187176 1.3598834 3.4187176 4.07477607z"/><path d="m60.3369055 14.1252405h3.214004v1.4134989h-8.1271311v-1.4134989h3.214004v-11.07403258l-2.988819 1.90578642v-1.61821251l3.725788-2.37370329h.9621541z"/><path d="m66.396429 5.46877841h2.1085503v2.12512245h-2.1085503zm0 7.95946089h2.1085503v1.4963592c0 .5751478-.095533 1.0966801-.286599 1.5743453-.1910661.4776651-.5117841.945582-.9621541 1.3940023l-.7779118-.5946443c.5322554-.6141409.8325021-1.199037.90074-1.7595624h-.9826254z"/><path d="m76.2226832 15.5387394 1.1463963-14.57366086h3.214004l-.962154 11.97574736h6.5098934l-.2047136 2.5979135z"/><path d="m87.6661752 15.5387394.8188545-10.37703143h3.0911758l-.8188545 10.37703143zm1.0645108-15.25116549h3.3163608l-.225185 2.9049839h-3.3163608z"/><path d="m92.6611877 14.4323109 1.0030968-2.1494931c.5731982.3948049 1.1873391.7018753 1.8424227.9114631.6550836.2144619 1.3101672.3168187 1.9652508.3168187.5731982 0 .996273-.0828603 1.2692246-.2437067.2729515-.1657206.4094272-.3850566.4094272-.6580081 0-.2826998-.160359-.5117841-.481077-.6726305-.320718-.1657206-.8427378-.3558118-1.5660593-.5751478-.7506166-.2047136-1.3647575-.4094273-1.8424227-.6141409-.4776651-.2047136-.8905043-.5069099-1.2385174-.91146307-.3480132-.399679-.5220198-.92121134-.5220198-1.56459704 0-.66775636.1876542-1.25752658.5629625-1.75956239.3753083-.50690994.9075638-.9017148 1.5967663-1.18928871.6892026-.28757391 1.4773501-.4289238 2.3644424-.4289238.7779118 0 1.5387642.11697922 2.2825572.34606352.743793.23395844 1.368169.54590302 1.87313.94558201l-.982626 2.06663284c-.50496-.37043419-1.037216-.64825983-1.5967662-.83835106-.5595506-.19496536-1.1054536-.28757391-1.637709-.28757391-.5595506 0-.9826255.08286028-1.2692245.2437067-.2865991.16572056-.4298987.38993073-.4298987.67750464 0 .29732218.1705947.53615474.5117841.7164977.3411894.17546883.8597973.36068592 1.5558236.55077715.7506166.21933604 1.3613456.4289238 1.8321867.63363743.470842.20471359.880269.51178409 1.228282.91146309.348013.4045531.52202.9260855.52202 1.5694711 0 1.0235682-.406016 1.8229262-1.218046 2.4029481-.812031.580022-1.9072489.87247-3.285654.87247-1.7741848 0-3.3573036-.4240496-4.7493563-1.272149z"/><path d="m107.666697 11.5078305c-.040943.5702737.075062.9943234.348013 1.2672749.272952.2729515.64826.4094272 1.125925.4094272.313894 0 .661907-.0536155 1.044039-.1657205l-.204713 2.3980739c-.464018.1900913-1.064511.2875739-1.80148.2875739-1.173692 0-2.07102-.3168187-2.691984-.945582-.620965-.6238891-.931447-1.5109815-.931447-2.6612772 0-.2290843.006823-.4094272.020471-.5312806l.327542-4.09427259h-1.965251l.184242-2.31033954h1.965251l.184242-2.43706703 3.173062-1.00407162-.266128 3.44113865h2.640806l-.184243 2.31033954h-2.640805z"/><path d="m110.962586 14.4323109 1.003097-2.1494931c.573198.3948049 1.187339.7018753 1.842423.9114631.655083.2144619 1.310167.3168187 1.965251.3168187.573198 0 .996273-.0828603 1.269224-.2437067.272952-.1657206.409427-.3850566.409427-.6580081 0-.2826998-.160359-.5117841-.481077-.6726305-.320718-.1657206-.842737-.3558118-1.566059-.5751478-.750617-.2047136-1.364757-.4094273-1.842423-.6141409-.477665-.2047136-.890504-.5069099-1.238517-.91146307-.348013-.399679-.52202-.92121134-.52202-1.56459704 0-.66775636.187654-1.25752658.562963-1.75956239.375308-.50690994.907563-.9017148 1.596766-1.18928871s1.47735-.4289238 2.364442-.4289238c.777912 0 1.538765.11697922 2.282557.34606352.743793.23395844 1.36817.54590302 1.87313.94558201l-.982625 2.06663284c-.504961-.37043419-1.037216-.64825983-1.596767-.83835106-.55955-.19496536-1.105453-.28757391-1.637709-.28757391-.55955 0-.982625.08286028-1.269224.2437067-.286599.16572056-.429899.38993073-.429899.67750464 0 .29732218.170595.53615474.511784.7164977.34119.17546883.859798.36068592 1.555824.55077715.750616.21933604 1.361345.4289238 1.832187.63363743.470841.20471359.880268.51178409 1.228282.91146309.348013.4045531.522019.9260855.522019 1.5694711 0 1.0235682-.406015 1.8229262-1.218046 2.4029481-.81203.580022-1.907248.87247-3.285653.87247-1.774185 0-3.357304-.4240496-4.749357-1.272149z"/><path d="m133.890513 14.1252405h3.214004v1.4134989h-8.127131v-1.4134989h3.214004v-11.07403258l-2.988819 1.90578642v-1.61821251l3.725788-2.37370329h.962154z"/><path d="m142.058587 13.4282393v1.4963592c0 .5751478-.095533 1.0966801-.286599 1.5743453-.191066.4776651-.511784.945582-.962154 1.3940023l-.777912-.5946443c.532255-.6141409.832502-1.199037.90074-1.7595624h-.982626v-2.1105001z"/><path d="m153.481607 9.31447018c.45037.59951849.675555 1.35988342.675555 2.27134652 0 1.2721489-.429898 2.2713464-1.289696 3.0024665-.859797.726246-2.026665 1.0918061-3.500603 1.0918061-.941682 0-1.845834-.1559723-2.712455-.4679169-.866621-.3168187-1.600178-.7603649-2.200672-1.3306386l.655084-1.2916455c1.35111 1.1210508 2.75681 1.6815762 4.217101 1.6815762 1.037215 0 1.825363-.2339584 2.364442-.6970012.539079-.4630427.808619-1.1454215.808619-2.0471363 0-1.78880715-1.119101-2.68077369-3.357304-2.68077369h-1.678651v-1.41349887h1.35111c1.078158 0 1.903836-.23883257 2.477034-.71649771.573199-.47766514.859798-1.1600439.859798-2.0471363 0-.79448385-.235421-1.39887648-.706262-1.82292614-.470842-.42404966-1.136161-.63363743-1.995958-.63363743-1.392053 0-2.770458.56052542-4.135216 1.67670212l-.634612-1.28677139c.586846-.56052542 1.306756-.99919749 2.159729-1.32089033.852973-.32169285 1.743478-.48253927 2.671513-.48253927 1.310167 0 2.357619.33631525 3.142354 1.00407161.784736.66775637 1.177103 1.56947117 1.177103 2.70027027 0 .83347692-.204713 1.56459703-.61414 2.19336032-.409428.62388916-.975802 1.07718363-1.699124 1.35013514.859798.2437067 1.514881.66775636 1.965251 1.26727485z"/><path d="m159.070289 13.4282393v1.4963592c0 .5751478-.095533 1.0966801-.286599 1.5743453-.191066.4776651-.511784.945582-.962154 1.3940023l-.777912-.5946443c.532256-.6141409.832503-1.199037.90074-1.7595624h-.982625v-2.1105001z"/><path d="m171.98772 10.9716758v1.3940023h-2.210908v3.1730613h-1.678651v-3.1730613h-6.714608v-1.2672749l7.021678-10.13332466h1.371581v10.00659726zm-8.864101 0h4.974542v-7.1649771z"/><path d="m176.081992 13.4282393v1.4963592c0 .5751478-.095533 1.0966801-.286599 1.5743453-.191066.4776651-.511784.945582-.962154 1.3940023l-.777912-.5946443c.532256-.6141409.832502-1.199037.90074-1.7595624h-.982625v-2.1105001z"/><path d="m186.553094 6.9700117c.689203.38993073 1.218046.93095961 1.586531 1.62796078.368484.69700117.552727 1.50123332.552727 2.41757052 0 .911463-.201302 1.7254434-.603905 2.437067-.402604.7067494-.975802 1.2575266-1.719595 1.6474573s-1.613826.580022-2.610099.580022c-.887092 0-1.760537-.1559723-2.620334-.4776652-.859797-.3216928-1.583119-.7603649-2.169965-1.3208903l.634613-1.2916455c1.35111 1.1210508 2.736338 1.6815762 4.155686 1.6815762 1.023568 0 1.825363-.292448 2.405385-.87247.580022-.5800219.870033-1.3696316.870033-2.363955 0-.9699527-.286599-1.74981412-.859797-2.34445848-.573198-.59464435-1.337462-.89196653-2.292793-.89196653-1.392052 0-2.50433.57027369-3.336832 1.70107279h-1.166867v-8.53460874h8.741272v1.38912821h-7.062621v5.20070104c.805207-.77986145 1.835599-1.16491804 3.091176-1.16491804.914388 0 1.716183.19496536 2.405385.58002195z"/></g><g fill="#fff" fill-rule="nonzero" transform="translate(1248.643217 141.651852)"><path d="m5.47365255 15.5387394v-13.14066544h-5.07689804v-1.43299542h11.85291919v1.43299542h-5.07689802v13.14066544z"/><path d="m21.1342453 10.3380383h-7.553933c.0136476 1.3111421.3173061 2.3005913.9109757 2.9683477.5936695.6677563 1.4568786 1.0040716 2.5896274 1.0040716 1.2009866 0 2.3064402-.4045531 3.3163608-1.2087853l.5527268 1.2087853c-.45037.4240497-1.02698.7554908-1.7298302 1.0040716-.7028501.2437067-1.4227597.3655601-2.1597288.3655601-1.6104139 0-2.8728146-.472791-3.7872021-1.418373-.9143876-.9504562-1.3715814-2.25185-1.3715814-3.9041814 0-1.04793885.2047137-1.97889846.6141409-2.79287884.4094273-.80910626.9826255-1.44274368 1.7195945-1.89116402.7369691-.45329446 1.576295-.67750463 2.5179777-.67750463 1.3647575 0 2.4360922.44842033 3.214004 1.34038686.7779118.89684067 1.1668677 2.12512245 1.1668677 3.69459363zm-6.4587151-3.27541805c-.5390792.52153234-.8836805 1.24777832-1.0338038 2.19336032h5.9981094c-.0818855-.96995267-.3650727-1.70594692-.8495616-2.21285686s-1.156632-.75549078-2.0164293-.75549078c-.8597972 0-1.5592354.25832911-2.0983147.77498732z"/><path d="m29.3842046 5.11784076-.0409427 1.51585569c-.3138943-.10723095-.675555-.16572056-1.0849823-.16572056-.996273 0-1.736654.31194458-2.2211429.93095961-.4844889.62388916-.7267334 1.37937994-.7267334 2.26647234v5.87333156h-1.6581804v-7.40868379c0-1.06743536-.0545903-2.02763977-.1637709-2.8903615h1.576295l.1637709 1.90578642c.2593039-.69700117.675555-1.22828178 1.2487531-1.59871597.5731982-.36556006 1.2282818-.55077715 1.9652509-.55077715.3411894 0 .6550836.03899307.9416827.12185335z"/><path d="m45.9045945 9.07076348v6.46797592h-1.6581804v-6.38511564c0-.96995268-.1671828-1.67182798-.5015484-2.11050005-.3343655-.43867206-.8768567-.65313396-1.6274733-.65313396-.8734448 0-1.5558236.29244804-2.0471363.87734413-.4913127.58977022-.7369691 1.38425407-.7369691 2.39807396v5.87333156h-1.6581804v-6.38511564c0-.95533028-.1705947-1.65720558-.5117841-2.10075178s-.8870924-.66288223-1.637709-.66288223c-.8734448 0-1.5592355.29244804-2.057372.87734413-.4981365.58977022-.7472047 1.38425407-.7472047 2.39807396v5.87333156h-1.6581805v-7.40868379c0-1.06743536-.0545903-2.02763977-.1637709-2.8903615h1.576295l.1637709 1.8034296c.2865991-.65313396.7130858-1.1600439 1.2794602-1.51585569s1.2248699-.53128061 1.9754865-.53128061c.8188545 0 1.4875857.16572056 2.0061936.49228754s.90074.83347692 1.1463963 1.51585569c.3138943-.61414089.7744999-1.1015543 1.381817-1.46711435.6073171-.36068592 1.2931078-.54102888 2.057372-.54102888 2.2791451 0 3.4187176 1.3598834 3.4187176 4.07477607z"/><path d="m63.8784513 14.1252405v1.4134989h-9.3758843v-1.2672749l5.0973694-5.65399549c.6823788-.76036491 1.1805153-1.45249195 1.4944095-2.06663284.3138943-.61414089.4708414-1.22828178.4708414-1.84242267 0-.80423212-.2320088-1.42324715-.6960264-1.85217094-.4640175-.4289238-1.1259249-.6433857-1.9857222-.6433857-1.3920527 0-2.7704578.56052542-4.1352153 1.67670212l-.6346123-1.28677139c.5731982-.54590302 1.2965197-.98457508 2.1699645-1.31114206.8734448-.32656699 1.7537134-.49228754 2.6408058-.49228754 1.3374624 0 2.3951495.34606351 3.1730613 1.03331642.7779118.6872529 1.1668677 1.62308664 1.1668677 2.79287881 0 .83347692-.1876542 1.63770904-.5629625 2.40782222-.3753083.77011319-.9996849 1.63283491-1.8731297 2.58816519l-4.1556867 4.50369987z"/><path d="m66.396429 5.46877841h2.1085503v2.12512245h-2.1085503zm0 7.95946089h2.1085503v1.4963592c0 .5751478-.095533 1.0966801-.286599 1.5743453-.1910661.4776651-.5117841.945582-.9621541 1.3940023l-.7779118-.5946443c.5322554-.6141409.8325021-1.199037.90074-1.7595624h-.9826254z"/><path d="m76.2226832 15.5387394 1.1463963-14.57366086h3.214004l-.962154 11.97574736h6.5098934l-.2047136 2.5979135z"/><path d="m87.6661752 15.5387394.8188545-10.37703143h3.0911758l-.8188545 10.37703143zm1.0645108-15.25116549h3.3163608l-.225185 2.9049839h-3.3163608z"/><path d="m92.6611877 14.4323109 1.0030968-2.1494931c.5731982.3948049 1.1873391.7018753 1.8424227.9114631.6550836.2144619 1.3101672.3168187 1.9652508.3168187.5731982 0 .996273-.0828603 1.2692246-.2437067.2729515-.1657206.4094272-.3850566.4094272-.6580081 0-.2826998-.160359-.5117841-.481077-.6726305-.320718-.1657206-.8427378-.3558118-1.5660593-.5751478-.7506166-.2047136-1.3647575-.4094273-1.8424227-.6141409-.4776651-.2047136-.8905043-.5069099-1.2385174-.91146307-.3480132-.399679-.5220198-.92121134-.5220198-1.56459704 0-.66775636.1876542-1.25752658.5629625-1.75956239.3753083-.50690994.9075638-.9017148 1.5967663-1.18928871.6892026-.28757391 1.4773501-.4289238 2.3644424-.4289238.7779118 0 1.5387642.11697922 2.2825572.34606352.743793.23395844 1.368169.54590302 1.87313.94558201l-.982626 2.06663284c-.50496-.37043419-1.037216-.64825983-1.5967662-.83835106-.5595506-.19496536-1.1054536-.28757391-1.637709-.28757391-.5595506 0-.9826255.08286028-1.2692245.2437067-.2865991.16572056-.4298987.38993073-.4298987.67750464 0 .29732218.1705947.53615474.5117841.7164977.3411894.17546883.8597973.36068592 1.5558236.55077715.7506166.21933604 1.3613456.4289238 1.8321867.63363743.470842.20471359.880269.51178409 1.228282.91146309.348013.4045531.52202.9260855.52202 1.5694711 0 1.0235682-.406016 1.8229262-1.218046 2.4029481-.812031.580022-1.9072489.87247-3.285654.87247-1.7741848 0-3.3573036-.4240496-4.7493563-1.272149z"/><path d="m107.666697 11.5078305c-.040943.5702737.075062.9943234.348013 1.2672749.272952.2729515.64826.4094272 1.125925.4094272.313894 0 .661907-.0536155 1.044039-.1657205l-.204713 2.3980739c-.464018.1900913-1.064511.2875739-1.80148.2875739-1.173692 0-2.07102-.3168187-2.691984-.945582-.620965-.6238891-.931447-1.5109815-.931447-2.6612772 0-.2290843.006823-.4094272.020471-.5312806l.327542-4.09427259h-1.965251l.184242-2.31033954h1.965251l.184242-2.43706703 3.173062-1.00407162-.266128 3.44113865h2.640806l-.184243 2.31033954h-2.640805z"/><path d="m110.962586 14.4323109 1.003097-2.1494931c.573198.3948049 1.187339.7018753 1.842423.9114631.655083.2144619 1.310167.3168187 1.965251.3168187.573198 0 .996273-.0828603 1.269224-.2437067.272952-.1657206.409427-.3850566.409427-.6580081 0-.2826998-.160359-.5117841-.481077-.6726305-.320718-.1657206-.842737-.3558118-1.566059-.5751478-.750617-.2047136-1.364757-.4094273-1.842423-.6141409-.477665-.2047136-.890504-.5069099-1.238517-.91146307-.348013-.399679-.52202-.92121134-.52202-1.56459704 0-.66775636.187654-1.25752658.562963-1.75956239.375308-.50690994.907563-.9017148 1.596766-1.18928871s1.47735-.4289238 2.364442-.4289238c.777912 0 1.538765.11697922 2.282557.34606352.743793.23395844 1.36817.54590302 1.87313.94558201l-.982625 2.06663284c-.504961-.37043419-1.037216-.64825983-1.596767-.83835106-.55955-.19496536-1.105453-.28757391-1.637709-.28757391-.55955 0-.982625.08286028-1.269224.2437067-.286599.16572056-.429899.38993073-.429899.67750464 0 .29732218.170595.53615474.511784.7164977.34119.17546883.859798.36068592 1.555824.55077715.750616.21933604 1.361345.4289238 1.832187.63363743.470841.20471359.880268.51178409 1.228282.91146309.348013.4045531.522019.9260855.522019 1.5694711 0 1.0235682-.406015 1.8229262-1.218046 2.4029481-.81203.580022-1.907248.87247-3.285653.87247-1.774185 0-3.357304-.4240496-4.749357-1.272149z"/><path d="m137.432059 14.1252405v1.4134989h-9.375885v-1.2672749l5.09737-5.65399549c.682379-.76036491 1.180515-1.45249195 1.494409-2.06663284.313895-.61414089.470842-1.22828178.470842-1.84242267 0-.80423212-.232009-1.42324715-.696027-1.85217094-.464017-.4289238-1.125925-.6433857-1.985722-.6433857-1.392053 0-2.770458.56052542-4.135215 1.67670212l-.634612-1.28677139c.573198-.54590302 1.296519-.98457508 2.169964-1.31114206.873445-.32656699 1.753713-.49228754 2.640806-.49228754 1.337462 0 2.395149.34606351 3.173061 1.03331642.777912.6872529 1.166868 1.62308664 1.166868 2.79287881 0 .83347692-.187654 1.63770904-.562963 2.40782222-.375308.77011319-.999685 1.63283491-1.873129 2.58816519l-4.155687 4.50369987z"/><path d="m142.058587 13.4282393v1.4963592c0 .5751478-.095533 1.0966801-.286599 1.5743453-.191066.4776651-.511784.945582-.962154 1.3940023l-.777912-.5946443c.532255-.6141409.832502-1.199037.90074-1.7595624h-.982626v-2.1105001z"/><path d="m154.976017 10.9716758v1.3940023h-2.210907v3.1730613h-1.678652v-3.1730613h-6.714607v-1.2672749l7.021677-10.13332466h1.371582v10.00659726zm-8.8641 0h4.974541v-7.1649771z"/><path d="m159.070289 13.4282393v1.4963592c0 .5751478-.095533 1.0966801-.286599 1.5743453-.191066.4776651-.511784.945582-.962154 1.3940023l-.777912-.5946443c.532256-.6141409.832503-1.199037.90074-1.7595624h-.982625v-2.1105001z"/><path d="m169.541392 6.9700117c.689202.38993073 1.218046.93095961 1.58653 1.62796078.368485.69700117.552727 1.50123332.552727 2.41757052 0 .911463-.201302 1.7254434-.603905 2.437067-.402604.7067494-.975802 1.2575266-1.719595 1.6474573-.743792.3899307-1.613825.580022-2.610098.580022-.887093 0-1.760538-.1559723-2.620335-.4776652-.859797-.3216928-1.583119-.7603649-2.169964-1.3208903l.634612-1.2916455c1.35111 1.1210508 2.736339 1.6815762 4.155687 1.6815762 1.023568 0 1.825363-.292448 2.405385-.87247.580022-.5800219.870033-1.3696316.870033-2.363955 0-.9699527-.286599-1.74981412-.859798-2.34445848-.573198-.59464435-1.337462-.89196653-2.292792-.89196653-1.392053 0-2.50433.57027369-3.336832 1.70107279h-1.166868v-8.53460874h8.741272v1.38912821h-7.06262v5.20070104c.805207-.77986145 1.835599-1.16491804 3.091175-1.16491804.914388 0 1.716183.19496536 2.405386.58002195z"/><path d="m176.081992 13.4282393v1.4963592c0 .5751478-.095533 1.0966801-.286599 1.5743453-.191066.4776651-.511784.945582-.962154 1.3940023l-.777912-.5946443c.532256-.6141409.832502-1.199037.90074-1.7595624h-.982625v-2.1105001z"/><path d="m187.965618 9.38758219c.525432.63363741.788148 1.39400231.788148 2.28109471 0 1.2429042-.470842 2.2226052-1.412524 2.9391029-.941683.7164977-2.210907 1.0723095-3.807674 1.0723095-1.596766 0-2.865991-.3558118-3.807673-1.0723095-.941683-.7164977-1.412524-1.6961987-1.412524-2.9391029 0-.8870924.269539-1.6523314.808619-2.29084297.539079-.6433857 1.27946-1.0869319 2.221142-1.3306386-.873444-.25832911-1.542176-.6872529-2.006193-1.28189726-.464018-.59464435-.696026-1.29164552-.696026-2.09587764 0-.77986145.204713-1.45736609.61414-2.03738804.409428-.58002195.986038-1.02844229 1.729831-1.35013513.743792-.32169285 1.593354-.48253927 2.548684-.48253927.955331 0 1.804892.16084642 2.548685.48253927.743793.32169284 1.320403.77011318 1.72983 1.35013513s.614141 1.25752659.614141 2.03738804c0 .80423212-.235421 1.50123329-.706262 2.09587764-.470841.59464436-1.129337 1.02356815-1.975487 1.28189726.955331.2583291 1.695712.70674944 2.221143 1.34038686zm-6.776021-2.7051444c.580022.48741341 1.361346.78473559 2.343971.89196653.982626-.10723094 1.763949-.40455312 2.343971-.89196653.580022-.48253927.870033-1.11130256.870033-1.89116401 0-.80423212-.283187-1.43786955-.849561-1.90578642-.566375-.46304273-1.354522-.69212703-2.364443-.69212703-1.00992 0-1.798068.2290843-2.364442.69212703-.566375.46791687-.849562 1.1015543-.849562 1.90578642 0 .77986145.290011 1.40862474.870033 1.89116401zm4.984777 6.91152211c.614141-.4630428.921211-1.1405474.921211-2.0276398 0-.8042321-.324129-1.4476178-.972389-1.9350312-.64826-.48253927-1.511469-.77986145-2.589628-.8870924-1.078158.10723095-1.941367.40455313-2.589627.8870924-.64826.4874134-.97239 1.1307991-.97239 1.9350312 0 .8870924.307071 1.564597.921211 2.0276398.614141.4630427 1.49441.6970012 2.640806.6970012 1.146397 0 2.026665-.2339585 2.640806-.6970012z"/></g><g fill="#fff" fill-rule="nonzero" transform="translate(1520.629778 141.651852)"><path d="m5.47365255 15.5387394v-13.14066544h-5.07689804v-1.43299542h11.85291919v1.43299542h-5.07689802v13.14066544z"/><path d="m21.1342453 10.3380383h-7.553933c.0136476 1.3111421.3173061 2.3005913.9109757 2.9683477.5936695.6677563 1.4568786 1.0040716 2.5896274 1.0040716 1.2009866 0 2.3064402-.4045531 3.3163608-1.2087853l.5527268 1.2087853c-.45037.4240497-1.02698.7554908-1.7298302 1.0040716-.7028501.2437067-1.4227597.3655601-2.1597288.3655601-1.6104139 0-2.8728146-.472791-3.7872021-1.418373-.9143876-.9504562-1.3715814-2.25185-1.3715814-3.9041814 0-1.04793885.2047137-1.97889846.6141409-2.79287884.4094273-.80910626.9826255-1.44274368 1.7195945-1.89116402.7369691-.45329446 1.576295-.67750463 2.5179777-.67750463 1.3647575 0 2.4360922.44842033 3.214004 1.34038686.7779118.89684067 1.1668677 2.12512245 1.1668677 3.69459363zm-6.4587151-3.27541805c-.5390792.52153234-.8836805 1.24777832-1.0338038 2.19336032h5.9981094c-.0818855-.96995267-.3650727-1.70594692-.8495616-2.21285686s-1.156632-.75549078-2.0164293-.75549078c-.8597972 0-1.5592354.25832911-2.0983147.77498732z"/><path d="m29.3842046 5.11784076-.0409427 1.51585569c-.3138943-.10723095-.675555-.16572056-1.0849823-.16572056-.996273 0-1.736654.31194458-2.2211429.93095961-.4844889.62388916-.7267334 1.37937994-.7267334 2.26647234v5.87333156h-1.6581804v-7.40868379c0-1.06743536-.0545903-2.02763977-.1637709-2.8903615h1.576295l.1637709 1.90578642c.2593039-.69700117.675555-1.22828178 1.2487531-1.59871597.5731982-.36556006 1.2282818-.55077715 1.9652509-.55077715.3411894 0 .6550836.03899307.9416827.12185335z"/><path d="m45.9045945 9.07076348v6.46797592h-1.6581804v-6.38511564c0-.96995268-.1671828-1.67182798-.5015484-2.11050005-.3343655-.43867206-.8768567-.65313396-1.6274733-.65313396-.8734448 0-1.5558236.29244804-2.0471363.87734413-.4913127.58977022-.7369691 1.38425407-.7369691 2.39807396v5.87333156h-1.6581804v-6.38511564c0-.95533028-.1705947-1.65720558-.5117841-2.10075178s-.8870924-.66288223-1.637709-.66288223c-.8734448 0-1.5592355.29244804-2.057372.87734413-.4981365.58977022-.7472047 1.38425407-.7472047 2.39807396v5.87333156h-1.6581805v-7.40868379c0-1.06743536-.0545903-2.02763977-.1637709-2.8903615h1.576295l.1637709 1.8034296c.2865991-.65313396.7130858-1.1600439 1.2794602-1.51585569s1.2248699-.53128061 1.9754865-.53128061c.8188545 0 1.4875857.16572056 2.0061936.49228754s.90074.83347692 1.1463963 1.51585569c.3138943-.61414089.7744999-1.1015543 1.381817-1.46711435.6073171-.36068592 1.2931078-.54102888 2.057372-.54102888 2.2791451 0 3.4187176 1.3598834 3.4187176 4.07477607z"/><path d="m62.9162972 9.31447018c.45037.59951849.675555 1.35988342.675555 2.27134652 0 1.2721489-.4298986 2.2713464-1.2896959 3.0024665-.8597972.726246-2.0266649 1.0918061-3.500603 1.0918061-.9416827 0-1.8458346-.1559723-2.7124556-.4679169-.8666211-.3168187-1.6001782-.7603649-2.2006716-1.3306386l.6550837-1.2916455c1.3511099 1.1210508 2.7568102 1.6815762 4.2171007 1.6815762 1.0372158 0 1.8253632-.2339584 2.3644425-.6970012.5390792-.4630427.8086188-1.1454215.8086188-2.0471363 0-1.78880715-1.1191012-2.68077369-3.3573035-2.68077369h-1.6786518v-1.41349887h1.35111c1.0781584 0 1.9038367-.23883257 2.4770349-.71649771s.8597972-1.1600439.8597972-2.0471363c0-.79448385-.2354206-1.39887648-.706262-1.82292614-.4708413-.42404966-1.1361606-.63363743-1.9959579-.63363743-1.3920527 0-2.7704578.56052542-4.1352153 1.67670212l-.6346123-1.28677139c.5868458-.56052542 1.3067554-.99919749 2.1597288-1.32089033.8529735-.32169285 1.7434778-.48253927 2.6715129-.48253927 1.3101672 0 2.3576186.33631525 3.1423542 1.00407161.7847356.66775637 1.1771034 1.56947117 1.1771034 2.70027027 0 .83347692-.2047136 1.56459703-.6141409 2.19336032-.4094272.62388916-.9758016 1.07718363-1.6991231 1.35013514.8597972.2437067 1.5148808.66775636 1.9652508 1.26727485z"/><path d="m66.396429 5.46877841h2.1085503v2.12512245h-2.1085503zm0 7.95946089h2.1085503v1.4963592c0 .5751478-.095533 1.0966801-.286599 1.5743453-.1910661.4776651-.5117841.945582-.9621541 1.3940023l-.7779118-.5946443c.5322554-.6141409.8325021-1.199037.90074-1.7595624h-.9826254z"/><path d="m76.2226832 15.5387394 1.1463963-14.57366086h3.214004l-.962154 11.97574736h6.5098934l-.2047136 2.5979135z"/><path d="m87.6661752 15.5387394.8188545-10.37703143h3.0911758l-.8188545 10.37703143zm1.0645108-15.25116549h3.3163608l-.225185 2.9049839h-3.3163608z"/><path d="m92.6611877 14.4323109 1.0030968-2.1494931c.5731982.3948049 1.1873391.7018753 1.8424227.9114631.6550836.2144619 1.3101672.3168187 1.9652508.3168187.5731982 0 .996273-.0828603 1.2692246-.2437067.2729515-.1657206.4094272-.3850566.4094272-.6580081 0-.2826998-.160359-.5117841-.481077-.6726305-.320718-.1657206-.8427378-.3558118-1.5660593-.5751478-.7506166-.2047136-1.3647575-.4094273-1.8424227-.6141409-.4776651-.2047136-.8905043-.5069099-1.2385174-.91146307-.3480132-.399679-.5220198-.92121134-.5220198-1.56459704 0-.66775636.1876542-1.25752658.5629625-1.75956239.3753083-.50690994.9075638-.9017148 1.5967663-1.18928871.6892026-.28757391 1.4773501-.4289238 2.3644424-.4289238.7779118 0 1.5387642.11697922 2.2825572.34606352.743793.23395844 1.368169.54590302 1.87313.94558201l-.982626 2.06663284c-.50496-.37043419-1.037216-.64825983-1.5967662-.83835106-.5595506-.19496536-1.1054536-.28757391-1.637709-.28757391-.5595506 0-.9826255.08286028-1.2692245.2437067-.2865991.16572056-.4298987.38993073-.4298987.67750464 0 .29732218.1705947.53615474.5117841.7164977.3411894.17546883.8597973.36068592 1.5558236.55077715.7506166.21933604 1.3613456.4289238 1.8321867.63363743.470842.20471359.880269.51178409 1.228282.91146309.348013.4045531.52202.9260855.52202 1.5694711 0 1.0235682-.406016 1.8229262-1.218046 2.4029481-.812031.580022-1.9072489.87247-3.285654.87247-1.7741848 0-3.3573036-.4240496-4.7493563-1.272149z"/><path d="m107.666697 11.5078305c-.040943.5702737.075062.9943234.348013 1.2672749.272952.2729515.64826.4094272 1.125925.4094272.313894 0 .661907-.0536155 1.044039-.1657205l-.204713 2.3980739c-.464018.1900913-1.064511.2875739-1.80148.2875739-1.173692 0-2.07102-.3168187-2.691984-.945582-.620965-.6238891-.931447-1.5109815-.931447-2.6612772 0-.2290843.006823-.4094272.020471-.5312806l.327542-4.09427259h-1.965251l.184242-2.31033954h1.965251l.184242-2.43706703 3.173062-1.00407162-.266128 3.44113865h2.640806l-.184243 2.31033954h-2.640805z"/><path d="m110.962586 14.4323109 1.003097-2.1494931c.573198.3948049 1.187339.7018753 1.842423.9114631.655083.2144619 1.310167.3168187 1.965251.3168187.573198 0 .996273-.0828603 1.269224-.2437067.272952-.1657206.409427-.3850566.409427-.6580081 0-.2826998-.160359-.5117841-.481077-.6726305-.320718-.1657206-.842737-.3558118-1.566059-.5751478-.750617-.2047136-1.364757-.4094273-1.842423-.6141409-.477665-.2047136-.890504-.5069099-1.238517-.91146307-.348013-.399679-.52202-.92121134-.52202-1.56459704 0-.66775636.187654-1.25752658.562963-1.75956239.375308-.50690994.907563-.9017148 1.596766-1.18928871s1.47735-.4289238 2.364442-.4289238c.777912 0 1.538765.11697922 2.282557.34606352.743793.23395844 1.36817.54590302 1.87313.94558201l-.982625 2.06663284c-.504961-.37043419-1.037216-.64825983-1.596767-.83835106-.55955-.19496536-1.105453-.28757391-1.637709-.28757391-.55955 0-.982625.08286028-1.269224.2437067-.286599.16572056-.429899.38993073-.429899.67750464 0 .29732218.170595.53615474.511784.7164977.34119.17546883.859798.36068592 1.555824.55077715.750616.21933604 1.361345.4289238 1.832187.63363743.470841.20471359.880268.51178409 1.228282.91146309.348013.4045531.522019.9260855.522019 1.5694711 0 1.0235682-.406015 1.8229262-1.218046 2.4029481-.81203.580022-1.907248.87247-3.285653.87247-1.774185 0-3.357304-.4240496-4.749357-1.272149z"/><path d="m137.964314 10.9716758v1.3940023h-2.210907v3.1730613h-1.678652v-3.1730613h-6.714607v-1.2672749l7.021678-10.13332466h1.371581v10.00659726zm-8.8641 0h4.974541v-7.1649771z"/><path d="m142.058587 13.4282393v1.4963592c0 .5751478-.095533 1.0966801-.286599 1.5743453-.191066.4776651-.511784.945582-.962154 1.3940023l-.777912-.5946443c.532255-.6141409.832502-1.199037.90074-1.7595624h-.982626v-2.1105001z"/><path d="m152.488746 6.9700117c.689203.38993073 1.22487.93583374 1.607002 1.63770904.382132.70674944.573198 1.50610746.573198 2.40782226s-.201301 1.7059469-.603905 2.4126963c-.402603.7116236-.958742 1.2672749-1.668416 1.671828-.709674.399679-1.514881.6043926-2.415621.6043926-1.760537 0-3.118471-.6141409-4.073801-1.8424226-.95533-1.2282818-1.432995-2.978096-1.432995-5.24456829 0-1.63770904.221773-3.04145965.665319-4.21612596.443546-1.1746663 1.084982-2.06663284 1.924308-2.68077373s1.845835-.92121133 3.019526-.92121133c.84615 0 1.668416.15597229 2.466799.472791.798383.31194458 1.497822.75549078 2.098315 1.3306386l-.634612 1.28677139c-.682379-.57027369-1.337463-.99432335-1.965251-1.26727486-.627789-.2729515-1.269225-.40942726-1.924308-.40942726-1.255577 0-2.231379.56052542-2.927405 1.67670212-.696026 1.12105083-1.04404 2.690522-1.04404 4.7084135v.30707044c.313895-.77498731.825679-1.3891282 1.535353-1.84242267.709674-.44842033 1.521704-.6726305 2.436092-.6726305.887092 0 1.67524.19496536 2.364442.58002195zm-.337777 6.4289828c.573198-.5946443.859797-1.3793799.859797-2.363955 0-.9699527-.290011-1.74981412-.870033-2.34445848-.580022-.59464435-1.33405-.89196653-2.262086-.89196653-.95533 0-1.733242.30219631-2.333735.9017148s-.90074 1.37937991-.90074 2.33471021c0 .9699527.300247 1.7546883.90074 2.3542068.600493.5995184 1.385229.9017148 2.354207.9017148.928035 0 1.678652-.2973222 2.25185-.8919666z"/><path d="m159.070289 13.4282393v1.4963592c0 .5751478-.095533 1.0966801-.286599 1.5743453-.191066.4776651-.511784.945582-.962154 1.3940023l-.777912-.5946443c.532256-.6141409.832503-1.199037.90074-1.7595624h-.982625v-2.1105001z"/><path d="m161.711095.96507854h9.621541v1.24777832l-6.837435 13.32588254h-1.80148l6.796492-13.16503611h-7.779118z"/><path d="m176.081992 13.4282393v1.4963592c0 .5751478-.095533 1.0966801-.286599 1.5743453-.191066.4776651-.511784.945582-.962154 1.3940023l-.777912-.5946443c.532256-.6141409.832502-1.199037.90074-1.7595624h-.982625v-2.1105001z"/><path d="m187.157 2.64178066c.95533 1.22828178 1.432995 2.97322177 1.432995 5.23969411 0 2.47118593-.494725 4.39159483-1.484174 5.76610063-.989449 1.3696316-2.371266 2.0568845-4.145451 2.0568845-.832502 0-1.647945-.1608464-2.446328-.472791s-1.504645-.7554908-2.118786-1.3306386l.655084-1.2916455c.696026.5897702 1.357934 1.0138199 1.985722 1.2818973.627788.2680773 1.262401.399679 1.903837.399679 1.255577 0 2.227966-.5605255 2.917169-1.6815763.689203-1.1161767 1.033804-2.68564786 1.033804-4.70841349v-.26320324c-.313894.76523904-.825679 1.36963167-1.535352 1.80830373-.709674.44842034-1.521705.6677564-2.436093.6677564-.887092 0-1.671828-.19496539-2.354206-.58489612-.682379-.38505659-1.214635-.93583374-1.596767-1.63770904-.382132-.70187531-.573198-1.50123329-.573198-2.40294809s.201302-1.70594692.603905-2.41757049c.402604-.70674944.958743-1.26727486 1.668416-1.66695385.709674-.40455313 1.514881-.60439262 2.415621-.60439262 1.760538 0 3.118471.61414089 4.073802 1.84242267zm-1.63771 5.15683383c.600494-.59951849.90074-1.3745058.90074-2.32983608 0-.96995268-.300246-1.75468826-.90074-2.35420675-.600493-.60439262-1.385228-.9017148-2.354206-.9017148-.928035 0-1.678652.29732218-2.25185.89196653-.573198.58977023-.859797 1.37937994-.859797 2.36395502 0 .96507855.286599 1.74981413.859797 2.34445848.573198.58977022 1.330638.8870924 2.272321.8870924.95533 0 1.733242-.29732218 2.333735-.9017148z"/></g><g transform="translate(1352.227084 194.213333)"><path d="m.035471.089728h42.916712v49.26713h-42.916712z" fill="#00a88a"/><path d="m42.9521838 49.3568579h-42.91671231v-49.26713035h42.91671231zm-40.37825665-46.72872807v44.19032577h37.83980095v-44.19032577z" fill="#000"/></g><path d="m16.4442443 13.0739279c1.490095.8410144 2.6336139 2.0140013 3.4302957 3.5187.7966819 1.5049595 1.1948925 3.2456638 1.1948925 5.2226344 0 1.9769707-.4352413 3.7325394-1.3057238 5.266967-.8702218 1.5344275-2.1097075 2.7220182-3.717675 3.5630326-1.6082282.8407536-3.4892319 1.2613912-5.643272 1.2613912-1.91777365 0-3.80607922-.3468369-5.66517747-1.0402501-1.85883748-.6934131-3.42273314-1.6449981-4.69142623-2.854755l1.37196183-2.7882562c2.92125384 2.4195138 5.91604755 3.6292706 8.98464187 3.6292706 2.2132371 0 3.9466395-.6269143 5.2007289-1.8810037 1.2538287-1.2540894 1.8810038-2.9580238 1.8810038-5.1120638 0-2.0948431-.6196125-3.7841738-1.8588375-5.0677313-1.2394857-1.2835575-2.8917857-1.9253363-4.9571607-1.9253363-3.00965814 0-5.41456823 1.2246213-7.2144695 3.6736032h-2.52278251v-18.45642023h18.89896331v3.00965815h-15.26969267v11.24221148c1.74096506-1.6820289 3.96880577-2.5230433 6.68326137-2.5230433 1.9769706 0 3.7103731.4206376 5.2004681 1.2613913z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1362.630417 203.100332)"/><g transform="translate(1412.266122 194.392443)"><path d="m.035471.089728h42.916712v49.26713h-42.916712z" fill="#00a88a"/><path d="m42.9521838 49.3568579h-42.91671231v-49.26713035h42.91671231zm-40.37825665-46.72872807v44.19032577h37.83980095v-44.19032577z" fill="#000"/></g><path d="m21.062913 18.8183824c1.1359562 1.3719618 1.7039343 3.01696 1.7039343 4.9347336 0 2.6852483-1.017823 4.8022576-3.0537299 6.3512889-2.0361676 1.549292-4.7800913 2.3238076-8.2322925 2.3238076-3.45246205 0-6.19638571-.7745156-8.23229258-2.3238076-2.03616764-1.5490313-3.05399069-3.6660406-3.05399069-6.3512889 0-1.9177736.58258178-3.5700736 1.7482669-4.9568999 1.16542433-1.3868263 2.76608993-2.3459739 4.8019968-2.8769213-1.88830558-.5606763-3.33406805-1.4827932-4.33728744-2.7663507-1.00321938-1.2835575-1.50495946-2.795558-1.50495946-4.5365231 0-1.68176807.44280388-3.1499576 1.32789007-4.40378625.88508619-1.25408942 2.13187378-2.2278407 3.73984121-2.92125383 1.60822822-.69341314 3.44489942-1.03998932 5.51053519-1.03998932 2.0653749 0 3.9020461.34657618 5.5102744 1.03998932 1.6079674.69341313 2.854755 1.66716441 3.7398412 2.92125383.8853469 1.25382865 1.32789 2.72201818 1.32789 4.40378625 0 1.7409651-.5090419 3.2529656-1.5271257 4.5365231-1.017823 1.2835575-2.4414192 2.2056744-4.2710494 2.7663507 2.0656358.5606763 3.6663014 1.526865 4.8022576 2.8990876zm-14.64981941-5.8425077c1.25382864 1.0475519 2.94315933 1.6893307 5.06773131 1.9253363 2.1243111-.2360056 3.8136418-.8777844 5.0677313-1.9253363 1.2538286-1.0472911 1.8810037-2.4119511 1.8810037-4.09397999 0-1.74070429-.6123107-3.1129269-1.836932-4.11614628-1.2243605-1.00321938-2.9285556-1.50469868-5.111803-1.50469868-2.18350818 0-3.88770331.5014793-5.11206385 1.50469868-1.22462132 1.00321938-1.83693198 2.37544199-1.83693198 4.11614628 0 1.68202889.6271751 3.04668889 1.88126452 4.09397999zm10.77724131 14.9377202c1.3276293-1.0032194 1.9915743-2.4638463 1.9915743-4.38162 0-1.7409651-.7007149-3.1350932-2.1024056-4.1826451-1.40143-1.0475519-3.2678301-1.6893307-5.5986787-1.9253363-2.33110948.2360056-4.19750956.8777844-5.59893949 1.9253363-1.40169072 1.0475519-2.10240568 2.44168-2.10240568 4.1826451 0 1.9177737.66394503 3.3784006 1.9918351 4.38162 1.32762929 1.0032193 3.2307993 1.5049594 5.70951007 1.5049594 2.4784499 0 4.38162-.5017401 5.70951-1.5049594z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1421.105194 202.753717)"/><g transform="translate(1503.787344 194.392443)"><path d="m.035471.089728h42.916712v49.26713h-42.916712z" fill="#00a88a"/><path d="m42.9521838 49.3568579h-42.91671231v-49.26713035h42.91671231zm-40.37816863-46.72872807v44.19032577h37.83971293v-44.19032577z" fill="#000"/></g><path d="m23.0372759 21.726858v3.0096582h-4.7800914v6.8603307h-3.6292706v-6.8603307h-14.51708254v-2.7441845l15.18102754-21.90862143h2.9653256v21.64314773zm-19.16443705 0h10.75507505v-15.4908338z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1512.887196 203.275277)"/><g transform="translate(1565.163879 194.392443)"><path d="m.035471.089728h42.916712v49.26713h-42.916712z" fill="#00a88a"/><path d="m42.9521838 49.3568579h-42.91671231v-49.26713035h42.91671231zm-40.37816863-46.72872807v44.19032577h37.83971293v-44.19032577z" fill="#000"/></g><path d="m17.3989587 13.5954872c1.490095.8410144 2.6482175 2.0213032 3.4743675 3.5408663.82615 1.5195632 1.239225 3.2532264 1.239225 5.2004682 0 1.9475025-.4352413 3.6884676-1.3057238 5.2226344-.8702218 1.5344275-2.0726768 2.7368826-3.6071044 3.6073651-1.5341668.8702218-3.2751319 1.305463-5.2226344 1.305463-3.80634005 0-6.74219755-1.3276293-8.80757252-3.9834094-2.06563575-2.6555193-3.09832323-6.4323913-3.09832323-11.330355 0-3.5408663.47957381-6.5799926 1.43846065-9.11737874.95888684-2.53764695 2.34571311-4.47028507 4.16047882-5.79817514 1.81450493-1.32789007 3.99071125-1.99157432 6.52835818-1.99157432 1.8293694 0 3.6071044.33927435 5.333205 1.01782304 1.7261006.67880948 3.2383619 1.63769632 4.5365231 2.8769213l-1.3719618 2.78851699c-1.4752306-1.23948576-2.891525-2.15404006-4.2488832-2.74418445-1.3573581-.59014439-2.7441844-.88534697-4.1604788-.88534697-2.71445553 0-4.82416305 1.20975688-6.32912251 3.62953142-1.50469868 2.41951375-2.2573088 5.81251797-2.2573088 10.17953437v.663945c.67880947-1.6817681 1.7852976-3.0096582 3.31946439-3.9834094 1.53442756-.9737513 3.28999632-1.460627 5.26696692-1.460627 1.9180345 0 3.6219688.4206377 5.1120639 1.2613913zm-.7301831 13.8977308c1.239225-1.2835575 1.8588375-2.9874918 1.8588375-5.1120638 0-2.0948431-.6271751-3.7841737-1.8810038-5.0677313-1.2540894-1.2835575-2.8842231-1.9253363-4.8906619-1.9253363-2.06563572 0-3.7474038.6490806-5.04582577 1.9475026-1.29816118 1.2981612-1.94724178 2.98019-1.94724178 5.045565 0 2.0948431.6490806 3.7914756 1.94724178 5.0898976 1.29842197 1.2981612 2.99505449 1.9475025 5.08989757 1.9475025 2.0064388 0 3.6292706-.6417787 4.8687564-1.9253363z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1574.52451 202.753717)"/><g transform="translate(1624.915924 194.392443)"><path d="m.035471.089728h42.916712v49.26713h-42.916712z" fill="#00a88a"/><path d="m42.9521838 49.3568579h-42.91671231v-49.26713035h42.91671231zm-40.37816863-46.72872807v44.19032577h37.83971293v-44.19032577z" fill="#000"/></g><path d="m.03650915.08371027h20.80213335v2.6998519l-14.78281705 28.81328473h-3.89474434l14.69415189-28.45914594h-16.81872385z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1635.972745 203.629332)"/><g transform="translate(1684.951213 194.392443)"><path d="m.035471.089728h42.916712v49.26713h-42.916712z" fill="#00a88a"/><path d="m42.9521838 49.3568579h-42.91671231v-49.26713035h42.91671231zm-40.37825665-46.72872807v44.19032577h37.83980095v-44.19032577z" fill="#000"/></g><path d="m19.0538664 4.23480103c2.065375 2.65551935 3.0983233 6.43239127 3.0983233 11.33035497 0 5.3407676-1.0697182 9.4936838-3.2088939 12.4590094-2.1391756 2.9655864-5.1266674 4.4481188-8.96273635 4.4481188-1.79990127 0-3.56277183-.3392743-5.28887245-1.017823-1.72610062-.6788095-3.25322635-1.6376963-4.58085564-2.8769213l1.41629437-2.7882562c1.50469869 1.2686931 2.9358575 2.19081 4.29321568 2.7660899 1.35709739.57528 2.72932.8631807 4.11614627.8631807 2.71445552 0 4.81686122-1.2097569 6.30695622-3.6292706 1.4900951-2.4197745 2.2351426-5.8127788 2.2351426-10.1797951v-.5755408c-.6788095 1.6525608-1.7852976 2.9580238-3.3194644 3.9171714-1.5344276.9588869-3.2899963 1.4384607-5.26696696 1.4384607-1.91803446 0-3.61466698-.4206376-5.08989756-1.2613913-1.47523058-.8410144-2.62605125-2.0213032-3.45220124-3.5408663s-1.23922498-3.2532264-1.23922498-5.2004681c0-1.94750259.43524126-3.68846765 1.30546302-5.22263444.87048253-1.53442756 2.07293758-2.73688261 3.60736514-3.60736514 1.53416679-.87022175 3.27513185-1.30546302 5.22263438-1.30546302 3.8063401 0 6.7421976 1.32762929 8.8075725 3.98340943zm-3.5408663 11.15328557c1.298422-1.2981611 1.9475026-2.98019 1.9475026-5.045565 0-2.09484305-.6490806-3.79147556-1.9475026-5.08989753-1.2981612-1.29816119-2.9947937-1.94750256-5.0896368-1.94750256-2.00643874 0-3.62953139.64177876-4.86875638 1.92533629-1.23922498 1.28355752-1.85883747 2.98749187-1.85883747 5.1120638 0 2.0948431.61961249 3.7841738 1.85883747 5.0677313 1.23922499 1.2835575 2.8769213 1.9253363 4.91282818 1.9253363 2.0656357 0 3.7474038-.6490806 5.045565-1.9475026z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1694.05523 202.753717)"/><path d="m274.413747 0v15.1195638-7.54515948h-274.07401986v7.54515948" stroke="#000" stroke-width="2.539424" transform="translate(1068.761162 109.742102)"/><path d="m0 .24858084h272.688304v7.55978192" stroke="#000" stroke-width="2.539424" transform="translate(1343.17491 117.053303)"/><path d="m90.8465476.12672749v8.60284661h-90.40348881v8.7441965" stroke="#000" stroke-width="2.539424" transform="translate(978.589682 177.005152)"/><path d="m1040.343498 185.807838v8.671084" stroke="#000" stroke-width="2.539424"/><path d="m.18765416.0292448h90.06863584v8.67108449" stroke="#000" stroke-width="2.539424" transform="translate(1069.248576 185.778593)"/><path d="m1100.026783 185.807838v8.671084" stroke="#000" stroke-width="2.539424"/><path d="m1314.628568 185.807838v8.671084" stroke="#000" stroke-width="2.539424"/><path d="m.27782564.0292448h88.64587606v8.67108449" stroke="#000" stroke-width="2.539424" transform="translate(1343.662323 185.778593)"/><path d="m1373.584633 185.807838v8.671084" stroke="#000" stroke-width="2.539424"/><path d="m90.3956902.12672749v8.67595862h-90.07887149v8.67108449" stroke="#000" stroke-width="2.539424" transform="translate(1525.467524 177.005152)"/><path d="m1586.145618 185.807838v8.671084" stroke="#000" stroke-width="2.539424"/><path d="m.22421017.0292448h90.27871103v8.67108449" stroke="#000" stroke-width="2.539424" transform="translate(1615.639004 185.778593)"/><path d="m1645.921998 185.807838v8.671084" stroke="#000" stroke-width="2.539424"/><g fill="#f2f2f2" fill-rule="nonzero" transform="translate(1263.581889 37.572233)"><path d="m7.95815261 22.540308v-20.02691984h-7.73636299v-2.18343345h18.06186388v2.18343345h-7.736363v20.02691984z"/><path d="m32.5082157 6.84954575v15.69076225h-2.495645v-2.8385659c-.4572278.9772392-1.1488702 1.7313239-2.0742447 2.2615717s-2.001566.7953717-3.2285744.7953717c-1.3935212 0-2.6154113-.3326845-3.6653293-.9980533-1.0502591-.6657101-1.8613267-1.6067805-2.4332026-2.8232112-.571876-1.2164307-.857814-2.6358843-.857814-4.2580194s.2910562-3.0518251.8731686-4.2894112c.5824537-1.2372448 1.3986395-2.1991293 2.4488986-2.88531225s2.2615716-1.02944503 3.6342787-1.02944503c1.2270084 0 2.2977405.27024212 3.2128785.81106756.9151381.54082545 1.6118987 1.29968715 2.0899406 2.27726753v-2.71402246zm-3.7431262 12.24381045c.8315404-1.0502592 1.2474812-2.5423915 1.2474812-4.4763969 0-1.9340055-.4159408-3.4210195-1.2474812-4.460701-.8318817-1.04002268-2.0172619-1.55969281-3.5564818-1.55969281-1.5388787 0-2.7396136.53536601-3.602887 1.60643921-.8629322 1.0710733-1.294569 2.5632056-1.294569 4.4763969s.4265185 3.3896277 1.2788731 4.4296504c.8526958 1.0396815 2.0588901 1.5596929 3.6185829 1.5596929 1.5392199 0 2.7246001-.5251296 3.5564818-1.5753887z"/><path d="m44.8301643 14.4610241 6.4571488 8.0792839h-3.0258928l-4.9598983-6.176329-4.8974559 6.176329h-3.0883351l6.5195911-8.0792839-6.1452784-7.61147835h3.0572845l4.5541938 5.77096575 4.5545351-5.77096575h3.0879939z"/><path d="m56.3720959 21.7606322c-1.1229379-.6657101-1.9913295-1.6118987-2.6048337-2.8389071s-.9202563-2.6618166-.9202563-4.3047658.3067521-3.0777574.9202563-4.3047658c.6135042-1.22700843 1.4818958-2.17319705 2.6048337-2.83890711 1.1229379-.66536885 2.422625-.99805327 3.8994026-.99805327 1.4764365 0 2.7761236.33268442 3.8990615.99805327 1.1232791.66571006 1.9913295 1.61189868 2.6048337 2.83890711.6135042 1.2270084.9202563 2.6618166.9202563 4.3047658s-.3067521 3.0777574-.9202563 4.3047658-1.4815546 2.173197-2.6048337 2.8389071c-1.1229379.6653688-2.422625.9980533-3.8990615.9980533-1.4767776 0-2.7764647-.3326845-3.8994026-.9980533zm7.4865938-2.6358843c.8318816-1.029445 1.2478225-2.532155 1.2478225-4.5077886 0-1.9131914-.4261773-3.3950872-1.2788731-4.4453463-.8526957-1.04991795-2.0380759-1.57504751-3.5561406-1.57504751-1.5388787 0-2.7348365.52512956-3.5875323 1.57504751-.8526957 1.0502591-1.278873 2.5321549-1.278873 4.4453463 0 1.9756336.421059 3.4783436 1.2631771 4.5077886.8424594 1.0291038 2.0435354 1.543997 3.6032282 1.543997 1.5596929 0 2.7553095-.5148932 3.5871912-1.543997z"/><path d="m85.1023814 12.6829538v9.8573542h-2.5270367v-9.7324695c0-1.4559636-.2910562-2.5215774-.8731687-3.19752386-.5824536-.67594651-1.4975917-1.01374915-2.7454142-1.01374915-1.4556223 0-2.6201884.44699138-3.4936983 1.34131535-.8735098.89432396-1.3102648 2.10051826-1.3102648 3.61858286v8.9838443h-2.5266955v-11.2925036c0-1.62179388-.0832564-3.08799385-.249428-4.39825865h2.4018109l.2497692 2.80751531c.4783832-1.01886737 1.1956167-1.80400261 2.152383-2.3550645.956425-.55106189 2.0483124-.82676344 3.2753208-.82676344 3.7642815 0 5.6464223 2.0691265 5.6464223 6.20772068z"/><path d="m92.4640906 21.7606322c-1.1229379-.6657101-1.9913295-1.6118987-2.6048337-2.8389071s-.9202563-2.6618166-.9202563-4.3047658.3067521-3.0777574.9202563-4.3047658c.6135042-1.22700843 1.4818958-2.17319705 2.6048337-2.83890711 1.1229379-.66536885 2.4229662-.99805327 3.8994026-.99805327 1.4764365 0 2.7761236.33268442 3.8994028.99805327 1.122938.66571006 1.990988 1.61189868 2.604492 2.83890711.613505 1.2270084.920257 2.6618166.920257 4.3047658s-.306752 3.0777574-.920257 4.3047658c-.613504 1.2270084-1.481554 2.173197-2.604492 2.8389071-1.1232792.6653688-2.4229663.9980533-3.8994028.9980533-1.4764364 0-2.7764647-.3326845-3.8994026-.9980533zm7.4865938-2.6358843c.8318816-1.029445 1.2478226-2.532155 1.2478226-4.5077886 0-1.9131914-.426177-3.3950872-1.2788732-4.4453463-.8526958-1.04991795-2.0380759-1.57504751-3.5561406-1.57504751-1.5388787 0-2.7348365.52512956-3.5875323 1.57504751-.8526958 1.0502591-1.278873 2.5321549-1.278873 4.4453463 0 1.9756336.421059 3.4783436 1.2635183 4.5077886.8421182 1.0291038 2.0431942 1.543997 3.602887 1.543997 1.5596929 0 2.7553095-.5148932 3.5871912-1.543997z"/><path d="m130.334156 12.6829538v9.8573542h-2.526696v-9.7324695c0-1.4767777-.254546-2.5478509-.764321-3.21321974-.509434-.66536885-1.336197-.99805327-2.479949-.99805327-1.330738 0-2.370761.44699138-3.119386 1.34131535-.748625.89432396-1.122938 2.11075466-1.122938 3.64963346v8.9527937h-2.526695v-9.7324695c0-1.4559636-.260006-2.5215774-.780017-3.19752386-.520012-.67594651-1.351552-1.01374915-2.495645-1.01374915-1.330738 0-2.375879.44699138-3.135082 1.34131535-.758861.89432396-1.138292 2.11075466-1.138292 3.64963346v8.9527937h-2.527037v-11.2925036c0-1.62179388-.082915-3.08799385-.249428-4.39825865h2.402152l.249428 2.74507301c.436755-.99805327 1.086428-1.76749263 1.949701-2.30831808.862933-.54082544 1.866445-.81106756 3.010197-.81106756 1.247823 0 2.26669.24942801 3.056944.74862526.790253.49919724 1.372707 1.26863659 1.747019 2.30831807.478383-.93561096 1.180262-1.679118 2.105637-2.23017989.925374-.55106189 1.970515-.82676344 3.135081-.82676344 3.472884 0 5.209327 2.0691265 5.209327 6.20772068z"/><path d="m148.926608 6.84954575-7.330999 17.12591165c-.76944 1.7883067-1.736784 3.0985715-2.90135 3.9304532s-2.599374 1.4037577-4.304766 1.715628l-.530247-1.9653972c1.476436-.3326844 2.594256-.7745576 3.353459-1.3256195.758861-.5510619 1.388061-1.3986394 1.887259-2.5423914l.62374-1.4037577-6.644475-15.53482705h2.65158l5.30316 12.94568925 5.364238-12.94568925z"/></g><g fill="#f2f2f2" fill-rule="nonzero" transform="translate(1242.021555 73.436333)"><path d="m.1061178 18.7869453 1.3955685-17.74521654h3.91271003l-1.17104917 14.58010814h7.92539604l-.2490868 3.1651084z"/><path d="m14.0379178 18.7869453.9970296-12.63586623h3.763258l-.9970297 12.63586623zm1.2959338-18.56754419h4.0375946l-.2739955 3.53907983h-4.0375946z"/><path d="m20.1190478 17.4411941 1.2212078-2.6167762c.6981254.4817953 1.445727.8513309 2.243146 1.1089481.7977602.2576171 1.5951792.3862551 2.3925981.3862551.6977843 0 1.2130186-.0996347 1.5453618-.2989042.3323432-.1996106.4985148-.4654169.4985148-.7977601 0-.3487216-.1951748-.6230583-.5858658-.8223277-.3903497-.1996106-1.0260328-.4319779-1.906367-.6977842-.9141144-.2494281-1.661716-.4985149-2.243146-.7479429-.5817713-.2490868-1.0843807-.6189636-1.5078282-1.108948-.4237888-.4903257-.6356832-1.1256676-.6356832-1.9067083 0-.8141385.2286139-1.52864228.6855005-2.14317012.4568867-.61486905 1.1048535-1.09666434 1.9439007-1.44572707.8390472-.34872152 1.7985432-.5234235 2.878488-.5234235.9472123 0 1.8736104.14126293 2.7791945.42378878.9052428.28252585 1.6654694.66468641 2.2803385 1.1464817l-1.1962991 2.51714153c-.6148691-.44869746-1.262836-.78922982-1.9439007-1.02193831-.6814059-.23236727-1.3460923-.34872152-1.9940592-.34872152-.6810648 0-1.1962991.09963472-1.5450206.29890416-.3490627.19961066-.5234235.47360613-.5234235.82266887 0 .36544108.2074586.65615608.6230582.87214498.4152584.215989 1.046847.4405083 1.8940833.6728756.9137732.2661475 1.6572803.5234235 2.2305211.7728515.5732409.2490868 1.0717557.6189636 1.4955445 1.1089481.4237887.4903256.6353419 1.1256676.6353419 1.9067082 0 1.2461165-.494079 2.222332-1.4829195 2.9283054-.9884992.7063146-2.3219667 1.0594719-4.000061 1.0594719-2.1598896 0-4.087412-.5152343-5.7822259-1.5453618z"/><path d="m38.3876878 13.8772056c-.0498173.6977843.0914456 1.2130186.4237888 1.5453618.3323432.332002.7892298.4981736 1.3706598.4981736.3821606 0 .8059494-.0661957 1.2710251-.1992694l-.2490868 2.9160216c-.5650517.2327085-1.2959338.3490627-2.1933287.3490627-1.4286663 0-2.5212361-.3821605-3.2773681-1.1464817-.7557907-.7643211-1.1338567-1.8442659-1.1338567-3.2401757 0-.2825258.0081891-.4985148.0249087-.6479668l.3988801-4.98446573h-2.3925982l.2241782-2.8163869h2.3925981l.2241781-2.96583898 3.8632339-1.22120774-.3241541 4.18704672h3.215267l-.2245193 2.8163869h-3.2149258z"/><path d="m42.4003738 17.4411941 1.2212077-2.6167762c.6977843.4817953 1.4457271.8513309 2.2431461 1.1089481.7974189.2576171 1.5951791.3862551 2.3925981.3862551.6977842 0 1.2130186-.0996347 1.5453618-.2989042.332002-.1996106.4981736-.4654169.4981736-.7977601 0-.3487216-.1951749-.6230583-.5855246-.8223277-.3903497-.1996106-1.0260329-.4319779-1.9067083-.6977842-.9137732-.2494281-1.6613748-.4985149-2.243146-.7479429-.58143-.2490868-1.0840394-.6189636-1.5078282-1.108948-.4234475-.4903257-.6353419-1.1256676-.6353419-1.9067083 0-.8141385.2282727-1.52864228.6851593-2.14317012.4572278-.61486905 1.1051947-1.09666434 1.9442419-1.44572707.8390472-.34872152 1.7985432-.5234235 2.878488-.5234235.9472122 0 1.8732692.14126293 2.7788532.42378878.9055841.28252585 1.6658107.66468641 2.2806797 1.1464817l-1.196299 2.51714153c-.6148691-.44869746-1.262836-.78922982-1.9442419-1.02193831-.6810648-.23236727-1.3457512-.34872152-1.9937181-.34872152-.6814059 0-1.196299.09963472-1.5453618.29890416-.3487215.19961066-.5234235.47360613-.5234235.82266887 0 .36544108.2077999.65615608.6233995.87214498.4152584.215989 1.0465057.4405083 1.8940833.6728756.9137732.2661475 1.6572802.5234235 2.2305211.7728515.5732408.2490868 1.0717556.6189636 1.4955444 1.1089481.4234476.4903256.635342 1.1256676.635342 1.9067082 0 1.2461165-.4944203 2.222332-1.4829195 2.9283054-.9884993.7063146-2.3219667 1.0594719-4.000061 1.0594719-2.1598897 0-4.087412-.5152343-5.7822259-1.5453618z"/><path d="m67.62263 18.7869453v-16.0005853h-6.1811059v-1.74463124h14.430656v1.74463124h-6.181106v16.0005853z"/><path d="m86.688689 12.4567284h-9.1967623c.0167195 1.594838.3865964 2.7996674 1.1092893 3.6138059s1.7736345 1.2212077 3.1528247 1.2212077c1.4621054 0 2.8078565-.4903256 4.0372534-1.4706357l.6732168 1.4706357c-.5483322.5148932-1.2505522.9219624-2.1059777 1.2212078-.8557667.2989041-1.7323475.4486974-2.6294012.4486974-1.9606202 0-3.4977928-.5776766-4.6108355-1.7323475-1.1133839-1.1546708-1.6699052-2.737225-1.6699052-4.7476626 0-1.2795555.2490868-2.4134122.7476016-3.40225268.4985148-.98849926 1.1962991-1.75691497 2.093694-2.30524714.8970537-.54833217 1.918992-.82232765 3.0654737-.82232765 1.6613748 0 2.965839.54389638 3.9130512 1.63237157.9468711 1.08813397 1.4204772 2.587773 1.4204772 4.4985758zm-7.8632949-3.98777725c-.656156.63124737-1.0758502 1.52011191-1.2584001 2.66659365h7.3023377c-.0996347-1.17957958-.4446028-2.07697448-1.034222-2.69150233-.5899604-.61486905-1.4081934-.92230358-2.4550404-.92230358s-1.8981779.31562368-2.5546752.94721226z"/><path d="m96.7326876 6.10126171-.0498173 1.84426595c-.3821606-.13307377-.8226689-.19926944-1.3208425-.19926944-1.2130186 0-2.114508.37772478-2.7041272 1.13385676-.5899604.75613198-.88477 1.67399982-.88477 2.75394462v7.1528857h-2.0189679v-9.02206036c0-1.29593379-.0665369-2.46732417-.1992694-3.51417115h1.918992l.1992694 2.31787208c.3159649-.84723633.8226689-1.49554443 1.5204531-1.94390067.6977843-.44869745 1.4955445-.67287557 2.3925981-.67287557.4152584 0 .797419.04981736 1.1464817.14945208z"/><path d="m116.845594 10.9113666v7.8755787h-2.018627v-7.7759439c0-1.17957958-.203705-2.03534628-.610775-2.56695893-.407069-.53161264-1.067661-.79776018-1.981434-.79776018-1.063225 0-1.894083.35725189-2.492233 1.07175566-.598149.71450378-.897395 1.68662475-.897395 2.91602165v7.1528857h-2.018626v-7.7759439c0-1.16320127-.2078-2.01453218-.623059-2.55467519-.415258-.53980181-1.079944-.81004392-1.993718-.81004392-1.063566 0-1.898519.35725189-2.504857 1.07175566-.606339.71450378-.909679 1.68662475-.909679 2.91602165v7.1528857h-2.018968v-9.02206036c0-1.29593379-.0661956-2.46732417-.1992694-3.51417115h1.9189924l.19961 2.19332868c.348722-.79776018.868051-1.41228802 1.557646-1.84426595s1.491108-.64796689 2.404882-.64796689c.997029 0 1.811168.19926944 2.442415.59814953.631589.39853888 1.096664 1.01340793 1.39591 1.84426595.38216-.74794282.942776-1.34165656 1.682189-1.78216486.739412-.44016708 1.574365-.66025062 2.504858-.66025062 2.774758 0 4.162138 1.65318567 4.162138 4.95955697z"/><path d="m119.911067 17.3415594.672876-1.4955444c.681406.5316126 1.371001.9137732 2.068785 1.1464817s1.478825.3490627 2.342781.3490627c.946871 0 1.665469-.162077 2.155795-.4862311.489984-.3238128.735318-.7933244.735318-1.4078522 0-.4985148-.166172-.8973949-.498515-1.1962991-.332343-.2992453-.880675-.5319538-1.644996-.6981254l-2.118603-.4981736c-1.046506-.2327085-1.85655-.6483081-2.429791-1.2464577-.573241-.5981495-.859861-1.3123121-.859861-2.14317008 0-1.09666435.440167-1.98962346 1.320843-2.67921855.880675-.6895951 2.043876-1.03422204 3.489262-1.03422204.880675 0 1.711533.14092171 2.492233.42344756.781041.28252584 1.437197.68959509 1.96915 1.22120774l-.673216 1.47063576c-1.17958-.9803101-2.442416-1.47063576-3.788167-1.47063576-.897054 0-1.591085.17026618-2.081069.51113976-.489984.34053236-.735318.81823307-.735318 1.43310213 0 .51489308.153888.92196238.461323 1.22120778.307093.2989041.801513.5316126 1.482919.6977842l2.118261.5234235c1.163202.2658063 2.027158.6769702 2.592209 1.2334915.564711.5568625.847237 1.28365.847237 2.1807037 0 1.0802861-.440168 1.9442419-1.320843 2.5922088s-2.076974.9721209-3.588897.9721209c-2.110414 0-3.779978-.540143-5.009716-1.6200878z"/><path d="m146.77832 17.0672227h3.91271v1.7197226h-9.894546v-1.7197226h3.913051v-13.48310252l-3.638715 2.31753087v-1.96880935l4.53611-2.89111294h1.17139z"/><path d="m156.722343 16.2199864v1.8193573c0 .6977842-.116013 1.3375619-.348722 1.918992-.232708.5817712-.623058 1.1464817-1.17139 1.6948138l-.947212-.7226929c.647967-.7476016 1.013749-1.4621054 1.096664-2.1435113h-1.196299v-2.5669589z"/><path d="m171.801648 17.0672227v1.7197226h-11.415341v-1.5450206l6.204991-6.8788902c.832564-.93049277 1.436515-1.76953995 1.818675-2.51714156.382161-.74794282.573241-1.49554443.573241-2.24314604 0-.9803101-.279796-1.73200629-.846213-2.25542978-.563004-.5234235-1.371683-.78513524-2.4158-.78513524-1.696179 0-3.374274.68106472-5.03599 2.04353539l-.77251-1.56992926c.697784-.66468642 1.57846-1.19629906 2.641685-1.59517916 1.063567-.39888009 2.136346-.59814953 3.214585-.59814953 1.627594 0 2.917386.41935298 3.862551 1.25874137.948577.83904718 1.422866 1.97290393 1.422866 3.40191149 0 1.01340793-.228614 1.98962345-.685842 2.92830535-.457228.93868189-1.218137 1.98962347-2.279315 3.15282467l-5.061239 5.4829805z"/><path d="m177.435104 16.2199864v1.8193573c0 .6977842-.119425 1.3375619-.351451 1.918992-.232026.5817712-.621011 1.1464817-1.170367 1.6948138l-.948577-.7226929c.648308-.7476016 1.01682-1.4621054 1.098712-2.1435113h-1.197664v-2.5669589z"/><path d="m191.339607 11.2102708c.549356.7312233.822328 1.6535269.822328 2.7665695 0 1.5453618-.522059 2.762475-1.569588 3.6513395-1.04753.8888646-2.466983 1.3334674-4.261773 1.3334674-1.146482 0-2.245193-.1910802-3.302959-.5732408-1.054354-.3821606-1.948337-.9223036-2.678536-1.6200878l.798442-1.5702705c1.644656 1.3624706 3.354142 2.0438766 5.131871 2.0438766 1.265907 0 2.22472-.2825259 2.879853-.8475776.658544-.5647104.98611-1.3955685.98611-2.4922328 0-2.1766092-1.364859-3.2650844-4.087753-3.2650844h-2.043876v-1.71938129h1.644655c1.313677 0 2.316848-.29105622 3.016339-.87248623.696078-.58143001 1.047529-1.41228803 1.047529-2.49223284 0-.96359058-.290033-1.70300303-.859861-2.21823737-.573241-.51489312-1.385332-.77251029-2.432862-.77251029-1.692425 0-3.371202.68106472-5.032918 2.04353539l-.771145-1.56992926c.713139-.68140594 1.590061-1.21711317 2.627354-1.6078041 1.037293-.39034973 2.122356-.58552459 3.251777-.58552459 1.596885 0 2.873028.40706925 3.82843 1.22120775.955401.81413849 1.433102 1.91080284 1.433102 3.28999303 0 1.01340793-.252499 1.90227247-.750673 2.6665936-.498174.76432114-1.187427 1.31265331-2.067762 1.64499652 1.04753.29890416 1.845972.81413848 2.391916 1.54502058z"/></g><g transform="translate(1238.737766 301.42884)"><path d="m.162355.124952h196.432387v68.608179h-196.432387z" fill="#0083c0"/><path d="m196.594742 68.7331309h-196.43238687v-68.60817855h196.43238687zm-193.8939261-66.06958614v63.53099374h191.3558681v-63.53099374z" fill="#000"/></g><g fill="#f2f2f2" fill-rule="nonzero" transform="translate(1249.006069 345.842567)"><path d="m.56874621 14.4291604 1.02879531-13.08192845h2.88430112l-.8634532 10.74723665h5.84208763l-.18371345 2.3346918z"/><path d="m10.8383279 14.4291604.7348538-9.31580278h2.7740731l-.7348538 9.31580278zm.95531-13.68665188h2.9761578l-.2020848 2.6102619h-2.9761578z"/><path d="m15.320936 13.4340458.9001959-1.9289912c.5143977.3597722 1.065538.6276877 1.6534211.8190558.587883.1913682 1.175766.2832249 1.7636491.2832249.5143976 0 .8940721-.0688925 1.1390233-.2143323.2449513-.1530946.3674269-.3444627.3674269-.589414 0-.2602607-.1439088-.4592836-.4317266-.6047234-.2878177-.1530946-.756287-.3214986-1.4054078-.5205215-.673616-.1837134-1.2247564-.3674269-1.6534211-.5511403-.4286647-.18371346-.7991535-.4516289-1.1114663-.81140107-.3123129-.36742689-.4684693-.83436524-.4684693-1.40846976 0-.59706871.168404-1.12524487.505212-1.57687376.3368079-.45928362.8144629-.81140106 1.4329648-1.07166178.618502-.25260599 1.3257988-.38273635 2.1218904-.38273635.6981111 0 1.3809127.10716618 2.0484049.31384381s1.2278182.48990253 1.6809781.84201997l-.8818246 1.86009865c-.4531598-.33680798-.9308148-.58175925-1.4329649-.75781797-.5021501-.16840399-.9920526-.25260599-1.4697076-.25260599-.5021501 0-.8818245.06889254-1.1390233.21433236-.2571989.15309454-.3857983.35211744-.3857983.61237816 0 .26791544.1530946.4822478.4592836.64299706.3061891.15309454.7715965.32149853 1.3962222.48990253.673616.1990229 1.2216945.39039107 1.6442354.57410452s.7899678.45162889 1.1022807.81905582c.3123128.3597721.4684693.8267105.4684693 1.400815 0 .9185672-.364365 1.6381116-1.093095 2.158633-.7287301.5205214-1.711597.7807822-2.9486009.7807822-1.5921832 0-3.0129005-.3750817-4.262152-1.1405544z"/><path d="m28.7871317 10.8084745c-.0367426.5128667.0673616.895603.3123129 1.1405543s.5817593.3674269 1.010424.3674269c.2816939 0 .5940068-.0459284.9369385-.1454398l-.1837134 2.1509783c-.4164171.168404-.9553099.252606-1.6166783.252606-1.0532905 0-1.8585677-.2832249-2.4158319-.84202-.5572641-.5664498-.8358962-1.3625414-.8358962-2.3882748 0-.2066776.0061238-.3674269.0183714-.4822478l.2939415-3.67426897h-1.7636491l.1653421-2.07443101h1.7636491l.1653421-2.18159719 2.8475584-.90325778-.2388274 3.08485497h2.3699034l-.1653421 2.07443101h-2.3699034z"/><path d="m31.7449182 13.4340458.9001959-1.9289912c.5143977.3597722 1.065538.6276877 1.6534211.8190558.587883.1913682 1.175766.2832249 1.7636491.2832249.5143976 0 .8940721-.0688925 1.1390233-.2143323.2449513-.1530946.3674269-.3444627.3674269-.589414 0-.2602607-.1439088-.4592836-.4317266-.6047234-.2878177-.1530946-.756287-.3214986-1.4054078-.5205215-.673616-.1837134-1.2247564-.3674269-1.6534211-.5511403-.4286647-.18371346-.7991535-.4516289-1.1114663-.81140107-.3123129-.36742689-.4684693-.83436524-.4684693-1.40846976 0-.59706871.168404-1.12524487.505212-1.57687376.3368079-.45928362.8144629-.81140106 1.4329649-1.07166178.6185019-.25260599 1.3257987-.38273635 2.1218903-.38273635.6981111 0 1.3809127.10716618 2.0484049.31384381s1.2278182.48990253 1.6809781.84201997l-.8818246 1.86009865c-.4531598-.33680798-.9308148-.58175925-1.4329649-.75781797-.5021501-.16840399-.9920526-.25260599-1.4697076-.25260599-.5021501 0-.8818245.06889254-1.1390233.21433236-.2571989.15309454-.3857983.35211744-.3857983.61237816 0 .26791544.1530946.4822478.4592836.64299706.3061891.15309454.7715965.32149853 1.3962222.48990253.673616.1990229 1.2216945.39039107 1.6442354.57410452s.7899678.45162889 1.1022807.81905582c.3123128.3597721.4684693.8267105.4684693 1.400815 0 .9185672-.364365 1.6381116-1.093095 2.158633-.7287301.5205214-1.711597.7807822-2.9486009.7807822-1.5921832 0-3.0129005-.3750817-4.262152-1.1405544z"/><path d="m52.3208244 13.1584757h2.8843011v1.2706847h-7.2934239v-1.2706847h2.8843011v-9.93583564l-2.6822163 1.70700411v-1.4467434l3.3435848-2.13566882h.8634532z"/><path d="m59.6509909 12.5384428v1.3395772c0 .5128667-.0857329.9874598-.2571988 1.4161245s-.4592836.84202-.8634532 1.2477205l-.6981111-.5358309c.4776549-.5511403.7471013-1.0716618.8083392-1.5768737h-.8818246v-1.8907176z"/><path d="m70.7656545 13.1584757v1.2706847h-8.4140759v-1.1405544l4.5744648-5.06742923c.6123782-.68892542 1.0594142-1.30895831 1.3411082-1.86009865.2816939-.55114034.4225409-1.10228069.4225409-1.65342103 0-.71954434-.2082085-1.27068468-.6246257-1.66107575-.4164171-.38273635-1.010424-.57410453-1.7820204-.57410453-1.2492515 0-2.4862554.49755726-3.7110117 1.50032649l-.5695117-1.15586377c.5143977-.48990253 1.1635185-.8802936 1.9473626-1.17117323.783844-.29853435 1.5738118-.44397416 2.3699035-.44397416 1.2002611 0 2.1494473.30618907 2.8475584.92622196.6981111.62003288 1.0471666 1.45439813 1.0471666 2.51075045 0 .74250851-.168404 1.46205285-.5052119 2.15863301-.336808.68892542-.897134 1.46205285-1.6809781 2.31938227l-3.729383 4.04169587z"/><path d="m74.9175784 12.5384428v1.3395772c0 .5128667-.0857329.9874598-.2571988 1.4161245s-.4592837.84202-.8634532 1.2477205l-.6981111-.5358309c.4776549-.5511403.7471013-1.0716618.8083391-1.5768737h-.8818245v-1.8907176z"/><path d="m85.1687888 8.84120966c.4041695.54348561.6062543 1.22475634.6062543 2.04381214 0 1.1405543-.3857982 2.0361573-1.1573947 2.6868091-.7715965.6583065-1.8187631.9874598-3.1414999.9874598-.8450819 0-1.6564829-.1454398-2.4342032-.42101-.7777203-.2832249-1.4360268-.6812707-1.9749196-1.1941374l.5878831-1.1635185c1.2125087 1.010424 2.4740077 1.5079812 3.784497 1.5079812.9308148 0 1.6381116-.2066776 2.1218903-.6200329.4837787-.4210099.7256681-1.0333881.7256681-1.8371344 0-1.60749269-1.0043002-2.41123903-3.0129005-2.41123903h-1.5064503v-1.26302995h1.2125088c.9675574 0 1.708535-.21433235 2.2229327-.64299706.5143976-.42866471.7715965-1.04104287.7715965-1.83713448 0-.71188961-.2112705-1.25537522-.6338114-1.63811157-.422541-.38273635-1.0196097-.5664498-1.7912062-.5664498-1.2492514 0-2.4862553.49755726-3.7110116 1.50032649l-.5695117-1.15586377c.5266452-.49755726 1.1727042-.89560306 1.9381769-1.18648268.7654727-.2832249 1.5646262-.42866471 2.3974605-.42866471 1.175766 0 2.1157665.29853435 2.8200014.90325778.7042349.5970687 1.0563523 1.40846976 1.0563523 2.41889372 0 .75016325-.1837134 1.40846977-.5511403 1.96726484-.3674269.56644979-.8757008.97215032-1.5248216 1.21710159.7715964.21433235 1.3594795.5970687 1.7636491 1.13289959z"/><path d="m90.1841659 12.5384428v1.3395772c0 .5128667-.085733.9874598-.2571988 1.4161245-.1714659.4286647-.4592837.84202-.8634533 1.2477205l-.6981111-.5358309c.477655-.5511403.7471014-1.0716618.8083392-1.5768737h-.8818245v-1.8907176z"/><path d="m101.776484 10.3338814v1.2477205h-1.9841048v2.8475585h-1.5064503v-2.8475585h-6.0258011v-1.1405543l6.3013713-9.09381565h1.2308801v8.98664945zm-7.9547919 0h4.4642368v-6.42997064z"/><path d="m105.450753 12.5384428v1.3395772c0 .5128667-.085733.9874598-.257198 1.4161245-.171466.4286647-.459284.84202-.863454 1.2477205l-.698111-.5358309c.477655-.5511403.747102-1.0716618.808339-1.5768737h-.881824v-1.8907176z"/><path d="m114.847696 6.74381447c.618502.34446271 1.093095.83436524 1.423779 1.45439812.330685.62768761.496027 1.34723195.496027 2.17394251 0 .8190557-.180652 1.5462548-.541955 2.1815971-.361303.6353424-.875701 1.1328996-1.543193 1.4773623-.667492.3521175-1.448274.5281762-2.342346.5281762-.796092 0-1.579936-.1454398-2.351532-.4363194-.771597-.2832249-1.420718-.6812707-1.947363-1.178828l.569512-1.1635185c1.212508 1.010424 2.455636 1.5079812 3.729383 1.5079812.918567 0 1.638111-.2602607 2.158633-.7807821.520521-.5205215.780782-1.2247563.780782-2.1203594 0-.87263887-.257199-1.56921902-.771597-2.10504991-.514397-.52817616-1.200261-.79609161-2.05759-.79609161-1.249252 0-2.247428.50521198-2.994529 1.52329067h-1.047167v-7.6623817h7.844564v1.2477205h-6.338114v4.66938345c.722606-.69658015 1.647297-1.04869759 2.774073-1.04869759.820587 0 1.540131.17605872 2.158633.52817616z"/><path d="m120.717341 12.5384428v1.3395772c0 .5128667-.085733.9874598-.257199 1.4161245s-.459284.84202-.863453 1.2477205l-.698111-.5358309c.477655-.5511403.747101-1.0716618.808339-1.5768737h-.881825v-1.8907176z"/><path d="m130.077541 6.74381447c.618502.34446271 1.099219.83436524 1.442151 1.46970758.342931.62768761.514397 1.34723194.514397 2.15863305 0 .8037463-.180651 1.5309453-.541954 2.1662877-.361304.6353423-.860392 1.1328996-1.497265 1.4926717-.636873.3674269-1.35948.5434857-2.167819.5434857-1.579935 0-2.798568-.5511404-3.655897-1.6534211-.85733-1.1022806-1.285994-2.6714997-1.285994-4.70000233 0-1.46970758.199022-2.73273753.597068-3.78908985.398046-1.0486976.973681-1.85244393 1.726907-2.40358427.753225-.55114034 1.656483-.82671051 2.709773-.82671051.759349 0 1.497265.13778508 2.213747.42100998s1.34417.6812707 1.883063 1.19413741l-.569512 1.15586377c-.612378-.51286671-1.200261-.88794833-1.763649-1.13289959s-1.139023-.3674269-1.726906-.3674269c-1.126776 0-2.002477.49755726-2.627103 1.50032649-.624625 1.01042396-.936938 2.41889373-.936938 4.22540929v.27557017c.281694-.69658015.740977-1.24772049 1.377851-1.65342102.636873-.39804581 1.365603-.60472343 2.18619-.60472343.796091 0 1.503388.17605872 2.12189.52817616zm-.303127 5.76400943c.514397-.5281762.771596-1.2400658.771596-2.1203594 0-.87263887-.26026-1.56921902-.780782-2.10504991-.520521-.52817616-1.197199-.79609161-2.030033-.79609161-.85733 0-1.555441.26791545-2.094334.80374634-.538893.54348561-.808339 1.24006577-.808339 2.09739518 0 .8726389.269446 1.5768738.808339 2.1127047.538893.5358308 1.243128.811401 2.112705.811401.832834 0 1.50645-.2679154 2.020848-.8037463z"/><path d="m135.983928 12.5384428v1.3395772c0 .5128667-.085733.9874598-.257199 1.4161245-.171465.4286647-.459283.84202-.863453 1.2477205l-.698111-.5358309c.477655-.5511403.747102-1.0716618.808339-1.5768737h-.881824v-1.8907176z"/><path d="m138.353832 1.34723195h8.634532v1.12524486l-6.136029 11.95668359h-1.616679l6.099287-11.81124377h-6.981111z"/><path d="m151.250516 12.5384428v1.3395772c0 .5128667-.085733.9874598-.257199 1.4161245s-.459284.84202-.863453 1.2477205l-.698111-.5358309c.477655-.5511403.747101-1.0716618.808339-1.5768737h-.881825v-1.8907176z"/><path d="m161.915081 8.9101022c.471532.5664498.707297 1.2477205.707297 2.0438121 0 1.1175901-.422541 1.9978837-1.267623 2.6408808-.845081.6429971-1.984105.9644956-3.41707.9644956s-2.571988-.3214985-3.41707-.9644956-1.267623-1.5232907-1.267623-2.6408808c0-.7960916.24189-1.4773623.725669-2.05146683.483778-.58175925 1.148209-.97980505 1.99329-1.1941374-.783844-.23729654-1.383974-.62003289-1.800391-1.14820905-.416418-.53583089-.624626-1.1635185-.624626-1.88306284 0-.70423488.183713-1.30895831.55114-1.82947974.367427-.52052144.884887-.92622197 1.552379-1.21710159.667492-.2832249 1.429903-.42866471 2.287232-.42866471.85733 0 1.619741.14543981 2.287233.42866471.667492.29087962 1.184951.69658015 1.552378 1.21710159.367427.52052143.551141 1.12524486.551141 1.82947974 0 .71954434-.211271 1.34723195-.633812 1.88306284-.422541.52817616-1.013486.91091251-1.772834 1.14820905.857329.2296418 1.521759.62768761 1.99329 1.20179213zm-6.080915-2.42654845c.520522.43631944 1.221695.70423488 2.103519.7960916.881825-.09185672 1.582998-.35977216 2.103519-.7960916.520522-.43631944.780782-1.00276923.780782-1.69934939 0-.71954434-.254137-1.29364886-.76241-1.70700412-.508274-.42100998-1.215571-.62768761-2.121891-.62768761-.906319 0-1.613616.20667763-2.12189.62768761-.508274.41335526-.762411.98745978-.762411 1.70700412 0 .69658016.260261 1.26302995.780782 1.69934939zm4.473423 6.20032885c.55114-.4133553.82671-1.0257334.82671-1.821825 0-.7195444-.290879-1.30130361-.872639-1.72996832-.581759-.43631943-1.356417-.70423488-2.323975-.80374633-.967557.09951145-1.742216.3674269-2.323975.80374633-.581759.42866471-.872639 1.01042392-.872639 1.72996832 0 .7960916.27557 1.4084697.826711 1.821825.55114.4133553 1.341108.6276876 2.369903.6276876 1.028796 0 1.818763-.2143323 2.369904-.6276876z"/><path d="m166.517103 12.5384428v1.3395772c0 .5128667-.085733.9874598-.257199 1.4161245-.171465.4286647-.459283.84202-.863453 1.2477205l-.698111-.5358309c.477655-.5511403.747102-1.0716618.808339-1.5768737h-.881824v-1.8907176z"/><path d="m176.456001 2.85521316c.857329 1.10228069 1.285994 2.67149972 1.285994 4.70000237 0 2.21987082-.443974 3.94218437-1.331923 5.17459547-.887948 1.232411-2.128014 1.8447892-3.720197 1.8447892-.747101 0-1.478893-.1377851-2.195376-.42101-.716482-.2832249-1.350293-.6812707-1.901434-1.1941374l.587883-1.1558638c.624626.5281762 1.218633.9109125 1.782021 1.148209.563388.2372966 1.132899.3597722 1.708535.3597722 1.126776 0 1.999414-.505212 2.617916-1.5079812s.927753-2.411239.927753-4.22540929v-.23729654c-.281694.6812707-.740977 1.22475632-1.377851 1.62280212-.636873.3980458-1.365603.5970687-2.18619.5970687-.796091 0-1.500326-.17605872-2.112704-.52052143-.612378-.35211744-1.090033-.84201997-1.432965-1.46970758-.342932-.63534234-.514398-1.35488667-.514398-2.15863301 0-.81140106.180652-1.53094539.541955-2.17394246.361303-.63534234.860391-1.13289959 1.497265-1.49267176.636873-.35977217 1.359479-.54348561 2.167818-.54348561 1.579936 0 2.798568.55114034 3.655898 1.65342102zm-1.469708 4.63110982c.538893-.54348561.808339-1.24006577.808339-2.09739519 0-.86498415-.269446-1.56921903-.808339-2.11270464-.538893-.53583089-1.243127-.80374634-2.112704-.80374634-.832835 0-1.506451.26026072-2.020848.79609161-.514398.53583089-.771597 1.24006577-.771597 2.12035937 0 .87263888.257199 1.56921903.771597 2.10504992.514397.53583089 1.194137.79609161 2.039219.79609161.857329 0 1.55544-.26791545 2.094333-.80374634z"/></g><g fill="#f2f2f2" fill-rule="nonzero" transform="translate(1307.966463 315.478416)"><path d="m15.7309762 20.418335h-2.3788531l-2.4066219-6.4812177c-.2915715-.8025158-.6979203-1.3403033-1.21719525-1.6133623-.51927495-.2739846-1.2532946-.4100513-2.20205898-.4100513h-4.86785547v8.5046313h-2.21501771v-19.47142187h7.74006606c2.09653785 0 3.70527205.46466314 4.82620245 1.39491504 1.121856.92932627 1.6818584 2.26962951 1.6818584 4.01998408 0 1.2764352-.332299 2.34738191-.9978225 3.21284015-.6655235.8663839-1.6272466 1.4819237-2.8851693 1.8466194.5655561.0907112 1.0487317.332299 1.4495268.7247635.4007951.3915388.7386478.9524668 1.0117068 1.6818584zm-7.73914047-10.3651351c2.98976477 0 4.48464727-1.22089777 4.48464727-3.66454456 0-1.20331091-.3646958-2.10116598-1.0940874-2.6935652-.7284659-.59239922-1.85957813-.88859883-3.39055987-.88859883h-5.33344423v7.24670859z"/><path d="m18.2745903 18.1755486.8478714-1.7225859c.9663512.8201027 1.9502893 1.4041713 2.9536655 1.7503546 1.0024506.3461833 2.1696621.5192749 3.5007091.5192749 1.5680067 0 2.7759458-.3054558 3.6228915-.9154419.8478714-.6109117 1.2718071-1.4726674 1.2718071-2.5843416 0-.6571929-.2045629-1.1903522-.6146142-1.6004035-.410977-.4100513-.9487644-.7340197-1.6142879-.9709794-.6655235-.2369596-1.5541223-.4831756-2.6657965-.7377221-1.495808-.3285964-2.725962-.684036-3.6923132-1.0672442-.9663513-.3822826-1.7503546-.93395442-2.3520101-1.65408972-.6016554-.72013531-.9024831-1.66427156-.9024831-2.83055753 0-1.11259978.2915714-2.09190974.8747144-2.93978113.5840686-.84787138 1.4087994-1.50876676 2.475118-1.98268614 1.0672442-.474845 2.3112826-.71180469 3.7330407-.71180469 1.3495595 0 2.6074822.2101166 3.7746938.62942417 1.166286.41930758 2.1511497 1.03021927 2.9536655 1.83180947l-.8756401 1.72351148c-.9117394-.78400334-1.8364376-1.35881571-2.7759457-1.72351148-.9385825-.36377015-1.9641737-.54611803-3.0767735-.54611803-1.5133948 0-2.6981933.3230427-3.5553209.97005372-.856202.64793665-1.2847658 1.53653548-1.2847658 2.66672212 0 .9848637.373952 1.72258585 1.1209304 2.21501771.747904.49243185 1.8966031.92099566 3.4460973 1.28569143 1.6772303.40079512 2.994393.77011902 3.9514879 1.10797162.957095.3369271 1.7549827.8469458 2.3927375 1.5309818.6386804.684036.9580206 1.5911473.9580206 2.7213339 0 1.0940873-.2924971 2.0558104-.8756401 2.8851693-.5831429.8293589-1.41713 1.4726675-2.501961 1.9280744-1.0848311.4554069-2.3566382.6840359-3.8154213.6840359-3.0443766 0-5.4695109-.8210283-7.2744773-2.4621592z"/><path d="m35.3125473 18.1755486.8478714-1.7225859c.9663512.8201027 1.9502893 1.4041713 2.9536654 1.7503546 1.0024506.3461833 2.1696622.5192749 3.5007092.5192749 1.5680067 0 2.7750201-.3054558 3.6228915-.9154419.8478714-.6109117 1.271807-1.4726674 1.271807-2.5843416 0-.6571929-.2045628-1.1903522-.6155398-1.6004035-.4100513-.4100513-.9478387-.7340197-1.6133622-.9709794-.6655235-.2369596-1.5541223-.4831756-2.6657965-.7377221-1.495808-.3285964-2.725962-.684036-3.6923133-1.0672442-.9663512-.3822826-1.7503545-.93395442-2.35201-1.65408972-.6016555-.72013531-.9024832-1.66427156-.9024832-2.83055753 0-1.11259978.2915715-2.09190974.8747145-2.93978113.5840686-.84787138 1.4087994-1.50876676 2.475118-1.98268614 1.0672442-.474845 2.3112826-.71180469 3.7330407-.71180469 1.3495595 0 2.6074822.2101166 3.7746938.62942417 1.1662859.41930758 2.1511496 1.03021927 2.9536655 1.83180947l-.8756401 1.72351148c-.9117395-.78400334-1.8364376-1.35881571-2.7759458-1.72351148-.9385825-.36377015-1.9641736-.54611803-3.0767734-.54611803-1.5133949 0-2.6981933.3230427-3.555321.97005372-.856202.64793665-1.2847658 1.53653548-1.2847658 2.66672212 0 .9848637.373952 1.72258585 1.1209304 2.21501771.747904.49243185 1.8966032.92099566 3.4460974 1.28569143 1.6772303.40079512 2.9943929.77011902 3.9514879 1.10797162.957095.3369271 1.7549827.8469458 2.3927375 1.5309818.6386804.684036.9580206 1.5911473.9580206 2.7213339 0 1.0940873-.2924971 2.0558104-.8756401 2.8851693s-1.41713 1.4726675-2.5019611 1.9280744-2.3566381.6840359-3.8154212.6840359c-3.0443766 0-5.469511-.8210283-7.2744773-2.4621592z"/></g><g transform="translate(1132.952069 387.954528)"><path d="m.039304.099422h47.553665v54.590201h-47.553665z" fill="#00a88a"/><path d="m47.5929694 54.6896229h-47.55366538v-54.59020073h47.55366538zm-45.01519163-52.05176699v49.51333329h42.47652283v-49.51333329z" fill="#000"/></g><path d="m23.6732656 32.2046798v3.383959h-22.46109685v-3.0406798l12.21155275-13.5355472c1.6346218-1.8308227 2.8280084-3.4819151 3.5798709-4.953277.7521514-1.4710729 1.1280827-2.9424349 1.1280827-4.4137968 0-1.92877865-.5559506-3.40823133-1.6675628-4.43806909-1.1116122-1.03012673-2.6971116-1.54504561-4.7570761-1.54504561-3.33483658 0-6.63673225 1.34046504-9.90626489 4.02168407l-1.52048438-3.08980225c1.37340598-1.30781306 3.10598377-2.35383234 5.19860024-3.13863575 2.09232752-.78480342 4.2011255-1.17691617 6.32639393-1.17691617 3.2039397 0 5.7377914.82554616 7.6015551 2.47663847 1.8634746 1.65109231 2.7953564 3.88240747 2.7953564 6.69394548 0 1.99437155-.4496149 3.91534845-1.3488447 5.76264155-.8989409 1.8470042-2.394864 3.9150595-4.4871916 6.2035878l-9.95538731 10.7893133z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1144.791113 397.615433)"/><g transform="translate(1191.307406 387.954528)"><path d="m.039304.099422h47.553665v54.590201h-47.553665z" fill="#00a88a"/><path d="m47.5929694 54.6896229h-47.55366538v-54.59020073h47.55366538zm-45.0150941-52.05176699v49.51333329h42.4764253v-49.51333329z" fill="#000"/></g><path d="m21.6572224 20.6796856c1.0789602 1.4387099 1.6184403 3.2533511 1.6184403 5.4436346 0 3.0406798-1.0298378 5.4355438-3.0895133 7.184881-2.0599645 1.7490483-4.855321 2.6237169-8.3860695 2.6237169-2.25616532 0-4.42217651-.3762202-6.49803356-1.1280827-2.076146-.7518625-3.83357397-1.8146412-5.27199496-3.1877582l1.56931788-3.0895133c3.2365917 2.6809301 6.60408028 4.0213951 10.10246574 4.0213951 2.4847292 0 4.3730541-.5559506 5.6643967-1.6675628s1.9371583-2.746234 1.9371583-4.9041544c0-4.2829-2.68093-6.4243499-8.0427902-6.4243499h-4.02168406v-3.3839591h3.23688066c2.5829741 0 4.5608752-.5721321 5.9339922-1.7163963 1.3731171-1.1442642 2.0599645-2.779175 2.0599645-4.90415445 0-1.89641562-.5640413-3.35130707-1.692124-4.36467437-1.1277937-1.01365625-2.7216728-1.52048438-4.7816373-1.52048438-3.33483658 0-6.63673225 1.34046504-9.90626489 4.02168407l-1.52048437-3.08980225c1.40605796-1.34046504 3.13054499-2.39486403 5.17403901-3.16319698 2.04349402-.76833294 4.17685323-1.15235494 6.40007765-1.15235494 3.1386357 0 5.6479262.80098493 7.5278713 2.40295479 1.8799452 1.60196986 2.8199177 3.75989029 2.8199177 6.47347235 0 1.99437156-.4906466 3.74341986-1.4713619 5.24743376s-2.3376508 2.5829741-4.0705175 3.2368806c2.0596755.5883136 3.6292823 1.6019699 4.7079536 3.0403909z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1203.470522 396.880376)"/><g transform="translate(1249.976943 388.127483)"><path d="m.039304.099422h47.553665v54.590201h-47.553665z" fill="#00a88a"/><path d="m47.5929694 54.6896229h-47.55366538v-54.59020073h47.55366538zm-45.01519163-52.05176699v49.51333329h42.47652283v-49.51333329z" fill="#000"/></g><path d="m25.5263379 24.074336v3.3348366h-5.2965562v7.601555h-4.0213951v-7.601555h-16.08558047v-3.0406798l16.82126147-24.27573805h3.2857141v23.98158125zm-21.23505825 0h11.91710695v-17.16454069z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1260.680298 397.799392)"/><g transform="translate(1072.3219 388.127483)"><path d="m.039304.099422h47.553665v54.590201h-47.553665z" fill="#00a88a"/><path d="m47.5929694 54.6896229h-47.55366538v-54.59020073h47.55366538zm-45.0150941-52.05176699v49.51333329h42.4764253v-49.51333329z" fill="#000"/></g><path d="m12.0107286 31.6267686h7.6995109v3.383959h-19.46953948v-3.383959h7.69951097v-26.53161447l-7.16003086 4.56087523v-3.87431672l8.92554959-5.68895789h2.30499888z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1086.781678 397.799392)"/><g transform="translate(1310.293872 388.430153)"><path d="m.039304.099422h47.553665v54.590201h-47.553665z" fill="#00a88a"/><path d="m47.5929694 54.6896229h-47.55366538v-54.59020073h47.55366538zm-45.01519163-52.05176699v49.51333329h42.47652283v-49.51333329z" fill="#000"/></g><path d="m18.2209624 14.4865002c1.6510923.9318818 2.9181626 2.2316041 3.8009219 3.8988779.8827594 1.6675628 1.3239946 3.5963414 1.3239946 5.7869138 0 2.1905725-.4822669 4.1358216-1.4468007 5.8360363-.9642448 1.7002148-2.3376508 3.0161186-4.119351 3.9480004-1.7819892.9315929-3.866226 1.3976783-6.2529993 1.3976783-2.12497947 0-4.21730699-.384311-6.27727148-1.1526439-2.05967553-.768333-3.79254227-1.822732-5.19831128-3.163197l1.52019542-3.0895133c3.23688066 2.6809301 6.55524679 4.0213951 9.95538734 4.0213951 2.4523662 0 4.3730541-.6946492 5.7626416-2.0842367 1.3892985-1.3895875 2.0842368-3.2776234 2.0842368-5.6643967 0-2.3211804-.6865586-4.1930347-2.0596756-5.6152742-1.373406-1.4222395-3.2042286-2.1333592-5.492757-2.1333592-3.33483662 0-5.99958518 1.3569355-7.99395675 4.0705175h-2.79535649v-20.45054375h20.94090144v3.3348366h-16.91950633v12.45687605c1.9290676-1.8637637 4.39761531-2.7956455 7.40535413-2.7956455 2.1905725 0 4.1112603.4660854 5.7623527 1.3976783z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1322.999783 398.270213)"/><g transform="translate(1374.317793 388.430153)"><path d="m.039304.099422h47.553665v54.590201h-47.553665z" fill="#00a88a"/><path d="m47.5929694 54.6896229h-47.55366538v-54.59020073h47.55366538zm-45.01519163-52.05176699v49.51333329h42.47652283v-49.51333329z" fill="#000"/></g><path d="m19.2788288 15.0644114c1.6510923.9318818 2.9343442 2.2396948 3.8497555 3.9234391.9154114 1.6837443 1.373117 3.6047212 1.373117 5.7623526 0 2.1579205-.4822669 4.0869881-1.4468007 5.7869139-.9642448 1.7002148-2.2966191 3.032589-3.9968339 3.9971228-1.6999258.9642449-3.6289934 1.4465118-5.7869138 1.4465118-4.21759597 0-7.47065814-1.471073-9.75918651-4.4137968-2.28881733-2.9424349-3.43308151-7.1273789-3.43308151-12.554543 0-3.9234392.53138935-7.2909278 1.5938791-10.10246581 1.06248975-2.81182696 2.59915564-4.95327693 4.60999768-6.42463886 2.01055308-1.47136192 4.42188754-2.20675393 7.23371454-2.20675393 2.0270235 0 3.9968339.37593124 5.909431 1.12779372 1.9125972.75215143 3.5882507 1.81464118 5.0266717 3.1877582l-1.5201954 3.08980225c-1.6346219-1.37340597-3.2039398-2.38677327-4.7079537-3.0406798s-3.0406798-.98100427-4.6099976-.98100427c-3.0077389 0-5.34538973 1.34046504-7.01295251 4.02168407-1.66727383 2.68093003-2.5011997 6.44053143-2.5011997 11.27938193v.735681c.75215144-1.8634747 1.97819006-3.3348366 3.67811586-4.4137969 1.70021477-1.0789602 3.64546385-1.6184403 5.83603635-1.6184403 2.1252684 0 4.0133043.4660854 5.6643966 1.3976783zm-.8090757 15.3993109c1.3731171-1.4222395 2.0596756-3.3102754 2.0596756-5.6643967 0-2.3211804-.6949383-4.1930347-2.0842368-5.6152742-1.3895875-1.4222395-3.195849-2.1333592-5.4190734-2.1333592-2.2888173 0-4.15229196.7192105-5.5910019 2.1579204-1.43842099 1.438421-2.15763148 3.3021846-2.15763148 5.590713 0 2.3211803.71921049 4.2011255 2.15763148 5.6398354 1.43870994 1.438421 3.3186551 2.1579205 5.6398354 2.1579205 2.2232244 0 4.0213952-.7111198 5.3948011-2.1333592z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1384.69083 397.697106)"/><g transform="translate(1436.988825 388.430153)"><path d="m.039304.099422h47.553665v54.590201h-47.553665z" fill="#00a88a"/><path d="m47.5929694 54.6896229h-47.55366538v-54.59020073h47.55366538zm-45.01528916-52.05176699v49.51333329h42.47662036v-49.51333329z" fill="#000"/></g><path d="m.04045378.09275475h23.04969942v2.99155735l-16.38002621 31.9264155h-4.31555192l16.28178133-31.5340138h-18.63590262z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1447.938813 398.275017)"/><g transform="translate(1499.78573 388.430153)"><path d="m.039304.099422h47.553665v54.590201h-47.553665z" fill="#00a88a"/><path d="m47.5929694 54.6896229h-47.55366538v-54.59020073h47.55366538zm-45.01519163-52.05176699v49.51333329h42.47652283v-49.51333329z" fill="#000"/></g><path d="m23.338655 20.8516142c1.2586906 1.5201954 1.8880359 3.3429273 1.8880359 5.4679068 0 2.9753759-1.1277937 5.3211174-3.3836701 7.0375137-2.2561653 1.7166852-5.2965562 2.5748834-9.1217504 2.5748834-3.82548323 0-6.86587408-.8581982-9.12175046-2.5748834-2.25616535-1.7163963-3.38395906-4.0621378-3.38395906-7.0375137 0-2.1249795.64552681-3.9558022 1.93715836-5.4924681 1.29134258-1.5366659 3.06495207-2.5994446 5.32082845-3.1877582-2.09232751-.6212545-3.69429737-1.6430015-4.80590957-3.065241s-1.66756278-3.0976041-1.66756278-5.02667165c0-1.86347468.49064661-3.49029472 1.47136193-4.87959325.98071531-1.38958749 2.36221204-2.46854771 4.14391229-3.23688066 1.78198919-.76833294 3.81710354-1.15235494 6.10592084-1.15235494 2.2885284 0 4.3236427.384022 6.1056319 1.15235494 1.7817002.76833295 3.1631969 1.84729317 4.1439122 3.23688066.9810043 1.38929853 1.471362 3.01611857 1.471362 4.87959325 0 1.92906755-.5640414 3.60443215-1.692124 5.02667165-1.1277937 1.4222395-2.7052024 2.4439865-4.7325149 3.065241 2.2888173.6212546 4.0624268 1.6918351 5.3211174 3.2123195zm-16.23265883-6.4737613c1.38929853 1.1607346 3.26115293 1.8718543 5.61527423 2.1333592 2.3538323-.2615049 4.2256867-.9726246 5.6152742-2.1333592 1.3892985-1.1604457 2.0842368-2.6725504 2.0842368-4.53631405 0-1.92877864-.6784678-3.44926302-2.0354033-4.56087522-1.3566466-1.1116122-3.2449714-1.66727383-5.6641077-1.66727383-2.4194253 0-4.30775013.55566163-5.66439668 1.66727383-1.35693551 1.1116122-2.03540327 2.63209658-2.03540327 4.56087522 0 1.86376365.69493823 3.37586835 2.08452572 4.53631405zm11.94166813 16.5516658c1.471073-1.1116122 2.206754-2.7300525 2.206754-4.855032 0-1.9290676-.7764237-3.4738243-2.3295601-4.6345589-1.5528474-1.1607347-3.6209026-1.8718544-6.2035878-2.1333592-2.5829741.2615048-4.65102939.9726245-6.20387679 2.1333592-1.55313637 1.1607346-2.32956007 2.7054913-2.32956007 4.6345589 0 2.1249795.73568096 3.7434198 2.20704289 4.855032 1.47107297 1.1116122 3.57987096 1.6675628 6.32639397 1.6675628 2.746234 0 4.855032-.5559506 6.3263939-1.6675628z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1509.579895 397.697106)"/><g transform="translate(1565.056846 388.430153)"><path d="m.039304.099422h47.553665v54.590201h-47.553665z" fill="#00a88a"/><path d="m47.5929694 54.6896229h-47.55366538v-54.59020073h47.55366538zm-45.01519163-52.05176699v49.51333329h42.47652283v-49.51333329z" fill="#000"/></g><path d="m21.1125411 4.69235002c2.2885283 2.9424349 3.4330815 7.12737888 3.4330815 12.55454298 0 5.9178108-1.1852959 10.5194287-3.5555987 13.8051429-2.3703028 3.2860031-5.6805782 4.9287157-9.9311151 4.9287157-1.99437156 0-3.94771143-.3759313-5.86030856-1.1277937-1.91259713-.7521515-3.60472114-1.8146412-5.07579411-3.1877582l1.56931788-3.0895133c1.66727382 1.405769 3.25306216 2.427516 4.75707607 3.064952 1.50372496.6374361 3.02420934.9564431 4.56087522.9564431 3.0077389 0 5.3372989-1.3404651 6.9883912-4.0213951 1.6510924-2.6812191 2.4766385-6.4408204 2.4766385-11.2796709v-.637725c-.7521514 1.8311116-1.97819 3.2776234-3.6781158 4.3404021-1.7002148 1.0624897-3.6454639 1.5938791-5.8360363 1.5938791-2.1252685 0-4.00521365-.4660854-5.63983549-1.3976783-1.63462184-.9318818-2.90978291-2.2396949-3.82519426-3.9234391-.91541134-1.6837443-1.37311702-3.6047212-1.37311702-5.7623527 0-2.1579204.4822669-4.086988 1.44651175-5.78691381.9645338-1.70021476 2.29690808-3.03258905 3.99712284-3.99712285 1.69992581-.96424484 3.62899341-1.44651174 5.78691388-1.44651174 4.2175959 0 7.4706581 1.47107297 9.7591865 4.41379682zm-3.9234392 12.35834218c1.4387099-1.438421 2.1579204-3.3021847 2.1579204-5.590713 0-2.32118037-.7192105-4.20112552-2.1579204-5.63983546-1.438421-1.43842099-3.3183661-2.15792044-5.6395465-2.15792044-2.22322439 0-4.02168405.71111974-5.39480107 2.13335921-1.37311703 1.42223948-2.05967554 3.31027538-2.05967554 5.66439669 0 2.3211803.68655851 4.1930347 2.05967554 5.6152742 1.37311702 1.4222395 3.1877582 2.1333592 5.44363457 2.1333592 2.2888173 0 4.152292-.7192105 5.590713-2.1579204z" fill="#f2f2f2" fill-rule="nonzero" transform="translate(1575.139966 397.697106)"/><g stroke="#000"><path d="m1096.073546 379.827207v8.703347" stroke-width="2.540471"/><path d="m1334.698583 379.827107h-238.625356" stroke-width="2.536666"/><path d="m1157.047962 379.827207v8.703347" stroke-width="2.540471"/><path d="m1214.724654 379.827207v8.703347" stroke-width="2.540471"/><path d="m1273.792589 379.827207v8.703347" stroke-width="2.540471"/><path d="m.25679382.11881745v8.70067791h253.66824618v8.70607874" stroke-width="2.537062" transform="translate(1333.854479 371.007868)"/><path d="m1522.192353 379.827363v8.706079" stroke-width="2.538373"/><path d="m1460.272258 379.827363v8.706079" stroke-width="2.538373"/><path d="m1398.172318 379.827363v8.706079" stroke-width="2.538373"/><path d="m461.035492 332.200017v30.871702" stroke-width="2.538347"/><path d="m555.359389 347.854087v15.218407" stroke-width="2.537588"/><path d="m695.541211 347.854373v14.187222" stroke-width="2.538524"/><path d="m790.885848 362.040642v-30.871702" stroke-width="2.538347"/><path d="m887.942518 362.041595v-14.187222" stroke-width="2.538524"/><path d="m.019213 15.299472.406607-15.172668" stroke-width="2.539569" transform="matrix(-1 0 0 1 367.859321 347.727644)"/></g><g transform="translate(728.528993 23.597628)"><path d="m.027562.06972h33.346975v38.281514h-33.346975z" fill="#00a88a"/><path d="m33.3745364 38.3512337h-33.34697449v-38.28151366h33.34697449zm-30.80847438-35.74309116v33.20466866h28.26976908v-33.20466866z" fill="#000"/></g><g fill="#000" transform="translate(771.880716 31.029736)"><path d="m12.5751769 7.68008917v1.60645421h-12.54602874v-1.60645421zm0 5.15096053v1.6066044h-12.54602874v-1.6066044z"/><path d="m26.1286201 17.4720676c-1.3345049-.7649138-2.3587471-1.8486543-3.0727268-3.2512217-.7141299-1.4025673-1.0711197-3.0473348-1.0711197-4.93430252 0-1.86998963.3569898-3.50634324 1.0711197-4.90876034.7139797-1.40256734 1.7382219-2.48210096 3.0727268-3.23860086 1.3345049-.75649991 2.8942319-1.13467473 4.6793313-1.13467473 1.2239222 0 2.3757252.19126601 3.4552588.57364779 1.0795337.38253202 1.9762152.91380981 2.6901948 1.59383335l-1.0709695 2.39706047c-.8159982-.6630455-1.6277894-1.14338913-2.4352235-1.44088065-.8075843-.29749152-1.6703097-.44623728-2.5883264-.44623728-1.7509931 0-3.1068332.56959109-4.06722 1.70862301-.960537 1.13888168-1.4408806 2.77102834-1.4408806 4.89598924 0 2.14193892.4761367 3.78670642 1.4281095 4.93430252.9519729 1.1474458 2.31202 1.7212439 4.0799911 1.7212439.9180167 0 1.7807421-.1487458 2.5883264-.4462373.8074341-.2974915 1.6192253-.7778352 2.4352235-1.4407304l1.0709695 2.3969102c-.7139796.6800236-1.6106611 1.2113013-2.6901948 1.5938334-1.0795336.382532-2.2313366.573798-3.4552588.573798-1.7850994 0-3.3448264-.382532-4.6793313-1.1475961z"/><path d="m41.938792 17.7781233c-.9944932-.5440489-1.7595572-1.3217338-2.295042-2.333205-.5354847-1.0116214-.8032271-2.1973805-.8032271-3.5574276 0-1.3598968.2677424-2.54565597.8032271-3.55727739.5354848-1.01147117 1.3005488-1.78915607 2.295042-2.33320496.9944931-.54404888 2.1462961-.8159982 3.4552588-.8159982 1.2919846 0 2.4310166.27194932 3.4169455.8159982.9860792.54404889 1.7467861 1.32173379 2.2822708 2.33320496.535635 1.01162142.8033774 2.19738059.8033774 3.55727739 0 1.3600471-.2677424 2.5458062-.8033774 3.5574276-.5354847 1.0114712-1.2961916 1.7891561-2.2822708 2.333205-.9859289.5440489-2.1249609.8159982-3.4169455.8159982-1.3089627 0-2.4607657-.2719493-3.4552588-.8159982zm5.9160245-2.7412792c.5694408-.7055657.8543115-1.7552.8543115-3.1493534 0-1.3768749-.2890776-2.42665936-.8670826-3.14920316s-1.3940032-1.08374057-2.4479946-1.08374057c-1.0709695 0-1.8955318.36119677-2.4735368 1.08374057s-.8670826 1.77232826-.8670826 3.14920316c0 1.3941534.2848706 2.4437877.8543115 3.1493534.5695911.7055658 1.3897962 1.0581984 2.4607657 1.0581984 1.0880978 0 1.9167168-.3526326 2.4863079-1.0581984z"/><path d="m66.6356966 10.4850736v7.9050108h-3.1875165v-7.7520581c0-1.0200353-.1954729-1.7637641-.5864189-2.23118638-.3910962-.46757253-.9946433-.7013588-1.8106415-.7013588-.968951 0-1.7509931.31026262-2.3459761.93078786-.594983.62052525-.8924746 1.44073042-.8924746 2.46076572v7.2930497h-3.1621245v-9.23110178c0-1.35989684-.0679122-2.57540513-.2038868-3.64652485h2.9834793l.2295793 2.116547c.4418801-.78204211 1.0412203-1.38543905 1.7977202-1.81049133s1.6108115-.63750329 2.5627843-.63750329c3.0769338 0 4.6154758 1.76797107 4.6154758 5.30406345z"/><path d="m74.0818492 7.90951823v5.76307187c0 1.5129998.7054155 2.2694997 2.1163968 2.2694997.3910962 0 .8161484-.0680625 1.2751568-.2040371v2.5246212c-.5610269.2038869-1.2410505.3059054-2.0400706.3059054-1.4620657 0-2.5841195-.407924-3.3660114-1.2239222-.7820421-.8159982-1.172988-1.9891365-1.172988-3.5191143v-5.91602457h-2.4735368v-2.39706046h2.4735368v-3.13643206l3.1875164-1.07111972v4.20755178h3.4169456v2.39706046z"/><path d="m90.9629905 12.11707h-8.8741119c.0680624 1.3770252.4122812 2.3927033 1.0328064 3.0473349.6205252.6544813 1.542749.981722 2.7666711.981722 1.4111315 0 2.7200942-.4590084 3.9270384-1.3770251l.9180167 2.1930233c-.6119611.4929645-1.364254.8882676-2.2567286 1.1857591-.8924745.2974915-1.7977202.4462373-2.715737.4462373-2.1081331 0-3.7655214-.594983-4.9726158-1.7849491-1.2069441-1.1901163-1.8104913-2.8221128-1.8104913-4.8961395 0-1.3089627.2635354-2.47353681.790456-3.49357213.5270708-1.01988507 1.2665927-1.81469827 2.2185655-2.38413911.9519729-.56959109 2.0315065-.85431151 3.2386009-.85431151 1.7679711 0 3.1661812.57379804 4.1947807 1.72124387 1.0284492 1.14759607 1.5427489 2.72430113 1.5427489 4.73026538zm-7.7392869-3.88872499c-.535635.50137838-.8798538 1.22812913-1.0328065 2.18025229h5.9925009c-.1020185-.96910121-.3951528-1.70005891-.8797034-2.1930234-.4845506-.49311473-1.151803-.73952185-2.0017574-.73952185-.8501045 0-1.5427489.25076432-2.0782336.75229296z"/><path d="m105.651108 10.4850736v7.9050108h-3.187516v-7.7520581c0-1.0200353-.195473-1.7637641-.586569-2.23118638-.390946-.46757253-.994493-.7013588-1.810491-.7013588-.9689514 0-1.7509935.31026262-2.3459765.93078786-.594983.62052525-.8924746 1.44073042-.8924746 2.46076572v7.2930497h-3.1621245v-9.23110178c0-1.35989684-.0679122-2.57540513-.2040371-3.64652485h2.9836296l.2294291 2.116547c.4420303-.78204211 1.0412203-1.38543905 1.7977202-1.81049133.7566501-.42505228 1.6108118-.63750329 2.5627838-.63750329 3.077084 0 4.615626 1.76797107 4.615626 5.30406345z"/><path d="m113.097111 7.90951823v5.76307187c0 1.5129998.705566 2.2694997 2.116547 2.2694997.391096 0 .815998-.0680625 1.275006-.2040371v2.5246212c-.561026.2038869-1.24105.3059054-2.03992.3059054-1.462066 0-2.584119-.407924-3.366162-1.2239222-.781891-.8159982-1.172988-1.9891365-1.172988-3.5191143v-5.91602457h-2.473536v-2.39706046h2.473536v-3.13643206l3.187517-1.07111972v4.20755178h3.417096v2.39706046z"/><path d="m125.923803.23393651h7.879619c1.95488 0 3.476444.47177949 4.564542 1.41533845 1.087947.94340871 1.631996 2.2311864 1.631996 3.86318281s-.548256 2.9241313-1.644767 3.87610416c-1.096512.95197287-2.613869 1.42795927-4.551771 1.42795927h-4.590084v7.5735632h-3.289535zm7.497087 8.03257155c1.139032 0 2.001758-.23378627 2.588176-.70120855.58657-.46757253.879854-1.14323888.879854-2.02729954 0-.90103871-.289078-1.5852692-.867083-2.05269149-.578004-.46757253-1.444937-.70135879-2.600947-.70135879h-4.207552v5.48255837z"/><path d="m154.509583 5.51245777v12.87762663h-3.136582v-2.0654626c-.390946.7139797-.951973 1.2707996-1.683081 1.6703097-.730958.3995101-1.563934.59919-2.498929.59919-1.122054 0-2.116547-.2719493-2.983479-.8159982-.867083-.5440489-1.538542-1.3175268-2.014528-2.3205841-.476137-1.002907-.71413-2.1674811-.71413-3.4934219 0-1.326091.24235-2.50328596.72675-3.53188543.484551-1.02844922 1.160368-1.82746937 2.0273-2.39691021.867083-.56959109 1.853012-.85431151 2.958087-.85431151.934995 0 1.767971.19967991 2.498929.59918999.731108.39951008 1.292135.95633006 1.683081 1.67030971v-1.93805208zm-4.003514 9.48607303c.578005-.7309577.866932-1.7594069.866932-3.0854979 0-1.3600471-.288927-2.40547436-.866932-3.13643206-.578005-.73110795-1.402568-1.09651167-2.473537-1.09651167-1.053992 0-1.874347.37817482-2.460766 1.13467473-.586569.7564999-.879854 1.8062844-.879854 3.1493534 0 1.3259408.293285 2.3459761.879854 3.0599557.586419.7139797 1.415188 1.0709695 2.486158 1.0709695 1.053991 0 1.87014-.3654037 2.448145-1.0965117z"/><path d="m170.421623 5.51245777v12.46970263c0 2.0059643-.552462 3.5275283-1.657388 4.5645416-1.105076 1.0370134-2.728658 1.5555201-4.870597 1.5555201-1.988987 0-3.73998-.4164881-5.25313-1.2496147l.510093-2.4224524c1.563934.8159982 3.119454 1.2239222 4.66656 1.2239222 2.295042 0 3.442488-1.1388817 3.442488-3.4169455v-2.5500132c-.390946.6970016-.960537 1.2622355-1.708473 1.6957017-.748086.4336164-1.589626.6502744-2.524621.6502744-1.121904 0-2.120754-.2677424-2.99625-.8032271-.875497-.5354848-1.55552-1.2919847-2.039921-2.2694997-.48455-.9775151-.72675-2.095362-.72675-3.3532403 0-1.2580286.2422-2.37587548.72675-3.35339054.484401-.97751507 1.164424-1.73401497 2.039921-2.26949971.875496-.53548473 1.874346-.8032271 2.99625-.8032271.952123 0 1.797871.19967991 2.537392.59918999.739522.39951008 1.304756.95633006 1.695702 1.67030971v-1.93805208zm-4.06722 8.97613053c.603548-.6970016.905246-1.6575386.905246-2.8814608 0-1.2240724-.297491-2.18460946-.892474-2.88161106s-1.42811-1.04542727-2.499079-1.04542727c-1.053992 0-1.882761.34842567-2.486308 1.04542727-.603397.6970016-.905246 1.65753866-.905246 2.88161106 0 1.2239222.301849 2.1844592.905246 2.8814608.603547.6970016 1.432316 1.0455775 2.486308 1.0455775 1.053991 0 1.88276-.3485759 2.486307-1.0455775z"/><path d="m185.135284 12.11707h-8.874112c.068062 1.3770252.412281 2.3927033 1.032806 3.0473349.620525.6544813 1.542749.981722 2.766821.981722 1.410982 0 2.719944-.4590084 3.927039-1.3770251l.918016 2.1930233c-.612111.4929645-1.364254.8882676-2.256878 1.1857591-.892475.2974915-1.797721.4462373-2.715737.4462373-2.107983 0-3.765522-.594983-4.972466-1.7849491-1.207094-1.1901163-1.810491-2.8221128-1.810491-4.8961395 0-1.3089627.263385-2.47353681.790456-3.49357213.52692-1.01988507 1.266442-1.81469827 2.218565-2.38413911.951973-.56959109 2.031507-.85431151 3.238451-.85431151 1.767971 0 3.166331.57379804 4.194781 1.72124387 1.028599 1.14759607 1.542749 2.72430113 1.542749 4.73026538zm-7.739287-3.88872499c-.535485.50137838-.879704 1.22812913-1.032807 2.18025229h5.992651c-.102018-.96910121-.395303-1.70005891-.879853-2.1930234-.484401-.49311473-1.151653-.73952185-2.001758-.73952185-.849954 0-1.542749.25076432-2.078233.75229296z"/></g><path d="m367.838539 347.854154h94.040308" stroke="#000" stroke-width="2.538462"/><path d="m461.878846 347.854154h93.484616" stroke="#000" stroke-width="2.538462"/><path d="m.33230769 1.70030769 96.35538461-1.24846154 96.0461537 1.24846154" stroke="#000" stroke-width="2.538462" transform="translate(695.209615 346.153846)"/><path d="m.05446154.45184615h95.96584616l96.7416923 1.24846154" stroke="#000" stroke-width="2.538462" transform="translate(36.132692 346.153846)"/></g></svg>