quilt_rails 3.0.0 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (30) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +18 -14
  3. data/lib/generators/quilt/USAGE +7 -0
  4. data/lib/generators/quilt/demo_app/USAGE +5 -0
  5. data/lib/generators/quilt/demo_app/demo_app_generator.rb +69 -0
  6. data/lib/generators/quilt/demo_app/templates/app-ui/components/NotFound/NotFound.tsx +28 -0
  7. data/lib/generators/quilt/demo_app/templates/app-ui/components/NotFound/illustrations/404.svg +1 -0
  8. data/lib/generators/quilt/demo_app/templates/app-ui/components/NotFound/illustrations/index.ts +1 -0
  9. data/lib/generators/quilt/demo_app/templates/app-ui/components/NotFound/index.ts +1 -0
  10. data/lib/generators/quilt/demo_app/templates/app-ui/components/index.ts +1 -0
  11. data/lib/generators/quilt/demo_app/templates/app-ui/features/Home/Home.tsx +23 -0
  12. data/lib/generators/quilt/demo_app/templates/app-ui/features/Home/illustrations/empty-state.svg +57 -0
  13. data/lib/generators/quilt/demo_app/templates/app-ui/features/Home/illustrations/index.ts +1 -0
  14. data/lib/generators/quilt/demo_app/templates/app-ui/features/Home/index.tsx +7 -0
  15. data/lib/generators/quilt/demo_app/templates/app-ui/features/Home/translations/en.json +5 -0
  16. data/lib/generators/quilt/demo_app/templates/app-ui/features/index.ts +1 -0
  17. data/lib/generators/quilt/demo_app/templates/app-ui/foundation/App.tsx +21 -0
  18. data/lib/generators/quilt/demo_app/templates/app-ui/foundation/I18n.tsx +21 -0
  19. data/lib/generators/quilt/demo_app/templates/app-ui/foundation/Polaris.tsx +24 -0
  20. data/lib/generators/quilt/demo_app/templates/app-ui/foundation/Routes.tsx +13 -0
  21. data/lib/generators/quilt/demo_app/templates/app-ui/index.ts +1 -0
  22. data/lib/generators/quilt/demo_app/templates/path_import.ts +2 -0
  23. data/lib/generators/quilt/demo_app/templates/polaris_sass_plugin.ts +10 -0
  24. data/lib/generators/quilt/install_demo_app_generator.rb +11 -0
  25. data/lib/generators/quilt/react_app/react_app_generator.rb +12 -0
  26. data/lib/generators/quilt/react_setup/react_setup_generator.rb +1 -3
  27. data/lib/quilt_rails/react_renderable.rb +1 -1
  28. data/lib/quilt_rails/version.rb +1 -1
  29. metadata +23 -3
  30. data/lib/generators/quilt/react_setup/templates/App.tsx +0 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c38993bec98aa474ec2a1833abc0ab868085cba9a4521eb2007bfcaca6c12194
4
- data.tar.gz: be6a1c6e8a9ff87a8030d118bbe33fc5779d506070ac05d0a817653980044023
3
+ metadata.gz: e1023b00b5f569a1eaf37a6bd8c9a0ab52e3b9f69a1df57683b712e469204218
4
+ data.tar.gz: e7d6bf86ee4ce07af8e791be14bd09dc936dbededc19abf3e7a73c7797e0759f
5
5
  SHA512:
6
- metadata.gz: 9abee4ef36e0de59346a5a0310c50074cb54f3bb6b59f228cb3aa65c2307a0ef05b719bfe391849c98e866256bc3d9380e14e41a06310c5fb0c66d02ab87f259
7
- data.tar.gz: 6fc3bacb20732cae063fc83cbf4761ca2db8f5fdc952796187f640b0058ab8cf3904e171fdc755b8b4db1d1d6a2d5e6ed19a4d9eb005b02e2bb4a562ef67317b
6
+ metadata.gz: '0849412552c1c0044a747fa90691be5db225bba9daa9572571b84b00413eaf684bf307694c4ae2a92e25b22eb4901966facb033aed3a6ef1bd201d2f9c73153d'
7
+ data.tar.gz: b3da789c23e449b048ac9b728c642b3f9c2bcbd8c10430ac12fcc2ee3ad4f5298db9b796412f171735cfe73da8d10679eb7f49a7175bc99136588fd7696312a2
data/README.md CHANGED
@@ -23,7 +23,7 @@ A turn-key solution for integrating Quilt client-side libraries into your Rails
23
23
 
24
24
  ## Server-side-rendering
25
25
 
26
- 🗒 This guide is focused on internal Shopify developers with access to [`dev`](https://github.com/Shopify/dev) and [@shopify/sewing-kit](https://github.com/Shopify/sewing-kit). A similar setup can be achieved using the [manual installation](./docs/manual-installation.md) , and following the [react-server webpack plugin](../../packages/react-server/README.md#webpack-plugin) guide. Apps not running on Shopify infrastructure should [disable server-side GraphQL queries](./docs/FAQ.md) to avoid scalability issue.
26
+ 🗒 This guide is focused on internal Shopify developers with access [@shopify/sewing-kit](https://github.com/Shopify/sewing-kit). A similar setup can be achieved using the [manual installation](./docs/manual-installation.md) , and following the [react-server webpack plugin](../../packages/react-server/README.md#webpack-plugin) guide. Apps not running on Shopify infrastructure should [disable server-side GraphQL queries](./docs/FAQ.md) to avoid scalability issue.
27
27
 
28
28
  ### Quick start
29
29
 
@@ -31,12 +31,7 @@ Using the magic of generators, we can spin up a basic app with a few console com
31
31
 
32
32
  #### Generate Rails boilerplate
33
33
 
34
- With access to [`dev`](https://github.com/Shopify/dev), you can use `dev init` to scaffold out a Rails application.
35
- When prompted, choose `rails`. This will generate a basic Rails application scaffold.
36
-
37
- Alternatively, you can use [`rails new .`](https://guides.rubyonrails.org/command_line.html#rails-new) to do the same.
38
-
39
- In either case, remove [`webpacker`](./docs/FAQ.md#i-run-into-webpacker-issue-while-setting-up-quilt_rails) and [these files](./docs/FAQ.md#any-other-files-i-should-remove-before-running-generator) that any create conflict before continuing.
34
+ Use [`rails new . --skip-javascript`](https://guides.rubyonrails.org/command_line.html#rails-new) to scaffold out a Rails application.to do the same.
40
35
 
41
36
  #### Add Ruby dependencies
42
37
 
@@ -50,15 +45,16 @@ This will install our ruby dependencies and update the project's gemfile.
50
45
 
51
46
  This will generate a package.json file with common sewing-kit script tasks, default lint, format configuration; a sewing-kit configuration file, and other project default configurations.
52
47
 
53
- `rails generate quilt:install`
48
+ `rails generate quilt::install_demo_app`
54
49
 
55
- This will install Node dependencies, provide a basic React app (in TypeScript), and mount the Quilt engine in `config/routes.rb`. Basic linting and format configurations are also generated.
50
+ Both command will install Node dependencies, mount the Quilt engine in `config/routes.rb`, set up basic linting and format configurations, and provide a demo React app (in TypeScript) that uses all of quilt toolings and is a more complete example of a typical application.
51
+
52
+ If you prefer to setup all of the React app yourself, `rails generate quilt:install` does the same as above but with a bare bone React app.
56
53
 
57
54
  #### Try it out
58
55
 
59
56
  ```sh
60
- dev up
61
- dev server
57
+ bin/rails server
62
58
  ```
63
59
 
64
60
  Will run the application, starting up both servers and compiling assets.
@@ -151,6 +147,8 @@ class ReactController < ApplicationController
151
147
  end
152
148
  ```
153
149
 
150
+ 🗒️ if you don't have a controller. Follow the [instruction](./docs/manual-installation#add-a-react-controller-and-routes) to setup `quilt_rails` in a controller instead of using the engine.
151
+
154
152
  Headers can be accessed during server-side-rendering with the `useRequestHeader` hook from `@shopify/react-network`.
155
153
 
156
154
  ```tsx
@@ -183,7 +181,9 @@ class ReactController < ApplicationController
183
181
  end
184
182
  ```
185
183
 
186
- If using the webpack plugin, this will be automatically passed into your application as the `data` prop.
184
+ 🗒️ if you don't have a controller. Follow the [instruction](./docs/manual-installation#add-a-react-controller-and-routes) to setup `quilt_rails` in a controller instead of using the engine.
185
+
186
+ If using `react-server` without a customized server & client file, this will be automatically passed into your application as the `data` prop. If `react-server` is not being used or a customized server / client file was provided, check out [`react-server/webpack-plugin`](../../packages/react-server/src/webpack-plugin/webpack-plugin.ts) on how to pass the data to React.
187
187
 
188
188
  ```tsx
189
189
  // app/ui/index.tsx
@@ -222,7 +222,7 @@ export default App;
222
222
 
223
223
  With SSR enabled React apps, state must be serialized on the server and deserialized on the client to keep it consistent. When using `@shopify/react-server`, the best tool for this job is [`@shopify/react-html`](https://github.com/Shopify/quilt/tree/master/packages/react-html)'s [`useSerialized`](https://github.com/Shopify/quilt/tree/master/packages/react-html#in-your-application-code) hook.
224
224
 
225
- `useSerialized` can be used to implement [universal-providers](https://github.com/Shopify/quilt/tree/master/packages/react-universal-provider#what-is-a-universal-provider-), allowing application code to manage what is persisted between the server and client without adding any custom code to client or server entrypoints. We offer some for common use cases such as [CSRF](https://github.com/Shopify/quilt/tree/master/packages/react-csrf-universal-provider), [GraphQL](https://github.com/Shopify/quilt/tree/master/packages/react-graphql-universal-provider), [I18n](https://github.com/Shopify/quilt/tree/master/packages/react-i18n-universal-provider), and the [Shopify App Bridge](https://github.com/Shopify/quilt/tree/master/packages/react-app-bridge-universal-provider).
225
+ `useSerialized` can be used to implement [universal-providers](https://github.com/Shopify/quilt/tree/master/packages/react-universal-provider#what-is-a-universal-provider-), allowing application code to manage what is persisted between the server and client without adding any custom code to client or server entrypoints. We offer some for common use cases such as [GraphQL](https://github.com/Shopify/quilt/tree/master/packages/react-graphql-universal-provider), and [I18n](https://github.com/Shopify/quilt/tree/master/packages/react-i18n-universal-provider).
226
226
 
227
227
  #### Customizing the Node server
228
228
 
@@ -244,6 +244,10 @@ When a React component sends HTTP requests back to a Rails endpoint (e.g., `/gra
244
244
 
245
245
  If your API **does not** require session data, the easiest way to deal with this is to use `protect_from_forgery with: :null_session`. This will work for APIs that either have no authentication requirements, or use header based authentication.
246
246
 
247
+ While `Can't verify CSRF token authenticity` error will persist, `protect_from_forgery with: :null_session` will keep CSRF protection while ensuring the session is nullified when a token is not sent in to be more secure.
248
+
249
+ You can also add `self.log_warning_on_csrf_failure = false` to the controller to suppress this error all together.
250
+
247
251
  ##### Example
248
252
 
249
253
  ```rb
@@ -263,7 +267,7 @@ end
263
267
  If your API **does** require session data, you can follow these steps:
264
268
 
265
269
  - Add an `x-shopify-react-xhr` header to all GraphQL requests with a value of 1 (this is done automatically if you are using `@shopify/react-graphql-universal-provider`)
266
- - Add a `protect_from_forgery with: Quilt::HeaderCsrfStrategy` override to your controllers
270
+ - Add a `protect_from_forgery with: Quilt::HeaderCsrfStrategy` override to your API controllers
267
271
 
268
272
  ##### Example
269
273
 
@@ -3,3 +3,10 @@ Description:
3
3
 
4
4
  Example:
5
5
  rails generate quilt:install
6
+
7
+
8
+ Description:
9
+ This generator mounts the Quilt engine and adds a demo React app with all the quilt toolings.
10
+
11
+ Example:
12
+ rails generate quilt:install_demo_app
@@ -0,0 +1,5 @@
1
+ Description:
2
+ This generator adds a demo React app with all the quilt toolings.
3
+
4
+ Example:
5
+ rails generate quilt:demo_app
@@ -0,0 +1,69 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Quilt
4
+ class DemoAppGenerator < Rails::Generators::Base
5
+ source_root File.expand_path('templates', __dir__)
6
+ desc "This generator adds a demo React app with all the quilt toolings."
7
+
8
+ def install_js_dependencies
9
+ say "Installing application js dependencies"
10
+ system("yarn add "\
11
+ "@shopify/react-router "\
12
+ "@shopify/polaris "\
13
+ "@shopify/react-async "\
14
+ "@shopify/react-network "\
15
+ "@shopify/react-performance "\
16
+ "@shopify/react-i18n "\
17
+ "@shopify/react-i18n-universal-provider") unless Rails.env.test?
18
+ end
19
+
20
+ def add_polaris_sk_config
21
+ file_path = "config/sewing-kit.config.ts"
22
+
23
+ unless File.exist?(file_path)
24
+ inject_into_file(
25
+ file_path,
26
+ File.read(File.expand_path(find_in_source_paths('path_import.ts'))),
27
+ after: "/* eslint-env node */"
28
+ )
29
+
30
+ gsub_file(
31
+ file_path,
32
+ /plugins:\s*\[/, "plugins: [#{File.read(File.expand_path(find_in_source_paths('polaris_sass_plugin.ts')))}"
33
+ )
34
+ end
35
+ end
36
+
37
+ def create_app_files
38
+ template_director = "app-ui"
39
+ app_ui_director = "app/ui"
40
+ app_ui_files = [
41
+ "index.ts",
42
+ "components/index.ts",
43
+ "components/NotFound/index.ts",
44
+ "components/NotFound/NotFound.tsx",
45
+ "components/NotFound/illustrations/index.ts",
46
+ "components/NotFound/illustrations/404.svg",
47
+ "features/index.ts",
48
+ "features/Home/index.tsx",
49
+ "features/Home/Home.tsx",
50
+ "features/Home/illustrations/index.ts",
51
+ "features/Home/illustrations/empty-state.svg",
52
+ "features/Home/translations/en.json",
53
+ "foundation/App.tsx",
54
+ "foundation/I18n.tsx",
55
+ "foundation/Polaris.tsx",
56
+ "foundation/Routes.tsx",
57
+ ]
58
+
59
+ app_ui_files.each do |file_path|
60
+ copy_file "#{template_director}/#{file_path}", "#{app_ui_director}/#{file_path}"
61
+ end
62
+ end
63
+
64
+ def format_files
65
+ say "Perform file formating"
66
+ system("yarn sewing-kit format --fix") unless Rails.env.test?
67
+ end
68
+ end
69
+ end
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import {Page, EmptyState} from '@shopify/polaris';
3
+ import {Status, StatusCode} from '@shopify/react-network';
4
+
5
+ import {emptyStateIllustration} from './illustrations';
6
+
7
+ export function NotFound() {
8
+ return (
9
+ <>
10
+ <Status code={StatusCode.NotFound} />
11
+ <Page title="">
12
+ <EmptyState
13
+ heading="The page you’re looking for couldn’t be found"
14
+ image={emptyStateIllustration}
15
+ action={{
16
+ content: 'Go to home',
17
+ url: '/',
18
+ }}
19
+ >
20
+ <p>
21
+ Check the web address and try again, or try navigating to the page
22
+ from home.
23
+ </p>
24
+ </EmptyState>
25
+ </Page>
26
+ </>
27
+ );
28
+ }
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><path d="M1262.64 392v28.57c0 9.52 0 19-.06 28.56v1.52h-1.48c-5.72-.05-11.44-.09-17.16-.07l-17.17.2c-11.44.15-22.88.33-34.32.29-22.89.08-45.77 0-68.66-.13l-68.65-.2c-22.89-.15-45.77-.19-68.65-.41h-1.19v-1.17c.19-14.69.05-29.39.1-44.09l.18-44.1c.09-14.7-.11-29.39 0-44.09l.09-44.1v-.86h.85c11.44.07 22.88-.1 34.32-.26 5.72-.1 11.44-.09 17.17-.12l17.16-.05 68.65-.23c11.44 0 22.89-.13 34.33-.1l34.33.2 68.65-.08h1.5v1.49l-.23 29.81c0 9.94 0 19.88.05 29.81l.26 59.63h-3.14l-.11-59.63-.09-29.81-.27-29.81 2 2-68.65-.28-34.33-.08-34.33-.24c-11.44-.13-22.88 0-34.32.07l-34.33.17-17.16.07c-5.73 0-11.45.09-17.17 0s-11.44-.3-17.16-.33-11.44.05-17.16.08l1.49-1.5.44 44.1c.14 7.35 0 14.7 0 22s-.2 14.7-.14 22.05q.07 22 0 44.1c0 14.7-.26 29.4 0 44.09l-1.83-1.83 17.16-.15 17.16.18c11.44.1 22.89.4 34.33.32s22.88.19 34.33.3 22.88.28 34.32.2h17.17l17.16-.11 34.33-.21c11.44-.12 22.88 0 34.32.05l17.17.11c5.72 0 11.44-.08 17.16-.14l-1.33 1.32c-.12-9.52-.09-19-.14-28.56l-.1-28.57z" fill="#e6e8f0"/><path fill="#e6e8f0" d="M1166.98 391.51l-.64-52.99 58.94 53.04-58.3-.05z"/><path d="M1166.13 392.36c0-2.26-.05-4.51 0-6.81v-1.7c0-.56-.09-1.06-.14-1.59a21.94 21.94 0 010-3.43c.18-4.62-.56-8.72-.66-13.25 0-1.13 0-2.29.11-3.45a26.93 26.93 0 000-3.37c-.11-1.1-.23-2.2-.25-3.32s0-2.27.06-3.41a86.69 86.69 0 00-.14-13.49l-.34-2.94 2.48 2c1.3 1 2.07 2.65 3.54 3.48a13.23 13.23 0 011.9 1.59l1.82 1.68c2.42 2.26 4.8 4.55 7.29 6.73 2.62 2 4.34 5 7.24 6.76a36.33 36.33 0 013.53 3.49 38.62 38.62 0 003.6 3.41c1.26 1.07 2.56 2.09 3.77 3.21l3.67 3.34c2.5 2.16 4.68 4.67 7.36 6.63s5.19 4.12 7.71 6.25c1.24 1.1 2.53 2.13 3.73 3.27s2.27 2.42 3.51 3.51l1.76 1.53h-2.35c-2.46 0-4.92.22-7.41.36a28.56 28.56 0 01-3.7 0 25.2 25.2 0 00-3.69-.09c-1.25 0-2.51.15-3.74.12a25.37 25.37 0 01-3.62-.31 25.16 25.16 0 00-3.69 0 21.86 21.86 0 01-3.64-.15 12.52 12.52 0 00-1.84 0c-.64.05-1.3.15-1.93.18a28.72 28.72 0 01-3.63-.16c-1.18-.09-2.38-.14-3.61-.15s-2.51.08-3.77.11-2.42-.07-3.59-.14a31.37 31.37 0 00-3.74 0c-1.29.07-2.59.14-3.82.14s-2.56 0-3.78-.03zm1.69-1.71c2.42 0 4.82-.06 7.1.07a27.35 27.35 0 003.61 0 32.62 32.62 0 013.73-.22c1.18 0 2.29.15 3.51.11s2.44-.1 3.69-.22a25.69 25.69 0 013.66-.18c.57.06 1.1.2 1.66.28a8.92 8.92 0 001.79 0c.62-.06 1.26-.16 1.86-.17a12.82 12.82 0 011.76.07 16.61 16.61 0 003.54.11 28.76 28.76 0 013.65-.26c1.19 0 2.36.13 3.54.2a21.56 21.56 0 003.59 0 30.71 30.71 0 013.59 0c2.38.12 4.77.29 7.18.25l-.63 1.65c-1.24-1.1-2.7-1.95-4-3s-2.47-2.19-3.71-3.28-2.39-2.28-3.59-3.42a48.71 48.71 0 01-3.43-3.6c-2.13-2.57-5-4.27-7.51-6.47a60.14 60.14 0 01-7.27-6.73 20.74 20.74 0 00-3.79-3.2 19.84 19.84 0 01-3.91-3.07c-1.57-3.19-5.32-4-7.4-6.59-2.32-2.36-4.79-4.55-7.22-6.79l-1.81-1.69a11.73 11.73 0 01-1.73-1.79c-.94-1.42-2.59-2.05-3.73-3.26l1.93-.87c0 1.08-.19 2.18-.24 3.27s0 2.19 0 3.28c-.06 2.2 0 4.38 0 6.56l.06 3.26v3.29c-.09 2.23.32 4.27.36 6.42.08 4.3-.42 9-.1 13.17a22 22 0 01.13 3.19c0 .57-.08 1.15-.08 1.7v1.61c.13 2.03.17 4.18.21 6.32zm-105.64-.51c-12.59 12.6-33.76 11.85-47.28-1.67l45.61-45.61c13.49 13.52 14.27 34.69 1.67 47.28z" fill="#e6e8f0"/><path d="M1063 391l-2.58 2.23c-.93.65-1.9 1.24-2.83 1.88a10.77 10.77 0 00-1.45.88 9.46 9.46 0 01-1.43.93c-1.06.44-2.18.7-3.22 1.1s-2.12.78-3.21 1.1-2.17.66-3.28.89a29.76 29.76 0 01-3.39.49 15.6 15.6 0 01-3.41-.16c-.56-.11-1.12-.16-1.69-.23-.28 0-.56 0-.84-.06s-.56-.08-.85-.09a15.48 15.48 0 01-3.38-.48 32.84 32.84 0 01-6.29-2.57c-1-.54-2-1-3-1.58-.49-.28-1-.6-1.46-.85s-1-.48-1.5-.8a10 10 0 01-2.61-2.15 5.83 5.83 0 00-.56-.64 4.76 4.76 0 00-.61-.58c-.45-.35-1-.62-1.39-1l-.88-.81.88-.85c1.93-1.88 3.86-3.75 5.81-5.59 1-.93 1.91-1.89 2.87-2.84a24.84 24.84 0 013-2.73c2.34-1.46 3.55-4.05 5.78-5.62l1.56-1.29c.5-.45 1-.88 1.49-1.37 1-.93 1.84-1.95 2.76-2.93 1.84-2 3.81-3.79 5.71-5.7l2.93-2.76c1-.93 1.83-2 2.71-3s1.75-2 2.66-3 1.79-2 2.73-3 1.83-2 2.8-2.9 2.06-1.74 3-2.67l.71-.69.57.69c.71.86 1.53 1.63 2.32 2.43s1.48 1.69 2.24 2.54a12.44 12.44 0 011 1.38 16.34 16.34 0 01.9 1.43 15.5 15.5 0 01.68 1.57c.22.52.48 1 .74 1.52a30.86 30.86 0 011.42 3.09 12.18 12.18 0 01.73 3.32c.15 2.26 1.07 4.41.82 6.7v1.68c0 .56.14 1.13.19 1.7a13.21 13.21 0 01-.41 3.36l-1.67 6.54a18.89 18.89 0 01-1.44 3.05 19.81 19.81 0 00-1.59 3 32.39 32.39 0 01-1.81 2.89zm-1.7-1.7l2.12-2.33c.6-.87 1.3-1.66 2-2.48a13.89 13.89 0 001.54-2.77 19.54 19.54 0 011-3 19.52 19.52 0 001.08-3c.1-.52.18-1 .25-1.57a9.16 9.16 0 00.13-1.57 15.69 15.69 0 01.2-3.14c.1-.51.27-1 .33-1.57a4.67 4.67 0 00-.1-1.58l-.18-.78c0-.26-.07-.52-.1-.78v-1.59a8.45 8.45 0 00-.57-3.11c-.9-1.95-1.33-4-2.06-6a12.32 12.32 0 00-1.54-2.77c-.62-.86-1-1.85-1.64-2.72s-1.14-1.8-1.77-2.66-1.38-1.63-2.16-2.35h1.39c-.91 1-1.64 2.17-2.56 3.14s-1.89 1.91-2.84 2.87-2 1.84-2.93 2.76a38.75 38.75 0 01-3.06 2.65 22.72 22.72 0 00-3 2.66c-.9 1-1.72 2.07-2.64 3.06-1.8 2-3.6 4-5.58 5.81-1 .89-2.14 1.67-3.07 2.64a22.38 22.38 0 00-2.54 3.16c-1.32 2.48-4.55 3.05-5.71 5.69a12.29 12.29 0 01-1.24 1.61c-.47.49-1 .92-1.48 1.38-1 .9-2 1.79-3 2.73q-2.87 2.83-5.78 5.62v-1.71a15.72 15.72 0 011 1.26 3.35 3.35 0 00.58.55 6 6 0 00.64.49 5.23 5.23 0 00.69.41c.23.14.44.3.66.45a13.16 13.16 0 011.21 1 23.65 23.65 0 005.39 3.45 33.66 33.66 0 006.07 2.06 21 21 0 006.34.87 12.15 12.15 0 001.59-.12c.53 0 1.06-.07 1.59-.06 1.06 0 2.11-.18 3.17-.21s2.1-.31 3.16-.45c.53-.09 1-.29 1.54-.42s1-.29 1.53-.49c1-.42 1.86-1.07 2.82-1.51s1.94-.84 2.81-1.46 1.65-1.34 2.49-2z" fill="#e6e8f0"/><path fill="#d5daea" d="M1089.22 393.68h55.09v-42.86l-2.29-43.62-52.8 43.62v42.86z"/><path d="M1090.89 392q3.39-.11 6.72-.15c2.22 0 4.48-.1 6.66-.06 4.18.39 9.13-.49 13.58-.76s8.83-.21 13.22-.14l13.24.22-2.55 2.56.1-5.41.25-5.4.23-5.4c.12-1.8.26-3.6.35-5.41s0-3.6 0-5.4.07-3.6.16-5.4.19-3.61.16-5.41l-.15-5.4q-.43-10.8-1-21.59c-.13-3.6-.44-7.2-.89-10.78s-.61-7.18-.85-10.78l3.06 1.35-26.24 22c-4.37 3.67-8.77 7.31-13.11 11s-8.72 7.38-13.1 11l.88-1.87c.13 3.41-.46 6.89-.37 10.32s.1 6.82 0 10.26c-.07 1.73-.37 3.58-.42 5.32s-.06 3.46 0 5.16zm-3.34 3.34l-.4-11c-.05-1.85-.14-3.68-.23-5.52s-.44-3.56-.52-5.44c-.16-3.74 0-7.6.15-11.37s0-7.5.25-11.22v-.2a2.29 2.29 0 01.86-1.66c4.46-3.56 9-7.06 13.4-10.66s8.77-7.31 13.15-11l13-11.1c4.35-3.7 8.67-7.43 13.06-11.08a2.64 2.64 0 014.32 1.91c.18 3.6.6 7.2.42 10.82 0 1.81-.16 3.62-.12 5.43s.22 3.6.35 5.4c.51 7.21 1.49 14.4 2 21.61a7.62 7.62 0 010 1.35 12.27 12.27 0 01-.06 1.36c-.07.91-.24 1.81-.27 2.72-.08 1.8 0 3.61 0 5.41v5.42c0 1.81-.28 3.61-.18 5.42s.5 3.6.42 5.41-.3 3.62-.54 5.42c-.07.91-.21 1.81-.22 2.71s.08 1.81 0 2.71-.14 1.8-.21 2.71l-.32 2.71v.34a1.55 1.55 0 01-1.67 1.36 113.81 113.81 0 00-14.07-.11c-4.73.15-9.53.36-14.29.37s-9.08-.74-14.1-.29c-2.42.07-4.78 0-7.18 0s-4.65.11-7 .07z" fill="#d5daea"/><path d="M1254.39 383l-.1 14.29c0 4.76-.11 9.52-.2 14.28s-.2 9.52 0 14.28c.08 2.39.24 4.77.24 7.15s-.07 4.76-.09 7.14v.11a2.16 2.16 0 01-2.18 2.14h-.06l-8.58-.34c-1.43-.08-2.86-.06-4.29-.08s-2.86 0-4.29 0c-5.72.1-11.44.13-17.16.32l-17.17.48c-5.72.12-11.44.23-17.16.25s-11.44-.25-17.16-.42-11.45-.13-17.17.14c-11.44.53-22.88.17-34.32-.1s-22.89-.54-34.33-.43c-5.72 0-11.44.2-17.16.41-1.43.07-2.86.07-4.29.09s-2.87 0-4.3 0c-2.86 0-5.72-.27-8.58-.43s-5.72-.25-8.58-.14l-4.29.27c-1.43.06-2.86.12-4.29.1l-17.16-.1c-11.45 0-22.89-.26-34.33-.25a2 2 0 01-2-2v-11c0-3.67-.06-7.34 0-11s.15-7.35.33-11 .4-7.35.44-11c.23-7.35-.64-14.7-.44-22.05s.44-14.69.65-22c.42-14.7-.28-29.4-.17-44.1l.06-22.05v-11l.16-11a.92.92 0 01.94-.92c11.44.19 22.88-.15 34.33-.5 5.72-.19 11.44-.27 17.16-.39s11.44-.25 17.16-.3c11.45-.05 22.89-.38 34.33 0s22.88.32 34.33 0c5.72-.14 11.44-.37 17.16-.45l8.58-.13h4.29l4.29.15c11.45.52 22.89-.31 34.33-.2 5.72 0 11.44.45 17.16.66s11.45.09 17.17 0c2.86 0 5.72-.06 8.58 0l8.58.32c2.86.06 5.72 0 8.58-.11s5.72-.37 8.58-.39a2.19 2.19 0 012.22 2.17c.07 5-.13 9.94-.29 14.91s-.29 9.94-.32 14.91c-.14 9.93.57 19.87.28 29.81-.16 5-.33 9.94-.32 14.9s.27 9.94.43 14.91c.07 2.48.2 5 .22 7.45l.09 7.46c.06 5 .13 9.93.09 14.9h-4.8v-22.36c0-2.48.11-5 .16-7.45.13-5 .3-9.94.29-14.91s-.3-9.93-.53-14.9c-.45-9.94.45-19.88.18-29.81-.06-5-.21-9.94-.42-14.91s-.43-9.94-.35-14.91l3 3c-2.86-.05-5.72-.36-8.58-.56-1.43-.14-2.86-.14-4.29-.21s-2.86 0-4.29 0c-2.86.08-5.72.29-8.58.37s-5.72 0-8.58-.07l-8.59-.38-4.29-.07c-1.43 0-2.86.05-4.29.07-5.72.16-11.44.58-17.16.57-11.44 0-22.88-.92-34.33-.44l-4.29.14-4.29.05-8.58-.1c-5.72-.05-11.44-.27-17.16-.36-11.45-.24-22.89-.38-34.33.37s-22.88.36-34.33.41c-5.72 0-11.44-.15-17.16-.22s-11.44-.14-17.16-.35-11.45-.59-17.17-.71l-4.29-.1h-4.29c-2.86 0-5.72.12-8.58.2l1.66-1.67.35 11 .21 11c.06 3.68.16 7.35.18 11l.07 11c.33 14.7-1.2 29.4-.48 44.1l.62 11c.22 3.68.42 7.35.44 11 .34 7.35-1.42 14.7-1.06 22.05 0 1.84.13 3.68.27 5.51s.26 3.68.41 5.52c.28 3.67.46 7.35.5 11 0 7.35-.26 14.7-.37 22.05l-2.8-2.8c11.44.2 22.88.1 34.33.21l17.16.12c1.43 0 2.86.08 4.29.15l4.29.35c2.86.16 5.72.09 8.58 0s5.72-.32 8.58-.33h4.3c1.43 0 2.86 0 4.29.11l8.58.33 4.29.14 4.29.05 17.16.17h17.17c11.44 0 22.88-.13 34.32 0h8.58c2.87 0 5.73-.11 8.59-.16 5.72-.2 11.44-.49 17.16-.51s11.44 0 17.16.11l17.17.32c5.72.13 11.44.12 17.16.18h4.29c1.43 0 2.86 0 4.29-.1l8.58-.35-2 2c0-2.38-.16-4.76-.11-7.14s.13-4.76.19-7.15c.16-4.76 0-9.52-.07-14.28s-.22-9.52-.25-14.28l-.16-14.29z" fill="#ffd57d"/><path d="M1622.4 345.22c0-4.54-5.67 324.83-5.67 324.83H1295.3c.8 0 4-30.42 4.31-33.09 10.26-78.34 91.58-113.19 121.13-141.76 18.45-17.83 29.52-42.8 31.59-68.37 3.09-38.24-19.53-75.69-19.53-75.69s203.45-5.92 189.6-5.92z" fill="#fff"/><path d="M1624.1 343.53l-.72 40.75-.38 20.42c-.19 6.83-.14 13.5-.1 20.18s-.14 13.52-.35 20.37-.53 13.73-.63 20.5-.13 13.5-.2 20.26-.06 13.49-.06 20.23c0 13.48.05 27-.08 40.53 0 6.77-.08 13.54-.25 20.35s-.43 13.63-.65 20.43c-.14 3.41-.21 6.8-.29 10.2l-.12 5.09v5.08c-.1 6.78 0 13.55 0 20.32 0 3.39 0 6.79-.05 10.18s-.08 6.79-.18 10.18c-.15 6.79-.31 13.58-.55 20.36l-.09 2.66h-2.57c-18.44-.25-36.88-.56-55.32-.61h-13.83c-4.61 0-9.22 0-13.83.09-9.22.16-18.44.48-27.65.41s-18.44-.71-27.66-.63c-4.61 0-9.22.37-13.83.38s-9.22 0-13.83 0l-55.32-.25c-9.22-.07-18.43-.07-27.65-.06h-27.66c-18.44.08-36.88-1.29-55.32-.66-4.61.1-9.22.31-13.83.31s-9.22 0-13.83-.06c-9.21-.09-18.43-.36-27.65-.53l-13.83-.18h-13.83l-27.66.23h-1.11v-1.13l-.08-10V629l.07-39.9c.13-13.29.22-26.59.2-39.89l-.62-39.9q-.57-39.88-.76-79.79c-.15-13.29 0-26.59.3-39.89.16-6.65.17-13.3.21-19.95l-.15-19.95v-1.86l1.9-.05c18.73-.46 37.5-1 56.27-1.32 9.38-.13 18.72.21 28.09.08l14.08-.23 14.1-.32c9.4-.2 18.79-.29 28.12-.17l14 .28c4.66 0 9.31.13 14 .06 9.36-.05 18.81-.39 28.17-.43s18.56.32 28 .12c4.69-.07 9.45-.29 14.19-.46s9.45-.25 14.12-.25c9.35 0 18.6.13 27.9.17s18.62 0 28-.13l14.14-.27c4.74-.12 9.44-.19 14.13-.24 9.38-.08 18.58.06 27.88.06s18.77-.23 28.26-.46l14.22-.32 14.13-.2c9.28-.09 18.71-.22 28.04-.26zm-3.4 3.38l-27.93.35-13.92.13H1565c-9.21 0-18.43 0-27.86.25s-18.94.68-28.25.82-18.44 0-27.73.06-18.65.3-28 .55-18.83.68-28.14.86c-4.67.1-9.29.1-13.85 0s-9.1-.33-13.73-.32c-9.23-.08-18.77.65-28 .72s-18.44-.24-27.73-.19c-2.32 0-4.64 0-7 .08l-7 .17-14 .52c-9.34.29-18.61.35-27.88.29l-13.9-.1H1258c-9.3 0-18.64.53-27.93.61-18.59.15-37.18 0-55.8 0l1.9-1.92v19.95c.08 6.65.14 13.3.37 19.95.41 13.3.7 26.6.6 39.89v19.95c0 6.65 0 13.3-.09 19.95-.14 13.3-.19 26.6-.41 39.89s-.82 26.6-.87 39.9.31 26.6.51 39.89c.33 26.6.67 53.2.42 79.79l-2.4-2.4 27.66.57c4.61 0 9.22.07 13.83 0s9.22-.13 13.83-.27c9.22-.3 18.44-.71 27.65-.9 4.61-.07 9.22-.14 13.83-.06l3.46.11 3.46.19 6.91.38c18.44 1.25 36.88-1 55.32-.81s36.88.49 55.31.48l55.32.17c4.61 0 9.22 0 13.83.09s9.22.49 13.83.52c9.22.16 18.44-.44 27.66-.43s18.43.3 27.65.48c4.61.14 9.22.16 13.83.18l13.83.08c18.44.17 36.88.09 55.32.06l-1.54 1.51c.21-13.45.38-26.88.73-40.32s.61-26.91.54-40.28 0-26.73.36-40.19.73-26.9 1.11-40.38c.2-6.74.41-13.49.55-20.22s.36-13.49.42-20.17c.18-13.41-.13-26.47.37-40 .25-6.79.51-13.6.55-20.25l.25-20z" fill="#00084b"/><path fill="#e6e8f0" d="M1488.33 394.11h97.4v96.36h-97.4z"/><path d="M1490 488.77c4 0 8 0 11.82.09 2 0 3.9.1 6-.05 1.05-.08 2.14-.21 3.15-.23s2 0 3 0c1.92.1 3.75.35 5.76.33s4.07-.14 6.1-.21c4.1-.22 8.23-.57 12.27-.77 2-.06 4-.22 6-.21 1 0 2 .06 2.92.13l2.91.21c1 .06 2 .06 2.95.09s2-.06 3-.08c2-.15 4-.41 6-.46 4 0 7.89.2 11.85.47s8 .36 12 .3l-2.07 2.07v-3c-.06-1-.07-2-.19-3l-.25-3c0-1-.08-2 0-3 .12-2 .62-4 .64-6a18.21 18.21 0 00-.32-3 16.83 16.83 0 01-.09-3c.06-4 .08-8 .18-12l.14-6v-12a52.85 52.85 0 01.46-6 39.36 39.36 0 00.36-6c-.09-2-.51-4-.5-6 0-4 .56-8 .74-12 .12-2 .09-4 0-6l-.23-6 1.14 1.15c-8.11.12-16.23.09-24.35-.2a91.62 91.62 0 00-12.17.31c-4.06.34-8.12.47-12.18.67-8.11.34-16.23.71-24.35-.12-2-.1-4.06 0-6.09.06s-4 .22-6.08.34-4.06.3-6.09.35l-3 .12c-1 0-2 0-3.05-.11l2.57-2.57a71.63 71.63 0 00.06 11.81 50.59 50.59 0 01-.08 5.9c-.2 2-.53 4-.63 6-.07 1 0 2 0 3l.13 2.93a37.81 37.81 0 01-.22 6 22.44 22.44 0 000 5.91 22.19 22.19 0 01.27 2.85c0 1 0 2-.07 3-.34 4.07-.62 8.17-.61 12.12 0 2 .16 3.86.24 5.78a58.64 58.64 0 01-.17 6 59.46 59.46 0 00-.18 6.05c0 2 .23 3.77.31 5.66s.09 3.86.11 5.8-.03 3.51-.11 5.51zm-3.39 3.4c-.07-2-.08-4.05-.08-6.1v-6.2a67.62 67.62 0 00-.13-12.21 43 43 0 01-.29-6c.07-2.11.22-4.25.23-6.3 0-4.08-.41-8-.82-11.95-.06-1-.09-2-.08-3.06a26.31 26.31 0 01.39-3.23 18.54 18.54 0 00.11-6.2 23.9 23.9 0 01-.14-6.11 47.2 47.2 0 00.37-6.23c0-2-.37-4-.55-6.05a52.59 52.59 0 010-6.15 72.2 72.2 0 00.24-12.29l-.23-2.14 2.62-.25c1-.1 2-.1 3.05-.13l3 .09c2 0 4.06.19 6.09.3s4.06.24 6.08.23 4.06.09 6.09-.08 4.06-.43 6.09-.65 4.06-.22 6.09-.23c4.06-.07 8.11 0 12.17.17s8.12.19 12.18.71c2 .22 4.06.47 6.08.51h3c1 0 2-.12 3-.2 4.06-.38 8.12-.47 12.18-.66 2-.08 4.06-.16 6.08-.16s4.06-.05 6.09.09l2.57.17-.15 2.24c-.14 2-.37 4-.52 6a44.94 44.94 0 000 6c.31 4 1.28 8 1.19 12 0 2-.84 4-1 6a22 22 0 00.48 6 29.28 29.28 0 01.66 6c0 2-.16 4-.24 6s-.18 4-.22 6v6c0 4 0 8-.16 12a16.92 16.92 0 01-.2 3 18.53 18.53 0 00-.44 3c0 2 .39 4 .47 6 0 1 0 2-.07 3l-.29 3c-.12 1-.16 2-.24 3l-.11 3-.06 1.67-1.56-.05c-8.2-.29-16.42 0-24.64-.07l-6.14-.15h-3.09c-1.09 0-2.08.08-3.13.16l-3.17.25-1.58.11h-4.67l-3.08-.06c-4.09-.12-8.1-.37-12.14-.51-2 0-4-.12-6.11-.11s-4.29.25-6.43.35c-1 0-2.14.1-3.14.06s-2-.13-3-.2c-2-.12-4.1 0-6.22 0-4.09.61-8.26.58-12.45.62zm-133.01-98.06h97.4v96.36h-97.4z" fill="#e6e8f0"/><path d="M1355.3 488.77c4 0 8 0 11.82.09 2 0 3.9.1 6-.05 1.05-.08 2.14-.21 3.15-.23s2 0 3 0c1.92.1 3.75.35 5.76.33s4.07-.14 6.1-.21c4.1-.22 8.23-.57 12.27-.77 2-.06 4-.22 6-.21 1 0 2 .06 2.92.13l2.91.21c1 .06 2 .06 3 .09s2-.06 3-.08c2-.15 4.06-.41 6-.46 4 0 7.89.2 11.85.47s8 .36 12 .3l-2.06 2.07v-3c-.06-1-.08-2-.2-3l-.25-3c0-1-.08-2 0-3 .13-2 .62-4 .64-6a17.2 17.2 0 00-.32-3 17.82 17.82 0 01-.09-3c.06-4 .08-8 .19-12l.13-6v-12a52.85 52.85 0 01.46-6 40.69 40.69 0 00.37-6c-.09-2-.51-4-.51-6 0-4 .56-8 .74-12 .12-2 .09-4 0-6l-.23-6 1.14 1.15c-8.11.12-16.23.09-24.35-.2a91.66 91.66 0 00-12.17.31c-4.06.34-8.12.47-12.18.67-8.11.34-16.23.71-24.35-.12-2-.1-4 0-6.08.06s-4.06.22-6.09.34-4.06.3-6.09.35l-3 .12c-1 0-2 0-3.05-.11l2.57-2.57a72.74 72.74 0 00.07 11.81 52.89 52.89 0 01-.08 5.9c-.2 2-.54 4-.63 6-.08 1 0 2 0 3l.12 2.93a37.81 37.81 0 01-.22 6 22 22 0 000 5.91 26.46 26.46 0 01.27 2.85c0 1 0 2-.08 3-.34 4.07-.61 8.17-.61 12.12 0 2 .16 3.86.24 5.78a55.93 55.93 0 01-.17 6 59.46 59.46 0 00-.18 6.05c0 2 .23 3.77.32 5.66s.08 3.86.11 5.8-.11 3.51-.16 5.51zm-3.39 3.4c-.06-2-.08-4.05-.08-6.1v-6.2a68.51 68.51 0 00-.14-12.21 44.63 44.63 0 01-.29-6c.07-2.11.23-4.25.23-6.3 0-4.08-.41-8-.81-11.95-.07-1-.1-2-.08-3.06a26.26 26.26 0 01.38-3.23 18.28 18.28 0 00.11-6.2 24.36 24.36 0 01-.14-6.11 49 49 0 00.38-6.23c0-2-.38-4-.55-6.05a52.58 52.58 0 010-6.15 72.2 72.2 0 00.24-12.29L1351 392l2.62-.25c1-.1 2-.1 3.05-.13l3 .09c2 0 4.06.19 6.09.3s4.06.24 6.09.23 4.06.09 6.08-.08 4.06-.43 6.09-.65 4.06-.22 6.09-.23c4.06-.07 8.12 0 12.17.17s8.12.19 12.18.71c2 .22 4.06.47 6.09.51h3c1 0 2-.12 3-.2 4.06-.38 8.12-.47 12.18-.66 2-.08 4.06-.16 6.09-.16s4.06-.05 6.08.09l2.58.17-.16 2.24c-.14 2-.37 4-.52 6a44.94 44.94 0 000 6c.32 4 1.29 8 1.2 12 0 2-.85 4-1 6a22 22 0 00.48 6 28.61 28.61 0 01.66 6c0 2-.16 4-.24 6s-.17 4-.22 6v6c0 4 0 8-.15 12a17.93 17.93 0 01-.21 3 17.46 17.46 0 00-.43 3c0 2 .39 4 .46 6 .05 1 0 2-.07 3l-.29 3c-.12 1-.16 2-.24 3l-.11 3-.06 1.67-1.56-.05c-8.2-.29-16.42 0-24.64-.07l-6.13-.15h-3.1c-1.04 0-2.07.08-3.13.16l-3.17.25-1.58.11h-4.67l-3.07-.06c-4.09-.12-8.1-.37-12.15-.51-2 0-4-.12-6.11-.11s-4.28.25-6.43.35c-1 0-2.14.1-3.14.06s-2-.13-3-.2c-2-.12-4.1 0-6.22 0-4.25.56-8.38.53-12.57.57zm-133.03-98.06h97.4v96.36h-97.4z" fill="#e6e8f0"/><path d="M1220.57 488.77c4 0 8 0 11.83.09 1.95 0 3.89.1 6-.05 1-.08 2.14-.21 3.15-.23s2 0 3 0c1.92.1 3.76.35 5.76.33s4.07-.14 6.1-.21c4.1-.22 8.23-.57 12.27-.77 2-.06 4-.22 6-.21 1 0 2 .06 2.92.13l2.92.21c1 .06 2 .06 3 .09s2-.06 3-.08c2-.15 4.06-.41 6-.46 4 0 7.89.2 11.85.47s8 .36 12 .3l-2.07 2.07v-3c-.06-1-.08-2-.19-3l-.26-3c0-1-.08-2 0-3 .12-2 .61-4 .64-6a18.23 18.23 0 00-.33-3 18.93 18.93 0 01-.09-3c.06-4 .08-8 .19-12l.13-6v-12a52.85 52.85 0 01.46-6 40.69 40.69 0 00.37-6c-.09-2-.51-4-.5-6 0-4 .56-8 .73-12 .12-2 .09-4 .06-6l-.24-6 1.15 1.15c-8.12.12-16.24.09-24.35-.2a91.77 91.77 0 00-12.18.31c-4.06.34-8.12.47-12.17.67-8.12.34-16.24.71-24.35-.12-2-.1-4.06 0-6.09.06s-4.06.22-6.09.34-4.06.3-6.09.35l-3 .12c-1 0-2 0-3-.11l2.56-2.57a72.74 72.74 0 00.07 11.81 50.59 50.59 0 01-.08 5.9c-.2 2-.54 4-.63 6-.08 1 0 2 0 3l.12 2.93a37.81 37.81 0 01-.22 6 22 22 0 000 5.91 26.46 26.46 0 01.27 2.85c0 1 0 2-.08 3-.34 4.07-.61 8.17-.61 12.12 0 2 .17 3.86.24 5.78a58.57 58.57 0 01-.16 6 56.7 56.7 0 00-.18 6.05c0 2 .22 3.77.31 5.66s.08 3.86.11 5.8-.2 3.51-.25 5.51zm-3.39 3.4c-.06-2-.07-4.05-.07-6.1v-6.2a68.51 68.51 0 00-.14-12.21 46.35 46.35 0 01-.29-6c.08-2.11.23-4.25.24-6.3 0-4.08-.42-8-.82-11.95-.07-1-.1-2-.08-3.06a26.26 26.26 0 01.38-3.23 18.28 18.28 0 00.11-6.2 24.84 24.84 0 01-.14-6.11 47.23 47.23 0 00.38-6.23c0-2-.38-4-.55-6.05a52.58 52.58 0 010-6.15 72.2 72.2 0 00.24-12.29l-.23-2.14 2.63-.25c1-.1 2-.1 3-.13l3 .09c2 0 4.06.19 6.09.3s4.06.24 6.09.23 4.06.09 6.09-.08 4-.43 6.08-.65 4.06-.22 6.09-.23c4.06-.07 8.12 0 12.18.17s8.11.19 12.17.71c2 .22 4.06.47 6.09.51h3c1 0 2-.12 3-.2 4-.38 8.11-.47 12.17-.66 2-.08 4.06-.16 6.09-.16s4.06-.05 6.09.09l2.57.17-.16 2.24c-.14 2-.36 4-.51 6a43.34 43.34 0 000 6c.32 4 1.29 8 1.2 12 0 2-.84 4-1 6a22 22 0 00.48 6 28.61 28.61 0 01.66 6c0 2-.16 4-.23 6s-.18 4-.23 6v6c0 4 0 8-.15 12a19 19 0 01-.2 3 16.57 16.57 0 00-.44 3c0 2 .39 4 .47 6 0 1 0 2-.08 3l-.28 3c-.12 1-.17 2-.25 3l-.11 3-.06 1.67-1.55-.05c-8.2-.29-16.42 0-24.65-.07l-6.13-.15h-3.09c-1.03 0-2.08.08-3.14.16l-3.16.25-1.59.11h-4.67l-3.07-.06c-4.09-.12-8.1-.37-12.14-.51-2.05 0-4.06-.12-6.12-.11s-4.28.25-6.42.35c-1 0-2.14.1-3.15.06s-2-.13-3-.2c-2-.12-4.1 0-6.22 0-4.15.61-8.28.58-12.47.62zm1.7 38.13h183.63v97.51h-183.63z" fill="#e6e8f0"/><path d="M1404.21 629.51h-11.65l-11.72-.14c-2 0-3.8.09-5.64.21s-3.77.13-5.75.08-4-.18-6-.24c-1 0-2-.09-3-.08s-2 0-2.9 0c-7.63.14-15.12.53-22.7.86l-5.73.16-2.87.08h-2.92c-3.89 0-7.92-.37-11.79-.36h-2.9c-.96 0-1.92 0-2.87.08l-5.69.33c-3.82.16-7.73.09-11.63 0-7.82-.24-15.63-.58-23.35-.63-3.85 0-7.72 0-11.55.2a78.25 78.25 0 01-11.57.22c-3.9-.36-7.77-.81-11.59-.16-1.93.14-3.86 0-5.79 0h-8.07v-2.25c0-8.13.3-16.25.26-24.38v-6.09c0-2-.06-4.07 0-6.1 0-1 0-2 .07-3l.17-3.05c.17-2 .34-4.06.47-6.1s.18-4.06.06-6.09-.33-4.06-.43-6.09c-.09-4.07.14-8.13.37-12.19s.45-8.13.41-12.19c0-2 0-4.07-.09-6.1l-.14-6.09v-1.08h1.15c3.82-.14 7.65-.07 11.47-.06h11.48c7.65-.1 15.3.47 23 .18 15.31-.74 30.61-1.24 45.91-1.38 1.92 0 3.83 0 5.74.12l5.74.29c3.83.2 7.65.16 11.48 0 7.65-.19 15.3-.75 22.95-.81 1.91 0 3.83.12 5.74.23s3.83.15 5.74.1c3.82 0 7.65-.29 11.48-.33a95.66 95.66 0 0111.47.47 84.62 84.62 0 0011.48.2l1.93-.09.08 2.1c.07 2.06.11 4.12.06 6.19s-.25 4.11-.36 6.15a49.5 49.5 0 00.14 6.2l.26 3.14c0 1 .1 2.08.08 3.11 0 4.14-.39 8.19-.53 12.27-.07 2-.15 4.08-.15 6.14v6.2c.18 4.2.28 8.4.08 12.43s-.4 8-.26 12.24l.25 6.39c.06 2.12.11 4.23.1 6.3.05 4.12.1 8.33.02 12.41zm-3.4-3.4c-.12-8.06-.25-16 .09-23.77 0-2 0-4-.08-6s-.27-4.14-.41-6.2a97 97 0 010-11.93c.06-2 .08-3.95 0-6s-.13-4-.22-6c-.15-4-.68-8.11-.66-12.06a26.17 26.17 0 01.12-3l.37-2.93a30.25 30.25 0 00.23-6c-.12-2-.39-4-.4-6a59.56 59.56 0 01.22-6l2.45 2.44-2.87-.2c-1-.07-1.91-.07-2.87-.1s-1.91 0-2.87 0-1.91.08-2.87.16a93.53 93.53 0 01-11.47.36c-3.83-.09-7.66-.43-11.48-.47-1.91-.07-3.83 0-5.74.05s-3.83.23-5.74.23c-7.65 0-15.3-.52-22.95-.61a112.8 112.8 0 00-11.48.26c-3.83.27-7.65.67-11.48.68-7.65 0-15.3.08-23-.19-3.83-.12-7.65-.14-11.48-.37s-7.65-.64-11.48-.74a102.11 102.11 0 00-11.47.19c-3.83.25-7.65.34-11.48.46-7.65.24-15.3.47-22.95.21l2.4-2.4c-.17 4.06-.57 8.12-.62 12.19 0 2 0 4.06.14 6.09s.34 4.06.52 6.1a76.49 76.49 0 01.53 12.19c-.2 2-.59 4.06-.85 6.09a32.61 32.61 0 000 6.09c.2 2 .46 4.07.72 6.1a56.51 56.51 0 01.35 6.09c0 4.07-.23 8.13-.33 12.19s-.15 8.13-.17 12.19l-.09 12.19-2.57-2.57 5.68.06c1.9.05 3.78 0 5.69.18 3.83.76 7.62.39 11.38.1a82.41 82.41 0 0111.41.34c3.83.25 7.64.28 11.46.39 7.62.1 15.21 0 22.8 0 3.79 0 7.57-.05 11.4 0s7.66.17 11.41 0 7.4-.42 11.16-.48h5.67l5.72.08c7.69.23 15.45.51 23.09.56 1.89 0 3.78 0 5.6-.12s3.62-.23 5.5-.25 3.72-.07 5.71 0 3.94.19 5.8.16l11.19-.19zm50.39-74.67h2.15l2.15-.19 2.12-.44c.69-.21 1.37-.48 2.07-.68s1.38-.5 2.07-.76a16.16 16.16 0 001.81-1.25c.56-.49 1-1.06 1.54-1.57s.87-1.16 1.33-1.7.78-1.17 1.19-1.73l1-1.8c.27-.63.6-1.24.85-1.87s.46-1.28.6-1.94a14.78 14.78 0 00-.35-8.14l3.69 1.37a11.93 11.93 0 00-5.91 10.76 11.64 11.64 0 002.36 6.22 12.53 12.53 0 005.74 3.73 14.17 14.17 0 007.08.24 63.34 63.34 0 007.14-2.53 40.5 40.5 0 006.81-3.49c2.2-1.27 3.8-3.65 6.7-4.75a10.94 10.94 0 014.66-.92 13.32 13.32 0 014.48 1c2.75 1 5 2.61 7.22 3.6s4.63 1.92 6.92 2.95a32.93 32.93 0 007.18 2.33c1.23.31 2.5.38 3.75.57l1.88.15c.63 0 1.26.13 1.89.14s1.26 0 1.88.12 1.26.06 1.89.14 1.27.14 1.9.15 1.27 0 1.9 0c1.27-.1 2.53-.25 3.78-.43s2.49-.46 3.71-.81a54 54 0 007.15-2.37l1.64 4.43a58.23 58.23 0 01-7.86 2.36 69.39 69.39 0 01-8.11 1.26 34.54 34.54 0 01-8.25.45 47.58 47.58 0 01-8.13-1.44 74.37 74.37 0 01-7.87-2.4 33 33 0 01-3.75-1.68c-1.2-.67-2.38-1.35-3.55-2.06s-2.39-1.31-3.5-1.91a19.22 19.22 0 00-3.32-1.49 9 9 0 00-3.06-.53 7.26 7.26 0 00-2.72.62c-.94.4-1.87 1-3.08 1.45a14.83 14.83 0 00-1.78.81 16.68 16.68 0 00-1.69 1.14 81.46 81.46 0 01-6.92 4.52 24.32 24.32 0 01-3.81 1.67c-1.35.39-2.78.58-4.2.85-2.82.5-6 1-9.09 0a13.59 13.59 0 01-4.26-2 26.2 26.2 0 01-3.45-3.11 17.75 17.75 0 01-2.9-3.73 9.47 9.47 0 01-.82-2.27 10.84 10.84 0 01-.33-2.4 22.29 22.29 0 012.16-9 14.7 14.7 0 016.58-6l1.69-.82.48 1.63a23.82 23.82 0 011 10.49 18.37 18.37 0 01-4.52 9.64c-.64.63-1.32 1.21-2 1.79s-1.47 1-2.18 1.53-1.51.9-2.24 1.39-1.5 1-2.29 1.38a21.65 21.65 0 01-10.56 1.94zm-.2 20.74h3.59c1.2 0 2.39 0 3.59.08 2.39.58 4.79-.4 7.18-.57 4.79-.31 9.57.25 14.36.29l3.59.09 3.59.24 3.59.22c1.2.07 2.4.24 3.59.35a26.9 26.9 0 003.59 0c1.2 0 2.4.07 3.6.1s2.39.17 3.59.21 2.39-.06 3.59-.12c2.39-.05 4.78.16 7.18.19h1.79a11.18 11.18 0 001.8-.27 18.2 18.2 0 013.59-.35c2.39-.12 4.79-.21 7.18-.27s4.79-.33 7.18-.3c1.2 0 2.39.14 3.59.26a28.75 28.75 0 003.59.1c2.4-.06 4.79-.28 7.18-.11 1.2.13 2.4.33 3.59.35s2.4 0 3.59-.1l7.19-.42v4.73c-2.4 0-4.79.12-7.19.13-1.19 0-2.39.06-3.59.09s-2.39.3-3.59.44a55.68 55.68 0 01-7.18-.27c-1.19-.09-2.39-.13-3.59-.14l-3.59-.1c-1.2-.07-2.39-.26-3.59-.38a25.3 25.3 0 00-3.59 0c-2.39.1-4.79.41-7.18.51a9.7 9.7 0 01-3.59-.25 6 6 0 00-1.8-.34c-.6 0-1.19 0-1.79.11-2.4.26-4.79.89-7.18.82a25.89 25.89 0 00-3.59-.38c-1.2 0-2.4.1-3.59.12s-2.4 0-3.6-.06a13.92 13.92 0 00-3.59-.08 12.46 12.46 0 01-3.59.33c-1.19-.07-2.39-.38-3.59-.56a12 12 0 00-1.79-.17c-.6 0-1.2.08-1.8 0s-1.19-.14-1.79-.22-1.2-.22-1.8-.31a17.38 17.38 0 00-3.59-.27c-1.2 0-2.39.1-3.59.18l-3.59.29c-1.2.11-2.39.22-3.59.22-2.39 0-4.79-.71-7.18-.1-1.2.13-2.4.14-3.59.21s-2.4.12-3.59.13zm0 20.82h3.1c1.03 0 2.07 0 3.1.09 2.07.57 4.14-.4 6.21-.58 4.14-.3 8.28.25 12.41.29l3.11.1 3.1.23 3.11.22c1 .08 2.06.24 3.1.35a21.39 21.39 0 003.1 0c1 0 2.07.06 3.11.09s2.06.18 3.1.22a29.21 29.21 0 003.1-.12c2.07-.06 4.14.16 6.21.18h1.55a7.52 7.52 0 001.55-.27 13.17 13.17 0 013.11-.34c2.07-.12 4.13-.21 6.2-.27s4.14-.34 6.21-.31c1 0 2.07.15 3.1.27a24.86 24.86 0 003.11.1 55.83 55.83 0 016.2-.12 29.89 29.89 0 003.11.35c1 0 2.07 0 3.1-.1l6.21-.41v4.72c-2.07 0-4.14.12-6.21.13-1 0-2.07.07-3.1.1s-2.07.3-3.11.43a41.57 41.57 0 01-6.2-.27c-1-.09-2.07-.12-3.11-.14l-3.1-.1c-1-.07-2.07-.26-3.1-.37a18 18 0 00-3.11 0c-2.07.1-4.13.41-6.2.51a7.32 7.32 0 01-3.11-.25 4.27 4.27 0 00-1.55-.33 13.46 13.46 0 00-1.55.11c-2.07.25-4.14.88-6.21.81a19.3 19.3 0 00-3.1-.38c-1 0-2.07.1-3.1.13s-2.07 0-3.11-.07a10.74 10.74 0 00-3.1-.08 9.41 9.41 0 01-3.1.34c-1-.08-2.07-.39-3.11-.56a10.23 10.23 0 00-1.55-.18 13.37 13.37 0 01-1.55 0c-.52 0-1-.14-1.55-.22s-1-.22-1.56-.31a13.49 13.49 0 00-3.1-.26 26.85 26.85 0 00-3.1.18l-3.11.29c-1 .1-2.06.21-3.1.22-2.07 0-4.14-.72-6.21-.11-1 .14-2.07.14-3.1.22s-2.07.11-3.1.12zm0 20.71h2c.65 0 1.35 0 2 .08 1.35.58 2.7-.39 4-.57 2.7-.3 5.4.25 8.1.3l2 .09 2 .23 2 .22c.67.08 1.35.24 2 .35a8.11 8.11 0 002 0 17.08 17.08 0 012 .1c.67.07 1.35.18 2 .22a12.57 12.57 0 002-.12c1.35-.06 2.7.16 4 .19h1a3.53 3.53 0 001-.27 6.52 6.52 0 012-.36c1.35-.13 2.7-.17 4-.25s2.7-.34 4-.31a15.54 15.54 0 012 .27 10.63 10.63 0 002 .1 24.77 24.77 0 014-.12 11.06 11.06 0 002 .35 13.67 13.67 0 002-.1c1.35-.14 2.7-.24 4-.41v4.72c-1.35 0-2.7.13-4 .14a19.5 19.5 0 00-2 .09 18.35 18.35 0 00-2 .43 17.69 17.69 0 01-4-.27c-1.35-.19-2.7-.11-4-.23-.68-.08-1.35-.26-2-.38a7.59 7.59 0 00-2 0c-1.35.13-2.7.42-4 .52a3.24 3.24 0 01-2-.24 2.19 2.19 0 00-1-.35 8.44 8.44 0 00-1 .12c-1.35.26-2.7.89-4 .81a9.07 9.07 0 00-2-.38c-.67 0-1.35.12-2 .13a15.16 15.16 0 01-2-.07 4.65 4.65 0 00-2-.08 4.12 4.12 0 01-2 .34 14 14 0 01-2-.57 3.88 3.88 0 00-1-.17 5.65 5.65 0 01-1 0 16.71 16.71 0 01-2-.53 8.67 8.67 0 00-4-.08l-2 .27a14 14 0 01-2 .23c-1.35 0-2.7-.73-4-.11-.67.14-1.34.14-2 .22s-1.35.11-2 .12z" fill="#e6e8f0"/><circle cx="1267.66" cy="441.75" r="26.09" fill="#f4f6f8"/><path d="M1243.93 441.75a27.87 27.87 0 001.72 9.12 17.69 17.69 0 00.85 2.19c.4.68.91 1.29 1.36 1.92s1.1 1.12 1.64 1.67 1.16 1 1.72 1.54a30.38 30.38 0 007.54 5.06 22.28 22.28 0 008.9 2l2.32-.07 2.29-.29c.77-.13 1.52-.31 2.29-.45s1.48-.46 2.23-.68 1.44-.61 2.17-.9 1.38-.75 2.08-1.12 1.32-.86 2-1.28 1.26-1 1.89-1.48l.86-.84.81-.89c.47-.64 1-1.29 1.41-2s.85-1.35 1.26-2 .75-1.42 1.08-2.15.65-1.48.93-2.23.47-1.55.67-2.33.25-1.61.34-2.41v-2.43a26.71 26.71 0 00-1.72-9.51c-.33-.74-.7-1.47-1.06-2.19a15.53 15.53 0 00-1.48-1.94c-.58-.58-1.13-1.16-1.64-1.77l-1.65-1.72a25.43 25.43 0 00-8-5 24.33 24.33 0 00-9.16-1.52h-2.33l-2.34.17c-.77.1-1.53.32-2.3.47s-1.48.54-2.22.8a29.5 29.5 0 00-7.71 5.28c-.56.55-1.16 1.06-1.74 1.6s-1 1.2-1.52 1.84-.81 1.35-1.19 2-.68 1.43-1 2.17a24.55 24.55 0 00-1.3 9.37zm-4.73 0a28.16 28.16 0 012-10.94c.37-.86.79-1.7 1.17-2.55s.93-1.63 1.4-2.44 1-1.57 1.53-2.38 1.12-1.53 1.72-2.28a24.44 24.44 0 019.55-6.07c.9-.29 1.79-.58 2.7-.84s1.82-.47 2.74-.65 1.86-.27 2.79-.37l2.81-.09c.93.1 1.87.18 2.79.31l2.72.62c.89.23 1.77.5 2.67.72s1.75.58 2.63.87a28.05 28.05 0 019.51 5.77l1.94 2.05a11.45 11.45 0 011.44 2.43 38.69 38.69 0 002.44 5c.33.87.8 1.68 1.16 2.55s.67 1.76 1 2.66.45 1.85.62 2.78l.16 1.42c0 .47 0 .95.06 1.42-.08.95-.24 1.89-.39 2.83s-.41 1.84-.54 2.77l-.63 2.75c-.26.91-.57 1.8-.89 2.69s-.81 1.7-1.22 2.55a28.26 28.26 0 01-1.51 2.39c-.58.74-1.2 1.45-1.79 2.18l-.94 1-.89 1.1c-.63.69-1.23 1.42-1.89 2.12a16.54 16.54 0 01-2.28 1.71 24.14 24.14 0 01-2.55 1.26c-.89.32-1.79.62-2.67.91-1.83.45-3.55 1.12-5.37 1.48-.93.09-1.86.16-2.78.19l-2.75-.17a47.8 47.8 0 01-10.6-2.2c-.86-.31-1.68-.69-2.53-1s-1.61-.85-2.43-1.28-1.53-1-2.3-1.52-1.4-1.2-2.09-1.8-1.23-1.38-1.78-2.12-1-1.54-1.49-2.32c-.91-1.59-1.79-3.17-2.76-4.76a27.41 27.41 0 01-2.48-10.75z" fill="#f4f6f8"/><circle cx="1348.62" cy="579.03" r="26.09" fill="#f4f6f8"/><path d="M1377.08 579a25.81 25.81 0 01-2.25 10.85c-.95 1.62-1.77 3.24-2.62 4.91-.45.82-.93 1.62-1.41 2.44s-1.14 1.5-1.72 2.26a24.52 24.52 0 01-9.39 6.25 30 30 0 01-11.07 1.93l-2.8-.18c-.93-.13-1.85-.3-2.77-.46s-1.79-.53-2.68-.79-1.73-.7-2.59-1-1.64-.86-2.46-1.29-1.54-1-2.31-1.51-1.42-1.18-2.11-1.77l-1.92-2-.86-1.06-.9-1-1.64-2.16c-.5-.77-.95-1.55-1.38-2.35s-.76-1.64-1.1-2.48-.57-1.72-.8-2.59-.41-1.75-.57-2.64-.28-1.77-.41-2.66l-.21-2.68a26.28 26.28 0 012.25-10.46c.35-.83.77-1.62 1.14-2.44.17-.41.41-.79.6-1.2l.56-1.25a20.75 20.75 0 011.41-2.34l1.77-2.09a27.23 27.23 0 019-6.31 27.93 27.93 0 0110.81-2.46c.93.08 1.86.13 2.79.24s1.82.38 2.72.58l2.67.77c.87.29 1.73.62 2.6.93a24.4 24.4 0 019.22 6c.59.73 1.15 1.46 1.7 2.2s1 1.52 1.53 2.28 1 1.55 1.44 2.34.84 1.63 1.23 2.46a27.84 27.84 0 012.53 10.73zm-4.73 0a24.44 24.44 0 00-1.93-9c-.31-.71-.67-1.39-1-2.08s-.83-1.3-1.24-1.95-1-1.18-1.51-1.73-1.17-1-1.71-1.53a31 31 0 00-7.39-5.23c-.71-.29-1.4-.63-2.12-.88s-1.48-.42-2.23-.6l-2.27-.38-2.31-.17c-.77 0-1.55 0-2.33-.05s-1.56.08-2.35.13-1.53.33-2.29.52-1.46.58-2.19.86a24.32 24.32 0 00-7.42 5.54l-1.5 1.74a9.15 9.15 0 01-1.61 1.69 9 9 0 00-1.49 1.83c-.31.72-.62 1.44-.89 2.17a23 23 0 00-.57 2.28c-.09.78-.21 1.54-.28 2.3s-.1 1.53-.14 2.29v1.14c0 .38 0 .76-.07 1.14 0 .75-.07 1.51-.13 2.29a17.72 17.72 0 00.21 2.29c.15.75.41 1.48.61 2.22s.58 1.41.84 2.13.65 1.38 1 2.08.79 1.3 1.12 2l1.26 1.94.77.86.84.8 1.9 1.31a12.2 12.2 0 011.84 1.34l.93.66c.31.23.6.49.91.71.65.41 1.27.9 2 1.28a20.31 20.31 0 002.13.95c.77.17 1.53.32 2.28.53s1.52.39 2.3.57l2.36.42a16.75 16.75 0 009.36-1.77c.72-.36 1.41-.78 2.11-1.15s1.31-.91 2-1.36l1.82-1.52c.55-.57 1.13-1.1 1.7-1.64s1.07-1.14 1.66-1.68l1.55-1.79c.43-.67.91-1.31 1.28-2a23 23 0 00.8-2.24 25.5 25.5 0 001.39-9.26z" fill="#f4f6f8"/><path d="M1383.37 420.53l.17 6.29.09 3.12v3c.07 2.11.28 4.37.45 6.51.1 1.1.16 2.14.21 3.17s.1 2.06.12 3.07c.1 4.05.07 8.05 0 12.12s0 8.16-.17 12.29l-1.5-1.49 5.68.16 5.67.24c1.89.07 3.78 0 5.67 0s3.78 0 5.67.11l2.84.08h2.84c1.89 0 3.78-.12 5.67-.06 3.78.05 7.56.16 11.34.05l-.66 1.49a82.94 82.94 0 01-5.86-6c-1.89-2-3.75-4.09-5.6-6.15s-3.73-4-5.54-6.1c-.92-1-1.79-2.12-2.69-3.21l-2.67-3.28c-1.8-2.16-3.64-4.18-5.44-6.29-.91-1.06-1.81-2.06-2.72-3.17l-2.73-3.39c-1.84-2.25-3.67-4.28-5.48-6.36zm-1.12-2.94l5.85 6.24c2 2.09 3.93 4.23 5.89 6.19 1 1 2 1.92 3 3s2 2.17 3 3.25c2 2.16 4 4.46 6 6.65s4 4.33 5.9 6.62l2.86 3.42c1 1.12 2 2.17 2.94 3.23 2 2.13 4 4.17 6 6.28a44.78 44.78 0 015.62 6.73l.17.28a1.39 1.39 0 01-.47 1.91 1.36 1.36 0 01-.78.2c-3.78-.15-7.56.36-11.34.51a35.81 35.81 0 01-5.67-.14l-1.42-.06h-4.26c-1.89.06-3.78 0-5.67 0s-3.78-.17-5.67-.11a53.78 53.78 0 01-5.67.25c-1 0-1.9-.09-2.84-.17l-2.84-.21h-.28a1.4 1.4 0 01-1.29-1.51v-.05c.24-2.17-.06-4.38.2-6.55l.24-3.25c.09-1.07.15-2.14.18-3.22.15-4.31-.08-8.77-.1-13.23v-5l.07-1.61c.1-2.15.22-4.23.28-6.39v-3.4l.05-3.3zm-39.55 157.23l-5.36 3.57-2.69 1.79c-.94.6-1.92 1.19-2.82 1.78-1.77 1.2-3.33 2.45-5 3.7-.81.64-1.69 1.26-2.59 1.87s-1.78 1.24-2.71 1.84c-3.69 2.43-7.48 4.77-11.2 7.1s-7.42 4.67-11.17 6.85h-.08a1.46 1.46 0 01-2-.53.81.81 0 01-.1-.21l-2.37-6.23-2.3-6.27c-.78-2.08-1.68-4.11-2.52-6.17s-1.63-4.13-2.41-6.21l-1.19-3.12c-.39-1-.8-2.07-1.25-3.08-.85-2.06-1.79-4.07-2.57-6.15-1.64-4.14-3.22-8.29-5-12.36a.88.88 0 01.46-1.16.84.84 0 01.54 0h.13a82.89 82.89 0 018.14 2.47c2.71.89 5.4 1.83 8.11 2.76s5.46 1.81 8.15 2.79c1.38.45 2.66 1 4 1.53l3.9 1.57c2.63 1 5.38 1.95 8 2.94 1.33.49 2.71 1 4 1.48s2.51 1.06 3.79 1.57c2.54 1 5.27 2 8 2.94zm-3.13.35l-7.91-2.58c-2.63-.85-5.21-1.73-8-2.52-1.35-.4-2.78-.77-4.08-1.18s-2.55-.85-3.83-1.28c-2.55-.85-5-1.79-7.52-2.67s-5.11-1.73-7.58-2.71l-3.72-1.47c-1.26-.47-2.56-.89-3.86-1.31-2.6-.86-5.24-1.61-7.84-2.43a38.14 38.14 0 01-7.58-3l1.81-1.9c1.54 4.18 3.69 8.1 5.51 12.15a47.91 47.91 0 012.39 6.23l.58 1.56.64 1.54c.43 1 .86 2 1.3 3.07.9 2 1.69 4.11 2.53 6.16s1.52 4.18 2.42 6.21 2 4 2.75 6.08c.4 1 .76 2.09 1.1 3.15l1.07 3.17-2.3-.74c1.87-.89 3.43-2.24 5.32-3.12l2.76-1.47c.93-.48 1.85-1 2.74-1.51 3.6-2.12 6.88-4.47 10.27-6.65.83-.55 1.68-1.1 2.54-1.63l1.29-.81 1.36-.78c1.81-1 3.69-2.09 5.48-3.16.86-.54 1.64-1.09 2.47-1.62l2.61-1.6zm175.98-154.41h43.11v43.11h-43.11z" fill="#fff"/><path d="M1517.22 462.2c1.77-.06 3.51-.11 5.23-.14s3.47-.1 5.16-.07c3.18.4 7.13-.48 10.59-.75s6.82-.21 10.21-.14 6.81.19 10.25.22l-2.55 2.55.09-5.38.23-5.39.23-5.39c.07-1.8.25-3.6.33-5.39l.08-1.35v-4.04c0-1.8.07-3.59.09-5.39s.17-3.59.21-5.39-.06-3.59-.09-5.39l1.41 1.42c-3.59.05-7.18-.15-10.78-.17a30.33 30.33 0 00-5.38.28 40.76 40.76 0 01-5.39.35c-3.6.11-7.19.21-10.78.27s-7.19.33-10.78.3l2.45-2.45c0 1.73-.15 3.45-.28 5.19s-.14 3.48-.12 5.2c0 3.45.2 6.82 0 10.33-.15 1.77-.36 3.6-.4 5.35s-.06 3.48 0 5.17zm-3.34 3.34l-.39-11c0-1.87-.15-3.7-.22-5.56s-.35-3.62-.51-5.47c-.22-3.73 0-7.62.07-11.41.09-1.91.11-3.79.12-5.67l.09-5.63v-.13a2.41 2.41 0 012.45-2.38h.06c1.8.07 3.59.26 5.39.38.9 0 1.8.06 2.69.05l2.7-.07c3.59-.09 7.18-.43 10.78-.49a21.22 21.22 0 015.39.23 13.66 13.66 0 002.69.34c.9 0 1.8-.09 2.69-.13 1.8-.1 3.6-.34 5.39-.51.9-.12 1.8-.15 2.7-.21l1.34-.08h1.48a2.89 2.89 0 012.87 2.9v.09c0 .9-.16 1.8-.25 2.7a26.91 26.91 0 00-.13 2.69c0 1.8.11 3.59.13 5.39s0 3.59-.08 5.39a32.34 32.34 0 00-.06 5.39 27.07 27.07 0 01.32 5.39c0 1.79-.38 3.59-.55 5.39-.08.89-.18 1.79-.18 2.69s.08 1.8 0 2.7-.15 1.79-.22 2.69l-.31 2.69v.38a1.5 1.5 0 01-1.66 1.33 71.84 71.84 0 00-11.08-.12l-5.63.24c-1.89.08-3.79.16-5.66.14-3.75-.08-7.08-.74-11.1-.29-1.93.07-3.78 0-5.68 0s-3.79.01-5.64-.04zm-167.36 45.13l-3 379.35-474.81-1c3.39-10.18 7.2-12.56 9.86-19.45 16.33-42.35 43.11-80.76 77.89-110 48.27-40.6 111.06-64.63 149.62-114.54 29-37.54 40.51-87.81 31.83-134.35z" fill="#fff"/><path fill="#ffc04d" d="M1346.5 545l-578 6v-40h578v34z"/><path d="M1331.51 506.32l15-.05a2.39 2.39 0 012.4 2.38l-.17 15a2.34 2.34 0 01-4.67 0v-15l2.41 2.42-15 .09a2.42 2.42 0 010-4.84zm17.03 36.36c-.08 9.5-.28 19-.43 28.49a2 2 0 01-4.06 0c0-9.49-.07-19 0-28.49a2.26 2.26 0 014.51 0zm-.67 47.48q0 7.13.08 14.24l.08 7.13v7.12a2.24 2.24 0 01-4.48 0l.08-7.12.16-7.12q.2-7.12.26-14.24a1.92 1.92 0 013.84 0zm-.26 47.48l-.36 14.24c0 4.75-.15 9.5-.15 14.24a1.67 1.67 0 11-3.34 0c.06-4.75 0-9.5 0-14.25l-.15-14.24a2 2 0 114-.05zm-.52 47.48c0 9.49.07 19 .11 28.49a2.05 2.05 0 01-4.1 0c.15-9.49.35-19 .44-28.48a1.78 1.78 0 013.55 0zm.21 47.48v28.49a2.47 2.47 0 11-4.93 0l.16-14.24.22-14.24a2.26 2.26 0 014.51 0zm-.05 47.48l-.08 7.13-.15 7.12-.34 14.24a2.11 2.11 0 01-4.22 0l-.14-14.25-.06-7.12V780a2.49 2.49 0 015 0zm-.87 47.48v14.24l.12 14.25a2.12 2.12 0 01-4.23 0V856l.26-28.49a1.92 1.92 0 013.84 0zm.15 47.44l-.18 15a2.81 2.81 0 01-2.84 2.79c-5 0-10-.12-15-.21a2.12 2.12 0 010-4.24l15 .05L1342 890l.09-15a2.25 2.25 0 014.49 0zm-38.83 17.29l-15.61-.25c-5.2-.08-10.4-.19-15.6-.22a1.83 1.83 0 110-3.65l15.6.09 15.61.06a2 2 0 110 4zm-52.02-.68l-15.61-.06c-5.2 0-10.4-.06-15.6 0a2 2 0 010-4h.07c2.6.06 5.2.14 7.8.15l7.8.08 15.61.15a1.83 1.83 0 010 3.65zm-52.02.15h-15.61l-7.8-.13-7.81-.26a2.19 2.19 0 010-4.37l7.8-.13h7.81c2.6 0 5.2.06 7.8.09s5.2.07 7.8.14a2.33 2.33 0 010 4.66zm-52.02-.76c-2.6 0-5.2.1-7.81.14s-5.2.14-7.8.14h-7.8l-7.81-.06a2.42 2.42 0 110-4.83l7.8.07c2.6 0 5.2 0 7.8.1s5.21.16 7.81.29 5.2.26 7.8.29a1.94 1.94 0 010 3.88zm-52.02 0l-31.22-.28a2.41 2.41 0 010-4.81l31.21.24a2.43 2.43 0 010 4.85zm-52.03-.48l-15.6-.13-15.61-.09a2.43 2.43 0 010-4.85l15.6.2 15.61.13a2.37 2.37 0 010 4.74zm-52.02-.32c-5.2 0-10.4 0-15.6-.08s-10.41-.06-15.61-.21a2.44 2.44 0 010-4.87c2.6 0 5.2-.11 7.8-.1s5.2 0 7.8 0l15.61.2a2.53 2.53 0 010 5.05zm-52.01-.85c-2.6-.06-5.21-.16-7.81-.19L928 889c-2.6-.06-5.2 0-7.8 0s-5.2 0-7.81.07a1.81 1.81 0 01-.08-3.61h.14c2.6.15 5.2.23 7.8.31s5.21.1 7.81.08 5.2 0 7.8-.06 5.2-.13 7.81-.19a1.87 1.87 0 01.09 3.74h-.11zm-52.03-.02c-5.2 0-10.4-.12-15.6-.16l-7.81-.13-7.8-.17a2 2 0 010-4l7.81-.17c2.6-.07 5.2-.08 7.8-.11s5.2 0 7.81 0h7.8a2.37 2.37 0 010 4.74zm-52.01-.92l-15.61-.22c-2.6-.05-5.2 0-7.8-.06h-7.81a1.36 1.36 0 010-2.72l7.8.07c2.6 0 5.2.07 7.8 0h7.81l7.8-.11a1.53 1.53 0 010 3.06h-.05zm-52.03-.29h-15a1.12 1.12 0 01-1.11-1.09l-.25-15a1.86 1.86 0 113.72-.06V887l-2.39-2.37c5 0 10 .22 15 .33a1.58 1.58 0 011.55 1.61 1.6 1.6 0 01-1.52 1.55zM771 853.31l-.27-28.08a1.74 1.74 0 013.48-.06c.21 9.36.28 18.72.43 28.08a1.82 1.82 0 01-3.64.06zm-.48-46.8l-.13-14-.06-14.05a1.42 1.42 0 012.84 0l.35 14 .28 14a1.64 1.64 0 01-3.28.07zm-.29-46.81l-.12-14c0-4.68-.17-9.36-.25-14a1.26 1.26 0 011.25-1.3 1.29 1.29 0 011.3 1.25c0 4.68 0 9.36.05 14s.09 9.36.23 14a1.23 1.23 0 01-2.46.08zm-.79-46.8l-.69-28.08a2 2 0 114-.1v14.06l-.17 14a1.56 1.56 0 01-3.12 0zm-1.07-46.8l-.56-28.1a2.42 2.42 0 014.83-.1v.1l.09 28.08a2.18 2.18 0 01-4.36.05zm-.87-46.8l-.42-28.08a2.56 2.56 0 015.12-.08l.29 28.09a2.5 2.5 0 11-5 0zm-.64-46.8c0-4.68-.07-9.36 0-14l.06-14.05a2.1 2.1 0 014.2-.06l.47 14c.19 4.68.26 9.36.36 14a2.53 2.53 0 11-5.06.12v-.06zm.01-46.81v-7.5l-.13-7.5a1.79 1.79 0 011.77-1.83l15-.15a1.91 1.91 0 110 3.82h-15l1.87-1.9.06 7.5c0 2.5.1 5 .15 7.5a1.86 1.86 0 01-3.72.07zm35.85-17.29l28.84-.46a2.45 2.45 0 11.08 4.9h-.06l-28.84-.19a2.13 2.13 0 010-4.25zm48.07-.69h14.42l14.43.17a2.3 2.3 0 010 4.6l-14.42.25c-2.4.06-4.81.08-7.21.1h-7.21a2.6 2.6 0 010-5.19zm48.07.14c4.81 0 9.62-.11 14.43-.18l14.42-.2a2.65 2.65 0 01.07 5.3h-.07l-14.42-.16c-4.8-.05-9.61-.12-14.42-.13a2.32 2.32 0 010-4.63zm48.08-.49c4.8.06 9.61 0 14.42.16l14.42.29a2.21 2.21 0 010 4.42l-14.42.36c-4.81.15-9.62.14-14.43.22a2.73 2.73 0 01-.09-5.45zM995 508c9.61 0 19.23-.24 28.84-.28a2.37 2.37 0 010 4.73c-4.81 0-9.62-.13-14.42-.21l-7.22-.13h-7.21a2 2 0 010-4.07zm48.08-.21c4.81.06 9.62.19 14.42.18h7.21l7.22-.12a2.1 2.1 0 01.07 4.2h-.07l-7.21-.12c-2.41-.06-4.81 0-7.21 0s-4.81.06-7.21.13l-7.21.19a2.23 2.23 0 01-.12-4.46h.1zm48.07-.45h14.42l14.43.16a2.36 2.36 0 010 4.72l-14.42.3-7.21.06c-2.4 0-4.81.05-7.21 0a2.61 2.61 0 010-5.22zm48.08.33c4.8 0 9.61.07 14.42.06h14.42a1.9 1.9 0 11.06 3.8h-.05l-7.21.05h-7.21c-4.81 0-9.61.15-14.42.21a2.07 2.07 0 01-.06-4.13zm48.07-.25l7.21-.12 7.21-.07c2.4 0 4.81-.06 7.21 0h7.21a2.19 2.19 0 010 4.38l-7.21.1c-2.41.05-4.81 0-7.22 0h-7.21l-7.21-.07a2.11 2.11 0 010-4.21zm48.07-.02c4.81.07 9.62 0 14.42 0l7.21-.08 7.21-.1a1.83 1.83 0 010 3.65h-14.41c-4.8.08-9.61.09-14.42.23a1.87 1.87 0 01-.11-3.74h.1zm48.07-.52l7.21-.14c2.41 0 4.81-.11 7.21-.12l14.42-.13a2.35 2.35 0 110 4.69h-21.66l-7.21-.06a2.11 2.11 0 010-4.21z" fill="#00084b"/><path d="M1074 704.84a57.12 57.12 0 016.25-.46 42.1 42.1 0 016.25.16c2.08.23 4.17.68 6.25.82a33.56 33.56 0 006.25-.28 32.75 32.75 0 016.25-.32c2.08.06 4.17.4 6.25.51a17.23 17.23 0 003.13 0c1-.09 2.08-.31 3.12-.43a37.27 37.27 0 016.25 0 4.52 4.52 0 01.36 8.95l-.36.06a42.59 42.59 0 01-6.25.57c-1 0-2.08-.07-3.12-.13a27.71 27.71 0 00-3.13-.26c-2.08 0-4.17.11-6.25.06l-1.56-.05-1.56-.13c-1.05-.06-2.09-.22-3.13-.35a42.43 42.43 0 00-6.25-.48c-2.08 0-4.17.32-6.25.35-2.08.18-4.17-.33-6.25-.41a21.67 21.67 0 00-6.25.83 4.49 4.49 0 11-2.65-8.57 5.28 5.28 0 01.66-.16z" fill="#fdf5e6"/><path d="M983 704.84a57.12 57.12 0 016.25-.46 42.1 42.1 0 016.25.16c2.08.23 4.17.68 6.25.82a33.56 33.56 0 006.25-.28 32.75 32.75 0 016.25-.32c2.08.06 4.17.4 6.25.51a17.23 17.23 0 003.13 0c1-.09 2.08-.31 3.12-.43a37.27 37.27 0 016.25 0 4.52 4.52 0 01.36 8.95l-.36.06a42.59 42.59 0 01-6.25.57c-1 0-2.08-.07-3.12-.13a27.71 27.71 0 00-3.13-.26c-2.08 0-4.17.11-6.25.06l-1.56-.05-1.56-.13c-1-.06-2.09-.22-3.13-.35a42.43 42.43 0 00-6.25-.48c-2.08 0-4.17.32-6.25.35-2.08.18-4.17-.33-6.25-.41a21.67 21.67 0 00-6.25.83 4.49 4.49 0 11-2.65-8.57 5.28 5.28 0 01.66-.16z" fill="#ffc04d"/><path d="M1071.19 720.65a61.86 61.86 0 015 4.31 47 47 0 014.52 4.73c1.38 1.71 2.6 3.57 4 5.21a36.27 36.27 0 004.83 4.43 36.21 36.21 0 014.85 4.4c1.5 1.59 2.8 3.37 4.27 5A19.38 19.38 0 001101 751c.84.7 1.76 1.32 2.62 2a39.61 39.61 0 014.61 4.64 4.52 4.52 0 01-6.09 6.57l-.28-.2a48.63 48.63 0 01-5-4.22c-.78-.77-1.49-1.6-2.22-2.41a28.36 28.36 0 00-2.13-2.5c-1.51-1.57-3.16-3-4.66-4.58l-1.13-1.19-1.07-1.25c-.72-.82-1.38-1.7-2.06-2.56a48.47 48.47 0 00-4.28-5c-1.56-1.53-3.32-2.86-4.88-4.38s-2.85-3.32-4.33-4.92a23.6 23.6 0 00-5.22-4 4.49 4.49 0 114.29-7.89 4.3 4.3 0 01.55.35z" fill="#ffe0a9"/><path d="M1005.19 654.65a63.53 63.53 0 014.95 4.3 49.42 49.42 0 014.52 4.74c1.37 1.71 2.6 3.57 4 5.21a36.19 36.19 0 004.83 4.42 37.63 37.63 0 014.85 4.41c1.5 1.58 2.8 3.36 4.26 5a19.55 19.55 0 002.4 2.27c.84.7 1.76 1.32 2.62 2a40.31 40.31 0 014.61 4.63 4.52 4.52 0 01-6.09 6.58l-.28-.2a48.72 48.72 0 01-5-4.23c-.78-.76-1.49-1.59-2.22-2.4a30.17 30.17 0 00-2.13-2.5c-1.51-1.58-3.16-3-4.67-4.59l-1.12-1.18-1.07-1.25c-.72-.82-1.38-1.71-2.06-2.57a47.41 47.41 0 00-4.29-5c-1.55-1.53-3.31-2.86-4.87-4.38s-2.85-3.32-4.34-4.92a23.58 23.58 0 00-5.21-4 4.49 4.49 0 114.29-7.88 4.62 4.62 0 01.55.35z" fill="#ffc04d"/><path d="M1042.24 727a60 60 0 01-4.17 4.95 48 48 0 01-4.61 4.52c-1.67 1.38-3.49 2.61-5.09 4a35.18 35.18 0 00-4.3 4.82 36 36 0 01-4.28 4.85c-1.54 1.5-3.28 2.81-4.86 4.27a18.27 18.27 0 00-2.24 2.33c-.68.84-1.28 1.75-2 2.61a37.76 37.76 0 01-4.51 4.61 4.52 4.52 0 01-6.66-6l.2-.29a46.37 46.37 0 014.09-5c.75-.78 1.56-1.49 2.35-2.23a26 26 0 002.44-2.13c1.53-1.51 2.92-3.16 4.46-4.66l1.15-1.13 1.22-1.07c.8-.72 1.67-1.38 2.51-2.06a47.2 47.2 0 004.85-4.29c1.48-1.56 2.77-3.31 4.24-4.87s3.24-2.86 4.8-4.34a23 23 0 003.91-5.21 4.48 4.48 0 118 4.15 4.38 4.38 0 01-.34.56z" fill="#ffd57d"/><path d="M1108.2 661a59.94 59.94 0 01-4.3 5 48 48 0 01-4.73 4.51c-1.71 1.38-3.57 2.6-5.21 4a36.89 36.89 0 00-4.43 4.83 36.21 36.21 0 01-4.4 4.85c-1.59 1.5-3.37 2.8-5 4.27a19.38 19.38 0 00-2.3 2.32c-.7.84-1.32 1.76-2 2.62a39.7 39.7 0 01-4.64 4.62 4.52 4.52 0 01-6.57-6.09l.2-.29a48.63 48.63 0 014.22-5c.77-.78 1.6-1.49 2.41-2.22a26.76 26.76 0 002.5-2.13c1.57-1.51 3-3.16 4.58-4.66l1.19-1.13 1.25-1.06c.82-.73 1.7-1.39 2.56-2.07a47.27 47.27 0 005-4.28c1.53-1.56 2.86-3.31 4.38-4.88s3.31-2.85 4.92-4.33a23.91 23.91 0 004-5.22 4.49 4.49 0 017.89 4.29 5.77 5.77 0 01-.35.55z" fill="#ffc04d"/><path d="M1058 729.84a59.91 59.91 0 01.46 6.25 45 45 0 01-.16 6.25c-.23 2.09-.68 4.17-.83 6.25a33.53 33.53 0 00.29 6.25 34.52 34.52 0 01.32 6.25c-.07 2.09-.4 4.17-.51 6.25a17.22 17.22 0 000 3.13c.1 1 .31 2.08.43 3.12a36.23 36.23 0 010 6.25 4.52 4.52 0 01-9 .36l-.07-.36a45.37 45.37 0 01-.57-6.25c0-1 .08-2.08.13-3.12a27.34 27.34 0 00.27-3.13c0-2.08-.11-4.16-.06-6.25v-1.56l.13-1.56c.07-1 .23-2.08.36-3.13a45.23 45.23 0 00.48-6.25c0-2.08-.32-4.16-.35-6.25-.18-2.08.32-4.16.41-6.25a21.39 21.39 0 00-.84-6.25 4.49 4.49 0 018.58-2.64 3.92 3.92 0 01.15.66z" fill="#ffd57d"/><path d="M1058 638.84a59.91 59.91 0 01.46 6.25 45 45 0 01-.16 6.25c-.23 2.09-.68 4.17-.83 6.25a33.53 33.53 0 00.29 6.25 34.52 34.52 0 01.32 6.25c-.07 2.09-.4 4.17-.51 6.25a17.22 17.22 0 000 3.13c.1 1 .31 2.08.43 3.12a36.23 36.23 0 010 6.25 4.52 4.52 0 01-9 .36l-.07-.36a45.37 45.37 0 01-.57-6.25c0-1 .08-2.08.13-3.12a27.34 27.34 0 00.27-3.13c0-2.08-.11-4.16-.06-6.25v-1.56l.13-1.56c.07-1 .23-2.08.36-3.13a45.23 45.23 0 00.48-6.25c0-2.08-.32-4.16-.35-6.25-.18-2.08.32-4.16.41-6.25a21.39 21.39 0 00-.84-6.25 4.49 4.49 0 018.58-2.64 3.92 3.92 0 01.15.66z" fill="#ffc04d"/><path fill="#fff" d="M814.5 522h16v16h-16z"/><circle cx="851.5" cy="530" r="8" fill="#fff"/><path fill="#fff" d="M801.5 538h-16l16-16v16z"/></svg>
@@ -0,0 +1 @@
1
+ export {default as emptyStateIllustration} from './404.svg';
@@ -0,0 +1 @@
1
+ export {NotFound} from './NotFound';
@@ -0,0 +1 @@
1
+ export {NotFound} from './NotFound';
@@ -0,0 +1,23 @@
1
+ import React from 'react';
2
+ import {EmptyState} from '@shopify/polaris';
3
+ import {usePerformanceMark, Stage} from '@shopify/react-performance';
4
+ import {useI18n} from '@shopify/react-i18n';
5
+
6
+ import {emptyStateIllustration} from './illustrations';
7
+
8
+ export default function Home() {
9
+ usePerformanceMark(Stage.Complete, 'Home');
10
+ const [i18n] = useI18n();
11
+
12
+ return (
13
+ <>
14
+ <EmptyState
15
+ heading={i18n.translate('heading')}
16
+ image={emptyStateIllustration}
17
+ footerContent={i18n.translate('footerContent', {
18
+ path: 'app/ui/features/Home/Home.tsx',
19
+ })}
20
+ />
21
+ </>
22
+ );
23
+ }
@@ -0,0 +1,57 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1222 1000">
2
+ <path fill="#E0E3ED" d="M1 787.566l49.677.267c7.903-.11 16.653-.35 26.18-.088 4.762.053 9.72.22 14.86.208 5.143.022 10.47-.094 15.975-.137 11.008-.12 22.722-.25 35.07-.387 6.174-.07 12.507-.13 18.99-.19 6.483-.02 13.116.14 19.89.21l10.266.12c3.457 0 6.947-.08 10.47-.11 7.05-.08 14.228-.2 21.532-.23l45.23.47c15.525 0 31.472.14 47.773-.2 4.075-.04 8.172-.13 12.29-.04l12.416.33c4.15.12 8.33.02 12.53-.14 4.19-.13 8.41-.07 12.64-.06 16.93.07 34.15.14 51.58.21l26.29-.01c4.4-.02 8.82 0 13.25.03 4.42.05 8.86.18 13.31.27l13.36.23c2.23.03 4.46-.02 6.7-.03l6.71-.16c8.95-.29 17.93-.03 26.93.07 8.99.09 18.01.3 27.03.31l27.08-.15c9.03-.11 18.06-.03 27.09-.04l27.03.04 26.93.14c8.95.08 17.87-.12 26.77-.21 17.78-.3 35.42-.45 52.85-.6l25.97-.13c4.3-.03 8.58.07 12.85.1 4.26.05 8.52.11 12.75.16 4.23.09 8.45.07 12.64.1l12.53-.12 24.7-.27 12.16-.14c4.03-.06 8.03-.11 12.02-.04 7.96.03 15.83.29 23.59.14 15.52-.11 30.62-.38 45.23.14 14.61.49 28.72-.21 42.27.21 13.54.51 26.53-.6 38.88-.15 6.17.06 12.19.23 18.04.25l17.03.08 15.97-.17 7.57-.06 7.29.08c9.52.08 18.27.26 26.18.07l21.1-.33 15.59-.07 12.98-.06v3.2l-12.99-.02-15.6-.02-21.1-.24c-7.91-.16-16.66.1-26.18.24l-7.29.12-7.57-.05-15.98-.17c-11.01-.03-22.72.21-35.07.47-6.18.12-12.51.16-18.99-.18-6.48-.33-13.12-.36-19.89-.12-13.55.53-27.66-.58-42.27-.11-14.61.54-29.71.15-45.23 0l-5.84-.07c-1.96-.03-3.92.03-5.88.04l-11.87.12c-3.98.07-7.99.03-12.02-.02l-12.16-.12-24.71-.18-12.54-.06c-4.2.06-8.41.06-12.65.19l-12.75.32c-4.27.05-8.55.14-12.85.13H739.7c-17.43-.11-35.07-.16-52.85-.6-17.78-.58-35.704-.12-53.7.1-17.992.17-36.056.36-54.12.21-9.032-.11-18.064-.44-27.09-.4-2.254-.03-4.51-.01-6.764.04l-6.763.1-13.505.41c-4.5.16-8.995.22-13.48.27-2.248.05-4.49.02-6.73-.03-2.24-.01-4.48-.15-6.72-.26-8.955-.59-17.88-.48-26.77-.06-4.448.2-8.884.34-13.31.4-4.428.03-8.845.04-13.25-.03l-26.294-.24-51.58-.14c-4.235-.03-8.45.02-12.65-.15-4.2-.2-8.376-.34-12.535-.25-4.16.04-8.3.21-12.42.25-4.12.07-8.22-.03-12.29-.08-16.3-.37-32.25-.37-47.77-.46-15.53.03-30.63.05-45.23.08l-21.53-.08-10.47.01c-3.46.06-6.88.11-10.27.16l-19.89.26c-6.48.02-12.82-.06-18.99-.09l-35.07-.23c-5.5-.01-10.83-.12-15.97-.06l-14.87.22c-9.53.26-18.28.06-26.18-.02l-49.68.37v-3.2zm611.656-287.132l-29.334.246-13.862.097-13.862-.006-13.862-.14-6.93-.07-3.467-.03-3.47-.13-3.47-.12-3.47-.01-6.93-.03-13.87-.05h-1.31l-.01-1.31c-.01-2.66.08-5.32.12-7.98l.16-7.98.15-7.98c.06-2.66.04-5.32.06-7.98v-.82l.81.01c2.31.03 4.62-.02 6.93-.03l6.93-.06 13.86-.13 27.73-.28 27.72-.31c4.62.03 9.24.06 13.86.16l6.93.11 6.93.06 1.29.01.01 1.3.31 33.52zm-3.216-3.185l-.223-30.34 1.83 1.83c-4.622-.02-9.243.06-13.863-.05l-13.862-.24-27.725.04-27.725.05-13.862.02-6.93.01c-2.31.01-4.622-.01-6.932.04l1.704-1.71.245 15.96c.042 2.66.103 5.32.095 7.98-.004 2.66.045 5.32-.016 7.98l-2.028-2.04c2.31.04 4.62.04 6.93.13l6.932.21 6.93.2c2.31.06 4.622.18 6.932.05 2.31-.14 4.62-.05 6.93 0l6.932.14 13.862.22c2.31 0 4.62-.01 6.93-.1l6.932-.2c2.31-.09 4.62-.07 6.93-.09l6.932-.04 13.862-.09c4.088-.04 8.173-.02 12.258-.01zm3.216 68.88l-29.334.24-13.862.09-13.862-.01-13.862-.14-6.93-.07-3.467-.04-3.47-.14-3.47-.13-3.47-.02-6.93-.03-13.87-.06-1.31-.01-.01-1.32c-.01-2.66.08-5.32.12-7.99l.16-7.99.15-7.99c.06-2.66.04-5.32.06-7.99v-.83l.81.01c2.31.03 4.62-.02 6.93-.04l6.93-.07 13.86-.13 27.73-.28 27.72-.31c4.62.02 9.24.06 13.86.16l6.93.11 6.93.06 1.29.01.01 1.3.31 33.51zm-3.216-3.19l-.223-30.34 1.83 1.83c-4.622-.02-9.243.06-13.863-.05l-13.862-.24-27.725.04-27.725.04-13.862.02-6.93.01c-2.31.01-4.622-.01-6.932.04l1.704-1.71.245 15.96c.042 2.66.103 5.32.095 7.98-.004 2.66.045 5.32-.016 7.98l-2.028-2.04c2.31.04 4.62.04 6.93.13l6.932.21 6.93.2c2.31.06 4.622.18 6.932.05 2.31-.13 4.62-.04 6.93 0l6.932.14 13.862.22c2.31 0 4.62-.01 6.93-.1l6.932-.2c2.31-.09 4.62-.07 6.93-.09l6.932-.04 13.862-.08c4.088-.04 8.173-.02 12.258-.01z"/>
3
+ <path fill="#E0E3ED" d="M499.026 566.13l-29.334.247-13.862.097-13.862-.006-13.862-.142-6.93-.07-3.467-.036-3.47-.133-3.47-.122-3.47-.015-6.93-.03-13.87-.057-1.31-.005-.01-1.313c-.01-2.66.08-5.322.12-7.983l.16-7.983.15-7.99c.06-2.66.04-5.32.06-7.99v-.83l.81.01c2.31.02 4.62-.02 6.93-.04l6.93-.07 13.86-.13 27.73-.29 27.72-.31c4.62.02 9.24.06 13.86.16l6.93.11 6.93.06 1.29.01.01 1.3.31 33.52zm-3.216-3.185l-.223-30.333 1.83 1.835c-4.622-.022-9.243.058-13.863-.048l-13.862-.24-27.725.04-27.725.04-13.862.02-6.93.01c-2.31.01-4.622-.01-6.932.04l1.704-1.71.245 15.96c.042 2.66.103 5.32.095 7.98-.004 2.66.045 5.32-.016 7.98l-2.028-2.04c2.31.04 4.62.04 6.93.13l6.932.21 6.93.2c2.31.06 4.622.18 6.932.04 2.31-.13 4.62-.04 6.93 0l6.932.14 13.862.22c2.31.01 4.62-.01 6.93-.1l6.932-.2c2.31-.09 4.62-.07 6.93-.09l6.932-.04 13.862-.08c4.088-.04 8.173-.01 12.258-.01zm116.846-124.32l-29.334.245-13.862.098-13.862-.006-13.862-.142-6.93-.07-3.467-.037-3.47-.133-3.47-.122-3.47-.015-6.93-.03-13.87-.057-1.31-.005-.01-1.31c-.01-2.66.08-5.32.12-7.98l.16-7.98.15-7.98c.06-2.66.04-5.32.06-7.98v-.83l.81.01c2.31.03 4.62-.02 6.93-.03l6.93-.06 13.86-.13 27.73-.28 27.72-.31c4.62.03 9.24.06 13.86.16l6.93.12 6.93.06 1.29.01.01 1.3.31 33.52zm-3.216-3.186l-.223-30.34 1.83 1.83c-4.622-.02-9.243.06-13.863-.05l-13.862-.24-27.725.04-27.725.05-13.862.02-6.93.01c-2.31.01-4.622-.01-6.932.04l1.704-1.71.245 15.96c.042 2.66.103 5.32.095 7.98-.004 2.66.045 5.32-.016 7.98l-2.028-2.03c2.31.04 4.62.04 6.93.13l6.932.21 6.93.2c2.31.06 4.622.18 6.932.05 2.31-.14 4.62-.05 6.93 0l6.932.14 13.862.22c2.31 0 4.62-.01 6.93-.1l6.932-.2c2.31-.09 4.62-.07 6.93-.09l6.932-.04 13.862-.09c4.088-.04 8.173-.01 12.258-.01z"/>
4
+ <path fill="#E0E3ED" d="M561.117 532.002l-29.334.246-13.862.097-13.86-.006-13.86-.15-6.93-.07-3.46-.04-3.46-.14-3.46-.12-3.46-.02-6.93-.03-13.86-.06-1.31-.01v-1.31c-.01-2.66.08-5.33.12-7.99l.16-7.99.16-7.99c.05-2.66.04-5.33.06-7.99l.01-.83.81.01c2.31.02 4.62-.02 6.93-.04l6.94-.06 13.86-.13 27.73-.29 27.73-.31c4.62.03 9.25.06 13.87.16l6.93.11 6.93.05 1.29.01.01 1.3.3 33.51zm-3.216-3.186l-.22-30.333 1.83 1.835c-4.62-.022-9.24.058-13.86-.048l-13.86-.24-27.72.042-27.72.047-13.86.02-6.93.01c-2.31.01-4.62-.01-6.93.04l1.71-1.71.25 15.96c.05 2.66.11 5.32.1 7.98 0 2.66.05 5.32-.01 7.98l-2.03-2.04c2.31.04 4.62.04 6.93.13l6.93.21 6.93.2c2.31.06 4.62.18 6.93.05 2.31-.14 4.62-.04 6.93 0l6.93.14 13.87.22c2.31 0 4.62-.01 6.93-.1l6.93-.2c2.31-.09 4.62-.07 6.93-.09l6.93-.04 13.86-.09c4.09-.04 8.18-.02 12.26-.01zm3.22-59.873l-29.33.246-13.86.09-13.86-.01-13.86-.14-6.93-.08-3.46-.04-3.46-.14-3.46-.13-3.46-.02-6.93-.03-13.86-.06-1.31-.01v-1.32c-.01-2.66.08-5.32.13-7.98l.16-7.99.16-7.98c.06-2.66.04-5.32.06-7.98l.01-.83.81.01c2.31.03 4.62-.02 6.93-.04l6.93-.07 13.86-.13 27.73-.29 27.73-.31c4.62.03 9.24.06 13.86.16l6.93.12 6.93.06 1.3.01.01 1.3.3 33.52zm-3.21-3.186l-.22-30.333 1.83 1.835c-4.62-.03-9.24.05-13.86-.05l-13.86-.24-27.72.04-27.72.05-13.86.02-6.93.01c-2.31.01-4.62-.01-6.93.04l1.7-1.71.25 15.96c.05 2.66.11 5.32.1 7.98 0 2.66.05 5.32-.01 7.98l-2.03-2.04c2.31.04 4.62.04 6.93.13l6.93.21 6.94.2c2.31.06 4.62.18 6.93.05 2.31-.14 4.62-.04 6.93 0l6.93.14 13.86.22c2.31 0 4.62-.01 6.93-.1l6.94-.2c2.31-.09 4.62-.07 6.93-.09l6.93-.04 13.87-.09c4.09-.04 8.18-.01 12.26-.01zm3.22 134.885l-29.33.246-13.86.097-13.86-.006-13.86-.15-6.93-.07-3.46-.04-3.46-.14-3.46-.12-3.46-.02-6.93-.03-13.86-.06-1.31-.01v-1.32c-.01-2.66.08-5.33.12-7.99l.16-7.99.16-7.99c.06-2.66.04-5.32.06-7.98l.01-.83.81.01c2.31.02 4.62-.02 6.93-.04l6.93-.06 13.87-.13 27.72-.29 27.73-.31c4.62.03 9.25.06 13.87.16l6.93.11 6.93.05 1.29.01.01 1.3.31 33.51zm-3.21-3.186l-.22-30.333 1.83 1.835c-4.62-.022-9.24.058-13.86-.048l-13.86-.24-27.72.042-27.72.047-13.86.02-6.93.01c-2.31.01-4.62-.01-6.93.04l1.71-1.71.25 15.96c.04 2.66.11 5.32.1 7.98 0 2.66.05 5.32-.01 7.98l-2.03-2.04c2.31.04 4.62.04 6.93.13l6.93.21 6.93.2c2.31.06 4.62.18 6.93.05 2.31-.14 4.62-.04 6.93 0l6.93.14 13.87.22c2.31 0 4.62-.01 6.93-.1l6.93-.2c2.31-.09 4.62-.07 6.93-.09l6.93-.04 13.87-.09c4.09-.04 8.17-.02 12.26-.01zM1221 242.28l-29.334.247-13.862.097-13.862-.006-13.862-.142-6.93-.07-3.467-.037-3.466-.14-3.466-.12-3.46-.02-6.93-.03-13.86-.06-1.31-.01v-1.32c-.01-2.66.08-5.32.13-7.99l.16-7.99.16-7.98c.06-2.66.04-5.32.07-7.99l.01-.83.81.01c2.31.02 4.62-.02 6.93-.04l6.93-.07 13.87-.13 27.72-.28 27.73-.31c4.62.03 9.24.06 13.86.16l6.93.11 6.93.06 1.3.01.01 1.3.31 33.52zm-3.215-3.185l-.223-30.333 1.83 1.835c-4.622-.022-9.243.058-13.863-.048l-13.87-.24-27.73.04-27.73.04-13.86.02-6.93.01c-2.31.01-4.62-.01-6.93.04l1.7-1.71.24 15.96c.04 2.66.1 5.32.09 7.98-.01 2.66.04 5.32-.02 7.98l-2.03-2.04c2.31.04 4.62.04 6.93.13l6.93.21 6.93.2c2.31.06 4.62.18 6.93.05 2.31-.14 4.62-.04 6.93 0l6.93.14 13.86.22c2.31 0 4.62-.01 6.93-.1l6.93-.2c2.31-.09 4.62-.07 6.93-.09l6.93-.04 13.86-.09c4.08-.04 8.17-.01 12.25-.01z"/>
5
+ <path fill="#E0E3ED" d="M1169.46 208.152l-29.333.246-13.862.097-13.862-.006-13.862-.15-6.93-.07-3.46-.04-3.46-.14-3.46-.12-3.46-.02-6.93-.03-13.86-.06-1.31-.01v-1.31c-.01-2.66.08-5.32.12-7.99l.16-7.98.16-7.99c.06-2.66.04-5.32.07-7.98l.01-.83.81.01c2.31.02 4.62-.02 6.93-.04l6.93-.07 13.87-.13 27.72-.28 27.73-.31c4.62.03 9.24.06 13.86.16l6.93.11 6.93.05 1.3.01.02 1.3.3 33.52zm-3.215-3.186l-.223-30.333 1.83 1.835c-4.622-.022-9.243.058-13.863-.048l-13.87-.24-27.73.042-27.73.047-13.86.02-6.93.01c-2.31.01-4.62-.01-6.93.04l1.7-1.71.24 15.96c.04 2.66.1 5.32.09 7.98-.01 2.66.04 5.32-.02 7.98l-2.03-2.04c2.31.04 4.62.04 6.93.13l6.93.21 6.93.2c2.31.06 4.62.18 6.93.04 2.31-.13 4.62-.04 6.93 0l6.93.14 13.86.22c2.31 0 4.62-.01 6.93-.1l6.93-.2c2.31-.09 4.62-.07 6.93-.09l6.93-.04 13.86-.08c4.08-.04 8.17-.01 12.25-.01zm3.215 71.826l-29.333.246-13.862.097-13.862-.006-13.862-.15-6.93-.07-3.46-.04-3.46-.14-3.46-.12-3.46-.02-6.93-.03-13.86-.06-1.31-.01v-1.31c-.01-2.66.08-5.32.12-7.99l.16-7.98.16-7.99c.06-2.66.04-5.32.07-7.98l.01-.83.81.01c2.31.02 4.62-.02 6.93-.04l6.93-.07 13.87-.13 27.72-.28 27.73-.31c4.62.03 9.24.06 13.86.16l6.93.11 6.93.05 1.3.01.02 1.3.3 33.52zm-3.215-3.186l-.223-30.333 1.83 1.835c-4.622-.022-9.243.058-13.863-.048l-13.87-.24-27.73.042-27.73.047-13.86.02-6.93.01c-2.31.01-4.62-.01-6.93.04l1.7-1.71.24 15.96c.04 2.66.1 5.32.09 7.98-.01 2.66.04 5.32-.02 7.98l-2.03-2.04c2.31.04 4.62.04 6.93.13l6.93.21 6.93.2c2.31.06 4.62.18 6.93.04 2.31-.13 4.62-.04 6.93 0l6.93.14 13.86.22c2.31 0 4.62-.01 6.93-.1l6.93-.2c2.31-.09 4.62-.07 6.93-.09l6.93-.04 13.86-.08c4.08-.04 8.17-.01 12.25-.01zm6.91 397.718l-29.333.246-13.862.098-13.862-.006-13.862-.142-6.93-.07-3.467-.037-3.47-.133-3.47-.122-3.47-.015-6.93-.03-13.87-.057-1.31-.005-.01-1.31c-.01-2.66.08-5.32.12-7.98l.15-7.98.15-7.98c.05-2.66.04-5.32.06-7.98l.01-.83.8.01c2.31.03 4.62-.02 6.93-.03l6.93-.06 13.86-.13 27.72-.28 27.72-.31c4.62.03 9.24.06 13.86.16l6.93.12 6.93.06 1.29.01.01 1.3.3 33.52zm-3.215-3.186l-.223-30.333 1.83 1.835c-4.622-.022-9.243.058-13.863-.048l-13.862-.24-27.725.042-27.725.047-13.862.03-6.93.01c-2.31.01-4.622-.01-6.932.04l1.704-1.71.245 15.97c.042 2.66.103 5.33.095 7.99-.004 2.66.045 5.32-.016 7.99l-2.028-2.03c2.31.05 4.62.05 6.93.14l6.932.21 6.93.21c2.31.07 4.622.19 6.932.05 2.31-.13 4.62-.04 6.93 0l6.932.14 13.862.22c2.31.01 4.62-.01 6.93-.1l6.932-.2c2.31-.08 4.62-.07 6.93-.09l6.932-.04 13.862-.08c4.088-.04 8.173-.01 12.258-.01z"/>
6
+ <path fill="#E0E3ED" d="M1121.617 705.835l-29.334.246-13.862.1h-13.86l-13.86-.14-6.93-.07-3.46-.03-3.46-.13-3.46-.12-3.46-.01-6.93-.03-13.86-.05h-1.31v-1.31c-.01-2.66.08-5.32.12-7.98l.16-7.98.16-7.98c.05-2.66.04-5.32.06-7.98l.01-.82.81.01c2.31.03 4.62-.02 6.93-.03l6.94-.06 13.86-.13 27.73-.28 27.73-.31c4.62.03 9.25.06 13.87.16l6.93.12 6.93.06 1.29.01.01 1.3.3 33.52zm-3.216-3.186l-.22-30.34 1.83 1.83c-4.62-.02-9.24.06-13.86-.05l-13.86-.24-27.72.04-27.72.05-13.86.02-6.93.01c-2.31.01-4.62-.01-6.93.04l1.71-1.71.25 15.96c.05 2.66.11 5.32.1 7.98 0 2.66.05 5.32-.01 7.98l-2.03-2.04c2.31.04 4.62.04 6.93.13l6.93.21 6.93.2c2.31.06 4.62.18 6.93.05 2.31-.14 4.62-.05 6.93 0l6.93.14 13.87.22c2.31 0 4.62-.01 6.93-.1l6.93-.2c2.31-.09 4.62-.07 6.93-.09l6.93-.04 13.86-.09c4.09-.04 8.18-.02 12.26-.01zm-713.43 53.53l-29.33.24-13.86.1-13.86-.01-13.86-.14-6.93-.07-3.46-.04-3.46-.14-3.46-.12-3.46-.02-6.93-.03-13.86-.06-1.31-.01v-1.31c-.01-2.66.08-5.32.12-7.98l.16-7.99.16-7.99c.06-2.66.04-5.32.07-7.98l.01-.83.81.01c2.31.03 4.62-.02 6.93-.03l6.93-.07 13.87-.13 27.72-.29 27.72-.31c4.62.02 9.24.06 13.86.16l6.93.11 6.93.05 1.3.01.01 1.3.31 33.51zm-3.21-3.18l-.22-30.34 1.83 1.83c-4.62-.02-9.24.06-13.86-.05l-13.86-.24-27.72.04-27.72.04-13.86.03-6.93.01c-2.31.01-4.62-.01-6.93.04l1.7-1.71.25 15.96c.04 2.66.11 5.32.1 7.98 0 2.66.05 5.32-.01 7.98l-2.03-2.04c2.31.04 4.62.04 6.93.13l6.93.21 6.93.2c2.31.06 4.62.18 6.93.05 2.31-.14 4.62-.04 6.93 0l6.93.14 13.86.22c2.31 0 4.62-.01 6.93-.1l6.93-.2c2.31-.09 4.63-.07 6.94-.09l6.93-.04 13.86-.09c4.09-.04 8.17-.02 12.26-.01z"/>
7
+ <path fill="#E0E3ED" d="M353.43 790.7l-29.333.245-13.862.097-13.862-.006-13.862-.142-6.93-.07-3.46-.037-3.46-.133-3.46-.122-3.46-.015-6.93-.03-13.86-.057-1.31-.005v-1.313c-.01-2.66.08-5.322.12-7.983l.16-7.99.16-7.99c.06-2.66.04-5.32.07-7.99l.01-.83.81.01c2.31.03 4.62-.02 6.93-.04l6.93-.07 13.87-.13 27.72-.29 27.73-.31c4.62.02 9.24.06 13.86.16l6.93.11 6.93.05 1.3.01.02 1.3.3 33.52zm-3.214-3.186l-.223-30.333 1.83 1.84c-4.622-.02-9.243.06-13.863-.05l-13.862-.24-27.725.04-27.725.05-13.862.03-6.93.02c-2.31.01-4.622-.01-6.932.04l1.704-1.71.245 15.97c.042 2.66.103 5.32.095 7.99-.004 2.66.045 5.33-.016 7.99l-2.028-2.03c2.31.05 4.62.05 6.93.14l6.932.21 6.93.2c2.31.07 4.622.18 6.932.05 2.31-.13 4.62-.04 6.93 0l6.932.14 13.862.22c2.31.01 4.62-.01 6.93-.1l6.932-.2c2.31-.08 4.62-.07 6.93-.09l6.932-.04 13.862-.08c4.087-.04 8.172-.01 12.258-.01z"/>
8
+ <path fill="#E0E3ED" d="M467.05 790.7l-29.334.245-13.862.097-13.862-.006-13.862-.142-6.93-.07-3.467-.037-3.466-.133-3.466-.122-3.46-.015-6.93-.03-13.86-.057-1.31-.005v-1.313c-.01-2.66.08-5.322.13-7.983l.16-7.99.16-7.99c.06-2.66.04-5.32.07-7.99l.01-.83.81.01c2.31.03 4.62-.02 6.93-.04l6.93-.07 13.87-.13 27.72-.29 27.73-.31c4.62.02 9.24.06 13.86.16l6.93.11 6.93.06 1.3.01.01 1.3.31 33.52zm-3.216-3.186l-.223-30.333 1.83 1.84c-4.62-.02-9.24.06-13.86-.05l-13.86-.24-27.72.04-27.72.05-13.86.03-6.93.02c-2.31.01-4.62-.01-6.93.04l1.71-1.71.25 15.97c.05 2.66.11 5.32.1 7.99 0 2.66.05 5.33-.02 7.99l-2.02-2.03c2.31.05 4.62.05 6.93.14l6.93.21 6.93.2c2.31.07 4.62.18 6.93.05 2.31-.13 4.62-.04 6.93 0l6.93.14 13.86.22c2.31.01 4.62-.01 6.93-.1l6.93-.2c2.31-.08 4.62-.07 6.93-.09l6.94-.04 13.86-.08c4.09-.04 8.17-.01 12.26-.01z"/>
9
+ <path fill="#FFF" d="M606.112 665.046l463.06 4.5-8.97-547.358-454.516 3"/>
10
+ <path fill="#FFF" d="M607.305 663.86l56.7.684c9.647.12 19.293.278 28.94.322 9.65.046 19.297.008 28.943.157l28.94.466c4.822.06 9.645.17 14.47.18l14.47.07 57.885.27 28.943.14c4.824 0 9.647.06 14.47.14l14.47.2 28.94.43c9.648.12 19.296.1 28.943.16 9.64.06 19.29.05 28.94.17l28.94.39c19.29.24 38.58.64 57.88.8l-1.08 1.09-.54-34.21c-.15-11.41-.5-22.81-.72-34.21l-.36-17.1-.14-17.11-.12-17.11c-.04-5.7-.25-11.4-.38-17.1l-.23-8.55-.14-8.56-.26-17.11-.5-34.21-1.04-68.42-.56-34.21-.27-17.11-.13-17.11-.14-17.11c-.08-5.7-.06-11.4-.21-17.11l-.78-34.2c-.2-11.41-.27-22.81-.41-34.21l-.36-34.22c-.11-11.41-.39-22.81-.57-34.21l-.66-34.21.58.57-56.82.36-56.82.28-28.41.15-28.41.32-28.41.37-28.4.31-56.82.56-28.41.28c-9.47.09-18.94.05-28.41.09l-28.41.06c-9.47-.01-18.94.11-28.41.22l-56.81.65 1.22-1.24c.07 11.24.17 22.49.09 33.74l-.07 16.87-.04 8.43.03 8.44.14 33.74.05 16.87-.1 16.87-.24 33.74.1 33.74c.04 11.25-.12 22.49-.14 33.74-.06 5.62.02 11.25.08 16.87l.16 16.87c.08 5.62.01 11.25.01 16.87l-.08 16.87c-.09 11.25-.11 22.5-.13 33.74-.06 11.25.01 22.5.08 33.74.04 11.25.15 22.49.06 33.74l-.12 33.74.23 33.74c.12 11.25.15 22.5.17 33.74l.08 32.56zm-2.39 2.378l-.01-34.932c-.012-11.247-.013-22.494.066-33.74l.12-33.742-.27-33.74c-.15-11.248-.05-22.495-.02-33.742l.07-16.87c.03-5.625-.04-11.248-.05-16.872-.05-11.247-.1-22.494-.23-33.74l-.12-16.87c-.01-5.625-.1-11.248-.02-16.872.1-11.247.46-22.494.31-33.74l-.12-16.87c-.03-5.625-.13-11.248-.05-16.872l.2-33.74c-.01-11.248-.15-22.495-.22-33.742l-.11-16.87.06-16.87.14-33.742.04-8.435-.04-8.435-.09-16.87c-.1-11.247-.03-22.494.01-33.74l.01-1.172 1.16-.004 56.82-.18c9.47-.032 18.94-.05 28.41-.224l28.4-.405c9.47-.118 18.94-.32 28.41-.37l28.4-.135 56.81-.272c9.47-.028 18.94-.134 28.41-.08l28.41.054c9.47-.01 18.94.055 28.41-.014l28.41-.312 28.4-.358 28.41-.27 28.41-.268 14.21-.135c4.73-.055 9.47-.09 14.2-.074l1.21.004.01 1.193.34 34.214c.04 5.703.1 11.405.19 17.106.08 5.702.16 11.404.3 17.105.23 11.403.59 22.803.92 34.204.35 11.4.61 22.8.79 34.2.2 11.4-.12 22.81.06 34.22.03 5.7.22 11.4.34 17.1l.54 17.1.52 17.1.29 17.1.42 34.21.99 68.42.52 34.21.26 17.1.12 8.55.03 8.55c.04 5.7-.01 11.4.12 17.1l.39 17.1.39 17.1.18 17.11c.13 11.4.15 22.81.34 34.21l.48 34.21.01.79-.78-.01-115.77-1.14-28.94-.27-28.94-.09c-9.65-.07-19.29-.03-28.94-.18l-28.94-.37-57.88-.74c-9.65-.13-19.3-.26-28.94-.26l-28.94-.08c-9.65-.04-19.29-.24-28.94-.37-9.64-.13-19.29-.13-28.94-.2l-59.07-.4z"/>
11
+ <path fill="#F4F6F8" d="M763.108 226.446c-29.797-14.985-63.856-21.83-97.07-24.643-1.4-.118-2.82-.06-4.177.305-9.78 2.64-6.77 15.512-.63 21.952 10.97 11.485 27.02 16.155 40.79 24.038 13.77 7.883 26.58 22.564 22.84 38.018-2.32 9.633-10.46 16.634-18.56 22.316-14.18 9.958-29.68 18.068-43.02 29.14-13.34 11.072-24.7 25.95-26.69 43.207-.55 4.84.07 10.58 4.17 13.2 2.4 1.53 5.43 1.59 8.28 1.47 35.05-1.52 67.89-23.04 102.81-19.71 4.44 14-6.71 27.29-10 40.23-4.02 15.79-2.26 33.72 3.05 48.97 2.4 6.9 6.13 14.01 12.76 17.05 24.14 11.05 46.91-21.91 51.61-40.89 3.9-15.76 5.16-39.34 24.1-44.56 15.61-4.31 71.13 31.67 113.5 39.76 8.48 1.62 17.89 2.89 25.2-1.7 10.2-6.4 11.22-21.8 5.4-32.36-5.81-10.56-16.42-17.42-26.61-23.83 22.84-6.61 46.74-13.84 63.48-30.77s22.98-46.86 6.88-64.41c-10.88-11.85-28.07-14.75-43.8-17.97-3.38-.69-6.98-1.56-9.28-4.14-3.92-4.39-2.21-11.26-.08-16.75 6.28-16.23 14.31-31.78 23.89-46.29 4.43-6.71 9.31-13.47 9.65-21.81.14-3.38-.67-6.78-2.56-9.58-4.64-6.89-12.42-6.36-19.09-4.58-35.49 9.5-56.35 47.98-90.86 60.93-.85.32-1.72.58-2.61.7-7.55 1.07-9.9-5.82-11.22-11.56-2.96-12.88-5.91-26.09-12.97-37.25-7.06-11.16-19.21-20.06-32.37-19.39-12.67.64-23.49 9.92-30.16 20.75s-10.1 23.28-14.79 35.1c-1.02 2.57-2.2 5.24-4.44 6.85-4.73 3.4-11.29.42-16.02-2.98s-10.17-7.44-15.77-5.87-5.68 12.46.06 11.51"/>
12
+ <path fill="#202E78" d="M672 289h12v10h-12zm316 0h11v10h-11zm-172.86-5.627l.202-.476c.137-.312.326-.744.673-1.356.173-.29.32-.65.59-.95.297-.28.478-.68.677-1.1.198-.42.358-.91.637-1.36.3-.42.58-.91 1-1.3.77-.85 1.73-1.65 2.77-2.44s2.17-1.58 3.48-2.14c.31-.16.64-.29.98-.43.33-.14.66-.27 1.02-.36.7-.2 1.38-.42 2.07-.69.33-.15.71-.19 1.06-.28.35-.1.72-.16 1.09-.19l1.11-.16 1.05-.2c.74-.09 1.51-.09 2.24-.05.73 0 1.45.13 2.2-.02.75-.12 1.47.02 2.18.11.72.09 1.42.25 2.1.42 1.34.38 2.72.65 3.82 1.38 1.06.77 2.16 1.29 3.11 1.91.48.3.9.64 1.27 1.01.36.38.64.79.99 1.09.36.29.62.63.93.88.15.15.28.24.43.41.15.18.31.38.41.54.43.68.71 1.5.39 2.36-.16.41-.44.67-.61.79-.18.12-.27.17-.27.17l-1.04-2.12c.01 0-.09 0-.23.22-.08.25.01.04-.23-.3-.06-.09-.1-.14-.16-.22-.06-.08-.22-.23-.33-.34-.26-.25-.52-.52-.84-.78-.32-.26-.7-.49-1.11-.71-.4-.23-.74-.57-1.15-.87-.75-.67-1.65-1.31-2.68-1.85-1.06-.45-2.04-1.36-3.35-1.51-.63-.12-1.28-.21-1.93-.26-.33-.01-.65-.09-.98-.11-.33-.01-.65-.05-.97-.25-.32-.19-.65-.24-.99-.2-.17.01-.34.01-.51.02l-.51.11c-.69.13-1.29.36-1.94.38-.36.03-.73-.05-1.09-.02-.28 0-.64.12-.95.2-.64.18-1.28.37-1.92.53-.32.08-.65.13-.96.25-.3.14-.56.36-.83.55-.53.39-1.18.49-1.81.68-.3.11-.62.2-.88.38-.24.2-.5.38-.8.49-.56.27-1.17.47-1.65.83s-.91.75-1.26 1.2c-.37.42-.7.86-1 1.28-.56.88-1.17 1.58-1.76 2.2-.27.33-.46.67-.56 1.03-.13.35-.26.64-.38.9-.25.51-.41 1-.54 1.31l-.2.48-2.15-.96z"/>
13
+ <path fill="#7084CB" d="M855.622 267.706c.29-.567.605-1.126.944-1.677 9.694-15.76 35.666-16.01 51.858-16.75 23.43-1.07 59.643 0 72.424 17.1 12.78 17.09 18.105 55.56.004 79.07-30.776 39.97-82.07 7.95-108.13-21.08-11.763-13.1-26.33-38.7-17.1-56.68z"/>
14
+ <path fill="#7084CB" d="M854.58 267.116s.2-.346.583-1.017l.323-.57.045-.08.1-.16.11-.16.23-.34.52-.77c.2-.28.45-.58.69-.89 1-1.26 2.29-2.68 4.08-4.08 1.78-1.39 3.96-2.78 6.55-4.01 1.28-.65 2.64-1.31 4.1-1.9 1.47-.59 3.06-1.03 4.73-1.41 1.67-.38 3.42-.66 5.22-1.02 1.81-.33 3.67-.71 5.61-1 3.88-.59 8.02-1.03 12.39-1.36 2.18-.16 4.42-.33 6.7-.45 2.28-.11 4.63-.12 7.04-.09 2.4.01 4.85-.01 7.35-.09 2.5-.11 5.05-.17 7.64-.06 5.18.27 10.54.76 15.99 1.63 5.48.71 11.03 1.93 16.7 3.36 1.4.41 2.81.87 4.17 1.46 1.36.59 2.68 1.32 4 2.02 1.31.74 2.66 1.39 4.02 2.1 1.35.73 2.57 1.67 3.77 2.65.6.5 1.16 1.04 1.74 1.56.54.56 1.09 1.13 1.61 1.72.49.62 1.01 1.2 1.47 1.87.43.63.88 1.21 1.29 1.91 1.69 2.67 3.06 5.45 4.25 8.36 1.21 2.89 2.22 5.87 3.06 8.92.2.76.42 1.52.6 2.29l.5 2.32c.27 1.56.47 3.14.63 4.72.28 3.17.51 6.33.86 9.51.32 3.19.15 6.41-.24 9.6-.88 6.36-2.06 12.71-4.3 18.78-4.42 12.18-13.8 22.24-25.06 28.09-2.8 1.52-5.83 2.56-8.9 3.38l-2.32.48-1.16.23-1.18.14-2.35.28c-.78.08-1.57.08-2.35.11-3.14.12-6.26-.17-9.32-.55-.76-.13-1.52-.28-2.27-.43-.75-.16-1.51-.28-2.24-.5-1.47-.43-2.95-.8-4.37-1.32-11.48-3.69-22.22-8.75-30.98-15.55-2.26-1.59-4.5-3.15-6.6-4.83-2.12-1.65-4.04-3.48-5.88-5.32-3.65-3.7-7.57-6.88-10.61-10.65-2.99-3.76-6.5-6.96-8.69-10.82-2.34-3.75-4.35-7.41-6.08-10.94-.9-1.75-1.74-3.47-2.44-5.17-.36-.85-.7-1.69-1.01-2.53-.28-.84-.52-1.68-.77-2.5-.91-3.31-1.46-6.4-1.92-9.22-.38-2.83-.52-5.41-.33-7.66.21-2.24.59-4.14 1.05-5.64.2-.76.45-1.4.66-1.96.19-.57.4-1.03.57-1.4l.51-1.12.03-.05zm2.105 1.14l-.474 1.01c-.16.33-.35.746-.53 1.26-.19.508-.43 1.093-.62 1.784-.44 1.36-.8 3.1-1.02 5.176-.23 2.072-.36 4.504-.08 7.222.2 2.727.95 5.7 2.11 8.798.57 1.552 1.15 3.168 1.79 4.836.6 1.685 1.34 3.392 2.13 5.14 1.68 3.46 3.88 6.93 6.45 10.383 1.27 1.736 2.59 3.497 3.78 5.428.61.96 1.28 1.894 2 2.78.37.434.78.874 1.17 1.312l1.26 1.236c3.49 3.22 6.43 7.29 10.49 10.45 2 1.61 4.09 3.17 6.09 4.88l3.09 2.54c1.06.83 2.11 1.68 3.2 2.49 1.1.81 2.18 1.64 3.35 2.37 1.18.72 2.36 1.45 3.56 2.15 1.22.69 2.38 1.48 3.59 2.19 1.22.7 2.42 1.47 3.68 2.13 4.99 2.72 10.28 5.3 16.03 6.68 5.75 1.25 11.6 2.42 17.59 2.28 2.99.03 5.98-.34 8.95-.87 2.93-.69 5.87-1.5 8.69-2.7.7-.3 1.44-.56 2.12-.92.69-.35 1.36-.73 2.03-1.11l1.01-.57c.32-.22.64-.44.95-.67l1.88-1.38c1.19-1 2.31-2.09 3.44-3.15 1.04-1.16 2.1-2.25 3.12-3.45l1.49-1.86.75-.93c.11-.14.28-.34.34-.44l.33-.48c.91-1.26 1.73-2.58 2.56-3.9 1.6-2.68 2.87-5.53 4.09-8.41 1.19-2.89 2.34-5.84 2.97-8.93.35-1.53.54-3.1.73-4.66.09-.78.12-1.57.15-2.35.04-.78.08-1.57.08-2.35l.05-4.69c-.06-1.56.04-3.11.17-4.68.32-3.13-.07-6.27-.83-9.29-.77-3.01-1.46-6-2.17-8.97-.75-2.96-1.66-5.87-2.78-8.67-1.16-2.77-2.53-5.48-4.09-7.93-.36-.61-.83-1.24-1.25-1.86-.39-.58-.88-1.12-1.31-1.69-.47-.54-.97-1.05-1.46-1.57-.53-.48-1.04-.98-1.59-1.44-1.1-.92-2.28-1.74-3.43-2.61-1.14-.89-2.36-1.68-3.68-2.25-1.3-.61-2.67-1.05-4.01-1.54L960.6 255c-5.328-1.98-10.85-3.03-16.23-3.81-5.4-.7-10.7-1.04-15.83-1.2-2.57-.09-5.09-.19-7.57-.18-1.24 0-2.47-.01-3.684.03-1.218.07-2.42.13-3.61.2-2.38.14-4.698.363-6.99.47l-6.683.23c-4.333.17-8.433.445-12.263.88-1.91.24-3.766.47-5.53.83-1.76.36-3.43.83-5.01 1.34-1.58.5-3.07 1.013-4.49 1.514-1.44.45-2.77 1.01-4.017 1.56-2.446 1.21-4.44 2.6-6.018 3.96-1.58 1.35-2.78 2.68-3.61 3.79-.21.28-.41.525-.59.79l-.5.774-.225.344-.103.16-.024.04-.01.02c-.044.08.05-.08.037-.05l-.04.08-.31.57-.56 1.03.03-.04zm-39.628-.55c-.29-.567-.605-1.126-.944-1.677-9.694-15.76-35.666-16.01-51.858-16.75-23.43-1.07-59.643 0-72.424 17.1-12.78 17.09-18.1 55.56 0 79.07 30.78 39.97 82.07 7.95 108.13-21.08 11.77-13.1 26.33-38.7 17.1-56.68z"/>
15
+ <path fill="#7084CB" d="M816.016 268.296l-.567-1.026-.32-.57-.05-.08.03.058-.02-.02-.03-.038-.11-.16-.23-.345-.51-.772c-.19-.265-.39-.506-.6-.786-.84-1.105-2.04-2.432-3.63-3.77-1.58-1.352-3.58-2.733-6.02-3.926-1.25-.53-2.57-1.08-4.02-1.52-1.43-.49-2.92-.99-4.49-1.49-1.58-.5-3.24-.97-5-1.32-1.76-.35-3.62-.55-5.53-.77-3.83-.4-7.93-.64-12.26-.76l-6.69-.16c-2.3-.09-4.61-.29-6.99-.45-2.37-.15-4.8-.19-7.28-.11-2.48.1-4.99.26-7.55.32-5.12.1-10.41.34-15.81.91-5.38.71-10.91 1.65-16.24 3.61-.66.26-1.33.47-2 .71-.66.26-1.34.48-2.01.71-1.34.48-2.72.9-4.03 1.49-1.33.56-2.57 1.32-3.72 2.19-1.17.84-2.36 1.65-3.48 2.56-.56.45-1.08.95-1.62 1.43-.5.51-1.01 1.03-1.49 1.56-.44.56-.94 1.1-1.35 1.68-.43.62-.91 1.24-1.28 1.85-1.61 2.44-3.02 5.14-4.22 7.91-1.18 2.8-2.16 5.7-2.97 8.67-.4 1.49-.76 2.99-1.11 4.49-.15.76-.36 1.51-.54 2.27-.18.76-.33 1.52-.49 2.29-.66 3.05-1.03 6.19-.92 9.34.06 3.14.02 6.28.16 9.44.13 3.15.45 6.32 1.13 9.42.68 3.09 1.62 6.13 2.81 9.07 1.21 2.92 2.53 5.79 4.15 8.5l1.27 1.99c.43.66.91 1.28 1.36 1.93.9 1.24 1.99 2.46 2.98 3.68 1.04 1.19 2.15 2.28 3.21 3.43 1.16 1.05 2.31 2.12 3.53 3.1l1.9 1.39c.31.24.63.46.95.68l1.02.57 2.03 1.14c.67.38 1.4.65 2.1.98 2.81 1.31 5.8 2.08 8.76 2.77 3 .52 6.02.89 9.03.83 6.04.07 11.91-1.13 17.64-2.51.71-.19 1.43-.38 2.13-.59.7-.22 1.39-.48 2.08-.71 1.39-.48 2.72-1.08 4.05-1.67 2.66-1.17 5.22-2.48 7.71-3.86 1.26-.66 2.45-1.43 3.67-2.14 1.21-.72 2.36-1.51 3.57-2.2 2.39-1.41 4.77-2.82 6.93-4.48 1.09-.8 2.15-1.65 3.21-2.46 1.04-.84 2.08-1.67 3.1-2.5 2.02-1.69 4.11-3.25 6.12-4.84 4.053-3.17 7.23-7.01 10.66-10.3 1.724-1.64 3.23-3.43 4.48-5.32.64-.94 1.27-1.86 1.92-2.76.66-.88 1.312-1.76 1.93-2.65 1.235-1.77 2.47-3.48 3.51-5.25 1.033-1.76 2.03-3.49 2.87-5.22.8-1.76 1.525-3.47 2.153-5.16.33-.84.6-1.67.895-2.49.316-.81.59-1.61.867-2.39.5-1.58 1.01-3.1 1.32-4.59.37-1.47.52-2.92.64-4.28.25-2.73.1-5.17-.15-7.24-.23-2.08-.6-3.82-1.06-5.18-.19-.69-.43-1.28-.63-1.78-.18-.51-.373-.93-.54-1.26l-.48-1.01.03.04zm2.104-1.14l.518 1.116c.177.365.383.824.58 1.39.213.558.467 1.203.67 1.96.476 1.492.863 3.392 1.09 5.635.204 2.25.085 4.84-.272 7.68-.434 2.83-.96 5.94-1.788 9.287-.85 3.344-2.422 6.737-4.228 10.24-1.76 3.528-3.694 7.255-6.013 11.04-1.163 1.888-2.476 3.758-4.11 5.43-.81.843-1.603 1.708-2.397 2.607-.378.47-.766.9-1.147 1.36l-1.152 1.4c-2.98 3.84-7.14 6.79-10.78 10.5-1.85 1.83-3.77 3.66-5.91 5.29-2.11 1.66-4.37 3.21-6.64 4.78-2.33 1.49-4.57 3.17-6.94 4.75-2.39 1.54-4.94 2.87-7.53 4.19-5.19 2.63-10.74 4.73-16.45 6.77-1.42.55-2.89.95-4.36 1.41-.73.23-1.49.37-2.24.53-.75.16-1.51.33-2.27.46-3.07.41-6.2.74-9.37.64-.79-.02-1.58-.01-2.37-.08l-2.37-.27-1.18-.14-1.17-.23-2.35-.47c-3.09-.82-6.17-1.83-8.96-3.45-2.86-1.48-5.46-3.37-8.07-5.24-1.28-.96-2.51-2-3.76-3.02-1.15-1.13-2.4-2.23-3.48-3.42l-1.56-1.8-.78-.9c-.14-.16-.23-.26-.41-.49l-.37-.49c-.48-.65-.99-1.29-1.46-1.96l-1.34-2.05c-1.68-2.8-3.18-5.72-4.26-8.8-1.09-3.07-1.79-6.26-2.49-9.41-.28-1.59-.71-3.15-.96-4.75-.17-.79-.32-1.58-.46-2.38-.14-.79-.29-1.59-.39-2.4-.09-.8-.25-1.6-.3-2.41l-.15-2.43c-.03-.81-.04-1.62-.01-2.42.04-.8.17-1.61.27-2.41.57-3.19.77-6.36.94-9.56.09-1.6.28-3.19.55-4.77l.51-2.33c.19-.77.43-1.53.64-2.3.9-3.05 1.98-6.03 3.24-8.91 1.24-2.9 2.66-5.68 4.39-8.35.43-.69.88-1.27 1.32-1.89.47-.67 1-1.24 1.5-1.86.53-.59 1.09-1.14 1.64-1.71.59-.52 1.16-1.06 1.76-1.55 1.22-.97 2.46-1.9 3.82-2.6 1.37-.68 2.74-1.31 4.05-2.03 1.33-.69 2.65-1.39 4.02-1.97 1.36-.58 2.77-1.02 4.17-1.43 5.67-1.41 11.23-2.52 16.7-3.16 5.46-.74 10.8-1.13 15.97-1.33 2.59-.08 5.13-.08 7.62-.08l3.71.02 3.64-.04c2.4 0 4.75-.03 7.03.07 2.28.1 4.52.25 6.7.39 4.36.29 8.5.69 12.37 1.24 1.94.28 3.8.64 5.6.95 1.8.35 3.55.62 5.21 1s3.26.82 4.72 1.39c1.47.58 2.83 1.22 4.1 1.87 2.59 1.22 4.77 2.6 6.55 3.98 1.79 1.38 3.09 2.8 4.09 4.05.25.32.5.62.7.89l.52.76.24.34.1.16.1.16.05.08.33.56.59 1.02.03.05z"/>
16
+ <path fill="#202E78" d="M805.887 323.792l.38-.755c.26-.47.604-1.155 1.064-1.95.24-.392.55-.78.87-1.197l.54-.616c.08-.112.21-.198.36-.267.15-.073.2-.207.3-.315.35-.456.63-.982 1.05-1.426.4-.462.96-.82 1.28-1.344.64-1.045 1.17-2.157 1.64-3.217.23-.533.5-1.02.74-1.492.12-.237.24-.466.39-.662.17-.18.34-.36.5-.52.33-.33.6-.65.76-1 .19-.32.34-.61.46-.85.25-.48.36-.77.36-.77.24-.61.94-.92 1.55-.67s.92.94.68 1.56c-.01.05-.03.09-.06.13l-.16.31-.4.74c-.12.24-.28.53-.45.85-.18.33-.36.71-.67 1.06-.15.18-.35.33-.53.51-.17.19-.31.4-.45.62l-.9 1.39c-.32.48-.62.99-.93 1.5-.3.52-.63 1.04-.92 1.58-.3.53-.42 1.19-.76 1.68-.29.53-.89.85-1.34 1.23-.09.11-.24.19-.26.34-.01.16-.06.29-.18.38-.18.21-.39.39-.59.58-.41.36-.71.76-.75 1.28-.11.47-.38.8-.54 1.14-.17.33-.35.6-.48.84-.28.46-.46.71-.46.71-.38.54-1.13.67-1.66.28-.49-.35-.64-.99-.37-1.51l.03-.07zm58.578 1.31l-.535-.653c-.323-.43-.81-1.03-1.35-1.77-.262-.38-.49-.82-.74-1.28l-.348-.74c-.07-.12-.098-.27-.1-.44-.008-.17-.108-.27-.168-.4-.275-.51-.643-.97-.88-1.54-.262-.55-.362-1.21-.71-1.71-.698-1.01-1.498-1.94-2.275-2.8-.4-.43-.74-.87-1.07-1.28-.17-.21-.33-.41-.45-.62-.11-.23-.2-.46-.28-.67-.17-.44-.36-.82-.61-1.1-.22-.3-.42-.56-.59-.77-.34-.42-.56-.64-.56-.64-.47-.47-.47-1.23 0-1.7s1.23-.47 1.69.01c.03.03.06.06.09.1l.21.27.51.66.59.76c.22.29.5.62.69 1.04.1.21.16.45.25.69.1.23.24.44.38.66l.89 1.38c.3.49.64.97.99 1.46s.69 1 1.06 1.48c.36.5.91.87 1.22 1.38.36.48.41 1.16.58 1.73.06.13.07.3.2.38.13.08.24.18.27.32.12.25.2.52.28.78.16.53.4.96.86 1.21.38.29.57.67.82.95.23.29.4.57.56.78.3.45.45.71.45.71.33.57.15 1.31-.42 1.65-.52.3-1.17.18-1.54-.27l-.06-.07z"/>
17
+ <g fill="#FFF" opacity=".2">
18
+ <path d="M760.284 335.28c-9.833-9.477.855-28.877-8.503-38.826-5.5-5.852-14.75-4.973-22.74-5.672-5.67-.496-11.25-2.02-16.39-4.476-5.09-2.432-9.32-6.004-9.33-12.145 0-4.05 1.66-7.92 3.55-11.5.17-.32-4.23 1.33-4.56 1.54-2.58 1.61-3.7 4.76-5.24 7.14-3.1 4.83-6.03 9.91-8.01 15.34-4.34 11.93-4.78 25.33-.85 37.43 9.35 28.78 31.36 42.21 60.08 30.83 4.17-1.64 7.94-4.28 10.92-7.62.96-1.07 1.87-2.28 2.12-3.69.84-4.66 2.39-5.04-1.02-8.32z"/>
19
+ <path d="M759.434 336.125l-.146-.146c-.102-.11-.23-.22-.442-.46-.43-.46-.98-1.11-1.594-2.08-1.253-1.91-2.393-5.13-2.67-9.16-.353-4.03.09-8.82.05-14.12-.045-2.64-.247-5.44-1.143-8.08-.45-1.32-1.09-2.58-1.96-3.71-.44-.57-.92-1.08-1.48-1.6-.5-.46-1.11-.93-1.74-1.31-2.55-1.59-5.82-2.29-9.27-2.63-3.47-.35-7.19-.38-11.07-.8-3.92-.46-7.85-1.38-11.7-2.83-.96-.37-1.92-.75-2.87-1.19-.48-.22-.93-.43-1.43-.67-.46-.23-.91-.46-1.38-.75-1.86-1.08-3.64-2.38-5.12-4.08-.75-.84-1.42-1.77-1.94-2.81-.51-1.04-.87-2.15-1.08-3.29-.19-1.12-.23-2.34-.15-3.42.08-1.16.27-2.26.55-3.36.56-2.18 1.44-4.24 2.43-6.22l.37-.74.19-.37.1-.19c-.58.62 1.19 2 .84 1.42.02 0 .05-.01.03 0-.33.06-.92.26-1.4.42l-1.51.54-.74.29-.35.14c-.04.01-.13.07-.03.01l-.17.11c-1.59 1.05-2.66 2.87-3.74 4.78-.53.96-1.18 1.96-1.78 2.86-.6.91-1.19 1.84-1.77 2.78-2.31 3.73-4.38 7.65-5.86 11.76-3.1 8.26-3.94 17.27-2.94 25.84.23 2.15.65 4.26 1.12 6.35.27 1.03.51 2.07.85 3.08.16.5.3 1.03.47 1.51l.53 1.52c1.42 3.99 3.17 7.81 5.27 11.34 4.13 7.07 9.8 12.91 16.32 16.42 6.53 3.51 13.64 4.66 20.09 4.36 6.48-.3 12.35-1.97 17.26-4 4.77-2.07 8.34-5.22 10.59-8.07.53-.7.89-1.39 1.04-2.04.14-.72.32-1.67.52-2.4.19-.75.4-1.43.49-1.95.09-.53.06-.8-.05-1.09-.25-.6-.8-1.17-1.12-1.52l-.55-.53-.03-.02zm1.678-1.71l.615.61c.38.456 1.05.995 1.63 2.34.288.69.308 1.638.15 2.37-.145.752-.357 1.412-.538 2.12-.2.725-.32 1.357-.52 2.355-.26 1.07-.82 2.05-1.46 2.905-2.58 3.242-6.34 6.526-11.59 8.812-2.57 1.038-5.32 2.042-8.34 2.794-3.01.77-6.25 1.34-9.67 1.47-6.81.32-14.42-.97-21.34-4.78-6.92-3.79-12.83-10.01-17.05-17.38-2.15-3.67-3.93-7.62-5.37-11.74l-.53-1.52c-.19-.55-.33-1.06-.49-1.59-.34-1.05-.59-2.13-.86-3.2-.48-2.16-.91-4.35-1.13-6.58-1.02-8.88.05-18.14 2.98-26.71 1.48-4.36 3.53-8.41 5.81-12.28.57-.96 1.15-1.92 1.74-2.87.62-.96 1.12-1.78 1.64-2.76.52-.96 1.06-1.98 1.76-2.98.35-.49.72-1 1.18-1.46.22-.23.46-.44.72-.66l.42-.33c.14-.11.23-.16.35-.24l.17-.12c.3-.18.32-.17.42-.22l.43-.17.79-.3 1.58-.55.81-.25c.3-.08.52-.16.99-.24.05-.01.18-.02.3-.03-.43-.83 2.25 1.16 1.36 2.16l-.1.18-.19.35-.37.71c-.97 1.87-1.8 3.77-2.34 5.71-.27.96-.46 1.97-.55 2.91-.03.22-.04.5-.05.76l-.01.2v.16l.01.36c-.01.48.06.95.11 1.43.16.94.43 1.85.83 2.7.4.85.95 1.64 1.57 2.37 1.29 1.42 2.95 2.53 4.67 3.42 1.77.94 3.53 1.76 5.37 2.47 3.65 1.41 7.41 2.32 11.11 2.76 3.73.41 7.44.5 11.07.8 3.6.31 7.23.97 10.33 2.8.77.46 1.48.96 2.16 1.57.64.56 1.25 1.21 1.77 1.9 1.05 1.37 1.81 2.9 2.32 4.44 1.02 3.08 1.2 6.11 1.24 8.86.02 5.52-.43 10.2-.1 13.96.26 3.77 1.26 6.48 2.29 8.06.5.8.99 1.37 1.29 1.7.14.16.32.32.41.42l.15.14-.02-.02z"/>
20
+ </g>
21
+ <g fill="#FFF" opacity=".2">
22
+ <path d="M733.11 270.657c-2.526-2.224-6.81-3.464-9.61-3.023 1.18-.186 2.33-.323 3.47-.658-2.545-1.115-5.873-1.226-8.273.38-2.048 1.368-3.22 4.13-2.36 6.443.606 1.63 2.06 2.8 3.577 3.66 5.302 3 22.37 1.27 13.195-6.81z"/>
23
+ <path d="M726.947 280.34c-3.036 0-6.01-.57-7.767-1.567-2.21-1.252-3.6-2.708-4.245-4.45-1.058-2.858.202-6.39 2.933-8.216 2.61-1.746 6.418-1.943 9.7-.505l3.777 1.654-.605.177c1.26.563 2.424 1.277 3.356 2.098 4.185 3.69 3.324 6.34 2.437 7.6-1.594 2.25-5.64 3.22-9.586 3.22zm-3.966-12.69c-1.21 0-2.44.275-3.45.954-1.58 1.058-2.36 3.11-1.79 4.673.39 1.05 1.34 1.994 2.91 2.884 3.36 1.91 11.9 1.41 13.45-.77.74-1.03-1.13-2.86-1.97-3.6-2.28-2.01-6.15-3-8.35-2.67l-.04.01-.22-1.45c-.17-.01-.34-.01-.52-.01z"/>
24
+ </g>
25
+ <g fill="#FFF" opacity=".2">
26
+ <path d="M969.63 336.225c-.355-.763-1.128-1.235-1.89-1.586-5.642-2.6-12.196-.9-18.402-.87-20.175.06-36.547-19.09-39.498-39.12-.885-6.01-.922-12.4-3.996-17.63-3.262-5.55-9.505-8.81-15.83-9.94-3.77-.68-7.922-1.35-11.765-.97-6.42.64-11.42 4.31-12.23 11.08-1.39 11.6 5.83 25.09 12.42 34.07 8.96 12.2 21.02 21.77 33.57 30.21 9.26 6.23 19.34 12.08 30.47 12.92 11.12.83 23.45-4.8 27-15.41.3-.91.53-1.92.13-2.78z"/>
27
+ <path d="M944.948 356.005c-.84 0-1.696-.032-2.567-.097-11.47-.858-21.77-6.836-31.18-13.168-15.71-10.563-26.18-19.99-33.94-30.565-4.37-5.953-14.35-21.292-12.7-35.143.84-6.994 5.91-11.63 13.56-12.398 4-.397 8.21.265 12.18.98 7.53 1.353 13.67 5.237 16.86 10.654 2.56 4.354 3.14 9.368 3.69 14.217.16 1.325.31 2.515.5 3.82C914 312.517 929.26 332 949.23 332h.1c1.692 0 3.468-.01 5.186-.146 4.642-.363 9.448-.673 13.85 1.354.846.39 1.632 1.085 2.632 2.35v.016c0 1.367.29 2.806-.077 3.9-2.83 8.468-12.54 16.53-25.97 16.53zm-64.328-88.49c-.752 0-1.495.032-2.223.104-6.253.62-10.223 4.18-10.888 9.76-1.53 12.78 7.98 27.34 12.14 33 7.55 10.28 17.79 19.49 33.2 29.85 9.08 6.1 18.96 11.86 29.74 12.66 9.75.74 22.02-4.06 25.48-14.39.1-.3.4-1.21.19-1.67-.19-.41-.92-.75-1.16-.86-3.7-1.71-7.91-1.51-12.37-1.16-1.77.14-3.61.15-5.41.15h-.11c-9.82 0-19.47-4.3-27.19-12.35-7.2-7.5-12.19-17.61-13.69-27.85-.2-1.34-.36-2.66-.51-4.02-.55-4.75-1.06-9.22-3.3-13.02-2.74-4.67-8.14-8.02-14.81-9.22-3.01-.54-6.15-1.05-9.13-1.05z"/>
28
+ </g>
29
+ <path fill="#202E78" d="M668.03 198.91s.137.135.372.412c.115.14.274.298.43.514.16.21.315.483.562.714.123.115.324.166.494.26.16.1.272.268.362.466.095.194.17.418.324.576.16.152.337.295.536.43.4.265.86.51 1.322.793.224.15.444.31.65.498.205.186.326.467.473.73.144.266.337.492.62.634.277.15.597.26.79.51.438.445.698 1.1 1.12 1.618.217.253.42.526.683.744.127.11.243.24.396.33.153.09.332.15.49.24.158.08.292.2.378.36.08.17.113.39.193.56.043.08.094.16.172.2.08.04.192.06.29.09.206.04.286.22.424.34.51.52.96 1.1 1.45 1.67.26.27.53.53.8.79.29.24.53.54.65.96.13.41.35.73.78.84.42.11.6.48.8.83.19.36.35.74.64 1 .26.29.61.48.92.72.6.5 1.12 1.07 1.64 1.64.27.27.48.6.73.9.26.28.59.49.94.67.71.36 1.3.84 1.93 1.27.59.46 1.19.9 1.49 1.63.36.66 1.06.96 1.68 1.33.31.18.61.37.84.63.1.14.17.31.26.46.09.14.22.25.35.35.27.2.58.35.82.57.26.2.37.53.49.86.19.7 1.01.73 1.19 1.37.11.3.31.51.63.57.32.06.5.27.63.51.25.49.52.93.88 1.24.38.29.84.44 1.03.83.11.18.2.37.32.52.12.14.26.25.41.34.68.27 1.08.62 1.36.85s.4.38.4.38c.42.52.34 1.28-.17 1.7-.44.36-1.05.36-1.48.03l-.03-.02s-.16-.12-.41-.38-.62-.64-.94-1.28c-.1-.14-.22-.27-.38-.38-.17-.1-.38-.17-.58-.25-.2-.09-.36-.22-.49-.41-.12-.19-.21-.42-.37-.6-.32-.34-.79-.58-1.31-.8-.25-.12-.46-.29-.48-.67-.01-.38-.21-.58-.54-.66-.7-.12-.52-1.16-1.22-1.33-.32-.12-.65-.24-.83-.51-.21-.25-.34-.58-.53-.86-.1-.14-.2-.27-.34-.37l-.46-.26c-.27-.22-.47-.51-.66-.8-.41-.59-.74-1.27-1.48-1.55-.81-.21-1.29-.77-1.8-1.31-.25-.28-.46-.6-.7-.9-.24-.3-.46-.61-.59-1.02-.14-.4-.33-.75-.65-.97-.33-.21-.72-.36-1.03-.6-.63-.45-1.3-.88-1.75-1.51-.2-.34-.32-.78-.6-1.04-.13-.15-.3-.25-.49-.33l-.62-.19c-.21-.06-.41-.13-.56-.26-.18-.1-.25-.29-.25-.56.05-.59-.29-.79-.78-.84-.5-.03-.8-.26-1-.6-.22-.31-.44-.62-.67-.92-.48-.56-1.04-1.05-1.5-1.61-.1-.16-.27-.25-.29-.47-.02-.11-.03-.23-.06-.32-.04-.09-.11-.15-.19-.2-.16-.09-.36-.14-.52-.23-.15-.1-.26-.24-.34-.4-.27-.72-.74-1.22-1.19-1.7l-1.41-1.32c-.44-.44-.74-1-1.32-1.24-.28-.14-.56-.25-.76-.44-.2-.19-.38-.4-.55-.6-.32-.43-.6-.86-.89-1.23-.15-.19-.3-.35-.46-.5-.17-.15-.4-.22-.59-.31-.2-.09-.37-.19-.48-.35-.11-.16-.17-.35-.29-.47-.25-.23-.53-.38-.74-.53-.23-.15-.39-.3-.54-.41-.29-.22-.43-.35-.43-.35-.48-.46-.51-1.22-.05-1.7.45-.48 1.21-.51 1.69-.06l.01.01.04.03zm26.672 10.522s.074.075.187.24c.05.084.13.175.2.305.07.125.12.312.26.435.06.063.21.06.32.098.1.047.14.148.16.288.02.133.02.293.1.386.08.088.19.165.31.23.24.132.54.24.83.374.14.075.26.163.37.272.11.108.13.303.17.48.04.178.13.318.31.38.18.068.4.102.48.262.21.275.23.73.41 1.06.19.32.35.67.84.775.1.045.17.113.18.224.01.12-.03.28-.02.4.01.06.02.11.07.13.05.03.13.02.2.03.15.01.16.13.23.2.23.33.38.73.6 1.08.12.17.24.34.37.5.15.15.24.35.19.64-.04.29.02.51.33.54.3.05.31.3.33.54.01.25.01.51.14.68.1.19.32.3.47.45.29.32.49.7.69 1.08.11.18.15.41.23.61.09.2.28.33.49.44.42.23.72.54 1.04.83.29.31.58.61.53 1.11.01.46.44.66.78.92.17.13.33.26.4.44.02.1 0 .22 0 .32.01.1.07.18.13.25.13.14.31.25.41.4.12.14.06.37.01.6-.16.48.47.53.33.96-.21.46.68.37.52.77-.04.35-.02.65.11.87.17.21.47.34.44.6 0 .12-.03.25 0 .36.02.1.08.19.16.25.41.23.56.48.67.66.11.17.13.28.13.28.15.66-.26 1.31-.92 1.46-.47.11-.94-.07-1.22-.43l-.07-.08s-.07-.08-.14-.26-.18-.44-.12-.87c0-.09-.04-.18-.11-.26-.09-.07-.22-.12-.34-.19-.12-.06-.19-.16-.2-.28 0-.13.03-.28-.01-.4-.1-.24-.36-.41-.67-.58-.14-.09-.23-.2-.07-.45.17-.25.11-.39-.12-.45-.5-.09.12-.78-.36-.91-.2-.08-.41-.16-.44-.34-.05-.17-.01-.39-.03-.58-.02-.09-.04-.18-.11-.25-.07-.06-.17-.11-.25-.17-.12-.14-.15-.34-.18-.54-.07-.39-.04-.85-.51-1.03-.56-.12-.71-.49-.89-.85-.08-.18-.14-.38-.19-.59-.06-.2-.11-.4-.05-.68.04-.27.03-.5-.14-.64-.18-.13-.45-.2-.59-.36-.34-.27-.71-.53-.82-.95-.04-.23.03-.53-.09-.69-.09-.2-.41-.22-.71-.27-.26-.07-.56-.11-.34-.52.25-.43.05-.55-.32-.53-.39.03-.55-.1-.58-.33-.07-.19-.12-.41-.21-.59-.2-.35-.47-.64-.65-1-.03-.1-.13-.14-.08-.3.02-.07.05-.16.05-.22s-.04-.09-.08-.12c-.09-.05-.24-.05-.33-.1-.09-.05-.13-.14-.14-.25.02-.5-.21-.79-.41-1.09-.22-.28-.49-.51-.71-.76-.22-.26-.29-.63-.68-.7-.18-.05-.37-.09-.47-.2-.1-.11-.18-.23-.26-.36-.13-.27-.23-.54-.36-.76-.07-.11-.14-.21-.23-.29-.09-.08-.24-.09-.37-.12s-.24-.07-.29-.17c-.04-.1-.04-.23-.11-.3-.13-.13-.32-.18-.44-.25-.13-.07-.23-.15-.31-.21-.17-.11-.25-.18-.25-.18-.48-.45-.5-1.21-.04-1.69s1.21-.5 1.69-.04l.03.02.06.06zm300.48 156.435s.09.085.238.27c.072.094.173.196.268.34.1.14.172.345.34.485.082.072.237.075.36.12.115.053.177.17.218.316.045.14.072.31.17.41.106.092.23.175.37.245.28.14.615.25.945.387.16.077.32.164.46.275.14.11.2.317.28.504.08.19.2.33.41.39.21.06.44.09.57.25.29.27.41.76.68 1.09.28.33.54.69 1.09.74.12.03.21.1.26.21.04.12.04.29.09.42.03.06.06.11.11.13.06.02.15 0 .22 0 .16-.01.2.12.3.18.35.3.62.7.96 1.04.17.16.36.32.55.46.21.13.37.32.42.64.06.31.2.52.53.5.32 0 .43.25.55.5.11.26.21.52.41.68.18.17.44.24.66.37.43.26.79.6 1.15.94.19.16.33.38.5.56.18.17.42.26.69.31.53.11.96.35 1.42.53.43.22.87.42 1.05.95.24.45.77.5 1.23.64.23.06.45.13.61.28.07.09.11.21.17.31.07.09.16.14.26.19.2.08.44.12.61.23.19.09.26.33.33.58.11.53.75.3.86.79.07.22.21.33.47.28.25-.05.37.08.47.24.18.34.37.62.64.77.29.12.64.1.77.37.14.26.3.46.54.49.52.01.82.17 1.03.28.21.1.3.19.3.19.48.47.49 1.24.03 1.72-.36.37-.89.47-1.33.28l-.04-.02c0-.01-.12-.05-.31-.19s-.47-.34-.7-.78c-.07-.09-.16-.16-.28-.19-.12-.03-.29-.01-.44-.03-.15-.01-.28-.07-.37-.19-.09-.12-.15-.28-.27-.38-.24-.19-.6-.24-1-.27-.2-.02-.35-.1-.35-.41 0-.32-.14-.43-.4-.4-.54.11-.35-.82-.89-.76-.24-.01-.5-.01-.63-.19-.14-.16-.23-.39-.37-.58-.06-.09-.14-.17-.24-.21-.11-.04-.24-.05-.35-.09-.2-.11-.34-.29-.47-.49-.29-.38-.5-.85-1.07-.88-.63.05-.97-.28-1.34-.6-.18-.17-.34-.36-.49-.56-.16-.19-.31-.4-.38-.71-.09-.3-.21-.54-.44-.64-.25-.08-.55-.1-.77-.23-.47-.21-.97-.39-1.27-.81-.13-.24-.18-.57-.38-.72-.17-.19-.52-.15-.85-.14-.31-.02-.64-.01-.56-.5.09-.51-.15-.6-.54-.51-.4.09-.63-.02-.75-.26-.15-.2-.27-.43-.43-.61-.33-.36-.72-.64-1.03-1-.06-.1-.18-.14-.18-.33 0-.09.01-.19-.01-.25s-.07-.1-.12-.12c-.12-.04-.27-.04-.39-.07-.12-.05-.18-.14-.23-.26-.08-.26-.16-.51-.31-.66-.13-.19-.29-.34-.44-.5-.31-.29-.66-.53-.97-.79-.3-.27-.45-.68-.89-.75-.2-.05-.42-.09-.55-.21-.14-.12-.26-.25-.36-.39-.2-.3-.36-.59-.55-.84-.09-.12-.19-.23-.3-.32-.12-.09-.29-.11-.43-.14-.15-.03-.27-.09-.34-.19-.06-.12-.08-.26-.16-.34-.16-.15-.37-.21-.52-.3-.16-.08-.27-.17-.37-.24-.2-.13-.3-.21-.3-.21-.49-.44-.54-1.2-.1-1.69.44-.49 1.2-.54 1.69-.1l.02.02.05.05zm9.602-23.807s.057.005.16.048c.053.023.118.034.192.08.075.037.153.15.255.142.05 0 .12-.1.18-.146.06-.038.12.014.17.095.06.07.11.18.17.2.07 0 .14-.02.21-.06.15-.08.31-.21.48-.32.09-.05.17-.08.25-.09.08 0 .15.11.23.21.08.09.16.13.26.03.1-.08.2-.22.29-.17.18.02.34.33.53.41.19.08.38.17.6-.13.05-.05.11-.06.15 0 .05.07.09.2.14.27.02.03.05.05.08.03s.06-.09.09-.14c.06-.11.1-.04.16-.06.2.02.41.15.62.19.1.02.2 0 .31-.01.1-.05.21.02.32.21.11.19.23.25.31.02.08-.22.18-.11.29-.01.12.1.26.23.36.19.11-.02.17-.14.26-.23.19-.14.42-.16.66-.2.11-.04.26.02.38.02.12-.01.21-.13.29-.28.17-.29.39-.42.59-.61.21-.14.43-.27.7-.02.26.18.43-.14.62-.33.1-.1.19-.2.3-.18.06.03.12.09.18.13.05.03.1.01.15-.02.09-.07.18-.19.28-.21.09-.05.21.09.32.24.23.34.35-.23.56.08.1.13.19.13.25-.07.07-.19.15-.18.24-.11.18.16.34.27.47.22.14-.08.25-.31.39-.17.07.05.13.11.19.13.06.01.11-.02.16-.07.19-.3.34-.35.45-.38.11-.04.17-.02.17-.02.67.18 1.07.88.88 1.55-.09.33-.3.59-.58.75l-.14.08s-.06.03-.16.03c-.11 0-.26 0-.48-.21-.05-.03-.1-.03-.15.01-.05.05-.1.16-.15.24-.05.08-.11.11-.18.07-.06-.04-.14-.13-.21-.14-.14 0-.27.17-.4.39-.07.11-.15.14-.25-.1-.11-.25-.19-.25-.26-.07-.12.43-.39-.42-.53-.03-.07.15-.15.31-.25.25-.1-.03-.2-.15-.31-.21-.05-.02-.1-.04-.14-.01-.04.04-.08.11-.13.16-.09.05-.19 0-.3-.06-.21-.11-.46-.32-.6.04-.12.46-.33.44-.54.45-.1-.01-.21-.03-.32-.07-.11-.03-.23-.07-.38-.24-.15-.14-.29-.23-.37-.13-.08.11-.12.31-.22.38-.15.18-.31.43-.61.37-.14-.05-.35-.23-.47-.19-.13.01-.21.28-.32.51-.11.21-.24.45-.42.04-.18-.44-.29-.33-.41-.01-.12.34-.24.4-.37.29-.13-.04-.26-.15-.38-.18-.25-.06-.47-.03-.7-.11-.06-.04-.12 0-.17-.14-.03-.06-.05-.15-.073-.18-.03-.04-.06-.03-.084-.02-.06.04-.12.15-.18.2-.05.04-.11 0-.15-.06-.19-.34-.39-.38-.59-.41-.2-.03-.4.03-.587.01-.19-.02-.35-.23-.55 0-.1.09-.19.2-.28.2-.08-.01-.16-.03-.24-.07-.15-.1-.28-.22-.42-.29-.06-.04-.13-.05-.2-.05-.06.01-.14.11-.21.17-.07.07-.13.11-.18.08-.05-.05-.09-.15-.14-.15-.1-.02-.2.08-.28.11-.08.04-.15.04-.2.06-.11.03-.17.03-.17.03-.66-.01-1.18-.56-1.17-1.22.01-.67.56-1.19 1.22-1.18h.07l.14.01zm-5.41 16.82s.196.058.553.2c.178.074.404.142.657.265.256.12.534.277.884.4.174.057.387.022.595.04.204.03.393.14.577.29.186.142.367.32.59.404.224.07.47.13.716.18.5.09 1.048.15 1.618.24.28.05.565.12.844.22.28.09.52.31.773.5.26.2.54.34.87.37.33.03.69.02.98.19.61.26 1.14.77 1.76 1.11.32.16.63.35.97.46.17.06.34.14.52.17.19.03.39.03.58.06.19.02.37.08.52.2.15.13.27.32.42.46.08.06.16.11.25.13.1.01.21-.01.32-.02.22-.03.37.11.55.17.7.32 1.38.71 2.08 1.08.36.16.73.32 1.1.46.38.13.73.33 1.01.69.29.35.63.58 1.09.53.46-.03.78.25 1.1.52.33.28.64.58 1.02.73.36.19.78.25 1.18.38.77.27 1.5.64 2.23 1 .37.17.7.41 1.06.61.36.18.76.27 1.18.33.83.11 1.59.36 2.36.56.76.24 1.51.47 2.09 1.06.61.51 1.41.56 2.15.72.37.07.74.15 1.05.32.15.1.28.24.43.36.15.1.31.17.48.22.34.1.7.14 1.02.27.32.11.57.39.8.67.45.61 1.26.37 1.68.92.22.25.49.38.84.34.35-.05.59.1.82.29.43.39.86.72 1.33.9.24.08.49.11.72.16.23.07.44.15.61.3.17.14.33.29.5.39.17.09.35.15.53.19.77.04 1.3.24 1.66.38.36.13.54.24.54.24.57.34.76 1.08.42 1.65-.29.49-.87.7-1.39.53l-.04-.01s-.19-.06-.54-.23-.85-.41-1.4-.92c-.15-.11-.31-.19-.51-.24-.2-.04-.43-.03-.65-.05-.22-.02-.44-.09-.63-.23s-.37-.33-.59-.45c-.45-.22-.99-.29-1.59-.34-.29-.03-.56-.13-.72-.48-.16-.36-.43-.49-.78-.46-.72.12-.94-.93-1.7-.88-.35-.01-.72-.02-1-.21-.3-.18-.56-.44-.85-.65-.15-.1-.3-.19-.48-.24l-.54-.1c-.34-.12-.65-.33-.95-.55-.62-.42-1.2-.97-2.03-.98-.87.07-1.55-.3-2.26-.65-.35-.18-.68-.41-1.02-.62-.34-.2-.68-.43-.97-.78-.29-.33-.61-.6-1.01-.7-.4-.08-.84-.1-1.23-.22-.79-.21-1.61-.39-2.3-.84-.33-.26-.61-.63-.99-.79-.18-.1-.39-.13-.6-.14l-.68.03c-.23.02-.45.02-.64-.05-.21-.03-.36-.19-.47-.44-.19-.58-.6-.66-1.09-.53-.5.14-.89.03-1.21-.23-.34-.22-.68-.43-1.02-.63-.7-.36-1.43-.63-2.1-1-.16-.11-.35-.14-.47-.34-.06-.09-.12-.21-.19-.28-.08-.07-.16-.1-.26-.12-.19-.03-.4 0-.59-.03-.18-.03-.34-.13-.49-.26-.55-.58-1.21-.87-1.85-1.17-.65-.26-1.29-.49-1.91-.72-.61-.25-1.13-.67-1.78-.67-.32-.03-.64-.02-.92-.12s-.53-.22-.78-.35c-.49-.28-.94-.57-1.38-.8-.22-.12-.44-.2-.66-.27-.22-.07-.46-.04-.68-.04-.22 0-.42-.02-.59-.12-.16-.11-.31-.26-.47-.31-.32-.12-.66-.11-.94-.16-.28-.03-.51-.09-.7-.13-.38-.07-.57-.13-.57-.13-.63-.18-1.01-.84-.83-1.48.18-.64.84-1.02 1.47-.84h.02l.03.01zM629.932 225.475l.125-.366.382-1.09c.18-.48.38-1.07.68-1.74.29-.68.69-1.42 1.05-2.29.18-.44.3-.93.47-1.42.19-.49.47-.96.79-1.43.32-.47.69-.94 1-1.47l.89-1.68c.63-1.16 1.22-2.4 2.11-3.7.47-.63 1-1.28 1.7-1.86.35-.28.74-.54 1.18-.72.45-.2.85-.34 1.42-.44.2-.03.39-.06.58-.11.22-.04.52-.06.78-.08.55-.08 1-.03 1.51-.02 1 .05 2.01.3 2.87.8 1.73.99 2.9 2.56 4.05 4.05.57.75 1.1 1.55 1.64 2.33.51.83 1.09 1.57 1.69 2.32.27.4.55.79.75 1.24.19.45.32.95.5 1.41.1.23.2.45.34.66.14.2.32.39.48.59.34.39.5.87.73 1.32.86 1.83 1.6 3.8 2.05 5.88.13.53.23 1.02.34 1.59.08.5.15 1 .2 1.58.12 1.1.06 2.2-.25 3.26-.32 1.07-.6 2.08-.71 3.2-.08.55-.24 1.09-.51 1.59-.27.49-.54.98-.91 1.41-.71.87-1.51 1.64-2.33 2.36-.85.7-1.73 1.36-2.81 1.79-2.1.82-4.48.72-6.56-.05-1.05-.38-1.99-1.05-2.76-1.83-.8-.78-1.46-1.66-1.95-2.75-.2-.44-.4-1.07-.47-1.62-.1-.57-.11-1.14-.07-1.71.07-1.14.34-2.25.77-3.28.42-1.04 1.01-1.98 1.69-2.83.1-.12.13-.19.29-.36l.27-.27c.17-.18.36-.35.54-.51.39-.33.89-.65 1.31-.97 1.76-1.15 3.43-2.32 5.3-3.13.93-.39 1.88-.73 2.85-.89.99-.1 1.95-.07 2.89-.23 1.87-.25 3.78-.33 5.48.36.43.12.85.26 1.27.35l1.27.25.63.12.15.04.17.05.29.09c.38.13.74.27 1.11.48.74.41 1.47.7 2.25.83.78.14 1.47.49 2.09.89 1.24.81 2.39 1.59 3.51 2.25 1.14.62 2.27 1.12 3.12 1.88.84.75 1.64 1.4 2.44 1.87 1.66.87 2.81 1.76 3.62 2.33.41.28.7.51.9.67l.3.24c.52.41.61 1.17.2 1.69-.4.51-1.14.6-1.65.22l-.02-.02-.31-.23c-.21-.15-.51-.38-.89-.69-.77-.61-1.92-1.48-3.24-2.76-.36-.28-.73-.59-1.17-.85-.44-.25-.92-.48-1.42-.72-.49-.25-.97-.55-1.44-.9-.46-.37-.93-.77-1.46-1.11-1.07-.67-2.31-1.2-3.64-1.62-.66-.25-1.31-.49-1.88-1.02-.29-.24-.59-.48-.94-.62-.33-.15-.71-.2-1.08-.27-.36-.06-.78-.12-1.15-.26l-.29-.11c-.03-.02-.12-.05-.11-.05l-.13-.05-.54-.24c-.71-.36-1.5-.55-2.33-.54-1.65.16-3.26-.19-5-.25-.43.01-.86.03-1.29.1-.43.08-.84.24-1.27.33-.42.11-.85.2-1.29.27-.43.09-.85.22-1.29.3-.87.22-1.73.5-2.56.89-.4.22-.8.44-1.19.68-.36.28-.72.58-1.02.93-.28.36-.55.65-.84 1.05-.15.2-.3.41-.46.6l-.25.28c.01 0-.12.15-.17.22-.55.7-1.03 1.46-1.43 2.25-.4.79-.73 1.62-.88 2.48-.09.43-.1.86-.13 1.29-.01.22 0 .43.01.62-.02.18.03.48.06.73.06.36.15.87.37 1.26.09.21.22.4.38.58.14.18.3.35.48.49.36.3.78.52 1.2.7l.64.27c.23.06.44.13.66.2 1.8.48 3.7.36 5.43-.12.8-.17 1.8-.47 2.52-1.11.35-.32.67-.69.91-1.11.24-.42.43-.866.58-1.32.17-.44.29-.9.48-1.32.13-.44.38-.83.71-1.23.72-.77.83-1.8.62-2.78-.23-.976-.29-1.91-.25-2.82 0-.42-.04-.94-.09-1.456-.05-.4-.12-.925-.22-1.376-.43-1.87-1.17-3.65-1.94-5.39-.19-.45-.44-.85-.55-1.34-.08-.5-.23-.97-.52-1.36-.28-.4-.61-.75-.89-1.14-.27-.39-.48-.82-.69-1.24-.7-1.81-1.63-3.34-2.73-4.72-1.12-1.34-2.37-2.51-3.73-3.26-.68-.37-1.36-.69-2.07-.81-.178-.05-.357-.025-.53-.04-.18-.01-.35-.02-.5.02-.168.04-.3.05-.48.1-.19.066-.37.13-.56.21-2.21 1.21-3.99 3.53-5.44 5.607-.34.53-.69 1.04-.95 1.57-.28.52-.46 1.07-.64 1.59-.19.512-.38 1.002-.62 1.44-.26.43-.53.83-.71 1.242-.36.83-.58 1.61-.79 2.28l-.53 1.69-.41 1.43c-.18.64-.84 1.01-1.477.83-.63-.18-1-.85-.82-1.48.007-.02.01-.04.02-.06v-.01zm376.662 125.528c-.05-.08-.09-.178-.105-.276.01-.08 0-.165-.15-.1-.09.015.06-.258-.03-.253-.06-.03-.15.01-.22.066-.07.046-.11.14-.11.15-.01.065.01-.118-.02-.155-.03-.067-.01.16-.01.168-.02.035-.07-.044-.16-.066-.15-.05-.35-.014-.27.24.02.064.02.11-.04.108-.07-.006-.2-.05-.23-.022-.06.013.1.17.05.18l-.08.094c-.12.125-.29.227-.34.405-.03.087-.04.176-.23.19-.08.003-.17.032-.19.07-.03.04.03.12.07.187.02.03.02.06.01.08l-.02.01h-.01c.01-.09-.05.19.04-.19l-.02.03c-.02.02-.04.05-.07.07-.01-.04-.03-.07-.06-.09-.03-.02-.07-.03-.08-.02-.01.02 0 .04 0 .06.02.03.03.05.08.05.2-.02.31.09.46.18.15.07.26.35.5.13.11-.08.19-.09.28-.14.09-.05.17-.08.25-.1.08-.01.15-.06.22.05.07.09.15.15.22.09.15-.09.13-.49.31-.28.08.05.07-.09.07-.15-.01-.08.12.03.24.08.12.03.02-.12.08-.14.03-.01.14.01.15-.01.03-.02-.06-.11-.1-.15l-.03.5c-.08-.04-.03-.11.01-.18.05-.08.06-.14.07-.2 0-.06-.03-.11-.1-.14-.07-.03-.13-.07-.11-.13.01-.07.07-.15.04-.2-.02-.05-.12-.07-.2-.08-.16-.04-.2-.12-.26-.2l.02.03zm1.33-.882c.082.13.174.24.154.41-.016.09-.043.18.004.23.04.06.175.07.255.11.084.04.074.12.045.21-.035.09-.016.15.04.2.064.05.124.1.22.14.09.04.186.09.12.18l-.04.68c-.118.04-.295.03-.315.09-.036.06.04.19.022.27-.04.17-.41.07-.41.24-.03.08-.01.2-.05.29-.04.08-.11.12-.19.14-.17.04-.36-.02-.46.09-.17.37-.56.08-.79.09-.13-.03-.24.09-.36.24-.13.15-.26.1-.38.12-.13-.02-.25-.06-.36-.13-.11-.06-.23-.11-.3-.29-.08-.15-.15-.29-.28-.24-.14.06-.28.09-.4.08-.25.01-.56-.03-.62-.44-.02-.08-.07-.16-.14-.2-.03-.03-.08-.04-.13-.05-.06-.04-.18-.13-.25-.23-.09-.1-.15-.23-.2-.35-.04-.03-.09-.05-.1-.08-.02-.01-.03-.02-.03-.04l.07-.34h-.01v-.03c0-.03.04-.04.1-.03.12 0 .31.03.31-.02.02-.05-.07-.12-.14-.23-.09-.1-.13-.17-.11-.23.03-.05.09-.08.13-.12.21-.13.29-.35.42-.53l.13-.12c.01-.06.25.03.26-.03.03-.04-.02-.15-.01-.23.01-.07.08-.09.16-.1.34-.02.46-.2.67-.36.08-.09.21-.16.33-.22.14-.03.28-.02.42-.09.13-.09.31-.25.48-.19.16.03.3.14.4.25.11.11.19.23.29.3.09.09.35-.02.41.11 0 .18.11.25.26.31.1.05.18.11.25.18l.02.03zM975.82 242.24c-.05-.08-.09-.178-.104-.276.016-.08.004-.165-.15-.1-.09.015.062-.258-.023-.253-.06-.03-.15.01-.214.07-.07.05-.11.14-.12.15-.01.07.01-.12-.02-.15-.03-.06-.01.16-.01.17-.02.04-.07-.04-.16-.06-.15-.05-.36-.01-.28.24.02.07.02.11-.04.11-.07 0-.2-.05-.23-.02-.06.02.1.17.05.18l-.08.1c-.12.13-.29.23-.33.41-.03.09-.04.18-.23.19-.08 0-.17.03-.19.07-.04.04.03.12.06.19.02.04.02.06.01.08l-.02.02-.01.01h-.01c.02-.08-.04.19.04-.18 0 .01-.01.02-.02.04s-.04.05-.06.07c-.01-.03-.03-.07-.06-.09-.03-.02-.07-.02-.08-.01-.01.02 0 .03 0 .05.02.03.03.06.09.05.2-.01.31.09.46.18.14.07.26.35.5.13.11-.08.19-.09.28-.13.09-.04.17-.08.25-.1.08 0 .15-.06.22.05.07.09.16.15.22.09.16-.09.13-.49.31-.28.09.05.07-.09.07-.15-.01-.08.12.03.25.08.12.03.02-.12.08-.14.03-.01.14.01.15-.01.04-.02-.05-.11-.09-.15l-.03.5c-.08-.04-.03-.11.01-.18.04-.07.05-.14.06-.2 0-.06-.03-.11-.1-.14-.07-.03-.13-.06-.11-.13.02-.06.07-.15.04-.19-.02-.05-.12-.06-.2-.08-.16-.03-.2-.11-.26-.19l.02.03zm1.33-.882c.083.12.175.24.155.407-.016.087-.043.176.004.23.03.055.17.07.25.11.08.04.07.12.04.205-.04.087-.02.15.04.202.06.05.12.1.22.14.09.042.18.085.12.177l-.04.67c-.12.03-.3.02-.32.09-.04.06.04.19.02.26-.03.16-.41.06-.41.23-.03.07-.01.2-.05.28-.04.07-.11.11-.19.13-.17.03-.36-.02-.46.08-.17.36-.56.08-.79.09-.13-.03-.24.09-.36.24s-.26.1-.38.11c-.13-.02-.24-.07-.36-.13-.11-.07-.23-.12-.3-.29-.08-.16-.15-.3-.28-.24-.14.06-.27.09-.4.07-.25.01-.56-.03-.61-.44-.02-.08-.07-.16-.14-.2-.03-.03-.07-.04-.12-.06-.06-.04-.18-.13-.25-.23-.09-.1-.15-.23-.2-.35-.04-.03-.09-.05-.1-.08-.01-.01-.03-.03-.03-.04l.07-.34v-.04c0-.03.04-.04.1-.04.12 0 .31.02.32-.03.02-.05-.07-.12-.14-.23-.09-.1-.12-.17-.11-.23.02-.05.08-.08.12-.12.21-.14.29-.35.42-.54l.13-.12c.01-.07.25.03.26-.03.03-.05-.02-.16-.02-.23s.08-.1.16-.1c.33-.03.46-.21.67-.37.08-.09.21-.17.33-.22.14-.04.28-.02.42-.09.13-.1.31-.26.48-.2.16.03.31.14.41.25.11.11.19.23.29.3.09.09.35-.02.42.11-.01.19.11.25.25.31.1.05.18.11.25.19l.02.02z"/>
30
+ <path fill="#202E78" d="M664.79 242.088s.183.04.497.123c.317.1.73.19 1.248.35.25.09.5.25.77.4.13.09.264.18.4.27.074.03.13.12.176.23.05.11.14.11.21.16.31.16.65.23.95.43.31.2.57.57.92.66.7.21 1.45.2 2.14.21.35-.01.68.03.99.04.16.01.31 0 .45.07.14.06.26.16.38.22.13.06.24.14.36.18.12.04.24.05.35.06.22.02.41.04.57.03.32 0 .51-.03.51-.03.64-.1 1.25.33 1.35.98.11.65-.33 1.26-.97 1.36-.05.01-.1.02-.15.02l-.63.02s-.19.01-.52-.01l-.6-.04c-.23-.02-.5 0-.76-.14-.13-.06-.26-.17-.39-.26-.13-.08-.29-.1-.45-.14l-.99-.24c-.33-.1-.69-.16-1.06-.24l-1.1-.24c-.37-.07-.81.05-1.16-.08-.37-.08-.6-.51-.88-.79-.07-.05-.13-.15-.23-.13-.1.04-.19.04-.26-.03-.15-.09-.27-.23-.39-.35-.24-.26-.51-.4-.86-.28-.32.05-.54-.1-.78-.14-.23-.05-.41-.14-.56-.19-.3-.12-.46-.21-.46-.21-.57-.33-.77-1.06-.44-1.64.26-.46.79-.68 1.28-.58l.14.03z"/>
31
+ <g fill="#7084CB">
32
+ <path d="M1021.695 636.548h-372.23l-2.99-145.493 375.22 4.646"/>
33
+ <path d="M1022.896 637.75l-24.465-.077c-7.75-.054-15.51-.156-23.26-.098l-11.63.138c-3.87.002-7.75-.088-11.63-.128l-11.63-.12c-3.87-.033-7.75.053-11.63.073l-46.53.43c-7.75.025-15.51-.088-23.26-.152-7.75-.145-15.51-.01-23.26.067l-11.63.112-11.63-.086-23.26-.22c-7.75-.11-15.51-.06-23.26-.09l-11.63-.02-11.63.15c-3.88.02-7.75.11-11.63.07l-11.63-.21c-7.75-.31-15.51.29-23.26.09l-46.53-.16-.98-.01-.02-.98-.72-36.38-.07-18.19c-.03-3.03.01-6.07-.13-9.1l-.3-9.09-.29-9.09-.08-9.1-.16-18.19-.09-9.1-.21-9.1L646 491l-.016-.58h.59c7.82.02 15.64.18 23.458.27l23.45.32 23.45.39c7.818.15 15.637.13 23.45.15 7.82.01 15.64-.04 23.46.03l23.454.14 23.45.14c7.82.04 15.64.3 23.45.44l11.73.24c3.91.08 7.82.042 11.73.07l23.46.07c7.816.04 15.635-.036 23.45.19l11.725.264 11.73.064 11.73.07c3.91.04 7.82.02 11.73.17l11.72.332c3.91.11 7.82.28 11.73.28l11.73.095 5.86.04 5.86.15 11.73.28 11.72-.058 1-.008.02 1.04c.06 2.93.11 5.87.06 8.8l-.08 8.8-.13 8.8-.04 8.8-.04 8.8.09 8.8.07 8.8.03 4.4-.04 4.4-.15 17.6c-.01 2.94.06 5.87.08 8.8l.12 8.81.12 8.8.03 8.81.07 18.81zm-2.395-2.397l.02-16.41.01-8.804.09-8.81.08-8.81c.01-2.94.07-5.87.04-8.81l-.25-17.61-.06-4.4.03-4.4.07-8.81.09-8.8-.07-8.81-.07-8.8-.15-8.81-.09-8.8c-.05-2.94-.02-5.87.05-8.8l1.42 1.43c-3.9-.19-7.81-.39-11.72-.47h-11.73l-5.86.01-5.86-.16-11.72-.3c-3.91-.15-7.82-.08-11.72-.09l-11.73.01c-3.91.04-7.82-.09-11.73-.16l-11.72-.26-11.72-.26-11.73-.05c-7.82.03-15.63-.22-23.45-.36l-23.45-.44c-3.91-.05-7.81-.18-11.72-.17l-11.73.03-11.73.03c-3.91 0-7.82.05-11.72-.04l-23.45-.37-23.45-.38c-7.81-.07-15.63-.4-23.45-.59-7.81-.2-15.63-.48-23.45-.45l-23.45-.04-23.45-.16-11.72-.08-5.86-.05-5.86-.15 1.19-1.21.13 18.19.15 9.09.29 9.09.81 18.18.28 9.09c.03 3.03.07 6.06-.02 9.1-.05 3.03-.16 6.07-.11 9.1-.02 3.03.13 6.06.22 9.09l.46 9.08c.14 3.03.32 6.06.42 9.09.06 3.03.17 6.06.19 9.09l.12 9.09.24 18.19-1.34-1.32 46.53.1c7.76-.16 15.51.52 23.26.24l11.63-.15c3.88-.02 7.76.08 11.63.11l11.63.19 11.64.05c7.76.02 15.51.1 23.27.06l23.26-.03 11.63-.02 11.63.04c7.76.01 15.51.05 23.27-.1 7.76-.1 15.51-.22 23.27-.22l46.53.26c3.88.01 7.76.08 11.63.04l11.64-.14c3.88-.04 7.76-.13 11.63-.14l11.63.11c7.76.03 15.51-.1 23.27-.14l22.08-.11z"/>
34
+ </g>
35
+ <g fill="#202E78">
36
+ <path d="M1032.66 538.554l-12.236 3.627-8.34 9.69-12.248-3.58-12.237 3.63-8.38-9.66-12.25-3.59-1.84-12.67-8.37-9.66 5.28-11.65-1.84-12.67 10.72-6.94 5.28-11.65 12.76-.02 10.72-6.94 10.74 6.91 12.76-.02 5.32 11.64 10.74 6.91-1.8 12.68 5.32 11.64-8.34 9.69"/>
37
+ <path d="M1033.73 539.47l-12.977 3.827.55-.355-2.09 2.42-2.135 2.377-2.112 2.39c-.353.4-.677.82-1.016 1.23l-1.008 1.24-.438.54-.736-.19-6.177-1.61-3.08-.81-3.06-.89h.81l-6.11 1.83c-2.03.62-4.08 1.19-6.12 1.78l-.88.25-.58-.69-8.28-9.74.62.4-12.23-3.65-.77-.23-.11-.79c-.59-4.23-1.12-8.46-1.69-12.69l.26.56c-2.75-3.26-5.51-6.5-8.23-9.79l-.38-.46.24-.51c.91-1.93 1.85-3.85 2.74-5.79l2.62-5.83-.06.45-.88-6.34-.85-6.34-.06-.46.38-.24c1.8-1.15 3.61-2.26 5.39-3.43l5.34-3.51-.26.3c.85-1.96 1.76-3.89 2.65-5.82l2.68-5.7.18-.26h.42l6.38-.11c1.06-.01 2.13-.03 3.19-.07l3.19-.13-.4.1c1.76-1.2 3.48-2.47 5.27-3.62l5.34-3.52.51-.34.53.33 10.8 6.82-.57-.17 12.76-.15.75-.01.33.7 2.7 5.8 2.58 5.86-.42-.49 5.32 3.53c.88.6 1.79 1.15 2.69 1.73l2.7 1.71.57.36-.09.68-1.73 12.68-.09-.63c.45.97.86 1.95 1.29 2.93l1.28 2.93 1.28 2.93c.43.98.85 1.96 1.31 2.92l.26.54-.39.46-8.27 9.75.24-.53-1.74 13.45zm-2.132-1.825l1.638-11.94.05-.355.238-.28 8.298-9.725-.196 1.383c-.887-1.94-1.858-3.84-2.782-5.762l-1.386-2.883c-.455-.964-.937-1.916-1.37-2.89l-.19-.427.066-.43 1.922-12.656.63 1.38-5.328-3.52-5.355-3.48-.323-.21-.153-.34-2.63-5.83-2.536-5.876 1.02.654-6.38-.074-6.38.09-.31.004-.29-.18-10.82-6.778 1.37-.002-5.32 3.528c-.88.598-1.77 1.17-2.69 1.72-.9.57-1.84 1.065-2.76 1.604l-.35.204-.27-.018c-1.06-.07-2.13-.103-3.19-.11-1.06-.028-2.13.037-3.19.05l-6.38.156 1.12-.725-2.5 5.892-1.24 2.94c-.4.99-.86 1.95-1.32 2.91l-.19.41-.34.22c-1.8 1.13-3.61 2.24-5.43 3.35-.91.54-1.79 1.14-2.69 1.72l-2.67 1.74.59-1.32c.32 2.11.66 4.21.96 6.33.3 2.11.62 4.22.9 6.33l.06.41-.16.34c-.92 1.92-1.82 3.85-2.71 5.79-.46.96-.85 1.95-1.27 2.93l-1.24 2.95-.21-1.52c.73.77 1.45 1.57 2.14 2.37.72.79 1.38 1.63 2.06 2.44l4.05 4.94.26.31.04.33.36 3.18c.11 1.06.27 2.11.42 3.17l.46 3.16c.17 1.06.27 2.12.4 3.18l-.74-.86 6.07 1.97 3.04.97c1.02.32 2.03.65 3.04.96l.21.06.14.16 4.21 4.81c1.4 1.61 2.83 3.19 4.25 4.78l-.87-.26 12.18-3.82.28-.09.3.09 3.07.87 3.05.94 6.1 1.88-.96.29c.7-.8 1.42-1.59 2.11-2.4l2.03-2.46c1.33-1.67 2.7-3.3 4.09-4.92l.2-.24.31-.1 11.48-3.51z"/>
38
+ </g>
39
+ <path fill="#202E78" d="M704.802 548l4.04-.107c1.316-.034 2.6-.178 3.9-.23 2.61-.185 5.235-.49 7.828-.904 5.192-.83 10.307-2.14 15.264-3.88s9.756-3.93 14.317-6.52c4.56-2.61 8.91-5.57 12.94-8.92 3.98-3.4 8.05-6.97 9.26-11.19l.1-.4.03-.1c.03-.11-.01.09 0 .05l.01-.06.05-.25c.03-.16.07-.36.08-.49l.02-.31c.04-.44.02-1.01-.05-1.51-.15-1.03-.48-2.05-1.01-2.87-.52-.83-1.2-1.48-1.97-1.8-.74-.35-1.66-.44-2.74-.28-1.07.15-2.27.52-3.52.94-1.29.42-2.44.85-3.67 1.33-2.4.98-4.72 2.11-6.97 3.35-2.21 1.29-4.34 2.75-6.11 4.58-.87.91-1.73 1.85-2.47 2.87l-.28.38-.07.09c.06-.09 0 0 0 0l-.03.05-.13.21-.55.84c-.34.56-.59 1.04-.88 1.59-1.1 2.24-1.85 4.67-2.14 7.15-.26 2.47-.12 4.99.61 7.32.2.58.37 1.16.64 1.7.23.57.53 1.09.84 1.61.14.27.32.51.5.75l.5.69.66.76.6.62c1.77 1.69 3.91 3.05 6.26 4.07 2.35 1.02 4.85 1.79 7.44 2.36.66.17 1.3.29 1.94.4.64.11 1.27.25 1.92.34 1.3.17 2.61.37 3.92.44 5.25.46 10.59.11 15.78-.96 5.21-1.01 10.23-2.85 15-5.16 4.75-2.36 9.24-5.24 13.29-8.65 1.04-.83 1.99-1.75 2.97-2.63.94-.94 1.91-1.84 2.78-2.83 1.82-1.92 3.47-3.99 5.01-6.13 3.07-4.29 5.52-9.01 7.27-13.96l1.18 2.02c-1.12-.14-2.25-.03-3.33.35-1.08.37-2.06 1.07-2.93 1.88-.88.81-1.58 1.83-2.15 2.91-.58 1.07-.94 2.25-1.13 3.43-.21 1.18-.16 2.38.09 3.5.08.25.13.61.21.78l.37.98c.28.55.46 1 .82 1.53.62 1.04 1.42 1.98 2.34 2.81.91.83 1.93 1.57 3.04 2.17 1.09.61 2.26 1.12 3.47 1.49 1.2.39 2.45.66 3.7.8.61.09 1.31.1 1.84.13.69-.01 1.41 0 2-.05 1.24-.07 2.56-.24 3.83-.5 2.57-.48 5.13-1.24 7.65-2.18 2.53-.95 5.02-2.05 7.56-3.16 5.05-2.25 10.23-4.65 15.86-6.01 1.41-.34 2.84-.62 4.29-.79 1.43-.18 3.03-.32 4.76.1.43.1.86.26 1.28.46l.08.03.14.07.11.06.23.13c.15.08.41.27.6.41.76.57 1.32 1.22 1.8 1.89.94 1.34 1.52 2.7 2.11 3.9.57 1.21 1.23 2.23 2 3.03.8.85 1.77 1.54 2.85 2.07 2.15 1.06 4.69 1.43 7.15 1.21 2.46-.22 4.89-1.04 6.86-2.41 1.97-1.36 3.42-3.3 3.99-5.52.27-1.07 1.17-1.71 2.24-1.43 1.06.27 1.24 1.36 1.24 2.43l.17.05c-.83 3.2-2.89 5.97-5.52 7.75-2.64 1.81-5.64 2.8-8.74 3.07-3.09.26-6.28-.19-9.2-1.63-1.45-.72-2.8-1.7-3.95-2.91-.28-.31-.56-.6-.83-.98l-.4-.55c-.14-.19-.19-.31-.3-.46l-.28-.44-.12-.21-.07-.13-.14-.26-.51-1c-.63-1.3-1.16-2.5-1.78-3.36-.3-.43-.64-.79-.92-1-.02-.02-.05-.04-.07-.06-.02-.02-.03-.04-.13-.09l-.22-.13-.11-.06-.02-.02.08.04-.03-.02c-.17-.08-.35-.14-.56-.19-.83-.21-1.98-.17-3.27.01-1.28.15-2.56.41-3.83.73-2.54.63-5.05 1.54-7.54 2.58-2.5 1.02-5.02 2.13-7.57 3.265-5.1 2.25-10.4 4.53-16.19 5.55-1.44.28-2.88.45-4.41.522-.79.05-1.46.03-2.16.03-.84-.05-1.54-.07-2.31-.18-1.5-.18-2.97-.52-4.41-1-1.44-.46-2.83-1.08-4.16-1.84-1.33-.747-2.58-1.66-3.72-2.72-1.14-1.05-2.16-2.27-2.97-3.64-.42-.63-.79-1.49-1.11-2.21l-.35-.98-.05-.13-.02-.06-.04-.13v-.04l-.07-.3-.14-.61c-.34-1.62-.38-3.3-.08-4.89.27-1.59.77-3.13 1.54-4.53.76-1.407 1.69-2.73 2.9-3.83 1.2-1.09 2.58-2.067 4.21-2.617 1.61-.56 3.38-.72 5.09-.47l2.39.36-.84 2.3c-1.91 5.27-4.54 10.26-7.83 14.77-1.64 2.26-3.4 4.43-5.33 6.44-.93 1.04-1.96 1.98-2.94 2.96-1.04.92-2.05 1.88-3.14 2.74-4.28 3.55-9.01 6.54-13.99 8.97-2.51 1.2-5.08 2.26-7.7 3.17-2.64.86-5.3 1.68-8.03 2.26-2.72.58-5.48 1.06-8.27 1.27-2.78.25-5.58.33-8.38.17-1.4-.04-2.8-.2-4.2-.34-.7-.07-1.42-.2-2.12-.3l-1.07-.16-.99-.2c-2.72-.49-5.49-1.28-8.18-2.382-2.68-1.13-5.36-2.62-7.58-4.8l-.86-.9-.65-.77-.09-.11-.05-.06-.09-.12-.177-.24-.35-.48c-.23-.32-.46-.64-.64-.99-.4-.68-.78-1.36-1.07-2.08-.34-.71-.56-1.45-.81-2.18-1.66-5.99-.58-12.19 2.11-17.38.35-.64.76-1.35 1.13-1.94l.57-.83.14-.21.11-.16.08-.11.33-.43c.87-1.16 1.87-2.2 2.88-3.21 2.09-1.95 4.317-3.7 6.637-5.307 2.34-1.57 4.9-2.74 7.48-3.76 1.28-.49 2.64-.99 3.91-1.39 1.3-.42 2.66-.86 4.2-1.07 1.51-.23 3.26-.15 4.83.58 1.57.68 2.8 1.9 3.65 3.24.87 1.34 1.35 2.85 1.57 4.38.1.77.14 1.52.07 2.34l-.06.62c-.02.19-.05.34-.08.51l-.04.25-.01.06c0 .01-.03.16-.03.13l-.03.14-.15.55c-.41 1.454-1.07 2.8-1.84 4.04-.8 1.214-1.67 2.35-2.6 3.41-1.88 2.12-3.93 3.91-5.94 5.78-4.14 3.61-8.59 6.89-13.41 9.55-4.79 2.71-9.82 4.98-15.018 6.79-5.19 1.81-10.55 3.15-15.995 4-2.72.44-5.46.68-8.22.858-1.39.046-2.79.11-4.17.13l-4.04-.06c-1.1-.02-1.975-.79-1.96-1.9.02-1.1.915-1.83 2.01-1.83h.02z"/>
40
+ <path fill="#FFF" d="M710.778 578s3.107.217 8.545.274c2.72.028 6.02.155 9.808.194 3.79.05 8.06.103 12.72.21 2.33.047 4.76.117 7.27.167 2.52.077 5.11.167 7.78.25s5.41.17 8.22.255c2.81.074 5.67.385 8.58.386 5.83.157 11.85.25 17.96.466l9.23.375 9.31.3c6.22.122 12.43.134 18.55.206l17.97.154c5.83.042 11.46.083 16.8.12 5.34-.003 10.39.197 15.05.376 4.66.18 8.93.32 12.72.326l9.81.09 8.55.08c.66 0 1.19.73 1.19 1.39 0 .66-.54 1.37-1.2 1.37h-.02s-3.1-.22-8.54-.29c-5.44-.08-13.21-.19-22.52-.44-4.66-.18-9.7-.48-15.04-.53-5.34-.1-10.97-.22-16.8-.32-11.65-.2-24.08-.42-36.5-.63-6.21-.01-12.43-.05-18.55-.12-6.12-.07-12.13-.49-17.95-.76-1.45-.07-2.9-.18-4.33-.16-1.43.02-2.85.05-4.25-.03l-8.21-.34-7.78-.28c-2.51-.06-4.94 0-7.27.02l-3.42.03c-1.11-.02-2.2-.03-3.26-.04l-6.03-.09-9.8-.15c-5.44-.08-8.54-.13-8.54-.13-.66-.01-1.19-.74-1.18-1.4.01-.67.55-1.37 1.21-1.37h.01zm0 16s3.107.217 8.545.274c2.72.028 6.02.155 9.808.194 3.79.05 8.06.103 12.72.21 2.33.047 4.76.117 7.27.167 2.52.077 5.11.167 7.78.25s5.41.17 8.22.255c2.81.074 5.67.385 8.58.386 5.83.157 11.85.25 17.96.466l9.23.375 9.31.3c6.22.122 12.43.134 18.55.206l17.97.154c5.83.042 11.46.083 16.8.12 5.34-.003 10.39.197 15.05.376 4.66.18 8.93.32 12.72.326l9.81.09 8.55.08c.66 0 1.19.73 1.19 1.39 0 .66-.54 1.37-1.2 1.37h-.02s-3.1-.22-8.54-.29c-5.44-.08-13.21-.19-22.52-.44-4.66-.18-9.7-.48-15.04-.53-5.34-.1-10.97-.22-16.8-.32-11.65-.2-24.08-.42-36.5-.63-6.21-.01-12.43-.05-18.55-.12-6.12-.07-12.13-.49-17.95-.76-1.45-.07-2.9-.18-4.33-.16-1.43.02-2.85.05-4.25-.03l-8.21-.34-7.78-.28c-2.51-.06-4.94 0-7.27.02l-3.42.03c-1.11-.02-2.2-.03-3.26-.04l-6.03-.09-9.8-.15c-5.44-.08-8.54-.13-8.54-.13-.66-.01-1.19-.74-1.18-1.4.01-.67.55-1.37 1.21-1.37h.01zm41.875 22s1.8-.028 4.947 0c1.574.012 3.486.007 5.678.026 2.192.03 4.667.002 7.364.084 1.35.033 2.754.062 4.208.097 1.453.063 2.956.125 4.5.192l4.755.2c.81.02 1.63.1 2.456.2.83.09 1.67.09 2.51.12 3.37.12 6.86.18 10.4.36l5.34.32 2.69.16 2.7.09c3.6.07 7.2.06 10.74.09l10.41.06 9.73.03c3.1-.04 6.02.14 8.71.29 2.7.15 5.17.27 7.36.26 2.2.02 4.11.04 5.68.06l3.66.01 1.29-.01c.66-.01 1.2.49 1.2 1.15 0 .66-.53 1.16-1.19 1.16h-.06s-1.8.02-4.94-.01c-3.15-.05-7.65-.01-13.04-.21-2.69-.16-5.61-.37-8.71-.39-3.09-.07-6.35-.13-9.72-.2l-10.4-.22c-3.54-.06-7.14-.17-10.73-.2l-5.39.02c-1.79.02-3.58.03-5.35-.02-3.54-.05-7.01-.44-10.38-.69-.84-.05-1.68-.14-2.51-.11-.83.05-1.65.06-2.46-.01l-4.75-.29c-3.09-.22-6.01-.33-8.71-.15-2.7.1-5.17-.02-7.37-.02-2.19-.03-4.1-.06-5.68-.08l-4.94-.12c-.66-.01-1.18-.52-1.17-1.18.02-.66.55-1.13 1.2-1.13h.02z"/>
41
+ <g fill="#202E78">
42
+ <path d="M975.917 258.33c-7.246-1.613-11.817-14.218-11.817-14.218s-3.774 13.01-11.628 13c5.315 2 11.058 9.28 12.753 19.268-.578-7.436 3.905-15.004 10.692-18.05z"/>
43
+ <path d="M973.156 258.573l-.02-.01c-.458-.2-.797-.458-1.167-.702-.37-.24-.74-.49-1.06-.78-.33-.28-.68-.55-.98-.85l-.9-.91c-.29-.31-.55-.64-.83-.96-.29-.31-.53-.65-.78-.99-.52-.66-.98-1.35-1.42-2.06-.43-.71-.84-1.43-1.22-2.16-.38-.73-.76-1.46-1.08-2.22-.32-.76-.62-1.5-.91-2.33l2.59-.08c-.14.43-.28.79-.42 1.17-.15.38-.3.75-.46 1.12-.16.37-.32.74-.49 1.1-.18.36-.34.73-.54 1.08-.19.36-.45.68-.67 1.02-.22.34-.42.69-.62 1.04-.42.69-.86 1.37-1.35 2.02-.98 1.3-2.11 2.53-3.53 3.48-.35.25-.74.43-1.12.62-.4.17-.8.33-1.21.44-.42.12-.84.22-1.27.26-.43.06-.86.05-1.28.05l.26-1.47c.47.25.97.45 1.41.74.45.27.88.57 1.31.87.44.29.82.64 1.23.96l1.16 1.03 1.08 1.1c.33.39.68.77 1 1.17.31.41.63.81.93 1.23l.87 1.28.81 1.32.74 1.36.67 1.39c.22.47.39.95.6 1.43.2.48.36.97.53 1.46.17.48.33.97.47 1.47.13.5.3.99.4 1.5l.34 1.51-2.17.27-.09-1.49.03-1.49.14-1.48c.08-.49.18-.97.29-1.46.13-.48.29-.95.44-1.42l.57-1.36.67-1.31.75-1.26.81-1.22c.3-.38.58-.78.87-1.18l.94-1.12 1.03-1.05 1.1-.98 1.18-.88.28-.18zm5.832-.507l-3.724 1.96-1.09.694-1.03.78-.966.856-.9.93-.83.992-.76 1.046-.698 1.09c-.42.753-.812 1.518-1.212 2.29l-.518 1.193c-.14.41-.297.817-.422 1.234-.097.43-.2.85-.283 1.28l-.158 1.3-.055 1.3.052 1.3-2.326.29-.288-1.42c-.083-.48-.233-.94-.346-1.41-.112-.47-.252-.93-.405-1.39-.15-.46-.29-.92-.47-1.37-.18-.45-.33-.91-.53-1.35l-.59-1.31-.66-1.28-.72-1.24c-.51-.81-1.05-1.6-1.64-2.35-.3-.37-.61-.72-.91-1.09l-.98-1.02c-.36-.3-.68-.64-1.06-.92-.38-.27-.73-.57-1.13-.79l-.58-.36-.61-.29c-.4-.22-.82-.32-1.22-.49l-5.07-2.15 5.58-.66c.3-.04.61-.05.9-.13.29-.05.58-.16.87-.25.29-.1.57-.23.85-.37.28-.15.54-.32.82-.49.28-.16.54-.37.81-.57.26-.21.52-.43.79-.66.52-.46 1.02-.96 1.51-1.5s.92-1.14 1.34-1.75c.21-.31.41-.62.57-.96.15-.34.26-.71.42-1.04.15-.34.35-.66.51-1l.49-1.02c.31-.67.61-1.39.86-2.06l.97-2.6.74 2.55c.21.72.51 1.46.81 2.18.3.73.67 1.42 1.09 2.08.41.67.89 1.29 1.3 1.94.45.63.84 1.29 1.32 1.89.22.31.45.62.7.9.25.29.48.59.73.87l.78.81c.26.27.56.48.83.73.27.25.57.45.87.65.3.2.59.43.87.55.3.14.51.32.89.45l3.84 1.25z"/>
44
+ </g>
45
+ <path fill="#202E78" d="M993.556 250.046l-2.235.885c-.11.06-.16.12-.24.17-.07.03-.18.15-.26.22-.09.07-.18.17-.27.26-.35.37-.67.82-.95 1.3-.27.49-.55.99-.79 1.51l-.36.79c-.12.26-.24.54-.34.78l-1.06 2.69-.66-2.71c-.04-.17-.12-.41-.2-.61-.08-.21-.16-.42-.26-.62-.11-.19-.16-.43-.24-.64-.1-.2-.25-.37-.38-.55-.28-.33-.59-.62-.94-.83-.18-.08-.35-.18-.54-.22-.18-.07-.38-.09-.58-.13l-1.57-.35 1.24-.77c.3-.18.63-.38.92-.65.3-.25.57-.56.81-.89.48-.65.83-1.4 1.16-2.15.61-1.52.98-3.13 1.15-4.74l1.44.16c0 .32.02.65.06.96.04.32.12.63.18.95.08.31.12.63.21.95.08.32.19.63.32.93.26.61.69 1.12 1.15 1.57.23.22.48.42.74.6s.54.32.83.44l1.72.76zm-3.686-.1c-.897-.678-1.64-1.542-2.17-2.518-.185-.355-.328-.73-.426-1.117-.11-.38-.166-.77-.243-1.16-.05-.39-.13-.77-.16-1.17-.03-.39-.03-.79-.01-1.19l1.56.18c-.26 1.74-.75 3.44-1.48 5.05-.18.4-.38.8-.59 1.19-.21.39-.46.77-.69 1.16-.25.38-.5.77-.8 1.14-.29.37-.63.74-1.07 1.04l-.56-1.88c.34.03.68.02 1 .14.33.09.63.25.91.41.26.2.51.4.71.63.22.22.38.47.55.7.18.23.3.49.46.71.17.22.38.42.47.68.12.25.22.5.3.76.09.27.15.51.22.8l-1.15-.01c.27-.6.55-1.14.74-1.75.1-.3.19-.61.32-.9.14-.29.3-.57.47-.84.34-.55.72-1.1 1.22-1.59.12-.12.24-.25.39-.36l.08-.07z"/>
46
+ <path fill="#3E4166" d="M559.966 777.242c.908.534 1.813 1.07 2.716 1.602 2.497 1.474 5.084 2.97 7.955 3.36 15.12 2.038 8.027-23.758 13.968-31.062 5.813-7.147 20.534-8.386 28.793-10.523 3.35-.87 7.036-1.71 10.157-.21.895.43 1.67 1.03 2.32 1.75 1.955 2.16 2.805 5.39 2.496 8.36-.41 3.96-2.46 7.54-4.64 10.88-5.49 8.44-12.01 15.87-19.49 22.57-4.33 3.88-6.88 9.19-9.57 14.25-5.04 9.45-14.75 15.53-22.59 22.52-2.46 2.19-4.94 4.39-7.71 6.16-2.1 1.34-4.36 2.41-6.61 3.47-25.72 12.03-56.08 17.99-83.07 6.01-3.64-1.62-7.17-3.53-10.29-6-4.41-3.5-7.88-8.04-11.13-12.65-1.52-2.16-3.01-4.38-3.9-6.86-1.53-4.29-1.11-9.09.28-13.42 1.4-4.36 3.61-8.42 6.32-12.02 2.19-2.91 3.95-6.56 6.74-8.99 3.32-2.9 7.38-4.78 11.41-6.55 13.44-5.87 27.81-10.87 42.43-9.79 15.67 1.15 29.84 9.11 43.46 17.12z"/>
47
+ <path fill="#323556" d="M585.14 788.51c3.685-1.016 7.902-1.58 10.268-4.592 1.483-1.888 1.906-4.37 2.654-6.653 3.063-9.358 11.67-15.58 19.77-21.144 1.718-1.17 3.724-2.41 5.74-1.9 6.136 1.56-8.056 17.41-9.634 19.2-2.378 2.7-4.778 5.66-7.534 7.99-6.598 5.59-9.412 16.01-13.926 23.34-5.53 8.98-12.078 19.34-23.496 19.96-1.713.1-9.53-.79-10.032-2.44-.29-.95-.077-1.98-.04-2.98.092-2.37-.823-4.72-.512-7.08.25-1.9 1.277-3.6 2.28-5.23 2.858-4.66 6.455-8.49 10.903-11.73 1.11-.8 13.57-6.87 13.56-6.73zm-150.487 32.614c-.136 2.33-.493 4.646-1.065 6.907-.175.7-.373 1.39-.725 2.01-.747 1.32-2.093 2.15-3.384 2.94-3.52 2.13-7.67 3.09-11.78 2.47-.69-.1-1.42-.25-2.05.05-2.85 1.32 2.48 6.22 3.48 7.16 11.7 11.06 33.73-.27 40.96-10.69m61.91-5.53c-4.49 5.3-12.82 18.07-23.29 27.5-2.48 2.24-7.05 5.38-6.26 9.24.51 2.51 2.38 4.53 3.11 6.99.18.61.31 1.29.04 1.86-.51 1.1-2.09 1.19-3.56 1.27 0 0-9.73.86-13.64-1.45-3.65-2.15-6.62-5.7-7.3-9.92-.51-3.2.13-6.47.1-9.72-.07-6.39-2.75-12.43-5.38-18.25m59.73 1.02c11.71 8.17-.17 19.58 10.97 32.1 1.63 1.84 5.15 4.39 7.61 4.41h11.53c.9.01 1.63-.72 1.62-1.62 0-1.4-.71-4.51-2.83-5.95-3.4-2.32-4.02-4.29-1.52-7.71 6.66-9.1 14.05-17.81 20.99-26.77"/>
48
+ <path fill="#5053AB" d="M579.847 793.203c-1.498 5.04 1.712 11.09 4.802 14.894 3.25 4.01 7.77 6.097 2.33 11.155-6.98 6.478-39.82 23.155-61.87 25.924-60.5 7.597-79.29-19.104-79.35-19.08"/>
49
+ <path fill="#3E4166" d="M502.94 819.13c-10.307 10.915-20.558 22.054-32.333 31.556-2.32 1.872-4.738 3.76-6.225 6.348-1.487 2.587-1.815 6.098.045 8.43 3.64 4.564.836 6.782-4.04 7.2-5.632.485-11.75.2-15.8-4.247-3.455-3.794-4.437-9.062-5.586-13.895-1.21-5.093 1.16-7.51 3.48-11.55 2.21-3.865 3.63-8.163 4.44-12.53 1.15-6.124 1.15-12.405.84-18.627"/>
50
+ <path fill="#323556" d="M503.1 819.19c-10.307 10.915-20.56 22.054-32.333 31.556-2.32 1.872-4.738 3.76-6.225 6.348-1.487 2.587-2.126 5.8-.266 8.133.875 1.097 2.426 3.108 1.448 5.187-.672 1.43-2.976 1.64-4.715.586-1.55-.935-2.29-2.6-3.51-3.926-.97-1.046-2.1-1.91-3.26-2.72-.83-.572-1.65-.99-2.3-1.773-.58-.7-1.07-1.6-.75-2.53.36-1.05 1.5-1.7 2.42-2.19 1.32-.7 2.73-1.22 4.11-1.78 1.67-.68 5.51-1.92 5.15-4.36-.28-1.89-2.48-2.96-3-4.8-.96-3.44 4.3-5.76 4.47-9.33.15-3.21-3.45-8.14-4.73-11.12-1.98-4.58-3.62-9.32-4.91-14.14-.14-.51-.27-1.1.02-1.55.43-.68 1.44-.57 2.23-.38 1.93.48 3.87.99 5.81 1.5 6.74 1.8 14.27 5.16 21.28 5.12 2.76-.01 4.04-.51 6.06 2.09 1.56 2 2.24 4.75 1.94 7.25"/>
51
+ <path fill="#3E4166" d="M526.978 817.76c3.376 2.276 4.37 5.968 7.022 8.887 3.24 3.566 7.374 6.803 11.637 9.025 9.2 4.796 20.115 4.713 30.44 3.75 3.312-.31 6.685-.694 9.94.005 3.235.695 5.757 2.46 7.316 5.353 1.162 2.156.71 4.696 4.097 4.715 2.205.012 4.206-1.443 5.463-3.26 4.05-5.853 1.515-13.768-3.126-18.524-4.557-4.67-11.545-4.44-16.758-7.99-3.35-2.28-5.49-5.92-7.25-9.57-2.16-4.47-3.93-9.38-3.32-14.32"/>
52
+ <path fill="#323556" d="M558.69 806.63c-4.387-1.2-11.322-4.72-15.867-4.22-4.037.446-7.782 6.16-10.836 8.648-1.324 1.078-2.732 2.177-3.43 3.737-4.296 9.593 13.766 20.288 20.57 22.768 9.732 3.548 18.724 2.6 28.934 1.752 2.96-.245 6.03-.29 8.91.54 3.18.92 5.36 2.704 6.58 5.796.48 1.23.9 2.62 2.01 3.32 1.56.98 3.23.09 3.81-1.45.51-1.33.22-2.82-.22-4.18-1.85-5.7-5.9-8.98-11.33-11.15-3.82-1.52-7.95-2.13-11.8-3.58-2.87-1.07-7.07-3.21-8.22-6.33-1.05-2.85.68-6.12-.02-9.12-.89-3.82-5.29-5.48-9.07-6.51z"/>
53
+ <path fill="#7581CE" d="M464.42 748.79c-6.644 5.62-12.27 12.4-16.42 20.002-3.9 7.15-6.64 14.887-8.745 22.707-.914 3.39-2.136 7.02-2.603 10.48-.483 3.57.25 6.73-2.597 9.65-.534.55-1.148 1.02-1.633 1.61-5.057 6.17 1.977 12.97 7.17 15.67 24.172 12.54 57.517 9.19 82.922 2.88 30.017-7.46 66.96-22.26 58.54-60.6-.223-1.01-.5-2.06-1.177-2.84-.903-1.05-2.326-1.42-3.59-1.97-4.13-1.8-6.034-6.09-8.79-9.34-3.61-4.26-7.936-8.26-12.086-11.98-25.33-22.73-65.81-17.59-90.99 3.72z"/>
54
+ <path fill="#5053AB" d="M545.095 803.4l1.628-.843c1.035-.554 2.56-1.4 4.406-2.606 1.8-1.25 4.12-2.66 6.21-4.91 1.05-1.1 2.11-2.33 3.08-3.73.99-1.37 1.95-2.88 2.73-4.55 1.56-3.31 2.5-7.36 2.07-11.58-.41-4.18-2.32-8.52-5.99-11.35-1.81-1.44-3.95-2.55-6.15-3.61-1.11-.52-2.22-1.02-3.37-1.36-1.16-.31-2.36-.46-3.51-.29-2.34.29-4.27 2.03-6.21 3.66-.96.83-1.92 1.66-2.83 2.55-.9.9-1.77 1.82-2.59 2.78-1.65 1.92-3.19 3.95-4.35 6.18-1.17 2.22-2.05 4.61-2.22 7.08-.12 1.23-.1 2.45-.02 3.66s.29 2.4.64 3.54c.33 1.14.78 2.24 1.39 3.23.58 1.01 1.29 1.92 2.12 2.69 1.6 1.58 3.73 2.62 5.75 2.33.96-.13 1.95-.57 2.85-1.12.91-.55 1.82-1.19 2.63-1.84 3.34-2.66 5.55-6.26 6.7-9.78.07-.21.15-.45.2-.64.06-.22.14-.47.17-.67.08-.4.15-.84.19-1.27.06-.85.07-1.69-.06-2.48-.24-1.57-1.06-2.93-2.33-3.32-1.25-.42-2.58.06-3.58.74-1.02.69-1.8 1.62-2.37 2.48-1.16 1.78-1.55 3.44-1.71 4.54-.08.56-.1.99-.11 1.28 0 .29-.01.44-.01.44l-1.57.01.01-.5c.01-.33.04-.82.13-1.46.19-1.26.66-3.14 2-5.14.33-.49.74-1.01 1.17-1.49.46-.49.99-.97 1.62-1.39.62-.41 1.34-.78 2.17-.98.41-.1.85-.16 1.31-.15.22 0 .48.03.73.07l.29.07.07.02.08.02.04.01.17.06c.9.29 1.78.89 2.37 1.71.6.81.96 1.75 1.16 2.71.19.97.26 1.96.15 2.96-.05.5-.13.99-.25 1.53-.06.28-.13.47-.19.71-.08.29-.16.49-.25.74-1.31 3.8-3.79 7.54-7.29 10.47-.9.74-1.8 1.42-2.84 2.01-1.05.59-2.2 1.08-3.53 1.23-1.27.14-2.62-.13-3.76-.67-1.16-.51-2.26-1.25-3.15-2.13-.94-.86-1.74-1.88-2.39-2.99-.68-1.1-1.18-2.31-1.55-3.55-.38-1.24-.61-2.54-.7-3.84-.12-1.3-.06-2.63.21-3.92.52-2.57 1.21-5.14 2.4-7.49 1.17-2.36 2.62-4.6 4.37-6.55.88-.97 1.81-1.9 2.76-2.78.95-.89 1.87-1.78 2.85-2.64.95-.83 1.92-1.71 3.04-2.47 1.1-.75 2.42-1.41 3.85-1.56 1.41-.16 2.79.05 4.06.4 1.28.32 2.5.77 3.64 1.26.57.24 1.15.49 1.72.75.56.28 1.1.59 1.65.91 1.08.63 2.13 1.33 3.09 2.13.98.79 1.82 1.71 2.64 2.63.4.48.74.99 1.11 1.48.31.52.63 1.04.88 1.59 1.02 2.19 1.57 4.5 1.76 6.74.45 4.5-.36 8.82-1.98 12.42-.81 1.81-1.81 3.42-2.88 4.86-1.1 1.42-2.28 2.64-3.43 3.73-1.16 1.09-2.29 2.05-3.34 2.94-1.05.88-2.08 1.61-3.03 2.24-1.89 1.27-3.44 2.15-4.51 2.73l-1.63.87-.72-1.4zm-34.723-34.32c1.383-.298 2.7-.625 4.03-1.028 1.308-.432 2.642-.796 3.88-1.388 1.217-.635 2.372-1.365 3.43-2.2 1.095-.775 2.113-1.653 3.004-2.647.903-.97 1.656-2.042 2.29-3.23.626-1.175 1.098-2.437 1.37-3.734.282-1.296.342-2.625.184-3.91-.177-1.295-.595-2.497-1.41-3.58-.747-1.002-1.762-1.853-2.974-2.394-1.204-.57-2.57-.73-3.916-.78-1.354-.06-2.727.08-4.078.34-1.357.24-2.676.68-3.95 1.21-1.263.55-2.545 1.12-3.77 1.78-1.22.67-2.447 1.34-3.577 2.16-1.122.83-2.183 1.74-3.277 2.59-1.076.88-2.114 1.81-3.112 2.77l.212-.47c-.033 1.25.417 2.48 1.228 3.43.815.95 1.928 1.66 3.124 2.01l.433.13.51.11c.297.06.616.11.946.14.65.06 1.32.06 1.99.02 1.35-.09 2.69-.43 4.05-.76 1.36-.34 2.7-.71 3.92-1.18.6-.24 1.19-.57 1.67-.93.54-.41.91-.88 1.22-1.44.3-.56.5-1.16.51-1.75.01-.29-.03-.57-.11-.84-.02-.04-.06-.17-.05-.15l-.12-.24c-.07-.08-.1-.14-.2-.24-.33-.35-.87-.54-1.36-.49-.5.03-.88.3-1.1.68l-1.36-.77c.47-.86 1.44-1.44 2.38-1.46.93-.05 1.87.29 2.54 1.01.16.15.33.42.46.65l.11.24c.09.2.08.24.12.37.12.44.16.88.14 1.32-.05.87-.32 1.66-.71 2.38-.2.35-.42.69-.67 1.01-.24.29-.58.67-.82.88-.63.57-1.29.98-1.99 1.32-.7.35-1.42.58-2.13.76-.71.19-1.39.34-2.09.51-1.4.31-2.83.56-4.31.69-.74.06-1.49.08-2.25.02-.37-.03-.76-.08-1.16-.15l-.53-.11c-.23-.05-.39-.11-.59-.16-1.48-.53-2.8-1.46-3.76-2.7-.48-.62-.9-1.29-1.17-2.05-.27-.75-.4-1.56-.39-2.36l.01-.3.23-.24c1.02-1.01 2.09-1.97 3.19-2.88.56-.45 1.09-.93 1.7-1.32.59-.41 1.25-.71 1.86-1.09 1.21-.76 2.38-1.57 3.6-2.33.61-.37 1.24-.73 1.88-1.08.6-.34 1.28-.68 1.95-.94 1.38-.48 2.8-.83 4.22-1.18s2.89-.52 4.39-.47c1.49.04 2.97.4 4.43.89.36.13.73.26 1.07.46.34.18.71.34 1.01.6.64.42 1.22 1.14 1.66 1.74l.28.44.14.22.07.11c.09.14.06.11.09.18.15.36.34.7.45 1.07.24.74.44 1.47.56 2.22.29 1.5.03 3.02-.3 4.44-.08.36-.18.71-.3 1.06-.11.35-.23.69-.37 1.02-.24.68-.52 1.36-.84 2-.66 1.29-1.43 2.55-2.38 3.66-.94 1.11-2.04 2.09-3.22 2.94-1.22.8-2.51 1.47-3.83 2.03-1.3.6-2.61 1.21-3.99 1.62-1.35.44-2.76.81-4.12 1.13l-.34-1.54zm-6.812 39.66l1.246.065c.734-.03 1.873-.03 3.288-.37 1.376-.38 3.163-.782 4.787-2.03.84-.574 1.62-1.314 2.37-2.14.78-.804 1.48-1.75 2.06-2.808 1.17-2.066 1.78-4.804 1.62-7.655-.08-1.444-.3-2.892-.68-4.382-.38-1.452-.89-2.924-1.68-4.253-.77-1.338-1.82-2.53-3.12-3.43-.26-.2-.7-.452-1.03-.616-.34-.17-.7-.33-1.08-.47-.77-.24-1.57-.4-2.39-.47-3.27-.27-6.72.51-9.57 2.45-2.87 1.82-5.49 4.15-7.72 6.73-1 1.31-2 2.66-2.53 4.14-.55 1.46-.52 3.02.44 3.99.89 1.03 2.42 1.34 3.9 1.44l1.14.07 1.13.03c.75.02 1.49.03 2.22.01 2.91-.05 5.71-.6 8.05-1.43 1.16-.42 2.15-1.02 2.91-1.73.71-.7 1.17-1.66 1.18-2.55.01-.44-.09-.86-.26-1.21-.08-.17-.2-.35-.31-.47l-.23-.26-.19-.15c-.58-.44-1.32-.62-1.99-.68-1.38-.09-2.52.18-3.28.35-.76.18-1.16.31-1.16.31l-.42-1.51s.43-.13 1.26-.32c.83-.16 2.06-.46 3.76-.32.84.1 1.84.31 2.77 1.05l.36.32.24.27c.23.26.38.5.53.79.29.57.43 1.23.42 1.88 0 1.31-.46 2.65-1.44 3.72-.93 1.06-2.23 1.72-3.54 2.18-1.33.47-2.69.73-4.12.97-1.43.22-2.91.41-4.44.47-1.53.08-3.12.02-4.71-.19-.81-.1-1.65-.24-2.48-.55-.42-.14-.84-.31-1.25-.55-.19-.11-.41-.26-.6-.42-.15-.11-.35-.31-.5-.48-.66-.69-1.1-1.68-1.17-2.66-.08-.99.12-1.94.43-2.81.31-.87.74-1.67 1.23-2.43.48-.76 1.04-1.46 1.74-2.07.65-.56 1.31-1.17 1.89-1.8l1.85-1.88c1.27-1.22 2.6-2.45 4.16-3.4.77-.45 1.66-.87 2.44-1.19.87-.37 1.71-.68 2.59-.93 1.76-.51 3.61-.7 5.43-.5.91.12 1.81.31 2.68.59.43.14.87.27 1.32.47.47.21.73.32 1.22.6.8.46 1.51 1.07 2.09 1.76.59.68 1.1 1.41 1.51 2.18.78 1.55 1.49 3.07 1.84 4.68.33 1.57.53 3.17.57 4.7.16 3.07-.28 6.05-1.57 8.51-.64 1.22-1.41 2.31-2.29 3.18-.91.86-1.83 1.6-2.79 2.16-.94.58-1.86 1.04-2.72 1.47-.86.41-1.71.66-2.48.86-1.54.4-2.81.43-3.7.47l-1.25-.04.08-1.57zm31.933 1.776l-2.595 1.042c-.416.16-.86.367-1.384.513-.53.14-1.074.35-1.638.63l-1.82.85c-.653.26-1.348.5-2.084.73-1.463.48-3.08.88-4.785 1.32-1.694.48-3.513.86-5.393 1.24-.946.16-1.9.36-2.88.49-.488.08-.977.16-1.472.22l-1.475.28c-1.972.4-4.024.47-6.024.89-2.023.28-4.063.36-6.047.7-.99.22-1.983.3-2.964.39l-2.906.25c-1.912.07-3.756.37-5.515.24-1.75-.08-3.41-.01-4.94-.02-1.53.07-2.93-.13-4.17-.21l-3.22-.07-2.8-.06.11-1.57 2.78.13c.89.05 1.96.08 3.2.1 1.24-.01 2.63-.13 4.14-.03l2.37.11c.82.03 1.67.01 2.53.02 1.74-.03 3.58.18 5.47-.06l2.88-.28c.98-.04 1.95-.3 2.95-.2 2.02.14 3.97-.68 5.97-.85 2.03-.06 4-.56 5.97-.85.5-.06.99-.13 1.47-.21.49-.09.95-.25 1.42-.4.93-.29 1.9-.35 2.85-.47.96-.07 1.83-.43 2.74-.55.9-.15 1.8-.25 2.64-.48.84-.23 1.65-.48 2.43-.73.78-.26 1.51-.56 2.22-.82 1.42-.55 2.74-.96 3.92-1.33 1.19-.32 2.12-.91 2.95-1.22l2.57-1.12.59 1.46z"/>
55
+ <path fill="none" d="M588.29 778.807l.314-.316"/>
56
+ <path fill="#FFF" d="M1001.472 492.84l.03-.07c.027-.103.13-.356.204-.493.066-.152.164-.374.262-.66.106-.284.2-.633.277-1.016.072-.38.073-.79.05-1.15-.036-.36-.09-.62-.283-.91-.034-.07-.09-.15-.172-.22-.078-.07-.122-.17-.242-.23-.11-.06-.198-.16-.284-.31l-.017-.02-.01-.01c-.07-.02.09.03.07.02h-.007l-.06-.03c-.04-.03-.083-.04-.127-.06l-.26-.1-.26-.1-.18-.02c-.124 0-.233-.06-.375-.04-.28-.03-.532.04-.81.06-.513.09-1.213.32-1.568.94-.336.6-.52 1.31-.536 2.01-.003.71.113 1.39.31 2.01l.173.45.042.11-.06-.15.01.02.01.03.03.06c.04.07.1.19.13.2-.02-.16.13.04.37.09.09.05.22.07.33.1.11.04.23.07.35.11.23.1.48.18.71.25.24.07.47.11.7.12.21 0 .43-.04.58-.11.36-.1.54-.26.58-.35.01-.04.03-.06 0-.07-.01 0 0 0-.03-.02s-.01-.02-.01-.02l.03-.33zm2.36.213s.007.188-.028.55c-.02.335-.235.948-.69 1.403-.447.45-1.058.78-1.674.938-.627.176-1.316.28-2.035.147-.36-.06-.718-.19-1.085-.34-.185-.06-.373-.12-.568-.2-.196-.07-.393-.14-.6-.25-.2-.09-.41-.21-.62-.38-.18-.1-.498-.44-.702-.76-.08-.13-.09-.17-.138-.27l-.03-.06-.014-.03-.007-.01c-.12-.34-.03-.1-.06-.18v-.01l-.03-.15c-.05-.2-.1-.41-.14-.62-.14-.85-.21-1.74-.12-2.65.08-.91.36-1.85.85-2.74.25-.45.54-.9.91-1.32.39-.41.87-.78 1.42-.97.56-.2 1.15-.25 1.68-.12.26.03.54.15.8.24l.38.15.25.14.25.14c.04.03.09.05.13.06.02.01.05.01.07.02h.01l.08.03h.02l.04.01c.23.03.46.1.63.25.19.11.37.29.53.45.17.16.31.34.43.55.51.77.73 1.57 1.01 2.3.1.36.12.74.07 1.06-.03.33-.1.62-.15.91-.13.54-.29 1-.45 1.35-.15.36-.29.63-.38.82-.01.04.03-.09.02-.11l-.03.07.03-.33zm-3.356 38.787l.03-.07c.027-.103.132-.356.204-.493.066-.152.164-.374.262-.66.106-.284.2-.633.277-1.016.07-.38.07-.79.04-1.15-.04-.36-.09-.62-.28-.91-.04-.07-.09-.15-.17-.22-.08-.07-.12-.17-.24-.23-.11-.06-.2-.16-.29-.31l-.02-.02-.01-.01c-.07-.02.09.03.07.02h-.01l-.06-.03c-.04-.02-.09-.04-.13-.06l-.26-.1-.26-.09-.18-.02c-.13 0-.24-.06-.38-.04-.28-.03-.53.04-.81.06-.52.09-1.22.32-1.57.94-.34.6-.52 1.31-.54 2.01-.01.7.11 1.39.31 2.01l.17.45.04.11-.06-.15.01.02.01.03.03.06c.04.07.1.19.13.2-.02-.17.13.04.37.08.09.05.22.07.33.1.11.04.23.07.35.11.22.1.47.18.71.25s.47.1.7.12c.21 0 .43-.04.59-.11.35-.1.53-.26.58-.35.01-.04.03-.06 0-.07-.01 0 0 0-.03-.02-.02-.02-.01-.03-.01-.03l.03-.33zm2.36.213s.007.188-.028.55c-.02.335-.235.948-.69 1.403-.447.45-1.058.78-1.674.938-.627.176-1.316.28-2.035.147-.37-.06-.72-.19-1.09-.34-.19-.06-.38-.12-.57-.2-.2-.07-.4-.14-.6-.25-.2-.09-.41-.21-.62-.38-.18-.1-.5-.44-.7-.76-.08-.13-.09-.17-.14-.27l-.03-.06-.02-.03-.01-.01c-.13-.34-.04-.1-.07-.18l-.01-.01-.04-.15-.15-.62c-.14-.85-.22-1.74-.13-2.65.08-.91.36-1.85.85-2.74.25-.45.54-.9.91-1.32.38-.41.86-.78 1.42-.97.55-.2 1.14-.25 1.67-.12.26.03.54.15.79.24l.37.15.25.14.24.14c.04.03.08.05.13.06.02.01.04.01.07.02h.01l.08.03h.02l.04.01c.23.03.45.1.63.25.19.11.37.29.53.45.17.16.31.34.43.55.5.77.72 1.57 1 2.3.1.36.12.74.07 1.06-.03.33-.1.62-.15.91-.14.54-.3 1-.45 1.35-.15.36-.29.63-.38.82-.01.04.03-.09.01-.11l-.03.07.03-.33zm-21.116-7.387l1.195-1.617c.375-.52.848-1.14 1.397-1.86.553-.71 1.143-1.54 1.876-2.37l1.12-1.31 1.282-1.33c.443-.45.9-.92 1.364-1.39.223-.25.492-.46.785-.65.28-.2.49-.47.74-.71.97-.98 1.92-2.03 2.99-3.01 1.05-1 2.29-1.82 3.3-2.88 2.07-2.07 4.09-4.21 6.01-6.18.96-.99 1.92-1.91 2.85-2.77.46-.44.9-.86 1.37-1.23.47-.36.95-.68 1.4-1 .9-.64 1.71-1.24 2.38-1.84.67-.59 1.27-1.1 1.76-1.5.49-.41.87-.75 1.13-.98l.39-.35c.49-.44 1.25-.39 1.68.1.44.49.39 1.25-.1 1.69l-.03.02-.11.09-1.53 1.28c-.49.4-1.08.9-1.75 1.48-.68.57-1.41 1.24-2.29 1.88l-1.41.96c-.47.35-.93.74-1.41 1.15-.95.81-1.93 1.69-2.95 2.59-2.02 1.82-4.09 3.86-6.11 5.93-1 1.05-1.84 2.25-2.85 3.26-.97 1.04-2.15 1.86-3.2 2.74-.26.23-.54.43-.72.71-.18.3-.37.56-.63.78-.47.46-.96.88-1.42 1.3-.47.42-.89.86-1.3 1.28-.39.44-.69.93-.97 1.41-.29.47-.61.88-.93 1.26l-.87 1.1c-.54.7-1.01 1.3-1.4 1.82-.79 1.01-1.26 1.57-1.26 1.57-.43.5-1.18.57-1.69.14-.49-.41-.57-1.13-.19-1.63l.01-.02z"/>
57
+ </svg>
@@ -0,0 +1 @@
1
+ export {default as emptyStateIllustration} from './empty-state.svg';
@@ -0,0 +1,7 @@
1
+ import {createAsyncComponent} from '@shopify/react-async';
2
+
3
+ const Home = createAsyncComponent({
4
+ load: () => import(/* webpackChunkName: 'Home' */ './Home'),
5
+ });
6
+
7
+ export default Home;
@@ -0,0 +1,5 @@
1
+ {
2
+ "heading": "This is the Home Page of your application",
3
+ "footerContent": "Modify this page by editing {path}"
4
+ }
5
+
@@ -0,0 +1 @@
1
+ export {default as Home} from './Home';
@@ -0,0 +1,21 @@
1
+ import React from 'react';
2
+ import {Router} from '@shopify/react-router';
3
+ import {usePerformanceReport} from '@shopify/react-performance';
4
+
5
+ import {I18n} from './I18n';
6
+ import {Polaris} from './Polaris';
7
+ import {Routes} from './Routes';
8
+
9
+ export function App({url}: {url: URL}) {
10
+ usePerformanceReport('/performance_report');
11
+
12
+ return (
13
+ <I18n>
14
+ <Polaris>
15
+ <Router location={url}>
16
+ <Routes />
17
+ </Router>
18
+ </Polaris>
19
+ </I18n>
20
+ );
21
+ }
@@ -0,0 +1,21 @@
1
+ import React from 'react';
2
+ import {useAcceptLanguage} from '@shopify/react-network';
3
+ import {I18nUniversalProvider} from '@shopify/react-i18n-universal-provider';
4
+
5
+ interface Props {
6
+ children?: React.ReactNode;
7
+ }
8
+
9
+ export function I18n({children}: Props) {
10
+ const fallback = {
11
+ code: typeof window === 'undefined' ? 'en' : navigator.language,
12
+ quality: 1.0,
13
+ };
14
+ const [language] = useAcceptLanguage(fallback);
15
+
16
+ return (
17
+ <I18nUniversalProvider locale={language.code}>
18
+ {children}
19
+ </I18nUniversalProvider>
20
+ );
21
+ }
@@ -0,0 +1,24 @@
1
+ import '@shopify/polaris/esnext/styles/global.scss';
2
+ import React from 'react';
3
+ import {Link} from '@shopify/react-router';
4
+ import {AppProvider} from '@shopify/polaris';
5
+ import {useI18n} from '@shopify/react-i18n';
6
+
7
+ interface Props {
8
+ children?: React.ReactNode;
9
+ }
10
+
11
+ export function Polaris({children}: Props) {
12
+ const [i18n] = useI18n({
13
+ id: 'Polaris',
14
+ translations: async (code) => {
15
+ return import(`@shopify/polaris/locales/${code}.json`);
16
+ },
17
+ });
18
+
19
+ return (
20
+ <AppProvider i18n={i18n.translations} linkComponent={Link}>
21
+ {children}
22
+ </AppProvider>
23
+ );
24
+ }
@@ -0,0 +1,13 @@
1
+ import React from 'react';
2
+ import {Switch, Route} from '@shopify/react-router';
3
+ import {Home} from 'features';
4
+ import {NotFound} from 'components/NotFound';
5
+
6
+ export function Routes() {
7
+ return (
8
+ <Switch>
9
+ <Route path="/" exact render={() => <Home />} />
10
+ <Route render={() => <NotFound />} />
11
+ </Switch>
12
+ );
13
+ }
@@ -0,0 +1 @@
1
+ export {App as default} from './foundation/App';
@@ -0,0 +1,2 @@
1
+
2
+ import {join} from 'path';
@@ -0,0 +1,10 @@
1
+ plugins.sass({
2
+ autoInclude: [
3
+ // Polaris sass helpers - optional
4
+ // Only needed if the mixins provided are used in your app's sass files
5
+ join(
6
+ __dirname,
7
+ '../node_modules/@shopify/polaris/esnext/styles/_public-api.scss'
8
+ )
9
+ ]
10
+ }),
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Quilt
4
+ class InstallDemoAppGenerator < Rails::Generators::Base
5
+ def run_all_generators
6
+ generate("quilt:rails_setup")
7
+ generate("quilt:react_setup")
8
+ generate("quilt:demo_app")
9
+ end
10
+ end
11
+ end
@@ -6,6 +6,18 @@ module Quilt
6
6
 
7
7
  desc "This generator adds a React app."
8
8
 
9
+ def set_app_config_javascript_path
10
+ config_path = "config/application.rb"
11
+
12
+ unless File.exist?(config_path)
13
+ inject_into_file(
14
+ config_path,
15
+ "\n config.javascript_path = \"ui\"\n",
16
+ before: /^ end$/,
17
+ )
18
+ end
19
+ end
20
+
9
21
  def create_app_file
10
22
  copy_file("App.tsx", "app/ui/index.tsx")
11
23
  end
@@ -7,10 +7,8 @@ module Quilt
7
7
  desc "This generator adds a React app."
8
8
 
9
9
  def install_js_dependencies
10
- say "Installing @shopify/react-server and @shopify/sewing-kit dependencies"
10
+ say "Installing react and types dependencies"
11
11
  system("yarn add "\
12
- "@shopify/sewing-kit "\
13
- "@shopify/react-server "\
14
12
  "typescript@~3.8.0 "\
15
13
  "react@~16.11.0 "\
16
14
  "react-dom@~16.11.0 "\
@@ -39,7 +39,7 @@ module Quilt
39
39
  begin
40
40
  reverse_proxy(
41
41
  url,
42
- headers: headers.merge('X-CSRF-Token': form_authenticity_token, 'X-Quilt-Data': data.to_json)
42
+ headers: headers.merge('X-Quilt-Data': data.to_json)
43
43
  ) do |callbacks|
44
44
  callbacks.on_response do |status_code, _response|
45
45
  Quilt::Logger.log("[ReactRenderable] #{url} returned #{status_code}")
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Quilt
3
- VERSION = "3.0.0"
3
+ VERSION = "3.1.0"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quilt_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mathew Allen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-10 00:00:00.000000000 Z
11
+ date: 2020-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -94,6 +94,27 @@ files:
94
94
  - app/controllers/quilt/ui_controller.rb
95
95
  - config/routes.rb
96
96
  - lib/generators/quilt/USAGE
97
+ - lib/generators/quilt/demo_app/USAGE
98
+ - lib/generators/quilt/demo_app/demo_app_generator.rb
99
+ - lib/generators/quilt/demo_app/templates/app-ui/components/NotFound/NotFound.tsx
100
+ - lib/generators/quilt/demo_app/templates/app-ui/components/NotFound/illustrations/404.svg
101
+ - lib/generators/quilt/demo_app/templates/app-ui/components/NotFound/illustrations/index.ts
102
+ - lib/generators/quilt/demo_app/templates/app-ui/components/NotFound/index.ts
103
+ - lib/generators/quilt/demo_app/templates/app-ui/components/index.ts
104
+ - lib/generators/quilt/demo_app/templates/app-ui/features/Home/Home.tsx
105
+ - lib/generators/quilt/demo_app/templates/app-ui/features/Home/illustrations/empty-state.svg
106
+ - lib/generators/quilt/demo_app/templates/app-ui/features/Home/illustrations/index.ts
107
+ - lib/generators/quilt/demo_app/templates/app-ui/features/Home/index.tsx
108
+ - lib/generators/quilt/demo_app/templates/app-ui/features/Home/translations/en.json
109
+ - lib/generators/quilt/demo_app/templates/app-ui/features/index.ts
110
+ - lib/generators/quilt/demo_app/templates/app-ui/foundation/App.tsx
111
+ - lib/generators/quilt/demo_app/templates/app-ui/foundation/I18n.tsx
112
+ - lib/generators/quilt/demo_app/templates/app-ui/foundation/Polaris.tsx
113
+ - lib/generators/quilt/demo_app/templates/app-ui/foundation/Routes.tsx
114
+ - lib/generators/quilt/demo_app/templates/app-ui/index.ts
115
+ - lib/generators/quilt/demo_app/templates/path_import.ts
116
+ - lib/generators/quilt/demo_app/templates/polaris_sass_plugin.ts
117
+ - lib/generators/quilt/install_demo_app_generator.rb
97
118
  - lib/generators/quilt/install_generator.rb
98
119
  - lib/generators/quilt/rails_setup/USAGE
99
120
  - lib/generators/quilt/rails_setup/rails_setup_generator.rb
@@ -104,7 +125,6 @@ files:
104
125
  - lib/generators/quilt/react_app/templates/App.tsx
105
126
  - lib/generators/quilt/react_setup/USAGE
106
127
  - lib/generators/quilt/react_setup/react_setup_generator.rb
107
- - lib/generators/quilt/react_setup/templates/App.tsx
108
128
  - lib/generators/quilt/react_setup/templates/tsconfig.json
109
129
  - lib/quilt_rails.rb
110
130
  - lib/quilt_rails/configuration.rb
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
-
3
- function App() {
4
- return <div>Hello Quilt</div>;
5
- }
6
-
7
- export default App;